@media (min-width: 1200px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1340px;
    }
}

:root {
    --bs-white: #fff;
    --bs-black: #000;
    --bs-site-yellow: #faf60c;
    --bs-site-blue: #144f8b;
    /* --bs-site-navtext: #555555; */
    --bs-site-text: #5F5F5F;
    /* --bs-site-text2: #45474d;
    --bs-site-text3: #202226; */
    --bs-site-red: #f61512;
    --fontfamily-main: "Poppins", sans-serif;
    --inputcolor: #3e3e3e;
    --bgcolorfooter: #dbe8f9;
    --lightredcolor: #fff5f4;
    --grencolor: #18AA4A;
}

body {
    font-family: var(--fontfamily-main);
    color: var(--bs-site-text);
    font-size: 17px;
    line-height: 1.4em;
    font-weight: 400;
    color: var(--bs-black);
}

* {
    padding: 0px;
    margin: 0px;
    transition: 0.5s ease-in-out;
}

a {
    text-decoration: none;
}

ul li {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
ul {
    padding: 0px;
    margin: 0px;
}

.main-menu-container ul li a {
    color: var(--bs-black);
    font-size: 20px;
    line-height: 1em;
    font-weight: 400;
}

.main-menu-container ul li:not(:last-child) {
    padding-right: 25px;
}

.main-menu-container ul li a {
    color: var(--bs-black);
    transition: all .3s ease;
}

.main-menu-container ul li {
    display: inline-block;
}

.main-menu-container ul {
    text-align: right;
}

img {
    max-width: 100%;
}

header {
    padding: 10px 0px;
    border-bottom: 1px solid #dddddd;
    position: relative;
    z-index: 3;
    background: #fff;
}

.main-menu-container ul li a:hover {
    color: var(--bs-site-red);
}

.main-banner {
    position: relative;
}

.main-banner:before {
    content: "";
    background: url(/images/shapr-banner-1.png) center no-repeat;
    width: 435px;
    height: 554px;
    position: absolute;
    left: -100px;
    top: -220px;
}

.banner-content-left {
    position: relative;
    z-index: 3;
    margin-top: 60px;
}

.right-ba-inner h4 {
    color: var(--grencolor);
    font-size: 30px;
    line-height: 1em;
    font-weight: 600;
}

.right-ba-inner h3 {
    color: var(--bs-site-red);
    font-size: 30px;
    line-height: 1em;
    font-weight: 700;
}

.right-ba-inner {
    text-align: right;
    margin-top: 40px;
}

.top-right-banner {
    display: flex;
    align-items: center;
    justify-content: end;
}

.top-right-banner img {
    padding: 0px 8px;
    max-width: 85px;
}

.top-content-bottom {
    margin-top: -80px;
}

.button-play {
    display: inline-block;
    position: relative;
}

.button-play.is-play {
    background-color: #fff;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    z-index: 9;
    border: 5px solid var(--grencolor);
    margin-top: -25px;
}

.button-play.is-play .button-outer-circle {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
}

.button-play.is-play .button-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    transform: translate(-50%, -50%);
    color: var(--grencolor);
}

.button-play.is-play .button-icon .triangle {
    animation: fadeIn 7s ease;
}

.button-play.is-play .button-icon .path {
    stroke-dasharray: 90;
    stroke-dashoffset: 0;
    animation: triangleStroke 3s;
    animation-timing-function: ease;
}

.has-scale-animation {
    animation: smallScale 3s infinite;
}

.has-delay-short {
    animation-delay: 0.5s;
}

.top-content-last {
    position: relative;
}

.play-btn-banner {
    display: inline-block;
    position: absolute;
    left: 120px;
    top: -260px;
    background: url(/images/play-icon.png) center no-repeat;
    height: 191px;
    width: 149px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@-moz-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-o-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-moz-keyframes triangleStroke {
    from {
        stroke-dashoffset: 90;
    }
    to {
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes triangleStroke {
    from {
        stroke-dashoffset: 90;
    }
    to {
        stroke-dashoffset: 0;
    }
}

@-o-keyframes triangleStroke {
    from {
        stroke-dashoffset: 90;
    }
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes triangleStroke {
    from {
        stroke-dashoffset: 90;
    }
    to {
        stroke-dashoffset: 0;
    }
}

@-moz-keyframes smallScale {
    from {
        transform: scale(1);
        opacity: 1;
    }
    to {
        transform: scale(1.5);
        opacity: 0;
    }
}

@-webkit-keyframes smallScale {
    from {
        transform: scale(1);
        opacity: 1;
    }
    to {
        transform: scale(1.5);
        opacity: 0;
    }
}

@-o-keyframes smallScale {
    from {
        transform: scale(1);
        opacity: 1;
    }
    to {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes smallScale {
    from {
        transform: scale(1);
        opacity: 1;
    }
    to {
        transform: scale(1.5);
        opacity: 0;
    }
}

.spacing-section {
    padding-bottom: 90px;
}

.main-title h2 {
    color: var(--bs-site-red);
    font-weight: 700;
    font-size: 45px;
    line-height: 1.3em;
}

.main-title {
    text-align: center;
    padding-bottom: 80px;
}

.service-container {
    background-color: #fff5f4;
    padding-top: 90px;
}

.footer-top {
    background: #f4f5f8 url(/images/footer-bg.png) bottom no-repeat;
    height: 700px;
    background-size: contain;
    position: relative;
}

.running-taxi {
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100px;
    left: 0;
    bottom: 0;
    z-index: 2;
}

.running-taxi .taxi {
    background-image: url(/images/truck-1.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    position: absolute;
    width: 165px;
    height: 78px;
    right: 0;
    bottom: 0;
    animation: running-anim 20s linear infinite;
}

.running-taxi .taxi:after,
.running-taxi .taxi-2:after {
    background: url(/images/2-wheel.png) center no-repeat;
    content: "";
    position: absolute;
    right: 13px;
    bottom: 2px;
    height: 25px;
    width: 25px;
    animation: wheel 2s linear infinite;
}

.running-taxi .taxi-3:after {
    background: url(/images/2-wheel.png) center no-repeat;
    content: "";
    position: absolute;
    right: 19px;
    bottom: 2px;
    height: 25px;
    width: 25px;
    animation: wheelanti 2s linear infinite;
}

.running-taxi .taxi:before,
.running-taxi .taxi-2:before {
    background: url(/images/2-wheel.png) center no-repeat;
    content: "";
    position: absolute;
    left: 18px;
    bottom: 2px;
    height: 25px;
    width: 25px;
    animation: wheel 2s linear infinite;
}

.running-taxi .taxi-3:before {
    background: url(/images/2-wheel.png) center no-repeat;
    content: "";
    position: absolute;
    left: 14px;
    bottom: 2px;
    height: 25px;
    width: 25px;
    animation: wheelanti 2s linear infinite;
}

@keyframes wheel {
    100% {
        transform: rotate(-360deg);
    }
}

@keyframes wheelanti {
    100% {
        transform: rotate(360deg);
    }
}

.running-taxi .taxi-3 {
    background-image: url(/images/truck-3.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    position: absolute;
    width: 174px;
    height: 78px;
    right: 70%;
    bottom: 0;
    animation: running-anim-left 35s linear infinite;
}

.running-taxi .taxi-2 {
    background-image: url(/images/truck-2.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    position: absolute;
    width: 165px;
    height: 78px;
    right: 30%;
    bottom: 0;
    animation: running-anim 30s linear infinite;
}

.service-block img {
    max-height: 58px;
}

.features-container {
    position: relative;
}


/* 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%
    }
}

.app-download-container h3 {
    color: var(--bs-site-red);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2em;
    margin-bottom: 10px;
}

.app-down-right {
    background-color: var(--bs-site-yellow);
    clip-path: polygon(20% 0%, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(11% 0, 100% 0, 100% 100%, 0% 100%);
    padding: 30px;
    padding-left: 160px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 720px;
    /* position: relative; */
}

.app-right-down:after {
    position: absolute;
    content: '';
    right: -1167px;
    width: 1167px;
    height: 100%;
    background-color: var(--bs-site-yellow);
    z-index: 2;
    top: 0px;
}

.app-right-down {
    position: relative;
}

.app-down-right li {
    display: inline-block;
    margin-top: 20px;
}

.app-down-right li:first-child {
    margin-right: 10px;
}

.app-down-right li img {
    height: 55px;
}

.app-right-down {
    position: relative;
    display: flex;
    flex-direction: column;
    /* justify-content: end; */
    align-items: end;
}

.app-left {
    padding-right: 50px;
}

.app-right {
    position: relative;
    top: 15px;
}

.app-download-container {
    overflow: hidden;
}

.service-block {
    text-align: center;
}

.service-block h3 {
    color: var(--bs-site-red);
    font-weight: 500;
    font-size: 25px;
    line-height: 1em;
    padding: 30px 0px;
    display: block;
}

.features-container-block {
    position: relative;
}

.features-container-block:before {
    content: "";
    background: url(/images/shape-2.png) center no-repeat;
    width: 250px;
    height: 394px;
    position: absolute;
    top: 0px;
    left: 0px;
}

.app-feature-block {
    position: relative;
    z-index: 3;
    top: 98px;
    left: 0px;
}

.features-container {
    padding-top: 90px;
}

.features-container .main-title {
    padding-bottom: 0px;
}

.featuring-block {
    display: flex;
}

.featuring-block .fe-content {
    padding-left: 10px;
    width: calc(100% - 100px);
}

.fe-content h3 {
    color: var(--bs-site-red);
    font-weight: 500;
    font-size: 20px;
    line-height: 1em;
    padding-bottom: 10px;
}

.featuring-block .fe-img {
    width: 100px;
}

.features-container-block {
    padding-top: 60px;
}

.fe-content p {
    font-size: 16px;
}

.featuring-list .col-md-6 {
    padding: 0px 4px;
}

.featuring-block {
    padding-bottom: 25px;
}

.animate__animated {
    animation: 0.5s ease-out 0s 1 slideInFromLeft forwards;
    animation-delay: 0.2s;
}

.animate__animated_right {
    animation: 1.5s ease-out 0s 1 slideInFromRight forwards;
    animation-delay: 0.2s;
}

.animate__animated_zoom {
    /* animation: 1.5s ease-out animateZoom; */
    /* animation: animateZoom 1.5s ease-out; */
    animation: zoom-in-zoom-out 2s ease-out;
    animation-delay: 0.2s;
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(50%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes animateZoom {
    0% {
        transform: scale3d(.3, .3, .3);
    }
}

@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(0.7, 0.7);
    }
    50% {
        transform: scale(1.15, 1.15);
    }
    100% {
        transform: scale(1, 1);
    }
}

.circle-item {
    height: 120px;
    width: 120px;
    border: 1px solid #EBEBEB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
    margin-bottom: 25px;
}

.circle-block {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background-color: var(--bs-site-red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    position: absolute;
    right: 3px;
    top: 10px;
    font-weight: 600;
}

.how-to-content,
.how-to-item {
    text-align: center;
}

.how-to-content h6 {
    color: var(--bs-black);
    font-weight: 600;
    font-size: 20px;
    line-height: 1em;
    padding-bottom: 10px;
}

.how-to-content p {
    max-width: 260px;
    margin: 0 auto;
}

.how-to-item {
    position: relative;
}

.how-to-container .col-md-3:nth-child(1) .how-to-item:after,
.how-to-container .col-md-3:nth-child(3) .how-to-item:after {
    position: absolute;
    content: "";
    width: 102px;
    height: 42px;
    background: url(/images/process-arrow-2.png) center no-repeat;
    top: 18%;
    right: -20%;
}

.how-to-container .col-md-3:nth-child(2) .how-to-item:after {
    position: absolute;
    content: "";
    width: 102px;
    height: 42px;
    background: url(/images/process-arrow-1.png) center no-repeat;
    top: 18%;
    right: -20%;
}

.footer-top-content h2 {
    font-weight: 900;
    color: var(--bs-site-red);
    font-size: 27px;
    line-height: 1em;
}

.border-yellow {
    border-top: 2px solid var(--bs-site-yellow);
    padding-top: 10px;
    opacity: 1;
    max-width: 185px;
}

.footer-about {
    display: flex;
    align-items: flex-start;
}

.footer-about img {
    width: 100px;
}

.footer-about-right {
    width: calc(100% - 100px);
    padding-left: 20px;
}

.footer-top-content p {
    font-size: 16px;
}

.footer-top-content {
    padding-top: 70px;
}

.social-footer .social-circle {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: var(--bs-site-yellow);
    color: var(--bs-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-right: 20px;
}

.footer-social ul li a {
    height: 55px;
    width: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
}

.footer-social ul li {
    display: inline-block;
}

.footer-social ul li:nth-child(1) a {
    background-color: #4167b2;
}

.footer-social ul li:nth-child(2) a {
    background-color: #d02770;
}

.footer-social ul li:nth-child(3) a {
    background-color: #ff0000;
}

.social-footer li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--bs-black);
    font-size: 16px;
}

.social-footer li:not(:last-child) {
    margin-bottom: 15px;
}

.want-box {
    display: flex;
}

.want-box h6 {
    color: var(--bs-site-red);
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 15px;
}

.driver-want-left .want-right {
    height: 100px;
    width: 100px;
    background: var(--grencolor);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    border-radius: 50%;
}

.want-left {
    text-align: right;
    width: calc(100% - 100px);
}

.driver-want-right .want-left {
    width: 100px;
    height: 100px;
    width: 100px;
    background: var(--grencolor);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    border-radius: 50%;
}

.want-right {
    width: 100px;
}

.driver-want-right .want-right {
    text-align: left;
    width: calc(100% - 100px);
}

.want-box:not(:last-child) {
    margin-bottom: 60px;
}

.want-box {
    position: relative;
}

.want-box:nth-child(1),
.want-box:nth-child(3) {
    right: -100px;
}


/* .driver-want-right .want-box:nth-child(1),
.driver-want-right .want-box:nth-child(3) {
    right: inherit;
}

.driver-want-right .want-box:nth-child(2) {
    right: -100px;
} */

.want-box:nth-child(2) {
    right: 50px;
}

.driver-want-right .want-box:nth-child(2) {
    left: 60px;
}

.driver-want-right .want-box:nth-child(1),
.driver-want-right .want-box:nth-child(3) {
    right: inherit;
}

.want-box:hover {
    cursor: pointer;
}

.driver-want-container {
    background-color: #f2fbf6;
    padding-top: 90px;
}

.driver-want-right .want-box:hover .want-left,
.driver-want-left .want-box:hover .want-right {
    background: var(--bs-site-yellow);
}

.want-box:hover img,
.want-box:hover img {
    filter: brightness(0%);
}

.news-container {
    padding-top: 90px;
}

.news-content {
    padding: 20px;
    border: 1px solid #ebebeb;
    border-top: 0px;
    border-radius: 0px 0px 12px 12px;
    min-height:290px;
}

.news-img img {
    width: 100%;
    border-radius: 12px 12px 0px 0px;
    height:250px;
}

.news-date {
    display: flex;
    align-items: center;
}

.news-date h6 {
    color: #5F5F5F;
    text-transform: uppercase;
    font-size: 14px;
    padding-left: 10px;
}

.news-content h3 {
    padding: 15px 0px;
    font-weight: bold;
    font-size: 26px;
    line-height: 1.2em;
    color: var(--bs-black)
}

.news-content .read-more {
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--bs-site-red);
    position: relative;
    padding-left: 30px;
    margin-top: 20px;
    display: inline-block;
}

.news-content .read-more:before {
    background-color: var(--bs-site-red);
    position: absolute;
    content: "";
    width: 25px;
    height: 3px;
    left: 0;
    top: calc(50% - 1px);
}

.client-left {
    background-color: #fff5f4;
    padding: 90px 0px;
    position: relative;
    padding-right: 60px;
    padding-bottom: 115px;
}

.client-left:after {
    position: absolute;
    content: '';
    left: -1167px;
    width: 1167px;
    height: 100%;
    background-color: #fff5f4;
    z-index: 2;
    top: 0px;
}

.client-right:after {
    position: absolute;
    content: '';
    right: -1167px;
    width: 1167px;
    height: 100%;
    background-color: var(--bs-site-red);
    z-index: 2;
    top: 0px;
}

.client-right {
    background-color: var(--bs-site-red);
    padding: 90px 40px;
    position: relative;
}

.client-section .col-md-6:first-child {
    padding-right: 0px;
}

.client-section .col-md-6:last-child {
    padding-left: 0px;
}

.client-section {
    margin-bottom: 90px;
    overflow: hidden;
}

.client-left h2 {
    font-weight: bold;
    color: var(--bs-black);
    font-size: 40px;
    line-height: 1em;
    margin-bottom: 60px;
}

.client-right h3 {
    color: #fff;
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 600;
}

.client-right p {
    color: #fff;
}

.choose-listing li {
    display: flex;
    align-items: center;
}

.choose-listing li img {
    margin-right: 20px;
}

.choose-listing li:not(:last-child) {
    margin-bottom: 30px;
}

.choose-listing {
    margin-top: 40px;
}

.choose-listing li b {
    display: block;
    margin-bottom: 10px;
}

html .feedback-slider .slick-initialized .slick-slide {
    height: auto;
}

.feedback-slider {
    background-color: var(--bs-white);
    padding: 50px 30px;
    border-radius: 12px;
    position: relative;
}

.feedback-slider:after {
    content: "";
    background: url(/images/quote.png) center no-repeat;
    position: absolute;
    top: -25px;
    right: 60px;
    width: 59px;
    height: 48px;
}

.feedback-slider .slick-dots {
    position: absolute;
    bottom: -96px;
    text-align: left;
    left: -30px;
}

.feedback-slider .slick-dots li,
.feedback-slider .slick-dots li button:before {
    background-color: #5f5f5f;
    margin: 0px;
    margin-right: 5px;
    font-size: 0px;
    height: 15px;
    width: 15px;
}

.feedback-slider .slick-dots li.slick-active,
.feedback-slider .slick-dots li.slick-active button:before {
    background-color: var(--bs-site-red);
}

.slider-bottom {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.feedback-slider .slick-dotted.slick-slider {
    margin-bottom: 0px;
}

.slider-bottom-left img {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    margin-right: 15px;
}

.slider-bottom-right h6 {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 6px;
}

#youtubePlayerOverlay {
    display: block;
    border: 5px solid #d71031;
    margin: 5px;
    background-color: rgba(0, 0, 0, 1);
}

#youtubePlayerOverlay .closeIcon:hover {
    background: rgba(255, 255, 255, 0.9);
}

#youtubePlayerOverlay {
    display: block;
}

.inner-banner {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 250px;
    padding: 100px 0 110px;
    position: relative;
    overflow: hidden;
}

.inner-banner:before {
    background: #131313;
    content: "";
    height: 100%;
    left: 0;
    opacity: .8;
    position: absolute;
    top: 0;
    width: 100%;
}

h2.title {
    color: #fff;
    font-size: 64px;
    margin-bottom: 17px;
    font-weight: bold;
}

.title-outer {
    position: relative;
    z-index: 4;
}

.page-breadcrumb {
    margin-top: 5px;
    position: relative;
}

.page-breadcrumb li {
    color: #fff;
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    margin-right: 12px;
    padding-right: 13px;
    position: relative;
    text-transform: capitalize;
}

.page-breadcrumb li a {
    color: var(--bs-site-red);
    font-weight: 500;
    text-transform: capitalize;
    transition: all .3s ease;
}

.page-breadcrumb li:not(:last-child):after {
    color: #fff;
    content: "\f105";
    font-family: Font Awesome\ 5 Free;
    font-size: 14px;
    font-weight: 900;
    position: absolute;
    right: -6px;
    top: 1px;
}

.team-member {
    position: relative;
    text-align: center;
    box-shadow: 0px 0px 15px 0px rgba(72, 73, 121, 0.15);
}

.team-images img {
    width: 100%;
    border-radius: 7px !important;
    box-shadow: 0px 0px 15px 0px rgba(72, 73, 121, 0.15);
}

.team-member .team-description {
    background: #ffffff;
    padding: 30px 20px;
    text-align: center;
    position: absolute;
    bottom: 0;
    z-index: 9;
    transition: all 0.5s ease-in-out 0s;
    width: 100%;
}

.team-member .team-description span {
    color: #1c1d3e;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 1px;
}

.team-member .team-description h5 {
    margin: 0;
    text-transform: capitalize;
    font-weight: 500;
    color: var(--bs-site-red);
    font-size: 20px;
    line-height: 1em;
    margin-top: 10px;
}

.team-container {
    padding-top: 90px;
}

.team-member:hover .team-description {
    padding: 40px 20px;
}

.blog-detail-container {
    padding-top: 90px;
}

.blog-detail-container .container {
    max-width: 1000px;
}

.about-section .icon-dots-1 {}

.icon.icon-dots-1 {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    background-image: url(/images/download.png);
    height: 204px;
    width: 209px;
    left: 0px;
    bottom: -160px;
}

.bounce-x {
    animation: bounce-x 5s linear infinite;
}

.blog-detail-block h3 {
    font-weight: bold;
    font-size: 25px;
    line-height: 1.3em;
    color: var(--bs-black);
    margin-bottom: 20px;
}

.blog-detail-block p:not(:last-child) {
    margin-bottom: 15px;
}

.meta-info {
    margin-bottom: 20px;
    margin-top: 20px;
}

.date-block {
    display: inline-block;
    vertical-align: middle;
    background-color: #ffc000;
    border-radius: 18.5px;
    color: #111;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .2em;
    font-weight: 700;
    text-transform: uppercase;
    padding: 1.5px 19.5px;
    margin-right: 10px;
    transition: all .4s ease;
}

.meta-info a:not(.date-block) {
    font-size: 14px;
    font-weight: 500;
    transition: all .4s ease;
    display: inline-block;
    vertical-align: middle;
    color: #717171;
}

@keyframes bounce-x {
    0% {
        transform: translateX(0)
    }
    50% {
        transform: translateX(30px)
    }
    to {
        transform: translateX(0)
    }
}

.nav-links .prev {
    align-items: center;
    display: flex;
    height: 100%;
    margin-right: 30px;
    width: calc(50% - 15px);
}

.nav-links {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.nav-links .next {
    align-items: center;
    display: flex;
    flex-direction: row-reverse;
    height: 100%;
    width: calc(50% - 15px);
}

.nav-links>div>a {
    word-wrap: break-word;
    background-color: #FFF5F4;
    border-radius: 10px;
    color: var(--bs-site-red);
    font-size: 20px;
    line-height: 1.637;
    padding: 52px 50px;
    transition: all .5s ease;
    white-space: -moz-pre-wrap;
    white-space: pre-wrap;
    width: 100%;
    font-weight: 500;
}

.nav-links>div>a:hover {
    background-color: #232331;
    color: var(--bs-white);
}

.contact-container {
    background-color: #FBF0F0;
    padding: 90px 0px;
}

#form-contact h2 {
    color: var(--bs-site-red);
    font-weight: bold;
    font-size: 25px;
    line-height: 1.2em;
}

.map-block iframe {
    width: 100%;
    height: 550px;
}

.map-block {
    border: 12px solid #fff;
}

#form-contact p {
    font-size: 15px;
    padding: 20px 0px;
}

#form-contact .form-control {
    border: dashed 1px #efefef;
    padding: 10px 15px !important;
    height: 55px;
    line-height: 55px;
    width: 100%;
    margin-bottom: 20px;
    color: #333;
    font-weight: 400;
    font-size: 15px;
}

#form-contact {
    padding-left: 30px;
}

#form-contact textarea {
    min-height: 150px;
}

#form-contact label {
    font-size: 15px;
    font-weight: 500;
    color: #000;
}

#submit-btn {
    background-color: var(--bs-site-red);
    padding: 15px 25px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    box-shadow: none;
    border: 0px;
    transition-duration: .3s;
    transition-property: transform;
    transition: all .3s;
}

#submit-btn:hover {
    background-color: var(--bs-site-yellow);
    transform: scale(1.1);
}

.about-container {
    padding-top: 90px
}

.about-container h2 {
    color: var(--bs-site-red);
    font-weight: bold;
    font-size: 35px;
    line-height: 1.2em;
    margin-bottom: 20px;
}

.about-right p {
    max-width: 550px;
    line-height: 1.5em;
}

.about-counter-box {
    background-color: #FEF5F4;
    padding: 50px 40px;
    text-align: center;
    border-radius: 12px;
}

.about-counter-box img {
    max-height: 120px;
}

.about-counter-box h6 {
    color: var(--bs-site-red);
    font-weight: bold;
    font-size: 20px;
    text-transform: uppercase;
    padding: 20px 0px;
}

.counter {
    font-weight: bold;
    color: var(--bs-black);
    font-size: 50px;
    line-height: 1em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* @property --num {
    syntax: '<integer>';
    inherits: true;
    initial-value: 1;
}

.counter::before {
    counter-reset: my-counter var(--num);
    content: counter(my-counter);
    animation: count 2s ease-in-out;
}

.counter.counter-2::before {
    animation: count2 2s ease-in-out;
}

.counter.counter-3::before {
    animation: count3 1s ease-in-out;
} */

@keyframes count {
    to {
        --num: 10;
    }
}

@keyframes count2 {
    to {
        --num: 15;
    }
}

@keyframes count3 {
    to {
        --num: 4;
    }
}

.footer-bottom {
    background-color: var(--bs-site-yellow);
    text-align: center;
    padding: 10px 0px;
    padding-top: 15px;
}

.footer-bottom p {
    color: var(--bs-black);
    margin: 0px;
}

.location-box .location-background-overlay {
    background-color: transparent;
    background-image: linear-gradient(90deg, #faf60c 32%, #f61512 100%);
    opacity: 0;
    transition: all 0.35s ease-in-out;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
}

.location-box {
    position: relative;
    display: flex;
    align-content: flex-end;
    align-items: flex-end;
    padding: 20px;
}

.location-box:hover .location-background-overlay {
    opacity: 0.8;
}

.location-box h2 {
    display: block;
    color: var(--bs-white);
    font-size: 30px;
    font-weight: bold;
    position: relative;
    z-index: 3;
    background-color: #f61512;
    padding: 10px 20px;
}

.location-box:hover {
    cursor: pointer;
}

.location-box {
    background-size: cover !important;
    min-height: 300px;
}

.location-container {
    padding-top: 90px;
}

.location-box .text {
    height: 0;
    transition: all 0.35s ease-in-out;
    overflow: hidden;
    position: relative;
    z-index: 3;
}

.location-box:hover .text {
    height: 60px;
    display: inline-block;
}

.contact-link {
    background-color: #000;
    color: #fff;
    padding: 10px 15px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 16px;
    margin-top: 15px;
    display: inline-block;
    background-color: var(--grencolor);
}

.contact-link:hover {
    background-color: var(--bs-site-red);
}

.location-left-bottom .location-box {
    min-height: 240px;
}

.location-left-bottom .location-box h2 {
    font-size: 25px;
    font-weight: 600;
}

.location-container .col-md-6,
.location-container .col-md-2 {
    padding: 0px 2px;
}

.location-container .col-md-6 .row {
    margin: 0px -2px;
    margin-bottom: 4px;
}

.location-long .location-box {
    min-height: 544px;
}

.about-obj-inner h2 {
    color: var(--bs-site-red);
    font-weight: bold;
    font-size: 35px;
    line-height: 1.2em;
    margin-bottom: 20px;
}

.about-obj-inner h3 {
    color: var(--bs-black);
    font-weight: 600;
    font-size: 22px;
    line-height: 1.2em;
    margin-bottom: 15px;
    margin-top: 30px;
}

.about-obj-inner {
    padding-bottom: 60px;
}

.news-blog-container {
    padding-top: 90px;
}

.news-content a p {
    color: var(--bs-site-text);
}

.news-content a:hover h3 {
    color: var(--bs-site-red);
}
.team-container .team-member{
    margin-bottom: 60px;
}

.team-container h2{
    font-size: 30px;
    margin-bottom: 30px;
    font-weight: 600;
    color: #333;
    text-align: center;
}

/* MEDIA QUERIES */

@media screen and (max-width: 1390px) and (min-width:769px) {
    .driver-want-right .want-box:nth-child(2) {
        left: 0px;
        right: inherit;
    }
    .want-box:nth-child(2) {
        right: 30px;
    }
}

@media screen and (max-width:768px) {
    .mean-container .mean-nav ul li a {
        text-transform: capitalize;
        font-size: 16px;
        line-height: 16px;
        background-color: var(--bs-black);
    }
    .mean-container .mean-nav ul li a.mean-expand {
        height: 18px;
    }
    .mean-container .mean-nav ul li {
        background: none;
    }
    .sf-menu ul {
        position: static;
    }
    .mean-container .mean-nav ul ul li a:hover {
        background-color: rgba(246, 21, 18, 0.83);
    }
    .mean-container .mean-nav ul ul {
        /* background-color: rgba(30, 95, 182, 0.83); */
    }
    .mean-container .mean-bar {
        background-color: transparent;
        z-index: 999;
        right: 0px;
        top: 2px;
    }
    html .mean-container a.meanmenu-reveal {
        width: auto;
        height: auto;
        padding: 0px;
        position: absolute;
        top: 15px;
        right: 10px !important;
        cursor: pointer;
        color: #fff;
        text-decoration: none;
        font-size: 20px;
        text-indent: inherit;
        line-height: 22px;
        font-size: 20px !important;
        display: inline-block;
        background-color: transparent !important;
        /* font-family: Arial, Helvetica, sans-serif; */
        color: var(--bs-site-red);
    }
    
    #header-container .mean-bar .meanmenu-reveal.meanclose {
    font-family: 'Font Awesome 6 Brands';
    }
  
    .main-menu-container {
        display: none;
    }
    html .mean-container a.meanmenu-reveal.meanclose {
        background-color: transparent !important;
        color: var(--bs-site-blue);
        color: var(--bs-black);
        top: 14px;
    }
    html .mean-container .mean-nav {
        margin-top: 55px
    }
    .main-logo {
        position: absolute;
        top: 13px;
        max-width: 200px;
    }
    .main-banner {
        position: relative;
    }
    .banner-content-right-top {
        position: absolute;
        top: 0px;
    }
    .main-banner:before {
        top: 18px;
        background-size: 60%;
    }
    .banner-content-left {
        margin-top: 120px;
    }
    .right-ba-inner h4 {
        font-size: 17px;
    }
    .top-right-banner img {
        padding: 0px 4px;
        max-width: 50px;
    }
    .right-ba-inner h3 {
        font-size: 20px;
        margin-top: 5px;
    }
    .right-ba-inner {
        text-align: left;
        margin-top: 20px;
    }
    .app-right-down:after {
        display: none;
    }
    .how-to-container .col-md-3:nth-child(1) .how-to-item:after,
    .how-to-container .col-md-3:nth-child(2) .how-to-item:after,
    .how-to-container .col-md-3:nth-child(3) .how-to-item:after {
        display: none;
    }
    .want-box {
        position: static;
    }
    .top-content-bottom {
        margin-top: 10px;
    }
    .button-play.is-play {
        background-color: #fff;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        border-width: 3px;
    }
    .play-btn-banner {
        background-size: 52%;
    }
    .spacing-section {
        padding-bottom: 30px;
    }
    .app-download-container h3 {
        font-size: 20px;
    }
    .app-down-right {
        clip-path: none;
        margin-top: 20px;
        padding: 15px;
        display: block;
    }
    .app-down-right li img {
        height: 35px;
    }
    .app-left {
        padding-right: 0px;
    }
    .app-right-down {
        display: block;
    }
    .app-right {
        position: relative;
        top: 0px;
        position: static;
        margin-top: 15px;
    }
    .app-left h3 {
        margin-bottom: 0px;
    }
    .main-title h2 {
        font-size: 30px;
    }
    .service-container {
        padding-top: 30px;
    }
    p {
        font-size: 15px;
    }
    .main-title {
        padding-bottom: 25px;
    }
    .service-block h3 {
        font-size: 20px;
        padding: 15px 0px;
    }
    .service-block-list .col-md-3:not(:last-child) .service-block {
        margin-bottom: 20px;
    }
    .features-container {
        padding-top: 30px;
    }
    .app-feature-block {
        top: 10px;
    }
    .featuring-list {
        margin-top: 30px;
        padding-left: 10px;
    }
    .featuring-block .fe-img {
        width: 70px;
    }
    .featuring-block .fe-content {
        padding-left: 10px;
        width: calc(100% - 70px);
    }
    .fe-content h3 {
        font-size: 17px;
        padding-bottom: 5px;
    }
    .fe-content p {
        font-size: 15px;
    }
    .client-left h2 {
        font-size: 30px;
        margin-bottom: 30px;
    }
    .client-left {
        padding: 30px 0px;
        padding-right: 12px;
        padding-bottom: 70px;
    }
    .feedback-slider {
        background-color: var(--bs-white);
        padding: 30px 20px
    }
    .feedback-slider .slick-dots {
        position: absolute;
        bottom: -71px;
        text-align: left;
        left: -20px;
    }
    .client-right {
        padding: 30px 12px;
    }
    .choose-listing li b {
        display: block;
        margin-bottom: 5px;
    }
    .client-section {
        margin-bottom: 30px;
    }
    .how-to-container .col-md-3:not(:last-child) {
        margin-bottom: 30px;
    }
    .driver-want-left .want-box .want-left {
        order: 2;
        text-align: left;
    }
    .driver-want-left .want-box .want-right {
        margin: 0px;
        margin-right: 15px;
    }
    .driver-want-container {
        padding-top: 30px;
    }
    .want-box h6 {
        font-size: 17px;
        margin-bottom: 5px;
    }
    .want-box:not(:last-child) {
        margin-bottom: 30px;
    }
    .driver-want-middle {
        padding: 20px 0px;
    }
    .driver-want-right .want-left {
        margin-right: 15px;
    }
    .driver-want-left .want-right,
    .driver-want-right .want-left {
        height: 80px;
        width: 80px;
    }
    .news-container {
        padding-top: 30px;
    }
    .news-container .col-md-4:not(:last-child) {
        margin-bottom: 20px;
    }
    .news-content h3 {
        padding: 10px 0px;
        font-weight: bold;
        font-size: 21px;
    }
    .footer-top {
        height: inherit;
        min-height: 900px;
    }
    .footer-about-right {
        width: 100%;
        padding-left: 0px;
        margin-top: 10px;
    }
    .footer-contact {
        margin: 30px 0px;
    }
    .footer-top-content {
        padding-top: 30px;
    }
    .footer-top-content h2 {
        font-size: 24px;
    }
    .border-yellow {
        padding-top: 0px;
        margin-top: 10px;
    }
    h2.title {
        font-size: 40px;
        margin-bottom: 5px;
    }
    .inner-banner {
        min-height: 200px;
        padding: 60px 0 60px;
    }
    .contact-container {
        padding: 30px 0px;
    }
    #form-contact {
        padding-left: 0px;
        margin-bottom: 20px;
    }
    .map-block iframe {
        width: 100%;
        height: 300px;
    }
    .contact-container .col-md-6:last-child {
        order: 1;
    }
    .contact-container .col-md-6:first-child {
        order: 2;
    }
    .map-block {
        border: 6px solid #fff;
    }
    .location-long .location-box {
        min-height: 240px;
    }
    .location-container {
        padding-top: 30px;
    }
    .location-container .col-md-6,
    .location-container .col-md-2 {
        padding: 0px 8px;
    }
    .location-container .col-md-6 .col-md-6 {
        padding: 0px;
    }
    .news-blog-container {
        padding-top: 30px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1340px;
    }
}

@media only screen and (max-width: 600px) {
    .description-left-block {
        margin-right: 0;
        margin-left: 0;
    }
    .description-section img {
        width: 100%;
    }
    .inner-feature-block {
        width: 29%;
    }
    .slick-slider .slick-prev {
        left: -14px;
        top: 97px;
    }
    .listing-gallery-block .slick-slider .slick-next {
        right: -9px;
        top: 97px;
    }
    .open-hrs-block {
        margin-left: 0;
    }
}

@media (max-width: 500px) {
    .footer-about {
        display: block;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .container,
    .container-sm {
        max-width: 100%;
    }
}


/* Header */

.ul-second li a.active {
    color: red;
}
/*Footer*/
.copyright ul {
    display: flex;
    justify-content: center;
    gap: 18px;
    color: white;
    margin-bottom: 10px;
    
}
.copyright a{
    color:red;
}

.embededView #header-container{
    display:none;
}