@font-face {
    font-display: swap;
    font-family: 'Century Gothic Paneuropean';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/Century/CenturyGothicPaneuropeanRegular.ttf') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Century Gothic Paneuropean';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/Century/CenturyGothicPaneuropeanSemiBold.ttf') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Century Gothic Paneuropean';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/Century/CenturyGothicPaneuropeanSemiBold.ttf') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Century Gothic Paneuropean';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/Century/CenturyGothicPaneuropeanBold.ttf') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Abril Fatface';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/AbrilFatface/AbrilFatface-Regular.ttf') format('woff2');
}

/***************************
// Default Styles
***************************/
/** {*/
/*    margin: 0;*/
/*    padding: 0;*/
/*    box-sizing: border-box;*/
/*}*/

:root {
    --font-CenturyGothicPaneuropean: 'Century Gothic Paneuropean', sans-serif;
    --font-AbrilFatface: 'Abril Fatface', sans-serif;
    --font-inter: 'Inter', sans-serif;

    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-black-1E1E1E: #1E1E1E;
    --color-blue-00356A: #00356A;
    --color-dark-pink: #DA3454;
    --color-light-pink: #F2758C;
}

body {
    letter-spacing: 0;
    font-family: var(--font-CenturyGothicPaneuropean);
}

@media (min-width: 3840px) {
    html {
        font-size: calc(0.5vw + 0.5vh + 0.25vmin);
    }
}

html,
body {
    overflow: visible !important;
}

a {
    text-decoration: none;
    color: inherit;
}

/*p,*/
/*h1,*/
/*h2,*/
/*h3,*/
/*h4,*/
/*h5,*/
/*h6 {*/
/*    margin-bottom: 0;*/
/*}*/

.font-size-96 * {
    font-size: 6rem !important;
    /* 96px */
}

.font-size-64 * {
    font-size: 4rem !important;
    /* 64px */
}

.font-size-48 * {
    font-size: 3rem !important;
    /* 48px */
}

.font-size-40 * {
    font-size: 2.5rem !important;
    /* 40px */
}

.font-size-32 * {
    font-size: 2rem !important;
    /* 32px */
}

.font-size-24 * {
    font-size: 1.5rem !important;
    /* 24px */
}

.font-size-20 * {
    font-size: 1.25rem !important;
    /* 20px */
}

.font-size-18 * {
    font-size: 1.125rem !important;
    /* 18px */
}

.font-size-16 * {
    font-size: 1rem !important;
    /* 16px */
}

.font-size-11 * {
    font-size: 0.6875rem !important;
    /* 11px */
}

.header .font-size-10 * {
    font-size: 0.625rem !important;
    /* 13px */
}


/***************************
// End Default Styles
***************************/

/***************************
// Buttons
***************************/
.btn.btn-transparent-white-text {
    font-family: var(--font-CenturyGothicPaneuropean);
    /*Century Gothic Std*/
    font-weight: 700;
    line-height: 130%;
    letter-spacing: 0;
    color: var(--color-white);
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
}

.btn.btn-transparent-white-text:hover {
    color: #d3d3d3;
}

.btn.btn-transparent-blue {
    font-family: var(--font-CenturyGothicPaneuropean);
    font-weight: 700;
    line-height: 130%;
    text-align: center;
    vertical-align: middle;
    color: var(--color-blue-00356A);
    border-radius: 0.625rem;
    padding: 1.125rem 3.75rem;
    gap: 0.625rem;
    border: 0.125rem solid var(--color-blue-00356A);
}

.btn.btn-transparent-blue:hover {
    background-color: var(--color-blue-00356A);
    color: var(--color-white);
}

.btn.btn-transparent-white {
    font-family: var(--font-CenturyGothicPaneuropean);
    font-weight: 700;
    line-height: 130%;
    vertical-align: middle;
    color: var(--color-white);
    border-radius: 0.625rem;
    gap: 0.625rem;
    padding: 1.125rem 3.75rem;
    border: 0.125rem solid var(--color-white);
}

.btn.btn-transparent-white:hover {
    background-color: var(--color-white);
    color: var(--color-blue-00356A) !important;
}

.btn.btn-blue-pink-arrow {
    width: 9.625rem;
    height: 3rem;
    gap: 0.625rem;
    border-radius: 0.125rem;
    padding: 0.5625rem;
    border: 0.125rem solid var(--color-white);
    font-family: var(--font-CenturyGothicPaneuropean);
    font-weight: 700;
    line-height: 130%;
    text-transform: uppercase;
    color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn.btn-blue-pink-arrow:hover {
    background-color: var(--color-white);
    color: var(--color-blue-00356A);
}

.btn.btn-transparent-dark-text {
    font-family: var(--font-CenturyGothicPaneuropean);
    font-weight: 700;
    line-height: 130%;
    vertical-align: middle;
    color: var(--color-black-1E1E1E);
    border-radius: 0.625rem;
    gap: 0.625rem;
    padding: 1rem 1rem 1rem 0;
}

.btn.btn-transparent-dark-text:hover {
    color: #494949;
}

.btn img {
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.btn:hover img {
    transform: translateX(0.375rem);
    transition: transform 0.3s ease;
}

/***************************
// End Buttons
***************************/

/***************************
// Header
***************************/

.header {
    background-color: #1B1B1B;
    color: var(--color-white);
    height: 1.875rem;
    display: flex;
    align-items: center;
}

.header p {
    font-weight: 400;
    line-height: 130%;
    vertical-align: middle;
    text-transform: uppercase;
}

.header a {
    color: var(--color-white);
    text-decoration: none;
}

.header-social-icons img {
    width: 0.9375rem;
    height: 0.9375rem;
    margin-left: 0.625rem;
}

/***************************
// End Header
***************************/

/***************************
// Hero header
***************************/
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    max-height: 100vh;
}

.hero-video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 850;
    overflow: hidden;
    line-height: 0;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: opacity 1s ease-in-out;
    z-index: 1;
    pointer-events: none;
}

#heroVideo2 {
    opacity: 0;
    z-index: 2;
}

.hero::before {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    transition: background 0.5s ease-in-out;
}

.hero.faded::before {
    background: rgba(0, 0, 0, 0);
    /* vagy 0.1, ha kell enyhe overlay */
}


@media (min-width: 768px) {
    .hero.faded::before {
        background: rgba(0, 0, 0, 0.1);
    }
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 100%;
    text-align: center;
    color: #fff;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

@keyframes hideContent {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.hero.animated .hero-content {
    animation: hideContent 0.5s ease-in-out 1.5s forwards;
}

.hero .hero-content h1,
.hero .hero-content h3 {
    font-family: var(--font-CenturyGothicPaneuropean);
    text-shadow: 0.125rem 0.125rem 0.25rem rgba(0, 0, 0, 0.5);
    text-align: center;
}

.hero .hero-content h1 {
    font-weight: 800;
    line-height: 160%;
}

.hero .hero-content h3 {
    font-weight: 400;
    line-height: 130%;
    text-transform: uppercase;
}

.hero .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.hero .logo img {
    height: 3.625rem;
    width: auto;
}

/* Kis hero szakasz – ha kell */
.hero-little {
    position: relative;
    width: 100%;
    height: 16.5625rem;
    background: url("../images/hero-bg.webp") center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-little::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 30, 41, 0.62), rgba(0, 30, 41, 0.62));
    z-index: 1;
}

.hero-little h2 {
    position: relative;
    z-index: 2;
    font-weight: 700;
    line-height: 150%;
    text-align: center;
    color: #FCFCFC;
}

/***************************
// End Hero header
***************************/

/***************************
// Sticky header
***************************/

.sticky-header {
    background-color: var(--color-blue-00356A);
    z-index: 1000;
    padding: 0.625rem 1.25rem;
    /*height: 128px;*/
}

.sticky-header.fixed-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
}

.header-nav #langBtn img,
.sticky-header #langBtn img {
    width: 1.875rem;
    /* 30px */
    height: 1.25rem;
    /* 20px */
    margin-right: 0.2rem;
}

#langBtn {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.header-nav .lang-arrow,
.sticky-header .lang-arrow {
    width: 0.9375rem !important;
    height: 0.9375rem !important;
}

.sticky-header .logo {
    height: 6.0625rem;
    /* 97px */
    width: auto;
}

.sticky-header .menu-toggle {
    background-color: transparent;
    color: var(--color-white);
    border: none;
    width: 2.1875rem;
    height: 2.1875rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sticky-header .lang-selector {
    color: var(--color-white);
    font-weight: bold;
}

.sticky-header .dropdown-menu-lang {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--color-white);
    list-style: none;
    margin: 0;
    padding: 0.5rem 0.5rem;
    z-index: 1000;
    min-width: 6.25rem;
    border-radius: 0;
    border: none;
}

.sticky-header .dropdown-menu-lang li {
    padding: 0.3125rem 0.9375rem;
}

.sticky-header .dropdown-menu-lang li a {
    font-family: var(--font-CenturyGothicPaneuropean);
    color: var(--color-blue-00356A);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.header-nav .dropdown-menu-lang li a.current,
.sticky-header .dropdown-menu-lang li a.current {
    font-weight: 800;
    color: var(--color-black-1E1E1E);
}

.sticky-header .dropdown-menu-lang li img {
    width: 1.25rem;
    height: 0.8125rem;
    margin-right: 0.625rem;
}

.sticky-header .dropdown-menu-lang.show {
    display: block;
}

/*Dropdown menu*/
.sticky-header .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--color-white);
    list-style: none;
    margin: 0;
    padding: 1rem 0.5rem;
    z-index: 1000;
    min-width: 13rem;
    border-radius: 0;
    border: none;
    overflow-y: scroll;
    max-height: 80vh;
}

.sticky-header .dropdown-menu li {
    padding: 0.3125rem 0.9375rem;
}

.sticky-header .dropdown-menu li a {
    font-family: var(--font-CenturyGothicPaneuropean);
    color: var(--color-blue-00356A);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.sticky-header .dropdown-menu li a:hover {
    color: #0053a7;
}

.sticky-header .dropdown-menu li img {
    width: 1.25rem;
    margin-right: 0.625rem;
}

.sticky-header .dropdown-menu.show {
    display: block;
}

/***************************
// End Sticky header
***************************/

/***************************
// Header Nav
***************************/
.header-nav {
    position: sticky;
    top: 0;
    background-color: var(--color-black-1E1E1E);
    z-index: 999;
    padding: 0.625rem 1.25rem;
    /*height: 4rem;*/
    display: flex;
    flex-direction: column;
}

.header-nav .logo-layer .logo {
    height: 6rem;
    width: auto;
    margin-top: 4rem;
}

.header-nav .logo-layer {
    position: absolute;
    left: 0;
    z-index: 1002;
}

.header-nav .menu-toggle {
    background-color: transparent;
    color: var(--color-white);
    border: none;
    width: 2.1875rem;
    height: 2.1875rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-nav .lang-selector {
    color: var(--color-white);
    font-weight: bold;
}

.header-nav .dropdown-menu-lang {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--color-white);
    list-style: none;
    margin: 0;
    padding: 0.5rem 0.5rem;
    z-index: 1000;
    min-width: 6.25rem;
    border-radius: 0;
    border: none;
}

.header-nav .dropdown-menu-lang li {
    padding: 0.3125rem 0.9375rem;
}

.header-nav .dropdown-menu-lang li a {
    font-family: var(--font-CenturyGothicPaneuropean);
    color: var(--color-blue-00356A);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.header-nav .dropdown-menu-lang li img {
    width: 1.25rem;
    margin-right: 0.625rem;
}

.header-nav .dropdown-menu-lang.show {
    display: block;
}

/*Dropdown menu*/
.header-mobile-menu .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--color-white);
    list-style: none;
    margin: 0;
    padding: 1rem 0.5rem;
    z-index: 10000;
    min-width: 13rem;
    border-radius: 0;
    border: none;
    overflow-y: scroll;
    max-height: 80vh;
}

.header-mobile-menu .dropdown-menu li {
    padding: 0.3125rem 0.9375rem;
}

.header-mobile-menu .dropdown-menu li a {
    font-family: var(--font-CenturyGothicPaneuropean);
    color: var(--color-blue-00356A);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.header-mobile-menu .dropdown-menu li a:hover {
    color: #0053a7;
}

.header-mobile-menu .dropdown-menu li img {
    width: 1.25rem;
    margin-right: 0.625rem;
}

.header-mobile-menu .dropdown-menu.show {
    display: block;
}

/***************************
// End header nav
***************************/

/***************************
// Product
***************************/
.product-section {
    background-color: var(--color-blue-00356A);
    position: relative;
    overflow: hidden;
    color: var(--color-white);
    padding-top: 3rem;
}

.product-section h2 {
    font-family: var(--font-AbrilFatface);
    /*800*/
    font-weight: 400;
    line-height: 130%;
    text-align: center;
    vertical-align: middle;
}

.product-section .text {
    font-family: var(--font-CenturyGothicPaneuropean);
    font-weight: 700;
    line-height: 150%;
    text-align: center;
    vertical-align: middle;
}

.product-choose-flavour {
    font-family: var(--font-inter);
}

.product-section .product-img {
    height: 12.5rem;
    transition: transform 0.3s;
}

.product-section .product-img:hover {
    transform: scale(1.05);
}

.product-section .container {
    padding-bottom: 6rem;
}

/***************************
// End Product
***************************/

/***************************
// Crusial Section
***************************/
.splide {
    margin-top: -3.125rem;
}

.splide__slide .product {
    transform: scale(0.7);
    transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.splide__slide.is-center .product {
    opacity: 1;
    transform: scale(1);
}

.product {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.product img {
    max-width: 38.5rem;
    height: auto;
}

/***************************
// End Crusial Section
***************************/

/***************************
// Yellow Wave Separator
****************************/
.wave-separator {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    line-height: 0;
    top: 0.0625rem;
}

.wave-separator img,
.wave-separator svg {
    display: block;
    width: 100%;
    height: auto;
}

.divider {
    height: 3rem;
}


/***************************
// End Yellow Wave Separator
****************************/

/***************************
// Quality section
***************************/
.quality-section {
    padding-top: 3rem;
    padding-bottom: 4rem;
    background-color: #fff54d;
    color: var(--color-black-1E1E1E);
    text-align: center;
}

.quality-section h2 {
    font-family: var(--font-AbrilFatface);
    /*800*/
    font-weight: 400;
    line-height: 130%;
    text-align: center;
    vertical-align: middle;
}

.quality-section .text {
    font-family: var(--font-CenturyGothicPaneuropean);
    /*Century Gothic Std*/
    font-weight: 700;
    line-height: 150%;
    text-align: center;
    vertical-align: middle;
}

.quality-section .icon-text {
    text-align: left;
    font-family: var(--font-CenturyGothicPaneuropean);
    /*Century Gothic Std*/
    font-weight: 400;
    line-height: 150%;
    vertical-align: middle;
}

.quality-section img {
    width: 5.625rem;
    height: 5.625rem;
    margin-right: 1.25rem;
}


/***************************
// End Quality section
***************************/

/***************************
// Global presence section
***************************/
.global-presence-section {
    padding-top: 4rem;
    background-color: var(--color-blue-00356A);
    color: var(--color-white);
    text-align: center;
}

.global-presence-section .container {
    padding-bottom: 6rem;
}

.global-presence-section .text-title {
    font-family: var(--font-CenturyGothicPaneuropean);
    /*Century Gothic Std*/
    font-weight: 700;
    line-height: 150%;
    text-align: center;
    vertical-align: middle;
}

.global-presence-section .map-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.global-presence-section .text {
    font-family: var(--font-CenturyGothicPaneuropean);
    font-weight: 400;
    line-height: 150%;
    text-align: center;
    vertical-align: middle;
}

.global-presence-section .learn-more-link {
    font-family: var(--font-CenturyGothicPaneuropean);
    /*Century Gothic Std*/
    font-weight: 700;
    line-height: 130%;
    text-align: center;
    vertical-align: middle;
    color: #FF45B2;
}

.global-presence-section .learn-more-link:hover {
    text-decoration: underline;
}

/***************************
// End Global presence section
***************************/

/***************************
// Innovation section
***************************/
.innovation {
    padding-top: 4rem;
    padding-bottom: 6rem;
    background-color: var(--color-dark-pink);
    color: var(--color-white);
    text-align: center;
}

.innovation h2 {
    font-family: var(--font-AbrilFatface);
    /*800*/
    font-weight: 400;
    line-height: 130%;
    text-align: center;
    vertical-align: middle;
}

.innovation .text {
    font-family: var(--font-CenturyGothicPaneuropean);
    /*Century Gothic Std*/
    font-weight: 700;
    line-height: 150%;
    text-align: center;
    vertical-align: middle;
}

.innovation .stat-number {
    font-family: var(--font-CenturyGothicPaneuropean);
    /*Century Gothic Std*/
    font-weight: 700;
    line-height: 130%;
    text-align: center;
    vertical-align: middle;
}

.innovation .stat-label {
    font-family: var(--font-CenturyGothicPaneuropean);
    /*Century Gothic Std*/
    font-weight: 700;
    line-height: 130%;
    text-align: center;
    vertical-align: middle;
}

/***************************
// End Innovation section
***************************/

/****************************
// Press Section
****************************/

.press {
    padding-top: 4rem;
    padding-bottom: 6rem;
}

.press h1 {
    font-family: var(--font-AbrilFatface);
    /*700*/
    font-weight: 400;
    line-height: 130%;
    vertical-align: middle;
}

.press h2 {
    font-family: var(--font-AbrilFatface);
    /*700*/
    font-weight: 400;
    line-height: 130%;
    vertical-align: middle;
}


.reference-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.reference-item {
    flex: 1 1 calc(33.333% - 2rem);
    max-width: 25rem;
    display: flex;
    justify-content: center;
}

.image-box {
    position: relative;
    overflow: hidden;
    flex: 0 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.image-box .btn.btn-transparent-white-text {
    margin-top: -1.1rem;
}

.image-box img {
    width: 100%;
    max-width: 24.375rem;
    /* 390px */
    height: 33.5625rem;
    /* 537px */
    display: block;
    object-fit: cover;
}

.image-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    transition: background-color 0.3s ease;
    max-width: 24.375rem;
}

.overlay-text {
    position: absolute;
    inset: 0;
    padding: 1rem;
    color: var(--color-white);
    width: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    text-align: center;
}

.overlay-date {
    width: 9.5rem;
    height: 3.4375rem;
    border-radius: 0.625rem;
    background: var(--color-white);
    font-family: var(--font-CenturyGothicPaneuropean);
    /*Century Gothic Std*/
    font-weight: 700;
    line-height: 130%;
    text-align: center;
    vertical-align: middle;
    color: var(--color-black-1E1E1E);
    display: flex;
    align-items: center;
    justify-content: center;
}

hr {
    width: 100%;
    height: 0.125rem;
    background-color: var(--color-white);
    opacity: 1;
}

.overlay-title {
    line-height: 100%;
    text-align: flex-start;
    vertical-align: middle;
    transition: opacity 0.3s ease;
    font-family: var(--font-AbrilFatface);
    /*700*/
    font-weight: 400;
    vertical-align: middle;
    color: var(--color-white);
    height: 4.5rem;
}

.overlay-hover-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: flex-start;
}

.overlay-hover-content p {
    font-family: var(--font-CenturyGothicPaneuropean);
    /*Century Gothic Std*/
    font-weight: 700;
    line-height: 130%;
    color: var(--color-white);
    padding-bottom: 2.5rem;
}

.image-box:hover::before {
    background-color: #00356AB2;
}

.image-box:hover .overlay-hover-content {
    opacity: 1;
    max-height: 18.75rem;
}

.image-box:hover .overlay-title {
    margin-bottom: 1rem;
}

/****************************
// End Press Section
*****************************/

/****************************
// Footer
****************************/
.site-footer {
    background-color: #262626;
    color: var(--color-white);
    padding-top: 5rem;
    padding-bottom: 2rem;
    position: relative;
}

.site-footer a:hover {
    text-decoration: underline;
    cursor: pointer;
}

.szechenyi-overlay {
    position: fixed;
    bottom: 0;
    right: 0;
    max-width: 12.5rem;
    z-index: 1000;
}

.szechenyi-overlay img {
    width: 100%;
    height: auto;
    display: block;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
}

.footer-column {
    margin-bottom: 2rem;
}

.footer-column h5 {
    font-family: var(--font-CenturyGothicPaneuropean);
    /*Century Gothic Std*/
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 2rem;
}

.footer-links li {
    font-family: var(--font-CenturyGothicPaneuropean);
    font-weight: 400;
    line-height: 130%;
    list-style: none;
    margin-bottom: 1rem;
}

.footer-links li ul li {
    font-size: 0.875rem !important;
}

.footer-links,
.footer-news,
.footer-contact {
    list-style: none;
    padding-left: 0;
    margin: 0;
    font-size: 0.95rem;
}

.footer-links li ul {
    margin-top: 1rem;
}

.footer-news li {
    font-family: var(--font-CenturyGothicPaneuropean);
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.75rem;
}

.footer-news li::before,
.footer-news li::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0.375rem;
    width: 0.8125rem;
    height: 0.8125rem;
    background: url('../images/icons/arrow-down-white.svg') no-repeat center center / contain;
    transform: rotate(90deg);
}

.footer-news li::after {
    left: 0.5rem;
}

.footer-news .date {
    font-family: Century Gothic;
    font-weight: 400;
    font-size: 0.8125rem !important;
    /* 13px */
    line-height: 130%;
}

.footer-contact li {
    font-family: Century Gothic;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 1.5rem;
}

.footer-contact li img {
    margin-right: 0.5rem;
}

.footer-logo {
    margin-top: 4rem;
}

.footer-logo img {
    width: auto;
    height: auto;
    max-height: 5.375rem;
    /* 86px */

}

/****************************
// End Footer
****************************/

.product-detail {
    background-color: var(--color-blue-00356A);
    padding-top: 3rem;
    position: relative;
    color: var(--color-white);
}

.flavors .flavor-dot,
.flavor-duplicate {
    width:  4.125rem; 
    height: 4.125rem; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flavors .flavor-dot {
    aspect-ratio: 1;
    overflow: hidden;
    flex-shrink: 0;
    flex-grow: 0;
}

.flavor-duplicate {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    transition: opacity 0.2s ease;
    opacity: 0;
    width: 6.1875rem; /* 150% of 4.125rem */
    height: 6.1875rem; /* 150% of 4.125rem */
    text-align: center;
    font-size: 0.75rem;
    font-weight: bold;
    color: var(--color-white);
    border: 0.125rem solid var(--color-white);
    word-break: break-word;
    hyphens: auto;
    z-index: 1;
}

.flavor-dot:hover+.flavor-duplicate {
    opacity: 1;
}

.flavors .flavor-dot.strawberry {
    background-color: var(--color-light-pink);
}

.flavors .flavor-dot.vanilla {
    background-color: #FEF100;
}

.flavors .flavor-dot.cacao {
    background-color: #A25641;
}

.flavors .flavor-dot.bubbles {
    background-color: #F7AAAC;
}

.flavors .flavor-dot.chocolate {
    background-color: #E28650;
}

.flavors .flavor-dot.food {
    background-color: #57C5CE;
}

.flavors .flavor-dot.tomato {
    background-color: var(--color-dark-pink);
}

.flavors .flavor-dot.cheese {
    background-color: #DE79AA;
}

.flavors .flavor-dot.hat {
    background-color: #DE5D3B;
}

.flavors .flavor-dot img {
    width: 1.4375rem;
    height: 1.4375rem;
}

.product-detail h1 {
    font-family: var(--font-AbrilFatface);
    /*700*/
    font-weight: 400;
    line-height: 90%;
    vertical-align: middle;
    font-size: 5.5rem;
}

.product-detail h2 {
    font-family: var(--font-AbrilFatface);
    font-weight: 400;
    line-height: 130%;
    vertical-align: middle;
}

.product-detail h2.product-view-detail {
    font-family: var(--font-CenturyGothicPaneuropean);
    font-weight: 700;
    line-height: 130%;
    vertical-align: middle;
    font-size: 1.5rem;
    margin-bottom: 0;
}

.product-detail .product-description {
    font-family: var(--font-CenturyGothicPaneuropean);
    font-weight: 700;
    line-height: 125%;
    vertical-align: middle;
    font-size: 1.2rem;
}

.product-detail .btn-outline {
    background: transparent;
    border: 0.125rem solid var(--color-white);
    color: var(--color-white);
    font-weight: bold;
    padding: 0.5rem 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.product-detail .btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-blue-00356A);
}

.product-detail .product-image {
    width: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    /*height: 48.75rem;*/
}

.product-detail .product-icons {
    z-index: 10;
    max-width: 38.8125rem;
}

.product-detail .icon-360 {
    width: 100%;
    max-width: 6.0625rem;
    height: auto;
}

.product-detail .icon-thumb {
    width: 100%;
    max-width: 5.8125rem;
    height: auto;
}

/***************************
// Ingredients section
***************************/
.ingredients {
    padding-bottom: 3rem;
    color: var(--color-white);
    text-align: center;
}

.ingredients.bg-light-pink {
    background-color: var(--color-light-pink);
}

.ingredients.bg-pink {
    background-color: var(--color-dark-pink);
}

.ingredient-icon-wrapper {
    position: relative;
    width: 6.125rem;
    height: 6.125rem;
}

.ingredient-icon {
    background-color: var(--color-blue-00356A);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ingredient-icon img {
    width: 3.5rem;
    height: 3.5rem;
    object-fit: contain;
    z-index: 1;
}

.icon-strike {
    content: "";
    position: absolute;
    width: 85%;
    height: 0.375rem;
    transform: rotate(-45deg);
    top: 50%;
    border-radius: 0.3125rem;
    z-index: 5;
}

.icon-strike.bg-light-pink {
    background-color: var(--color-light-pink);
}

.icon-strike.bg-pink {
    background-color: var(--color-dark-pink);
}

.ingredients .text {
    font-family: var(--font-CenturyGothicPaneuropean);
    font-weight: 400;
    line-height: 130%;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
}

/***************************
// End Ingredients section
***************************/

/***************************
// Ingredients Content section
***************************/
.ingredients-content {
    padding-top: 3rem;
    padding-bottom: 3rem;
    color: var(--color-black-1E1E1E);
}

.ingredients-content h3 {
    font-family: var(--font-CenturyGothicPaneuropean);
    font-weight: 700;
    font-size: 2rem;
    line-height: 130%;
    margin-bottom: 1.5rem;
}

.ingredients-content p {
    font-family: var(--font-CenturyGothicPaneuropean);
    font-weight: 400;
    font-size: 1.25rem;

    line-height: 150%;
    margin-bottom: 1.5rem;
}

.ingredients-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.ingredients-content ul li {
    list-style: disc;
    margin-bottom: 0.5rem;
    font-family: var(--font-CenturyGothicPaneuropean);
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 150%;
}

.ingredients-content .table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 2rem;
}

.ingredients-content table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
    text-align: center;
    min-width: 56.25rem;
    display: table !important;
}

/*.ingredients-content table tbody tr:first-child td,*/
.ingredients-content table thead th {
    background-color: var(--color-blue-00356A);
    color: var(--color-white);
    border: 0.125rem solid var(--color-white);
}

.ingredients-content table th,
.ingredients-content table td {
    padding: 0.5rem;
    font-weight: 600;
}

.ingredients-content table td,
.ingredients-content table th {
    font-family: var(--font-CenturyGothicPaneuropean);
    white-space: nowrap;
    border-left: 0.125rem solid var(--color-white);
    border-right: 0.125rem solid var(--color-white);
}

.ingredients-content table tbody tr:nth-child(odd) {
    background-color: #FFE000;
    color: var(--color-black);
}

.ingredients-content table tbody tr:nth-child(even) {
    background-color: #A2D9F7;
    color: var(--color-black);
}

/***************************
// End Ingredients Content section
***************************/

/***************************
// About Us Section
***************************/

.intro {
    padding-bottom: 2rem;
    color: var(--color-white);
    text-align: center;
    background-color: var(--color-dark-pink);
}

.intro h1 {
    font-family: var(--font-AbrilFatface);
    /*800*/
    font-weight: 400;
    line-height: 110%;
    text-align: center;
    vertical-align: middle;
}

.intro p {
    font-family: var(--font-CenturyGothicPaneuropean);
    /*Century Gothic Std*/
    font-weight: 700;
    line-height: 100%;
    text-align: center;
    vertical-align: middle;
}

.intro .stat-number {
    font-family: var(--font-CenturyGothicPaneuropean);
    /*Century Gothic Std*/
    font-weight: 700;
    line-height: 130%;
    text-align: center;
    vertical-align: middle;
}

.intro .stat-label {
    font-family: var(--font-CenturyGothicPaneuropean);
    /*Century Gothic Std*/
    font-weight: 700;
    line-height: 110%;
    text-align: center;
    vertical-align: middle;
}

.intro .container {
    position: relative;
    top: -45px;
}

.intro .wave-separator {
    top: -70px;
}

/*About Us Section*/

.about-us {
    padding-top: 4rem;
    color: var(--color-black-1E1E1E);
}

.about-us .container {
    padding-bottom: 9rem;
}

.about-us h1 {
    font-family: var(--font-AbrilFatface);
    /*800*/
    font-weight: 400;
    font-size: 3rem;
    line-height: 130%;
    text-align: center;
    vertical-align: middle;
    margin-bottom: 2rem;
}

.about-us h3 {
    font-family: var(--font-CenturyGothicPaneuropean);
    font-weight: 700;
    font-size: 2rem;
    line-height: 130%;
    margin-bottom: 1rem;
}

.about-us p.lead {
    font-family: var(--font-CenturyGothicPaneuropean);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 150%;
    text-align: center;
    vertical-align: middle;
}

.about-us p {
    font-family: var(--font-CenturyGothicPaneuropean);
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 150%;
    margin-bottom: 1rem;
}

.about-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    align-items: center;
}

.about-flex>div {
    flex: 1 1 60%;
}

.about-flex img {
    flex: 1 1 35%;
    max-width: 22.625rem;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/***************************
// End About Us Section
***************************/

.divider.bg-pink {
    background-color: var(--color-dark-pink);
}

.divider.bg-light-pink {
    background-color: var(--color-light-pink);
}

.divider.bg-orange {
    background-color: #DE5D3B;
}

.divider.bg-yellow {
    background-color: #FEF650;
}

.divider.bg-brown {
    background-color: #E28650;
}

.products.product-detail .product-image {
    max-width: 34.625rem;
    /*height: 47.9375rem;*/
}



.products-intro {
    padding-top: 4rem;
    padding-bottom: 6rem;
    color: var(--color-white);
    background-color: var(--color-blue-00356A);
}

.products-intro h1 {
    font-family: var(--font-AbrilFatface);
    /*800*/
    font-weight: 400;
    line-height: 130%;
    text-align: center;
    vertical-align: middle;
    margin-bottom: 2rem;
}

.products-intro p {
    font-family: var(--font-CenturyGothicPaneuropean);
    /*Century Gothic Std*/
    font-weight: 700;
    line-height: 150%;
    text-align: center;
    vertical-align: middle;
}


/***************************
// Blog List Section
***************************/
.blog-list {
    padding-bottom: 6rem;
    color: var(--color-black-1E1E1E);
}

.blog-list p {
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 1rem;
}

.blog-list .index img {
    width: 100%;
    max-width: 24.375rem;
    height: 100%;
    object-fit: cover;
}

.blog-list .card h5 {
    font-family: var(--font-AbrilFatface);
    /*700*/
    font-weight: 400;
    line-height: 100%;
    vertical-align: middle;
}

.blog-list .card div.context hr {
    width: 100%;
    height: 0.125rem;
    background: var(--color-black-1E1E1E);
    opacity: 1;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.blog-list .card div.context p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: var(--font-CenturyGothicPaneuropean);
    /*Century Gothic Std*/
    font-weight: 700;
    line-height: 130%;
}

.blog-list .card .date {
    background: var(--color-black-1E1E1E);
    color: var(--color-white);
    width: 9.5rem;
    height: 3.4375rem;
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.blog-list .card .date span {
    font-family: var(--font-CenturyGothicPaneuropean);
    /*Century Gothic Std*/
    font-weight: 700;
    line-height: 130%;
    text-align: center;
    vertical-align: middle;
}

.pagination-wrapper {
    text-align: right;
    margin-top: 3rem;
}

.pagination {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 1.5rem;
    align-items: center;
}

.pagination li {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-CenturyGothicPaneuropean);
    /*Century Gothic Std*/
    font-weight: 700;
    font-size: 1rem;
    line-height: 130%;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;

}

.pagination li a {
    display: flex;
    align-items: center;
    justify-content: center;

}

.pagination li a:not(.arrow) {
    padding: 0.5rem 0.75rem;
    transition: all 0.2s ease;
}

.pagination li a.arrow img {
    width: 1.25rem;
    height: 1.25rem;
    display: block;
}

.pagination li a.active {
    background: var(--color-black-1E1E1E);
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 0.25rem;
    gap: 0.625rem;
    padding: 0.1875rem 0.5625rem;
    color: var(--color-white);
}

/***************************
// End Blog List Section
***************************/
/***************************
// Pressroom Section
***************************/

.pressroom {
    padding-top: 4rem;
    padding-bottom: 3rem;
    color: var(--color-black-1E1E1E);
}

.pressroom .row {
    padding-top: 4rem;
}

.pressroom h1 {
    font-family: var(--font-AbrilFatface);
    /*700*/
    font-weight: 400;
    line-height: 130%;
    text-align: center;
    vertical-align: middle;
    margin-bottom: 2rem;
}

.pressroom p.lead {
    font-family: var(--font-CenturyGothicPaneuropean);
    /*Century Gothic Std*/
    font-weight: 700;
    line-height: 150%;
    text-align: center;
    vertical-align: middle;
}

.search-wrapper {
    position: relative;
    max-width: 31.5rem;
    width: 100%;
}

.search-wrapper input {
    width: 100%;
    border: 0.0625rem solid #E2E2E2;
    max-width: 31.5rem;
    height: 3.4375rem;
    border-radius: 0.3125rem;
    padding: 0.875rem;
    gap: 0.625rem;
    font-family: var(--font-CenturyGothicPaneuropean);
    font-weight: 400;
    line-height: 150%;
    vertical-align: middle;
}

.search-wrapper input::placeholder {
    color: var(--color-black-1E1E1E);
}

.search-icon {
    position: absolute;
    right: 0.625rem;
    top: 50%;
    transform: translateY(-50%);
}

button.search-icon {
    background: none;
    border: none;
    cursor: pointer;
}

.filter-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-CenturyGothicPaneuropean);
    font-weight: 700;
    line-height: 150%;
    vertical-align: middle;
}

.filter-panel {
    display: none;
    border-top: 0.125rem solid #CBCBCB;
    padding-top: 2rem;
    margin-top: 2rem;
}

.filter-panel select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    background-color: var(--color-white);
    background-image: url('../images/icons/arrow-select.svg');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.625rem;

    padding: 0.875rem 3.5rem 0.875rem 0.875rem;

    height: 3.4375rem;
    border: 0.0625rem solid #E2E2E2;
    border-radius: 0.25rem;

    color: var(--color-black-1E1E1E);
    font-family: var(--font-CenturyGothicPaneuropean);
    font-weight: 400;
    line-height: 150%;
}

/**************************
// End Pressroom Section
**************************/

/***************************
// Press in
****************************/

.press-in {
    padding-top: 9rem;
    color: var(--color-black-1E1E1E);
    font-family: var(--font-CenturyGothicPaneuropean);
    /*Century Gothic Std*/
}

.press-in .category span,
.press-in .date span,
.press-in .breadcrumb span {
    font-weight: 400;
    line-height: 150%;
    vertical-align: middle;
    color: #9A9A9A;
    display: flex;
    align-items: center;
}

.press-in .breadcrumb span {
    color: #D3D3D3;
}

.press-in .date span {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.press-in .category span img,
.press-in .date span img,
.press-in .breadcrumb span img {
    margin-right: 0.5rem;
}

.press-in h2 {
    font-family: var(--font-AbrilFatface);
    /*700*/
    font-weight: 400;
    font-size: 2.25rem;
    line-height: 130%;
    vertical-align: middle;
}

.press-in p {
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.press-in p strong {
    font-weight: 700;
}

.press-in img:not(.date span img):not(.breadcrumb span img):not(.category span img) {
    width: 100%;
    height: auto;
    max-height: 32.4375rem;
    object-fit: cover;
    margin-bottom: 2rem;
    margin-top: 1rem;
}

/***************************
// End Press in
***************************/

/***************************
// Catalog section
***************************/
.catalog-in {
    padding-top: 9rem;
    color: var(--color-white);
    background-color: var(--color-blue-00356A);
}

.catalog-in .container {
    padding-bottom: 6rem;
}

.catalog-in h1 {
    font-family: var(--font-AbrilFatface);
    /*700*/
    font-weight: 400;
    line-height: 130%;
    text-align: center;
    vertical-align: middle;
    margin-bottom: 2rem;
}

.catalog-in h4 {
    font-family: var(--font-CenturyGothicPaneuropean);
    /*Century Gothic Std*/
    font-weight: 700;
    line-height: 100%;
    text-align: center;
    vertical-align: middle;
    margin-bottom: 2rem;
}

.catalog-in .text {
    font-family: var(--font-CenturyGothicPaneuropean);
    /*Century Gothic Std*/
    font-weight: 500;
    font-size: 1rem;
    line-height: 130%;
    letter-spacing: 0;
    text-align: center;
}

.catalog-in .text strong {
    font-weight: 700;
}

.catalog-in img:not(.wave-separator img) {
    width: 100%;
    height: auto;
    max-width: 57.1875rem;
    max-height: 29rem;
    object-fit: cover;
    margin-bottom: 2rem;
    margin-top: 4rem;
}

.catalog {
    padding-bottom: 6rem;
    color: var(--color-white);
    text-align: center;
}

.bg-light-pink {
    background-color: var(--color-light-pink);
}

.bg-pink {
    background-color: var(--color-dark-pink);
}

.bg-blue {
    background-color: var(--color-blue-00356A);
}

.catalog h1 {
    font-family: var(--font-AbrilFatface);
    /*800*/
    font-weight: 400;
    line-height: 130%;
    text-align: center;
    vertical-align: middle;
}

.catalog p {
    font-family: var(--font-CenturyGothicPaneuropean);
    /*Century Gothic Std*/
    font-weight: 700;
    line-height: 150%;
    text-align: center;
    vertical-align: middle;
}

.catalog .stat-number {
    font-family: var(--font-CenturyGothicPaneuropean);
    /*Century Gothic Std*/
    font-weight: 700;
    line-height: 130%;
    text-align: center;
    vertical-align: middle;
}

.catalog .stat-label {
    font-family: var(--font-CenturyGothicPaneuropean);
    /*Century Gothic Std*/
    font-weight: 700;
    line-height: 130%;
    text-align: center;
    vertical-align: middle;
}

/***************************
// Services Products Section
***************************/
.services-products {
    padding-top: 4rem;
    padding-bottom: 9rem;
    color: var(--color-white);
    background-color: var(--color-blue-00356A);
}

.services-products .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: none;
    max-width: 23.75rem;
    background-color: var(--color-blue-00356A);
}

.services-products .card-body {
    padding: 1rem 0;
    width: 100%;
    color: var(--color-white);
    /*font-family: var(--font-opensans);*/
}

.services-products h1 {
    font-family: var(--font-AbrilFatface);
    /*700*/
    font-weight: 400;
    line-height: 130%;
    text-align: center;
    vertical-align: middle;
    margin-bottom: 2rem;
}

.services-products h4 {
    font-family: var(--font-CenturyGothicPaneuropean);
    /*Century Gothic Std*/
    font-weight: 700;
    line-height: 100%;
    vertical-align: middle;
}


.services-products .text strong {
    font-family: var(--font-CenturyGothicPaneuropean);
    /*Century Gothic Std*/
    font-weight: 700;
    line-height: 150%;
    vertical-align: middle;
}


.services-products .card-body p {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: var(--font-CenturyGothicPaneuropean);
    /*Century Gothic Std*/
    font-weight: 500;
    line-height: 130%;
}

.services-products .card img {
    width: 100%;
    height: 32.3125rem;
    object-fit: cover;
    display: block;
}

.services-products .card-body .row img {
    width: 1.5625rem;
    height: 1.5625rem;
    margin-right: 1.5rem;
}

.services-products .card-body .price img {
    width: 1.8125rem;
    height: 1.8125rem;
    margin-right: 2rem;
}

.service-card {
    flex: 0 0 29%;
    max-width: 30%;
}

.service-card .details {
    background: #F2EEE9;
    border-radius: 0.625rem;
}

/***************************
// End Services Products Section
***************************/

/***************************
// Catalog Slider
***************************/
.catalog-splide {
    padding-top: 4rem;
    padding-bottom: 6rem;
    color: var(--color-white);
    background-color: var(--color-blue-00356A);
}

.catalog-splide .splide__slide img {
    width: 100%;
    height: auto;
    display: block;
}

.catalog-splide .my-slider-progress {
    background: #E2E2E2;
    height: 0.625rem;
    max-width: 57.8125rem;
    margin: 3rem auto 0;
    border-radius: 0.875rem;
}

.catalog-splide .my-slider-progress-bar {
    background: #9A9A9A;
    height: 0.625rem;
    transition: width 400ms ease;
    width: 0;
    border-radius: 0.875rem;
}

.catalog-splide .splide__track {
    max-width: 64.25rem;
}

/***************************
// End Catalog Slider
***************************/

/***************************
// Contact Section
***************************/

.contact-in {
    padding-top: 5rem;
    padding-bottom: 3rem;
    color: var(--color-white);
    background-color: var(--color-blue-00356A);
}

.contact-in h1 {
    font-family: var(--font-AbrilFatface);
    /*700*/
    font-weight: 400;
    line-height: 130%;
    text-align: center;
    vertical-align: middle;
    margin-bottom: 2rem;
}

.contact-in h4 {
    font-family: var(--font-CenturyGothicPaneuropean);
    /*Century Gothic Std*/
    font-weight: 700;
    line-height: 100%;
    text-align: center;
    vertical-align: middle;
    margin-bottom: 2rem;
}

.contact-in .text {
    font-family: var(--font-CenturyGothicPaneuropean);
    /*Century Gothic Std*/
    font-weight: 500;
    font-size: 1rem;
    line-height: 130%;
    letter-spacing: 0;
    text-align: center;
}

.contact-in .text strong {
    font-weight: 700;
}

.contact-in img {
    width: 100%;
    height: auto;
    max-width: 57.1875rem;
    max-height: 29rem;
    object-fit: cover;
    margin-bottom: 2rem;
    margin-top: 4rem;
}

.contact-cards {
    background-color: var(--color-blue-00356A);
    padding: 2rem 0;
}

.contact-cards .card-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-cards .icon {
    width: 1.25rem;
    height: 1.25rem;
    filter: brightness(0) invert(1);
}

.contact-cards .border-box {
    border: 0.0625rem solid var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-cards .card-box p {
    font-family: Century Gothic;
    font-weight: 400;
    line-height: 130%;
    text-align: center;
    vertical-align: middle;
}

/***************************
// Contact Section
***************************/
.contact-section {
    padding-top: 3rem;
    padding-bottom: 6rem;
    background-color: var(--color-blue-00356A);
    color: var(--color-white);
}

.contact-section .index img {
    width: 100%;
    max-width: 36.25rem;
    height: 43.75rem;
    object-fit: cover;
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
    border-width: 0.125rem;
}

.was-validated .form-check-input:invalid~.form-check-label,
.invalid-feedback {
    color: #dc3545;
}

.contact-form-content .form-check-label {
    font-family: var(--font-CenturyGothicPaneuropean);
    /*Century Gothic Std*/
    font-weight: 400;
    line-height: 150%;
}

.contact-form-content .form-check-label a {
    font-weight: 700;
}

.contact-form-content {
    max-width: 37.5625rem;
}

.contact-section h2 {
    font-family: var(--font-AbrilFatface);
    /*700*/
    font-weight: 400;
    line-height: 130%;
    vertical-align: middle;
    margin-bottom: 1.5rem;
}

.contact-section p {
    font-family: var(--font-CenturyGothicPaneuropean);
    font-weight: 700;
    line-height: 150%;
    vertical-align: middle;
    margin-bottom: 1.5rem;
}

.contact-section label {
    font-family: var(--font-CenturyGothicPaneuropean);
    font-weight: 700;
    line-height: 140%;
    letter-spacing: 0;
    vertical-align: middle;
}

.contact-section select.form-control {
    color: #828282;
}

.contact-section textarea,
.contact-section input[type="text"],
.contact-section input[type="email"],
.contact-section select.form-control {
    border: 0.03125rem solid #BCBCBC;
    width: 100%;
    max-width: 37.0625rem;
    height: 3.125rem;
    top: 65rem;
    left: 61.0625rem;
    border-radius: 0.625rem;
    background: var(--color-white);
}

.contact-section input[type=checkbox] {
    box-shadow: 0 0 0.25rem 0 #00000069;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 0;
}

.contact-section textarea {
    min-height: 11rem;
}

.contact-section textarea::placeholder,
.contact-section input::placeholder {
    font-weight: 400;
    line-height: 1.5rem;
    letter-spacing: 0.0625rem;
    color: #828282;
}

.contact-section .static-content {
    font-size: 1.1875rem;
    color: var(--color-black);
}

.contact-details {
    padding-top: 3rem;
    padding-bottom: 3rem;
    color: var(--color-black-1E1E1E);
}

.contact-details h2 {
    font-weight: 400;
    line-height: 160%;
    vertical-align: middle;
}

.contact-details p {
    font-weight: 400;
    line-height: 160%;
}

.contact-details h5 {
    font-weight: 500;
    line-height: 140%;
    vertical-align: middle;
}

.contact-box {
    border: 0.0625rem solid #F2EEE9;
    height: 10.125rem;
    border-radius: 0.625rem;
}

.icon-wrapper {
    width: 5.625rem;
    height: 5.625rem;
    background-color: #8A766F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    flex-shrink: 0;
}

.map-section {
    padding-bottom: 3rem;
    background-color: var(--color-blue-00356A);
}

.map-section .map-container iframe {
    width: 100%;
    height: 26.875rem;
}

/***************************
// End Contact Section
***************************/

/***************************
// Team Section
***************************/
.team-section {
    background-color: var(--color-blue-00356A);
}

.team-section .team-card .wave img {
    width: 100%;
    height: auto;
    margin-top: 0.9375rem;
}

.team-card {
    background: var(--color-white);
    overflow: hidden;
    height: 100%;
    width: 100%;
    max-width: 18.125rem;
}

.profile-pic {
    background: var(--color-light-pink);
    border-radius: 50%;
    width: 9.375rem;
    height: 9.375rem;
    overflow: hidden;
    margin: 2rem auto 0.5rem;
}

.profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-section .team-card h4 {
    font-family: var(--font-CenturyGothicPaneuropean);
    /*Century Gothic Std*/
    font-weight: 700;
    line-height: 100%;
    text-align: center;
    vertical-align: middle;
    color: var(--color-black-1E1E1E);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    height: 2em;
}

.team-section .team-card p {
    height: 2em;
}

.team-section .team-card .icons {
    background-color: var(--color-dark-pink);
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.team-section .team-card .icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    padding: 0;
    width: 4.125rem;
    height: 4.125rem;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    flex-shrink: 0;
    flex-wrap: wrap;
    flex-grow: 0;
    transition: background 0.2s;
}

.team-section .team-card .icons a img {
    transition: transform 0.2s;
}

.team-section .team-card .icons a:hover img {
    transform: scale(1.2);
}

.team-section .team-card .icons img {
    height: 1.25rem;
}

/***************************
// End Team Section
***************************/


.left-content {
    background-color: var(--color-dark-pink);
    min-height: 100%;
    padding: 3rem;
    color: var(--color-white);
}

.text-wrapper {
    max-width: 31.25rem;
    margin: auto;
}

.left-content h1 {
    font-family: var(--font-AbrilFatface);
    /*700*/
    font-weight: 400;
    line-height: 130%;
    vertical-align: middle;
    margin-bottom: 2rem;
}

.left-content p {
    font-family: var(--font-CenturyGothicPaneuropean);
    font-weight: 700;
    line-height: 150%;
    vertical-align: middle;
}

.right-image {
    background-color: #f8f9fa;
}

.right-image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.split-section {
    background-color: var(--color-blue-00356A);
    position: relative;
    overflow: visible;
    padding-top: 12rem;
}

.split-section .row {
    overflow: visible;
}

.center-logo {
    position: absolute;
    top: -9.375rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    width: 17.8125rem;
    height: 17.8125rem;
    background: var(--color-black-1E1E1E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.center-logo img {
    width: 65%;
    height: auto;
    object-fit: contain;
}



model-viewer {
    width: 100%;
    height: 31.25rem;
    max-width: 100%;
}

@media (max-width: 576px) {
    model-viewer {
        height: 18.75rem;
    }
}

@media (min-width: 992px) {
    model-viewer {
        height: 43.75rem;
    }
}

.intro-text-wrapper {
    max-width: 43.75rem;
    margin-left: auto;
    padding: 3.125rem 0rem 3.125rem 6.25rem;
}

#book {
    margin: 0 auto;
}

/* Teljes képernyős stílus */
#book:-webkit-full-screen {
    width: 100%;
    height: 100%;
}

#book:fullscreen {
    width: 100%;
    height: 100%;
}

#fullscreenButton {
    display: block;
    padding: 0.625rem 1.25rem;
    cursor: pointer;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1rem;
}

.product-collapse-btn {
    border: none;
    background: none;
    padding: 0;
    transition: all 0.4s;
    flex-shrink: 0;
}

.product-collapse-btn svg {
    transition: all 0.4s;
}

.product-collapse-btn[aria-expanded="true"] svg {
    transform: rotate(90deg);
}

.collapse-link {
    margin-bottom: 0.5rem;
    display: inline-flex !important;
}

.product-view-wave {
    margin-top: -3em;
}

.colored-bg {
    color: var(--color-white) !important;
    background-color: var(--color-blue-00356A) !important;
}

.colored-bg a {
    color: var(--color-white) !important;
}

#header_collapseProducts,
#header_collapseProducts a {
    font-size: 15px !important;
}

#header_collapseProducts .collapse-link {
    margin-bottom: 0.2em;
    align-items: center;
    justify-content: space-between;
}

#header_collapseProducts .collapse-wrapper {
    padding: 0.2em;
    display: flex;
    flex-direction: column;
    border-bottom: 2px solid var(--color-blue-00356A);
}

#header_collapseProducts .collapse-wrapper:last-child {
    border-bottom: none;
}

/*#header_collapseProducts .collapse-wrapper:nth-child(odd) {*/
/*    !*background-color: var(--color-light-pink);*!*/
/*}*/

/*#header_collapseProducts .collapse-wrapper:nth-child(odd) * {*/
/*    color: var(--color-white);*/
/*    stroke: var(--color-white);*/
/*}*/

/*#header_collapseProducts .collapse-wrapper:nth-child(odd) a:hover {*/
/*    color: #e3e3e3;*/
/*}*/

.search-form {
    position: relative;
}

.search-form button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 5px;
}

.search-form button,
.open-form-btn {
    background: none;
    border: none;
    outline: none;
}

.search-container {
    margin-right: 10px;
    margin-top: 3px;
}

.team-card .icons {
    position: relative;
}

.team-card .icons a + span {
    position: absolute;
    bottom: 12px;
    left: 5px;
    right: 5px;
    text-align: center;
    opacity: 0;
    transition: 0.3s;
}

.team-card .icons a:hover + span,
.team-card .icons a:focus + span {
    opacity: 1;
}

.products .product-description {
    max-width: 33.0625rem;
}

.header-breadcrumb {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    max-width: 75%;
    float: right;
    flex-wrap: wrap;
}

.header-breadcrumb,
.header-breadcrumb a {
    color: var(--color-white);
}

.modal-content {
    background: var(--color-blue-00356A);
}

.modal-content .btn-close {
    --bs-btn-close-bg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3E%3Cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3E%3C/svg%3E");
}

.modal {
    background-color: rgba(0, 0, 0, 0.7);
}

.product-info-wrapper {
    min-height: 550px;
}

.btnPrev, .btnNext {
    z-index: 99 !important;
}

.header-desktop-menu {
    display: flex;
    align-items: center;
    gap: 6em;
    margin-right: 10em;
}

.header-desktop-menu a {
    color: var(--color-white);
    font-family: var(--font-CenturyGothicPaneuropean);
    font-size: 1.25rem !important;
}

.header-mobile-menu {
    display: none;
}

.desktop-menu-wrapper {
    position: relative;
}

.header-desktop-menu .categories-dropdown a {
    color: var(--color-black) !important;
}

header .dropdown-toggle::after {
    display: none !important;
}

header .categories-dropdown .main-link {
    color: var(--color-white) !important;
}

header .categories-dropdown .main-toggle {
    padding: 0 !important;
    background: none !important;
    border: none !important;
    outline: none !important;
    display: inline-flex;
}

.main-toggle svg {
    transition: all 0.2s;
}

.main-toggle[aria-expanded="true"] svg {
    transform: rotate(90deg);
}

.sub-dropdown {
    border-bottom: 2px solid var(--color-blue-00356A);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.3rem;
}

.sub-dropdown:last-child {
    border-bottom: none;
}

.main-dropdown {
    padding: 0.7rem 0.6rem;
    min-width: 270px;
}

.sub-dropdown a,
.main-dropdown a {
    font-size: 17px !important;
    line-height: 1.2em;
    transition: .3s;
}

.header-desktop-menu a {
    transition: .3s;
}

.header-desktop-menu a:hover,
.sub-dropdown a:hover,
.main-dropdown a:hover {
    color: var(--color-dark-pink) !important;
}

.main-dropdown.show {
    left: 0 !important;
    right: unset !important;
    transform: none !important;
    top: 2em !important;
}

/* Autocomplete Dropdown */
.autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    max-height: 300px;
    overflow-y: auto;
}

.autocomplete-item {
    padding: 10px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background-color 0.2s;
}

.autocomplete-item:hover {
    background-color: #f8f8f8;
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item a {
    text-decoration: none;
    color: var(--color-black-1E1E1E);
    display: flex;
    align-items: center;
    width: 100%;
}

.autocomplete-item img {
    margin-right: 10px;
    border-radius: 4px;
}

.autocomplete-item span {
    font-family: var(--font-CenturyGothicPaneuropean);
    font-weight: 400;
    font-size: 14px;
}

.search-form button,
#search-input {
    z-index: 10000;
}

#search-input {
    position: relative;
}