@charset "utf-8";


/* scroll */
.scrollbar::-webkit-scrollbar {
    width: 8px;   
}

.scrollbar::-webkit-scrollbar-thumb {
    height: 30%;  
    background: #C5C5C5;  
    
    border-radius: 10px;
}

.scrollbar::-webkit-scrollbar-track {
    background: #F4F4F4;   
}


/* CONTACT CSS */
.section01 {
    margin: 100px 0;
}

p {
    margin-top: 0;
    margin-bottom: 0;
}
 
#contact_bg.bg_img {
    background-image: url('../images/contact_img2.jpg');
} 
 
#location_bg.bg_img {
    background-image: url('../images/location_bg_3.jpg');
} 
  
.tit_txt_sm {
    margin-top: 10px;
    font-weight: 900;
    font-size: 14px;
    line-height: 1.4;
    color: #2F5CED;
}
    
.contact_us_wrap {
    margin-top: 150px;
}
 
/* agree box */

.agree_text_box {
    width: 99%;
    height: 350px;
    padding: 20px;
    border: 1px solid #edeef0;
    border-radius: 5px; 
    overflow-y: auto;
}
 
.agree_text_box p {
    color: #7a7a7a;
}
#agreeBox .c_title {
    font-weight: 900;
}
#agreeBox {
    text-align: left;
}
#agreeBox label {
    margin-top: 30px;
    width: auto;
}
#agreeBox input:active,
#agreeBox input:focus {
    outline: none;
    box-shadow: none;
} 
#agreeBox label input {
    float: left;
    width: 13px !important;
    margin-top: 0;
    margin-right: 10px;
} 

#agreeBox label p {
    float: left;
    width: auto;
}
  
/* contact form start */
.contact_us_wrap form {
    /* max-width: 600px; */
    text-align: center;
    margin: 20px auto;  
    margin-top: 0px;
 }

#contactusform input,
#contactusform textarea {
    border: 0;
    outline: 0;
    padding: 1em;
    display: block;
    width: 98%;
    margin-top: 10px; 
    border-radius: 5px;
    box-sizing: border-box; 
    background-color: #f8f9fb;  
    border: 1px solid #edeef0;
    /* transition: 0.2s; */
 } 

 #contactusform textarea {
    width: 99%;
 }

#contactusform input:focus,
#contactusform textarea:focus,
#contactusform input:active,
#contactusform textarea:active ,
#queries select:active,
#queries select:focus {
    outline: 2px solid #002f7b;
    box-shadow: 1px 1px 20px #dfdfdf;
} 

.null {
    outline: 2px solid #002f7b !important;
}
  
.c_title { 
   text-align: left;
   margin-bottom: 30px;
}
.c_title label {
    position: relative;
    font-weight: 900;
}
 

#queries select {
    width: 98%;
    height: 50px;
    margin-top: 10px;
    padding-left: 15px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    outline: none;
    color: #757575;
    background-color: #f8f9fb; 
    border: 1px solid #edeef0;
}

 
.submit_btn {
    margin: 23px;
}

.conBox {
    margin-bottom: 10px;
} 


 
/* location start */

.address_box { 
    height: 80px;
    margin: 40px 0;
 }
.address_box p {
    font-weight: bold;
    font-size: 18px;
}

.address_box p img {
    width: 28px;
    vertical-align: -8px;
    margin-right: 20px;
} 
 
.ad_left {
    float: left;
}
.ad_right {
    float: right;
    display: flex;
    gap: 0 50px;
}


@media only screen and (max-width: 1200px) {

    .contact_us_wrap form {
        margin-top: 40px;
        max-width: 100%;
    }
}

 
@media only screen and (max-width: 992px) {
    .address_box p { 
        font-size: 14px;
    }

    .address_box p img {
        width: 25px;
        vertical-align: -9px;
        margin-right: 5px;
    }
    
    .ad_left { 
        float: none;
    }

    .ad_right {
        float: right;
        display: flex;
        gap: 0;
        float: none;
        flex-direction: column;
        margin-top: 20px;
    }

    .add_03 {
        margin-top: 20px;
    }

 }

  

/* Mobile Start*/
@media only screen and (max-width: 375px) {
  
    .submit_btn {
        width: 80%;
    }
   
    #queries select {
        font-size: 13px;
    }

    .submit_btn {
        font-size: 16px;
        padding: 16px;
    }

    .text_box p.tit_txt {
        font-size: 16px;
    }

    .tit_txt_sm { 
        font-size: 12px; 
    }
    
    .contact_us_wrap {
        margin-top: 40px;
    }
}
 
 