/* @import url("font.css"); */

/* Change Preloader Image */
.preloader{
    background-image: url(../images/favicon/logo.svg);
}

/* Hide Yellow active circle in navigation */
.site-header.header-two .header-navigation ul.navigation-box > li > a:before{
    visibility: hidden;
}

.navbar{
    z-index: 1;
}

.navbar-collapse.show{
    height: auto !important;
    display: block !important;
}

.navbar-expand-lg .navbar-collapse{
    background-color: white;
}

.nav-link{
    padding: .5rem 1rem !important;
}

.navbar-light .navbar-nav .active>.nav-link, 
.navbar-light .navbar-nav .nav-link.active, 
.navbar-light .navbar-nav .nav-link.show, 
.navbar-light .navbar-nav .show>.nav-link{
    color: #3574C0;
}


.navbar-light .navbar-nav .nav-link:focus, 
.navbar-light .navbar-nav .nav-link:hover{
    color: #3574C0;
}

/* divider */
.divider{
    width: 100%;
    height: 20px;
    background-color: #EFEFF1;
}

/* Block Title */
.block-title{
    text-align: center;
}

.block-title .dot-line{
    background-color: #194F90;
    margin-bottom: 16px;
}

/*  */
.offer-style-one{
    background-color: #EBF4FF;
}

.single-offer-one .text-block{
    text-align: center;
}

/*  */
.single-taxi-one:before{
    border-top: 2px solid #194F90;
    border-bottom: 2px solid #194F90;
}

.single-taxi-one:after{
    border-left: 2px solid #194F90;
    border-right: 2px solid #194F90;
}

.taxi-style-one .tab-title li a{
    background-color: transparent !important;
    border: 1px solid #194F90;
    color: #194F90;
}

.single-taxi-one:hover .book-taxi-btn{
    background-color: transparent;
    background-image: linear-gradient(to left, #3574C0, #194F90);
    color: white;
}

.taxi-style-one .tab-title li a.active,
.taxi-style-one .tab-title li a:hover{
    background-color: transparent !important;
    background-image: linear-gradient(to left, #3574C0, #194F90) !important;
    color: white !important;
}

/* Footer */
.site-footer{
    background-color: #57585A;
}

.site-footer:before, 
.site-footer:after{
    visibility: hidden;
}

.site-footer .bottom-footer .inner-container{
    justify-content: center;
    padding: 50px 0;
}

.site-footer .footer-widget .social-block a:hover{
    color: #3574C0;
}

.site-footer .footer-widget .contact-infos li i{
    color: white;
}

.site-footer .bottom-footer .left-block span a{
    color: white;
}

/* Hero Image */
.inner-banner{
    height: 580px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.inner-banner h2{
    margin-top: 0;
}

/* Download App Page */
.cta-style-three{
    background-color: white;
}

@media (min-width: 0px) and (max-width: 767.98px) {
    .hvr-float-shadow{
        display: flex;
        justify-content: center;
    }

    .founder-image{
        display: flex;
        justify-content: center;
    }

    .founder-details{
        text-align: center;
    }
 }

 /* Scroll to top */
 .scroll-to-top,
 .scroll-to-top:hover{
     background: #3574C0;
 }

 .scroll-to-top:after, .scroll-to-top:before,
 .scroll-to-top:hover:before, .scroll-to-top:hover:after{
     background-color: #3574C0;
 }

 .scroll-to-top i{
     color: white;
 }

 /* Tabs */
 .taxi-style-one .tab-title li a.active,
.taxi-style-one .tab-title li a:hover,
.single-taxi-one:hover .book-taxi-btn{
    background: transparent !important;
    background-image: linear-gradient(to Bottom, #3574C0, #194F90) !important;
    color: White !important;
}

.nav-tabs{
    border-bottom: 0;
}

.nav-tabs .nav-link.active::after{
    content: "";
    width: 100%;
    height: 4px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #0089F1;
}

.nav-tabs .nav-item.show .nav-link, 
.nav-tabs .nav-link.active{
    padding-bottom: 13px;
    color: #0089F1;
}

.nav-tabs .nav-link{
    color: #212529;
    border: none;
    position: relative;
}

/* Checkbox */
:root{
    --font-size: 30px;
    --font-family: 'Poppins', sans-serif;
    --checkbox-width: 1.25em;
    --checkbox-height: 1.25em;
    --checkbox-border: 2px solid #cccccc;
    --checkbox-border-radius: 3px;
    --checkbox-seprator: 10px;
    --checkmark-color: #ffffff;
    --checkbox-background: #2266dc;
    --checkbox-border-color: #2266dc;
}

.checkbox{
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.checkbox .checkbox__input{
    display: none;
}

.checkbox .checkbox__input:checked + .checkbox__box{
    background-color: var(--checkbox-background);
    border-color: var(var(--checkbox-border-color));
}

.checkbox .checkbox__input:checked + .checkbox__box::after{
    transform: scale(1);
}

.checkbox .checkbox__box{
    width: var(--checkbox-width);
    height: var(--checkbox-height);
    border: var(--checkbox-border);
    border-radius: var(--checkbox-border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: var(--checkbox-seprator);
    transition: background 0.15s; 
    transition: border-color 0.15s;
}

.checkbox .checkbox__box::after{
    content: '\2714';
    color: var(--checkmark-color);
    transform: scale(0);
    transition: transform 0.15s;
}

/* Radio */
:root{
    --font-family: "product_sans", Arial, sans-serif !important;
    --font-size: 16px;
    --seprator: 10px;
    --radio-background: #194F90;
    --radio-width: 1.25em;
    --radio-height: 1.25em;
    --radio-border: 2px solid #d8e4e2;
    --border-radius-50: 50%;
    --border-box: border-box;
    --gap: 4px;
}

body{
    font-family: var(--font-family);
    font-size: var(--font-size);
}

.radio{
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    margin-right: var(--seprator);
}

.radio .radio__input{
    display: none;
}

.radio .radio__input:checked + .radio__radio{
    border: 2px solid var(--radio-background);
}

.radio .radio__input:checked + .radio__radio::after{
    transform: scale(1);
}

.radio .radio__radio{
    width: var(--radio-width);
    height: var(--radio-height);
    border: var(--radio-border);
    border-radius: var(--border-radius-50);
    margin-right: var(--seprator);
    box-sizing: var(--border-box);
    padding: var(--gap);
}

.radio .radio__radio::after{
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background-color: var(--radio-background);
    border-radius: var(--border-radius-50);
    transform: scale(0);
    transition: transform 0.15s;
}

/* Drower */
.backdrop{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(00,00,00, 0.3);
    z-index: 555;
    display: none;
}


.drower{
    position: fixed !important;
    top: 0;
    right: 0;
    bottom: 0;
    width: 500px;
    background-color: white;
    z-index: 999;
    display: none;
}


.drower-header{
    border-bottom: 1px solid #d5d5d5;
    height: 60px;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 25px;
    color: #000;
    font-weight: 700;
}

.drower-header i{
    font-size: 22px;
    margin-right: 12px;
}

.drower-body{
    margin-top: 20px;
    padding: 0 25px;
}

.drower-card-body{
    position: relative;
}

.car-button{
    background-image: linear-gradient(to left, #3574C0, #194F90);
    color: white !important;
    border: 1px solid transparent;
    border-radius: 0 0 7px 7px;
    width: 100%;
    padding: 4px 0;
    display: block;
    text-align: center;
    position: absolute;
    left: 0;
    bottom: 0;
}


.plan-details{
    width: 70%;
    margin-bottom: 0 i !important;
}


.drower-button{
    position: absolute;
    bottom: 15px;
    margin-bottom: 0 !important;
    left: 15px;
    right: 15px;
    width: calc(100% - 30px);
}


.car-card{
    height: 155px;
}


.tri{
    cursor: pointer;
}


.clear-all{
    color: #8CA7C7;
}

.show{
    display: flex ;
    flex-direction: column;
}


@media (max-width: 767.98px) {
    body{
        overflow: hidden;
    }
    
    
    .drower{
        width: 100vh;
        width: 100%;
        overflow: auto;
    }
    
    
    .drower-body{
        height: calc(100vh - 60px);
    }
    
    
    .drower-button{
        position: relative;
        width: 100%;
        left: 0;
        right: 0;
        bottom: 15px;
    }
    
    
    .plan-details{
        width: 90%;
    }
    
    
    .tab-content{
        margin-top: 16px;
    }
}

/* Aside */
.link-container{
    color: Black;
    width: 100%;
    display: flex;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 30px;
    border-radius: 8px;
}

.link-container p{
    margin-bottom: 0;
}

.link-container img{
    margin-right: 18px;
}

.link-container .active{
    background-image: linear-gradient(to left, #3574C0, #194F90);
    color: White;
}

.link-container .active:hover{
    color: white;
}

a:hover{
    color: #000;
}


/* Choose Plan */
.cp-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #D1D1D7;
    border-radius: 8px;
    height: 54px;
    padding-left: 15px;
    padding-right: 15px;
    color: #333;
    margin-bottom: 35px;
}


p{
    margin-bottom: 0;
}

.iti {
    display: block;
}

.iti--allow-dropdown .iti__flag-container, .iti--separate-dial-code .iti__flag-container{
    left: 6px;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag{
    background-color: transparent;
}

 /* ----------------------------------------------------------------------
 ----------------------------- Media Query -------------------------------
 -----------------------------------------------------------------------*/
 
/* Extra small devices (portrait phones, less than 576px) */
@media (min-width: 0px) and (max-width: 767.98px) {
    h3{
        font-size: 20px;
    }
 }

/* Small devices (landscape phones, 576px and up) */
/* @media (min-width: 576px) and (max-width: 767.98px) { 

 } */

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) { 

 }

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) { 

 }

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) { 
    
 }