/* ===================================================
    Table of Contents
=====================================================
    1.0 About Section
		1.1 Video Box
	2.0 Services Section
		2.1 Swiper Navigation
		2.2 Swiper Dots
		2.3 Service Details
		2.4 Service Sidebar
	3.0 Booking Section
		3.1 Booking Car
		3.2 Date Time Picker
		3.3 Booking Form
	4.0 Pricing Section
		4.1 Pricing Tab Menu
    5.0 Taxi Details
	6.0 Download Section
		6.1 Download Section 2
	7.0 Testimonials Section
	8.0 CTA Section
		8.1 CTA Section 2
	9.0 Team Section
	10.0 Taxi Booking Form
	11.0 Faq's Section
	12.0 Contact Section
	13.0 Footer Section
		13.1 Mid Footer
		13.2 Subscribe Form
		13.3 Copyright Section
=====================================================
    Main CSS
==================================================== */

/*=== 1.0 About Section ===*/
.about-section .section-heading h2 {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 20px;
}

.about-img {
    position: relative;
    margin-top: -80px;
    z-index: 1;
}

.about-img:before {
    background-color: #0e76a8;
    border-radius: 2px;
    transform: skew(-20deg, 0deg);
    content: "";
    width: 200px;
    height: calc(100% + 70px);
    position: absolute;
    right: 200px;
    bottom: -80px;
    z-index: -1;
}

.about-img img {
    border-radius: 3px;
}

.about-img .about-img1 {
    max-width: 300px;
    transform: translate(20px, 40px);
}

.about-img .about-img2 {
    max-width: 200px;
    position: absolute;
    right: 80px;
    bottom: 0;
}

.round-text {
    position: absolute;
    right: 100px;
    top: 60px;
}

.round-text img {
    animation-name: spin;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.round-text:before {
    background-image: url(../img/location-marker.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 30%;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.about-info {
    display: flex;
    align-items: flex-start;
    column-gap: 40px;
}

.about-info li {
    display: flex;
    column-gap: 15px;
}

.owner-thumb {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.signature {
    width: 140px;
}

.about-info li h2 a {
    color: #0e76a8;
    font-weight: 700;
    margin: 0;
}

.owner h4,
.about-info li h2 span {
    font-size: 17px;
    font-weight: 500;
    line-height: 1;
    color: #666;
    display: block;
    margin-bottom: 5px;
}

.owner h4 {
    margin: 0;
}

/*=== 1.1 Video Box ===*/
.video-box-inner {
    position: relative;
    text-align: right;
}

.video-box-inner>img {
    width: 400px;
    border-radius: 5px;
}

.video-box {
    width: 250px;
    border-radius: 5px;
    position: absolute;
    left: 30px;
    bottom: -30px;
}

.video-box>img {
    width: 100%;
    border-radius: 5px;
}

.video-box .play-btn {
    background-color: #0e76a8;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-box-shadow: 0 10px 33.25px 1.75px rgba(0, 27, 103, .35);
    box-shadow: 0 10px 33.25px 1.75px rgba(0, 27, 103, .35);
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.video-box .play-btn svg {
    fill: #fff;
    width: 40px;
    margin-left: 5px;
}

.video-box .play-btn .ripple,
.video-box .play-btn .ripple:before,
.video-box .play-btn .ripple:after {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 70px;
    height: 70px;
    transform: translateX(-50%) translateY(-50%);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.50);
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.50);
    -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.50);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.50);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.50);
    -webkit-animation: rippleanim 3s infinite;
    -moz-animation: rippleanim 3s infinite;
    -ms-animation: rippleanim 3s infinite;
    -o-animation: rippleanim 3s infinite;
    animation: rippleanim 3s infinite;
}

.video-box .play-btn .ripple:before {
    -webkit-animation-delay: .9s;
    -moz-animation-delay: .9s;
    -ms-animation-delay: .9s;
    -o-animation-delay: .9s;
    animation-delay: .9s;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
}

.video-box .play-btn .ripple:after {
    -webkit-animation-delay: .6s;
    -moz-animation-delay: .6s;
    -ms-animation-delay: .6s;
    -o-animation-delay: .6s;
    animation-delay: .6s;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
}

@-webkit-keyframes rippleanim {
    70% {
        box-shadow: 0 0 0 70px rgba(244, 68, 56, .0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(244, 68, 56, .0);
    }
}

@keyframes rippleanim {
    70% {
        box-shadow: 0 0 0 70px rgba(244, 68, 56, .0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(244, 68, 56, .0);
    }
}

@media (max-width: 992px){
    .video-box {
        width: 100%;
        position: relative;
        left: 0;
        bottom: 0;
    }
}

@media (max-width: 767px){
    .video-box {
        margin-top: 30px;
    }
}

/*=== 2.0 Services Section ===*/
.service-section {
    position: relative;
    z-index: 1;
}

.service-carousel {
    position: relative;
    overflow: hidden;
    padding-bottom: 50px;
}

.bg-half {
    background-image: url(../img/bg-1.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    width: 100%;
    height: 59.54%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.bg-half:before {
    background-color: rgba(2, 2, 2, 0.7);
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.service-section .section-heading P {
    color: #ddd;
}

.service-item {
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 1px 5px rgb(0 0 0 / 15%);
}

.service-thumb {
    position: relative;
}

.service-shape-wrap {
    transform: skew(-20deg, 0deg);
    width: 160px;
    height: 200px;
    position: absolute;
    right: 20px;
    bottom: 0;
    overflow: hidden;
}

.service-shape {
    background-color: #0e76a8;
    border-radius: 2px;
    position: absolute;
    width: 80px;
    height: 180px;
    left: 80px;
    bottom: 0;
    transition: all 300ms cubic-bezier(.165, .85, .45, 1);
    transition-delay: .1s;
}

.service-shape:before {
    background-color: #222;
    border-radius: 2px;
    content: "";
    width: 80px;
    height: 140px;
    position: absolute;
    right: 60px;
    bottom: 0;
    opacity: 0.95;
    transition: all 300ms cubic-bezier(.165, .85, .45, 1);
    transition-delay: .2s;
}

.service-shape:after {
    background-color: #222;
    border-radius: 2px;
    content: "";
    width: 40px;
    height: 120px;
    position: absolute;
    right: -20px;
    bottom: 0;
    opacity: 0.95;
    transition: all 300ms cubic-bezier(.165, .85, .45, 1);
    transition-delay: .3s;
}

.service-item:hover .service-shape {
    height: 200px;
}

.service-item:hover .service-shape:before {
    height: 160px;
}

.service-item:hover .service-shape:after {
    height: 140px;
}

.service-car {
    position: absolute;
    right: -30px;
    bottom: -30px;
    max-width: 230px;
    transition: all .3s cubic-bezier(.165, .85, .45, 1);
}

.service-item:hover .service-car {
    bottom: -35px;
    right: 0;
}

.service-content {
    background-color: #fff;
    padding: 30px;
}

.service-content h3 {
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
}

.service-content h3 a:hover {
    color: #0e76a8;
}

.service-content p {
    margin-bottom: 20px;
}

.service-content .read-more {
    background-color: #0e76a8;
    clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
    border-radius: 2px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    display: inline-block;
    height: 35px;
    padding: 0 23px 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.service-content .read-more:before {
    background-color: #222;
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 300ms cubic-bezier(.165, .85, .45, 1);
    z-index: -1;
}

.service-content .read-more:hover:before {
    width: 100%;
}
@media (min-width: 1400px){
    .bg-half{
        height: 59.2%;
    }
}

/*=== 2.1 Swiper Navigation ===*/
.swiper-outside {
    padding: 0;
    position: relative;
}

.swiper-container {
    overflow: hidden;
}

.swiper-outside .swiper-nav {
    color: #222;
    font-size: 35px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: absolute;
    left: -45px;
    top: calc(50% - 30px);
    transform: translateY(-50%);
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.swiper-outside .swiper-nav:before {
    background-color: #0e76a8;
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.swiper-outside .swiper-nav.swiper-prev {
    justify-content: flex-end;
    clip-path: polygon(0 50%, 100% 100%, 100% 0);
}

.swiper-outside .swiper-nav.swiper-next {
    clip-path: polygon(100% 50%, 0 100%, 0 0);
    left: auto;
    right: -45px;
}

.swiper-outside:hover .swiper-nav{
    visibility: visible;
    opacity: 1;
    left: -50px;
}
.swiper-outside:hover .swiper-nav.swiper-next{
    left: auto;
    right: -50px;
}

/*=== 2.2 Swiper Dots ===*/
.service-carousel .swiper-pagination {
    bottom: 0;
    line-height: 1;
}

.swiper-pagination span {
    background-color: #222;
    border-radius: 2px;
    width: 10px;
    height: 10px;
    border-radius: 0;
    opacity: 1;
}

.swiper-pagination span.swiper-pagination-bullet-active {
    background-color: #0e76a8;
    box-shadow: 0px 0px 0px 3px rgba(255, 153, 0, 0.5);
}

/*=== 2.3 Service Details ===*/
.service-details-info img {
    height: 350px;
    width: 100%;
    object-fit: cover;
    object-position: bottom;
    border-radius: 5px;
    margin-bottom: 30px;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    margin: 30px 0;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.service-features li i {
    font-size: 50px;
    color: #0e76a8;
}

.service-features li h3 {
    margin-bottom: 0;
}

.service-features li p {
    margin-bottom: 0;
}

.service-details-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    margin-top: 30px;
}

.service-details-list img {
    height: 220px;
    margin: 0;
}

.service-icon-list li i {
    font-size: 20px;
    color: #0e76a8;
}

.service-icon-list li {
    font-weight: 500;
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.service-icon-list li:not(:last-of-type) {
    margin-bottom: 10px;
}

/*=== 2.4 Service Sidebar ===*/
.service-sidebar ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f4f5f8;
    padding: 8px 15px;
    border: 1px solid #eee;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.service-sidebar ul li:hover {
    background-color: #0e76a8;
}

.service-sidebar ul li:not(:last-of-type) {
    margin-bottom: 10px;
}

.service-sidebar ul li a {
    font-size: 17px;
    font-weight: 500;
}

.service-sidebar ul li a:hover {
    color: #222;
}

.service-sidebar ul li i {
    font-size: 20px;
    color: #0e76a8;
}

.service-sidebar ul li:hover i {
    color: #fff;
}

/*=== 3.0 Booking Section ===*/
.booking-section {
    background-image: url(../img/texture.png);
    background-repeat: repeat;
    background-size: cover;
    background-color: #222;
    position: relative;
    z-index: 1;
}

.booking-section:before {
    background-color: #0e76a8;
    content: "";
    width: 300px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -2;
}

.booking-section:after {
    background-color: #F4F5F8;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 25% 100%);
    content: "";
    width: 400px;
    height: 80px;
    position: absolute;
    right: 0;
    top: -1px;
}

/*=== 3.1 Booking Car ===*/
.booking-car {
    background-image: url(../img/car-2.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 85%;
    width: 780px;
    height: 439px;
    position: absolute;
    left: -280px;
    top: 50px;
    z-index: -1;
}

.booking-wrap .section-heading h2 {
    font-size: 40px;
}

.booking-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    z-index: 1;
}

.booking-form .form-field {
    position: relative;
}

.booking-form .niceSelect .current,
.booking-form .form-field input {
    background-color: #333;
    color: #fff;
    border-radius: 2px;
    width: 100%;
    height: 50px;
    padding: 0 35px 0 20px;
    font-size: 17px;
    line-height: 50px;
    box-shadow: none;
    outline: none;
    border: 1px solid #333;
}

.booking-form .form-field input:focus {
    border: 1px solid #0e76a8;
}

.booking-form .form-field i {
    color: #0e76a8;
    font-size: 20px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.booking-form .form-field button {
    width: 100%;
    height: 50px;
}

.booking-form .niceSelect {
    padding: 0;
    border: none;
    width: 100%;
    height: auto;
    font-size: 17px;
    color: #fff;
}

.booking-form .niceSelect .current {
    height: 50px;
    line-height: 50px;
    display: block;
    padding: 0 20px;
}

.booking-form .niceSelect .list {
    background-color: #333;
    width: 100%;
    border-radius: 0;
    margin-top: -2px;
    border: none;
}

.booking-form .niceSelect .list li {
    font-size: 14px;
}

.booking-form .niceSelect .list li:not(:last-of-type) {
    border-bottom: 1px solid #444;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
    background-color: #0e76a8;
    font-weight: normal;
}

.nice-select:after {
    display: none;
}

/*=== 3.2 Date Time Picker ===*/
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current {
    background: #0e76a8;
    box-shadow: #0e76a8 0 1px 3px 0 inset;
}

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div:hover,
.xdsoft_datetimepicker .xdsoft_calendar td:hover {
    background: #222 !important;
    color: #fff;
}

/*=== 3.3 Booking Form ===*/
.booking-form-2 {
    position: relative;
    margin-top: -100px;
    margin-bottom: 80px;
    z-index: 1;
}

.booking-form-2:before {
    background-color: #222;
    clip-path: polygon(0 0, 90% 0%, 100% 20%, 100% 100%, 0 99%);
    background-image: url(../img/texture.png);
    background-repeat: repeat;
    background-size: cover;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

.booking-car-wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: calc(100% - 2px);
    overflow: hidden;
}

.booking-car-wrap:before {
    background-color: #0e76a8;
    background-image: repeating-linear-gradient(45deg, #1c82b4 0, #1c82b4 2px, transparent 0, transparent 50%);
    background-size: 10px 10px;
    content: "";
    width: 330px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.booking-form-2 .booking-car {
    background-size: 70%;
    left: -130px;
    top: 10px;
    z-index: 0;
}

.booking-form-2 .col-lg-8 {
    padding: 60px;
}

@media (max-width: 767px) {
    .booking-form-2:before {
        clip-path: polygon(0 0, 90% 0%, 100% 8%, 100% 100%, 0 99%);
    }
}

/*=== 4.0 Pricing Section ===*/
.pricing-item {
    background-color: #fff;
    padding: 0;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.pricing-head-wrap {
    position: relative;
    z-index: 1;
}

.pricing-head-wrap:before {
    background-image: url(../img/pricing-bg.jpg);
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 40%);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    content: '';
    width: 100%;
    height: 280px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.pricing-head-wrap:after {
    background-color: rgba(34, 34, 34, 0.5);
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 40%);
    content: '';
    width: 100%;
    height: 280px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.pricing-head {
    text-align: center;
}

.pricing-head h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    display: block;
    margin: 0;
}

.pricing-head h3 a:hover {
    color: #222;
}

.pricing-head .location {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-car {
    text-align: center;
    padding: 60px 25px 20px;
    position: relative;
    z-index: 1;
}

.pricing-car .price {
    background-color: #0e76a8;
    clip-path: polygon(85% 0%, 100% 30%, 100% 100%, 0 100%, 0 0);
    font-size: 20px;
    font-weight: 700;
    color: #222;
    padding: 10px 15px 10px 25px;
    position: absolute;
    right: 40px;
    top: 55px;
    z-index: -1;
}

.pricing-list {
    padding: 20px 40px 30px;
}

.pricing-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pricing-list li:not(:last-of-type) {
    margin-bottom: 10px;
}

.pricing-list li a.default-btn {
    width: 100%;
    margin-top: 20px;
}


/*=== 4.1 Pricing Tab Menu ===*/
.pricing-tab-menu {
    justify-content: center;
    margin-bottom: 30px;
}

.pricing-tab-menu li {
    position: relative;
}

.pricing-tab-menu li .nav-link {
    font-size: 17px;
    font-weight: 500;
    color: #999;
    padding: 0;
}

.pricing-tab-menu li .nav-link:hover,
.pricing-tab-menu li .nav-link.active {
    color: #222;
}

.pricing-tab-menu li:not(:last-of-type) {
    padding-right: 80px;
}

.pricing-tab-menu li:not(:last-of-type):before {
    background-color: #ccc;
    width: 50px;
    height: 2px;
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.tab-pane.active.show .row>div {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-name: fade-in-bottom;
    animation-name: fade-in-bottom;
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-fill-mode: both;
    transition: all 0.2s ease-in-out;
    transition-duration: 800ms;
    animation-delay: 0.1s;
}

.tab-pane.active.show .row>div:nth-child(2) {
    animation-delay: 0.2s;
}

.tab-pane.active.show .row>div:nth-child(3) {
    animation-delay: 0.3s;
}

/*=== 5.0 Taxi Details ===*/
.taxi-details-img {
    position: relative;
}

.taxi-details-img:before {
    background-color: #0e76a8;
    background-image: repeating-linear-gradient(45deg, #1c82b4 0, #1c82b4 2px, transparent 0, transparent 50%);
    background-size: 10px 10px;
    width: 40%;
    height: 100%;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.taxi-details-img img {
    margin-left: -50px;
    margin-top: 100px;
}

.taxi-details-img .price {
    background-color: #222;
    background-image: url(../img/texture.png);
    background-repeat: repeat;
    background-size: cover;
    clip-path: polygon(85% 0%, 100% 30%, 100% 100%, 0 100%, 0 0);
    width: auto;
    padding: 15px 25px;
    position: absolute;
    right: 120px;
    top: 110px;
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    z-index: -1;
}

.taxi-details-img .price i {
    font-size: 25px;
    color: #0e76a8;
    margin-right: 5px;
}

.taxi-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 40px;
    row-gap: 15px;
    margin-top: 30px;
}

.taxi-features li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.taxi-features li span {
    font-weight: 500;
    color: #222;
    display: flex;
    align-items: center;
}

.taxi-features li span i {
    color: #0e76a8;
    font-size: 25px;
    margin-right: 5px;
}

/*=== 6.0 Download Section ===*/
.download-section {
    position: relative;
    overflow: hidden;
}

.app-feature {
    margin-top: 20px;
}

.app-feature li {
    display: inline-block;
    align-items: center;
}

.app-feature li:not(:last-of-type) {
    margin-right: 20px;
}

.app-feature li .feature-icon {
    width: 40px;
    margin-bottom: 10px;
}

.app-feature li h3 {
    font-size: 17px;
    line-height: 26px;
    font-weight: 600;
    margin-bottom: 0;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.download-btn a {
    width: 170px;
}

.download-btn a:hover {
    transform: translateY(-3px);
}
.taxi-holder {
    background-image: url(../img/taxi-background.png);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
    width: 100%;
    min-height: 550px;
    position: absolute;
    right: 40px;
    top: 100px;
    z-index: -1;
}

.taxi-holder .taxi {
    background-image: url(../img/taxi.png);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
    width: 650px;
    height: 100%;
    position: absolute;
    right: 75px;
    top: 80px;
}

.taxi-holder .mockup {
    background-image: url(../img/mockup.png);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
    width: 350px;
    height: 100%;
    position: absolute;
    right: 330px;
    top: -120px;
    z-index: -1;
}

.taxi-holder .charecter {
    background-image: url(../img/charecter.png);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
    width: 180px;
    height: 100%;
    position: absolute;
    right: 130px;
    top: 80px;
}

.location-marker {
    position: absolute;
    right: 17%;
    top: 20px;
    animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
    -moz-animation: bounce 2s infinite;
    -o-animation: bounce 2s infinite;
}

@-webkit-keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-20px);
    }

    60% {
        -webkit-transform: translateY(-10px);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

@media (min-width: 993px) and (max-width: 1300px) {
    .taxi-holder .taxi {
        width: 390px;
        right: 75px;
        top: 80px;
    }
    .taxi-holder .mockup {
        width: 230px;
        right: 190px;
        top: -55px;
    }
    .taxi-holder .charecter {
        width: 125px;
        right: 130px;
        top: 45px;
    }
    .location-marker {
        right: 15%;
        top: 50px;
    }
}

/*=== 6.1 Download Section 2 ===*/
.download-section-2 {
    background-image: url(../img/bg-1.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.download-section-2 .section-heading h2 {
    color: #fff;
}

.download-section-2 .section-heading p {
    color: #ddd;
}

.download-mockup {
    background-image: url(../img/mockup-2.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 380px;
    height: 100%;
    position: absolute;
    right: 250px;
    bottom: -20px;
}

.app-screen {
    width: 220px;
    position: absolute;
    right: 150px;
    bottom: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    box-shadow: 0 1px 5px rgb(0 0 0 / 15%);
    overflow: hidden;
}

@media ( max-width: 1200px){
    .download-mockup{
        right: 130px;
        bottom: -60px;
    }
    .app-screen{
        right: 60px;
    }
}

@media ( min-width: 1600px){
    .download-mockup{
        right: 320px;
    }
    .app-screen{
        right: 290px;
    }
}

/*=== 7.0 Testimonials Section ===*/
.testimonial-section {
    position: relative;
}

.testimonial-section:before {
    background-image: url(../img/map.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
    width: 50%;
    height: 100%;
    content: "";
    position: absolute;
    left: 0;
    top: 40px;
}

.testimonial-carousel {
    overflow: hidden;
    padding: 25px 5px 5px;
}

.testimonial-carousel-2.swiper-container {
    padding: 25px 0;
}

.testi-pagination {
    margin-left: -5px;
}

.testi-pagination .swiper-pagination {
    left: 5px;
    bottom: -50px;
    text-align: left;
}

.testi-item {
    background-color: #fff;
    border-radius: 2px;
    padding: 40px;
    box-shadow: 0 1px 5px rgb(0 0 0 / 20%);
    position: relative;
}

.testi-item p {
    font-size: 20px;
    line-height: 36px;
    font-weight: 500;
    margin-bottom: 0;
    letter-spacing: -0.5px;
}

.quote-icon {
    background-color: #0e76a8;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    font-size: 30px;
    color: #222;
    width: 60px;
    height: 50px;
    position: absolute;
    right: 100px;
    top: -25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.testi-author .author-thumb img {
    border-radius: 50%;
}

.testi-author .author-info h3 {
    font-size: 22px;
    margin: 0;
    display: block;
    line-height: 1;
}

.testi-author .author-info h3 span {
    display: block;
    font-size: 16px;
    line-height: 1;
    margin-top: 10px;
}

.testimonial-carousel .swiper-pagination {
    text-align: left;
}

/* Feature List */
.feature-wrap {
    background-color: #0e76a8;
    padding: 110px 40px;
    background-image: repeating-linear-gradient(45deg, #1c82b4 0, #1c82b4 2px, transparent 0, transparent 50%);
    background-size: 10px 10px;
    margin-left: 40px;
}

.WhipShip-features li {
    display: flex;
    align-items: center;
    gap: 20px;
}

.WhipShip-features li:not(:last-of-type) {
    margin-bottom: 30px;
}

.feature-icon {
    font-size: 60px;
    color: #fff;
}

.feature-content h3 {
    color: #fff;
    font-size: 22px;
    margin: 0;
}

.feature-content p {
    margin: 0;
    color: #fafafa;
}

/*=== 8.0 CTA Section ===*/
.cta-section {
    background-image: url(../img/texture.png);
    clip-path: polygon(0 0, 100% 0, 100% 50%, 80% 100%, 0 100%);
    background-repeat: repeat;
    background-size: cover;
    background-color: #222;
    position: relative;
    z-index: 1;
}

.cta-men {
    background-image: url(../img/cta-men.png);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: contain;
    width: 100%;
    height: 100%;
    position: absolute;
    right: 130px;
    bottom: -30px;
    z-index: -1;
}

.cta-content .cta-call {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}

.cta-content .cta-call p span {
    display: block;
}

.cta-content .cta-call p a {
    color: #0e76a8;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.cta-content .cta-call i {
    background-color: rgba(255, 153, 0, 0.1);
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 40px;
    color: #0e76a8;
    border-radius: 2px;
}

.cta-content h2 {
    font-size: 46px;
    line-height: 52px;
    color: #fff;
    margin-bottom: 20px;
}

.cta-content h2 span {
    color: #0e76a8;
}

.cta-content P {
    font-size: 18px;
    font-weight: 500;
    color: #ccc;
    margin: 0;
}

/*=== 8.1 CTA Section 2 ===*/
.cta-section-2 {
    position: relative;
    z-index: 1;
}

.cta-section-2:before {
    background-color: #0e76a8;
    background-image: url(../img/cta-map.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 90%;
    height: 100%;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.cta-section-2 .cta-content h4 {
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1px;
}

.cta-section-2 .cta-content h2 {
    margin: 0;
    font-size: 36px;
    line-height: 42px;
}

.cta-section-2 .cta-content .default-btn {
    background-color: #222;
    margin-top: 20px;
}

.cta-section-2 .cta-content .default-btn:hover {
    color: #222;
}

.cta-section-2 .cta-content .default-btn:after,
.cta-section-2 .cta-content .default-btn:before {
    background-color: #fff;
}

.cta-section-2 .check-list i {
    background-color: #222;
    clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
    font-size: 12px;
    color: #0e76a8;
    width: 30px;
    height: 20px;
    line-height: 20px;
    text-align: center;
}

.cta-section-2 .check-list li {
    color: #fff;
}

.cta-section-2 .check-list li:not(:last-of-type) {
    margin-bottom: 10px;
}

.cta-section-2 .cta-men {
    background-size: 95%;
    right: 90px;
    bottom: 0;
    width: 500px;
    height: 420px;
}

@media (min-width: 993px) and (max-width: 1200px) {
    .cta-men {
        width: 450px;
        right: 70px;
        bottom: -5px;
    }
}

/*=== 9.0 Team Section ===*/
.team-thumb {
    clip-path: polygon(0 0, 90% 0%, 100% 10%, 100% 100%, 0 100%);
}

.team-thumb img{
    width: 100%;
}

.team-content {
    position: relative;
}

.team-content:before {
    /* background-image: url(../img/car%20steering.svg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 50%;
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    left: 50%;
    top: -65px;
    transform: translateX(-50%); */
}

.team-content h3 a {
    background-color: #0e76a8;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 90% 100%, 0 100%);
    background-image: repeating-linear-gradient(45deg, #1c82b4 0, #1c82b4 2px, transparent 0, transparent 50%);
    background-size: 8px 8px;
    width: 90%;
    height: 70px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    margin: 0 auto;
    margin-top: -30px;
    padding-bottom: 10px;
    color: white;
}

.team-content h3 a:hover {
    color: #222;
}

.team-content h4 {
    background-color: #222;
    background-image: url(../img/texture.png);
    background-repeat: repeat;
    background-size: cover;
    clip-path: polygon(100% 0, 100% 100%, 10% 100%, 0% 70%, 0 0);
    color: #fff;
    width: 60%;
    height: 40px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    margin-left: auto;
    position: absolute;
    right: 59px;
    top: 50px;
    box-shadow: 0 1px 5px rgb(0 0 0 / 20%);
}

/* Driver Details */
.driver-details {
    position: relative;
}

.driver-details img {
    width: 100%;
    border-radius: 5px;
}

.experience-box {
    background-color: #0e76a8;
    background-image: repeating-linear-gradient(45deg, #1c82b4 0, #1c82b4 2px, transparent 0, transparent 50%);
    background-size: 10px 10px;
    padding: 30px;
    position: absolute;
    left: -20px;
    top: 50px;
    border-radius: 2px;
}

.experience-box h3 span {
    font-size: 50px;
    line-height: 1;
    font-weight: 600;
    display: block;
    color: #fff;
}

.experience-box h3 {
    font-size: 16px;
    margin: 0;
}

/*=== 10.0 Taxi Booking Form ===*/
.taxi-booking-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}

.taxi-booking-form .form-control {
    height: 50px;
    border-radius: 2px;
    border: 1px solid #ccc;
    font-size: 17px;
    outline: none;
    box-shadow: none;
}

.taxi-booking-form .form-control:focus {
    border: 1px solid #0e76a8;
}

.taxi-booking-form .niceSelect {
    width: 100%;
    border-radius: 2px;
    border: 1px solid #ccc;
    height: 50px;
    line-height: 50px;
    font-size: 17px;
}

.taxi-booking-form .nice-select .list {
    border-radius: 2px;
    margin-top: 0;
}

.taxi-booking-form .nice-select .option {
    font-size: 15px;
}

.taxi-booking-form .nice-select .option:hover {
    color: #222;
}

.taxi-booking-form .form-field {
    position: relative;
}

.taxi-booking-form .form-field i {
    color: #0e76a8;
    font-size: 20px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

/*=== 11.0 Faq's Section ===*/
.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    outline: none;
    box-shadow: none;
}

.accordion-button {
    background-color: #fff;
    color: #222;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.5px;
    font-weight: 500;
    text-transform: capitalize;
    border: 1px solid #eee;
    padding: 20px 15px;
}

.accordion-button:focus {
    border-color: #eee;
    outline: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #0e76a8;
}

.accordion-button:not(.collapsed):after {
    background-image: inherit;
    content: "\f068";
    color: #fff;
    transform: inherit;
}

.accordion-button:after {
    background-image: inherit;
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-size: 12px;
    position: absolute;
    right: 20px;
    top: 50%;
    color: #222;
    font-weight: 600;
    transform: translateY(-50%) !important;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*=== 12.0 Contact Section ===*/
.contact-section {
    position: relative;
    z-index: 1;
}

.contact-section .map {
    background-image: url(../img/cta-map.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 80%;
    width: 100%;
    height: 100%;
    position: absolute;
    left: -20%;
    top: 0;
    z-index: -1;
}

.contact-details-wrap {
    padding-right: 60px;
}

.contact-title {
    margin-bottom: 20px;
}

.contact-title h2 {
    font-size: 28px;
    line-height: 38px;
    font-weight: 600;
    display: inline-block;
}

.contact-section .contact-details li {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.contact-section .contact-details li i {
    background-color: white;
    background-image: url(../img/texture.png);
    background-repeat: repeat;
    background-size: cover;
    color: #0e76a8;
    font-size: 25px;
    margin-right: 15px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 2px;
}

.contact-form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
}

.contact-form-group .form-field .form-control {
    background-color: #fff;
    border: 1px solid #ccc;
    height: 50px;
    border-radius: 0;
    box-shadow: none;
    outline: none;
}

.contact-form-group .form-field .form-control:focus {
    border: 1px solid #0e76a8;
}

.contact-form-group .form-field.message {
    grid-column-end: span 2;
}

.contact-form-group .form-field.message .form-control {
    height: auto;
}

.contact-form .form-group .form-control::-webkit-input-placeholder,
.contact-form .form-group .form-control::-webkit-input-placeholder {
    color: #999 !important;
}

.contact-form .form-group .form-control:-moz-placeholder,
.contact-form .form-group .form-control:-moz-placeholder {
    /* Firefox 18- */
    color: #999 !important;
}

.contact-form .form-group .form-control::-moz-placeholder,
.contact-form .form-group .form-control::-moz-placeholder {
    /* Firefox 19+ */
    color: #999 !important;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #ddd !important;
}

.contact-form .form-group .form-control.message {
    height: 120px;
}

#b-form-messages,
#form-messages {
    display: none;
    margin-top: 15px;
    margin-bottom: 0;
}

#b-form-messages.alert-danger,
#form-messages.alert-danger,
#b-form-messages.alert-success,
#form-messages.alert-success {
    display: block
}

.branches-section {
    position: relative;
}

.branches-list h3 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
    background-color: #0e76a8;
    color: #fff;
    display: inline-block;
    padding: 3px 15px;
    margin-bottom: 20px;
}

.branches-list ul li {
    margin-bottom: 5px;
}

.branches-list ul li a {
    color: #777;
}

.branches-list ul li a:hover {
    text-decoration: underline;
    color: #0e76a8;
}

/*=== 13.0 Footer Section ===*/
.footer-top-wrap {
    background-color: #F4F5F8;
    overflow: hidden;
}
.not-found-404 .footer-top-wrap {
    background-color: #222222;
}

.footer-top .footer-call {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-top .brand {
    display: grid;
    grid-template-columns: 180px 1fr;
    align-items: center;
    grid-gap: 20px;
    position: relative;
    padding: 30px 70px 30px 0px;
    z-index: 2;
}

.footer-top .brand p {
    position: relative;
    padding-left: 20px;
}

.footer-top .brand p:before {
    background-color: #444;
    width: 2px;
    height: 100%;
    content: '';
    position: absolute;
    left: -10px;
    top: 0;
}

.footer-top .brand:before,
.footer-top .brand:after {
    background-color: #222;
    background-image: url(../img/texture.png);
    background-repeat: repeat;
    background-size: cover;
    content: "";
    width: 150%;
    height: 100%;
    position: absolute;
    right: 150px;
    bottom: -1px;
    z-index: -1;
}

.footer-top .brand:before {
    width: 200px;
    clip-path: polygon(0 0, 70% 0, 100% 100%, 0% 100%);
    right: 0;
}

.footer-top .footer-call {
    padding: 32px 0px;
    position: relative;
    z-index: 1;
}

.footer-top .footer-call:before {
    background-color: #0e76a8;
    background-image: repeating-linear-gradient(45deg, #1c82b4 0, #1c82b4 2px, transparent 0, transparent 50%);
    background-size: 10px 10px;
    content: '';
    width: 5000px;
    height: 100%;
    position: absolute;
    left: -85px;
    bottom: 0;
    z-index: -1;
}

.footer-call i {
    font-size: 45px;
    color: #fff;
}

.footer-call p span {
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: #fafafa;
    margin-bottom: 5px;
}

.footer-call p a {
    color: white;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.footer-top .brand p,
.footer-top .footer-call p {
    color: #ccc;
    margin: 0;
}

/*=== 13.1 Mid Footer ===*/
.footer-mid-wrap {
    background-color: #222;
    background-image: url(../img/texture.png);
    background-repeat: repeat;
    background-size: cover;
    padding: 80px 0 140px 0;
    position: relative;
    z-index: 1;
}

.footer-mid-wrap:before {
    background-image: url(../img/city-skiline.png);
    background-size: 100%;
    background-position: bottom center;
    background-repeat: no-repeat;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

.running-taxi {
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100px;
    left: 0;
    bottom: 0;
    z-index: 2;
}

.running-taxi .taxi {
    background-image: url(../img/truck-1.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    position: absolute;
    width: 110px;
    height: 40px;
    right: 0;
    bottom: 0;
    animation: running-anim 20s linear infinite;
}

.running-taxi .taxi-2 {
    background-image: url(../img/truck-2.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    position: absolute;
    width: 110px;
    height: 40px;
    right: 30%;
    bottom: 0;
    animation: running-anim 30s linear infinite;
}

.running-taxi .taxi-3 {
    background-image: url(../img/truck-3.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    position: absolute;
    width: 100px;
    height: 100px;
    right: 70%;
    bottom: 0;
    animation: running-anim-left 35s linear infinite;
}

.footer-item .widget-title h3 {
    color: #fff;
}

.footer-links li:not(:last-of-type) {
    margin-bottom: 10px;
}

.footer-contact li:not(:last-of-type) {
    margin-bottom: 15px;
}

.footer-links li a,
.footer-contact li {
    color: #ccc;
}

.footer-contact li span {
    display: block;
    color: #0e76a8;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.footer-links li a:hover {
    color: #0e76a8;
}

@media (min-width: 992px) {
    .footer-list {
        margin-left: 15px;
    }
}

/*=== 13.2 Subscribe Form ===*/
.subscribe-form .form-control {
    background-color: #fff;
    clip-path: polygon(0% 0%, 90% 0, 100% 30%, 100% 100%, 0 100%);
    border-radius: 0;
    width: 100%;
    height: 50px;
    border: none;
    outline: none;
    box-shadow: none;
}

.subscribe-form .submit {
    background-color: #0e76a8;
    clip-path: polygon(0 0, 100% 0%, 85% 100%, 0 100%);
    padding: 0 35px 0 30px;
    height: 45px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.2px;
    color: #222;
    line-height: 45px;
    text-align: center;
}

.subscribe-form .submit:hover {
    background-color: #ffab2e;
}

#subscribe-result {
    display: none;
}

#subscribe-result.subs-result {
    display: block;
    border: 1px solid #ddd;
    border-radius: 3px;
    color: #ccc;
    padding: 10px;
    margin-top: 15px;
}

.subscription-error {
    color: #ff0000;
}

/* Running Animation Keyframe */
@-moz-keyframes running-anim {
    0% {
        right: -30%
    }

    100% {
        right: 100%
    }
}

@-webkit-keyframes running-anim {
    0% {
        right: -30%
    }

    100% {
        right: 100%
    }
}

@keyframes running-anim {
    0% {
        right: -30%
    }

    100% {
        right: 100%
    }
}

@-moz-keyframes running-anim-left {
    0% {
        left: -30%
    }

    100% {
        left: 100%
    }
}

@-webkit-keyframes running-anim-left {
    0% {
        left: -30%
    }

    100% {
        left: 100%
    }
}

@keyframes running-anim-left {
    0% {
        left: -30%
    }

    100% {
        left: 100%
    }
}

/*=== 13.3 Copyright Section ===*/
.copyright-wrap {
    background-color: #222;
    background-image: url(../img/texture.png);
    background-repeat: repeat;
    background-size: cover;
    border-top: 1px solid #333;
    padding: 20px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.copyright-wrap p {
    color: #ccc;
    margin: 0;
}

@media (max-width: 992px){
    .footer-top .footer-call:before{
        left: -200px;
    }
}

/*===================================================
    Media Query
====================================================*/

/* Tablet Devices */
@media (max-width: 992px) {
    .padding{ padding: 50px 0; }
    .sm-padding{ padding: 15px; }
    p br{ display: none; }
    span br{ display: none; }
    .default-btn{ padding: 0 30px; }
    .section-heading h2{
        font-size: 32px;
        line-height: 42px;
    }
    .section-heading br{ display: inherit; }
    .grid-post{ margin: 0; }
    .about-info{
        display: block;
        column-gap: 20px;
    }
    .about-info li h2{margin-top: 25px;}
    .about-img:before{
        right: 90px; 
        bottom: 0;
    }
    .about-img .about-img1 {
        transform: translate(-35px, -40px);
    }
    .about-img .about-img2 {
        right: 30px;
        bottom: -100px;
    }
    .service-section .bg-half{
        height: 496px;
    }
    .swiper-outside .swiper-nav{ display: none; }
    .booking-car,
    .booking-section:before{ display: none;}
    .booking-section:after {
        clip-path: polygon(0 0, 100% 0%, 100% 100%, 20% 100%);
        height: 60px;
    }
    .booking-wrap .section-heading h2{ font-size: 32px; }
    .taxi-holder{
        background-image: none;
    }
    .taxi-holder .mockup,
    .location-marker,
    .taxi-holder .taxi,
    .taxi-holder .charecter{
        display: none;
    }
    .testimonial-section{ padding: 50px 0; }
    .feature-wrap{
        margin-left: 0;
        padding: 50px;
        margin-top: 80px;
    }
    .footer-call p span{
        display: inline-block;
        font-size: 32px;
        line-height: 1;
        margin-bottom: 0;
        margin-right: 20px;
    }
    .cta-men{ display: none; }
    .cta-content h2{ font-size: 36px; }
    .cta-section{ clip-path: inherit; }
    .cta-content{ text-align: center; }
    .cta-content .cta-call{ justify-content: center; }
    .cta-content .cta-call p span{ text-align: left; }
    .booking-form-2{margin-bottom: 50px;}
    .cta-section-2 .cta-content {
        text-align: left;
        margin-bottom: 35px;
        width: 50%;
    }
    .cta-section-2 .cta-men{
        display: block;
        background-size: 90%;
        right: 10px;
        
    }
    .page-header-shape{
        width: 30%;
        height: 60px;
    }
    .page-header-shape:after{ height: 45px; }
    .video-box-inner > img{display: none;}
    .taxi-details .section-heading{margin-top: 40px;}
    .driver-details{ margin-top: 40px; }    
    .testimonial-section-2 .testi-pagination .swiper-pagination{
        bottom: -20px;
    }
    .contact-form-group .default-btn{ font-size: 14px; }

}

/* Mobile Devices */
@media all and (max-width: 768px) {
    .padding{ padding: 50px 0; }
    .xs-padding{ padding: 15px; }
    .section-heading p br,
    br{ display: none; }
    .section-heading h2{
        font-size: 24px;
        line-height: 34px;
    }
    .about-img{
        margin-bottom: 80px;
        margin-top: 15px;
    }
    .about-img:before {
        right: 75px;
        bottom: -35px;
        height: calc(100% + 50px);
    }
    .about-img .about-img1 {
        max-width: 240px;
        transform: translate(20px, 10px);
    }
    .about-img .about-img2 {
        right: 15px;
        bottom: 30px;
    }
    .service-section .bg-half{
        height: 547px;
    }
    .booking-form{
        grid-template-columns: 1fr;
    }
    .booking-section:after{ display: none; }
    .booking-wrap .section-heading h2{ font-size: 24px; }   
    
    .cta-content h2 {
        font-size: 24px;
        line-height: 32px;
    }
    .cta-content .cta-call p a{ font-size: 22px; }
    .footer-top .brand:before{
        clip-path: inherit;
    }
    .footer-top-wrap{
        background-color: #222;
        overflow: hidden;
    }
    .footer-call p span,
    .footer-call p a{
        font-size: 20px;
    }
    .footer-top .brand{
        display: block;
        padding: 50px 30px;
    }
    .footer-top .brand p{
        padding: 0;
        margin-top: 20px;
    }
    .footer-top .brand p:before{
        display: none;
    }
    .footer-mid-wrap{
        padding: 50px 0 100px 0;
    }
    .main-slider-2 .swiper-nav{ display: none; }
    .booking-form-2 .col-lg-8{
        padding: 50px 20px;
    }
    .booking-form-2{clip-path: none;}
    .cta-section-2:before,
    .cta-section-2 .cta-content{width: 100%;}
    .cta-section-2 .cta-men{display: none;}
    .page-header-shape {
        width: 40%;
        height: 50px;
    }
    .page-header-shape:after {
        height: 35px;
        left: -100px;
    }
    .service-details-list,
    .service-features{ grid-template-columns: 1fr; }
    .service-details-list > div{ margin-top: 20px; }
    .taxi-details-img img {
        margin-left: 0;
        margin-top: 30px;
    }
    .taxi-details-img .price{
        right: 35px;
        top: 10px;
    }
    .taxi-features{grid-template-columns: 1fr;}
    .taxi-booking-form{ grid-template-columns: 1fr; }
    .contact-form-group{
        display: block;
    }
    .contact-form-group .form-field:not(:last-of-type){
        margin-bottom: 20px;
    }
    .contact-section .contact-details li{display: block;}
    .contact-section .contact-details li i{
        display: block;
        margin-bottom: 15px;
    }
    
}

@media all and (max-width: 580px) {
    #scrollup {
        bottom: 20px;
        right: 20px;
    }
    .pricing-tab-menu li:not(:last-of-type) {
        padding-right: 25px;
    }
    .pricing-tab-menu li:not(:last-of-type):before {
        width: 15px;
        right: 5px;
    }
    #pricing-tab-content .tab-pane{
        margin-top: 15px;
    }
    .app-feature li:not(:last-of-type){
        margin-bottom: 20px;
    }
}

.nice-select {
    -webkit-tap-highlight-color: transparent;
    background-color: #fff;
    border-radius: 5px;
    border: solid 1px #e8e8e8;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    float: left;
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    height: 42px;
    line-height: 40px;
    outline: 0;
    padding-left: 18px;
    padding-right: 30px;
    position: relative;
    text-align: left !important;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    width: auto
}

.nice-select:hover {
    border-color: #dbdbdb
}

.nice-select.open,
.nice-select:active,
.nice-select:focus {
    border-color: #999
}

.nice-select:after {
    border-bottom: 2px solid #999;
    border-right: 2px solid #999;
    content: '';
    display: block;
    height: 5px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: 50%;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
    width: 5px
}

.nice-select.open:after {
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg)
}

.nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0)
}

.nice-select.disabled {
    border-color: #ededed;
    color: #999;
    pointer-events: none
}

.nice-select.disabled:after {
    border-color: #ccc
}

.nice-select.wide {
    width: 100%
}

.nice-select.wide .list {
    left: 0 !important;
    right: 0 !important
}

.nice-select.right {
    float: right
}

.nice-select.right .list {
    left: auto;
    right: 0
}

.nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px
}

.nice-select.small:after {
    height: 4px;
    width: 4px
}

.nice-select.small .option {
    line-height: 34px;
    min-height: 34px
}

.nice-select .list {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 0 1px rgba(68, 68, 68, .11);
    box-sizing: border-box;
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: scale(.75) translateY(-21px);
    -ms-transform: scale(.75) translateY(-21px);
    transform: scale(.75) translateY(-21px);
    -webkit-transition: all .2s cubic-bezier(.5, 0, 0, 1.25), opacity .15s ease-out;
    transition: all .2s cubic-bezier(.5, 0, 0, 1.25), opacity .15s ease-out;
    z-index: 9
}

.nice-select .list:hover .option:not(:hover) {
    background-color: transparent !important
}

.nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    outline: 0;
    padding-left: 18px;
    padding-right: 29px;
    text-align: left;
    -webkit-transition: all .2s;
    transition: all .2s
}

.nice-select .option.focus,
.nice-select .option.selected.focus,
.nice-select .option:hover {
    background-color: #f6f6f6
}

.nice-select .option.selected {
    font-weight: 700
}

.nice-select .option.disabled {
    background-color: transparent;
    color: #999;
    cursor: default
}

.no-csspointerevents .nice-select .list {
    display: none
}

.no-csspointerevents .nice-select.open .list {
    display: block
}

/* ===================================================
    Table of Contents
=====================================================
    1.0 Wrapper
	2.0 Slider Content
	3.0 Car Holder
	4.0 Slider Pagination
	5.0 Slider Navigation
=====================================================
    Slider CSS
==================================================== */

/*=== 1.0 Wrapper ===*/
.main-slider {
    position: relative;
}

.main-slider .swiper-slide {
    z-index: 1;
}

.slider-img {
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    z-index: -1;
}

.slider-img img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation-duration: 8s;
}

/*=== 2.0 Slider Content ===*/
.slider-content-wrap {
    height: 600px;
}

.slider-caption.medium {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.slider-caption.big {
    font-size: 56px;
    line-height: 60px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.slider-caption.small {
    font-size: 18px;
    line-height: 28px;
    color: #ddd;
    margin-bottom: 20px;
}

/*=== 3.0 Car Holder ===*/
.car-holder {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.car-holder img {
    z-index: 2;
}

.car-holder .shape {
    position: absolute;
    right: 120px;
    top: 0;
    height: 100%;
    width: 450px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    transform: skew(-20deg, 0deg);
    overflow: hidden;
}

.car-holder .shape div {
    background-color: #222;
    width: 100px;
    height: 80%;
    z-index: 1;
}

.car-holder .shape div:nth-child(2) {
    background-color: #0e76a8;
    width: 200px;
    height: 100%;
}

.car-holder .shape div:nth-child(3) {
    background-color: #222;
    width: 100px;
    height: 80%;
    margin-bottom: 30%;
}

/*=== 4.0 Slider Pagination ===*/
.slider-controls {
    background-color: #fff;
    border-radius: 2px;
    width: 300px;
    height: 80px;
    padding: 20px;
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 5px;
    z-index: 10;
}

.slider-controls .slider-pagination {
    width: auto;
    display: flex;
    align-items: center;
    column-gap: 5px;
}

.slider-control {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s cubic-bezier(.165, .85, .45, 1);
}

.slider-control:hover {
    color: #0e76a8;
}

.slider-control span {
    font-size: 30px;
    margin-top: 3px;
    line-height: 1;
}

.slider-pagination .swiper-pagination-current {
    font-size: 42px;
    font-weight: 500;
    color: #0e76a8;
}

@media (min-width: 1200px) {
    .slider-controls{
        width: 450px;
        justify-content: flex-end;
        column-gap: 60px;
    }
}

/*=== 5.0 Slider Navigation ===*/
.main-slider-2 {
    position: relative;
}

.main-slider-2 .swiper-nav {
    color: #222;
    font-size: 35px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: absolute;
    left: -5px;
    top: calc(50% - 30px);
    transform: translateY(-50%);
    cursor: pointer;
    opacity: 0.7;
    transition: all 300ms cubic-bezier(.165, .85, .45, 1);
    z-index: 1;
    visibility: hidden;
    opacity: 0;
}

.main-slider-2 .swiper-nav:hover {
    opacity: 1;
}

.main-slider-2 .swiper-nav:before {
    background-color: #0e76a8;
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.main-slider-2 .swiper-nav.swiper-next {
    justify-content: center;
    left: auto;
    right: -5px;
    clip-path: polygon(0 50%, 100% 100%, 100% 0);
}

.main-slider-2 .swiper-nav.swiper-prev {
    justify-content: center;
    clip-path: polygon(100% 50%, 0 100%, 0 0);
}

.main-slider-2:hover .swiper-nav{
    visibility: visible;
    opacity: 1;
    left: 0;
}

.main-slider-2:hover .swiper-nav.swiper-next{
    left: auto;
    right: 0;
}

/* Car Animation */
.car-animation {
    -webkit-animation-name: car-animation;
    animation-name: car-animation;
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-fill-mode: both;
}

@-webkit-keyframes car-animation {
    0% {
        -webkit-transform: translateX(60%);
        transform: translateX(60%);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes car-animation {
    0% {
        -webkit-transform: translateX(60%);
        transform: translateX(60%);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

/* Responsive */

@media (max-width: 992px) {

    .slider-caption.big {
        font-size: 48px;
        line-height: 52px;
    }

    .slider-controls {
        bottom: -1px;
    }

    .car-holder {
        display: none;
    }
}

@media (max-width: 767px) {
    .slider-caption.big {
        font-size: 36px;
        line-height: 46px;
    }

    .slider-controls {
        height: 60px;
    }

    .slider-pagination .swiper-pagination-current {
        font-size: 32px;
    }
}

/**
 * Swiper 7.2.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 27, 2021
 */

 @font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-pointer-events{touch-action:pan-y}.swiper-pointer-events.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-3d,.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-horizontal.swiper-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-vertical.swiper-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;text-transform:none;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:50%;background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;animation:swiper-preloader-spin 1s infinite linear;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{100%{transform:rotate(360deg)}}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active,.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-next+.swiper-slide,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}

 .vbox-overlay{--vbox-tools-color:#fff;--vbox-title-background:#101010;--vbox-title-width:'auto';--vbox-title-radius:0;--vbox-share-background:#101010;--vbox-share-width:'auto';--vbox-share-radius:0}.vbox-overlay *,.vbox-overlay :after,.vbox-overlay :before{-webkit-backface-visibility:hidden;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.vbox-overlay *{-webkit-backface-visibility:visible;backface-visibility:visible}.vbox-overlay{display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;-webkit-justify-content:center;justify-content:center;-webkit-align-items:center;align-items:center;position:fixed;left:0;top:0;bottom:0;right:0;z-index:999999}.vbox-share,.vbox-title{line-height:1;position:fixed;z-index:98;text-align:center;margin:0 auto;color:var(--vbox-tools-color)}.vbox-title{font-size:12px;background-color:var(--vbox-title-background);width:var(--vbox-title-width);border-radius:var(--vbox-title-radius);padding:12px 54px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block}.vbox-share{font-size:24px;padding:0 .35em;background-color:var(--vbox-share-background);width:var(--vbox-share-width);border-radius:var(--vbox-share-radius)}.vbox-link-btn,button.vbox-link-btn,button.vbox-link-btn:active,button.vbox-link-btn:focus,button.vbox-link-btn:hover{border:none!important;background:0 0!important;box-shadow:none!important;color:inherit!important;padding:6px 12px;outline:0;display:inline-block;cursor:pointer}.vbox-share a{color:inherit!important;padding:6px 12px;display:inline-block}.vbox-share svg{z-index:10;vertical-align:middle}.vbox-close{cursor:pointer;position:fixed;top:20px;right:20px;z-index:99;color:#000;color:var(--vbox-tools-color);border:0;font-size:24px;display:flex;align-items:center;opacity:.8;transition:opacity .2s}.vbox-close:hover{opacity:1}.vbox-left-corner{cursor:pointer;position:fixed;left:20px;top:20px;overflow:hidden;line-height:1;font-size:12px;z-index:99;display:flex;align-items:center;color:var(--vbox-tools-color)}.vbox-num{display:inline-block}.vbox-left{left:0}.vbox-right{right:0}.vbox-top{top:0}.vbox-bottom{bottom:0}.vbox-next,.vbox-prev{position:fixed;top:50%;margin-top:-15px;overflow:hidden;cursor:pointer;display:block;color:#d2d2d2;width:30px;height:30px;z-index:99;opacity:.8;transition:opacity .2s}.vbox-next:hover,.vbox-prev:hover{color:#d2d2d2;opacity:1}.vbox-next span,.vbox-prev span{position:relative;width:20px;height:20px;border:2px solid transparent;border-top-color:var(--vbox-tools-color);border-right-color:var(--vbox-tools-color);text-indent:-100px;position:absolute;top:8px;display:block}.vbox-prev{left:20px}.vbox-next{right:20px}.vbox-prev span{left:10px;-ms-transform:rotate(-135deg);-webkit-transform:rotate(-135deg);transform:rotate(-135deg)}.vbox-next span{-ms-transform:rotate(45deg);-webkit-transform:rotate(45deg);transform:rotate(45deg);right:10px}.vbox-inline,.venoratio{position:relative;width:100%;margin:0 auto}.venoratio::before{display:block;padding-top:var(--vb-aspect-ratio);content:""}.venoratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.venoratio-1x1{--vb-aspect-ratio:100%}.venoratio-4x3{--vb-aspect-ratio:calc(3 / 4 * 100%)}.venoratio-16x9{--vb-aspect-ratio:calc(9 / 16 * 100%)}.venoratio-21x9{--vb-aspect-ratio:calc(9 / 21 * 100%)}.vbox-child.vbox-inline,.vbox-child.venoratio{max-width:1400px}.vbox-open{overflow:hidden}.vbox-container{position:absolute;left:0;right:0;top:0;bottom:0;overflow:hidden;z-index:20;max-height:100%;padding:30px 0}.vbox-content{opacity:0}.vbox-content{text-align:center;width:100%;position:relative;overflow:hidden;padding:20px 5%;display:flex;align-items:center;justify-content:center;min-height:90vh;position:absolute;left:0;top:50%;transform:translateY(-50%)}.vbox-container img{max-width:100%;width:100%;height:100%;position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);object-fit:contain;object-position:center}.vbox-child{max-width:100%;text-align:initial;height:90vh;width:100%;left:0;top:0}.vbox-child img{-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-o-user-select:none;user-select:none;display:block}.vbox-grab .vbox-child img{cursor:grab}.vbox-content.swipe-left{margin-left:-200px!important}.vbox-content.swipe-right{margin-left:200px!important}.vbox-preloader{-webkit-transform:translateZ(0);-moz-transform:translateZ(0);-o-transform:translateZ(0);transform:translateZ(0)}.vbox-preloader .vbox-preloader-inner{opacity:1;transition:opacity .2s}.vbox-hidden{display:none}.vbox-preloader.vbox-hidden .vbox-preloader-inner{opacity:0}.vbox-backdrop{position:absolute;left:0;top:0;width:100%;height:100%;-webkit-transform:translateZ(-1px);-moz-transform:translateZ(-1px);-o-transform:translateZ(-1px);transform:translateZ(-1px);z-index:0}.vbox-tooltip{position:relative;display:inline-block}.vbox-tooltip .vbox-tooltip-text{visibility:hidden;color:#fff;text-align:center;padding:0;position:absolute;z-index:1;bottom:100%;left:0;opacity:0;transition:opacity .3s;margin-bottom:2px;font-family:sans-serif}.vbox-top .vbox-tooltip .vbox-tooltip-text{bottom:auto;top:100%;margin-bottom:0;margin-top:2px}.vbox-tooltip-inner{padding:5px 10px;background-color:rgba(0,0,0,.9);border-radius:6px;font-size:10px}.vbox-tooltip:hover .vbox-tooltip-text{visibility:visible;opacity:1}.vbox-overlay{--sk-size:40px;--sk-color:#333}.sk-center{margin:auto}.sk-plane{width:var(--sk-size);height:var(--sk-size);background-color:var(--sk-color);animation:sk-plane 1.2s infinite ease-in-out}@keyframes sk-plane{0%{transform:perspective(120px) rotateX(0) rotateY(0)}50%{transform:perspective(120px) rotateX(-180.1deg) rotateY(0)}100%{transform:perspective(120px) rotateX(-180deg) rotateY(-179.9deg)}}.sk-chase{width:var(--sk-size);height:var(--sk-size);position:relative;animation:sk-chase 2.5s infinite linear both}.sk-chase-dot{width:100%;height:100%;position:absolute;left:0;top:0;animation:sk-chase-dot 2s infinite ease-in-out both}.sk-chase-dot:before{content:'';display:block;width:25%;height:25%;background-color:var(--sk-color);border-radius:100%;animation:sk-chase-dot-before 2s infinite ease-in-out both}.sk-chase-dot:nth-child(1){animation-delay:-1.1s}.sk-chase-dot:nth-child(2){animation-delay:-1s}.sk-chase-dot:nth-child(3){animation-delay:-.9s}.sk-chase-dot:nth-child(4){animation-delay:-.8s}.sk-chase-dot:nth-child(5){animation-delay:-.7s}.sk-chase-dot:nth-child(6){animation-delay:-.6s}.sk-chase-dot:nth-child(1):before{animation-delay:-1.1s}.sk-chase-dot:nth-child(2):before{animation-delay:-1s}.sk-chase-dot:nth-child(3):before{animation-delay:-.9s}.sk-chase-dot:nth-child(4):before{animation-delay:-.8s}.sk-chase-dot:nth-child(5):before{animation-delay:-.7s}.sk-chase-dot:nth-child(6):before{animation-delay:-.6s}@keyframes sk-chase{100%{transform:rotate(360deg)}}@keyframes sk-chase-dot{100%,80%{transform:rotate(360deg)}}@keyframes sk-chase-dot-before{50%{transform:scale(.4)}0%,100%{transform:scale(1)}}.sk-bounce{width:var(--sk-size);height:var(--sk-size);position:relative}.sk-bounce-dot{width:100%;height:100%;border-radius:50%;background-color:var(--sk-color);opacity:.6;position:absolute;top:0;left:0;animation:sk-bounce 2s infinite cubic-bezier(.455,.03,.515,.955)}.sk-bounce-dot:nth-child(2){animation-delay:-1s}@keyframes sk-bounce{0%,100%{transform:scale(0)}45%,55%{transform:scale(1)}}.sk-wave{width:var(--sk-size);height:var(--sk-size);display:flex;justify-content:space-between}.sk-wave-rect{background-color:var(--sk-color);height:100%;width:15%;animation:sk-wave 1.2s infinite ease-in-out}.sk-wave-rect:nth-child(1){animation-delay:-1.2s}.sk-wave-rect:nth-child(2){animation-delay:-1.1s}.sk-wave-rect:nth-child(3){animation-delay:-1s}.sk-wave-rect:nth-child(4){animation-delay:-.9s}.sk-wave-rect:nth-child(5){animation-delay:-.8s}@keyframes sk-wave{0%,100%,40%{transform:scaleY(.4)}20%{transform:scaleY(1)}}.sk-pulse{width:var(--sk-size);height:var(--sk-size);background-color:var(--sk-color);border-radius:100%;animation:sk-pulse 1.2s infinite cubic-bezier(.455,.03,.515,.955)}@keyframes sk-pulse{0%{transform:scale(0)}100%{transform:scale(1);opacity:0}}.sk-flow{width:calc(var(--sk-size) * 1.3);height:calc(var(--sk-size) * 1.3);display:flex;justify-content:space-between}.sk-flow-dot{width:25%;height:25%;background-color:var(--sk-color);border-radius:50%;animation:sk-flow 1.4s cubic-bezier(.455,.03,.515,.955) 0s infinite both}.sk-flow-dot:nth-child(1){animation-delay:-.3s}.sk-flow-dot:nth-child(2){animation-delay:-.15s}@keyframes sk-flow{0%,100%,80%{transform:scale(.3)}40%{transform:scale(1)}}.sk-swing{width:var(--sk-size);height:var(--sk-size);position:relative;animation:sk-swing 1.8s infinite linear}.sk-swing-dot{width:45%;height:45%;position:absolute;top:0;left:0;right:0;margin:auto;background-color:var(--sk-color);border-radius:100%;animation:sk-swing-dot 2s infinite ease-in-out}.sk-swing-dot:nth-child(2){top:auto;bottom:0;animation-delay:-1s}@keyframes sk-swing{100%{transform:rotate(360deg)}}@keyframes sk-swing-dot{0%,100%{transform:scale(.2)}50%{transform:scale(1)}}.sk-circle{width:var(--sk-size);height:var(--sk-size);position:relative}.sk-circle-dot{width:100%;height:100%;position:absolute;left:0;top:0}.sk-circle-dot:before{content:'';display:block;width:15%;height:15%;background-color:var(--sk-color);border-radius:100%;animation:sk-circle 1.2s infinite ease-in-out both}.sk-circle-dot:nth-child(1){transform:rotate(30deg)}.sk-circle-dot:nth-child(2){transform:rotate(60deg)}.sk-circle-dot:nth-child(3){transform:rotate(90deg)}.sk-circle-dot:nth-child(4){transform:rotate(120deg)}.sk-circle-dot:nth-child(5){transform:rotate(150deg)}.sk-circle-dot:nth-child(6){transform:rotate(180deg)}.sk-circle-dot:nth-child(7){transform:rotate(210deg)}.sk-circle-dot:nth-child(8){transform:rotate(240deg)}.sk-circle-dot:nth-child(9){transform:rotate(270deg)}.sk-circle-dot:nth-child(10){transform:rotate(300deg)}.sk-circle-dot:nth-child(11){transform:rotate(330deg)}.sk-circle-dot:nth-child(1):before{animation-delay:-1.1s}.sk-circle-dot:nth-child(2):before{animation-delay:-1s}.sk-circle-dot:nth-child(3):before{animation-delay:-.9s}.sk-circle-dot:nth-child(4):before{animation-delay:-.8s}.sk-circle-dot:nth-child(5):before{animation-delay:-.7s}.sk-circle-dot:nth-child(6):before{animation-delay:-.6s}.sk-circle-dot:nth-child(7):before{animation-delay:-.5s}.sk-circle-dot:nth-child(8):before{animation-delay:-.4s}.sk-circle-dot:nth-child(9):before{animation-delay:-.3s}.sk-circle-dot:nth-child(10):before{animation-delay:-.2s}.sk-circle-dot:nth-child(11):before{animation-delay:-.1s}@keyframes sk-circle{0%,100%,80%{transform:scale(0)}40%{transform:scale(1)}}.sk-circle-fade{width:var(--sk-size);height:var(--sk-size);position:relative}.sk-circle-fade-dot{width:100%;height:100%;position:absolute;left:0;top:0}.sk-circle-fade-dot:before{content:'';display:block;width:15%;height:15%;background-color:var(--sk-color);border-radius:100%;animation:sk-circle-fade 1.2s infinite ease-in-out both}.sk-circle-fade-dot:nth-child(1){transform:rotate(30deg)}.sk-circle-fade-dot:nth-child(2){transform:rotate(60deg)}.sk-circle-fade-dot:nth-child(3){transform:rotate(90deg)}.sk-circle-fade-dot:nth-child(4){transform:rotate(120deg)}.sk-circle-fade-dot:nth-child(5){transform:rotate(150deg)}.sk-circle-fade-dot:nth-child(6){transform:rotate(180deg)}.sk-circle-fade-dot:nth-child(7){transform:rotate(210deg)}.sk-circle-fade-dot:nth-child(8){transform:rotate(240deg)}.sk-circle-fade-dot:nth-child(9){transform:rotate(270deg)}.sk-circle-fade-dot:nth-child(10){transform:rotate(300deg)}.sk-circle-fade-dot:nth-child(11){transform:rotate(330deg)}.sk-circle-fade-dot:nth-child(1):before{animation-delay:-1.1s}.sk-circle-fade-dot:nth-child(2):before{animation-delay:-1s}.sk-circle-fade-dot:nth-child(3):before{animation-delay:-.9s}.sk-circle-fade-dot:nth-child(4):before{animation-delay:-.8s}.sk-circle-fade-dot:nth-child(5):before{animation-delay:-.7s}.sk-circle-fade-dot:nth-child(6):before{animation-delay:-.6s}.sk-circle-fade-dot:nth-child(7):before{animation-delay:-.5s}.sk-circle-fade-dot:nth-child(8):before{animation-delay:-.4s}.sk-circle-fade-dot:nth-child(9):before{animation-delay:-.3s}.sk-circle-fade-dot:nth-child(10):before{animation-delay:-.2s}.sk-circle-fade-dot:nth-child(11):before{animation-delay:-.1s}@keyframes sk-circle-fade{0%,100%,39%{opacity:0;transform:scale(.6)}40%{opacity:1;transform:scale(1)}}.sk-grid{width:var(--sk-size);height:var(--sk-size)}.sk-grid-cube{width:33.33%;height:33.33%;background-color:var(--sk-color);float:left;animation:sk-grid 1.3s infinite ease-in-out}.sk-grid-cube:nth-child(1){animation-delay:.2s}.sk-grid-cube:nth-child(2){animation-delay:.3s}.sk-grid-cube:nth-child(3){animation-delay:.4s}.sk-grid-cube:nth-child(4){animation-delay:.1s}.sk-grid-cube:nth-child(5){animation-delay:.2s}.sk-grid-cube:nth-child(6){animation-delay:.3s}.sk-grid-cube:nth-child(7){animation-delay:0s}.sk-grid-cube:nth-child(8){animation-delay:.1s}.sk-grid-cube:nth-child(9){animation-delay:.2s}@keyframes sk-grid{0%,100%,70%{transform:scale3D(1,1,1)}35%{transform:scale3D(0,0,1)}}.sk-fold{width:var(--sk-size);height:var(--sk-size);position:relative;transform:rotateZ(45deg)}.sk-fold-cube{float:left;width:50%;height:50%;position:relative;transform:scale(1.1)}.sk-fold-cube:before{content:'';position:absolute;top:0;left:0;width:100%;height:100%;background-color:var(--sk-color);animation:sk-fold 2.4s infinite linear both;transform-origin:100% 100%}.sk-fold-cube:nth-child(2){transform:scale(1.1) rotateZ(90deg)}.sk-fold-cube:nth-child(4){transform:scale(1.1) rotateZ(180deg)}.sk-fold-cube:nth-child(3){transform:scale(1.1) rotateZ(270deg)}.sk-fold-cube:nth-child(2):before{animation-delay:.3s}.sk-fold-cube:nth-child(4):before{animation-delay:.6s}.sk-fold-cube:nth-child(3):before{animation-delay:.9s}@keyframes sk-fold{0%,10%{transform:perspective(140px) rotateX(-180deg);opacity:0}25%,75%{transform:perspective(140px) rotateX(0);opacity:1}100%,90%{transform:perspective(140px) rotateY(180deg);opacity:0}}.sk-wander{width:var(--sk-size);height:var(--sk-size);position:relative}.sk-wander-cube{background-color:var(--sk-color);width:20%;height:20%;position:absolute;top:0;left:0;--sk-wander-distance:calc(var(--sk-size) * 0.75);animation:sk-wander 2s ease-in-out -2s infinite both}.sk-wander-cube:nth-child(2){animation-delay:-.5s}.sk-wander-cube:nth-child(3){animation-delay:-1s}@keyframes sk-wander{0%{transform:rotate(0)}25%{transform:translateX(var(--sk-wander-distance)) rotate(-90deg) scale(.6)}50%{transform:translateX(var(--sk-wander-distance)) translateY(var(--sk-wander-distance)) rotate(-179deg)}50.1%{transform:translateX(var(--sk-wander-distance)) translateY(var(--sk-wander-distance)) rotate(-180deg)}75%{transform:translateX(0) translateY(var(--sk-wander-distance)) rotate(-270deg) scale(.6)}100%{transform:rotate(-360deg)}}

 
/* ----------------------------------------------
 * Keyframe Animation
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-in-top
 * ----------------------------------------
 */
.slide-in-top {
    -webkit-animation-name: slide-in-top;
    animation-name: slide-in-top;
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-fill-mode: both;
}
@-webkit-keyframes slide-in-top {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-top {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation slide-in-right
 * ----------------------------------------
 */
.slide-in-right {
    -webkit-animation-name: slide-in-right;
    animation-name: slide-in-right;
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-fill-mode: both;
}
@-webkit-keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation slide-in-bottom
 * ----------------------------------------
 */
.slide-in-bottom {
    -webkit-animation-name: slide-in-bottom;
    animation-name: slide-in-bottom;
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-fill-mode: both;
}
@-webkit-keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation slide-in-left
 * ----------------------------------------
 */
.slide-in-left {
     -webkit-animation-name: slide-in-left;
    animation-name: slide-in-left;
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-fill-mode: both;
}
@-webkit-keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}


/**
 * ----------------------------------------
 * animation fade-in
 * ----------------------------------------
 */
.fade-in {
    -webkit-animation-name: fade-in;
    animation-name: fade-in;
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-fill-mode: both;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation fade-in-fwd
 * ----------------------------------------
 */
.fade-in-fwd {
    -webkit-animation-name: fade-in-fwd;
    animation-name: fade-in-fwd;
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-fill-mode: both;
}
@-webkit-keyframes fade-in-fwd {
  0% {
    -webkit-transform: translateZ(-80px);
            transform: translateZ(-80px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes fade-in-fwd {
  0% {
    -webkit-transform: translateZ(-80px);
            transform: translateZ(-80px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation fade-in-bck
 * ----------------------------------------
 */
.fade-in-bck {
    -webkit-animation-name: fade-in-bck;
    animation-name: fade-in-bck;
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-fill-mode: both;
}

@-webkit-keyframes fade-in-bck {
  0% {
    -webkit-transform: translateZ(80px);
            transform: translateZ(80px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes fade-in-bck {
  0% {
    -webkit-transform: translateZ(80px);
            transform: translateZ(80px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation fade-in-top
 * ----------------------------------------
 */
.fade-in-top {
    -webkit-animation-name: fade-in-top;
    animation-name: fade-in-top;
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-fill-mode: both;
}
@-webkit-keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation fade-in-right
 * ----------------------------------------
 */
.fade-in-right {
    -webkit-animation-name: fade-in-right;
    animation-name: fade-in-right;
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-fill-mode: both;
}
@-webkit-keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation fade-in-bottom
 * ----------------------------------------
 */
.fade-in-bottom {
    -webkit-animation-name: fade-in-bottom;
    animation-name: fade-in-bottom;
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-fill-mode: both;
}
@-webkit-keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation fade-in-left
 * ----------------------------------------
 */
.fade-in-left {
    -webkit-animation-name: fade-in-left;
    animation-name: fade-in-left;
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-fill-mode: both;
}
@-webkit-keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation zoomIn
 * ----------------------------------------
 */

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-fill-mode: both;
}
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.8, 0.8, 0.8);
    transform: scale3d(0.8, 0.8, 0.8);
  }

  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.8, 0.8, 0.8);
    transform: scale3d(0.8, 0.8, 0.8);
  }

  50% {
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation kenburns
 * ----------------------------------------
 */
.main-slider .swiper-slide-active .kenburns {
    -webkit-animation-name: kenburns;
    animation-name: kenburns;
    animation-timing-function: linear;
    animation-fill-mode: both;
}

/* Keyframes */
@-webkit-keyframes kenburns {
  0% {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
    -webkit-transform-origin: 50% 16%;
            transform-origin: 50% 16%;
  }
  100% {
    -webkit-transform: scale(1.07) translateY(-15px);
            transform: scale(1.07) translateY(-15px);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
}
@keyframes kenburns {
  0% {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
    -webkit-transform-origin: 50% 16%;
            transform-origin: 50% 16%;
  }
  100% {
    -webkit-transform: scale(1.07) translateY(-15px);
            transform: scale(1.07) translateY(-15px);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
}


/* ===================================================
    Table of Contents
=====================================================
    1.0 Common Styles
    2.0 Input Field Placeholder Color
    3.0 Utility Classess
	4.0 Scrollbar Style
    5.0 Site Preloader
    6.0 Custom Cursor
    7.0 Default Button
    8.0 Section Heading
    9.0 Page Header
    10.0 Scroll to Top
=====================================================
    Elements CSS
==================================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&amp;display=swap');

/*=== 1.0 Common Styles ===*/
* {
    padding: 0;
    margin: 0;
}

body {
    background-color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px;
    line-height: 27px;
    color: #666;
    font-weight: 400;
    letter-spacing: -0.2px;
    position: relative;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Space Grotesk', sans-serif;
    -webkit-font-smoothing: antialiased;
    color: #222;
}

h1 {
    font-size: 45px;
    font-weight: 600;
    line-height: 55px;
    margin: 0 0 10px;
    color: #222;
}

h2 {
    font-size: 32px;
    line-height: 42px;
    color: #222;
    margin: 0 0 10px;
    font-weight: 600;
    letter-spacing: -1px;
}

h3,
h4 {
    margin: 0 0 10px;
    font-weight: 600;
    line-height: 1.7;
    color: #222;
    letter-spacing: -0.5px;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 16px;
}

h5,
h6 {
    font-size: 14px;
    margin: 0 0 10px;
}

p {
    font-size: 17px;
    line-height: 27px;
    margin-bottom: 15px;
}

a {
    color: #222;
}

a,
a:hover {
    text-decoration: none;
}

a:focus {
    outline: 0;
    text-decoration: none;
}

img {
    border: none;
    outline: none;
    max-width: 100%;
}

ul {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
}

/*=== 2.0 Input Field Placeholder Color ===*/
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #999 !important;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    /* Firefox 18- */
    color: #999 !important;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    /* Firefox 19+ */
    color: #999 !important;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #999 !important;
}

button {
    border: none;
    background: none;
}

/*=== 3.0 Utility Classess ===*/
/* Padding */
.padding {
    padding: 100px 0;
}

.no-padding {
    padding: 0;
}

.padding-15 {
    padding: 15px;
}

.padding-20 {
    padding: 20px;
}

.pos-relative {
    position: relative;
}

/* Background Color*/
.bg-white {
    background-color: #fff;
}

.bg-grey {
    background-color: #F4F5F8;
}

.bg-dark {
    background-color: #141414 !important;
}

/* Boder */
.bd-top {
    border-top: 1px solid #eee;
}

.bd-bottom {
    border-bottom: 1px solid #eee;
}

.bd-left {
    border-left: 1px solid #eee;
}

.bd-right {
    border-right: 1px solid #eee;
}

/* Margin */
.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-25 {
    margin-top: 25px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-35 {
    margin-top: 35px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-45 {
    margin-top: 45px;
}

.mt-50 {
    margin-top: 50px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-35 {
    margin-bottom: 35px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-45 {
    margin-bottom: 45px;
}

.mb-50 {
    margin-bottom: 50px;
}

.pb-60 {
    padding-bottom: 60px;
}

/* Transition Effect */
a,
a:hover,
img,
.form-control,
.form-control:hover,
button {
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

/*=== 4.0 Scrollbar Style ===*/
::-webkit-scrollbar {
    background-color: #222;
    width: 8px;
    height: 8px
}

::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: #0e76a8;
}

::selection {
    background-color: #0e76a8;
    color: #fff
}

-webkit-::selection {
    background-color: #0e76a8;
    color: #fff
}

::-moz-selection {
    background-color: #0e76a8;
    color: #fff
}

/*=== 5.0 Site Preloader ===*/
.loaded .site-preloader {
    opacity: 0;
    visibility: hidden;
}

.site-preloader {
    position: fixed;
    z-index: 999;
    height: 100%;
    width: 100%;
    background: #222;
    top: 0;
    left: 0;
}

.car {
    position: absolute;
    width: 117px;
    height: 42px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.car .strike {
    position: absolute;
    width: 11px;
    height: 1px;
    background: #ffe4e1;
    animation: strikes 0.2s linear infinite;
}

.car .strike2 {
    top: 11px;
    animation-delay: 0.05s;
}

.car .strike3 {
    top: 22px;
    animation-delay: 0.1s;
}

.car .strike4 {
    top: 33px;
    animation-delay: 0.15s;
}

.car .strike5 {
    top: 44px;
    animation-delay: 0.2s;
}

.car-detail {
    position: absolute;
    display: block;
    background: #0e76a8;
    animation: speed 0.5s linear infinite;
}

.car-detail.spoiler {
    width: 0;
    height: 0;
    top: 7px;
    background: none;
    border: 20px solid transparent;
    border-bottom: 8px solid #0e76a8;
    border-left: 20px solid #0e76a8;
}

.car-detail.back {
    height: 20px;
    width: 92px;
    top: 15px;
    left: 0px;
}

.car-detail.center {
    height: 35px;
    width: 75px;
    left: 12px;
    border-top-left-radius: 30px;
    border-top-right-radius: 45px 40px;
    border: 4px solid #0e76a8;
    background: none;
    box-sizing: border-box;
}

.car-detail.center1 {
    height: 35px;
    width: 35px;
    left: 12px;
    border-top-left-radius: 30px;
}

.car-detail.front {
    height: 20px;
    width: 50px;
    top: 15px;
    left: 67px;
    border-top-right-radius: 50px 40px;
    border-bottom-right-radius: 10px;
}

.car-detail.wheel {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    top: 20px;
    left: 12px;
    border: 3px solid #222;
    background: linear-gradient(45deg, transparent 45%, #ffe4e1 46%, #ffe4e1 54%, transparent 55%), linear-gradient(-45deg, transparent 45%, #ffe4e1 46%, #ffe4e1 54%, transparent 55%), linear-gradient(90deg, transparent 45%, #ffe4e1 46%, #ffe4e1 54%, transparent 55%), linear-gradient(0deg, transparent 45%, #ffe4e1 46%, #ffe4e1 54%, transparent 55%), radial-gradient(#ffe4e1 29%, transparent 30%, transparent 50%, #ffe4e1 51%), #222;
    animation-name: spin;
}

.car-detail.wheel2 {
    left: 82px;
}

@keyframes spin {
    0% {
        transform: translate(2px, 1px) rotate(0deg);
    }

    10% {
        transform: translate(-1px, -3px) rotate(36deg);
    }

    20% {
        transform: translate(-2px, 0px) rotate(72deg);
    }

    30% {
        transform: translate(1px, 2px) rotate(108deg);
    }

    40% {
        transform: translate(1px, -1px) rotate(144deg);
    }

    50% {
        transform: translate(-1px, 3px) rotate(180deg);
    }

    60% {
        transform: translate(-1px, 1px) rotate(216deg);
    }

    70% {
        transform: translate(3px, 1px) rotate(252deg);
    }

    80% {
        transform: translate(-2px, -1px) rotate(288deg);
    }

    90% {
        transform: translate(2px, 1px) rotate(324deg);
    }

    100% {
        transform: translate(1px, -2px) rotate(360deg);
    }
}

@keyframes speed {
    0% {
        transform: translate(2px, 1px) rotate(0deg);
    }

    10% {
        transform: translate(-1px, -3px) rotate(-1deg);
    }

    20% {
        transform: translate(-2px, 0px) rotate(1deg);
    }

    30% {
        transform: translate(1px, 2px) rotate(0deg);
    }

    40% {
        transform: translate(1px, -1px) rotate(1deg);
    }

    50% {
        transform: translate(-1px, 3px) rotate(-1deg);
    }

    60% {
        transform: translate(-1px, 1px) rotate(0deg);
    }

    70% {
        transform: translate(3px, 1px) rotate(-1deg);
    }

    80% {
        transform: translate(-2px, -1px) rotate(1deg);
    }

    90% {
        transform: translate(2px, 1px) rotate(0deg);
    }

    100% {
        transform: translate(1px, -2px) rotate(-1deg);
    }
}

@keyframes strikes {
    from {
        left: 25px;
    }

    to {
        left: -80px;
        opacity: 0;
    }
}

/*=== 6.0 Custom Cursor ===*/
.dl-cursor {
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: fixed;
    left: 0;
    top: 0;
    user-select: none;
    pointer-events: none;
    transform: translate(50%, 50%);
    visibility: hidden;
    z-index: 10000;
    -webkit-transition: all .3s cubic-bezier(.165, .85, .45, 1);
    transition: all .3s cubic-bezier(.165, .85, .45, 1);
}

.dl-cursor:before {
    background: #0e76a8;
    opacity: 0.7;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.dl-cursor.cursor-grow:before {
    opacity: 0.7;
    transform: scale(1.5);
    transition: all 0.3s ease;
}

.dl-cursor.hide {
    opacity: 0;
    transition: opacity 0.3s ease;
    transition-delay: 0.4s;
}

.dl-cursor.hide .inner {
    transform: scale(0.1);
    transition: transform 0.3s ease;
}

.dl-cursor .cursor-icon-holder {
    display: none;
    width: 100%;
    height: 100%;
    font-size: 25px;
    color: #fff;
}

.dl-cursor.cross .cursor-icon-holder {
    display: flex;
    align-items: center;
    justify-content: center;

}

.dl-cursor.cross:before {
    opacity: 1;
    transform: scale(2);
    transition: all 0.3s ease;
}

/*=== 7.0 Default Button ===*/
.btn-group a {
    margin: 5px;
}

.btn-group-left a {
    margin-right: 10px;
}

.default-btn {
    background-color: #0e76a8;
    border-radius: 2px;
    height: 45px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    padding: 0 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.default-btn:after,
.default-btn:before {
    background-color: #222;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 50%;
    width: 0;
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
}

.default-btn:after {
    left: auto;
    right: 0;
    top: auto;
    bottom: 0;
}

.default-btn:focus:before,
.default-btn:focus:after,
.default-btn:hover:before,
.default-btn:hover:after {
    width: 100%;
}

.default-btn:hover {
    color: #fff;
}

/*=== 8.0 Section Heading ===*/
.section-heading h4 {
    font-size: 16px;
    color: #0e76a8;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
}

.section-heading h4 span {
    background-color: #0e76a8;
    transform: skew(-20deg, 0deg);
    display: inline-flex;
    width: 4px;
    height: 15px;
    position: relative;
    margin-left: 20px;
    margin-right: 10px;
}

.section-heading h4 span:after,
.section-heading h4 span:before {
    background-color: #0e76a8;
    content: "";
    width: 4px;
    height: 100%;
    position: absolute;
    right: 8px;
    top: 0;
    opacity: 0.8;
}

.section-heading h4 span:after {
    right: 16px;
    opacity: 0.5;
}

.section-heading h2 {
    font-size: 42px;
    line-height: 52px;
    font-weight: 700;
    letter-spacing: -1.5px;
    display: block;
}

.section-heading h4.white span:after,
.section-heading h4.white span:before {
    background-color: #fff;
}

.section-heading h4.white span {
    background-color: #fff;
}

.section-heading h4.white {
    color: #fff;
}

.section-heading h2.white {
    color: #fff;
}

.section-heading p.white {
    color: #fafafa;
}

.section-heading h2 span {
    color: #0e76a8;
}

.section-heading p {
    margin-bottom: 0;
}

/* Check List */
.check-list li {
    display: flex;
    align-items: center;
}

.check-list li i {
    font-size: 12px;
    color: #00c16e;
    margin-right: 10px;
}

/*=== 9.0 Page Header ===*/
.page-header {
    background-image: url(../img/bg-1.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.page-header:before {
    background-color: #222;
    opacity: 0.8;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.page-header-shape {
    width: 50%;
    height: 100px;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.page-header-shape:before {
    background-color: #0e76a8;
    background-image: repeating-linear-gradient(45deg, #1c82b4 0, #1c82b4 2px, transparent 0, transparent 50%);
    background-size: 10px 10px;
    clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    bottom: 0;
}

.page-header-shape:after {
    background-color: #222;
    background-image: url(../img/texture.png);
    background-repeat: repeat;
    background-size: cover;
    clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
    content: "";
    width: 100%;
    height: 80px;
    position: absolute;
    left: -150px;
    bottom: 0;
    z-index: -1;
}

.page-header-info h4 {
    background-color: #0e76a8;
    clip-path: polygon(93% 0%, 100% 30%, 100% 100%, 0 100%, 0 0);
    height: 25px;
    line-height: 25px;
    text-align: center;
    font-family: "Work Sans", sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    padding: 0 15px;
    display: inline-block;
}

.page-header-info h2 {
    color: #fff;
    font-size: 46px;
    line-height: 56px;
    margin-bottom: 15px;
}

.page-header-info h2 span {
    color: #0e76a8;
}

.page-header-info p {
    color: #ddd;
    font-size: 18px;
    margin: 0;
}

.page-header.blog-details {
    height: 400px;
}

.page-header.blog-details .page-header-info {
    padding-top: 30px;
}

.page-header.blog-details .page-header-info .post-meta li {
    color: #ddd;
}

.page-header.gradiant .page-header-info h2 {
    color: #222;
}

.page-header.gradiant .page-header-info p {
    color: #666;
}

.page-header .post-meta {
    margin-top: 20px;
}

.page-header.error {
    height: 450px;
}

/* Overlay */
.overlay {
    background-color: rgba(2, 2, 2, 0.7);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

/* Rattings */
.ratting li {
    display: inline-block;
    color: #FF9529;
    font-size: 14px;
    margin: 0 -2px;
}

/*=== 10.0 Scroll to Top ===*/
#scrollup {
    width: 45px;
    height: 45px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    overflow: hidden;
    z-index: 999;
}

.scroll-to-top {
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: #0e76a8;
    font-size: 20px;
    padding: 0;
    line-height: 40px;
    color: #fff;
    border-radius: 50%;
    outline: none;
    text-decoration: none;
    transform: translateY(150%);
    transition: all 0.3s ease-in-out;
}

#scrollup.show {
    opacity: 1;
}

#scrollup.show .scroll-to-top {
    transform: translateY(0);
    transition: all 0.3s ease-in-out;
}

.scroll-to-top:hover {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease-in-out;
}

/*max-width 992px*/
@media (max-width: 992px) {
    .padding {
        padding: 50px 0;
    }

    .sm-padding {
        padding: 15px;
    }

    p br {
        display: none;
    }

    span br {
        display: none;
    }

    .default-btn {
        padding: 0 30px;
    }

    .post-card .post-content h3 {
        font-size: 20px;
        line-height: 26px;
    }
}

/*max-width 768px*/
@media all and (max-width: 768px) {
    .padding {
        padding: 50px 0;
    }

    .xs-padding {
        padding: 15px;
    }

    p br {
        display: none;
    }

    .page-header-info h2 {
        font-size: 32px;
        line-height: 36px;
    }

    .post-details p {
        font-size: 17px;
        line-height: 27px;
    }
}

@media all and (max-width: 580px) {
    #scrollup {
        bottom: 20px;
        right: 20px;
    }
}

/* ===================================================
    Table of Contents
=====================================================
    1.0 Top Header
    2.0 Mid Header
    3.0 Navigation Menu
    4.0 Menu Button
    5.0 Mobile Menu Button
    6.0 Desktop Menu Style
		6.1 Mobile Menu Style
	7.0 Popup Search Box
	8.0 Sidebox
=====================================================
    Header CSS
==================================================== */

.main-header {
    position: relative;
    z-index: 2;
}

.sticky-header {
    display: none;
}

/*=== 1.0 Top Header ===*/
.top-header {
    background-color: #f4f5f8;
    border-bottom: 1px solid #eee;
}

.top-header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 40px;
}

.top-left p {
    font-size: 15px;
    margin: 0;
    line-height: 1;
}

.top-left,
.top-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-right ul li {
    display: inline-flex;
    align-items: center;
}

.top-header-nav li a {
    font-size: 15px;
}

.header-social-share li:not(:first-of-type),
.top-header-nav li:not(:first-of-type) {
    margin-left: 15px;
}

.header-social-share li a {
    font-size: 15px;
    color: #666;
}

.top-header-nav li a:hover,
.header-social-share li a:hover {
    color: #0e76a8;
}

.top-header-nav {
    min-height: 40px;
    display: flex;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    margin-right: 20px;
    border-right: 1px solid #ddd;
    border-left: 1px solid #ddd;
}

/*=== 2.0 Mid Header ===*/
.mid-header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 15px;
    padding: 25px 0;
}

.mid-header-wrap .site-logo {
    max-width: 200px;
}

.header-info {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 20px;
}

.header-info li {
    display: inline-flex;
    align-items: center;
    column-gap: 5px;
}

.header-info li .header-info-icon {
    font-size: 40px;
    color: #0e76a8;
    margin-right: 5px;
}

.header-info li .header-info-text h3 {
    font-weight: 700;
    font-size: 18px;
    text-transform: capitalize;
    margin: 0;
    line-height: 1;
}

.header-info li .header-info-text h3 a:hover {
    color: #0e76a8;
}

.header-info li .header-info-text h3 span {
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: #666;
    display: block;
    margin-bottom: 8px;
}

/*=== 3.0 Navigation Menu ===*/
.nav-menu-wrapper .site-logo {
    display: none;
}

.menu-right-item {
    display: flex;
    align-items: center;
    height: 100%;
}

.menu-right-item>div {
    height: 100%;
    display: flex;
    align-items: center;
}

.menu-right-item .sidebox-icon,
.menu-right-item .search-icon {
    color: #fff;
    cursor: pointer;
    font-size: 28px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 15px;
}

.sticky-header .menu-right-item .sidebox-icon, 
.sticky-header .menu-right-item .search-icon{
    color: #222;
}

.sticky-header .menu-right-item .sidebox-icon:hover, 
.sticky-header .menu-right-item .search-icon:hover{
    color: #0e76a8;
}

.sticky-header .menu-right-item .sidebox-icon, 
.sticky-header .menu-right-item .search-icon{
    border-left: 1px solid rgba(17, 17, 17, 0.06);
}

.menu-right-item .sidebox-icon {
    margin-right: 15px;
    margin-left: 15px;
}

/*=== 4.0 Menu Button ===*/
.menu-right-item .menu-btn {
    background-color: #222;
    color: #fff;
    height: 100%;
    padding: 0 30px;
    display: flex;
    align-items: center;
}
.menu-right-item .menu-btn:hover{
    background-color: #333;
}

/*=== 5.0 Mobile Menu Button ===*/
.mobile-menu-icon {
    display: none;
}

.burger-menu {
    width: 20px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    -webkit-transition: transform 330ms ease-out;
    -moz-transition: transform 330ms ease-out;
    -o-transition: transform 330ms ease-out;
    transition: transform 330ms ease-out;
}

.burger-menu.menu-open {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.line-menu {
    background-color: #666;
    border-radius: 0;
    width: 100%;
    height: 2px;
}

.line-menu.line-half {
    width: 50%;
}

.line-menu.first-line {
    transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
    transform-origin: right;
}

.menu-open .line-menu.first-line {
    -webkit-transform: rotate(-90deg) translateX(3px);
    -moz-transform: rotate(-90deg) translateX(3px);
    -o-transform: rotate(-90deg) translateX(3px);
    transform: rotate(-90deg) translateX(3px);
}

.line-menu.last-line {
    align-self: flex-end;
    transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
    transform-origin: left;
}

.menu-open .line-menu.last-line {
    -webkit-transform: rotate(-90deg) translateX(-3px);
    -moz-transform: rotate(-90deg) translateX(-3px);
    -o-transform: rotate(-90deg) translateX(-3px);
    transform: rotate(-90deg) translateX(-3px);
}

/*=== 6.0 Desktop Menu Style ===*/
@media (min-width: 993px) {
    .nav-menu-wrapper {
        margin-bottom: -30px;
    }

    .sticky-header .nav-menu-wrapper {
        margin: 0;
    }

    .sticky-header .header-menu-wrap ul {
        padding-left: 0;
    }

    .nav-menu-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 80%;
        height: 60px;
        margin-left: auto;
        position: relative;
        z-index: 1;
    }

    .nav-menu-inner:before {
        background-color: #0e76a8;
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 1% 100%);
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

    .header-menu-wrap ul {
        margin: 0;
        padding: 0;
        list-style: none;
        padding-left: 30px;
    }

    .header-menu-wrap ul li {
        display: inline-block;
        position: relative;
        padding: 20px 0;
        margin: 0 15px;
    }

    .header-menu-wrap ul li>a {
        display: block;
        font-family: "Space Grotesk", sans-serif;
        font-size: 16px;
        letter-spacing: -0.2px;
        font-weight: 600;
        text-transform: capitalize;
        color: #fff;
        padding: 0;
        margin: 0;
        line-height: 1;
        text-decoration: none;
        -webkit-font-smoothing: antialiased;
        position: relative;
        z-index: 1;
    }

    .header-menu-wrap ul li>a:before {
        background-color: #fff;
        content: "";
        position: absolute;
        left: 0;
        bottom: -3px;
        display: inline-block;
        width: 100%;
        height: 2px;
        -webkit-transform-origin: left;
        -ms-transform-origin: left;
        transform-origin: left;
        -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transition: 0.3s cubic-bezier(0.45, 0.1, 0, 0.95);
        -o-transition: 0.3s cubic-bezier(0.45, 0.1, 0, 0.95);
        transition: 0.3s cubic-bezier(0.45, 0.1, 0, 0.95);
    }
    .sticky-header .header-menu-wrap ul li>a:before{
        background-color: #222;
    }
    .header-menu-wrap ul li.active>a:before,
    .header-menu-wrap ul li:hover>a:before {
        -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
        transform: scaleX(1);
    }

    .header-menu-wrap li ul {
        background-color: #fff;
        box-shadow: 0px 2px 5px 0px rgb(0 0 0 / 10%);
        border-radius: 2px;
        border: 1px solid #eee;
        width: 220px;
        padding: 0;
        display: block;
        position: absolute;
        left: -35px;
        top: 70px;
        opacity: 0;
        visibility: hidden;
        z-index: 0;
        -webkit-transform: perspective(300px) rotateX(-18deg);
        transform: perspective(300px) rotateX(-18deg);
        -webkit-transition: all 0.2s;
        transition: all 0.2s;
    }

    .header-menu-wrap li:hover>ul {
        -webkit-transform: perspective(300px) rotateX(0deg);
        transform: perspective(300px) rotateX(0deg);
        opacity: 1;
        visibility: visible;
        top: 58px;
        z-index: 99;
    }

    .header-menu-wrap li li {
        display: flex;
        justify-content: space-between;
        padding: 15px 20px;
        margin: 0;
        border-bottom: 1px solid #eee;
        text-align: left;
        position: relative;
        transition: all 0.2s ease-in-out;
    }

    .header-menu-wrap li li:last-child {
        margin: 0;
        border-bottom: 0;
    }

    .header-menu-wrap li li>a {
        font-family: "Space Grotesk", sans-serif;
        display: block;
        height: auto;
        line-height: inherit;
        color: #666;
        font-weight: 500;
        font-size: 16px;
        text-transform: capitalize;
        line-height: 20px;
        letter-spacing: -0.2px;
        width: 100%;
        -webkit-font-smoothing: antialiased;
    }

    .header-menu-wrap li li>a:before {
        display: none;
    }

    .header-menu-wrap li li>a:hover {
        color: #0e76a8;
    }

    .header-menu-wrap li ul li ul {
        width: 220px;
        position: absolute;
        left: 100%;
        top: 0;
    }

    .header-menu-wrap li ul {
        display: block !important;
    }

    /* Sticky Header */
    .sticky-header {
        background-color: #fff;
        width: 100%;
        position: fixed;
        left: 0;
        top: 0;
        display: block;
        transform: translateY(-100%);
        z-index: 99;
    }

    .sticky-header .nav-menu-wrapper .site-logo {
        display: block;
        max-width: 150px;
    }

    .sticky-header .nav-menu-inner {
        max-width: 100%;
        height: 80px;
        margin: 0;
    }

    .sticky-header .nav-menu-inner:before {
        display: none;
    }

    .sticky-header.sticky-fixed-top {
        transition: transform 1s ease;
        will-change: transform;
    }

    .sticky-header.sticky-fixed-top {
        transform: translateY(0);
        box-shadow: 0 10px 60px rgb(0 0 0 / 10%);
    }

    .sticky-header.sticky-fixed-top .header-menu-wrap .nav-menu>li {
        padding: 32px 0;
    }

    .sticky-header.sticky-fixed-top .header-menu-wrap li:hover>ul {
        top: 79px;
    }

    .sticky-fixed-top .header-menu-wrap ul li>a {
        color: #222;
    }

    .sticky-fixed-top .header-menu-wrap ul li li > a:hover{
        color: #0e76a8;
    }

    .sticky-fixed-top .menu-right-item .menu-btn {
        height: auto;
        padding: 10px 30px;
    }
}

@media (max-width: 1200px) {
    .nav-menu-inner {
        max-width: 90%;
    }
}

/*=== 6.1 Mobile Menu Style ===*/
@media (max-width: 992px) {
    .nav-menu-wrapper {
        position: relative;
    }

    .nav-menu-wrapper .site-logo {
        display: block;
        max-width: 140px;
    }

    .mid-header,
    .top-header-nav {
        display: none;
    }

    .dropdown-plus {
        width: 49px;
        height: 49px;
        line-height: 49px;
        position: absolute;
        top: 0;
        right: 10px;
        cursor: pointer;
        z-index: 1;
    }

    .dropdown-plus:before,
    .dropdown-plus:after {
        position: absolute;
        content: "";
        top: 21px;
        right: 10px;
        width: 10px;
        height: 2px;
        background-color: #666;
    }

    .dropdown-plus:after {
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    .dropdown-plus.dropdown-open:after {
        display: none;
    }

    .mobile-menu-icon {
        display: block;
    }

    .header-menu-wrap {
        background-color: #fff;
        display: none;
        width: 100%;
        height: auto;
        padding: 0 20px 20px;
        position: absolute;
        left: 0;
        top: 100%;
        z-index: 999;
    }

    .nav-menu-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 70px;
    }

    .header-menu-wrap ul {
        padding-left: 0;
        border: 1px solid #eee;
    }

    .header-menu-wrap ul li {
        position: relative;
        margin: 0;
        display: block;
        border-bottom: 1px solid #eee;
        padding: 0;
    }

    .header-menu-wrap ul li:not(:last-of-type) {
        border-bottom: 1px solid #eee;
    }

    .header-menu-wrap ul li>a {
        display: block;
        padding: 10px 15px;
        height: inherit;
        line-height: inherit;
    }

    .header-menu-wrap li li:hover>a {
        background-color: transparent;
    }

    .header-menu-wrap ul li ul li ul,
    .header-menu-wrap ul li ul {
        background-color: transparent;
        width: 100%;
        opacity: 1;
        padding: 0;
        visibility: visible;
        position: inherit;
        display: none;
        top: inherit;
        left: inherit;
        box-shadow: none;
    }

    .header-menu-wrap li li {
        padding: 0 20px;
    }

    .header-menu-wrap li li {
        padding-left: 10px;
    }

    .header-menu-wrap li li:last-child {
        border-bottom: none;
    }

    .header-menu-wrap ul li>a {
        color: #222;
        font-size: 14px;
        font-weight: 600;
    }

    .header-menu-wrap li li>a {
        color: #666;
        font-size: 14px;
    }

    .header-menu-wrap li li:hover>a {
        color: #0e76a8;
    }

    .header-menu-wrap ul li>a:before {
        display: none;
    }

    .sticky-fixed-top .line-menu {
        background-color: #ddd;
    }

    .menu-right-item {
        display: none;
    }
}

/*=== 7.0 Popup Search Box ===*/
#popup-search-box {
    position: fixed;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    right: 0;
    white-space: nowrap;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 500ms ease all;
    -moz-transition: 500ms ease all;
    transition: 500ms ease all;
}

.open-search-box #popup-search-box {
    opacity: 1;
    visibility: visible;
}

#searchbox-overlay {
    height: 100%;
    left: 0;
    opacity: 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    transition: all 0s ease-in-out;
    width: 100%;
    z-index: -1;
}

.open-search-box #searchbox-overlay {
    opacity: 1;
    z-index: 1002;
    cursor: none;
    transition: all 0.6s ease-in-out;
    transition-delay: 0.3s;
}

#popup-search-box .box-inner-wrap {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    padding: 80px 0;
    width: 100%;
    transform: translateY(-100%);
    transition: all ease-in-out 0.3s;
    box-shadow: 0 10px 60px rgb(0 0 0 / 10%);
}

.open-search-box #popup-search-box .box-inner-wrap {
    transform: translateY(0);
}

#popup-search-box .box-inner-wrap form {
    position: relative;
    margin: 0 auto;
}

#popup-search-box .box-inner-wrap input::-webkit-input-placeholder {
    /* Edge */
    color: #666;
}

#popup-search-box .box-inner-wrap input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #666;
}

#popup-search-box .box-inner-wrap input::placeholder {
    color: #666;
    font-size: 18px;
}

#popup-search-box .box-inner-wrap input {
    background: #fff;
    font-family: "Space Grotesk", sans-serif;
    width: 600px;
    padding: 15px 30px;
    padding-right: 80px;
    border: 1px solid #eee;
    font-size: 18px;
    color: #666;
    border-radius: 50px;
}

#popup-search-box .box-inner-wrap input::-webkit-input-placeholder {
    color: #666 !important;
}

#popup-search-box .box-inner-wrap input::-moz-placeholder {
    /* Firefox 18- */
    color: #666 !important;
}

#popup-search-box .box-inner-wrap input::-moz-placeholder {
    /* Firefox 19+ */
    color: #666 !important;
}

#popup-search-box .box-inner-wrap input:-ms-input-placeholder {
    color: #666 !important;
}

#popup-search-box .box-inner-wrap input:focus {
    outline: none;
    border: 1px solid #0e76a8;
}

#popup-search-box .box-inner-wrap button {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 100%;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #666;
    font-size: 30px;
    -webkit-transition: 500ms ease all;
    -moz-transition: 500ms ease all;
    transition: 500ms ease all;
}

#popup-search-box .box-inner-wrap button:hover {
    color: #0e76a8;
}

#popup-search-box .box-inner-wrap button:focus {
    outline: none;
}

.search-close {
    font-size: 30px;
    color: #666;
    width: 40px;
    height: 40px;
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.85, 0.45, 1);
}

.search-close:hover {
    color: #0e76a8;
    transform: scale(1.1);
}

/*=== 8.0 Sidebox ===*/
.popup-sidebox {
    display: none;
}

@media (min-width: 992px) {
    .popup-sidebox {
        background-color: #222;
        padding: 80px;
        position: fixed;
        right: -100%;
        top: 0;
        width: 500px;
        height: 100%;
        z-index: 9999;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        visibility: hidden;
        transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    }

    .open-sidebox .popup-sidebox {
        right: 0;
        visibility: visible;
    }

    #sidebox-overlay {
        height: 100%;
        left: 0;
        opacity: 0;
        overflow: hidden;
        position: fixed;
        top: 0;
        transition: all 0s ease-in-out;
        width: calc(100% - 400px);
        z-index: -1;
    }

    .open-sidebox #sidebox-overlay {
        opacity: 1;
        z-index: 1002;
        cursor: none;
        transition: all 0.6s ease-in-out;
        transition-delay: 0.3s;
    }

    .sidebox-content .site-logo {
        margin-bottom: 25px;
        max-width: 200px;
    }

    .sidebox-content p {
        font-size: 18px;
        font-weight: 400;
        color: #999;
        margin-bottom: 30px;
    }

    .sidebox-content .sidebox-list li span {
        text-transform: capitalize;
        display: block;
        font-size: 16px;
        font-weight: 400;
        color: #999;
        margin-bottom: 5px;
    }

    .sidebox-content .sidebox-list li {
        font-size: 20px;
        font-weight: 600;
        color: #fff;
    }

    .sidebox-content .sidebox-list li.call {
        color: #0e76a8;
        font-size: 28px;
        font-weight: 700;
    }

    .sidebox-content .sidebox-list li:not(:last-of-type) {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .top-header {
        display: none;
    }
}

@media screen and (max-width: 600px) {
    #popup-search-box .box-inner-wrap form {
        width: 90%;
    }

    #popup-search-box .box-inner-wrap input,
    #popup-search-box .box-inner-wrap button {
        font-size: 3em;
    }
}