/* Style.css */

body {
    margin: 0 !important;
    color: #323232;
    font-family: 'Poppins', sans-serif;
}

.small-icon {
    height: 30px;
    width: 30px;
}

h1 {
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.anton {
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
}

a {
    color: #323232;
}

.space-evenly {
    justify-content: space-evenly;
}

.space-between {
    justify-content: space-between;
    width: 100%;
}

.pd-20px {
    padding: 20px;
}

.bg-extra-dark-grey {
    background-color: #232323;
}

.bg-peru {
    background-color: peru;
}

.bg-yellow {
    background-color: #F4B942;
}

.margin-bottom-0 {
    margin-bottom: 0 !important;
}

a:hover {
    color: goldenrod !important;
}

.w-40px {
    width: 40px;
}

.text-tussock {
    color: white;
}

.text-dark-beige {
    color: #E9D6C1;
}

.margin-65px-bottom {
    margin-bottom: 65px;
}

.margin-15px-right {
    margin-right: 15px;
}

.margin-25px-right {
    margin-right: 25px;
}

.margin-25px-left {
    margin-left: 25px;
}

.line-height-65px {
    line-height: 65px;
}

.font-weight-500 {
    font-weight: 500 !important;
}

.z-index-1 {
    z-index: 1;
}

.ms-auto {
    margin-left: auto !important;
}

.justify-content-end {
    justify-content: flex-end !important;
}

.flex-row {
    flex-direction: row !important;
}

.flex-column {
    flex-direction: column !important;
}

.position-absolute {
    position: absolute !important;
}

.d-flex {
    display: flex !important;
}

.w-750px {
    width: 750px;
}

.right-0px {
    right: 0;
}

.bottom-0px {
    bottom: 0;
}

.h-100 {
    height: 100% !important;
}

.padding-5-rem-lr {
    padding-left: 5rem;
    padding-right: 5rem;
}

.padding-3-rem-tb {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.font-weight-300 {
    font-weight: 300 !important;
}

.font-weight-500 {
    font-weight: 500 !important;
}

.h-50 {
    height: 50px;
}

.w-50 {
    width: 50px;
}

/* Lighbox style fixes */
.lightbox .lb-close {
    top: 10px !important; /* Adjust this value as needed */
    right: 10px !important; /* Adjust this value as needed */
    bottom: auto !important;
}

.lightbox .lb-overlay {
    height: 100vh !important;
    overflow-y: hidden !important; /* prevent vertical scrolling */
}

.lightbox .lb-image {
    border: none !important;
}

.lightbox .lb-image {
    height: 50vh !important; /* Adjust this value as needed */
    width: auto !important;
}

#lightbox {
    top: 1000px !important;
}

a.bg-gradient, .bg-gradient {
    /* background-image: linear-gradient(to right top,#0039e3,#4132e0,#5e28dd,#741bd9,#8600d4) !important; */
    /* background-image: linear-gradient(to right top, #0A2A30, #1B4B5B, #2D6C86, #3F8DB1, #50AEDC) !important; */
    background-color: #ff4e00;
    background-image: linear-gradient(315deg, #ff4e00 0%, #ec9f05 74%);
}

.box-shadow {
    box-shadow: 0 0 30px rgba(0,0,0,.08);
}

.box-shadow-img {
    box-shadow: 30px 30px 30px rgba(0,0,0,.1);
}

.text-align-center {
    text-align: center;
}

.bottom-box-shadow {
    box-shadow: 0 2px 6px -2px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1199px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1170px !important;
    }
}

.text-black {
    color: #323232 !important;
}

.justify-content-space-between {
    justify-content: space-between;
}

.text-align-right {
    text-align: right;
}

@media (max-width: 767.98px) {

    .text-align-right {
        text-align: left;
    }
}

/* Slideshow.css */
/* General Styles */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 10px;
}

.slide-title {
    font-size: 90px;
    text-transform: uppercase;
    font-weight: 400;
}

.slide-bg-container {
    position: relative;
    display: inline-block;
    height: 100%;
    width: 100%;
    object-position: center;
    object-fit: cover;
}

.slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-bg-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.527), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.slick-prev,
.slick-next {
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.65) !important;
    border-radius: 100% !important;
    border: none;
    padding: 0;
    width: 40px;
    height: 40px;
    padding: 5px;
    transition: background-color 0.3s ease; /* Smooth transition */
}

    .slick-prev::before,
    .slick-next::before {
        content: none !important;
    }

    .slick-prev img,
    .slick-next img {
        padding: 8px !important;
    }

    .slick-prev:hover,
    .slick-next:hover {
        background-color: rgba(255, 255, 255, 1) !important;
    }

    .slick-dots {
        bottom: 25px !important;
    }

    .slick-prev img {
        /* Original src */
        content: url('/icons/arrow-left-white-icon.svg');
        /* Other styling */
    }

    .slick-next img {
        /* Original src */
        content: url('/icons/arrow-right-white-icon.svg');
        /* Other styling */
    }

    /* Change src on hover */
    .slick-prev:hover img {
        content: url('/icons/arrow-left-black-icon.svg') !important;
    }

    .slick-next:hover img {
        content: url('/icons/arrow-right-black-icon.svg') !important;
    }

    .slick-dots li button:before {
        opacity: 0.5 !important;
        color: #8B6847 !important;
    }

    .slick-dots li.slick-active button:before {
        opacity: 1 !important;
    }

/* Slide Styles */
.slide {
    position: relative;
    height: 90vh;
    width: 100vw;
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
}

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: bottom;
        display: block;
    }

.svg-slide .slide-content h2 {
    font-size: 50px;
    margin-bottom: 10px;
}

.slide-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    transition: all 0.3s ease;
    max-width: 500px;
    z-index: 1;
    text-align: center;
    bottom: 40px;
}

.slide-content .upper-text, .slide-content .button-container {
    justify-content: center;
    align-items: center;
}

.search-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.search-input {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
    outline: none;
    width: 550px;
    max-width: 100%;
    min-width: 500px;
}

.search-button {
    padding: 10px;
    border: 1px solid #ccc;
    border-left: none;
    background-color: #fff;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    height: 45.6px;
}

    .search-button img {
        width: 20px;
        height: 20px;
    }

.button-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

    .slide-content h2 {
        font-size: 60px;
        margin-bottom: 10px;
    }

    .slide-content p {
        font-size: 1.5rem;
    }

.discover-tour-btn {
    border: 2px solid white !important;
    border-radius: 20px !important;
    margin-top: 0;
    padding: 10px 50px !important;
    background: transparent;
    color: white !important;
    font-weight: 300 !important;
    text-transform: uppercase;
    font-size: 12px !important;
    height: max-content;
}

.discover-tour-btn:hover {
    color: white !important;
    background-color: rgba(0, 0, 0, 0.8) !important;
    border: 2px solid black !important;
}

.upper-text {
    margin-bottom: 30px;
}

.destination-icon {
    height: 25px !important;
    width: 25px !important;
    margin: auto;
}

.round-small-icon {
    background-color: #FFBE0B;
    border-radius: 100%;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    margin-right: 20px;
}

/* Navigation buttons */
.slick-prev img,
.slick-next img,
button.slick-next,
button.slick-prev {
    height: 45px;
    width: 45px;
}

button.slick-next {
    right: 50px !important;
}

button.slick-prev {
    left: 50px !important;
}

/* Slideshow navigation slides*/
.slide-content-right {
    max-height: 300px;
    width: 650px;
    position: absolute !important;
    bottom: 150px;
    right: 182px;
    bottom: 80px;
    color: #ffffff;
    transition: all 0.3s ease;
    display: flex !important;
    z-index: 1;
}

.small-slide .img {
    height: 290px;
    width: 200px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    margin: 10px;
    padding: 20px 15px;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.small-slide .text-tussock {
    font-size: 12px;
    font-weight: 400;
}

.small-slide .bg-tussock {
    width: 30px;
}

/* Button Styles */
.button-container {
    position: relative;
    min-width: 250px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-top: 30px;
}

.circle-btn {
    background-color: #E9D6C1;
    border: 2px solid #E9D6C1;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    transition: width 0.3s ease-out, background-color 0.3s ease-out, border-radius 0.3s ease-out;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    overflow: hidden;
}

    .circle-btn:hover {
        border-radius: 1000px;
        width: 140px;
        background-color: #E9D6C1;
    }

.btn-text {
    position: absolute;
    top: 50%;
    left: 35%;
    color: #323232;
    transform: translate(-50%, -50%);
    font-size: 12px;
    font-weight: 500;
    pointer-events: none;
    text-transform: uppercase;
}

/* SVG Slide Styles */
.svg-slide .slide {
    position: relative;
    overflow: hidden;
}

.svg-slide .background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.svg-slide .circle-container,
.svg-slide .half-circle {
    position: absolute;
    animation: breathe 3s infinite alternate;
    bottom: -500px;
    right: 0;
    /*    transform: translateY(-50%);*/
}

.svg-slide .circle-container {
    width: 800px;
    height: 800px;
    background-color: #F0E6DA;
    border-radius: 50%;
    right: -115px;
    z-index: 10;
    display: flex;
}

.svg-slide .svg-in-circle {
    width: 60%;
    height: 60%;
    margin: auto;
}

.svg-slide .half-circle {
    width: 30%;
    height: 150%;
    background: linear-gradient(to bottom, rgba(173, 220, 230, 0.5), rgba(100, 150, 200, 0.5));
    border-radius: 2000px 0 0 2000px;
}

@keyframes breathe {
    0% {
        transform: translateY(-380px) scale(0.99);
    }

    100% {
        transform: translateY(-380px) scale(1.03);
    }
}

.svg-slide .svg-in-circle {
    border-radius: 100%;
}

.slick-arrow img:hover {
    opacity: 0.6;
}


/* Responsive */

@media (max-width: 1319.98px) {

    .svg-slide .circle-container {
        width: 700px;
        height: 700px;
    }

    .details {
        width: 250px !important;
    }
}

@media (max-width: 1219.98px) {

    .svg-slide .circle-container {
        width: 600px;
        height: 600px;
        right: -100px;
        bottom: -450px;
    }

    .svg-slide.slide .slide-content {
        left: 150px;
        z-index: 150 !important;
    }

    .service-item img {
        height: 85px;
    }

    .service-item img {
        width: 35%;
    }

    .details {
        width: 200px !important;
    }
}

@media (max-width: 1019.98px) {

    .svg-slide .circle-container {
        width: 520px;
        height: 520px;
    }

    .svg-slide.slide .slide-content h2 {
        font-size: 40px !important;
    }

    .svg-slide.slide .slide-content .subtitle {
        font-size: 14px;
    }

    .upper-text {
        font-size: 15px;
    }

    .details {
        width: 180px !important;
    }
}

@media (max-width: 919.98px) {

    .upper-text {
        font-size: 14px;
    }

    .slick-prev.slick-arrow, .slick-next.slick-arrow {
        display: none !important;
    }

    .slide {
        display: flex !important;
        justify-content: center !important; /* Center children horizontally */
        align-items: center !important; /* Center children vertically */
        height: 80vh; /* Or a specific height if you have one */
        max-height: 700px;
        position: relative; /* So that the absolute positioning of children works within this container */
        flex-direction: column !important;
    }

        .slide .slide-content {
            color: #ffffff;
            transition: all 0.3s ease;
            max-width: 80%;
            justify-content: center;
            display: flex;
            flex-direction: column;
            bottom: unset;
            z-index: 100;
            z-index: 1;
        }

    .svg-slide.slide .slide-content {
        bottom: 85px;
    }

    .slide .slide-content h2 {
        font-size: 52px !important;
    }

    .button-container {
        margin-left: 0px;
    }

    .slide.svg-slide {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .svg-slide.slide .circle-container {
        width: 350px;
        height: 350px;
        position: absolute;
        top: unset;
        bottom: unset;
        left: unset;
        right: unset;
        top: 80%;
        left: 25%;
    }

    .circle-btn {
        background-color: #E9D6C1;
        border: 2px solid #E9D6C1;
    }

    .btn-text {
        color: #4f4033;
    }
}


@media (max-width: 767.98px) {

    .svg-slide.slide .circle-container {
        top: 75%;
        left: 45%;
    }

    .slide.svg-slide .slide-content {
        text-align: left;
        left: 25px;
    }

        .slide.svg-slide .slide-content h2 {
            font-size: 35px !important;
        }

        .slide.svg-slide .slide-content .upper-text,
        .slide.svg-slide .slide-content .subtitle {
            font-size: 12px;
        }

    .svg-slide .button-container {
        margin-left: 0;
    }
}


@media (max-width: 519.98px) {

    blockquote {
        font-size: 12px;
    }

    .svg-slide.slide .circle-container {
        top: 70%;
        left: 25%;
    }

    .slide {
        height: 90vh;
    }

        .slide .slide-content h2 {
            font-size: 45px !important;
        }

        .slide.svg-slide .slide-content h2 {
            font-size: 30px !important;
        }

        .slide.svg-slide .slide-content .upper-text,
        .slide.svg-slide .slide-content .subtitle {
            font-size: 10px;
        }

    .svg-slide .btn-text {
        font-size: 10px;
    }
}

@media (max-width: 419.98px) {

    .svg-slide.slide .circle-container {
        top: 55%;
        left: 12%;
        height: 500px;
        width: 500px;
    }
}

@media (max-width: 319.98px) {

    .slide .slide-content {
        left: unset;
    }

        .slide .slide-content h2 {
            font-size: 40px !important;
        }
}


/* Header */
/* Header 1 */
.contact-header {
    background-color: white;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 30px;
    padding-right: 50px;
}

.language-switch i {
    color: #323232;
}

    .language-switch i:hover {
        color: rgb(230, 230, 230);
    }

.contact-header .language-switch a {
    margin-left: 10px;
    margin-right: 10px;
}

    .contact-header .language-switch a:last-child {
        margin-right: 0px;
    }

    .contact-header .language-switch a:first-child {
        margin-left: 0px;
    }

.contact i:hover, .contact a:hover {
    color: #bf8c4c !important;
}

.contact a {
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    display: flex;
    color: #323232;
}

.contact span {
    margin: auto;
    margin-left: 10px;
}

.contact {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

    .contact div {
        padding-right: 25px;
    }

.language-switch {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    flex-wrap: wrap;
    text-align: right;
}

.contact-header nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.language-switch a {
    color: #323232;
    text-decoration: none;
}

    .language-switch a.active {
        color: #bf8c4c;
    }

/* Responsivity */
/* Mobile view adjustments */
@media (max-width: 919.98px) {
    .contact-header {
        padding-left: 20px;
        padding-right: 20px;
    }

    header .contact {
        font-size: 14px;
    }

    .language-switch {
        font-size: 14px;
    }

    .contact a {
        font-size: 13px;
    }

    .contact span {
        margin-left: 5px;
    }

    .small-icon {
        height: 25px;
        width: 25px;
    }

    #header-2 .div1 {
        width: 150px !important;
    }

    .logo {
        width: 45px !important;
        height: 45px !important;
    }

    #header-2 .div1 p {
        font-size: 12px !important;
    }

    #header-2 .div2 a {
        font-size: 18px !important;
    }
}

@media (max-width: 798.98px) {
    header .contact {
        font-size: 14px;
        max-width: 410px;
        flex-wrap: wrap;
    }

    .language-switch {
        font-size: 14px;
    }
}

@media (max-width: 540.98px) {
    header .contact {
        font-size: 14px;
        max-width: 260px;
        flex-wrap: wrap;
    }
}

@media (max-width: 419.98px) {
    header .contact, .language-switch {
        font-size: 12px;
    }

    header .contact {
        max-width: 230px;
    }
}


@media (max-width: 350.98px) {
    .language-switch {
        margin-top: 5px;
        margin-bottom: 5px;
    }
}



/* Header 2 */
#header-2 {
    background-color: transparent;
    display: flex;
    flex-direction: row;
    padding: 10px 30px;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    z-index: 10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.logo {
    height: 100px;
}

#header-2 .div1 p {
    color: white;
    line-height: 15px;
    margin: auto;
    font-size: 14px;
    font-weight: 400;
    padding-left: 5px;
}

#header-2 .div1 {
    display: flex;
    flex-direction: row;
    width: 170px;
    text-decoration: none;
}

#header-2 .div2 {
    display: flex;
    justify-content: center;
    color: white;
}

    #header-2 .div2 a {
        margin: auto 10px;
        text-decoration: none;
        color: white !important;
        font-size: 18px;
        font-weight: 300;
    }

        #header-2 .div2 a:hover {
            color: white !important;
        }

#header-2 .nav-item {
    position: relative;
}

    #header-2 .nav-item:after {
        background: none repeat scroll 0 0 transparent;
        bottom: 0;
        content: "";
        display: block;
        height: 2px;
        left: 50%;
        position: absolute;
        background: #F4B942 !important;
        transition: width 0.3s ease 0s, left 0.3s ease 0s;
        width: 0;
    }

    #header-2 .nav-item:hover:after {
        width: 100%;
        left: 0;
        color: white !important;
    }

#header-2 .nav.item:hover {
    color: white !important;
}

#header-2 .div1 p {
    text-decoration: none;
}

#header-2 .div1 {
    cursor: pointer;
    opacity: 0.9;
}

/*----- Mobile header -----*/
@media (max-width: 519.98px) {
    #mobile-header {
        display: block; /* Show the mobile header only on small screens */
    }

    .div2 {
        display: none; /* Hide the desktop navigation on small screens */
    }

    .content {
        display: none; /* Initially hide the mobile navigation on small screens */
    }
}

@media (min-width: 520px) {
    #mobile-header {
        display: none; /* Hide the mobile header on larger screens */
    }

    .div2 {
        display: block; /* Show the desktop navigation on larger screens */
    }
}

/* Existing styles for the hamburger menu animation */
.hamburger-menu {
    top: 1rem;
    right: 2rem;
    z-index: 10;
    cursor: pointer;
    margin: auto 0;
}

.menu-bar1,
.menu-bar2,
.menu-bar3 {
    width: 2rem;
    height: 0.1rem;
    background-color: white;
    margin: 0.8rem 0;
    transition: 0.4s;
    margin: 0.2rem 0 0.2rem 0;
    margin-left: auto;
}

.menu-bar2 {
    width: 1rem;
}

/* ROTATE FIRST BAR */
.active .menu-bar1 {
    transform: rotate(-45deg) translate(-0.1rem, 0.3rem)
}

/* FADE OUT SECOND BAR */
.active .menu-bar2 {
    opacity: 0;
}

/* ROTATE LAST BAR */
.active .menu-bar3 {
    transform: rotate(45deg) translate(-0.1rem, -0.3rem);
}

/* Mobile Drawer */
.mobile-drawer {
    position: absolute;
    top: calc(100% + 1px); /* Starts right under the header */
    left: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    background-color: #fff;
    z-index: 100;
}

    .mobile-drawer.open {
        max-height: 300px; /* Adjust based on your need */
    }

/* Drawer Links */
.drawer-link {
    display: block;
    padding: 15px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #e5e5e5;
    transition: background-color 0.3s;
}

a.drawer-link:hover {
    background-color: #f5f5f5;
    color: rgba(134, 192, 207, 1) !important;
}

/* Mobile-first approach */

/* By default, only show the mobile hamburger menu */
.div2 {
    display: flex;
}

.hamburger-menu {
    display: none;
}

@media screen and (max-width: 767.98px) {
    #header-2 {
        padding: 10px 20px;
    }
}

/* When the screen width is greater than 519.98px, hide the hamburger and show the desktop links */
@media screen and (max-width: 565.98px) {

    .hamburger-menu,
    #mobile-drawer {
        display: block;
    }

    #header-2 .div2 {
        display: none;
    }

    #header-2 {
        padding: 10px 20px;
    }

    .drawer-link {
        font-size: 14px;
    }
}

@media screen and (max-width: 419.98px) {

    header {
        padding: 10px 10px !important;
    }
}

/* Footer.css */
footer {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    background: #222222;
    color: white;
    padding-top: 40px;
    padding-bottom: 40px;
}

    footer div {
        width: 25%;
        padding: 30px;
        display: flex;
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }

        footer div img {
            width: 60px;
            height: 60px;
            margin: auto;
        }

    footer h5 {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    footer a {
        color: white;
        text-decoration: none;
    }

        footer a:hover {
            color: #86C0CF;
        }

.bottom-footer {
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    display: flex;
    padding: 0;
    padding-left: 50px;
    justify-content: flex-end;
}

    .bottom-footer .colored-div {
        background-color: #00BFFF;
        height: 100%;
        padding: 0;
        color: black;
        padding: 8px 20px;
        border-top-left-radius: 40px;
    }


/* Responsivity */
@media (max-width: 1119.98px) {
    footer h5 {
        font-size: 14px;
    }

    footer a {
        font-size: 12px;
        height: 34px;
    }

    footer div {
        padding: 15px;
    }
}

@media (max-width: 919.98px) {

    footer {
        padding-top: 20px;
        padding-bottom: 20px;
        padding-top: 100px;
    }

        footer div img {
            height: 50px;
            width: 50px;
        }

    .bottom-footer .colored-div {
        width: 300px;
    }
}

@media (max-width: 767.98px) {

    footer div {
        width: 50%;
    }
}

@media (max-width: 350.98px) {

    footer a {
        font-size: 10px;
    }
}

/* Services */
/*-----------SERVICE BOX-----------*/

.services-box {
    background-color: white;
    display: flex;
    flex-direction: row;
    color: #323232;
    border-bottom: 7px solid white;
}

.service-item {
    width: 33%;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: row;
    margin-top: 2%;
    margin-bottom: 2%;
    border-right: 1px solid #86C0CF;
}

    .service-item img {
        width: 40%;
    }

    .service-item div {
        width: 60%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: left;
    }

    .service-item p {
        font-size: 12px;
    }

    .service-item h3 {
        font-weight: 500;
        font-size: 16px;
    }

.services-box .service-item:last-child {
    border-right: none;
}

div.services-box > div > i {
    color: #86C0CF;
    font-size: 60px;
}

.service-item img {
    height: 100px;
}

.service-item h3 {
    color: #86C0CF;
}

.service-item p {
    max-width: 80%;
}

/* Responsivity */

@media (max-width: 1219.98px) {

    .service-item img {
        height: 90px;
        width: 35%;
    }

    .service-item p {
        max-width: 95%;
    }
}


@media (max-width: 919.98px) {

    .service-item img {
        height: 65px;
        width: 35%;
    }

    .service-item h3 {
        font-size: 14px;
    }

    service-item p {
        font-size: 10px;
    }
}

@media (max-width: 767.98px) {

    .slick-dotted.slick-slider {
        margin-bottom: 15px !important;
    }

    .service-item p {
        font-size: 10px;
    }

    .service-item h3 {
        font-size: 13px;
    }

    .service-item img {
        height: 50px;
    }
}

@media (max-width: 565.98px) {

    .service-item {
        border-right: none;
        flex-direction: column;
    }

        .service-item div {
            margin-top: 8px;
            width: 80%;
        }

        .service-item h3, .service-item p {
            text-align: center;
        }
}

@media (max-width: 419.98px) {
    .service-item h3 {
        font-size: 12px;
    }

    .service-item p {
        font-size: 9px;
    }

    .service-item img {
        width: 45%;
    }
}

/* Products.css  */
#products {
    background: #F9F6F3;
    background-image: url('../icons/big-ben-bg-op-3.svg') !important;
    width: 100%;
    background-position: center;
    background-size: cover;
}

.products-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    flex-direction: column;
    margin: 50px 2%; /* Adjust margin to be percentage for better responsiveness */
    width: 96%; /* Give a width to allow for the margin */
    max-width: 1100px;
    margin: auto;
    padding-top: 50px;
    padding-bottom: 50px;
}

    .products-block .flex-row {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

.decorated-text {
    font-size: 16px;
    color: #c49c63;
}

.products-block h3 {
    font-weight: 700;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 30px;
}

.bg-seashell {
    background-color: #323232;
/*    background-color: #FFF5EE;
*/}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.text-center {
    text-align: center;
}

.margin-4-half-rem-bottom {
    margin-bottom: 4.5rem;
}

.md-margin-3-rem-bottom {
    margin-bottom: 3rem;
}

.w-25px {
    width: 25px;
}

.h-1px {
    height: 1px;
}

.bg-tussock {
    background-color: white;
}

.bg-dark-beige {
    background-color: #E9D6C1;
}

.bg-light-brown {
    background-color: #BEA380;
}

.opacity-4 {
    opacity: 0.4;
}

.alt-font {
    font-style: italic;
}

.text-extra-medium {
    font-size: 16px;
}

.padding-10px-lr {
    padding-left: 10px;
    padding-right: 10px;
}

.text-uppercase {
    text-transform: uppercase;
}

.letter-spacing-minus-1px {
    letter-spacing: -1px;
}

.font-weight-700 {
    font-weight: 700;
}

.bg-lightgray {
    background-color: rgba(128, 128, 128, 0.2);
}

.interactive-banners-style-05 {
    position: relative;
    border-radius: 5px;
}

.interactive-banners-image {
    height: 50%;
}

    .interactive-banners-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }

.bg-gradient-midium-gray-transparent {
    background: linear-gradient(to bottom, rgba(128, 128, 128, 0), rgba(128, 128, 128, 1));
}

.opacity-medium {
    opacity: 0.5;
}

.section-link {
    display: inline-block;
}

.text-white {
    color: #ffffff;
}

.border-all {
    border: solid;
}

.border-width-2px {
    border-width: 2px;
}

.border-color-white {
    border-color: #ffffff;
}

.position-absolute {
    position: absolute;
}

.z-index-1 {
    z-index: 1;
}

.btn {
    padding: 0.5rem 1rem;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-tussock {
    background-color: white !important;
    color: #ffffff !important;
    text-transform: uppercase;
    border-radius: 0 !important;
    transition: background-color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease; /* Added opacity to the transition list */
    font-size: 12px !important;
    opacity: 0.8; /* Slightly reduced opacity */
}

    .btn-tussock:hover {
        background-color: transparent !important; /* Transparent background on hover */
        color: #c49c63 !important;
        opacity: 1; /* Full opacity on hover for the fade-in effect */
        border: 1px solid #c49c63 !important; /* Border with the original background color on hover */
    }

.btn-dark-beige {
    background-color: #E9D6C1 !important;
    color: #ffffff !important;
    text-transform: uppercase;
    border-radius: 0 !important;
    transition: background-color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease; /* Added opacity to the transition list */
    font-size: 12px !important;
    opacity: 0.8; /* Slightly reduced opacity */
}

    .btn-dark-beige:hover {
        background-color: transparent !important; /* Transparent background on hover */
        color: #E9D6C1 !important;
        opacity: 1; /* Full opacity on hover for the fade-in effect */
        border: 1px solid #E9D6C1 !important; /* Border with the original background color on hover */
    }

.btn-light-brown {
    background-color: #FFC000 !important;
    color: black !important;
    text-transform: uppercase;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
    border-radius: 0 !important;
    transition: background-color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease; /* Added opacity to the transition list */
    font-size: 13px !important;
    font-weight: 600;
    opacity: 0.9; /* Slightly reduced opacity */
    margin-top: 20px;
}

    .btn-light-brown:hover {
        background-color: transparent !important; /* Transparent background on hover */
        color: #FFC000 !important;
        opacity: 1; /* Full opacity on hover for the fade-in effect */
        border: 2px solid #F4B942 !important; /* Border with the original background color on hover */
    }


.bg-tussock {
    background-color: white;
}

.w-25px {
    width: 25px;
}

.interactive-banners-content {
    bottom: 0;
    height: 52%;
    padding: 40px;
    width: 100%;
    color: #323232;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-evenly;
}

.interactive-banners-style-05 {
    display: flex;
    flex-direction: column;
    height: inherit;
    box-shadow: 0 0 15px rgba(0,0,0,.08);
}

.product-item {
    height: 520px;
    padding: 20px;
    margin-bottom: 80px;
    transition: transform 0.1s; /* smooth transition for the movement */
}

    .product-item:hover {
        transform: translateY(-20px) !important; /* move up by 10px on hover */
    }


#products .small-icon {
    width: 25px;
    height: 25px;
    filter: brightness(1000);
    cursor: pointer;
}

.interactive-banners-content {
    background: white;
    padding-bottom: 30px;
}

.interactive-banners-content-text {
    font-size: 13px;
    padding-bottom: 20px;
    margin-bottom: 0px;
    border-bottom: 0.3px solid rgba(128, 128, 128, 0.2);
    justify-content: space-evenly;
    max-height: 100px;
    overflow: hidden;
}

.small-rectangle-text {
    background-color: peru;
    color: white;
    padding: 10px 20px;
    height: 40px;
    position: absolute;
    text-align: center;
    top: 45%;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Responsivity */
@media (max-width: 919.98px) {
    .product-title {
        font-size: 14px;
    }
}

@media (max-width: 565.98px) {
    .product-title, .text-extra-medium {
        font-size: 12px;
    }

    #products .small-icon {
        width: 18px;
        height: 18px;
    }

    .interactive-banners-content-text {
        font-size: 10px;
    }

    .btn-light-brown {
        font-size: 10px !important;
    }

    .product-item {
        width: 100% !important;
    }

        .product-item .product-title {
            font-size: 18px;
        }

        .product-item .interactive-banners-content-text {
            font-size: 14px;
        }

    .interactive-banners-content {
        padding: 20px !important;
    }

    .product-item .btn-light-brown {
        font-size: 14px !important;
    }
}

/* For mobile screens */
@media (max-width: 480px) {

    .interactive-banners-content {
        padding: 10px;
    }

    .product-title {
        font-size: 10px;
    }

    .btn-light-brown {
        font-size: 8px !important;
    }

    .interactive-banners-content-text {
        font-size: 9px;
    }

    .drawer-link {
        font-size: 12px;
    }
}


/* Contact.css */
.contact-form {
    position: relative;
    display: flex;
    width: 100%;
    height: 700px;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    color: white;
}

    .contact-form::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5); /* Black color with 50% transparency */
        /*filter: blur(5px);*/ /* Blur effect */
        width: 80%;
        height: 80%;
        margin: auto;
    }

.contact-info {
    flex: 1;
    padding: 50px;
    color: white;
    z-index: 100;
    width: 40%;
}

.form {
    flex: 1;
    padding: 20px 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 100;
    margin: auto;
}

    /* Input fields styling */
    .form input, .form textarea {
        background: none;
        border: none;
        border-bottom: 1px solid white;
        outline: none;
        padding: 10px;
        font-size: 14px;
    }

    .form textarea {
        height: 100px; /* You can adjust as needed */
    }

.form-container {
    width: 80%;
    height: 80%;
    margin: auto;
    display: flex;
}

.map iframe {
    height: 300px;
    margin: auto;
    width: -webkit-fill-available;
    border-radius: 5px;
}

.map {
    margin: auto;
}

/* Input fields styling */
.form input, .form textarea {
    background: none;
    border: none;
    border-bottom: 1px solid white;
    outline: none;
    padding: 10px;
    color: #FFF; /* Optional: This will set the color of the text that users type. You can adjust as per your design. */
}

    /* Styling for the placeholder text */
    .form input::placeholder, .form textarea::placeholder {
        color: rgba(255, 255, 255, 0.8);
        font-family: 'Poppins', sans-serif;
        font-weight: 300;
    }

    /* For cross-browser compatibility */
    .form input::-webkit-input-placeholder, .form textarea::-webkit-input-placeholder {
        color: rgba(255, 255, 255, 0.8);
    }

    .form input::-moz-placeholder, .form textarea::-moz-placeholder {
        color: rgba(255, 255, 255, 0.8);
    }

    .form input:-ms-input-placeholder, .form textarea:-ms-input-placeholder {
        color: rgba(255, 255, 255, 0.8);
    }

.form button {
    position: relative; /* Position relative to allow absolute positioning inside */
    width: 200px;
    padding: 8px;
    border: 1px solid white;
    background: none;
    color: white; /* Assuming the button text color is white; modify if different */
    overflow: hidden; /* Hide the overflowing part of the pseudo-element */
    transition: color 0.4s; /* Transition the text color */
    margin-top: 30px;
}

    .form button::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%; /* Start from the left and outside of the button */
        width: 100%;
        height: 100%;
        background-color: white; /* Assuming fill color is white; modify if different */
        transition: left 0.4s; /* Transition for the fill effect */
        z-index: -1; /* Place the fill effect behind the text */
    }

    .form button:hover {
        color: black; /* Modify if you want a different color after hover */
    }

        /* Fill effect on hover */
        .form button:hover::before { /* Removed extra space */
            left: 0; /* Move the fill effect to cover the entire button */
        }

.alert-top {
    position: fixed;
    top: 50px;
    left: 36%;
    width: 350px;
    border-radius: 10px;
    z-index: 1000;
    display: none;
    text-align: center;
    padding: 10px;
    font-size: 18px;
    border: none;
}

.alert-success {
    background-color: #dff0d8;
    color: #3c763d;
}

.alert-danger {
    background-color: #f2dede;
    color: #a94442;
}

.form textarea {
    height: 100px; /* You can adjust as needed */
}

.width-100 {
    width: 100%;
}

/* Responsivity */
@media (max-width: 1279.98px) {

    .form {
        padding-right: 50px;
        padding-left: 20px;
    }
}

@media (max-width: 919.98px) {

    .contact-info {
        padding: 30px;
    }

    .form {
        padding: 30px;
        padding-left: 0px;
    }

    .contact-form::before {
        width: 85%;
        height: 85%;
    }

    .form-container {
        width: 85%;
        height: 85%;
    }

    .form input::placeholder, .form textarea::placeholder {
        font-size: 14px !important;
    }
}

@media (max-width: 767.98px) {

    .contact-form::before {
        width: 85%;
        height: 85%;
    }

    .form-container {
        width: 85%;
        height: 85%;
    }

    .form-container {
        flex-direction: column;
    }

    .contact-form {
        height: 965px;
    }

    .contact-info {
        width: 100%;
        height: 30%;
        padding-bottom: 0;
    }

    .form {
        width: 100%;
        padding: 30px;
        padding-top: 0px;
    }

    .map iframe {
        height: 250px;
    }

    .form-container p {
        font-size: 14px;
    }
}

@media (max-width: 519.98px) {

    .contact-form::before {
        width: 90%;
        height: 90%;
    }

    .form-container {
        width: 90%;
        height: 90%;
    }

    .form button {
        font-size: 14px;
    }

    .contact-info {
        padding-bottom: 0 !important;
    }

    .form {
        padding-top: 0 !important;
    }

        .form[data-aos] {
            transition: none !important;
            visibility: visible !important;
            opacity: 1 !important;
            transform: none !important;
        }

    .contact-form {
        background-attachment: scroll;
    }
}


@media (max-width: 419.98px) {

    .contact-info, .form {
        padding: 20px;
    }
}


/* Animation.css */
Fade-In Animation
.fade-in {
    animation: fadeIn 2s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

Slide-In Animation
.slide-in-from-left {
    transform: translateX(-10%);
    animation: slideInFromLeft 2s forwards;
}

@keyframes slideInFromLeft {
    to {
        transform: translateX(0);
    }
}

.slide-in-from-right {
    transform: translateX(100%);
    animation: slideInFromRight 2s forwards;
}

@keyframes slideInFromRight {
    to {
        transform: translateX(0);
    }
}

Slide-In from Bottom Animation
.slide-in-from-bottom {
    transform: translateY(10%);
    Starts below its final position animation: slideInFromBottom 2s forwards;
}

@keyframes slideInFromBottom {
    to {
        transform: translateY(0);
        Ends at its final position
    }
}


/* Product.css */
.product-section-1 {
    background-size: cover;
    background-repeat: no-repeat;
    height: 80vh;
    background-position: center;
    position: relative;
}

    .product-section-1 .container, .product-section-1 .title-and-subtitle {
        height: inherit !important;
    }

    .product-section-1 .title {
        font-size: 55px;
    }

.rectangle-text h5 {
    font-size: 32px;
}

.font-weight-300 {
    font-weight: 300 !important;
}

.font-weight-600 {
    font-weight: 600 !important;
}

#product-section-2, #product-section-4 {
    padding: 80px;
}

    #product-section-2 h6, #product-section-4 h6 {
        font-size: 18px;
    }

.title-and-subtitle {
    height: inherit !important;
}

.section-2-illustration {
    background-size: contain;
    background-repeat: no-repeat;
    min-height: 400px;
}

/* Center image */
.lightbox .lb-image {
    max-width: -webkit-fill-available;
    max-height: -webkit-fill-available;
    object-fit: cover;
}

/* Hover effect on images */
/* Set the container to relative positioning so the overlay can be absolutely positioned inside it */
#lightbox-gallery-section a {
    display: block;
    position: relative;
    overflow: hidden; /* This will ensure that the zoomed image does not spill outside its container */
}

/* Hover */
#lightbox-gallery-section img {
    width: 100%; /* Cover the full width of the anchor container */
    transition: transform 0.3s ease, opacity 0.7s ease; /* Added opacity to transition */
}

/* On hover, scale the image */
#lightbox-gallery-section a:hover img {
    transform: scale(1.1) !important; /* Zoom in the image by 10% */
    opacity: 0.3;
}

#lightbox-gallery-section a {
    border: 1px solid rgb(0, 148, 255, 0.1);
}

#lightbox-gallery-section .justify-content-space-between {
    justify-content: space-evenly;
}

#lightbox-gallery-section .col-md-12 {
    width: 100% !important;
}


.img-overlay {
    padding-left: 0px !important;
    padding-right: 0px !important;
    margin-left: calc(var(--bs-gutter-x) * .5);
    margin-right: calc(var(--bs-gutter-x) * .5);
}

    .img-overlay.col-md-4 {
        width: 29.333333%;
    }

.photo-description {
    padding: 20px;
    text-align: center;
}

    .photo-description p {
        margin-bottom: 0;
    }


.small-icon-overlay {
    display: none;
    height: 60px !important;
    width: 60px !important;
    position: absolute;
}

.product-title {
    margin-bottom: 20px;
    font-size: 21px;
}

#lightbox-gallery-section a:hover {
    display: flex;
    justify-content: center;
    align-items: center;
}

    #lightbox-gallery-section a:hover .small-icon-overlay {
        position: absolute;
        display: flex;
        opacity: 1;
        z-index: 100;
    }

.product-section-4 h4 {
    margin-bottom: 40px;
    margin: auto auto;
}

.product-section-4 figure {
    margin: auto;
}

.product-section-4 {
    display: flex;
    justify-content: center;
    margin: auto;
    font-size: 14px;
}

.product-section-4 {
    padding: 40px;
    padding-top: 20px;
}

.img-over-img-block img {
    object-fit: contain;
    position: absolute;
    max-height: -webkit-fill-available;
    max-width: 60%;
    border-radius: 5px;
}

.img-over-img-block .back-img {
    top: 0;
    left: 0;
}

.img-over-img-block .front-img {
    bottom: 0;
    right: 0;
}

.product-section-5 {
    display: flex;
    flex-direction: row;
    padding: 80px 0px;
    background: rgb(240,230,218, 0.5);
}

    .product-section-5 .container {
        display: flex;
        flex-direction: row;
    }

    .product-section-5 .img-over-img-block {
        width: 50%;
        position: relative;
        margin: 20px 30px;
        margin-left: 0;
    }

    .product-section-5 .content-block {
        margin: 30px;
        width: 50%;
    }

.product-section-6 {
    display: flex;
    flex-direction: row;
    padding: 80px 0px;
    background-size: cover;
    background-image: url('/icons/section-bg.svg');
}

    .product-section-6 .container {
        display: flex;
        flex-direction: row;
    }

    .product-section-6 .img-over-img-block {
        width: 50%;
        position: relative;
        margin: 20px 30px;
        margin-right: 0;
    }

    .product-section-6 .content-block {
        margin: 30px;
        width: 50%;
    }

.content-block .subtitle {
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-color: #772f1a;
    background-image: linear-gradient(315deg, #f2a65a 0%, #772f1a 74%);
}

.content-block .title {
    margin-bottom: 30px;
    margin-top: 10px;
}

.photo-description {
    display: flex;
    align-items: center;
}

    .photo-description p {
        margin: auto;
    }

#product-section-4.missing-parts h6 {
    font-size: 100px;
}

#product-section-4 .img-container {
    width: 70%;
}

#product-section-4 .text-container {
    width: 30%;
    text-align: center;
    font-family: 'Bangers', sans-serif;
    font-size: 100px;
    color: #BF8C4C;
}

/* Responsivity */
@media (max-width: 1219.98px) {
    .content-block .text {
        font-size: 14px;
    }
}

@media (max-width: 1119.98px) {
    .product-section-5 .text, .product-section-6 .text,
    .product-section-5 .subtitle, .product-section-6 .subtitle
    .product-section-5 p, .product-section-6 p {
        font-size: 14px;
    }

    .product-section-5 .title, .product-section-6 .title {
        font-size: 22px;
    }

    .product-section-5 .container, .product-section-6 .container {
        max-width: unset !important;
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 919.98px) {
    .product-section-5 .container, .product-section-6 .container {
        flex-direction: column;
    }

    .product-section-5 .content-block,
    .product-section-6 .content-block {
        padding: 30px !important;
        width: 100%;
        margin: 0px !important;
    }

    .product-section-5 .img-over-img-block,
    .product-section-6 .img-over-img-block {
        margin: auto;
        display: flex;
        width: 100%;
        justify-content: space-evenly;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .img-over-img-block img {
        position: relative;
        margin: 20px;
        max-width: -webkit-fill-available;
        width: 40%;
    }

    #product-section-4.missing-parts h6 {
        font-size: 80px;
    }
}

@media (max-width: 767.98px) {
    #product-section-2 .section-2-illustration,
    #product-section-4 .section-2-illustration {
        height: 150px !important;
        background-position: center;
        margin-top: 50px;
        margin-bottom: 50px;
    }

    #product-section-2, #product-section-4 {
        padding: 20px;
        padding-top: 100px;
    }

    .product-section-4 {
        max-width: 100%;
    }

        .product-section-4 img {
            padding: 20px;
            max-width: -webkit-fill-available;
            margin: 40px auto;
        }

    #product-section-4 h6,
    #product-section-2 h6 {
        padding-top: 20px;
        padding-bottom: 20px;
        font-size: 20px;
    }

    #product-section-4 .row {
        flex-direction: column-reverse;
    }

    .w-750px {
        width: 100%;
    }

    .rectangle-text h5 {
        font-size: 20px;
    }

    .rectangle-text {
        padding: 25px 10px;
    }

        .rectangle-text p {
            margin-bottom: 0;
        }

    .product-section-5 .container, .product-section-6 .container {
        flex-direction: column;
        max-width: unset !important;
    }

    .img-overlay.col-md-4 {
        width: 45%;
    }

    .product-section-5 .content-block,
    .product-section-6 .content-block {
        padding: 30px 10px !important;
    }

    .img-overlay.col-md-4 {
        width: 90%;
    }

    .product-section-5,
    .product-section-6 {
        padding: 40px 0;
    }

    #product-section-4 .img-container {
        width: 100%;
    }

    #product-section-4 .text-container {
        width: 100%;
    }

    #product-section-2, #product-section-4 {
        padding-bottom: 50px;
        padding-top: 80px;
    }
}

@media (max-width: 565.98px) {

    #product-section-2, #product-section-4 {
        padding: 25px;
        padding-top: 80px;
    }

    .product-section-5 .img-over-img-block,
    .product-section-6 .img-over-img-block {
        flex-direction: column;
    }

    .img-over-img-block img {
        width: 100%;
    }
}

/* Blog.css */
.blog-hero-section.product-section-1 .title {
    font-size: 110px !important;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
    font-weight: 500;
}

}

.blog-hero-section.product-section-1 .title-and-subtitle {
    justify-content: center;
}

.blog-hero-section .title-and-subtitle .box {
    width: auto;
    margin: auto;
}

.blog-hero-section .subtitle-text {
    font-size: 18px;
}

.blog-hero-section .subtitle-container {
    justify-content: center;
}

.blog-hero-section.product-section-1 {
    height: 65vh;
}

.blogs .interactive-banners-style-05 {
    flex-direction: row;
}

.blogs .product-item {
    height: 300px;
}

.blogs .interactive-banners-image {
    height: 100%;
    width: 100%;
}

.blogs .interactive-banners-content {
    height: 100%;
}

#products.blogs {
    background: rgba(217, 217, 217, 0.25);
}

.blogs .product-item:hover {
    cursor: pointer;
}

.blogs .product-item {
    text-decoration: none;
}

.blogs .category-btn {
    margin-top: 0;
    width: auto;
    padding-top: 4px !important;
    padding-bottom: 4px !important;
    max-width: max-content;
    margin-bottom: 15px;
}

.blogs .interactive-banners-content {
    padding-top: 10px;
    padding-left: 25px;
}

.blogs .interactive-banners-content-text {
    border-bottom: none;
}

    .blogs .interactive-banners-content-text.date {
        border-bottom: none;
        padding-bottom: 0;
        color: #67B1C6;
        display: flex;
        justify-content: flex-end;
    }

.all-categories-filter {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin: auto;
    margin-top: 40px;
    margin-bottom: 90px;
    flex-wrap: wrap;
    max-width: 1100px;
}

.category-filter {
    text-transform: uppercase;
    color: rgba(50, 50, 50, 0.5);
}

    .category-filter:hover {
        cursor: pointer;
        color: rgba(50, 50, 50);
    }

    .category-filter:active {
        color: rgba(50, 50, 50);
    }


.category-filter {
    position: relative;
    line-height: 35px;
    margin-top: 30px;
    margin-left: 15px;
    margin-right: 15px;
}

    .category-filter:after {
        background: none repeat scroll 0 0 transparent;
        bottom: 0;
        content: "";
        display: block;
        height: 2px;
        left: 50%;
        position: absolute;
        background: rgb(50, 50, 50) !important;
        transition: width 0.3s ease 0s, left 0.3s ease 0s;
        width: 0;
    }

    .category-filter:hover:after {
        width: 100%;
        left: 0;
        color: rgb(50, 50, 50) !important;
    }

.blogs h3, .blog-pinned-articles-section h3 {
    color: #323232;
    font-size: 40px;
    font-weight: 500;
    font-family: 'Poppins';
}

.selected-categories {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

    .selected-categories .category-btn {
        font-size: 11px !important;
    }

.blogs .products-block {
    max-width: 1200px;
}

    .blogs .products-block .flex-row {
        justify-content: flex-start;
    }


.blog-content {
    max-width: 800px;
    margin: auto;
    padding: 250px 50px 180px 50px;
}

    .blog-content p, .blog-content span {
        font-family: 'Roboto', sans-serif !important;
        font-weight: 300 !important;
        color: rgb(37, 40, 42) !important;
        font-size: 16px;
        line-height: 28px;
        font-stretch: extra-expanded !important;
    }

.single-blog-hero .rectangle {
    will-change: transform;
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    max-width: 1000px;
    max-height: 400px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    color: white;
    transition: transform 0.3s ease-in-out;
}

    .single-blog-hero .rectangle::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

.rectangle-inner {
    width: 100%;
    height: 100%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.single-blog-hero .rectangle-inner::before {
    content: '';
    background-size: cover; /* Adjust this based on your design needs */
    opacity: 0.05; /* Setting opacity to 0.1 for the background image */
    background-image: url('/icons/dots_background.svg');
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.prev-next-blog-section {
    height: 150px;
    width: 100%;
    display: flex;
    flex-direction: row;
}

.prev-blog,
.next-blog {
    width: 50%;
    display: flex;
    justify-content: center;
    object-fit: cover;
    object-position: center;
    background-position: center !important;
    background-size: cover !important;
    text-decoration: none;
    transition: transform background-size 0.5s ease, background-size 2s ease; /* Adjust the transition duration and timing function as needed */
}

    .prev-blog:hover,
    .next-blog:hover {
        cursor: pointer;
        background-size: 120% !important;
    }

    .prev-blog h4, .next-blog h4 {
        margin: auto;
        color: white;
    }

.prev-next-blog-titles-section {
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
}

.prev-next-blog-section .arrow {
    height: 30px;
    width: 30px;
    margin: auto;
}

.arrow-prev {
    transform: scaleX(-1);
}

.blog-pinned-articles-section {
    background-color: #F8F4F0;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.pinned-blogs {
    width: 1100px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: auto;
    padding-top: 50px;
}

.pinned-blogs-half {
    width: 50%;
    margin: 10px;
}

.pinned-blog-big img, .pinned-blog-small img {
    max-width: -webkit-fill-available;
    height: 100%;
}

.pinned-blog-small img {
    width: 100%;
}

.pinned-blogs-small {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

    .pinned-blogs-small img {
        object-fit: cover;
    }

.blog-pinned-articles-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 50px;
    padding-bottom: 100px;
    text-align: center;
}

.pinned-blog-title {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) !important;
    text-align: center;
    color: white;
    padding-bottom: 30px;
    height: 100%;
    font-size: 18px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: left;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 30px 20px;
    font-size: 17px;
}

.pinned-blog-big, .pinned-blog-small {
    position: relative;
    transition: transform 0.5s;
}

.pinned-blog-small {
    margin-left: 5px;
    margin-right: 5px;
}

    .pinned-blog-small:hover, .pinned-blog-big:hover {
        transform: translateY(-20px) !important;
    }

.pinned-blog-date {
    font-size: 14px;
}

.pinned-blog-small .selected-categories {
    position: absolute;
    padding-left: 15px;
}

    .pinned-blog-small .selected-categories .btn-light-brown {
        opacity: 0.9;
        margin-right: 5px;
    }

.pinned-blog-big .pinned-blog-title {
    height: unset;
    padding: 20px;
    flex-direction: row;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.pinned-blog-big .pinned-blog-big-category {
    width: 35%;
    font-size: 15px;
}

.pinned-blog-big .pinned-blog-big-title {
    width: 65%;
    text-align: center;
    font-size: 18px;
}

.category-text {
    text-transform: uppercase;
    color: #C49960;
    padding-right: 20px;
    border-right: 1px solid white;
}

.white-bg {
    background: white;
    padding-top: 80px;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.pinned-blog-big-date {
    position: absolute;
    top: 0;
    left: 0;
    color: white;
    margin-top: 15px;
    margin-left: 15px;
    background: white;
    color: black;
    padding: 5px 15px;
}

.pinned-blog-pin-icon {
    position: absolute;
    top: 0;
    right: 0;
    margin-top: 15px;
    margin-right: 15px;
}

.blog-hero-section .line {
    background: white;
}

.blog-hero-section .subtitle-text {
    color: white;
    font-size: 17px;
    font-weight: 400;
}

.pinned-blog-small-screen {
    display: none;
}

/* Responsivity */
@media(max-width: 919.98px) {
    .pinned-blogs {
        align-items: center;
        flex-direction: column;
        max-width: unset;
        width: -webkit-fill-available;
    }

    .pinned-blogs-half {
        padding: 25px;
        width: 100%;
    }

    .blogs .product-item {
        height: unset;
        margin-bottom: 0;
    }

    .blogs .interactive-banners-style-05 {
        flex-direction: column;
        margin-bottom: 20px;
    }

    .selected-categories {
        justify-content: flex-start;
        margin-top: 15px;
    }

        .selected-categories .category-btn {
            margin-right: 5px;
        }

    .all-categories-filter {
        justify-content: center;
    }

    .blog-hero-section .title {
        text-align: center;
    }
}

@media(max-width: 716.98px) {

    .blog-hero-section.product-section-1 .title {
        font-size: 65px !important;
    }

    .blog-hero-section .title-and-subtitle .box {
        padding-top: 30px;
    }

    .blog-hero-section .subtitle-text {
        font-size: 15px;
    }

    .pinned-blog-big .pinned-blog-title {
        padding: 10px;
    }

    .pinned-blog-big .pinned-blog-big-title {
        font-size: 14px;
        padding: 0 10px;
        margin: auto;
    }

    .category-text {
        font-size: 12px;
        margin: auto;
    }

    .selected-categories {
        margin-top: 0;
    }

    .pinned-blogs-small {
        flex-direction: column;
    }

    .pinned-blog-small {
        margin-bottom: 40px;
    }

    #products.blogs {
        padding-top: 0;
    }

    .pinned-blog-big {
        display: none;
    }

    .pinned-blog-small-screen {
        display: flex;
    }

    .pinned-blogs-half {
        padding: 0;
    }

    .pinned-blogs {
        padding-left: 25px;
        padding-right: 25px;
    }

    .products-block a {
        margin-bottom: 0 !important;
    }

    .all-categories-filter {
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 50px;
    }

    .prev-blog h4, .next-blog h4 {
        font-size: 16px;
        font-weight: 400;
        padding: 10px;
    }

    .prev-next-blog-section .arrow {
        margin: auto 10px;
    }

    .single-blog-hero .rectangle {
        max-height: 400px;
    }

    .rectangle-inner {
        padding: 20px;
    }

    .blog-content {
        padding: 250px 30px 180px 30px;
    }
}

/* About us section */
.about-us-section {
    background-size: cover !important;
    /*    background: rgba(134,192,207, 0.65);*/
    background: rgba(130,226,223, 0.1);
    background: #0c3e810a;
    background-image: url('../icons/croatia-outline.svg');
    background-position: center;
    color: #323232;
}

.about-us-img {
    background-size: cover;
    background-position: center;
    height: 100%;
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
}

.about-us-section h1 {
    font-size: 60px;
    color: #F4B942;
    margin-bottom: 30px;
}

/* Reviews */
.reviews {
    text-align: center;
    padding: 100px 50px;
}

    .reviews h3 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .reviews p.subtitle {
        font-size: 1rem;
        color: #888;
        margin-bottom: 40px;
    }

.review-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.review-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: left;
}

    .review-card img {
        border-radius: 50%;
        width: 50px;
        height: 50px;
        object-fit: cover;
    }

    .review-card .reviewer-info {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px;
    }

        .review-card .reviewer-info div {
            text-align: left;
        }

        .review-card .reviewer-info .name {
            font-weight: bold;
        }

        .review-card .reviewer-info .title {
            color: #888;
            font-size: 0.9rem;
        }

    .review-card .review-text {
        margin-bottom: 10px;
    }

    .review-card .review-rating {
        color: #f39c12;
    }

/* Search container */
.search-form {
    display: flex;
    flex-direction: row;
    font-weight: 300;
    font-size: 12px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.autocomplete {
    position: relative;
    display: inline-block;
}

.search-form input {
    background-color: #f1f1f1;
    padding: 10px;
    height: 50px;
    font-size: 14px;
    outline: none !important;
    border: none !important;
}

    .search-form .autocomplete input {
        border-top-left-radius: 15px;
    }

    .search-form input[type=text] {
        background-color: white;
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

.search-form button[type=submit] {
    background-color: #FFC000;
    color: #fff;
    cursor: pointer;
    border-top-right-radius: 15px;
    outline: none !important;
    border: none !important;
    width: 90px;
    font-size: 14px;
    font-weight: 300;
}

.autocomplete-items {
    position: absolute;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/
    top: 100%;
    left: 0;
    width: 100% !important;
    right: 0;
    width: 390px;
}

    .autocomplete-items div {
        padding: 10px;
        cursor: pointer;
        background-color: rgba(255, 255, 255, 0.95);
        color: #323232;
        font-family: 'Poppins';
        font-weight: 300;
        font-size: 14px;
    }

        /*when hovering an item:*/
        .autocomplete-items div:hover {
            background-color: #e9e9e9;
        }

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
    background-color: DodgerBlue !important;
    color: #ffffff;
}

.autocomplete-items div:first-child {
    border: none !important;
}

.autocomplete-items div:last-child {
/*    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;*/
    border: none !important;
}
/* Custom scrollbar for WebKit browsers (Chrome, Safari) */
.autocomplete-items {
    position: absolute;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 170px; /* set max height */
    overflow-y: auto; /* enable vertical scrolling */
    scrollbar-width: thin; /* for Firefox */
    scrollbar-color: #F4B942 #e9e9e9; /* for Firefox */
}

    .autocomplete-items div {
        padding: 10px;
        cursor: pointer;
        background-color: rgba(255, 255, 255, 0.95);
        color: #323232;
        font-family: 'Poppins';
        font-weight: 300;
        font-size: 14px;
    }

        .autocomplete-items div:hover {
            background-color: #e9e9e9;
        }

.autocomplete-active {
    background-color: DodgerBlue !important;
    color: #ffffff;
}

/* Custom scrollbar for WebKit browsers (Chrome, Safari) */
.autocomplete-items::-webkit-scrollbar {
    width: 8px; /* width of the scrollbar */
}

.autocomplete-items::-webkit-scrollbar-thumb {
    background-color: #F4B942; /* color of the scrollbar thumb */
    border-radius: 10px; /* roundness of the scrollbar thumb */
}

.autocomplete-items::-webkit-scrollbar-track {
    background-color: #e9e9e9; /* color of the scrollbar track */
    border-radius: 10px; /* roundness of the scrollbar track */
}

/* Custom scrollbar for Firefox */
.autocomplete-items {
    scrollbar-width: thin;
    scrollbar-color: #F4B942 #e9e9e9;
}

/* All tours */
.all-tours-page {
    margin-top: 150px;
}

/* Contact page */
.contact-section {
    padding: 20px;
    background-color: #fff;
    padding-top: 80px;
    padding-bottom: 80px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-item {
    flex: 1;
    min-width: 300px;
    margin-bottom: 30px;
}

    .contact-item h2,
    .contact-item h3 {
        margin-bottom: 10px;
        color: #333;
    }

    .contact-item p,
    .contact-item a {
        color: #777;
        margin-bottom: 5px;
        text-decoration: none;
    }

        .contact-item a:hover {
            text-decoration: underline;
        }

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .contact-item {
        text-align: center;
    }
}

.contact-us-page.product-section-1 {
    height: 65vh;
}

h1.margin-bottom-0 {
    font-size: 100px;
}

/* About us page */
.clinic-section {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
/*    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
*/    max-width: 1200px;
    margin: auto;
    margin-top: 50px;
    margin-bottom: 50px;
}

.container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.clinic-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
    color: #333;
}

.clinic-description,
.doctor-description {
    text-align: center;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

.images-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

    .images-row img {
        width: 300px;
        height: 200px;
        object-fit: cover;
        border-radius: 8px;
    }

.doctor-title {
    text-align: center;
    font-size: 1.5rem;
    margin-top: 20px;
    color: #333;
}

@media (max-width: 768px) {
    .images-row img {
        width: 100%;
    }
}

.homepage#products {
    padding-top: 50px;
    border-top: 20px solid #FFC000;
    border-bottom: 20px solid #78B6FF;
}


/* About us section */
.about-us-section {
    padding: 2rem 0;
}

.img-section {
    position: relative;
}

.about-us-img {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide-bg {
    width: 100%;
}

.play-circle {
    position: absolute;
    top: 34%;
    left: 38%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    animation: pulse 2s infinite;
}

.play-icon {
    color: white;
    font-size: 24px;
}

.product-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.btn {
    margin-right: 1rem;
}

.btn-primary {
    background-color: #ff5a5f;
    border-color: #ff5a5f;
    color: #fff;
}

.btn-secondary {
    background-color: #555;
    border-color: #555;
    color: #fff;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.point-item {
    display: flex;
    flex-direction: row;
}

.point-item-content {
    padding-top: 5px;
    padding-left: 20px;
}

.point-title {
    font-weight: 600;
}

.btn-about-company {
    margin-top: 40px;
    margin-bottom: 40px;
    background-color: black !important;
    color: white !important;
    border: none !important;
    padding: 8px 35px !important;
    transition: background-color 2s linear, color 2s linear;
}

.btn-discover-tours {
    margin-top: 40px;
    margin-bottom: 40px;
    background-color: white !important;
    color: black !important;
    border: none !important;
    padding: 8px 35px !important;
    transition: background-color 2s linear, color 2s linear;
}

.btn-about-company:hover {
    color: black !important;
    background: white !important;
}

.btn-discover-tours:hover {
    color: white !important;
    background: black !important;
}

#products .product-title {
    font-size: 21px !important;
}

/* Header responsivity */
/* Mobile Navigation */
@media(max-width: 450.98px) {
    .language-popup {
        width: 330px !important;
        padding: 30px !important;
    }
}


/* Info section */

.info-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    background-color: #F2F2F2;
    color: white;
    background-size: cover !important;
    background: rgba(134, 192, 207, 0.3);
    background-image: url('../icons/croatia-outline.svg');
    background-position: center;
    border-top: 20px solid #B5E0FF;
    border-bottom: 20px solid #FBBB01;
    flex-wrap: wrap;
}

.location {
    text-align: left;
}

    .location h2 {
        font-size: 2.5em;
        font-weight: 700;
        color: #323232;
        margin: 0;
        margin-bottom: 15px;
    }

    .location p {
        font-size: 20px;
        color: #323232;
    }

.info-details {
    display: flex;
    flex-direction: row;
    width: 700px;
    justify-content: center;
    margin-top: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    margin: 10px;
    padding: 10px;
    background-color: white;
    border-radius: 8px;
    color: black;
    flex: 1 1 30%;
    max-width: 200px;
    font-weight: 400;
    border: 2px solid #F4B942;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.info-item .text {
    text-align: left;
}

.icon {
    font-size: 2em;
    color: #fab432;
    margin-right: 10px;
}

.text p {
    margin: 0;
    font-size: 0.9em;
    color: gray;
}

.text h2 {
    margin: 0;
    font-size: 1.2em;
}

@media (max-width: 600px) {
    .info-details {
        flex-direction: column;
        align-items: center;
    }

    .info-item {
        max-width: none;
        width: 100%;
    }
}

.bg-yellow {
    background-color: #F4B942;
}

.color-white {
    color: white;
}

.pd-left-30px {
    padding-left: 30px !important;
}


/* Prices section */

.prices-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 80%;
    padding-bottom: 80px;
}

.offer {
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 20px;
    border: 2px solid white;
    width: 240px;
}

.price {
    font-size: 24px;
    font-weight: bold;
    padding: 20px;
    border-radius: 8px;
}

.blue {
    background-color: #00bfff;
    color: white;
}

.yellow {
    background-color: #ffcc00;
    color: white;
}

.red {
    background-color: #ff3300;
    color: white;
}

.description {
    font-size: 18px;
    margin-top: 10px;
}

.details {
    grid-column: span 2;
    display: flex;
    justify-content: start;
    align-items: center;
    width: 300px;
    padding-left: 20px;
}

    .details ul {
        list-style-type: none;
        padding: 0;
        font-size: 18px;
    }

        .details ul li {
            margin: 5px 0;
        }

        .price-container {
            display: flex;
            flex-direction: row;
            justify-content: flex-start;
            margin: 30px;
        }

.prices-section {
    margin-top: 60px;
    border-bottom: 20px solid #FBBB01;
}

.destination-region-with-map-icon {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: start;
    margin-top: 5px;
    font-size: 25px;
    align-items: center;
}

.location p span {
    padding-left: 7px;
}

.hot-yellow-bg {
    background-color: #FFCC00;
}

.map-section iframe {
    border-radius: 15px;
}

.map-section .map-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-bottom: 150px;
}

.map-section {
    border-top: 20px solid #B5E0FF;
    padding-top: 80px;
}

.bg-abstract-blue-and-yellow {
    border-top: 20px solid #FBBB01;
    background: url('../backgrounds/abstract-blue-and-yellow-bg.png');
    object-fit: cover;
    background-size: cover;
    background-position: center;
}

.border-radius-20px {
    border-radius: 20px;
}

.section-2-illustration {
    object-fit: cover;
    background-position: center;
    background-size: cover;
    border-radius: 20px;
}

.font-weight-700 {
    font-weight: 700;
}

.h-3px {
    height: 3px;
}

.itinerary-title {
    margin-bottom: 30px;
}

.margin-bottom-40px {
    margin-bottom: 40px;
}

.margin-bottom-50px {
    margin-bottom: 50px;
}


/* Responsive */

@media (max-width: 1319.98px) {
    .details {
        width: 250px !important;
    }
}

@media (max-width: 1219.98px) {

    .details {
        width: 200px !important;
    }

    .prices-container.container {
        max-width: unset;
        margin: 10px;
    }
}

@media (max-width: 1099.98px) {

    .prices-container.container {
        max-width: unset;
        margin: 10px;
    }

    .price-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 10px;
    }

    .details {
        width: 90% !important;
    }

    .slide-title {
        font-size: 70px;
    }

    .slide-content {
        display: flex;
        flex-direction: column;
        bottom: unset;
        top: 55%;
    }

    .search-form input {
        height: 45px;
    }

    .search-form {
        margin-top: 20px;
        margin-bottom: 10px;
    }
}

@media(max-width: 919.98px) {
    .offer {
        width: 100%;
        padding-right: 5px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .contact-section {
        flex-direction: column;
        justify-content: center;
        padding: 90px 30px;
        text-align: center;
    }

    .offer .price {
        margin-bottom: 15px;
    }

    .details {
        width: 100%;
    }

    .slide-content {
/*        transform: unset;
*/    }
}

@media (max-width: 767.98px) {
    .map-section iframe {
        max-width: 85%;
        margin: 30px;
    }

    .map-section .product-title {
        text-align: center;
    }
}


@media (max-width: 565.98px) {
    .offer .price {
        font-size: 18px;
    }

    .offer .description {
        font-size: 16px;
    }

    .offer .details {
        font-size: 14px;
    }

    .prices-container.container {
        display: flex;
    }

     .discover-tour-btn {
        width: 80%;
    }

    .button-container .round-small-icon {
        margin-right: 0;
    }

    .slide-content .button-container {
        justify-content: space-between;
    }

    .slide-content {
        top: 50%;
    }

    .autocomplete-items {
        max-height: 140px;
    }

    .btn-about-company, .btn-discover-tours {
        margin: 0;
    }

    .play-circle {
        left: 28%;
    }
}

#fullScreenVideo {
    border-radius: 20px;
}

.reviews-section .button-container {
    display: flex;
    justify-content: center;
    padding-bottom: 80px;
    margin-top: 0;
}

    .reviews-section .button-container a:hover {
        color: white !important;
    }

    .reviews-section .button-container a {
        min-width: 200px;
    }

    .no-reviews {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: auto;
        max-width: 300px;
        margin-top: 40px;
        margin-bottom: 20px;
        color: white;
        background: #F4B942;
        padding: 20px;
        border-radius: 10px;
    }

.reviews {
    padding-bottom: 20px;
}

.border-bottom-20px {
    border-bottom: 20px solid #B5E0FF;
}

.contact-us-page {
    background-position: bottom;
}

body {
    overflow-x: hidden;
}