/*
Theme Name: DWB Author: Lukas Novak Version: 1.05
License: GNU General Public License v2 or later
License URI: http: //www.gnu.org/licenses/gpl-2.0.html
*/

@import "https://unpkg.com/open-props";
@import "https://unpkg.com/open-props/normalize.min.css";
@import "https://unpkg.com/open-props/gray-hsl.min.css";
@import "https://unpkg.com/open-props/purple-hsl.min.css";

html {
    /* light */
    --brand-light: var(--orange-6);
    --text-1-light: var(--gray-8);
    --text-2-light: var(--gray-7);
    --surface-1-light: var(--gray-0);
    --surface-2-light: var(--gray-1);
    --surface-3-light: var(--gray-2);
    --surface-4-light: var(--gray-3);
    --surface-shadow-light: var(--gray-8-hsl);
    --shadow-strength-light: 2%;

    /* dark */
    --brand-dark: var(--orange-3);
    --text-1-dark: var(--gray-3);
    --text-2-dark: var(--gray-5);
    --surface-1-dark: var(--gray-12);
    --surface-2-dark: var(--gray-11);
    --surface-3-dark: var(--gray-10);
    --surface-4-dark: var(--gray-9);
    --surface-shadow-dark: var(--gray-12-hsl);
    --shadow-strength-dark: 80%;

    /* dim */
    --brand-dim: var(--orange-4);
    --text-1-dim: var(--gray-3);
    --text-2-dim: var(--gray-4);
    --surface-1-dim: var(--gray-8);
    --surface-2-dim: var(--gray-7);
    --surface-3-dim: var(--gray-6);
    --surface-4-dim: var(--gray-5);
    --surface-shadow-dim: var(--gray-9-hsl);
    --shadow-strength-dim: 20%;

    /* grape */
    --brand-grape: var(--purple-5);
    --text-1-grape: var(--purple-9);
    --text-2-grape: var(--purple-7);
    --surface-1-grape: var(--purple-0);
    --surface-2-grape: var(--purple-1);
    --surface-3-grape: var(--purple-2);
    --surface-4-grape: var(--purple-3);
    --surface-shadow-grape: var(--purple-12-hsl);
    --shadow-strength-grape: 2%;
}

:root {
    color-scheme: dark;

    --brand: var(--brand-dark);
    --text-1: var(--text-1-dark);
    --text-2: var(--text-2-dark);
    --surface-1: var(--surface-1-dark);
    --surface-2: var(--surface-2-dark);
    --surface-3: var(--surface-3-dark);
    --surface-4: var(--surface-4-dark);
    --surface-shadow: var(--surface-shadow-dark);
    --shadow-strength: var(--shadow-strength-dark);

}

/*@media (prefers-color-scheme: light) {*/
/*    :root {*/
/*        color-scheme: light;*/

/* set defaults */
/*        --brand: var(--brand-light);*/
/*        --text-1: var(--text-1-light);*/
/*        --text-2: var(--text-2-light);*/
/*        --surface-1: var(--surface-1-light);*/
/*        --surface-2: var(--surface-2-light);*/
/*        --surface-3: var(--surface-3-light);*/
/*        --surface-4: var(--surface-4-light);*/
/*        --surface-shadow: var(--surface-shadow-light);*/
/*        --shadow-strength: var(--shadow-strength-light);*/
/*        --brand-bg-gradient: linear-gradient(to bottom, var(--purple-3), var(--violet-3), var(--indigo-3), var(--cyan-3));*/
/*    }*/
/*}*/

[color-scheme="light"] {
    color-scheme: light;

    --brand: var(--brand-light);
    --text-1: var(--text-1-light);
    --text-2: var(--text-2-light);
    --surface-1: var(--surface-1-light);
    --surface-2: var(--surface-2-light);
    --surface-3: var(--surface-3-light);
    --surface-4: var(--surface-4-light);
    --surface-shadow: var(--surface-shadow-light);
    --shadow-strength: var(--shadow-strength-light);
}

[color-scheme="dark"] {
    color-scheme: dark;

    --brand: var(--brand-dark);
    --text-1: var(--text-1-dark);
    --text-2: var(--text-2-dark);
    --surface-1: var(--surface-1-dark);
    --surface-2: var(--surface-2-dark);
    --surface-3: var(--surface-3-dark);
    --surface-4: var(--surface-4-dark);
    --surface-shadow: var(--surface-shadow-dark);
    --shadow-strength: var(--shadow-strength-dark);
}

[color-scheme="dim"] {
    color-scheme: dark;

    --brand: var(--brand-dim);
    --text-1: var(--text-1-dim);
    --text-2: var(--text-2-dim);
    --surface-1: var(--surface-1-dim);
    --surface-2: var(--surface-2-dim);
    --surface-3: var(--surface-3-dim);
    --surface-4: var(--surface-4-dim);
    --surface-shadow: var(--surface-shadow-dim);
    --shadow-strength: var(--shadow-strength-dim);
}

[color-scheme="grape"] {
    color-scheme: light;

    --brand: var(--brand-grape);
    --text-1: var(--text-1-grape);
    --text-2: var(--text-2-grape);
    --surface-1: var(--surface-1-grape);
    --surface-2: var(--surface-2-grape);
    --surface-3: var(--surface-3-grape);
    --surface-4: var(--surface-4-grape);
    --surface-shadow: var(--surface-shadow-grape);
    --shadow-strength: var(--shadow-strength-grape);
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    height: 100%;
    background-color: var(--gray-0);
    background-color: var(--surface-1);
    color: var(--gray-8);
    color: var(--text-1);
    accent-color: var(--orange-6);
    accent-color: var(--brand);
}

body {
    min-height: 100%;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif;
    padding: var(--size-6);
    display: flex;
}

#page {
    width: 100%;
    overflow-y: hidden;
}

section {
    display: flex;
    gap: var(--size-6);
}

h1,
.carousel-section h2 {
    font-weight: var(--font-weight-1);
}

p {
    max-width: var(--size-content-1);
    font-size: var(--font-size-4);
    line-height: var(--font-lineheight-3);
}

header {
    display: inline-grid;
    grid-gap: var(--size-3);
    gap: var(--size-3);
}

form {
    display: flex;
    grid-gap: var(--size-5);
    gap: var(--size-5)
}

form>div {
    display: inline-flex;
    align-items: center;
    grid-gap: var(--size-2);
    gap: var(--size-2);
}

.surface-samples {
    display: grid;
    --size: var(--size-content-1);
    grid-template-columns: var(--size) var(--size);
    grid-auto-rows: var(--size);
    grid-gap: var(--size-5);
    gap: var(--size-5)
}


button.primary {
    background: var(--gradient-1) fixed;
    background-size: 340px;
    color: var(--gray-0);
}

button.primary:hover {
    background-size: 500px;
}

.primary .text,
.secondary .text {
    display: block;
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 1.4rem;
    text-transform: uppercase;
    padding-left: 5px;
}

.secondary .text,
.carousel-item .hoverContent button span {
    background: var(--gradient-1) fixed;
    background-size: var(--size-relative-13) var(--size-relative-11);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero_slider_video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}


.carousel-item .overlay.flip {
    -webkit-animation: swing-top-fwd 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: swing-top-fwd 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@-webkit-keyframes swing-top-fwd {
0% {
        -webkit-transform: rotateX(0);
        transform: rotateX(0);
        -webkit-transform-origin: top;
        transform-origin: top;
    }
  100% {
      -webkit-transform: rotateX(180deg);
      transform: rotateX(180deg);
      -webkit-transform-origin: top;
      transform-origin: top;
  }
}
@keyframes swing-top-fwd {
0% {
        -webkit-transform: rotateX(0);
        transform: rotateX(0);
        -webkit-transform-origin: top;
        transform-origin: top;
    }
  100% {
      -webkit-transform: rotateX(180deg);
      transform: rotateX(180deg);
      -webkit-transform-origin: top;
      transform-origin: top;
  }
}

.secondary:hover {
    background: #ffffffa6;
}

button {
    background: white;
    padding-inline: var(--size-8);
    padding-block: var(--size-3);
    border-radius: var(--radius-2);
    box-shadow: var(--shadow-2);
}

.category a {
    padding: 5px 20px;
    background: var(--surface-1);
    border-radius: var(--radius-3);
    font-weight: 800;
    color: var(--text-1);
    text-transform: uppercase;
    display: inline-block;
}


.p-0 {
    padding: 0 !important;
}

.p-1 {
    padding: var(--size-fluid-1) !important;
}

.p-2 {
    padding: var(--size-fluid-2) !important;
}

.p-3 {
    padding: var(--size-fluid-3) !important;
}

.pl-3 {
    padding-left: var(--size-fluid-3) !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.pt-1 {
    padding-top: var(--size-fluid-1) !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: var(--size-fluid-1) !important;
}

.mb-3 {
    margin-bottom: var(--size-fluid-3) !important;
}

.ml-3 {
    margin-left: var(--size-fluid-3) !important;
}

.mb-5 {
    margin-bottom: var(--size-fluid-5) !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: var(--size-fluid-1) !important;
}

.mt-3 {
    margin-top: var(--size-fluid-3) !important;
}

.mt-5 {
    margin-top: var(--size-fluid-5) !important;
}

.relative {
    position: relative;
}

.flex {
    display: flex;
}

.flex-none {
    flex: none;
}

.block {
    display: block;
}

.space-x-4> :not([hidden])~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(1rem * var(--tw-space-x-reverse));
    margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}

.scroll-smooth {
    scroll-behavior: smooth;
}

.overflow-x-scroll {
    overflow-x: scroll;
}

.w-48 {
    width: 12rem;
}

@media (min-width: 768px) {
    .md\:w-56 {
        width: 14rem;
    }
}

@media (min-width: 1024px) {
    .lg\:w-64 {
        width: 16rem;
    }
}

@media (max-width: 480px) {
    .surface-samples {
        --size: 40vw;
    }
}

.surface-samples>* {
    border-radius: var(--radius-3);
    display: grid;
    align-content: center;
    justify-content: center;
    place-content: center;
    font-size: var(--font-size-8);
    font-weight: var(--font-weight-2);
}

.text-samples {
    display: grid;
    grid-gap: var(--size-4);
    gap: var(--size-4)
}

.text-samples>h1 {
    font-size: var(--font-size-6);
    display: inline-flex;
    align-items: center;
    grid-gap: var(--size-3);
    gap: var(--size-3);
}

.brand {
    color: var(--orange-6);
    color: var(--brand);
    background-color: var(--orange-6);
    background-color: var(--brand);
}

.surface-1 {
    background-color: var(--gray-0);
    background-color: var(--surface-1);
    color: var(--gray-7);
    color: var(--text-2);
}

.surface-2 {
    background-color: var(--gray-1);
    background-color: var(--surface-2);
    color: var(--gray-7);
    color: var(--text-2);
}

.surface-3 {
    background-color: var(--gray-2);
    background-color: var(--surface-3);
    color: var(--gray-8);
    color: var(--text-1);
}

.surface-4 {
    background-color: var(--gray-3);
    background-color: var(--surface-4);
    color: var(--gray-8);
    color: var(--text-1);
}

.text-1 {
    color: var(--gray-8);
    color: var(--text-1)
}

p.text-1 {
    font-weight: var(--font-weight-2)
}

.text-2 {
    color: var(--gray-7);
    color: var(--text-2);
}

.swatch {
    display: inline-block;
    flex-shrink: 0;
    width: var(--size-8);
    height: var(--size-8);
    border-radius: var(--radius-round)
}

.swatch.text-1 {
    background-color: var(--gray-8);
    background-color: var(--text-1);
}

.swatch.text-2 {
    background-color: var(--gray-7);
    background-color: var(--text-2);
}

.rad-shadow {
    border: 1px solid hsl(var(--brand-hue) 10% 50% / 15%);
    box-shadow: 0 1rem .5rem -.5rem;
    box-shadow:
        0 2.8px 2.2px hsl(var(--gray-8-hsl) / calc(2% + 3%)),
        0 6.7px 5.3px hsl(var(--gray-8-hsl) / calc(2% + 1%)),
        0 12.5px 10px hsl(var(--gray-8-hsl) / calc(2% + 2%)),
        0 22.3px 17.9px hsl(var(--gray-8-hsl) / calc(2% + 2%)),
        0 41.8px 33.4px hsl(var(--gray-8-hsl) / calc(2% + 3%)),
        0 100px 80px hsl(var(--gray-8-hsl) / 2%);
    box-shadow:
        0 2.8px 2.2px hsl(var(--surface-shadow) / calc(var(--shadow-strength) + 3%)),
        0 6.7px 5.3px hsl(var(--surface-shadow) / calc(var(--shadow-strength) + 1%)),
        0 12.5px 10px hsl(var(--surface-shadow) / calc(var(--shadow-strength) + 2%)),
        0 22.3px 17.9px hsl(var(--surface-shadow) / calc(var(--shadow-strength) + 2%)),
        0 41.8px 33.4px hsl(var(--surface-shadow) / calc(var(--shadow-strength) + 3%)),
        0 100px 80px hsl(var(--surface-shadow) / var(--shadow-strength));
}


/*start of hero image styling*/
.hero_video,
.hero iframe {
    position: absolute;
    /*top: 50%;*/
    /*left: 50%;*/
    /*transform: translate(-50%, -50%);*/
    width: 100vw;
    height: 56.25vw;
    /* 9/16*100 = 56.25 */
    min-height: 100vh;
    min-width: 177.77vh;
    /* 16/9*100 = 177.77 */
}

.hero iframe {
    opacity: 0;
}

.hero iframe.loaded {
    opacity: 1;
}

.hero_content {
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: self-start;
    justify-content: end;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 1rem;
}

.hero_content .buttons {
    display: flex;
    column-gap: 1rem;
}

.hero_video.widescreen {
    margin-top: -7%;
}

.hero_content .description {
    color: #fff;
    /*font-weight: 400;*/
    line-height: normal;
    max-width: 500px;
    /*font-size: 0.8vw;*/
    text-shadow: 2px 2px 4px rgb(0 0 0 / 45%);
}

.hero_content_title {
    color: #fff;
    text-shadow: 2px 2px 4px rgb(0 0 0 / 45%);
    font-family: Georgia, Times, Times New Roman, serif;
    font-size: clamp(1.5rem, 5vw, 3.25rem);
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.375em;
    font-weight: bold;
    margin-bottom: 2.625rem;
    line-height: 1;
    max-width: 800px;
}

.hero:before {
    display: block;
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 1;
    z-index: 1;
}

.hero:after {
    display: block;
    content: " ";
    background-image: linear-gradient(180deg, hsla(0, 0%, 8%, 0) 0, hsla(0, 0%, 8%, .15) 15%, hsla(0, 0%, 8%, .35) 29%, hsla(0, 0%, 8%, .58) 44%, #141414 68%, var(--surface-1));
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    background-size: 100% 100%;
    background-position: 0 top;
    background-repeat: repeat-x;
    background-color: transparent;
    width: 100%;
    height: 9vw;
    opacity: 1;
    position: absolute;
    bottom: 0;
    z-index: 1;
    left: 0;
}

.hero_gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(75deg, rgba(0, 0, 0, .6), transparent 85%);
    top: 0;
    left: 0;
    right: 25%;
    z-index: 2;
    transition: opacity .5s;
}

/*.hero_content_title, .place_type, .dwb-modal-overlay  h2 {*/
/*    -webkit-animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;*/
/*    animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;*/
/*}*/


.hero.flip:before {
    -webkit-animation: swing-top-fwd 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: swing-top-fwd 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.hero.playing:before {
    opacity: 0;
}

.hero.no-before {
    height: 540px !important;
}

.hero.no-before .hero_gradient {
    opacity: 0.2;
}

.hero.playing .hero_gradient {
    opacity: 0.4;
}

.hero,
.hero_content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.hero {
    overflow: hidden;
    background-size: cover;
    background: white;
    min-height: 590px;
}

.hero_content {
    bottom: 5rem;
}

.dwb-modal-overlay .hero_content {
    bottom: 0;
}

.dwb-modal-overlay .hero,
.dwb-modal-overlay .hero iframe,
.modal-hero {
    height: 534px;
    min-width: auto;
    min-height: auto;
    width: 100%;
}

.dwb-modal-overlay .showModal {
    display: none;
}

.dwb-modal-overlay .hero_content_title {
    font-size: clamp(1.3rem, 5vw, 2.75rem);
}

.modal-body .hero {
    border-radius: 10px;
    position: relative;
}

.modal-body .hero.no-before:before {
    display: none;
}

.modal-body .hero.no-before .resize {
    transform-origin: left bottom;
    transform: scale(0.6) translate3d(0px, 0px, 0px);
    transition-duration: 1300ms;
    transition-delay: 1000ms;
}

.modal-body .hero.no-before .hero_content_title {
    font-size: clamp(1.5rem, 5vw, 2.25rem);
}

.modal-body .hero .hero_content_title {
    width: 610px;
    font-size: clamp(1.5rem, 5vw, 3.15rem);
}

.modal-body .hero.playing .hero_content_title {
    width: 840px;
}

.fluid-width-video-wrapper {
    background: black;
}


@media (max-width: 1600px) {

    .hero_content .description {
        font-size: 1.5vw;
    }
}


@media (max-width: 768px) {

    button {
        padding-inline: var(--size-2);
    }

    .hero_video,
    .hero iframe {
        left: -60vh
    }

    .dwb-modal-inner-content .hero_video,
    .dwb-modal-inner-content .hero iframe {
        left: 0;
    }

    .dwb-modal-overlay .hero,
        .dwb-modal-overlay .hero iframe,
        .modal-hero {
        height: 219px;
    }

    .fluid-width-video-wrapper {
        height: 100%;
    }

    .hero_content_title {
        width: 100% !important;
        margin-bottom: 1rem;
    }

    .hero_content .description {
        font-size: 16px;
    }

    .hero_gradient {
        background: linear-gradient(75deg, rgba(0, 0, 0, 1), transparent 85%);
    }

    .hero.playing .resize {
        margin-top: 50px;
    }

    .hero {
        background: black;
        height: 90%;

    }

    /*end of hero image styling*/
}

/* Closing brace for @media (max-width: 768px) */

/* Header Styles */
#main-header {
    position: relative;
    z-index: 10;
    overflow: hidden;
}

#et-top-navigation {
    padding: 0 0 0 30px !important;
}

#main-header>.container {
    display: flex;
    justify-content: start;
    align-items: center;
}

.logo_container {
    flex-shrink: 0;
}

#logo {
    max-height: 90px;
    width: auto;
    display: block;
}

#et-top-navigation {
    display: flex;
    align-items: center;
    padding: 0 0 0 50px !important;
    min-width: 92vw;
    justify-content: space-between;
}

#top-menu-nav ul#top-menu {
    list-style: none;
    display: flex;
    padding-left: 0;
    margin: 0;
}

#top-menu-nav ul#top-menu>li {
    margin-left: 15px;
}

#top-menu-nav ul#top-menu>li:first-child {
    margin-left: 0;
}

#top-menu-nav ul#top-menu a {
    text-decoration: none;
    color: var(--wp--preset--color--white);
    padding: 5px 10px;
    display: block;
}

.et_search_outer {
    display: none;
}

/* End Header Styles */

/* Start of carousel styles */
.carousel-section {
    z-index: 10;
}

/* Hide scrollbar for aesthetic purposes, but allow scrolling */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

/* Custom hover effect for carousel items */
.carousel-item {
    transition: transform 0.3s ease-in-out, z-index 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border-radius: 0.5rem;
    overflow: hidden;
}

.carousel-item:hover {
    transform: scale(1.5);
    z-index: 10;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
}

.carousel-item:first-child {
    /* Define what properties will transition and their duration */
    transition: left 0.3s ease-in-out;
    /* Example: transition 'left' over 0.3 seconds */
    left: 0;
    /* Initial state, important for the transition to work */
}

.carousel-item:first-child:hover {
    left: 66px;
    /* Apply a delay before the transition starts on hover */
    transition-delay: 0.5s;
    /* Example: wait 0.5 seconds before moving */
}

.carousel-item img {
    border-radius: 0.5rem;
}

/* Styling for the carousel arrows */
.carousel-arrow {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 1.5rem;
    width: 3rem;
    height: 191px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    position: absolute;
    top: 0;
    z-index: 5;
    border-radius: 0.5rem;
    margin: 6rem 0;
}

.carousel-wrapper:hover .carousel-arrow {
    opacity: 1;
    /* Show arrows on hover of the wrapper */
}

.carousel-arrow.left {
    left: 0;
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
}

.carousel-arrow.right {
    right: 0;
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

.carousel-arrow:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.carousel {
    padding: 6rem 0;
    margin: -4rem 0;
    height: 371px;
}

.carousel-item .thumbs {
    position: absolute;
    bottom: 50px;
    right: 0;
    color: black;
    width: 120px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    background: rgb(255 255 255 / 80%);
    padding: 8px;
    border-radius: 5px;
    margin-right: 5px;
}

.carousel-item .thumbs .title {
    padding-right: 10px;
    text-shadow: 2px 2px 4px rgb(0 0 0 / 45%);
    font-size: 13px;
    padding-bottom: 5px;
}

.carousel-item .thumbs .img {
    width: 50px;
    height: 40px;
    background-size: cover;
}

.carousel-item .thumbs ul {
    list-style: none;
    display: flex;
    padding: 0;
    column-gap: 4px;
}

.carousel-item .overlay.flip {
    -webkit-animation: swing-top-fwd 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: swing-top-fwd 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.carousel-item .rounded:before,
.carousel-item .overlay:before {
    display: block;
    position: absolute;
    content: " ";
    width: 100%;
    height: 80%;
    background: linear-gradient(75deg, rgba(0, 0, 0, .6), transparent 85%);
    top: 0;
    left: 0;
    border-radius: 5px;
}

.carousel .content::-webkit-scrollbar,
.carousel .carousel-item .hoverContent,
.carousel .carousel-item:hover .rounded:before,
.carousel-item .overlay,
.carousel-item .quote,
.carousel-item:hover .thumbs,
.carousel .carousel-item:hover .subtitle {
    display: none;
}

.carousel-item .titles {
    display: none;
}

.carousel-item:hover .place_type--no-link {
    background: none;
    display: none;
    color: white;
    font-size: 8px;
    padding: 0;
    font-family: "Open Sans", Arial, sans-serif;
    -webkit-animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
    animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}

@media (min-width: 769px) {
    .carousel .carousel-card.first:hover {
        transform: translateX(100px) translateY(0px) scaleX(1.4) scaleY(1.7) translateZ(0px);
    }

    .carousel-item:hover .place_type--no-link {
        display: block;
    }

    .carousel-item:hover .progress {
        display: block;
    }

    .carousel-item:hover .rounded:before,
    .carousel-item:hover .overlay:before {
        height: 100%;
    }

    .carousel-item:hover .overlay,
    .carousel-item:hover:before {
        display: block;
        position: absolute;
        content: " ";
        width: 100%;
        height: 80%;
        top: 0;
        left: 0;
        z-index: 2;
        background-size: cover;
        border-radius: 5px;
        border-bottom-left-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
        background-position: center;
        background-repeat: no-repeat;
    }
    
        .carousel-item:hover:before {
            background: linear-gradient(75deg, rgba(0, 0, 0, .6), transparent 85%);
            z-index: 20;
    }

    .carousel .carousel-item:hover h2 {
        transform: scale(0.5);
        transition: transform .5s cubic-bezier(.5, 0, .1, 1) 0s;
        /*width: 200%;*/
        height: 100%;
        transform-origin: left center;
            padding-left: 3rem;
        top: 4px;
        -webkit-animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
        animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
        z-index: 22;
    }

    .carousel .carousel-item:hover .hoverContent {
        display: flex;
        background: black;
        color: white;
        height: 20%;
        padding: 5px 15px;
        align-items: center;
    }

    .carousel .carousel-item:hover .rounded {
        height: 80%;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
        transform: scaleX(1.4);
        transition: transform .5s cubic-bezier(.5, 0, .1, 1) 0s;
    }
        .carousel-item:hover .rounded:before,
        .carousel-item:hover .overlay:before {
            z-index: 20;
        }
}

.carousel-item .buttons .tooltip:after {
    bottom: 30px;
}

.carousel-item .length {
    border: 1px solid white;
    overflow: hidden;
    padding: 0 0.2em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.carousel-item .hoverContent .buttons {
    justify-content: center;
    width: 100%;
    column-gap: 1rem;
}

.carousel-item .hoverContent button {
    padding-inline: var(--size-3);
    padding-block: var(--size-2);
    color: var(--gray-0);
    text-transform: uppercase;
    font-size: 0.6rem;
    font-weight: bold;
    line-height: 1.1;
}

.carousel-item .hoverContent button:hover {
    opacity: 0.9;
}

.carousel-item .place_type--no-link {
    position: absolute;
    opacity: 0;
    top: 67%;
    z-index: 2;
    font-size: 50%;
    height: 30px;
    padding: 4px 8px;
    height: 13px;
    line-height: 1;
    left: 8px;
}

.carousel-item h2 {
    position: absolute;
    top: 0;
    height: 100%;
    display: flex;
    align-items: end;
    padding-left: 1rem;
    padding-right: 1rem;
    color: white;
    font-weight: 900;
    font-size: 30px;
    text-shadow: 2px 2px 4px rgb(0 0 0 / 45%);
    opacity: 0.8;
    height: 80%;
    z-index: 4;
}

.carousel .carousel-item img {
    border-radius: 5px;
    width: 100%;
}

.carousel .rounded {
    width: 100%;
    height: 80%;
    background-size: cover;
    border-radius: 5px;
    background-position: center;
    background-repeat: no-repeat;
}


@media (max-width: 1920px) {


    .carousel-item:hover .quote {
        font-size: 1.6vw;
    }

    .carousel-card.multiple:hover .quote {
        top: -20px;
    }

    .carousel-card.multiple .place_type--no-link {
        top: 55%;
    }

    .carousel-item h2 {
        font-size: 22px;
    }

}

@media (max-width: 768px) {
    .carousel .carousel-item {
        width: 50%;
    }

    .carousel-item h2 {
        font-size: 15px;
    }
}


@media (min-width: 769px) {


    .carousel-item:hover .place_type--no-link {
        display: block;
    }

    .carousel-item:hover .rounded:before,
    .carousel-item:hover .overlay:before {
        height: 100%;
    }

        /*.carousel-item:hover .overlay,*/
        /*.carousel-item:hover:before {*/
        /*    display: block;*/
        /*    position: absolute;*/
        /* content: " "; */
    /*    width: 100%;*/
    /*    height: 80%;*/
        /*    top: 0;*/
        /*    left: 0;*/
        /*    z-index: 2;*/
        /*    background-size: cover;*/
        /*    border-radius: 5px;*/
        /*    border-bottom-left-radius: 0 !important;*/
        /*    border-bottom-right-radius: 0 !important;*/
        /*    background-position: center;*/
        /*    background-repeat: no-repeat;*/
        /*}*/

    .carousel-item:hover .quote {
        position: absolute;
        z-index: 22;
        transform: scale(0.5);
        transition: transform .5s cubic-bezier(.5, 0, .1, 1) 0s;
        width: 200%;
        left: -50%;
        top: 0;
        display: flex;
        color: white;
        padding-left: 1rem;
        padding-right: 1rem;
        font-size: clamp(1.3rem, 1vw, 1.65rem);
        text-align: center;
        font-weight: 900;
        /*background: linear-gradient(75deg,rgba(0,0,0,.6),transparent 150%);*/
        height: 80%;
        text-shadow: 2px 2px 4px rgb(0 0 0 / 45%);
        align-items: center;
        line-height: 1;
    }

    .carousel .carousel-item:hover .hoverContent {
        display: flex;
        background: black;
        color: white;
        height: 20%;
        padding: 5px 15px;
        align-items: center;
    }

    .carousel .carousel-item:hover .rounded {
        height: 80%;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
        transform: scaleX(1.4);
        transition: transform .5s cubic-bezier(.5, 0, .1, 1) 0s;
    }
}

/* End of carousel styles */