/* ========== contact info section here ========= */

.contact-info-section{
    position: relative;
    padding-top: 120px;
}

.contact-info-section .single-item {
    background: -webkit-linear-gradient(-75deg, #fcebe1, #dbf5f3 100%);
    padding: 0px 30px 48px 30px;
    border-radius: 20px;
    transition: all 500ms ease;
    height: 220px;
}

.contact-info-section .single-item:hover {
    transform: translateY(-10px);
}

.contact-info-section .single-item .icon-box {
    display: inline-block;
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    font-size: 40px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.07);
    margin-bottom: 24px;
    margin-top: -50px;
}

.contact-info-section .single-item h3 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 17px;
}

.contact-info-section a{
    font-weight: 500;
    color: #6e6e6e;
    font-size: 18px;
}

.contact-info-section a:hover{
    color: var(--blue) !important;
}

/* ============== query section here ============= */

.query-section{
    padding-top: 100px;
    padding-bottom: 100px;
}

.query-section h4{
    color: var(--orange);
    font-size: clamp(30px, 3vw, 70px);
}

.query-section .form-control{
    box-shadow: none;
}

.query-section .form-data .lower input, .query-section .form-data .lower textarea{
  border: 1px solid black;
}

.query-section .form-data .lower .btn{
    padding: 12px 35px;
    border-radius: 100px;
    font-weight: 700;
    background-color: var(--orange);
    color: white;
    border: none;
    font-size: 18px;
    transition: 300ms;
    border: 2px solid var(--orange);
}
  
.query-section .form-data .lower .btn:hover{
  background-color: transparent;
  color: black;
}

/* ===================== map section here =============== */

.map-section iframe{
    width: 100%;
    height: 350px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}








/* ============ media query here ============ */

@media (max-width: 992px) {

    .contact-info-section .col:not(:last-child) {
        margin-bottom: 80px;
    }

}

@media(max-width:576px){

    .contact-info-section .single-item {
        height: auto;
    }

    .contact-info-section a{
        font-size: 16px;
    }


    .query-section{
        padding-top: 80px;
        padding-bottom: 80px;
    }

}