



.section-us{
    background-color: #ebebeb;
    padding-block: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-title{
    text-align: center;
}

.our-title span{
    text-align: center;
    font-size: 26px;
    font-weight: 600;
}


.contact-info-box{
    background-color: var(--secondary-color);
    padding: 30px 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 42px;
}

.each-contact-info span{
    color: #e7e7e7;
    font-size: 13px;
}

.each-contact-info strong{
    color: #fff;
    font-weight: 600;
    font-size: 15px;
}


.each-contact-info{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.each-contact-info a {
    margin-right: 10px;
    font-size: 13px;
    color: #e1e1e1;
    text-decoration: unset;
}

.each-contact-info a strong{
    font-size: 14px;
}

.contact-social{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.each-contact{
    width: 28px;
    height: 28px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: unset;
}


.each-contact svg{
    width: 17px;
    height: 17px;
}

.each-contact svg path{
    fill: var(--secondary-color);
}


.contact-form input, .contact-form textarea{
    width: 100%;
    border: 1px solid #cecece;
    padding: 10px;
    border-radius: 11px;
    margin-bottom: 13px;
}


.contact-form label{
    font-size: 15px;
    margin-bottom: 5px;
}

.contact-title{
    margin-bottom: 40px;
}

.contact-title span{
    font-size: 22px;
    text-align: center;
    width: 100%;
    font-weight: 600;
}


.btn-form{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}


.btn-form button{
    border: 1px solid var(--secondary-color);
    background-color: var(--secondary-color);
    padding: 7px 23px;
    border-radius: 20px;
    color: #fff;
    font-size: 14px;
}


.map-section{
    margin-block: 70px;
}

.map{
    width: 100%;
    height: 440px;
}


.map iframe{
    width: 100%;
    height: 100%;
}

.subscribe-section{
    background-color: #e9e9e9;
    padding-block: 90px;
}

.subscribe-section .container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.subscribe-form{
    width: 400px;
}

.subscribe-form .sub-input{
    width: 100%;
    position: relative;
}

.subscribe-form .sub-input input{
    width: 100%;
    border: 1px solid var(--secondary-color);
    border-radius: 25px;
    padding: 10px 13px;
}

.subscribe-form .sub-input input::placeholder{
    font-size: 12px;
    color: #6c6c6c;
}

.sub-input button{
    position: absolute;
    border: unset;
    white-space: nowrap;
    background-color: var(--secondary-color);
    font-size: 14px;
    color: #fff;
    border-radius: 24px;
    left: 7px;
    top: 6px;
    padding: 6px 14px;
}





@media screen and (max-width: 991px){

    .our-title span {
        font-size: 22px;
    }

    .contact-form label {
        font-size: 13px;
    }

    .contact-title span {
        font-size: 19px;
    }

    .row-contact{
        gap: 40px;
    }

}


@media screen and (max-width: 575px){

    .subscribe-form {
        width: 100%;
    }

    .map {
        width: 100%;
        height: 300px;
    }

    .map-section {
        margin-block: 28px;
    }

    .our-title span {
        font-size: 19px;
    }

    .contact-title span {
        font-size: 17px;
    }

    .our-title span {
        font-size: 17px;
    }

}
