body,html{min-height:100%}article,aside,details,figcaption,figure,footer,header,hgroup,hr,menu,nav,section{display:block}a,ins{text-decoration:none}a,abbr,acronym,address,applet,b,big,blockquote,body,caption,center,cite,code,dd,del,dfn,div,dl,dt,em,fieldset,font,form,h1,h2,h3,h4,h5,h6,html,i,iframe,img,ins,kbd,label,legend,li,object,ol,p,pre,q,s,samp,small,span,strike,strong,table,tbody,td,tfoot,th,thead,tr,tt,u,ul,var{font-size:100%;margin:0;padding:0;border:0;outline:0;vertical-align:baseline;background:0 0;min-width:0}html{font-weight:400;touch-action:manipulation;-ms-touch-action:manipulation}body{line-height:1}body.ov-hidden{overflow:hidden}blockquote,q{quotes:none}:focus{outline:0}del{text-decoration:line-through}table{border-collapse:collapse;border-spacing:0}h1,h2,h3,h4,h5{font-weight:inherit}b,strong{font-weight:700}button,input,textarea{border:0;padding:0;font-weight:inherit;background:0 0;line-height:1}hr{width:100%;height:1px;background:#ada29c;margin:0;padding:0;border:0}.noselect{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}:-moz-placeholder,:-ms-input-placeholder,::-moz-placeholder,::-webkit-input-placeholder{color:inherit}input::placeholder{color:inherit;opacity:.7}input[type=text]::-ms-clear,input[type=text]::-ms-reveal{display:none;width:0;height:0}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration,input[type=search]::-webkit-search-results-button,input[type=search]::-webkit-search-results-decoration{display:none}a{color:inherit}select:disabled{opacity:.6}

/** {
    overscroll-behavior-y: none !important;
}*/

* {
    box-sizing: border-box;
}

html {
    font-size: 10px;
}

button:disabled,
button.disabled,
input:disabled,
input.disabled {
    cursor: default;
    opacity: 0.2;
}

input {
   -webkit-appearance: none;
   -moz-appearance:    none;
   appearance:         none;
   border-radius: 0;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

select {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
    background: url('../img/icons/select-arrow.svg') no-repeat;
    background-position: right 1.5rem center;
    background-size: 1.2rem;
}

select::-ms-expand,
select::-webkit-select {
    display: none;
}

img,
picture,
svg,
video,
canvas {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    overflow: hidden;
}

li {
    display: block;
}

b,
strong {
    font-weight: 700;
}

a[href*="tel"] {
    position: relative;
}

.copylink-hint {
    width: max-content;
    padding: 1rem;
    border: 0.1rem solid #ababab;
    background: #fff;
    font-size: 1.4rem;
    line-height: 1.5;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 100;
    translate: -50% -50%;
    transition: 2s ease-out;
    pointer-events: none;
}

.copylink-hint.active {
    opacity: 0;
    margin-top: -5rem;
}

.wp-caption {
    max-width: 100%;
}

.no-select,
.swiper {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.swiper.ov-visible {
    overflow: visible;
}

.slider-pagination {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.swiper-pagination-lock {
    display: none !important;
}

.slider-pagination__item {
    width: 4.7rem;
    height: 0.3rem;
    border-radius: 10rem;
    background: var(--color-gray-light);
}

.slider-pagination__item.active {
    background: var(--color-black);
}

.swiper-slide {
    width: auto;
    height: auto;
}


/* slider START */
.no-overflow-slider {
    overflow: hidden;
}

.no-overflow-slider .swiper {
    overflow: visible;
}
/* slider END */




/* slider-controls START */
.slider-controls {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding-top: 2rem;
}


.slider-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-block: 1.5rem;
    pointer-events: none;
}

.slider-nav__item {
    --nav-color: #2C2C2C;

    flex-shrink: 0;
    aspect-ratio: 1/1;
    width: 3.3rem;
    cursor: pointer;
    pointer-events: auto;
    transition: 0.3s;

    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -khtml-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none
}

.slider-nav__item:not(.disabled):hover {
    color: var(--color-blue);
    opacity: 0.7;
}

.slider-nav__item svg {
    width: 100%;
}

.slider-nav__item.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.slider-nav__item circle {
    fill: var(--nav-color);
    stroke: var(--nav-color);
}

.slider-nav__item path {
    stroke: currentColor;
}

.slider-nav__item.disabled circle {
    fill: transparent;
    stroke: var(--nav-color);
}

.slider-nav__item.disabled path {
    stroke: var(--nav-color);
}

@media screen and (max-width: 1024.9px) {
    .slider-nav {
        padding: 0 5rem;
    }
}


.slider-scrollbar {
    flex: 1;
    width: 128px;
    height: 3px;
    background: #D9D9D9;
    margin-inline: auto;
}

.slider-scrollbar .swiper-scrollbar-drag {
    background: var(--color-black);
    border-radius: 10px;
}
/* slider-controls END */





/* pagination START */
.pagination {
    padding-top: 5rem;
}

.pagination__list {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pagination__list .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.6rem;
    aspect-ratio: 1/1;
    border: 0.1rem solid var(--color-default);
    border-radius: 0.5rem;
    font-weight: bold;
    font-size: 1.6rem;
    transition: 0.3s;
    cursor: pointer;
}

.pagination__list a.page-numbers:hover {
    background: var(--color-default);
    color: #fff;
}

.pagination__list span.page-numbers {
    background: var(--color-orange);
    border-color: var(--color-orange);
    color: #fff;
    cursor: default;
}

.pagination__list path {
    fill: currentColor;
}
/* pagination END */




.ofc,
.ofcn,
picture:has(.ofc),
picture:has(.ofcn) {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.ofcn,
picture:has(.ofcn){
    object-fit: contain;
}

.fs0 {
    flex-shrink: 0;
}

.bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

section:has(.bg) {
    position: relative;
    z-index: 1;
}

.wrapper {
    box-sizing: border-box;
    max-width: 100%;
    padding: 0 var(--gutter);
    margin: 0 auto;
    width: calc(var(--wrapper) + var(--gutter)*2);
}

.shifted-wrapper {
    width: var(--sidewrap);
    padding-left: var(--wrapper-padding);
    overflow: hidden;
}

.shifted-wrapper .swiper {
    overflow: visible;
}

.inner-wrap {
    max-width: 100%;
    width: 64rem;
    margin: 0 auto;
}


.limit-width,
.limit-width-centered {
    width: 1040px;
    max-width: 100%;
}

.limit-width-centered {
    margin-inline: auto;
}



/* global START */
.br-block {
    border-radius: 2rem;
    overflow: hidden;
}

.flex-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.flex-block.centered {
    align-items: center;
}

.grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    align-items: start;
    gap: 4rem;
    width: 100%;
}

.header-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
/* global END */



.ellipsis {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.icon-item {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 0;
}

.close-btn {
    aspect-ratio: 1;
    display: flex;
    padding: 6px;
    font-family: monospace;
    font-weight: 400;
    font-style: normal;
    line-height: 1;
    color: #000;
    cursor: pointer;
}

.bottomline {
    display: inline;
    background-repeat: no-repeat;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 100% 100%;
    background-size: 100% 1px;
    cursor: pointer;
}

.bottomline:hover {
    animation: underline 1s;  
}

.underline {
    position: relative;
}

.underline::after {
    content: '';
    display: block;
    width: 0;
    height: 0.1rem;
    background: currentColor;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.3s;
}

.underline:hover::after,
.underline-parent:hover .underline::after {
    width: 100%;
}

.centered {
    text-align: center;
}

.requirements-message {
    background: #000;
    font-family: monospace;
    color: chartreuse;
    padding: 1rem 2rem;
}

#shadow-host-companion {
    display: none !important;
}

.gradient-border {
    position: relative;
    z-index: 1;
}

.gradient-border::after {
    content: '';
    display: block;
    padding: 0.1rem;
    border-radius: inherit;
    background: transparent;
    background: linear-gradient(141.8deg, cyan 14.44%, #01c4e5 86.47%);
    background-repeat: no-repeat;
    position: absolute;
    transition: inherit;
    pointer-events: none;
    z-index: -1;

    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.pressed-in {
    box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.3),
        inset 0 0 0 rgba(255, 255, 255, 0.3);
    transition: 0.3s ease-out;
    cursor: pointer;
}

.pressed-in:hover {
    scale: 0.9;
    box-shadow: inset 3px 3px 5px rgba(0, 0, 0, 0.3),
        inset -3px -3px 5px rgba(255, 255, 255, 0.3);
}

.map {
    width: 100%;
    aspect-ratio: 610/216;
}

@keyframes underline {
    0% {
        background-position: 100% 100%;
        background-size: 100% 1px;
    }

    50% {
        background-position: 100% 100%;
        background-size: 0% 1px;
    }

    51% {
        background-position: 0% 100%;
        background-size: 0% 1px;
    }

    100% {
        background-position: 0% 100%;
        background-size: 100% 1px;
    }
}



/* show more START */
.showmore__content {
    -webkit-line-clamp: 12;
}

.showmore__btn {
    display: inline;
    text-decoration: underline;
    cursor: pointer;
}

.showmore__btn:hover {
    text-decoration: none;
}

.showmore__btn:not(.visible) {
    display: none;
}

.showmore__btn::before {
    content: attr(data-more);
}

.showmore__btn.active::before {
    content: attr(data-less);
}

@media screen and (max-width: 575.9px) {
    .showmore__content {
        -webkit-line-clamp: 3;
    }
}
/* show more END */
