*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.map 
{
    width: 100%;
    max-width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    padding-bottom: 20%;
}

.map iframe 
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* Form section start */
.icon-contents i 
{
    display: flex;
    align-items: center;
    padding: 10px 13px;
    background: #d9232d;
    border-radius: 10%;
    color: #Ffffff;
    font-size: 1.1rem;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form input, 
.form textarea 
{
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.form textarea 
{
    resize: none;
    height: 150px;
}

.form .first-input 
{
    display: flex;
    gap: 20px;
}

.form .first-input input
{
    flex: 1;
}

.form .main-btn 
{
    width: 200px;
    margin: 0 auto;
}
/* Form section End */