/* STYLES 15.10.2025
Screen resolution: 460, 860, 1440, 1920 */
:root {
    --color-primary: #0a0a0a;
    --color-secondary: #404040;
    --color-accent: #b6b6b7;
    --color-white: #fefefe;
    --color-bg-light: #f5f5f5;
    --color-bg-white: #ffffff;
}

* {
    background: 0 0;
    margin: 0;
    padding: 0;
    outline: 0;
    border: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Geologica', sans-serif;
    background-color: var(--color-bg-white);
    color: var(--color-primary);
    scroll-behavior: smooth;
}

@media (max-width: 860px) {
    body {
        background: #f5f5f5;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

@media (max-width: 768px) {
    section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

/* CSS for section section:hero */
#hero {
    padding: 0;
}

.hero-section {
    position: relative;
    height: 711px;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 30px 50px #dbdbdb;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    margin: 0;
}

#myVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100%;
    z-index: -1000;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    border-radius: 10px;
}

.hero-container {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 40px;
}

.hero-title {
    font-family: Geologica;
    font-size: 64px;
    font-weight: 600;
    line-height: 1.5;
}

.hero-button {
    font-size: 16px;
    font-weight: 400;
    padding: 12px 28px;
    border: 0.5px solid var(--color-white);
    border-radius: 25px;
    background-color: rgba(254, 254, 254, 0.2);
    backdrop-filter: blur(5px);
    transition: background-color 0.3s;
}

.hero-button:hover {
    background-color: rgba(254, 254, 254, 0.4);
}

.hero-categories {
    position: absolute;
    bottom: 80px;
    display: flex;
    gap: 12px;
    width: calc(100% - 80px);
}

.category-card {
    flex: 1;
    background-color: rgba(255, 254, 254, 0.43);
    border-radius: 10px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 130px;
}

.category-text {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.category-card h3 {
    font-family: 'Geologica', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.25;
}

.category-card p {
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.25;
}

.hero-social-sidebar {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.hero-social-sidebar a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(254, 254, 254, 0.2);
    border: 0.5px solid var(--color-white);
    backdrop-filter: blur(5px);
}

.hero-slider-progress {
    position: absolute;
    bottom: 20px;
    width: calc(100% - 80px);
    display: flex;
    gap: 40px;
}

.progress-bar-segment {
    flex: 1;
    height: 6px;
    border-radius: 100px;
    background-color: var(--color-secondary);
}

.progress-bar-segment.active {
    background-color: var(--color-accent);
}

@media (max-width: 1024px) {
    .hero-section {
        height: auto;
        padding: 100px 0;
        margin: 0 20px;
    }

    .hero-categories {
        position: static;
        flex-direction: column;
        width: 100%;
        margin-bottom: 10px;
    }

    .hero-social-sidebar {
        display: none;
    }

    .hero-slider-progress {
        display: none;
    }

    .hero-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        margin: 0 10px;
    }

    .hero-title {
        font-size: 36px;
    }
}

/* CSS for section section:story */
.story {
    padding-top: 97px;
}

.story-title {
    font-size: 48px;
    margin-bottom: 20px;
    margin-top: 35px;
}

.story-hero {
    position: relative;
    width: 100%;
    height: 600px;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0px 0px 25px rgba(56, 152, 226, 0.3);
}

.hero-title-fullstory {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 64px;
    font-weight: 500;
    line-height: 80px;
    color: #ffffff;
    max-width: 997px;
}

.story-content {
    max-width: 1166px;
    margin: 73px auto 0;
}

.story-intro {
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 50px;
}

.story-body {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    text-align: justify;
}

@media (max-width: 992px) {
    #story {
        padding-top: 40px;
    }

    .story-hero {
        height: 400px;
    }

    .hero-title-fullstory {
        font-size: 48px;
        line-height: 1.2;
        left: 50%;
        transform: translateX(-50%);
        top: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 90%;
    }

    .story-content {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .story-hero {
        height: 300px;
    }

    .hero-title-fullstory {
        font-size: 36px;
    }

    .story-intro, .story-body {
        font-size: 18px;
        line-height: 1.5;
    }
}

/* fullstory-events */
.story {
    padding-top: 97px;
}

.story-hero {
    position: relative;
    width: 100%;
    height: 600px;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0px 0px 25px rgba(56, 152, 226, 0.3);
}

.hero-title-fullstory {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 64px;
    font-weight: 500;
    line-height: 80px;
    color: #ffffff;
    max-width: 997px;
}

.fullstory-content {
    max-width: 1166px;
    margin: 73px 0 0;
}

.fullstory-intro {
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 50px;
}

.fullstory-body {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    text-align: justify;
}

@media (max-width: 992px) {
    #story {
        padding-top: 40px;
    }

    .story-hero {
        height: 400px;
    }

    .hero-title-fullstory {
        font-size: 48px;
        line-height: 1.2;
        left: 50%;
        transform: translateX(-50%);
        top: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 90%;
    }

    .story-content {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .story-hero {
        height: 300px;
    }

    .hero-title-fullstory {
        font-size: 36px;
    }

    .story-intro, .story-body {
        font-size: 18px;
        line-height: 1.5;
    }
}

/* CSS for section section:contacts */
#contacts {
    margin-top: 58px;
}

.contacts-info_item {
    display: grid;
    grid-gap: 50px;
    grid-auto-rows: max-content;
    grid-template-columns: 600px 1fr;
    overflow: hidden;
}

@media (max-width: 860px) {
    .contacts-info_item {
        display: flex;
        flex-direction: column;
        align-items: center;
        grid-gap: 30px;
    }
}

.contacts-info_content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 860px) {
    .contacts-info_content {
        align-items: center;
        text-align: left;
    }
}

.contacts-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 107px;
}

.contacts-info {
    flex-shrink: 0;
}

.contacts-title {
    font-size: 64px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 45px;
    transition: 0.3s;
}
.contacts-title:hover {
    transform: scale(1.02);
}






.contacts-details {
    font-style: normal;
    font-size: 24px;
    font-weight: 500;
    line-height: 45px;
}

.contacts-info_bg {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 300px;
    aspect-ratio: 16/9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 25px rgba(56, 152, 226, 0.3);
}

.contacts-map {
    border-radius: 20px;
    border: 2px solid var(--color-bg-grey);
    width: 600px;
    height: 250px;
    object-fit: cover;
}

.contacts-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 992px) {
    .contacts-container {
        flex-direction: column;
        align-items: stretch;
        gap: 40px;
    }

    .contacts-title {
        font-size: 48px;
        margin-bottom: 20px;
    }

    .contacts-details {
        font-size: 20px;
        line-height: 1.6;
    }

    .contacts-map img {
        width: 340px;
        height: auto;
    }

    .contacts-map iframe {
        width: 340px;
        height: auto;
    }
}

/* CSS for section section:recommendations */
#recommendations {
    margin-top: 88px;
}

.recommendations-title {
    font-size: 64px;
    font-weight: 500;
    line-height: 80px;
    margin-bottom: 62px;
}

.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.recommendation-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 305px;
}

.recommendation-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    top: 22px;
    left: 23px;
    color: var(--color-text-light);
}

.card-location {
    font-family: Geologica;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
}

.card-title {
    font-family: Geologica;
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
}

@media (max-width: 992px) {
    .recommendations-grid {
        grid-template-columns: 1fr 1fr;
    }

    .recommendations-title {
        font-size: 48px;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .recommendations-grid {
        grid-template-columns: 1fr;
    }
}

/* CSS for section section:gallery */
#gallery {
    margin-top: 65px;
}

.gallery-title {
    font-size: 64px;
    font-weight: 500;
    line-height: 80px;
    margin-bottom: 60px;
}

.gallery-grid {
    display: flex;
    gap: 51px;
}

.gallery-img-large {
    width: 956px;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
}

.gallery-item-small {
    position: relative;
    width: 353px;
    height: 500px;
}

.gallery-img-small {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.play-button {
    position: absolute;
    width: 72px;
    height: 72px;
    background-color: var(--color-text-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.play-icon-1, .play-icon-2 {
    position: absolute;
    width: 51px;
    height: 51px;
}

.play-icon-1 {
    left: 9px;
}

.play-icon-2 {
    left: 12px;
}

@media (max-width: 1300px) {
    .gallery-grid {
        flex-direction: column;
        align-items: center;
    }

    .gallery-img-large, .gallery-item-small, .gallery-img-small {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .gallery-title {
        font-size: 48px;
        margin-bottom: 30px;
    }
}

/* section:footer */
#footer-section {
    margin-top: 52px;
}

.site-footer .container {
    background-color: var(--color-bg-light);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 51px 0;
    min-height: 241px;
    border-radius: 10px;
    gap: 8px;
    margin-bottom: 20px;
    box-shadow: 0px 0px 25px rgba(56, 152, 226, 0.3);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-left: 35px;
}

.footer-logo {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text-dark);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-family: Geologica;
    font-weight: 500;
    font-size: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-item span {
    line-height: 30px;
}

.contact-item a {
    line-height: 22px;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-right: 35px;
}

.footer-address {
    font-family: Geologica;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 22px;
    margin-left: 35px;
    max-width: 263px;
}

@media (max-width: 992px) {
    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .footer-right {
        align-items: flex-start;
    }

    .footer-address {
        text-align: left;
    }
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 35px;
}

.social-icons img {
    width: 25px;
    height: 25px;
}

/* section:hotels */
.hotels__title {
    font-size: 36px;
    font-weight: 600;
    line-height: 60px;
    margin: 0 0 40px 0;
}

.hotels__layout {
    display: flex;
    gap: 40px;
}

.hotels__column-left, .hotels__column-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hotels__column-left {
    flex: 1;
}

.hotels__column-right {
    flex: 1.28;
}

.hotel-card-v {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 308px;
    color: var(--color-white);
}

.hotel-card-v__bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hotel-card-v__content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.hotel-card-v__info h3 {
    font-family: Geologica;
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 18px 0;
}

.location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: Geologica;
    font-size: 14px;
}

.hotel-card-v__price {
    text-align: right;
}

.hotel-card-v__price strong {
    font-family: Geologica;
    font-size: 32px;
    font-weight: 500;
    display: block;
}

.hotel-card-v__price span {
    font-family: Geologica;
    font-size: 14px;
}

.hotels__promo {
    background-color: var(--color-white);
    border-radius: 16px;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hotels__promo-stats {
    display: flex;
    align-items: center;
    gap: 20px;
}

.promo-number {
    font-family: Geologica;
    font-size: 64px;
    font-weight: 700;
    color: var(--color-dark-grey);
}

.promo-text {
    font-size: 16px;
    font-weight: 700;
    max-width: 205px;
}

.promo-button {
    background-color: #F5F5F5;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 20px;
    font-weight: 500;
}

.hotels__cards-horizontal {
    display: flex;
    gap: 40px;
}

.hotel-card-h {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    flex: 1;
    height: 487px;
    color: var(--color-white);
}

.hotel-card-h__bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hotel-card-h__content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.hotel-card-h__info h3 {
    font-family: Geologica;
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 18px 0;
}

.hotel-card-h__price {
    text-align: right;
}

.hotel-card-h__price strong {
    font-family: Geologica;
    font-size: 32px;
    font-weight: 500;
    display: block;
}

.hotel-card-h__price span {
    font-family: Geologica;
    font-size: 14px;
}

@media (max-width: 1200px) {
    .hotels__layout {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hotels__title {
        font-size: 32px;
        line-height: 1.2;
    }

    .hotels__promo {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .hotels__promo-stats {
        flex-direction: column;
    }

    .hotels__cards-horizontal {
        flex-direction: column;
    }
}

/* -------- title style ------- */
.line-title {
    position: relative;
    width: 400px;
}

.line-title::before, .line-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    border-radius: 2px;
}

.line-title::before {
    width: 100%;
    background: #f2f2f2;
}

.line-title::after {
    width: 32px;
    background: #e73700;
}

/* -------- Slider-Old-New ------- */
.beer-slider {
    *, &:before, &:after, *:before, *:after {
        box-sizing: border-box;
    }

    display: inline-block;
    position: relative;
    overflow: hidden;
    svg {
        vertical-align: bottom;
    }
}

.beer-reveal {
    --width: 50%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    clip-path: polygon(0 0, var(--width) 0, var(--width) 100%, 0 100%);
    overflow: hidden;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.35s;
}

.beer-range {
    position: absolute;
    z-index: 2;
    bottom: 0;
    height: 6rem;
    margin: 0;
    left: -1px;
    width: calc(100% + 2px);
    cursor: pointer;
    -webkit-appearance: slider-horizontal !important;
    -moz-appearance: none;
    opacity: 0;
    -ms-touch-action: auto;
    touch-action: auto;
    &::-webkit-slider-thumb {
        -webkit-appearance: none;
        height: 300vh;
    }

    &::-moz-range-thumb {
        -webkit-appearance: none;
        height: 300vh;
    }

    &::-ms-tooltip {
        display: none;
    }
}

.beer-ready {
    &, image, .beer-reveal, .beer-handle {
        opacity: 1;
    }
}

.beer-slider {
    width: 100%;
    height: 70vh;
}

.ctnr {
    height: 70vh;
}

.beer-handle {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    background: white;
    color: #000;
    transition: opacity 1s;
    transform: translateX(-50%);
    height: 6rem;
    width: 100%;
    left: 50%;
    bottom: 0;
    clip-path: url(#svgPath);
    &:before, &:after {
        content: "";
        position: absolute;
        width: 10px;
        height: 10px;
        top: 50%;
        border-top: solid 2px;
        border-left: solid 2px;
        transform-origin: 0 0;
    }

    &:before {
        left: calc(50% - 20px);
        transform: rotate(-45deg);
    }

    &:after {
        right: calc(50% - 30px);
        transform: rotate(135deg);
    }
}

.b {
    position: absolute;
    top: 2rem;
    width: 50%;
    max-width: 700px;
}

.b * {
    opacity: 0;
    transform: translate3d(0, 2rem, 0);
    transition: 1s;
}

.b1 {
    left: 4rem;
    z-index: 1;
    color: white;
}

.b2 {
    right: 4rem;
    z-index: 1;
}

.more .b1 * {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.less .b2 * {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.ctnr:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.ctnr-summer:after {
    background: linear-gradient(135deg, #2a2d4e, transparent);
}

.ctnr-winter:after {
    background: linear-gradient(-135deg, white, transparent);
}

@media (max-width: 37.5em) {
    .b1 {
        left: 2rem;
    }

    .b2 {
        right: 2rem;
    }

    .ctnr-summer:after {
        background: linear-gradient(180deg, #2a2d4e, transparent 120%);
    }
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.event-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    color: var(--color-white);
    height: 308px;
}

.event-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.event-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 30px;
    height: 100%;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.event-details h4 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.25;
    max-width: 300px;
}

.event-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 400;
}

.event-price {
    text-align: right;
    font-family: Geologica;
}

.price-amount {
    display: block;
    font-size: 32px;
    font-weight: 500;
}

.price-person {
    display: block;
    font-size: 14px;
    font-weight: 400;
}

@media (max-width: 768px) {
    .events-title {
        font-size: 40px;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }
}

.event-filters {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 20px;
    font-family: 'Geologica', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-secondary);
    background-color: var(--color-white);
    border: 1px solid var(--color-primary);
    border-radius: 5px;
    box-shadow: 0px 0px 25px rgba(56, 152, 226, 0.3);
    cursor: pointer;
}

/* HEADER - @moretheme */
header {
    position: relative;
    max-width: 1440px;
    width: calc(100% - 10px);
    margin: 20px auto 0;
    background: #f5f5f5;
    border-radius: 10px;
    color: #B6B6B7;
    transition: top 0.3s;
    z-index: 5;
    box-shadow: 0px 0px 15px rgba(56, 152, 226, 0.3);
}

@media (max-width: 860px) {
    header {
        max-width: none;
        width: 100%;
        margin: 0;
        border-radius: 0;
        padding: 15px 0;
    }
}

header .container {
    display: flex;
    align-items: center;
    grid-gap: 60px;
    padding: 15px 40px;
}

@media (max-width: 860px) {
    header .container {
        grid-gap: 20px;
        padding: 0 20px;
    }
}

header .container > div {
    width: 100%;
}

.header-logo {
    display: inline-block;
    font-size: 20px;
    font-weight: bold;
    color: #0A0A0A;
}

@media (max-width: 860px) {
    .header-logo {
        font-size: 14px;
    }
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 40px;
    font-size: 14px;
    border-bottom: 2px solid #B6B6B7;
    padding-bottom: 10px;
}

.header-top:hover>span {
    color: #3898e2;
}

@media (max-width: 860px) {
    .header-top {
        font-size: 10px;
        grid-gap: 10px;
        border: none;
        padding-bottom: 0;
        justify-content: center;
    }
}

.header-top > .right {
    display: inline-block;
    margin-left: auto;
}

@media (max-width: 860px) {
    .header-top > .right {
        display: none;
    }
}

.header-lang {
    position: relative;
}

@media (max-width: 860px) {
    .header-lang {
        display: none;
    }
}

.header-lang > span {
    display: flex;
    align-items: center;
    grid-gap: 10px;
}

.header-lang > div {
    position: absolute;
    width: max-content;
    top: 100%;
    right: 0;
    background: #fff;
    color: #000;
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
    border-radius: 10px;
    padding: 3px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s;
    z-index: 6;
}

.header-lang:hover > div {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.header-lang > div > a {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    padding: 5px 20px;
    border-radius: var(--radius);
}

.header-lang > div > a:hover {
    background: var(--bg);
}

.header-menu {
    position: relative;
}

@media (max-width: 860px) {
    .header-menu {
        display: none;
    }
}

.header-menu > span {
    display: flex;
    align-items: center;
    grid-gap: 10px;
}

.header-menu:hover > span {
    color: #3898e2;
}

.header-menu > div {
    position: absolute;
    width: max-content;
    top: 100%;
    background: #fff;
    color: #000;
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
    border-radius: 10px;
    padding: 5px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s;
    z-index: 6;
}

.header-menu:hover > div {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.header-menu > div > a {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    padding: 5px 20px;
    border-radius: var(--radius);
}

.header-menu > div > a:hover {
    background: var(--bg);
}

.header-bottom {
    display: flex;
    align-items: center;
    grid-gap: 40px;
    font-size: 16px;
    color: #0A0A0A;
}

@media (max-width: 860px) {
    .header-bottom {
        display: none;
    }
}

.header-search {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    background: #fff;
    border-radius: 50px;
    padding: 8px 15px;
    margin-left: auto;
    margin-top: 10px;
}

@media (max-width: 860px) {
    .header-search {
        display: none;
    }
}

.header-search img {
    width: 24px;
    height: 24px;
}

.header-search input {
    width: 100px;
    padding: 0;
    border-radius: 0;
}

.header-search input::placeholder {
    color: #000;
    font-weight: 500;
}

.header-soc {
    display: flex;
    align-items: center;
    grid-gap: 10px;
}

@media (max-width: 860px) {
    .header-soc {
        display: none;
    }
}

.header-soc > a, .header-soc > a > img {
    display: inline-block;
    width: 25px;
    height: 25px;
}

/* VIS HERO */
.vis-hero {
    position: relative;
    height: 610px;
    margin-top: 30px;
    overflow: hidden;
}

@media (max-width: 860px) {
    .vis-hero {
        margin-top: 10px;
        height: 480px;
    }
}

.vis-hero .swiper-pagination-bullets {
    z-index: 5!important;
}

.vis-hero .swiper-pagination-bullet {
    position: relative;
    background: rgb(255 255 255 / 15%);
    width: 30px;
    height: 4px;
    border-radius: 50px;
    overflow: hidden;
}

.vis-hero .swiper-pagination-bullet-active {
    width: 80px;
}

.vis-hero .swiper-pagination-bullet-active::before {
    content: "";
    display: block;
    width: 100%;
    height: 4px;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    animation: progress var(--swiper-autoplay-time) linear;
}

@keyframes progress {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

.vis-hero_item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    grid-gap: 10px;
    color: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.vis-hero_title {
    display: inline-block;
    font-size: 50px;
    font-weight: bold;
    max-width: 50%;
    text-align: center;
    margin-bottom: 40px;
}

@media (max-width: 860px) {
    .vis-hero_title {
        max-width: 90%;
        font-size: 30px;
    }
}

.vis-hero_item > a {
    display: inline-block;
    border: 0.5px solid #fefefe3d;
    backdrop-filter: blur(50px);
    background: #0000006e;
    border-radius: 10px;
    padding: 12px 60px;
    font-size: 14px;
}

.vis-hero_type {
    display: grid;
    grid-gap: 20px;
    grid-auto-rows: max-content;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 30px;
}

@media (max-width: 860px) {
    .vis-hero_type {
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 15px;
        padding: 0 20px;
    }
}

.vis-hero_type > li {
    background: #0000006e;
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 500;
}

@media (max-width: 860px) {
    .vis-hero_type > li {
        background: transparent;
        backdrop-filter: none;
        padding: 0;
        border-radius: 0;
        font-size: 12px;
    }

    .vis-hero_type > li:nth-child(n+4) {
        display: none;
    }

    .vis-hero_type > li + li {
        border-left: 1px solid #ffffff61;
        padding-left: 15px;
    }
}

.vis-hero_type > li a {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 8px;
}

.vis-hero_type span {
    display: block;
    font-size: 12px;
    font-weight: 300;
    text-align: center;
    margin-top: 20px;
}

@media (max-width: 860px) {
    .vis-hero_type span {
        font-size: 5px;
        text-align: left;
        margin-top: 10px;
    }
}

.vis-hero_link {
    position: absolute;
    top: 30%;
    right: 30px;
    display: flex;
    flex-direction: column;
    grid-gap: 60px;
}

@media (max-width: 860px) {
    .vis-hero_link {
        top: unset;
        bottom: 70px;
        right: 50px;
        flex-direction: row;
    }
}

.vis-hero_link > a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.5px solid #fefefe3d;
    backdrop-filter: blur(50px);
    background: #FEFEFE33;
    border-radius: 50px;
    width: 40px;
    height: 40px;
}

.vis-hero_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* VIS INFO */
.vis-info {
    position: relative;
    padding: 0 20px;
    overflow: hidden;
}

@media (max-width: 860px) {
    .vis-info {
        padding: 0;
    }
}

.vis-info > .fa-regular {
    position: absolute;
    display: inline-block;
    top: 40%;
    left: 0;
    background: #B6B6B7;
    color: #fff;
    border-radius: 50px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    z-index: 5;
}

@media (max-width: 860px) {
    .vis-info > .fa-regular {
        display: none;
    }
}

.vis-info > .fa-regular + .fa-regular {
    left: unset;
    right: 0;
}

.vis-info .swiper-button-disabled {
    display: none;
}

.vis-info_item {
    display: grid;
    grid-gap: 50px;
    grid-auto-rows: max-content;
    grid-template-columns: 500px 1fr;
    overflow: hidden;
}

@media (max-width: 860px) {
    .vis-info_item {
        display: flex;
        flex-direction: column;
        align-items: center;
        grid-gap: 30px;
    }
}

.vis-info_bg {
    position: relative;
    display: inline-block;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: 10px;
    overflow: hidden;
}

.vis-info_bg > a {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%,-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(254, 254, 254, 0.2);
    border: 0.5px solid #fefefe4d;
    backdrop-filter: blur(5px);
    border-radius: 50px;
    padding: 10px;
    overflow: hidden;
}

.vis-info_bg > span {
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-size: 14px;
    color: #fff;
}

.vis-info_content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 860px) {
    .vis-info_content {
        align-items: center;
        text-align: center;
    }
}

.vis-info_title {
    font-size: 36px;
    font-weight: 500;
    color: #404040;
}

@media (max-width: 860px) {
    .vis-info_title {
        font-size: 25px;
    }
}

.vis-info_content > ul {
    display: flex;
    align-items: center;
    grid-gap: 60px;
}

@media (max-width: 860px) {
    .vis-info_content > ul {
        flex-wrap: wrap;
        grid-gap: 30px;
        margin-top: 30px;
        align-items: center;
        justify-content: center;
    }
}

.vis-info_content > ul li {
    font-size: 36px;
    text-align: center;
}

@media (max-width: 860px) {
    .vis-info_content > ul li {
        font-size: 30px;
    }
}

.vis-info_content > ul > li span {
    display: block;
    font-size: 14px;
}

@media (max-width: 860px) {
    .vis-info_content > ul > li span {
        font-size: 10px;
    }
}

/* VIS POPULAR */
.vis-popular {
}

.vis-popular_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    transition: 0.3s;
}

.vis-popular_head:hover {
    transform: scale(1.02)
}

@media (max-width: 860px) {
    .vis-popular_head {
        flex-direction: column;
        align-items: flex-start;
        grid-gap: 20px;
    }
}

.vis-popular_head > h2 {
    font-size: 36px;
}

.vis-popular_head > span {
    display: block;
    color: #404040;
    font-size: 14px;
    font-weight: 300;
    max-width: 600px;
    text-align: right;
}

@media (max-width: 860px) {
    .vis-popular_head > span {
        text-align: left;
    }
}

.vis-popular_items {
    display: grid;
    grid-gap: 20px;
    grid-auto-rows: max-content;
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 860px) {
    .vis-popular_items {
        grid-template-columns: repeat(2, 1fr);
    }
}

.vis-popular_item:nth-child(1) {
    grid-column: span 2;
}

.vis-popular_item {
    position: relative;
    height: 300px;
    border-radius: 10px;
    color: #fff;
    text-align: right;
    overflow: hidden;
    transition: 0.3s;
}

.vis-popular_item:hover {
    transform: scale(1.02);
}

@media (max-width: 860px) {
    .vis-popular_item {
        height: 200px;
    }
}

.vis-popular_item:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(360deg, #000000ad, transparent);
    z-index: 1;
}

.vis-popular_item > div {
    position: absolute;
    right: 30px;
    bottom: 30px;
    max-width: 300px;
    z-index: 2;
}

.vis-popular_item > div > a {
    font-size: 20px;
    font-weight: bold;
}

.vis-popular_item > div > span {
    display: block;
    font-size: 12px;
    font-weight: 300;
    margin-top: 15px;
}

@media (max-width: 860px) {
    .vis-popular_item > div > a {
        font-size: 16px;
    }

    .vis-popular_item > div > span {
        font-size: 10px;
    }
}

/* VIS 7prichin */
.vis-7prichin {
}

.vis-7prichin_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    transition: 0.3s;
}

.vis-7prichin_head:hover {
    transform: scale(1.02)
}

@media (max-width: 860px) {
    .vis-7prichin_head {
        flex-direction: column;
        align-items: flex-start;
        grid-gap: 20px;
    }
}

.vis-7prichin_head > h2 {
    font-size: 36px;
}

.vis-7prichin_head > span {
    display: block;
    color: #404040;
    font-size: 14px;
    font-weight: 300;
    max-width: 600px;
    text-align: right;
}

@media (max-width: 860px) {
    .vis-7prichin_head > span {
        text-align: left;
    }
}

.vis-7prichin_items {
    display: grid;
    grid-gap: 20px;
    grid-auto-rows: max-content;
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 860px) {
    .vis-7prichin_items {
        grid-template-columns: repeat(2, 1fr);
    }
}

.vis-7prichin_item:nth-child(1) {
    grid-column: span 2;
}

.vis-7prichin_item {
    position: relative;
    height: 300px;
    border-radius: 10px;
    color: #fff;
    text-align: right;
    overflow: hidden;
    transition: 0.3s;
}

.vis-7prichin_item:hover {
    transform: scale(1.02);
}

@media (max-width: 860px) {
    .vis-7prichin_item {
        height: 200px;
    }
}

.vis-7prichin_item:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(360deg, #000000ad, transparent);
    z-index: 1;
}

.vis-7prichin_item > div {
    position: absolute;
    right: 30px;
    bottom: 30px;
    max-width: 300px;
    z-index: 2;
}

.vis-7prichin_item > div > a {
    font-size: 20px;
    font-weight: bold;
}

.vis-7prichin_item > div > span {
    display: block;
    font-size: 12px;
    font-weight: 300;
    margin-top: 15px;
}

@media (max-width: 860px) {
    .vis-7prichin_item > div > a {
        font-size: 16px;
    }

    .vis-7prichin_item > div > span {
        font-size: 10px;
    }
}

/* VIS beach */
.vis-beach {
}

.vis-beach_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    transition: 0.3s;
}

.vis-beach_head:hover {
    transform: scale(1.02);
}

@media (max-width: 860px) {
    .vis-beach_head {
        flex-direction: column;
        align-items: flex-start;
        grid-gap: 20px;
    }
}

.vis-beach_head > h2 {
    font-size: 36px;
}

.vis-beach_head > span {
    display: block;
    color: #404040;
    font-size: 14px;
    font-weight: 300;
    max-width: 600px;
    text-align: right;
}

@media (max-width: 860px) {
    .vis-beach_head > span {
        text-align: left;
    }
}

.vis-beach_items {
    display: grid;
    grid-gap: 20px;
    grid-auto-rows: max-content;
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 860px) {
    .vis-beach_items {
        grid-template-columns: repeat(2, 1fr);
    }
}

.vis-beach_item:nth-child(1) {
    grid-column: span 2;
}

.vis-beach_item {
    position: relative;
    height: 300px;
    border-radius: 10px;
    color: #fff;
    text-align: right;
    overflow: hidden;
    transition: 0.3s;
}

.vis-beach_item:hover {
    transform: scale(1.02);
}

@media (max-width: 860px) {
    .vis-beach_item {
        height: 200px;
    }
}

.vis-beach_item:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(360deg, #000000ad, transparent);
    z-index: 1;
}

.vis-beach_item > div {
    position: absolute;
    right: 30px;
    bottom: 30px;
    max-width: 300px;
    z-index: 2;
}

.vis-beach_item > div > a {
    font-size: 20px;
    font-weight: bold;
}

.vis-beach_item > div > span {
    display: block;
    font-size: 12px;
    font-weight: 300;
    margin-top: 15px;
}

@media (max-width: 860px) {
    .vis-beach_item > div > a {
        font-size: 16px;
    }

    .vis-beach_item > div > span {
        font-size: 10px;
    }
}

/* VIS EVENTS */
.vis-events {
}

.vis-events_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    transition: 0.3s;
}

.vis-events_head:hover {
    transform: scale(1.02);
}

@media (max-width: 860px) {
    .vis-events_head {
        flex-direction: column;
        align-items: flex-start;
        grid-gap: 20px;
    }
}

.vis-events_head > h2 {
    font-size: 36px;
}

.vis-events_head > span {
    display: block;
    color: #404040;
    font-size: 14px;
    font-weight: 300;
    max-width: 600px;
    text-align: right;
}

@media (max-width: 860px) {
    .vis-events_head > span {
        text-align: left;
    }
}

.vis-events_items {
    display: grid;
    grid-gap: 20px;
    grid-auto-rows: max-content;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

@media (max-width: 860px) {
    .vis-events_items {
        grid-template-columns: repeat(2, 1fr);
    }
}

.vis-events_item:nth-child(1) {
    grid-column: span 2;
}

.vis-events_item {
    position: relative;
    height: 300px;
    border-radius: 10px;
    color: #fff;
    text-align: right;
    overflow: hidden;
}

@media (max-width: 860px) {
    .vis-events_item {
        height: 200px;
    }
}

.vis-events_item:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(360deg, #000000ad, transparent);
    z-index: 1;
}

.vis-events_item > div {
    position: absolute;
    right: 30px;
    bottom: 30px;
    max-width: 300px;
    z-index: 2;
}

.vis-events_item > div > a {
    font-size: 20px;
    font-weight: bold;
}

.vis-events_item > div > span {
    display: block;
    font-size: 12px;
    font-weight: 300;
    margin-top: 15px;
}

@media (max-width: 860px) {
    .vis-events_item > div > a {
        font-size: 16px;
    }

    .vis-events_item > div > span {
        font-size: 10px;
    }
}

/* VIS BLOG */
.vis-blog h2 {
    font-size: 64px;
    font-weight: 600;
    margin-bottom: 40px;
    transition: 0.3s;
}

.vis-blog h2:hover {
    transform: scale(1.02);
}

.vis-blog_items {
    position: relative;
    padding: 10px 20px;
    overflow: hidden;
}

@media (max-width: 860px) {
    .vis-blog_items {
        padding: 0;
        overflow: visible;
    }
}

.vis-blog_items > .fa-regular {
    position: absolute;
    display: inline-block;
    top: 40%;
    left: 0;
    background: #B6B6B7;
    color: #fff;
    border-radius: 50px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    z-index: 5;
}

@media (max-width: 860px) {
    .vis-blog_items > .fa-regular {
        display: none;
    }
}

.vis-blog_items > .fa-regular + .fa-regular {
    left: unset;
    right: 0;
}

.vis-blog_items .swiper-button-disabled {
    display: none;
}

.vis-blog_item {
    transition: 0.3s;
}

.vis-blog_item:hover {
    transform: scale(1.01);
}

.vis-blog_bg {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: 10px;
    overflow: hidden;
}

.vis-blog_bg > [onclick] {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fff;
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 14px;
    text-align: center;
    border-radius: 50px;
}

.vis-blog_item > span {
    display: block;
    color: #858585;
    font-size: 12px;
    margin: 10px 0;
}

.vis-blog_item > b {
    display: block;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}

.vis-blog_item > a {
    display: inline-block;
    border: 3px solid #000;
    padding: 8px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
}

.vis-blog_item > a:before {
    content: "";
    position: absolute;
    inset: 0;
}

/* VIS RELATED */
.vis-rel_item {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: 10px;
    overflow: hidden;
}

.vis-rel_item > div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    color: #fff;
    background: linear-gradient(180deg, #000000ad, transparent);
    padding: 20px 30px;
    font-size: 12px;
    font-weight: 200;
}

.vis-rel_item > div a {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-top: 5px;
}

.vis-rel_item > div a:before {
    content: "";
    position: fixed;
    inset: 0;
}

/* VIS GALLERY */
.vis-gall h2 {
    font-size: 64px;
    font-weight: 600;
    margin-bottom: 40px;
    transition: 0.3s;
}

.vis-gall h2:hover {
    transform: scale(1.02);
}

.vis-gall_items {
    position: relative;
    padding: 0 20px;
    overflow: hidden;
}

@media (max-width: 860px) {
    .vis-gall_items {
        padding: 0;
        overflow: visible;
    }
}

.vis-gall_items > .fa-regular {
    position: absolute;
    display: inline-block;
    top: 45%;
    left: 0;
    background: #B6B6B7;
    color: #fff;
    border-radius: 50px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    z-index: 5;
}

@media (max-width: 860px) {
    .vis-gall_items > .fa-regular {
        display: none;
    }
}

.vis-gall_items > .fa-regular + .fa-regular {
    left: unset;
    right: 0;
}

.vis-gall_items .swiper-button-disabled {
    display: none;
}

.vis-gall_items > div > .swiper-slide {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: 10px;
    overflow: hidden;
}

/* VIS SAK */
.vis-sak_title {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
    transition: 0.3s;
}
.vis-sak_title:hover {
    transform: scale(1.02);
}
.vis-sak_title > a {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    background: #F5F5F5;
    padding: 10px 20px;
    border-radius: 10px;
}

.vis-sak_items {
    display: grid;
    grid-gap: 20px;
    grid-auto-rows: max-content;
    grid-template-columns: 450px 1fr;
    margin-bottom: 40px;
}

@media (max-width: 860px) {
    .vis-sak_items {
        grid-template-columns: 1fr;
    }
}

.vis-sak_items > ul {
    background: #F5F5F5;
    padding: 20px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    height: max-content;
    transition: 0.3s;
}

.vis-sak_items > ul:hover {
    transform: scale(1.02);
}

.vis-sak_items > ul > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 10px;
    padding: 5px 20px;
    border-radius: 10px;
}

.vis-sak_items > ul > li > a:hover {
    background: #e4e4e4;
}

.vis-sak_items > ul > li i {
    font-size: 30px;
}

.vis-sak_items > .vis-sak_item:nth-child(2) {
    grid-row: span 2;
    aspect-ratio: 16 / 9;
}

.vis-sak_item {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}

.vis-sak_item:hover {
    transform: scale(1.02);
}

.vis-sak_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vis-sak_item > a {
    position: absolute;
    left: 30px;
    bottom: 30px;
    z-index: 2;
    color: #fff;
    background: #ffffff42;
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 10px;
    max-width: 300px;
    font-weight: 600;
    font-size: 18px;
}

.vis-sak_item a:before {
    content: "";
    position: absolute;
    inset: -1000%;
}

.vis-sak_items > .vis-sak_item > div {
    position: absolute;
    color: #fff;
    bottom: 30px;
    right: 30px;
}

.vis-sak_item > div > span {
    display: block;
    font-size: 12px;
}

.vis-pla_items {
    display: grid;
    grid-gap: 30px;
    grid-auto-rows: max-content;
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 860px) {
    .vis-pla_items {
        grid-gap: 20px;
        grid-template-columns: repeat(2, 1fr);
    }
}

.vis-pla_item {
    position: relative;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}

.vis-pla_item:hover {
    transform: scale(1.02);
  }

@media (max-width: 860px) {
    .vis-pla_item {
        height: 250px;
    }
}

.vis-pla_item > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vis-pla_item > div {
    position: absolute;
    inset: 0;
    color: #fff;
    padding: 30px;
    background: linear-gradient(0deg, black, transparent);
    display: flex;
    flex-direction: column;
    font-size: 18px;
    font-weight: 600;
}

@media (max-width: 860px) {
    .vis-pla_item > div {
        padding: 15px;
    }
}

.vis-pla_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: auto;
}

.vis-pla_head > span {
    background: #ffffff42;
    backdrop-filter: blur(10px);
    padding: 7px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 400;
}

.vis-pla_item > div > div > span:not(.vis-pla_head span) {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: #ffffffad;
    margin-bottom: 10px;
}

.vis-pla_head > div > div > a:before {
    content: "";
}

/* VIS HERI */
.vis-heri {
    position: relative;
    height: 700px;
    border-radius: 40px;
    overflow: hidden;
}

.vis-heri .swiper-slide > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vis-heri_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(0%,-50%);
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    text-align: center;
}

@media (max-width: 860px) {
    .vis-heri_content {
        transform: translate(-50%, -70%);
    }
}

.vis-heri_content > b {
    display: block;
    font-size: 35px;
    font-weight: bold;
    margin: 15px 0 50px;
}

.vis-heri_content > a {
    display: inline-block;
    background: #ffffff42;
    backdrop-filter: blur(10px);
    padding: 12px 50px;
    border-radius: 50px;
    font-weight: 600;
}

.vis-heri_mini {
    position: absolute;
    background: #fff;
    color: #000;
    border-radius: 0 40px;
    max-width: 500px;
    padding: 30px;
    left: 0;
    bottom: 0;
    z-index: 2;
}

@media (max-width: 860px) {
    .vis-heri_mini {
        max-width: 100%;
    }
}

.vis-heri_mini:before, .vis-heri_mini:after {
    content: "";
    position: absolute;
    width: 50px;
    height: 40px;
    background: #fff;
    left: -10px;
    top: -40px;
    mask: radial-gradient(40px at top right, #0000 98%, #000);
    z-index: -1;
}

.vis-heri_mini:after {
    left: unset;
    right: -40px;
    top: unset;
    bottom: 0;
    mask: radial-gradient(40px at top right, #0000 98%, #000);
}

.vis-heri_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 10px;
    margin-bottom: 20px;
}

.vis-heri_head > b {
    font-size: 18px;
    margin-right: auto;
}

.vis-heri_head > i {
    display: inline-block;
    background: #eee;
    border-radius: 50px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}

.vis-heri_info {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    font-size: 14px;
    font-weight: 300;
}

.vis-heri_info > img {
    width: 60px;
    height: 60px;
    border-radius: 50px;
    border: 3px solid #fff;
}

.vis-heri_info > img + img {
    margin-left: -30px;
}
