/* FONTS */
html {
    --font-b: 'aeonik_proregular';
    --font-h: 'aeonik_probold';
}
.font-b {
    font-family: var(--font-b);
    font-kerning: none;
}
.font-h {
    font-family: var(--font-h);
    font-kerning: none;
}
.h1, .h2, .h3, .h4, .h5, .h6, .h7, h1, h2, h3, h4, h5, h6, p, a {
    margin-top: 0;
    margin-bottom: 0;
    font-family: var(--font-b);
    -webkit-font-kerning: none;
    font-kerning: none;
    text-rendering: optimizeLegibility;
    color: var(--color-black);
}
/********************************************************************/
h1, .h1 {
    font-size: calc(2.875rem + ((1vw - 0.225rem) * 5.2083)); /* 46px - 66px */
}
@media (min-width: 744px) {
    h1, .h1 {
        font-size: calc(4.125rem + ((1vw - 0.465rem) * 2.0833)); /* 66px - 88px */
    }
}
@media (min-width: 1800px) {
    h1, .h1 {
        font-size: 5.5rem; /* 88px */
    }
}
/********************************************************************/
h2, .h2 {
    font-size: calc(2rem + ((1vw - 0.225rem) * 2.6042)); /* 32px - 42px */
}
@media (min-width: 744px) {
    h2, .h2 {
        font-size: calc(2.625rem + ((1vw - 0.465rem) * 1.3258)); /* 42px - 56px */
    }
}
@media (min-width: 1800px) {
    h2, .h2 {
        font-size: 3.5rem; /* 56px */
    }
}
/********************************************************************/
h3, .h3 {
    font-size: calc(1.5rem + ((1vw - 0.225rem) * 2.0833)); /* 24px - 32px */
}
@media (min-width: 744px) {
    h3, .h3 {
        font-size: calc(2rem + ((1vw - 0.465rem) * 1.1364)); /* 32px - 44px */
    }
}
@media (min-width: 1800px) {
    h3, .h3 {
        font-size: 2.75rem; /* 44px */
    }
}
/********************************************************************/
h4, .h4 {
    font-size: calc(1.125rem + ((1vw - 0.225rem) * 1.0417)); /* 18px - 22px */
}
@media (min-width: 744px) {
    h4, .h4 {
        font-size: calc(1.375rem + ((1vw - 0.465rem) * 0.7576)); /* 22px - 30px */
    }
}
@media (min-width: 1800px) {
    h4, .h4 {
        font-size: 1.875rem; /* 30px */
    }
}
/********************************************************************/
h5, .h5 {
    font-size: calc(1.125rem + ((1vw - 0.225rem) * 0.5208)); /* 18px - 20px */
}
@media (min-width: 744px) {
    h5, .h5 {
        font-size: calc(1.25rem + ((1vw - 0.465rem) * 0.3788)); /* 20px - 24px */
    }
}
@media (min-width: 1800px) {
    h5, .h5 {
        font-size: 1.5rem; /* 24px */
    }
}
/********************************************************************/
h6, .h6 {
    font-size: calc(0.875rem + ((1vw - 0.225rem) * 0.5208)); /* 14px - 16px */
}
@media (min-width: 744px) {
    h6, .h6 {
        font-size: 1rem; /* 16px */
    }
}
/********************************************************************/
.h7 {
    font-size: calc(0.75rem + ((1vw - 0.225rem) * 0.5208)); /* 12px - 14px */
}
@media (min-width: 744px) {
    .h7 {
        font-size: 0.875rem; /* 14px */
    }
}
/********************************************************************/
body, p {
    font-size: calc(1rem + ((1vw - 0.225rem) * 0.5208)); /* 16px - 18px */
}
@media (min-width: 744px) {
    body, p {
        font-size: 1.125rem; /* 18px */
    }
}
/********************************************************************/
.h8 {
    font-size: calc(0.75rem + ((1vw - 0.225rem) * 0.7813)); /* 12px - 15px */
}
@media (min-width: 744px) {
    .h8 {
        font-size: calc(0.9375rem + ((1vw - 0.465rem) * 0.2841)); /* 15px - 18px */
    }
}
@media (min-width: 1800px) {
    .h8 {
        font-size: 1.125rem; /* 18px */
    }
}
/********************************************************************/
.h9 {
    font-size: calc(0.5625rem + ((1vw - 0.225rem) * 0.5208)); /* 9px - 11px */
}
@media (min-width: 744px) {
    .h9 {
        font-size: calc(0.6875rem + ((1vw - 0.465rem) * 0.2841)); /* 11px - 14px */
    }
}
@media (min-width: 1800px) {
    .h9 {
        font-size: 0.875rem; /* 14px */
    }
}
/********************************************************************/
/* END FONTS */
/* COLORS */
.page-id-652, .page-id-1493 {
    background-color: var(--color-light-gray);
}
.page-id-750, .page-id-1441 {
    background-color: var(--color-light-gray);
}
.page-id-891, .page-id-1491 {
    background-color: var(--color-light-gray);
}
html {
    --color-blue: #0072B0;
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-gray: #B6B6B6;
    --color-light-gray: #EDEFF2;
    --color-dark-gray: #DBE2EB;
    --color-lighter-gray: #E6E8EB;
}

.color-black {
    color: var(--color-black);
}
.color-blue {
    color: var(--color-blue);
}
.color-white {
    color: var(--color-white);
}
.color-gray {
    color: var(--color-gray);
}
.color-light-gray {
    color: var(--color-light-gray);
}
.color-dark-gray {
    color: var(--color-dark-gray);
}
.color-lighter-gray {
    color: var(--color-lighter-gray);
}
.bg-gray {
    background-color: var(--color-gray);
}
.bg-blue {
    background-color: var(--color-blue);
}
.bg-white {
    background-color: var(--color-white);
}
.bg-lgray {
    background-color: var(--color-light-gray);
}
.bg-dgray {
    background-color: var(--color-dark-gray);
}
.bg-llgray {
    background-color: var(--color-lighter-gray);
}
/* GENERAL */
html {
    /* Override Bootsrap scroll-behaviour: smooth */
    scroll-behavior: auto !important;
    --pt-calc: 68px;
}
.border-blue {
    border: 1px solid var(--color-blue) !important;
}
.border-white {
    border: 1px solid var(--color-white) !important;
}
.grecaptcha-badge {
    opacity: 0;
}
.text-balance {
    text-wrap: balance;
}
.zIndex-0 {
    z-index: 0;
}
.zIndex-1 {
    z-index: 1;
}
.zIndex-2 {
    z-index: 2;
}
.wrapper {
    padding: 0;
}
.pos-rel, section {
    position: relative;
}
.img-container {
    position: relative;
    overflow: hidden;
}
.img-container img {
    width: 100%;
}
.img-container.object-fit img {
    object-fit: cover;
}
.img-container.hor {
    display: inline-block;
    width: auto;
    height: auto;
}
.img-container.hor img {
    display: inline-block;
    width: auto;
    height: auto;
    max-width: unset !important;
}
[data-img="hover"] img {
    transition: transform 0.3s ease;
}
[data-img="hover"]:hover img {
    transform: scale(1.1);
}
.img-cover {
    -o-object-fit: cover;
    object-fit: cover;
}
.img-contain {
    -o-object-fit: contain;
    object-fit: contain;
}
a {
    text-decoration: none;
    color: var(--color-black);
}
a:hover {
    color: inherit;
}
.pos-abs {
    position: absolute;
}
.rad20 {
    border-radius: 6px;
}
@media (min-width: 744px) {
    .rad20 {
        border-radius: 20px;
    }
}
.rad20-res {
    border-radius: 0;
}
@media (min-width: 744px) {
    .rad20-res {
        border-radius: 20px;
    }
}
.rad27 {
    border-radius: 15px;
}
@media (min-width: 744px) {
    .rad27 {
        border-radius: 27px;
    } 
}
.rad-t-20 {
    border-radius: 20px 20px 0 0;
}
.rad-b-20 {
    border-radius: 0 0 20px 20px;
}
.developer {
    color: var(--color-blue);
}
.developer:hover {
    color: #D4FF1F;
}
.brd-t {
    border-top: 1px solid var(--color-blue);
}
.brd-b {
    border-bottom: 1px solid var(--color-blue);
}
.brd-b-white {
    border-bottom: 1px solid var(--color-white);
}
.brd-t-white {
    border-top: 1px solid var(--color-white);
}
.brd-b-black {
    border-bottom: 1px solid var(--color-black);
}
.brd-t-black {
    border-top: 1px solid var(--color-black);
}
.brd-gray-mob {
    border-bottom: 1px solid var(--color-gray);
}
@media (min-width: 744px) {
    .brd-gray-mob {
        border: none;
    }
}
.brd-t-white-res {
    border: none;
}
@media (min-width: 744px) {
    .brd-t-white-res {
        border-top: 1px solid var(--color-white);
    }
}
.abs-text {
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    transform: translateX(-50%);
    z-index: 2;
}
.a-white a {
    color: var(--color-white);
}
.m-correct {
    margin-top: -1px !important;
}
.aspect-ratio-1-1 img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.aspect-ratio-7-5 {
    aspect-ratio: 7 / 5;
}
.aspect-ratio-7-5 img {
    object-fit: cover;
    height: 100%;
}
[data-anim="reveal"] {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(50px);
        -ms-transform: translateY(50px);
            transform: translateY(50px);
    will-change: opacity, visibility, transform;
}
#cursor {
    position: absolute;
    will-change: transform;
    pointer-events: none;
    z-index: 10101;
    aspect-ratio: 1 / 1;
    width: 90px;
    opacity: 0;
    -webkit-transition: opacity 0.5s cubic-bezier(0.6, 1.46, 0.53, 0.92);
    -o-transition: opacity 0.5s cubic-bezier(0.6, 1.46, 0.53, 0.92);
    transition: opacity 0.5s cubic-bezier(0.6, 1.46, 0.53, 0.92);
    -webkit-transform: translate(-100%);
        -ms-transform: translate(-100%);
            transform: translate(-100%);
}
#cursor.hide {
    opacity: 0!important;
}
#cursor .cursor-container {
    -webkit-transform: translate(-70%, -70%);
        -ms-transform: translate(-70%, -70%);
            transform: translate(-70%, -70%);
}
#cursor .cursor-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    height: 100%;
    aspect-ratio: 1 / 1;
    border: 3px solid var(--color-black);
    border-radius: 50%;
    /* backdrop-filter: blur(20px); */
    transform: translate(-50%, -50%);
}
/* END GENERAL */
/* BUTTONS */
.btn-view {
    padding: 10px 0;
    border-bottom: 1px solid;
    text-transform: uppercase;
}
.btn-view:hover {
    color: var(--color-black);
    border-bottom: 1px solid var(--color-black);
}
.btn-view.btn-view-blue {
    border-bottom: 1px solid var(--color-blue);
    color: var(--color-blue);
}
.btn-view.btn-view-blue:hover {
    border-bottom: 1px solid var(--color-black);
    color: var(--color-black);
}
.btn-view.btn-view-white {
    border-bottom: 1px solid var(--color-white);
    color: var(--color-white);
}
.btn-view.btn-view-white:hover {
    border-bottom: 1px solid var(--color-black);
    color: var(--color-black);
}
.btn-blue {
    width: 140px;
    border: none;
    border-radius: 15rem;
    color: var(--color-white);
    display: inline-flex;
    padding: 10px 20px;
    background: var(--color-blue) 
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11.33 10.28'%3E%3Cpath d='m11.33,5.14l-5.17,5.14-.96-.96,3.57-3.51H0v-1.34h8.77L5.2.96l.96-.96,5.17,5.14Z' fill='%23ffffff'/%3E%3C/svg%3E") 
    no-repeat 
    right 20px center 
    / 15px;
    transition: background .3s ease;
}
.btn-blue:hover {
    background: var(--color-black) 
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11.33 10.28'%3E%3Cpath d='m11.33,5.14l-5.17,5.14-.96-.96,3.57-3.51H0v-1.34h8.77L5.2.96l.96-.96,5.17,5.14Z' fill='%23ffffff'/%3E%3C/svg%3E") 
    no-repeat 
    right 20px center 
    / 15px;
    color: var(--color-white);
}
.btn-gray {
    width: 140px;
    border: none;
    border-radius: 15rem;
    background-color: #B6B6B6; 
    color: #fff; 
    display: inline-flex;
    padding: 10px;
    background-size: 15px;
    background-repeat: no-repeat;
    justify-content: center;
    align-items: center;
    cursor: not-allowed; 
    opacity: 0.7; 
}
.btn-gray:hover {
    color: #fff; 
}
.carousel-prev.prev-white {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18.83 16.51"><path d="M18.54,7.25H2.11l6.65-6.54-.98-1.01L0,8.26l8.35,8.25.98-1.01-6.65-6.54H18.54v-1.4Z" fill="%23ffffff"/></svg>') no-repeat center / 20px;
}
.carousel-prev.prev-white:hover {
    background: var(--color-white) url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18.83 16.51"><path d="M18.54,7.25H2.11l6.65-6.54-.98-1.01L0,8.26l8.35,8.25.98-1.01-6.65-6.54H18.54v-1.4Z" fill="%230072B0"/></svg>') no-repeat center / 20px;
}
.carousel-prev.prev-blue {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18.83 16.51"><path d="M18.54,7.25H2.11l6.65-6.54-.98-1.01L0,8.26l8.35,8.25.98-1.01-6.65-6.54H18.54v-1.4Z" fill="%230072B0"/></svg>') no-repeat center / 20px;
}
.carousel-prev.prev-blue:hover {
    background: var(--color-blue) url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18.83 16.51"><path d="M18.54,7.25H2.11l6.65-6.54-.98-1.01L0,8.26l8.35,8.25.98-1.01-6.65-6.54H18.54v-1.4Z" fill="%23ffffff"/></svg>') no-repeat center / 20px;
}
.carousel-next.next-white {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18.83 16.51"><path d="M10.48,0l8.35,8.25-8.32,8.26-.98-1.01,6.65-6.54H0v-1.4H16.17L9.49,.98l.98-.98Z" fill="%23ffffff"/></svg>') no-repeat center / 20px;
}
.carousel-next.next-white:hover {
    background: var(--color-white) url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18.83 16.51"><path d="M10.48,0l8.35,8.25-8.32,8.26-.98-1.01,6.65-6.54H0v-1.4H16.17L9.49,.98l.98-.98Z" fill="%230072B0"/></svg>') no-repeat center / 20px;
}
.carousel-next.next-blue {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18.83 16.51"><path d="M10.48,0l8.35,8.25-8.32,8.26-.98-1.01,6.65-6.54H0v-1.4H16.17L9.49,.98l.98-.98Z" fill="%230072B0"/></svg>') no-repeat center / 20px;
}
.carousel-next.next-blue:hover {
    background: var(--color-blue) url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18.83 16.51"><path d="M10.48,0l8.35,8.25-8.32,8.26-.98-1.01,6.65-6.54H0v-1.4H16.17L9.49,.98l.98-.98Z" fill="%23ffffff"/></svg>') no-repeat center / 20px;
}
/****************************************************************************************************************/
.btn-sec {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 175px;
    width: auto;
    border: 1px solid var(--color-black);
    border-radius: 15rem;
    background: var(--color-white);
    padding: 15px 20px;
    text-decoration: none;
    transition: color 0.3s ease, background 0.3s ease;
    overflow: hidden;
}
.btn-sec::after {
    content: "";
    width: 15px;
    height: 15px;
    margin-left: 10px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11.33 10.28'%3E%3Cpath d='m11.33,5.14l-5.17,5.14-.96-.96,3.57-3.51H0v-1.34h8.77L5.2.96l.96-.96,5.17,5.14Z' fill='%23000000'/%3E%3C/svg%3E") 
        no-repeat center / contain;
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
}
.btn-sec:hover {
    color: var(--color-white);
    background: var(--color-black);
}
.btn-sec:hover::after {
    transform: translateX(5px);
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11.33 10.28'%3E%3Cpath d='m11.33,5.14l-5.17,5.14-.96-.96,3.57-3.51H0v-1.34h8.77L5.2.96l.96-.96,5.17,5.14Z' fill='%23ffffff'/%3E%3C/svg%3E") 
        no-repeat center / contain;
}
.btn-sec.btn-black {
    border: 1px solid var(--color-black);
    color: var(--color-white);
    background: var(--color-black);
}
.btn-sec.btn-black::after {
    content: "";
    width: 15px;
    height: 15px;
    margin-left: 10px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11.33 10.28'%3E%3Cpath d='m11.33,5.14l-5.17,5.14-.96-.96,3.57-3.51H0v-1.34h8.77L5.2.96l.96-.96,5.17,5.14Z' fill='%23ffffff'/%3E%3C/svg%3E") 
        no-repeat center / contain;
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
}
.btn-sec.btn-black:hover {
    background: var(--color-white);
    color: var(--color-black);
}
.btn-sec.btn-black:hover::after {
    transform: translateX(5px);
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11.33 10.28'%3E%3Cpath d='m11.33,5.14l-5.17,5.14-.96-.96,3.57-3.51H0v-1.34h8.77L5.2.96l.96-.96,5.17,5.14Z' fill='%23000000'/%3E%3C/svg%3E") 
        no-repeat center / contain;
}
.btn-main {
    display: inline-flex;
    min-width: 175px;
    max-width: 220px;
    width: auto;
    border: 1px solid var(--color-black);
    border-radius: 15rem;
    color: var(--color-white);
    background: var(--color-black) 
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11.33 10.28'%3E%3Cpath d='m11.33,5.14l-5.17,5.14-.96-.96,3.57-3.51H0v-1.34h8.77L5.2.96l.96-.96,5.17,5.14Z' fill='%23ffffff'/%3E%3C/svg%3E") 
    no-repeat 
    right 20px center 
    / 15px;
    padding: 15px 20px;
    transition: color .3s ease, background .3s ease;
}
.btn-main:hover {
    background: var(--color-black) 
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11.33 10.28'%3E%3Cpath d='m11.33,5.14l-5.17,5.14-.96-.96,3.57-3.51H0v-1.34h8.77L5.2.96l.96-.96,5.17,5.14Z' fill='%23000000'/%3E%3C/svg%3E") 
    no-repeat 
    right 20px center 
    / 15px;
    background-color: var(--color-white);
    color: var(--color-black);
}
.btn-main.btn-big {
    max-width: 290px;
    width: 100%;
}
.btn-main.btn-white {
    color: var(--color-black);
    background: var(--color-white) 
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11.33 10.28'%3E%3Cpath d='m11.33,5.14l-5.17,5.14-.96-.96,3.57-3.51H0v-1.34h8.77L5.2.96l.96-.96,5.17,5.14Z' fill='%23000000'/%3E%3C/svg%3E") 
    no-repeat 
    right 20px center 
    / 15px;
    border-color: var(--color-black);
}
.btn-main.btn-white:hover {
    color: var(--color-white);
    background: var(--color-black) 
                url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11.33 10.28'%3E%3Cpath d='m11.33,5.14l-5.17,5.14-.96-.96,3.57-3.51H0v-1.34h8.77L5.2.96l.96-.96,5.17,5.14Z' fill='%23ffffff'/%3E%3C/svg%3E") 
                no-repeat 
                right 20px center 
                / 15px;
}
.btn-main.btn-blue {
    border: 1px solid var(--color-blue);
    background-color: var(--color-white);
    color: var(--color-blue);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11.33 10.28'%3E%3Cpath d='m11.33,5.14l-5.17,5.14-.96-.96,3.57-3.51H0v-1.34h8.77L5.2.96l.96-.96,5.17,5.14Z' fill='%230072b0'/%3E%3C/svg%3E");
}
.btn-main.btn-blue:hover {
    border: 1px solid var(--color-black);
    color: var(--color-white);
    background-color: var(--color-black);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11.33 10.28'%3E%3Cpath d='m11.33,5.14l-5.17,5.14-.96-.96,3.57-3.51H0v-1.34h8.77L5.2.96l.96-.96,5.17,5.14Z' fill='%23ffffff'/%3E%3C/svg%3E");
}
.btn-round-blue {
    display: flex;
    background-color: transparent;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-blue);
    justify-content: center;
    align-items: center;
    fill: var(--color-blue);
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11.33 10.28'%3E%3Cpath d='m11.33,5.14l-5.17,5.14-.96-.96,3.57-3.51H0v-1.34h8.77L5.2.96l.96-.96,5.17,5.14Z' fill='%230072B0'/%3E%3C/svg%3E") no-repeat center / 15px;;
}
.btn-round-blue:hover {
    background: var(--color-blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11.33 10.28'%3E%3Cpath d='m11.33,5.14l-5.17,5.14-.96-.96,3.57-3.51H0v-1.34h8.77L5.2.96l.96-.96,5.17,5.14Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat center / 15px;
}
.btn-round-white {
    display: flex;
    background-color: transparent;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-white);
    justify-content: center;
    align-items: center;
    background: var(--color-blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11.33 10.28'%3E%3Cpath d='m11.33,5.14l-5.17,5.14-.96-.96,3.57-3.51H0v-1.34h8.77L5.2.96l.96-.96,5.17,5.14Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat center / 15px;
}
.btn-round-white:hover {
    background: var(--color-white);
    background: var(--color-white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11.33 10.28'%3E%3Cpath d='m11.33,5.14l-5.17,5.14-.96-.96,3.57-3.51H0v-1.34h8.77L5.2.96l.96-.96,5.17,5.14Z' fill='%230072B0'/%3E%3C/svg%3E") no-repeat center / 15px;
}
.btn-round-white-bg {
    display: flex;
    background-color: var(--color-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-white);
    background: var(--color-white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11.33 10.28'%3E%3Cpath d='m11.33,5.14l-5.17,5.14-.96-.96,3.57-3.51H0v-1.34h8.77L5.2.96l.96-.96,5.17,5.14Z' fill='%230072B0'/%3E%3C/svg%3E") no-repeat center / 15px;
    justify-content: center;
    align-items: center;
}
.btn-round-white-bg:hover {
    background: var(--color-blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11.33 10.28'%3E%3Cpath d='m11.33,5.14l-5.17,5.14-.96-.96,3.57-3.51H0v-1.34h8.77L5.2.96l.96-.96,5.17,5.14Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat center / 15px;
}
.btn-newsletter {
    background-color: var(--color-black) !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-image: url("data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgMTguODMgMTYuNTEiPjxwYXRoIGQ9Im0xMC40OCwwbDguMzUsOC4yNS04LjMyLDguMjYtLjk4LTEuMDEsNi42NS02LjU0SDB2LTEuNGgxNi4xN0w5LjQ5Ljk4bC45OC0uOThaIiBzdHlsZT0iZmlsbDojZmZmOyIvPjwvc3ZnPg==");
    background-size: calc(0.75rem + ((1vw - 0.225rem) * 0.5128));
    background-repeat: no-repeat;
    background-position: center;
}
.btn-share {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px 50px;
    border-bottom: 1px solid var(--color-blue);
    color: var(--color-blue);
}
.btn-share::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2014.2%2015.06%22%3E%3Cpath%20d%3D%22m11.5%2C9.68c-.87%2C0-1.64.41-2.13%2C1.05l-4.14-2.31c.1-.28.15-.58.15-.89s-.05-.61-.15-.89l4.13-2.31c.49.64%2C1.27%2C1.06%2C2.14%2C1.06%2C1.48%2C0%2C2.69-1.21%2C2.69-2.69s-1.21-2.69-2.69-2.69-2.69%2C1.21-2.69%2C2.69c0%2C.31.05.61.15.89l-4.13%2C2.31c-.49-.64-1.27-1.06-2.14-1.06-1.48%2C0-2.69%2C1.21-2.69%2C2.69s1.21%2C2.69%2C2.7%2C2.69c.87%2C0%2C1.65-.42%2C2.14-1.06l4.13%2C2.31c-.1.28-.16.58-.16.9%2C0%2C1.48%2C1.21%2C2.69%2C2.69%2C2.69s2.69-1.21%2C2.69-2.69-1.21-2.69-2.7-2.69Zm0-8.83c1.02%2C0%2C1.85.83%2C1.85%2C1.85s-.83%2C1.85-1.85%2C1.85-1.85-.83-1.85-1.85.83-1.85%2C1.85-1.85ZM2.7%2C9.38c-1.02%2C0-1.85-.83-1.85-1.85s.83-1.85%2C1.85-1.85%2C1.85.83%2C1.85%2C1.85-.83%2C1.85-1.85%2C1.85Zm8.81%2C4.84c-1.02%2C0-1.85-.83-1.85-1.85s.83-1.85%2C1.85-1.85%2C1.85.83%2C1.85%2C1.85-.83%2C1.85-1.85%2C1.85Z%22%20style%3D%22fill%3A%230072b0%3B%22/%3E%3C/svg%3E") no-repeat center / contain;
}
.btn-back {
    fill: var(--color-black);
}
.btn-back:hover {
    fill: var(--color-blue);
    color: var(--color-blue);
}
/************************************/
.filter::after {
    content: '';
    width: 1em;
    height: 1em;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11.33 10.28'%3E%3Cpath d='m11.33,5.14l-5.17,5.14-.96-.96,3.57-3.51H0v-1.34h8.77L5.2.96l.96-.96,5.17,5.14Z' fill='%23000000'/%3E%3C/svg%3E") no-repeat center / 15px;
    transition: transform .3s ease;
}
.filter {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 0;
    border: none;
    background: none;
    text-transform: uppercase;
    transition: color .3s ease;
}
.filter:hover {
    color: var(--color-blue);
}
.filter:hover::after {
    transform: translateX(5px);
}
/************************************/
.facetwp-load-more {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 25px;
    font-size: 1.125rem;
    text-transform: uppercase;
    background: var(--color-black);
    color: var(--color-white);
    border: 1px solid var(--color-black);
    border-radius: 3rem;
    padding: 10px 25px;
    transition: background .3s ease, color .3s ease;
}
.facetwp-load-more:hover {
    background: var(--color-white);
    color: var(--color-black);
}
.facetwp-load-more::after {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10.91 12'%3E%3Cpolygon points='9.89 5.49 6.17 9.28 6.17 0 4.74 0 4.74 9.28 1.02 5.49 0 6.51 5.46 12 10.91 6.51 9.89 5.49' style='fill:%23fff;'/%3E%3C/svg%3E") no-repeat center / 15px;
    transition: background .3s ease;
}
.facetwp-load-more:hover::after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10.91 12'%3E%3Cpolygon points='9.89 5.49 6.17 9.28 6.17 0 4.74 0 4.74 9.28 1.02 5.49 0 6.51 5.46 12 10.91 6.51 9.89 5.49' style='fill:%23000;'/%3E%3C/svg%3E") no-repeat center / 15px;
}
/************************************/
.link {
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    transition: color .3s ease;
}
.link:hover {
    color: var(--color-blue);
}
.link::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-bottom: 1px solid var(--color-blue);
    transform: scaleX(1);
    transition: transform .3s ease;
    transform-origin: right;
}
.link:hover::before {
    transform: scaleX(0);
}
.link-lt:hover {
    color: var(--color-white);
}
.link-lt::before {
    border-color: var(--color-white);
}
.btn-back-blog {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px 50px;
    border-bottom: 1px solid var(--color-blue);
    color: var(--color-blue);
}
.btn-back-blog::before {
    content: '';
    display: inline-block;
    width: 3em;
    height: 1em;
    background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2057.73%2015.96%22%3E%3Cpolygon%20points%3D%220%207.98%208.03%2015.96%208.98%2015.01%202.56%208.67%2057.73%208.67%2057.73%207.31%202.56%207.31%208.95%201%208%200%200%207.98%22%20style%3D%22fill%3A%230072B0%3B%22/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}
/* END BUTTONS */
/* SCROLLBARS */
body {
    overflow: hidden;
}
html, body, .site {
    overflow-x: hidden;
}
::-webkit-scrollbar {
	width: 10px;
}
::-webkit-scrollbar-track {
	background: transparent;
}
::-webkit-scrollbar-thumb {
	background-color: var(--color-blue);
	border-radius: 6px;
}
/* END SCROLLBARS */
/* HEADER */
html {
    --pt-calc: 0px;
    --maskTop: calc(var(--pt-calc) + 70px);
}
/* .pt-calc, #smooth-content > .wrapper:not(#wrapper-footer), body > .wrapper:not(#wrapper-footer) {
    padding-top: var(--pt-calc, 0px);
} */
/* LANG BTN */
.btn-lang {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: auto;
    gap: 10px;
    border: 1px solid var(--color-black);
    border-radius: 5rem;
    text-transform: uppercase;
    text-align: justify;
    padding: 5px 15px;
    box-shadow: none!important;
}
.light .btn-lang {
    border-color: var(--color-white);
    color: var(--color-white);
}
.btn-lang.dropdown-toggle::after {
    border: none;
    width: 12px;
    height: 12px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14.48 7.95'%3E%3Cpolygon points='7.24 7.95 0 .71 .71 0 7.24 6.53 13.78 0 14.48 .71 7.24 7.95' fill='black'/%3E%3C/svg%3E") no-repeat center center;
}
.light .btn-lang.dropdown-toggle::after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14.48 7.95'%3E%3Cpolygon points='7.24 0 14.48 7.24 13.78 7.95 7.24 1.41 .71 7.95 0 7.24 7.24 0' fill='black'/%3E%3C/svg%3E") no-repeat center center;
}
.btn-lang.dropdown-toggle.show::after {
    transform: rotate(180deg);
}
.lang-dropdown .dropdown-menu.show {
    min-width: unset;
    width: 100%;
    border: 1px solid var(--color-black);
    border-radius: 5rem;
    text-align: center;
    text-transform: uppercase;
    overflow: hidden;
}
.lang-dropdown .dropdown-menu li a {
    background: transparent!important;
}
#wrapper-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10px;
    z-index: 1042;
    transition: background .3s, transform .3s, opacity .3s, visibility .3s, backdrop-filter .3s, padding .3s;
    -webkit-transition-timing-function: ease-in-out;
         -o-transition-timing-function: ease-in-out;
            transition-timing-function: ease-in-out;
    will-change: transform;
    background: var(--color-white);
}
#wrapper-navbar.open {
    background: transparent!important;
}
#wrapper-navbar.hidden {
    transform: translateY(-100%);
}
@media(min-width: 576px) {
    #wrapper-navbar {
        padding: 25px;
    }
}
@media(min-width: 744px) {
    #wrapper-navbar {
        padding: 25px 30px;
    }
}
@media(min-width: 1200px) {
    #wrapper-navbar {
        padding: 25px 40px;
    }
}
@media(min-width: 1800px) {
    #wrapper-navbar {
        padding: 30px 72px;
    }
    #wrapper-navbar.scrolled {
        padding: 20px 72px;
    }
}
#wrapper-navbar .navbar-nav .nav-link {
    text-transform: uppercase;
    color: var(--color-black);
    padding: 20px 0;
    margin: 0 20px;
    border-bottom: 2px solid transparent;
    transition: color .3s ease, border .3s ease;
    font-size: 0.9375rem; /* 15px */
    line-height: 1;
}
@media(min-width: 1600px) {
    #wrapper-navbar .navbar-nav .nav-link {
        margin: 0 30px;
    }
}
#wrapper-navbar .navbar-nav .nav-link:hover {
    color: var(--color-blue);
}
#wrapper-navbar .navbar-nav .current-menu-item .nav-link, #wrapper-navbar .navbar-nav .nav-link:hover {
    border-bottom: 2px solid var(--color-blue);
    border-bottom: 2px solid var(--color-blue);
}
/* MENU BUTTON */
#menu-button {
    position: relative;
    width: 50px;
    height: 22px;
    background: transparent;
    border: none;
    outline: none!important;
    -webkit-box-shadow: none!important;
            box-shadow: none!important;
}
#menu-button .menu-button-inner, #menu-button .menu-button-inner::before, #menu-button .menu-button-inner::after {
    height: 2px;
    width: 50px;
    background-color: var(--color-black);
    position: absolute;
    left: 0;
    -webkit-transition-duration: 0.3s;
         -o-transition-duration: 0.3s;
            transition-duration: 0.3s;
}
.menu-button-inner {
    top: 11px;
    -webkit-transition: background-color .5s;
    -o-transition: background-color .5s;
    transition: background-color .5s;
}
.menu-button-inner:before {
    content: "";
    top: -10px;
}
.menu-button-inner:after {
    content: "";
    top: 10px;
}
.menu-button-inner::before, .menu-button-inner::after {
    -webkit-transition: background-color .5s, top 0.3s 0.3s, -webkit-transform 0.3s;
    transition: background-color .5s, top 0.3s 0.3s, -webkit-transform 0.3s;
    -o-transition: background-color .5s, transform 0.3s, top 0.3s 0.3s;
    transition: background-color .5s, transform 0.3s, top 0.3s 0.3s;
    transition: background-color .5s, transform 0.3s, top 0.3s 0.3s, -webkit-transform 0.3s;
}
#menu-button .menu-button-inner {
    -webkit-transition-duration: 0.3s;
         -o-transition-duration: 0.3s;
            transition-duration: 0.3s;
    /* transition-delay: 0.3s; */
}
#menu-button.open .menu-button-inner {
    -webkit-transition-duration: 0.1s;
         -o-transition-duration: 0.1s;
            transition-duration: 0.1s;
    -webkit-transition-delay: 0.3s;
         -o-transition-delay: 0.3s;
            transition-delay: 0.3s;
    background: transparent!important;
}
#menu-button.open .menu-button-inner::before {
    background-color: var(--color-black)!important;
    -webkit-transition: background-color .5s, top 0.3s, -webkit-transform 0.3s 0.3s;
    transition: background-color .5s, top 0.3s, -webkit-transform 0.3s 0.3s;
    -o-transition: background-color .5s, top 0.3s, transform 0.3s 0.3s;
    transition: background-color .5s, top 0.3s, transform 0.3s 0.3s;
    transition: background-color .5s, top 0.3s, transform 0.3s 0.3s, -webkit-transform 0.3s 0.3s;
    top: 0px;
    -webkit-transform: rotateZ(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotateZ(-45deg);
}
#menu-button.open .menu-button-inner::after {
    background-color: var(--color-black)!important;
    -webkit-transition: background-color .5s, top 0.3s, -webkit-transform 0.3s 0.3s;
    transition: background-color .5s, top 0.3s, -webkit-transform 0.3s 0.3s;
    -o-transition: background-color .5s, top 0.3s, transform 0.3s 0.3s;
    transition: background-color .5s, top 0.3s, transform 0.3s 0.3s;
    transition: background-color .5s, top 0.3s, transform 0.3s 0.3s, -webkit-transform 0.3s 0.3s;
    top: 0px;
    -webkit-transform: rotateZ(45deg);
        -ms-transform: rotate(45deg);
            transform: rotateZ(45deg);
}
@media (hover: hover) {
    #menu-button.open:hover .menu-button-inner::before, #menu-button.open:hover .menu-button-inner::after {
        background-color: var(--color-black);
    }
    #menu-button:hover:not(.open) .menu-button-inner, #menu-button:hover .menu-button-inner::before, #menu-button:hover .menu-button-inner::after {
        background-color: var(--color-blue);
    }
}
/* MENU WRAPPER */
#offcanvasMenu {
    height: 100vh;
    z-index: 1041;
    transition: transform 1s cubic-bezier(0.215, 0.610, 0.355, 1);
}
#offcanvasMenu .container-fluid {
    /* overflow-y: auto; */
    overflow-y: hidden;
    position: relative;
    height: 100vh;
    background: var(--color-blue);
}
#offcanvasMenu .navbar-nav .nav-link {
    position: relative;
    display: inline-block;
    font-family: var(--font-b);
    font-size: 1.25rem;
    line-height: 110%;
    text-transform: uppercase;
    color: var(--color-white);
    padding: 0;
    margin-bottom: 0.5rem;
    overflow: hidden;
}
/* DROPDOWN */
.dropdown-megamenu {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    background: var(--color-blue);
    transform: translateY(0);
    opacity: 0;
    max-height: calc(100vh - var(--pt-calc));
    overflow-y: auto;
    overflow-x: hidden;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
}
.dropdown-megamenu.active {
    transform: translateY(100%);
    opacity: 1;
    visibility: visible;
}
.nav-col ul, #collapse-container ul {
    list-style: none;
    padding: 0;
}
.nav-col li {
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    transition: border .3s ease;
}
/* .nav-col li:has(.side-nav-item:not(.collapsed)), .nav-col li:hover {
    border-top: 1px solid var(--color-white);
    border-bottom: 1px solid var(--color-white);
} */
.nav-col .side-nav-item {
    display: flex;
    gap: 20px;
    align-items: center;
    text-transform: uppercase;
    color: var(--color-white);
    background: transparent;
    border: none!important;
    box-shadow: none!important;
    outline: none!important;
    padding: 15px 0;
    font-size: 1.25rem;
}
.nav-col .side-nav-item::after {
    content: '';
    width: 1.5em;
    height: 1.5em;
    border: 1px solid var(--color-white);
    border-radius: 50%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11.33 10.28'%3E%3Cpath d='m11.33,5.14l-5.17,5.14-.96-.96,3.57-3.51H0v-1.34h8.77L5.2.96l.96-.96,5.17,5.14Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat center / 15px;
    transition: background .3s ease, transform .3s ease, opacity .3s ease;
    transform: translateX(-10%);
}
.nav-col .side-nav-item:hover {
    color: var(--color-white);
}
.nav-col .side-nav-item:hover::after, .nav-col .side-nav-item:not(.collapsed)::after {
    transform: translateX(0);
    background: var(--color-white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11.33 10.28'%3E%3Cpath d='m11.33,5.14l-5.17,5.14-.96-.96,3.57-3.51H0v-1.34h8.77L5.2.96l.96-.96,5.17,5.14Z' fill='%230072B0'/%3E%3C/svg%3E") no-repeat center / 15px;
}
#collapse-container::-webkit-scrollbar {
    width: 5px;
}
#collapse-container::-webkit-scrollbar-track {
    background: transparent;
}
#collapse-container::-webkit-scrollbar-thumb {
    background-color: var(--color-white);
    border-radius: 6px;
}
#collapse-container ul {
    display: flex;
    flex-wrap: wrap;
}
#collapse-container ul li {
    width: 50%;
}
@media(min-width: 1200px) {
    .dropdown-megamenu .nav-col {
    border-right: 1px solid var(--color-white);
}
    .dropdown-megamenu {
        max-height: unset;
    }
    #collapse-container {
        max-height: calc(97vh - var(--pt-calc));
        overflow-y: auto;
        overflow-x: hidden;
    }
    #collapse-container ul li {
        width: 33%;
    }
}
@media(min-width: 1800px) {
    #collapse-container ul li {
        width: 20%;
    }
}
.btn-search {
    display: inline-block;
    width: 24px;
    height: 24px;
}
.btn-search svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .3s ease;
}
.btn-search:hover svg {
    transform: scale(1.1);
}
/* END HEADER */
/* VCarousel */
.vcarousel-container {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow: hidden;
}
.vcarousel-item {
    position: relative;
    margin: 0;
    padding: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    /* cursor: pointer; */
    width: calc(17.625rem + ((1vw - 0.225rem) * 6.2821));
    /* width: 100%; */
    max-width: 445px;
}
.vcarousel-item>.inner-container,
.product>.inner-container {
    max-width: 100%;
}
@media (min-width: 1200px) {
    .vcarousel-item>.inner-container,
    .product>.inner-container {
        /* width: calc(17.625rem + ((1vw - 0.225rem) * 6.2821));  282 - 380 */
        width: 445px;
        max-width: 100%;
    }
}
@media (min-width: 1366px) {
    .vcarousel-item>.inner-container,
    .product>.inner-container {
        width: calc(21.175rem + ((1vw - 0.85375rem) * 5.4152));
    }
}
@media (min-width: 1800px) {
    .vcarousel-item>.inner-container,
    .product>.inner-container {
        width: 445px;
    }
}
.bullets {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.counter-bullet {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    background: var(--color-white);
    border-radius: 50%;
    margin: 0 0.2rem;
    opacity: 0.5;
}
.counter-bullet.active {
    opacity: 1;
}
.vcarousel-bullet-counter {
    position: absolute;
    display: inline-block;
    bottom: 3%;
    left: 50%;
    z-index: 1;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.vcarousel-bullet-counter .counter-bullet {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 1.5px solid var(--color-blue);
    border-radius: 100%;
}
.vcarousel-bullet-counter .counter-bullet.active {
    background: var(--color-blue);
}
.vcarousel-index {
    width: 6rem;
    height: 6rem;
    overflow: hidden;
    margin-right: 0.5rem;
    cursor: pointer;
}
.vcarousel-index img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.vcarousel-nav>button,
.vcarousel-nav-project>button {
    width: 45px;
    height: 45px;
    padding: 0.8rem;
    background: transparent;
    border-radius: 50%;
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.btn-swiper-cat:hover {
    color: var(--color-blue);
}
.btn-swiper-cat.color-white:hover {
    color: var(--color-black);
}
/* END VCarousel */
/* VCarousel Horizontal */
#product-gallery #boxes .swiper-slide {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
}
#product-gallery #boxes .swiper-slide img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}
#product-gallery .thumbBox {
    overflow: hidden;
}
#product-gallery .swiper-scrollbar {
    left: 0;
    right: 0;
    width: 100%;
}
/* END VCarousel Horizontal */
/* VSlider */
.vslider-wrapper {
    position: relative;
    width: 100%;
    height: auto;
}
.vslider-container {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    width: 100%;
    height: 100%;
}
.vslider-item {
    position: relative;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
/* CONTACT */
.acceptance .wpcf7-list-item label {
    display: flex;
    width: 100%;
    gap: 10px;
}
.acceptance.newsletter{
    display: inline;
}
.wpcf7 {
    max-width: 100%;
}
.wpcf7 .wpcf7-form p {
    margin-bottom: 0;
}
.wpcf7 .wpcf7-form label {
    width: 100%;
}
.wpcf7 select{
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18.83 16.51'><path d='M0 6.03L8.25 14.38 16.51 6.06l-1.01-.98-6.54 6.65V0h-1.4v11.17L1.01 5.08 0 6.03z' fill='%23000000'/></svg>");
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: right;
}
.wpcf7 select:focus {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18.83 16.51'><path d='M0 10.48L8.25 2.13 16.51 10.45l-1.01.98-6.54-6.65V16.51h-1.4V4.83L1.01 11.43 0 10.48z' fill='%23000000'/></svg>");
}
.wpcf7 input[type=file]:focus {
    box-shadow: unset !important;
    border-color: unset !important;
}
.wpcf7 input[type=text], .wpcf7 input[type=email], .wpcf7 input[type=tel], .wpcf7 textarea, .wpcf7 select {
    width: 100% !important;
    border: none !important;
    border-radius: 0;
    color: var(--color-black) !important;
    background-color: transparent!important;
    outline: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    font-size: calc(0.875rem + ((1vw - 0.225rem) * 0.5208)); /* 14 - 16 */
    font-family: var(--font-b);
    padding-left: 0 !important;
    /* margin: -10px auto -10px auto !important; */
}
@media (min-width: 744px) {
    .wpcf7 input[type=text], .wpcf7 input[type=email], .wpcf7 input[type=tel], .wpcf7 textarea, .wpcf7 select {
        font-size: 16px;
    }
}
.layout-contact .wpcf7 input[type=text], .layout-contact .wpcf7 input[type=email], .layout-contact .wpcf7 input[type=tel], .layout-contact .wpcf7 textarea, .layout-contact .wpcf7 select {
    border-bottom: 1px solid var(--color-black) !important;
}
.layout-contact .wpcf7 .wpcf7-form label {
    width: 100%;
}
.layout-contact .wpcf7-list-item-label {
    justify-content: start;
    align-items: start;
}

.wpcf7 input[type=text]::placeholder,
.wpcf7 input[type=email]::placeholder,
.wpcf7 input[type=tel]::placeholder,
.wpcf7 textarea::placeholder {
    color: var(--color-black);
    font-family: var(--font-b);
}
.wpcf7-list-item {
    margin: 0;
}
.wpcf7-form .wpcf7-acceptance input[type="checkbox"] {
    width: calc(0.625rem + ((1vw - 0.225rem) * 0.7051)); /* 10 - 21 */
    height: calc(0.625rem + ((1vw - 0.225rem) * 0.7051)); /* 10 - 21 */
    border-radius: 50%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    border: 1px solid var(--color-black);
}
iframe {
    height: calc(25rem + ((1vw - 0.225rem) * 52.0833)); /* 400 */
}
@media (min-width: 744px) {
    iframe {
        height: calc(37.5rem + ((1vw - 0.465rem) * 18.9394)); /* 600 */
    }
}
@media (min-width: 1800px) {
    iframe {
        height: 50rem; /* 800 */
    }
}

/* contact forms */
.contact-links__list {
    list-style: none;
    display: flex;
    gap: 2rem;
    padding: 0;
    margin: 0 0 1rem 0;
}
.contact-links__link {
    display:inline-block;
    text-decoration:none;
    text-transform: uppercase;
    font-weight:600;
    color:var(--color-black) !important;
    padding: 0;
    position:relative;
    background: transparent!important;
}
.contact-links__link::after {
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    height:2px;
    width:0;
    background: var(--color-blue);
    transition:width .2s;
}
.contact-links__link:hover::after {
    width:100%;
}
.contact-links__link.active::after {
    width:100%;
}
.contact-panel.is-hidden {
    display:none;
}
/* Hide the default checkbox */
.your-acceptance input[type=checkbox] {
    display: none;
}
.wpcf7-list-item-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
/* Create a custom toggle switch */
.btn-toggle {
    position: relative;
}
.your-acceptance .wpcf7-list-item-label .btn-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 1px solid var(--color-black);
    background-color: transparent;
    -webkit-transition: background-color 0.3s ease-in-out;
    -o-transition: background-color 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
    vertical-align: middle;
    cursor: pointer;
}
/* Create the toggle indicator */
.your-acceptance .wpcf7-list-item-label .btn-toggle:after {
    content: "";
    display: inline-block;
    width: 65%;
    height: 65%;
    border-radius: 50%;
    background-color: var(--color-black);
    -webkit-transition: left 0.3s ease-in-out;
    -o-transition: left 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transform: scale(0);
}
/* Change styles when checkbox is checked */
/* .your-acceptance input[type=checkbox]:checked + .wpcf7-list-item-label .btn-toggle {
    background-color: var(--color-black);
    border-color: var(--color-blue);
} */
.your-acceptance input[type=checkbox]:checked + .wpcf7-list-item-label .btn-toggle:after {
    transform: scale(1);
}
@media(min-width: 1200px) {
    .your-acceptance .wpcf7-list-item-label .btn-toggle {
        width: 30px;
        height: 30px;
    }
}
/* END CONTACT */
/* CTA */
.cta-container {
    border-radius: 20px;
    width: 100%;
    background: rgb(0,114,176);
    background: linear-gradient(140deg, rgba(0,114,176,1) 0%, rgba(0,89,128,1) 50%, rgba(0,89,128,1) 100%);
}
/* END CTA */
/* FILTERS BAR */
.filters-container .dropdown-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    background: var(--color-white);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s, transform .3s;
    transition-timing-function: ease;
    border-bottom: 1px solid var(--color-blue);
    padding-bottom: 1rem;
    overflow-y: auto;
}
.filters-container .dropdown-container::-webkit-scrollbar {
	width: 5px;
}
.filters-container .dropdown-container::-webkit-scrollbar-track {
	background: transparent;
}
.filters-container .dropdown-container::-webkit-scrollbar-thumb {
	background-color: var(--color-blue);
	border-radius: 6px;
}
.filters-container .dropdown-container.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(50%);
}
.filters-container.product-filters .facetwp-radio {
    width: 49.1%;
    position: relative;
    display: inline-block;
    padding: 0 0 5px;
    margin: 0 0 1rem;
    background: transparent !important;
    color: var(--color-blue);
    font-family: var(--font-h);
    text-transform: uppercase;
}
.facetwp-radio.checked {
    color: var(--color-blue);
}
.filters-container.product-filters .facetwp-display-value {
    position: relative;
    display: inline-block;
    padding-right: 5px;
}
.filters-container.product-filters .facetwp-radio .facetwp-display-value::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid var(--color-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}
.filters-container.product-filters .facetwp-radio .facetwp-display-value:hover::before {
    transform: scaleX(1);
}
.filters-container.product-filters .facetwp-radio .facetwp-counter {
    font-size: 0.875rem;
    vertical-align: top;
}
.filters-container .facetwp-facet.facetwp-type-radio {
    margin: 0;
    display: none;
    flex-wrap: wrap;
    width: 100%;
}
.filters-container .dropdown-container.active .facetwp-facet.facetwp-type-radio, .filters-container:not(.product-filters) .facetwp-facet.facetwp-type-radio  {
    display: flex;
}
.filters-container.project-filters .facetwp-radio {
    position: relative;
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
    padding: 0;
    margin-bottom: 1rem;
    margin-right: 2.25rem;
    border: none;
    border-radius: 5px;
    background: transparent!important;
    text-transform: uppercase;
    transition: color .3s ease;
}
.filters-container.project-filters .facetwp-radio:hover {
    color: var(--color-blue);
}
.filters-container.project-filters .facetwp-radio:hover::after {
    content: '';
    width: 1em;
    height: 1em;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11.33 10.28'%3E%3Cpath d='m11.33,5.14l-5.17,5.14-.96-.96,3.57-3.51H0v-1.34h8.77L5.2.96l.96-.96,5.17,5.14Z' fill='%230072B0'/%3E%3C/svg%3E") no-repeat center / 15px;
    transition: transform .3s ease;
}
.filters-container.project-filters .facetwp-radio::after {
    content: '';
    width: 1em;
    height: 1em;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11.33 10.28'%3E%3Cpath d='m11.33,5.14l-5.17,5.14-.96-.96,3.57-3.51H0v-1.34h8.77L5.2.96l.96-.96,5.17,5.14Z' fill='%23000000'/%3E%3C/svg%3E") no-repeat center / 15px;
    transition: transform .3s ease;
}
.filters-container.project-filters .facetwp-radio:hover::after {
    transform: translateX(5px);
}
.filters-container.project-filters .facetwp-radio .facetwp-counter {
    display: none!important;
}
.filters-container.project-filters .facetwp-radio.checked::before {
    content: '';
    color: var(--color-blue);
    position: absolute;
    border-bottom: 1px solid var(--color-blue);
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 0;
}
.facetwp-radio.checked .facetwp-display-value {
    color: var(--color-blue);
}
.filters-container.project-filters .facetwp-radio.checked::after{
    content: '';
    width: 1em;
    height: 1em;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11.33 10.28'%3E%3Cpath d='m11.33,5.14l-5.17,5.14-.96-.96,3.57-3.51H0v-1.34h8.77L5.2.96l.96-.96,5.17,5.14Z' fill='%230072B0'/%3E%3C/svg%3E") no-repeat center / 15px;
    transition: transform .3s ease;
}
@media(min-width: 1200px) {
    .filters-container.product-filters .facetwp-radio {
        width: 20.1%;
    }
    .filters-container.project-filters .facetwp-radio {
        width: auto;
        margin-left: 60px;
        justify-content: start;
    }
    .filters-container .facetwp-facet.facetwp-type-radio {
        display: flex;
    }
}
/* END FILTERS BAR */
/* FOOTER */

.footer-list {
    list-style: none;
    padding-inline-start: 0;
    margin: 0;
}
.social-icon {
    display: inline-block;
    height: 25px;
    width: auto;
    transition: transform .3s ease;
}
.social-icon:hover {
    transform: scale(1.2);
}
.social-icon svg {
    display: block;
    width: auto;
    height: 100%;
    object-fit: contain;
}
.wpcf7-list-item-label {
    vertical-align: top;
}
.newsletter .wpcf7-list-item-label{
    display: inline;
}
/* END FOOTER */
/* POLICY TEMPLATE */
.the_content h6 .the_content h5,
.the_content h4 .the_content h3 .the_content h2 .the_content h1 {
    font-size: calc(1.375rem +((1vw - 0.225rem)* 0.2564));
    line-height: 1.4;
    margin: 3rem 0;
}
.the_content p {
    margin-bottom: 20px;
}
.the_content h2 {
    margin-bottom: 30px;
}
.the_content h4 {
    margin-bottom: 20px;
}
.the_content h5 {
    margin-bottom: 20px;
}
.the_content ul {
    list-style: inside;
}
.the_content img {
    border-radius: 20px !important;
    margin: 55px 0;
    width: 100%;
}
@media (min-width: 1200px) {
    .the_content img {
        margin: 80px 0;
    }
}
/* table changes */
.the_content table, .the_content table tr {
    border: none;
}
.the_content table td:last-child {
    padding: 0 0 0 10px;
}
.the_content table td:first-child {
    padding: 0 10px 0 0;
}
.the_content table td {
    border: none;
    padding: 0 10px;
    margin: 55px 0;
}
.the_content table img {
    border-radius: 20px;
}
@media (max-width: 744px) {
    .the_content table tr {
        display: flex;
        flex-direction: column;
    }
    .the_content table td {
        margin: 0;
    }
    .the_content table td:last-child {
        padding: 0;
        margin: 0 0 50px 0;
    }
    .the_content table td:first-child {
        padding: 0;
        margin: 50px 0 20px 0;
    }
    .the_content table img {
        margin: 0;
    }
}
/* POLICY TEMPLATE */
/* BLOG */
.first-post a {
    color: var(--color-white);
}
.first-post .brd-b {
    border-top: 1px solid var(--color-white);
}
.first-post p, .first-post h6 {
    color: var(--color-white); 
}
.ratio-60{
    position: relative;
    aspect-ratio: 2 / 1.2;
}
.ratio-49{
    padding-bottom: 49%;
    position: relative;
}
.ratio-120 {
    padding-bottom: 120%;
    position: relative;   
}
.ratio-66 {
    /* padding-bottom: 66%; */
    position: relative;
    aspect-ratio: 2 / 1.3;
}
.ratio-120 img, .ratio-49 img, .ratio-66 img, .ratio-60 img {
    object-fit: cover;     
    position: absolute;    
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;   
}
/* PROJECTS */
.layout-projects .img-container img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
@media (min-width: 744px) {
    .layout-projects .img-container img {
        height: 520px;
    }
}
/* END PROJECTS */
/* SINGLE PROJECT */
.layout-single-project .img_top {
    height: 810px;
    object-fit: cover;
}
/* END SINGLE PROJECT */
/* Responsive xmargin*/
.xmargin-res {
    padding-left: 0;
    padding-right: 0;
}
.xmargin-res > .row {
    padding-left: 0;
    padding-right: 0;
    margin: 0 auto;
    width: 100%;
}
@media (min-width: 744px) {
    .xmargin-res {
        padding-left: 30px; 
        padding-right: 30px;
    }
    .xmargin-res > .row {
        padding-left: 0;
        padding-right: 0;
        margin: 0 auto;
        width: 100%;
    }
}
@media (min-width: 1200px) {
    .xmargin-res {
        padding-left: 74px; 
        padding-right: 74px;
    }
    .xmargin-res > .row {
        padding-left: 50px;
        padding-right: 50px;
        margin: 0 auto;
        width: 100%;
    }
}
/* END Responsive xmargin*/
/* needed */
.justify-items-center-res {
    justify-items: center;
}
@media (min-width: 744px) {
    .justify-items-center-res {
        justify-items: start;
    }
    
}
@media (max-width: 744px) {
    .container-fluid-mob {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-right: auto;
        margin-left: auto;
        width: 100%;
    }
}
/* ------------------   */
.to-top-btn {
    width: auto;
    height: 60px;
    border: 2px solid var(--color-blue);
    border-radius: 50px;
    display: inline-flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    background-color: var(--color-blue);
    cursor: pointer;
    padding: 0 20px;
    overflow: hidden;
    white-space: nowrap;
    text-wrap: nowrap;
    transition: background-color 0.3s ease, color 0.3s ease;
    transform: translate(-70%, -50%) rotate(-90deg);
    transform-origin: right;
}
.to-top-btn span {
    color: var(--color-white);
    transition: color 0.3s ease;
}
.to-top-btn::after {
    content: '';
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: contain;
}
.to-top-btn:hover {
    background-color: var(--color-white);
}
.to-top-btn:hover span {
    color: var(--color-blue);
}
.footer-arrow {
    transform: rotate(90deg);
    fill: var(--color-white);
    padding-bottom: 10px;
}
.to-top-btn:hover .footer-arrow {
    fill: var(--color-blue);
}
/* Contact Dropdown */
.select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}
.custom-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    cursor: pointer;
    background-color: white;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    transition: background-image 0.3s ease, transform 0.3s ease;
}

/* Όταν είναι σε focus, το βέλος περιστρέφεται */
.custom-select:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e%3cpath fill-rule='evenodd' transform='rotate(-180, 8, 8)' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
/* background from datasheets/brochures/certificates */
.page-id-1238, .page-id-1439, .page-id-2093, .page-id-2098, .page-id-2096, .page-id-2100 {
    background: var(--color-light-gray);
}
/* end background for pages */
/* DATASHEETS */
.filters-container .facetwp-facet-datasheet_search,
.filters-container .facetwp-facet-certificate_search,
.filters-container .facetwp-facet-brochure_search {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    background: var(--color-white);
    padding: 20px 40px;
    border-radius: 50rem;
}
.facetwp-facet.facetwp-facet-datasheet_search.facetwp-type-autocomplete .facetwp-autocomplete,
.facetwp-facet.facetwp-facet-certificate_search.facetwp-type-autocomplete .facetwp-autocomplete,
.facetwp-facet.facetwp-facet-brochure_search.facetwp-type-autocomplete .facetwp-autocomplete {
    width: 100%;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}
.filters-container .facetwp-autocomplete-update {
    width: 2em;
    height: 2em;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M24,22.43l-7.13-7.13c2.92-3.71,2.68-9.11-.74-12.53C12.45-.92,6.45-.92,2.76,2.76-.92,6.45-.92,12.45,2.76,16.13c1.79,1.79,4.16,2.77,6.68,2.77,2.15,0,4.19-.72,5.85-2.03l7.13,7.13,1.57-1.57ZM4.34,14.56c-2.82-2.82-2.82-7.41,0-10.22,1.41-1.41,3.26-2.11,5.11-2.11s3.7,.7,5.11,2.11c2.82,2.82,2.82,7.41,0,10.22-1.37,1.37-3.18,2.12-5.11,2.12-1.93,0-3.75-.75-5.11-2.12Z' style='fill:%230072b0;'/%3E%3C/svg%3E") no-repeat center / 24px;
    color: transparent;
    border: none !important;
    padding: 0;
}
.filters-container .fcomplete-wrap {
    max-width: 100%;
    width: calc(100% - 60px);
    transform: translateY(165%);
    border: none !important;
}
.view, .download {
    display: inline-flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}
.view img, .download img {
    height: 24px;
    width: auto;
}
.filters-container .clear-search {
    position: absolute;
    top: 50%;
    right: 12%;
    transform: translateY(-50%);
    width: 2em;
    height: 2em;
    border: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 28'%3E%3Cpath d='m14,0C6.28,0,0,6.28,0,14s6.28,14,14,14,14-6.28,14-14S21.72,0,14,0Zm7.1,20.58l-.71.71-6.58-6.58-6.58,6.58-.71-.71,6.58-6.58-6.58-6.58.71-.71,6.58,6.58,6.58-6.58.71.71-6.58,6.58,6.58,6.58Z'/%3E%3C/svg%3E") no-repeat center / 24px;
}
.filters-container:has(.fcomplete-hidden) .clear-search {
    display: none;
}
/* END DATASHEETS */
/* ------------------   */
/* Content-single */
/* Full size image*/
.layout-full_size_image .img_bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}
.layout-full_size_image .overlay-content {
    bottom: 0;
    z-index: 2;
}
.layout-full_size_image .image-overlay {
    background-color: rgba(0, 0, 0, 0.22);
    bottom: 0;
    z-index: 1; 
}
.layout-full_size_image .ratio-49 {
    padding-bottom: 100%;
    position: relative;   
}
@media (min-width: 992px) {
    .layout-full_size_image .ratio-49 {
        padding-bottom: 49%;
    }
}
.layout-full_size_image .ratio-49  img {
    object-fit: cover;     
    position: absolute;    
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;   
}
.layout-full_size_image .rad27 {
    border-radius: 0;
}
@media (min-width: 744px) {
    .layout-full_size_image .rad27 {
        border-radius: 27px;
    }
}
.layout-full_size_image .container-fluid-res {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
}
/* END Full size image*/
/* card grid */
.layout-card_grid .inner-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 20px;
}
/* card grid END*/
/* Values accordion */
.layout-image_with_accordion .accordion-item {
    background: transparent;
    border-bottom: 0;
}
.layout-image_with_accordion .accordion-body {
    padding: 0;
}
.layout-image_with_accordion .accordion .accordion-item:first-child .accordion-button {
    padding-top: 0 !important; 
}

.layout-image_with_accordion .accordion-button:not(.collapsed) {
    background-color: transparent !important;
    box-shadow: none !important;
    color: transparent !important;
}
.layout-image_with_accordion .accordion-button:not(.collapsed) .accordion-title,
.layout-image_with_accordion .accordion-button:not(.collapsed) .accordion-counter {
    color: var(--color-blue);
}
.layout-image_with_accordion .accordion-button:focus {
    box-shadow: none !important;
}
.layout-image_with_accordion .accordion-button::after {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMCAzMCI+PGNpcmNsZSBjeD0iMTUiIGN5PSIxNSIgcj0iMTQiIGZpbGw9IiMwMDcyYjAiIC8+PGNpcmNsZSBjeD0iMTUiIGN5PSIxNSIgcj0iMTIiIGZpbGw9IndoaXRlIiAvPjxyZWN0IHg9IjE0IiB5PSI2IiB3aWR0aD0iMiIgaGVpZ2h0PSIxOCIgZmlsbD0iIzAwNzJiMCIgLz48cmVjdCB4PSI2IiB5PSIxNCIgd2lkdGg9IjE4IiBoZWlnaHQ9IjIiIGZpbGw9IiMwMDcyYjAiIC8+PC9zdmc+');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 30px;
    height: 30px;
}
.layout-image_with_accordion .accordion-flush .accordion-item .accordion-button {
    border-radius: 0;
    border-bottom: 1px solid var(--color-blue);
}
.layout-image_with_accordion .accordion-button:not(.collapsed)::after {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMCAzMCI+PGNpcmNsZSBjeD0iMTUiIGN5PSIxNSIgcj0iMTQiIGZpbGw9IiMwMDcyYjAiIC8+PHJlY3QgeD0iNiIgeT0iMTQiIHdpZHRoPSIxOCIgaGVpZ2h0PSIyIiBmaWxsPSJ3aGl0ZSIgLz48L3N2Zz4=');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 30px;
    height: 30px;
}
.layout-image_with_accordion .accordion-button {
    background: transparent;
    transition: color .3s ease;
}
.layout-image_with_accordion .accordion-button:hover {
    color: var(--color-blue);
}
/* END Accordion */
/* Swiper Product Carousel */
.layout-products_carousel .img-container.round {
    border-radius: 15rem;
}
.layout-products_carousel .img-container.round::before {
    content: '';
    width: 100%;
    height: 200%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(0, 114, 176, 0.85) 25%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
    transform: translateY(40%);
    transition: transform 0.5s ease;
}
.layout-products_carousel .img-container.round:hover::before {
    transform: translateY(-30%);
}
.layout-products_carousel .img-container.round img {
    height: 100%;
}
.layout-products_carousel .ratio-680 {
    aspect-ratio: 567 / 680;
    border-radius: 20px;
}
.layout-products_carousel .ratio-150 {
    aspect-ratio: 1 / 1.5;
    border-radius: 40rem;
}
.layout-products_carousel .ratio > * {
    object-fit: cover;
}
.layout-products_carousel .categories .inner-project:hover .btn-swiper-cat {
    color: var(--color-blue);
}
.layout-products_carousel .vcarousel-cell .footer-container-hide {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.layout-products_carousel .vcarousel-cell.is-selected .footer-container-hide {
    opacity: 1;
    visibility: visible;
}
.layout-products_carousel .progress {
    overflow: auto;
    background: var(--color-white);
}
.layout-products_carousel .progress-bar {
    height: 4px;
    background: var(--color-white);
    top: -1px;
    position: absolute;
}
.layout-products_carousel .white.progress {
    overflow: auto;
    background: var(--color-blue);
}
.layout-products_carousel .white .progress-bar {
    height: 4px;
    background: var(--color-blue);
    top: -1px;
    position: absolute;
}
/* .blurLeft::before {
    content: '';
    height: 120%;
    width: 100px;
    position: absolute;
    z-index: 2;
    top: -10%;
    left: 0;
    background: linear-gradient(90deg, rgb(255, 255, 255) 25%, rgba(255, 255, 255, 0) 100%);
    filter: blur(10px);
}
.blurLeft.blurBlue::before {
    background: linear-gradient(90deg, rgb(0 114 176) 25%, rgba(255, 255, 255, 0) 100%);
} */
/* END Swiper Product Carousel */
/* SOCIAL SHARE HEATEOR */
.heateor_sss_sharing_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.summary .heateor_sss_sharing_title {
    text-align: left;
    display: inline-block;
    text-transform: uppercase!important;
}
.summary div.heateor_sss_sharing_ul {
    width: auto !important;
    text-align: left;
    display: inline-block;
    margin-left: 1rem !important;
}
div.heateor_sss_horizontal_sharing div.heateor_sss_sharing_ul a svg {
    display: none !important;
}
div.heateor_sss_horizontal_sharing div.heateor_sss_sharing_ul a span {
    -webkit-transition: -webkit-transform .4s cubic-bezier(0.23, 1, 0.320, 1);
    transition: -webkit-transform .4s cubic-bezier(0.23, 1, 0.320, 1);
    -o-transition: transform .4s cubic-bezier(0.23, 1, 0.320, 1);
    transition: transform .4s cubic-bezier(0.23, 1, 0.320, 1);
    transition: transform .4s cubic-bezier(0.23, 1, 0.320, 1), -webkit-transform .4s cubic-bezier(0.23, 1, 0.320, 1);
}
div.heateor_sss_horizontal_sharing div.heateor_sss_sharing_ul a:hover span {
    -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
            transform: translateY(-5px);
}
div.heateor_sss_horizontal_sharing div.heateor_sss_sharing_ul a.heateor_sss_facebook span {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='38' height='38' viewBox='0 0 38 38' fill='none'%3E%3Cpath d='M34.1109 34.6795C35.9528 32.8309 36.813 30.5773 36.9874 27.145C37.1651 23.9642 37.1651 14.5057 36.9874 11.3274V11.3207C36.8239 7.8859 35.9654 5.63319 34.1168 3.79129C32.2682 1.95106 30.0155 1.09172 26.5832 0.91902C24.9911 0.828475 21.8271 0.783203 18.6648 0.783203C15.505 0.783203 12.346 0.828475 10.7573 0.918181C7.31746 1.0825 5.06476 1.93848 3.21614 3.7829C1.37842 5.61643 0.52162 7.86746 0.348074 11.314C0.16783 14.499 0.16783 23.9626 0.348074 27.1408C0.510717 30.5849 1.36838 32.8367 3.21614 34.6778C5.06307 36.5189 7.31577 37.3782 10.7489 37.5509C13.9339 37.732 23.3966 37.7312 26.5748 37.5517C30.0188 37.3866 32.2699 36.5281 34.1109 34.6795ZM20.0313 35.8951C19.027 35.8851 18.3303 35.8842 17.3284 35.8943C14.1435 35.9236 9.32451 35.9714 6.99383 35.0526C5.10666 34.3098 3.59591 32.8015 2.84978 30.9143C1.92673 28.5828 1.97535 23.7773 2.00721 20.5973C2.01224 20.0909 2.01727 19.6315 2.01727 19.235C2.01727 18.8493 2.01307 18.4025 2.00805 17.9112C1.9787 14.7161 1.93344 9.88878 2.84978 7.55726C3.59424 5.66924 5.10331 4.16017 6.98964 3.41653C9.31948 2.49265 14.125 2.54127 17.3041 2.57397C18.3085 2.58403 19.0043 2.58487 20.007 2.57481C23.1979 2.54546 28.0177 2.49768 30.3466 3.41737C32.233 4.16017 33.7421 5.66924 34.4857 7.55558C35.4087 9.8871 35.3609 14.6927 35.3291 17.8726C35.3232 18.3773 35.319 18.8384 35.319 19.2341C35.319 19.6349 35.324 20.1027 35.3291 20.6166C35.3626 23.7932 35.4121 28.5954 34.489 30.916C33.7429 32.8024 32.233 34.3098 30.3458 35.0526C28.4762 35.7937 25.0129 35.9085 22.0745 35.9085C21.3509 35.9085 20.6601 35.9018 20.0313 35.8951Z' fill='black'/%3E%3Cpath d='M23.7072 17.3367H19.8347V13.7862C19.7685 13.082 20.0066 12.3224 20.5088 11.7221C21.0101 11.1218 21.716 10.7529 22.4949 10.6834C22.6894 10.6658 22.8864 10.6683 23.0809 10.6901H24.0148V8.69558C23.2134 8.5933 22.4052 8.53629 21.6045 8.52539C18.6778 8.52539 16.9935 10.27 16.9935 13.3125V17.3367H13.3223V19.8392H16.9935V29.9433H19.8347V19.8392H23.3232L23.7072 17.3367Z' fill='black'/%3E%3C/svg%3E") transparent no-repeat !important;
    background-size: 100% !important;
    border-radius: 0 !important;
}
div.heateor_sss_horizontal_sharing div.heateor_sss_sharing_ul a.heateor_sss_button_x span {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='37' height='37' viewBox='0 0 37 37' fill='none'%3E%3Cg%3E%3Cpath d='M29.73 29.83h-1.89c-1.42 0-2.84-.02-4.26.01-.5.01-.79-.14-1.07-.56-1.79-2.68-3.61-5.33-5.42-7.99-.09-.13-.19-.24-.32-.41-.99 1.16-1.96 2.27-2.92 3.39-1.36 1.58-2.72 3.14-4.05 4.75-.37.44-.74.68-1.32.61-.33-.04-.67 0-1.21 0 2.94-3.42 5.77-6.72 8.64-10.05-2.85-4.2-5.7-8.39-8.61-12.68.3-.02.49-.04.68-.04 1.8 0 3.6.01 5.4-.01.41 0 .65.13.88.47 1.63 2.4 3.28 4.78 4.92 7.17.15.21.3.42.49.7.19-.2.35-.37.5-.54 2.04-2.36 4.09-4.71 6.09-7.11.5-.6 1.02-.9 1.78-.79.21.03.43 0 .85 0-2.84 3.32-5.56 6.49-8.33 9.73 3.04 4.42 6.07 8.83 9.19 13.37h0Zm-2.78-1.53c-2.53-3.61-4.97-7.08-7.45-10.61-.6.7-1.15 1.33-1.7 1.98 1.98 2.82 3.92 5.59 5.88 8.37.09.13.28.26.42.26.89.02 1.79.01 2.85.01Zm-10.04-9.91c.51-.59.96-1.13 1.43-1.63.25-.26.2-.45.01-.72-1.73-2.45-3.44-4.9-5.17-7.35-.1-.14-.25-.33-.39-.34-.94-.03-1.89-.01-2.95-.01 2.4 3.41 4.71 6.71 7.06 10.06h0Z' fill='black'/%3E%3Cpath d='M33.98 33.98c1.85-1.85 2.71-4.11 2.88-7.55.18-3.19.18-12.67 0-15.86h0c-.17-3.45-1.03-5.71-2.88-7.55-1.85-1.85-4.11-2.71-7.55-2.88-1.6-.09-4.77-.14-7.94-.14s-6.33.05-7.93.14c-3.45.16-5.7 1.02-7.56 2.87C1.17 4.85.31 7.1.14 10.56-.05 13.75-.05 23.24.14 26.43c.16 3.45 1.02 5.71 2.87 7.56 1.85 1.85 4.11 2.71 7.55 2.88 3.19.18 12.68.18 15.86 0 3.45-.17 5.71-1.03 7.55-2.88h0Zm-14.11 1.22c-1.01 0-1.71 0-2.71 0-3.19.03-8.02.08-10.36-.84-1.89-.75-3.41-2.26-4.15-4.15-.93-2.34-.88-7.16-.85-10.34 0-.51 0-.97 0-1.36s0-.83 0-1.33c-.03-3.2-.08-8.04.84-10.38.75-1.89 2.26-3.41 4.15-4.15 2.33-.93 7.15-.88 10.34-.85 1.01 0 1.71 0 2.71 0 3.2-.03 8.03-.08 10.36.85 1.89.75 3.4 2.26 4.15 4.15.93 2.34.88 7.16.85 10.34 0 .51 0 .97 0 1.36s0 .87 0 1.39c.03 3.19.08 8-.84 10.33-.75 1.89-2.26 3.4-4.15 4.15-1.87.74-5.35.86-8.29.86-.73 0-1.42 0-2.05-.01Z' fill='black'/%3E%3C/g%3E%3C/svg%3E") transparent no-repeat !important;
    background-size: 100% !important;
    border-radius: 0 !important;
}
div.heateor_sss_horizontal_sharing div.heateor_sss_sharing_ul a.heateor_sss_button_copy_link span {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='37' height='37' viewBox='0 0 37 37' fill='none'%3E%3Cg%3E%3Cpath d='M33.98 33.98c1.85-1.85 2.71-4.11 2.88-7.55.18-3.19.18-12.67 0-15.86h0c-.17-3.45-1.03-5.71-2.88-7.55-1.85-1.85-4.11-2.71-7.55-2.88-1.6-.09-4.77-.14-7.94-.14s-6.33.05-7.93.14c-3.45.16-5.7 1.02-7.56 2.87C1.17 4.85.31 7.1.14 10.56-.05 13.75-.05 23.24.14 26.43c.16 3.45 1.02 5.71 2.87 7.56 1.85 1.85 4.11 2.71 7.55 2.88 3.19.18 12.68.18 15.86 0 3.45-.17 5.71-1.03 7.55-2.88h0Zm-14.11 1.22c-1.01 0-1.71 0-2.71 0-3.19.03-8.02.08-10.36-.84-1.89-.75-3.41-2.26-4.15-4.15-.93-2.34-.88-7.16-.85-10.34 0-.51 0-.97 0-1.36s0-.83 0-1.33c-.03-3.2-.08-8.04.84-10.38.75-1.89 2.26-3.41 4.15-4.15 2.33-.93 7.15-.88 10.34-.85 1.01 0 1.71 0 2.71 0 3.2-.03 8.03-.08 10.36.85 1.89.75 3.4 2.26 4.15 4.15.93 2.34.88 7.16.85 10.34 0 .51 0 .97 0 1.36s0 .87 0 1.39c.03 3.19.08 8-.84 10.33-.75 1.89-2.26 3.4-4.15 4.15-1.87.74-5.35.86-8.29.86-.73 0-1.42 0-2.05-.01Z' fill='black'/%3E%3Cpath d='M24.44 7.13c3.16-.06 5.59 2.47 5.42 5.45-.08 1.46-.65 2.66-1.68 3.69-1.56 1.54-3.11 3.08-4.64 4.65-1.99 2.05-5.37 2.13-7.43.13-.41-.4-.46-.92-.11-1.29.36-.39.88-.38 1.31.01 1.46 1.34 3.53 1.31 4.95-.09.58-.57 1.15-1.14 1.73-1.72 1.05-1.05 2.12-2.09 3.15-3.16 1.01-1.05 1.24-2.3.77-3.65-.46-1.33-1.45-2.07-2.84-2.24-1.13-.14-2.12.19-2.94 1.02-.87.88-1.76 1.75-2.64 2.63-.4.4-.96.42-1.31.05-.35-.36-.32-.89.07-1.29.89-.89 1.76-1.8 2.67-2.68 1.03-1 2.27-1.49 3.53-1.51h0Z' fill='black'/%3E%3Cpath d='M7.13 24.6c.03-1.54.6-2.82 1.71-3.9 1.56-1.53 3.11-3.09 4.64-4.65 1.99-2.03 5.36-2.11 7.38-.14.17.16.3.4.35.62.09.34-.13.69-.44.87-.34.18-.72.15-1.01-.13-.48-.45-1.02-.79-1.67-.93-1.26-.27-2.37 0-3.3.92-1.65 1.64-3.31 3.27-4.93 4.94-1 1.02-1.22 2.27-.77 3.6.45 1.33 1.43 2.09 2.82 2.27 1.14.15 2.14-.18 2.97-1 .9-.9 1.8-1.79 2.7-2.68.29-.29.7-.34 1.03-.17.35.18.53.54.44.94-.03.15-.11.32-.21.43-1 1.01-1.96 2.08-3.04 3-1.7 1.45-3.65 1.66-5.68.77-1.86-.82-3.02-2.73-2.98-4.75h0Z' fill='black'/%3E%3C/g%3E%3C/svg%3E") transparent no-repeat !important;
    background-size: 100% !important;
    border-radius: 0 !important;
}
/* END SOCIAL SHARE HEATEOR */

.outter-link:hover .btn-round-blue {
    background: var(--color-blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11.33 10.28'%3E%3Cpath d='m11.33,5.14l-5.17,5.14-.96-.96,3.57-3.51H0v-1.34h8.77L5.2.96l.96-.96,5.17,5.14Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat center / 15px;
}
.outter-link-white:hover .btn-round-white {
    background: var(--color-white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11.33 10.28'%3E%3Cpath d='m11.33,5.14l-5.17,5.14-.96-.96,3.57-3.51H0v-1.34h8.77L5.2.96l.96-.96,5.17,5.14Z' fill='%230072B0'/%3E%3C/svg%3E") no-repeat center / 15px;
}
/* About Page */
.layout-about .aspect-ratio {
    position: relative;
}
.layout-about .aspect-ratio.image-s1 {
    aspect-ratio: 1620 / 800;
}
.layout-about .aspect-ratio.image-s2 {
    aspect-ratio: 556 / 480;
}
.layout-about .s4-aspect-ratio {
    aspect-ratio: 1 / 1;
}
.layout-about .aspect-ratio.image-s1 img,
.layout-about .aspect-ratio.image-s2 img,
.layout-about .s4-aspect-ratio img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.layout-about .banner-container {
    display: flex;
    flex-direction: column;
    background: var(--color-blue);
    padding: 40px 20px;
}
@media (min-width: 744px) {
    .layout-about .banner-container {
        padding: 55px 30px;
    }
}
@media (min-width: 1200px) {
    .layout-about .banner-container {
        padding: 90px 75px 60px 75px;
    }
}
.layout-about .banner-container .item {
    border-bottom: 1px solid var(--color-white);
    align-items: center;
    overflow-wrap: break-word;
    hyphens: auto;
}
.layout-about .xmargin-res {
    padding-left: 15px;
    padding-right: 15px;
}
.layout-about .xmargin-res > .row {
    padding-left: 0;
    padding-right: 0;
    margin: 0 auto;
    width: 100%;
}
#section-4 .layout-about .item-container:last-child {
    padding-bottom: 0;
}
