/********** Template CSS **********/
:root {
    --primary: #348E38;
    --secondary: #525368;
    --light: #E8F5E9;
    --dark: #0F4229;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

h1,
.h1,
h2,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 80px
}

.navbar .navbar-nav .nav-link {
    margin-right: 16px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 15px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
#header-carousel,
#header-carousel .carousel-inner,
#header-carousel .carousel-item {
    height: clamp(520px, 72vh, 760px);
}

#header-carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(15, 66, 41, .6);
    z-index: 1;
}

.carousel-caption h1 {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(2.4rem, 6vw, 5.5rem);
    line-height: 1.05;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        height: 520px;
        min-height: 520px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    --page-header-image: url(../img/contact.jpg);
    background:
        linear-gradient(90deg, rgba(6, 32, 20, .78), rgba(15, 66, 41, .54)),
        var(--page-header-image) center center / cover no-repeat;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Top Feature ***/
@media (min-width: 991.98px) {
.top-feature {
        position: relative;
        margin-top: -80px;
        z-index: 1;
    }
}

.top-feature .bg-white {
    border-radius: 8px;
    box-shadow: 0 16px 40px rgba(15, 66, 41, .1) !important;
}


/*** Facts & Quote ***/
.facts,
.quote {
    background: rgba(15, 66, 41, .6);
}


/*** Service ***/
.service-item {
    position: relative;
    text-align: center;
}

.service-item .service-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
}

.service-item .service-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    transform: scale(1.2);
    transition: .3s;
    z-index: -1;
}

.service-item:hover .service-img img {
    transform: scale(1);
}

.service-item .service-text {
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .3s;
}

.service-item:hover .service-text {
    background: rgba(15, 66, 41, .6);
}

.service-item .service-text h4,
.service-item .service-text p {
    transition: .3s;
}

.service-item:hover .service-text h4 {
    color: #FFFFFF;
}

.service-item:hover .service-text p {
    color: var(--light);
}

.service-item .service-text .btn-square {
    width: 100px;
    height: 100px;
    background: transparent;
    transition: .5s;
}

.service-item:hover .service-text .btn-square {
    background: var(--light);
}

.service-item .service-text .btn {
    width: 31px;
    height: 31px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: var(--light);
    white-space: nowrap;
    overflow: hidden;
    transition: .3s;
}

.service-item:hover .service-text .btn {
    width: 112px;
}


/*** Project Portfolio ***/
#portfolio-flters {
    display: inline-block;
    background: var(--light);
    padding: 10px 15px;
}

#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--primary);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--dark);
    border-color: var(--dark);
}

.portfolio-inner {
    position: relative;
    overflow: hidden;
}

.portfolio-inner::before,
.portfolio-inner::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(15, 66, 41, .6);
    transition: .5s;
}

.portfolio-inner::after {
    left: auto;
    right: 0;
}

.portfolio-inner:hover::before,
.portfolio-inner:hover::after {
    width: 50%;
}

.portfolio-inner .portfolio-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.portfolio-inner:hover .portfolio-text {
    transition-delay: .3s;
    opacity: 1;
}

.portfolio-inner .portfolio-text .btn {
    background: var(--light);
    color: var(--primary);
}

.portfolio-inner .portfolio-text .btn:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Team ***/
.team-item {
    position: relative;
    overflow: hidden;
}

.team-item .team-text {
    position: absolute;
    width: calc(100% - 45px);
    left: -100%;
    bottom: 45px;
    padding: 1.5rem;
    background: #FFFFFF;
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    left: 0;
    opacity: 1;
}

.team-item .team-social .btn {
    background: var(--light);
    color: var(--primary);
}

.team-item .team-social .btn:hover {
    background: var(--primary);
    color: var(--light);
}

.team-item .team-img .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.team-item:hover .team-img .team-social {
    transition-delay: .3s;
    opacity: 1;
}


/*** Testimonial ***/

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 4px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: var(--light);
    background: #072A19;
}

.copyright a {
    color: #FFFFFF;
}

.copyright a:hover {
    color: var(--primary);
}

/*** KiliMzawa Experience Polish ***/
html {
    scroll-behavior: smooth;
}

body {
    color: #334238;
    background: #fbfcf9;
    overflow-x: hidden;
}

.wow {
    visibility: visible !important;
}

::selection {
    background: rgba(52, 142, 56, .18);
}

.page-header {
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 22% 30%, rgba(255, 255, 255, .14), transparent 28%),
        linear-gradient(180deg, rgba(15, 66, 41, .12), rgba(15, 66, 41, .42));
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.btn {
    border-radius: 6px;
    box-shadow: none;
}

.btn-primary {
    box-shadow: 0 12px 28px rgba(52, 142, 56, .22);
}

.btn-primary:hover,
.btn-outline-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(52, 142, 56, .26);
}

.navbar {
    z-index: 1030;
}

.navbar .navbar-toggler {
    border-radius: 6px;
    min-height: 44px;
    min-width: 44px;
}

.navbar .navbar-nav {
    align-items: stretch;
}

.navbar .nav-link,
.dropdown-item {
    overflow-wrap: anywhere;
}

.page-header {
    min-height: 360px;
    display: flex;
    align-items: center;
}

.page-header h1 {
    overflow-wrap: anywhere;
    font-size: clamp(2.35rem, 7vw, 4.5rem);
    line-height: 1.05;
    text-wrap: balance;
}

.page-header p,
.page-header h3 {
    margin-left: auto;
    margin-right: auto;
    max-width: 860px;
    text-wrap: balance;
}

.content-hero-image,
.guide-hero-image,
.destination-hero-image {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    box-shadow: 0 18px 48px rgba(15, 66, 41, .12);
}

.kmz-section {
    border-radius: 8px;
    background: #fff;
    border: 1px solid rgba(15, 66, 41, .08);
    box-shadow: 0 12px 30px rgba(15, 66, 41, .06);
    padding: 1.5rem;
}

.kmz-check-card {
    min-height: 100%;
    border-radius: 8px;
    background: #f7fbf3;
    border: 1px solid rgba(52, 142, 56, .12);
    padding: 1rem;
}

.kmz-check-card i {
    flex: 0 0 auto;
}

.kmz-related-link {
    background: #fff;
    border: 1px solid rgba(15, 66, 41, .09);
    border-radius: 8px;
    color: #374238;
    display: block;
    padding: .9rem 1rem;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, color .25s ease;
}

.kmz-related-link span {
    color: var(--primary);
    display: block;
    font-size: .8rem;
    font-weight: 700;
    margin-bottom: .2rem;
}

.kmz-related-link:hover {
    border-color: rgba(52, 142, 56, .35);
    box-shadow: 0 12px 30px rgba(15, 66, 41, .09);
    color: var(--primary);
    transform: translateY(-2px);
}

.kmz-reading {
    font-size: 1.04rem;
    line-height: 1.85;
}

.kmz-reading p:last-child {
    margin-bottom: 0;
}

.topic-card-image {
    aspect-ratio: 16 / 9;
    display: block;
    overflow: hidden;
}

.topic-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.kmz-trip-card:hover .topic-card-image img,
.safari-topic-card:hover .topic-card-image img,
.kilimanjaro-topic-card:hover .topic-card-image img {
    transform: scale(1.04);
}

.kmz-panel,
.quote-card,
.tier-card,
.season-card,
.kmz-trip-card,
.kmz-mini-stat,
.comparison-cell,
.package-card,
.package-empty {
    border: 1px solid rgba(15, 66, 41, .09);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(15, 66, 41, .08);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.kmz-panel:hover,
.tier-card:hover,
.season-card:hover,
.kmz-trip-card:hover,
.kmz-mini-stat:hover,
.package-card:hover {
    transform: translateY(-4px);
    border-color: rgba(52, 142, 56, .22);
    box-shadow: 0 20px 50px rgba(15, 66, 41, .13);
}

.kmz-figure {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(15, 66, 41, .16);
}

.kmz-figure img {
    width: 100%;
    min-height: 360px;
    object-fit: cover;
    transition: transform .6s ease;
}

.kmz-figure:hover img {
    transform: scale(1.035);
}

.package-photo-slider {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 18px 48px rgba(15, 66, 41, .12);
}

.package-photo-slider .carousel-item img {
    height: 420px;
    object-fit: cover;
}

.package-photo-slider .carousel-caption {
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem 1.5rem;
    text-align: left;
    background: linear-gradient(180deg, transparent, rgba(15, 66, 41, .84));
}

.kmz-mini-stat {
    padding: 1.15rem;
}

.kmz-mini-stat i {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    margin-bottom: .8rem;
    color: var(--primary);
    background: rgba(52, 142, 56, .1);
    border-radius: 50%;
}

.route-flow {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
}

.package-page-nav {
    position: sticky;
    top: 92px;
    z-index: 5;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    padding: .75rem;
    border: 1px solid rgba(15, 66, 41, .08);
    border-radius: 8px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 12px 30px rgba(15, 66, 41, .08);
    backdrop-filter: blur(8px);
}

.package-page-nav a {
    border-radius: 999px;
    color: #355142;
    font-size: .9rem;
    font-weight: 600;
    padding: .45rem .8rem;
    text-decoration: none;
}

.package-page-nav a:hover {
    color: var(--primary);
    background: rgba(52, 142, 56, .08);
}

.route-flow-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: .7rem;
    min-height: 56px;
    padding: .85rem 1rem;
    border-radius: 8px;
    color: #21352a;
    background: #fff;
    border: 1px solid rgba(15, 66, 41, .1);
    box-shadow: 0 10px 25px rgba(15, 66, 41, .07);
}

.route-flow-item span,
.timeline-marker {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 50%;
    color: #fff;
    background: var(--primary);
    font-weight: 700;
}

.tier-card,
.season-card {
    padding: 1.35rem;
}

.timeline-list {
    position: relative;
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 1rem;
    padding-bottom: 1.5rem;
}

.timeline-item::before {
    content: "";
    position: absolute;
    top: 34px;
    bottom: 0;
    left: 16px;
    width: 2px;
    background: rgba(52, 142, 56, .22);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-content {
    padding: 1.25rem;
    border-radius: 8px;
    background: #fff;
    border: 1px solid rgba(15, 66, 41, .08);
    box-shadow: 0 12px 30px rgba(15, 66, 41, .07);
}

.quote-card {
    background: linear-gradient(180deg, #fff, #f8fbf3);
}

.kmz-soft-box {
    border-radius: 8px;
    background: rgba(52, 142, 56, .08);
    padding: 1rem;
}

.kmz-trip-card {
    overflow: hidden;
}

.kmz-trip-card img {
    width: 100%;
    height: 215px;
    object-fit: cover;
    transition: transform .55s ease;
}

.kmz-trip-card:hover img {
    transform: scale(1.04);
}

.photo-story-card,
.video-story-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(15, 66, 41, .12);
    transition: transform .32s ease, box-shadow .32s ease;
}

.photo-story-card {
    min-height: 0;
    aspect-ratio: 4 / 5;
}

.photo-story-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.photo-story-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 66, 41, .08), rgba(15, 66, 41, .78));
}

.photo-story-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 2rem;
}

.photo-story-card:hover,
.video-story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 62px rgba(15, 66, 41, .16);
}

.photo-story-card:hover img {
    transform: scale(1.06);
}

.video-story-card video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #0f4229;
}

.home-about-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center;
}

.home-trip-card,
.home-planning-card,
.home-article-card {
    overflow: hidden;
    border: 1px solid rgba(15, 66, 41, .09);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(15, 66, 41, .08);
    transition: transform .28s ease, box-shadow .28s ease;
}

.home-trip-card:hover,
.home-planning-card:hover,
.home-article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(15, 66, 41, .13);
}

.home-card-img,
.home-card-img-sm,
.home-gallery-thumb,
.home-fleet-img img {
    display: block;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.home-card-img {
    height: 240px;
}

.home-card-img-sm {
    height: 180px;
}

.home-gallery-thumb {
    height: 170px;
    border-radius: 8px;
    transition: transform .35s ease;
}

.home-gallery-thumb:hover {
    transform: scale(1.04);
}

.home-fleet-img img {
    height: 340px;
}

.home-proof-tile {
    min-height: 250px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(15, 66, 41, .08);
    transition: transform .28s ease, box-shadow .28s ease;
}

.home-proof-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(15, 66, 41, .13);
}

.service-item {
    min-height: 430px;
    overflow: hidden;
}

.service-item .service-text {
    min-height: 430px;
    width: 100%;
}

@media (max-width: 991.98px) {
    #header-carousel,
    #header-carousel .carousel-inner,
    #header-carousel .carousel-item {
        height: 560px;
    }

    .top-feature .px-5 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .photo-story-card {
        aspect-ratio: 16 / 11;
    }

    .home-about-img,
    .home-fleet-img img {
        height: 300px;
    }

    .navbar .navbar-brand,
    .navbar a.btn {
        height: 72px;
    }

    .navbar-brand img {
        max-height: 62px;
        width: auto;
    }

    .navbar-collapse {
        max-height: calc(100vh - 72px);
        overflow-y: auto;
    }

    .navbar .navbar-nav {
        padding-bottom: .75rem;
    }

    .navbar a.btn.rounded-0 {
        height: auto;
        margin: 0 1.5rem 1.25rem;
        padding: .9rem 1rem !important;
        border-radius: 6px !important;
    }

    .page-header {
        min-height: 320px;
    }

    .package-page-nav {
        position: static;
    }
}

@media (max-width: 575.98px) {
    #header-carousel,
    #header-carousel .carousel-inner,
    #header-carousel .carousel-item {
        height: 500px;
    }

    .carousel-caption h1 {
        margin-bottom: 1.5rem !important;
    }

    .photo-story-card {
        aspect-ratio: 4 / 5;
    }

    .home-card-img {
        height: 220px;
    }

    .home-card-img-sm,
    .home-gallery-thumb {
        height: 160px;
    }

    .page-header {
        min-height: 300px;
        margin-bottom: 2rem !important;
    }

    .page-header .display-3 {
        font-size: clamp(2rem, 10vw, 3rem);
        line-height: 1.05;
    }

    .content-hero-image,
    .guide-hero-image,
    .destination-hero-image,
    .package-photo-slider .carousel-item img {
        max-height: none;
        height: 280px;
    }

    .kmz-section {
        padding: 1.15rem;
    }
}

.kmz-accordion .accordion-item {
    border: 1px solid rgba(15, 66, 41, .09);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: .75rem;
    box-shadow: 0 10px 25px rgba(15, 66, 41, .06);
}

.kmz-accordion .accordion-button {
    font-weight: 600;
}

.kmz-accordion .accordion-button:not(.collapsed) {
    color: var(--dark);
    background: rgba(52, 142, 56, .08);
}

.comparison-grid {
    display: grid;
    gap: .75rem;
}

.comparison-row {
    display: grid;
    grid-template-columns: minmax(160px, .7fr) repeat(var(--compare-columns, 4), minmax(190px, 1fr));
    gap: .75rem;
}

.comparison-label {
    position: sticky;
    left: 0;
    z-index: 2;
    padding: 1rem;
    border-radius: 8px;
    color: var(--dark);
    background: #eef7ed;
    font-weight: 700;
    border: 1px solid rgba(15, 66, 41, .08);
}

.comparison-cell {
    padding: 1rem;
    min-width: 0;
}

.comparison-head .comparison-cell {
    padding: 0 0 1rem;
    overflow: hidden;
}

.comparison-head img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.comparison-head h2,
.comparison-head p,
.comparison-head a {
    margin-left: 1rem;
    margin-right: 1rem;
}

@media (max-width: 991.98px) {
    .comparison-grid {
        overflow-x: auto;
        padding-bottom: .5rem;
    }

    .comparison-row {
        min-width: 860px;
    }

    .kmz-figure img {
        min-height: 260px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
