@charset "utf-8";

/* Common CSS Start  */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
:root{
    --black: #000;
    --white: #fff;
    --grey: #717171;
    --dark-blue: #182563;
    --blue: #4548D9;
    --sky: #2994F2;
    --body-font: "Montserrat", sans-serif;
    --heading-font: "Montserrat", sans-serif;
    --transition: 0.3s ease-in-out;
}
html,
body {
    overflow-x: hidden;
}
a{
    display: inline-block;
    text-decoration: none !important;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
p:last-child{
    margin-bottom: 0;
}
body{
    font-size: 13px;
    line-height: 1.6;
    font-weight: 400;
    font-family: var(--body-font);
    color: var(--grey);
}
.btn{
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 12px;
    font-family: var(--heading-font);
    font-weight: 500;
}
.btn:focus{
    box-shadow: none;
}
.btn-primary{
    background-color: var(--blue);
    color: var(--white);
    border-color: var(--blue);
    position: relative;
    font-size: 11px;
    font-weight: 400;
    z-index: 1;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active{
    border-color: var(--black) !important;
    background-color: var(--black) !important;
    color: var(--white);
    box-shadow: none !important;
}
.btn img{
    height: 20px;
    width: 20px;
    object-fit: contain;
}
.btn-line{
    color: var(--sky);
    font-weight: 700;
    text-decoration: underline !important;
    text-underline-offset: 2px;
}
.btn-outline{
    border: 1px solid #acacac;
    height: 30px;
    line-height: 30px;
    border-radius: 20px;
    flex-shrink: 0;
    padding: 0 14px;
}
img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sec-space{
    padding: 80px 0;
}
.section-heading{
    max-width: 75%;
    margin: 0 auto 50px;
    text-align: center;
}
.section-heading h2, h2{
    font-size:34px;
    line-height: 1.4;
    font-family: var(--heading-font);
    color: var(--dark-blue);
    font-weight: 700;
    text-transform: capitalize;
}
.section-heading p{
    margin-bottom: 0;
}
.form-control{
    font-size: 12px;
    color: var(--black);
    font-weight: 600;
}
.form-control:focus{
    border: none;
    box-shadow: none;
}
.form-control::placeholder{
    color: var(--grey);
    font-weight: 400;
}
.form-row > [class*=col-] {
    padding-right: 8px;
    padding-left: 8px;
}
.form-row {
    margin: 0 -8px;
}
/* Common CSS End  */

/* Header CSS Start  */
.navbar-brand img{
    height: 70px;
    width: auto;
}
#myHeader{
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: var(--transition);
}
.navbar-nav .nav-item{
    margin: 0 20px;
}
.navbar-nav .nav-link, .quick-link-box .nav-link{
    color: var(--black);
    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 600;
}
/* .navbar-nav .nav-link.active{
    color: var(--white);
} */
.navbar-nav .nav-link::after{
    content: "";
    width: 0px;
    height: 2px;
    background: var(--blue);
    display: block;
    margin: 0 auto;
    transition: var(--transition);
}
.navbar-nav .nav-link.active::after, .navbar-nav .nav-link:hover::after, .navbar-nav .nav-link:focus::after{
    opacity: 1;
    width: 100%;
    left: 0;
}
.logout-btn {
    font-size: 17px;
    margin-left: 6px;
    color: #000;
}

/* sticky header  */

/*--- Animation Header Start ---*/

@-webkit-keyframes animationFade {
    from {
      opacity: 0;
      -webkit-transform: translate3d(0, -100%, 0);
      transform: translate3d(0, -100%, 0);
    }

    to {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }

  @-o-keyframes animationFade {
    from {
      opacity: 0;
      -webkit-transform: translate3d(0, -100%, 0);
      transform: translate3d(0, -100%, 0);
    }

    to {
      opacity: 1;
      -webkit-transform: none;
      -o-transform: none;
      transform: none;
    }
  }

  @keyframes animationFade {
    from {
      opacity: 0;
      -webkit-transform: translate3d(0, -100%, 0);
      transform: translate3d(0, -100%, 0);
    }

    to {
      opacity: 1;
      -webkit-transform: none;
      -o-transform: none;
      transform: none;
    }
  }

#myHeader.sticky {
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
    background-color: var(--black);
    -webkit-animation-name: animationFade;
    -o-animation-name: animationFade;
    animation-name: animationFade;
    -webkit-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
  }

  #myHeader.sticky .btn-primary{
    background: var(--white);
    color: var(--black);
    font-weight: 600;
  }
  #myHeader.sticky .btn-primary:hover,  #myHeader.sticky .btn-primary:focus  ,  #myHeader.sticky .btn-primary:active{
    color: var(--white);
  }
/* Header CSS End  */


/* Banner CSS Start  */
.banner{
    background: url(../images/bg-1.png) no-repeat center;
    width: 100%;
    height: 100%;
    background-size: cover;
    padding-top: 96px;
}
.banner-text h1{
    font-size: 48px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}
.banner-text h1 span, h2 span{
    color: var(--sky);
}
.banner-form{
    width: fit-content;
    padding: 10px;
    position: relative;
    z-index: 1;
    background: var(--white);
    border-radius: 6px;
    border: 1px solid var(--blue);
}
.banner-form img{
    width: 20px;
    height: 20px;
    object-fit: contain;
}
 .banner-form .form-inline {
    width: max-content;
}
.banner-form .form-inline .form-control {
    border: none;
    border-radius: 0;
    padding: 0 8px;
    height: auto;
}
.banner-form .form-inline .form-control:not(:first-of-type){
    border-left: 1px solid #b2b2b3;
}
.banner-text h6{
    color: var(--black);
    font-size: 13px;
}

/* Banner CSS End  */


/* Trust CSS Start  */
.trust{
    background: #F1F7F8;
}
.trusbox {
    box-shadow: 0px 4px 20px #EAF0F1;
    border-radius: 10px;
    padding: 30px 25px;
    background: var(--white);
}
.trust_usbox:nth-child(2) .trusbox {
    position: relative;
    top: 100px;
}
.trust-row{
    row-gap: 20px;
}
.trust-icon {
    display: inline-block;
    width: 45px;
    height: 45px;
    margin-bottom: 20px;
}
.trust-icon img {
    object-fit: contain;
}
.trust-text h3 {
    font-size: 24px;
    color: var(--blue);
    font-weight: 700;
}

/* Trust Section CSS End  */


/* Discover Section CSS Start  */
.discover-box{
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 40px #9A9A9A29;
    padding: 20px;
    border-radius: 8px;
}
.discover-row{
    row-gap: 20px;
    margin: 0 -10px;
}
.discover-row [class*="col-"]{
    padding: 0 10px;
}
.icon-initial {
    height: 36px;
    width: 36px;
    line-height: 36px;
    color: var(--white);
    background: var(--dark-blue);
    border-radius: 5px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    flex-shrink: 0;
    text-transform:uppercase;
    overflow: hidden;
}
.discover-box h6, .discover-box h5{
    color: #A7A5A5;
    font-size: 11px;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 0;
    margin-left: 10px;
}
.contact-us-box h5 {
    font-size: 25px;
    color: var(--black) !important;
    text-transform: capitalize !important;
}
.contact-us-box h5 span {
    color: #2994f2 !important;
}
.discover-box h6 span{
    color: var(--black);
    display: block;
    font-weight: 600;
}
.thumb {
    height: 32px;
    width: 32px;
    object-fit: contain;
}
.discover-box h3 {
    color: var(--black);
    font-size: 16px;
    font-weight: 700;
}
.discover-box p{
    font-size: 12px;
    min-height:106px;
    margin-bottom:10px;
    overflow: hidden;
}
.discover-box h5{
    margin: 30px 0 0 0;
}
/* Discover Section CSS End  */


/* Signup CSS Start  */
.signup-box{
    padding: 36px 2px;
    background: var(--blue);
    border-radius: 40px;
}
.signup-box::before{
    content: "";
    width: 46%;
    height: 100%;
    background: url(../images/box.png) no-repeat center;
    background-size: cover;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.14;
}
.signup-box h2{
    color: var(--white);
    font-size: 32px;
    font-weight: 600;
    text-transform: none;
}
.signup-box h2 span{
    color: #BDE0FF;
}
.signup-box .btn-primary{
    background: var(--white);
    border-color: var(var(--white));
    color: var(--blue);
    font-weight: 600;
}
.signup-box .btn-primary:hover, .signup-box .btn-primary:active, .signup-box .btn-primary:focus{
    background: var(--black);
    color: var(--white);
}
/* Signup CSS End  */


/* Footer Start  */
.copyright{
    padding: 40px 0;
}
.copyright p{
    font-size: 11px;
    font-weight: 500;
}
.copyright p span{
    color: var(--sky);
    font-weight: 600;
}
/* Footer End  */


/* Page 2  */
.ban-top{
    margin-top: 96px;
}
.find-banner{
    background: #F1F7F8;
}
.banner-form .form-control{
    flex-grow: 1;
}
.find-banner .banner-form, .find-banner .form-inline{
    width: 100% !important;
}
.find-banner .section-heading h2{
    color: var(--black);
    max-width: 50%;
    margin: 0 auto 16px;
    font-size: 38px;
    line-height: 1.2;
}

/* Modal  */
#loginPopup .modal-dialog, #registerPopup .modal-dialog{
    max-width: 80%;
}
#loginPopup .close, #registerPopup .close{
    height: 40px;
    width: 40px;
    background: #F3F3F3;
    border-radius: 50%;
    opacity: 1;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
}
#loginPopup .close img, #registerPopup .close img{
    width: 14px;
    height: 14px;
    object-fit: contain;
}
#loginPopup .close:hover, #loginPopup .close:focus, #loginPopup .close:active,
#registerPopup .close:hover, #registerPopup .close:focus, #registerPopup .close:active{
    outline: none;
}
.modal-popup{
    background: #F1F7F8;
}
.modal-img{
    padding: 40px 20px 40px 40px;
}
.modal-text{
    padding: 100px 80px;
    background: var(--white);
}
.modal-text h4{
    font-size: 16px;
}
.modal-text h3{
    font-size: 22px;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 40px;
}
.login-form .form-control{
    border: none;
    border-bottom: 1px solid #DEDBDB;
    border-radius: 0;
    font-size: 14px;
    padding-left: 0;
}
.login-form .form-control::placeholder{
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.login-form .form-control:not(:last-of-type){
    margin-bottom: 20px;
}
.login-form textarea.form-control{
    margin-top: 20px;
}
.login-form .btn-primary{
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
}
.login-form .forget-btn{
    color: var(--black);
    font-size: 12px;
}
.modal-popup .modal-row [class*="col-"]:first-child{
    flex: 0 0 55%;
    max-width: 55%;
}
.modal-popup .modal-row [class*="col-"]:last-child{
    flex: 0 0 45%;
    max-width: 45%;
}
.map {
    margin-bottom:20px;
}



/* My Profile  */
.profile-bar{
    background: #F1F7F8;
}
.profile-bar h2 {
    color: var(--black);
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 1px;
}
.profile-bar .nav-tabs .nav-link{
    border: none;
    font-size: 12px;
    font-weight: 500;
    color: var(--grey);
    padding: 7px 0;
    margin-right: 30px;
}
.profile-bar .nav-tabs .nav-link.active{
    background: transparent;
    color: var(--blue);
    font-weight: 600;
}
.profile-bar .nav-tabs .nav-item:last-child .nav-link{
    color: var(--white);
    background: var(--black);
    border-radius: 20px;
    padding: 7px 12px;
    margin-right: 0;
}
.acc-icon{
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    font-size: 20px;
    font-weight: 400;
}
.acc-flex h6{
    font-size: 11px;
    line-height: 1.6;
    margin-bottom: 0;
    margin-left: 20px;
}
.acc-flex h6 span{
    color: var(--black);
    display: block;
    font-size: 13px;
    font-weight: 600;
}

.account-form h3{
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
}
.account-form h3::after {
    content: "";
    display: block;
    width: 34px;
    height: 2px;
    background: var(--blue);
}
.account-form legend{
    font-size: 13px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 14px;
}
.account-form .form-group {
    margin-bottom: 24px;
}
.account-form .form-control{
    border: 1px solid #d1d1d1;
    height: 40px;
    border-radius: 6px;
}
.account-form .form-control::placeholder{
    font-size: 13px;
}
.account-form label{
    margin-bottom: 0.2rem;
}
.account-form textarea.form-control{
    height: 100px;
}
.add-review textarea.form-control {
    height: 128px;
}
#myDiv {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: .7;
    z-index: 9999
}


/* responsive css */

@media screen and (max-width:1199px){
    .container {
        max-width:100%;
    }
    .find-banner .section-heading, .find-banner .section-heading h2 {
        max-width:98%;
    }
    .find-banner {
        padding:40px 0;
    }
    .section-heading h2, h2, .find-banner .section-heading h2 {
        font-size: 26px;
    }
    .banner-form {
        margin-top: 1rem !important;
    }
    .find-banner .section-heading h2 {
        margin-bottom:10px !important;
    }
    .modal-text h3 {
        font-size: 16px;
        margin-bottom: 20px;
    }

}
@media screen and (min-width:1025px) and (max-width:1199px) {
    .discover-box p {
        min-height: 120px;
        overflow: hidden;
    }
}
@media screen and (min-width:768px) and (max-width:1024px) {
    .banner-form {
        margin:auto;
    }   
    .signup-box {
        padding:30px;
        border-radius: 26px;
        text-align: center;
    } 
    .signup-box .col-lg-3 {
        display:none;
    }
    .signup-box .col-lg-7 {
        -ms-flex:0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .trust.sec-space {
        padding:30px 0;
    }
    .banner {
        padding-top:86px;
        padding-bottom:50px;
    }
    .discover.sec-space, .account-tab-content {
        padding:40px 0;
    }
    .modal-text {
        padding:20px;
    }
    .about_us_text {
        padding:0 35px !important;
    }
    .map {
        margin-bottom:20px;
    }
    .profile-bar {
        padding: 40px;
        text-align: center;
    }
    .account-tab-list ul.nav.nav-tabs {
        justify-content:center !important;
    }
    .discover-box p {
        min-height: 120px;
        overflow: hidden;
    }


}

@media screen and (max-width:991px) {
    #myDiv img {
        width:66px !important;
        height:66px !important;
    }
    .navbar-brand {
        margin-right:0;
    }
    .navbar-toggler {
        border: 1px solid #b4b4b4;
        background-color: #ebebeb;
        padding: .15rem .45rem;
        line-height: 29px;
    }
    .banner-text {
        text-align: center;
    }
    .banner-text h1 {
        font-size: 30px;
    }
    .navbar-brand img {
        height: 50px;
    }
    /* header .btn.btn-primary {
        font-size:0;
    } */
    .r-more {
        height:auto !important;
        margin-top:6px !important;
        margin-bottom:20px !important;
    } 
    .trust_usbox:nth-child(2) .trusbox {
        top:0;
    }
    .banner-img {
        display:none;
    }
    .navbar-collapse {
        background: #fff;
        padding: 10px 0px 20px 0px;
        border-bottom: 1px solid #ccc;
    }
}

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

    .banner-form .form-inline {
        width: auto;
    }
    .banner-form .form-inline .form-control {
        border:1px solid #b2b2b3;
        margin: 6px 0;
        height: auto;
        padding: 10px;
    }
    .banner-form img, .banner-img, .signup-img, .modal-img {
        display:none;
    }
    .form-inline .btn {
        margin: auto;
        margin-top: 10px;
    }
    .sec-space {
        padding: 40px 0;
    }
    .banner {
        padding-top: 96px;
        padding-bottom:30px;
    }
    .banner-text h1 {
        font-size: 30px;
        padding: 0 26px;
    }
    .banner-form .form-inline .form-control:nth-child(1) {
        width:49%;
        margin-right:2px;
    }
    .banner-form .form-inline .form-control:nth-child(2) {
        width:49%;
        margin-left:2px;
    }
    .banner-form {
        background:#f2f2f2;
    }
    .trust_usbox:nth-child(2) .trusbox {
        top:inherit;
    }
    .trusbox {
        text-align:center;
    }
    .section-heading h2 {
        font-size:22px;
    }
    .section-heading {
        max-width: 100%;
        margin: 0 auto 20px;
        text-align: center;
    }
    .signup-box {
        padding: 20px;
        border-radius:20px;
        text-align:center;
    }
    .signup-box h2 {
        font-size:22px;
    }
    footer .nav-link {
        display:block;
        padding:.5rem 6px;
    }
    .copyright {
        padding: 20px 0;
    }
    .quick-link-box {
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }   
    .about_us_text {
        padding:0 15px !important;
    }
    .discover-row .discover-box {
        padding: 20px 1rem !important;
    }
    .modal-popup .modal-row [class*="col-"]:last-child {
        flex: 0 0 100%;
        max-width: 100%;
    } 
    #loginPopup .modal-dialog, #registerPopup .modal-dialog {
        max-width: 100%;
    }
    .modal-text {
        padding:30px;
    }
    .profile-bar {
        text-align:center;
        padding:12px;
    }
    .profile-bar h2 {
        font-size:24px;  
    }
    .profile-bar .nav-tabs .nav-link {
        margin-right:10px;
    }
    .basis-info-submit-btn .btn, .address-info-submit-btn .btn {
        margin-top:0 !important;
    }
    .discover-box p {
        min-height:inherit;
    }

}

@media screen and (max-width:460px) {
    .quick-link-box .nav-link {
        font-size:11px;
    }
    .signup-box h2 {
        font-size: 14px;
    }
    .profile-bar {
        padding: 12px 2px;
    }
    .ban-top {
        margin-top:80px;
    }




}