/* === Reset === */
body {
    background-color: var(--bodyBg);
    background-repeat: no-repeat;
}

.cinzel {
    font-family: "Cinzel", serif;
    font-optical-sizing: auto;
    font-style: normal;
}

@media screen and (max-width:992px) {
    body:before {
        top: 59px !important;
    }
}

/* Scrollbar stili */
::-webkit-scrollbar {
    width: 8px;
    height: 3px;
}

/* Scrollbar thumb (kaydırma tuşesi) stili */
::-webkit-scrollbar-thumb {
    background: var(--primaryColor);
    border-radius: 8px;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--textColor, var(--textColor)) !important;
}

content {
    display: block;
}

* {
    margin: 0;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;

    text-indent: 0;
    margin-bottom: 0;
}

.center-w {
    display: table;
    margin: auto;
}

.center-h {
    display: flex;
    align-items: center;
}

.center-content {
    width: 100%;
}

section {
    overflow-x: clip;
    max-width: 100vw;
}

.col-sm-visible {
    display: none;
}

@media screen and (max-width:992px) {

    .col-sm-visible {
        display: block;
    }

    .col-sm-hidden {
        display: none !important;
    }
}

/* === Reset === */
/* === Head === */
.head {
    position: relative;
}

.head i {
    font-size: 30px;
    line-height: 30px;
    width: 100%;
    text-align: center;
    display: block;
    color: var(--primaryColor);
}

.head span {
    display: block;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    color: var(--textColor);
    margin-top: 10px;
    font-size: 16px;
}

.head h2 {
    color: black;
    text-align: center;
    font-weight: 600;
    margin-top: 10px;
    font-family: "Cinzel", serif;
    line-height: 2rem;
    font-size: 2.5rem;
    color: var(--primaryColor);
}

.head h3 {
    color: white;
    font-weight: 600;
    font-family: "Cinzel", serif;
    font-size: 24px;
    margin-bottom: 25px;
}

.head article {
    color: var(--textColor);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    line-height: 26px;
}

/* === Head End === */
/* ===== Form ===== */
.button {
    border-radius: var(--radius);
    padding: 0px 35px;
    line-height: 40px;
    font-weight: 400;
    width: initial;
    text-align: center;
    transition: .3s;
    display: inline-block;
    cursor: pointer;
    white-space: nowrap;
}

.button.fill {
    background-color: var(--primaryColor);
    color: white;
    border: solid 1px transparent;
}

.button.fill:hover {
    background-color: var(--secondaryColor) !important;
    color: color-mix(in srgb, var(--secondaryColor), black 50%) !important;
    border-color: var(--secondaryColor) !important;
}

.button.outline {
    border: solid 1px var(--primaryColor);
    color: var(--textColor);
    background-color: transparent;
}

.button.outline:hover {
    border-color: transparent !important;
    color: white !important;
    background-color: var(--primaryColor);
}

.button.addButton {
    display: flex;
    align-items: center;
    width: min-content;
    gap: 7px;
}

.button.addButton i {
    line-height: 0;
    font-size: 14px;
    font-weight: 600;
}

.inputBox input:not([type="checkbox"]),
.inputBox select,
.inputBox textarea {
    background-color: transparent;
    border: none;
    border-bottom: .5px solid color-mix(in srgb, var(--primaryColor) 10%, transparent);
    box-shadow: none !important;
    padding: 0px;
    font-family: "Inconsolata", monospace;
    font-size: 18px;
    font-weight: 500;
    padding-top: 10px;
}

.inputBox textarea {
    height: 230px;
    padding-top: 30px;
}

.inputBox label {
    padding: 0px;
    text-indent: 0px
}

.inputBox.phoneInput label {
    text-indent: 50px;
}

.inputBox.phoneInput.full label {
    transform: translateY(-19px);
    font-size: 12px;
    text-indent: 0px !important;
}

.inputBox.phoneInput:hover label {
    text-indent: 0px !important;
    transform: translateY(-19px);
}

.inputBox.textarea label {
    background-color: white;
    line-height: 12px;
    height: auto;
    transform: translateY(23px);
}

.inputBox.textarea:hover label,
.inputBox.textarea.full label {
    transform: translateY(10px);
}

.inputBox.textarea input {
    padding-top: 30px;
}

.inputBox,
.labelBox {
    position: relative;
    margin-bottom: 25px;
}

.inputBox label {
    position: absolute;
    width: initial;
    height: 100%;
    display: flex;
    align-items: center;
    text-indent: 0;
    transition: .3s;
    transform: translateY(0);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    pointer-events: none;
}

.inputBox.textarea label {
    position: absolute;
    width: initial;
    height: 25%;
    display: flex;
    align-items: center;
    transition: .3s;
    transform: translateY(0);
    background-color: whitesmoke;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
}

.inputBox:hover label,
.inputBox:focus label {
    transform: translateY(-14px);
    font-size: 12px;
}

.inputBox.textarea:hover label,
.inputBox.textarea:focus label {
    transform: translateY(0);
    height: 17%;
}

.inputBox.focusOn label {
    transform: translateY(-14px);
    font-size: 12px;
    opacity: .5;
}

.inputBox.textarea.focusOn label {
    transform: translateY(0);
    height: 17%;
}

.inputBox.selectBox label {
    width: initial;
}

.inputBox.selectBox:hover label {
    height: 20px;
    transform: translateY(9px);
}

.inputBox input,
.inputBox input[type="date"],
.inputBox textarea,
.inputBox select {
    border-radius: 0px;
    border: none;
    line-height: 20px;
    padding: 0px 25px;
    outline: none !important;
    box-shadow: none !important;
    height: 60px;
    padding-top: 10px;
    background-color: whitesmoke;
    width: 100%;
    color: var(--textColor);
    font-weight: 600;
    border-bottom: .5px solid color-mix(in srgb, var(--primaryColor) 10%, transparent);
}

.inputBox select {
    padding-top: 0px;
    appearance: none;
    /* Varsayılan ok işaretini kaldır */
    background-image: url('../img/down.svg');
    /* Kendi ok simgenizi ekleyin */
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: right 20px center;
    /* Ok simgesini sağdan içeri doğru itmek için */
}

.inputBox textarea {
    height: 224px;
    padding-top: 35px;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.inputBox.focusOn input,
.inputBox.focusOn textarea,
.inputBox.focusOn select {}

.inputBox.full input,
.inputBox.full textarea,
.inputBox.full select {}

.inputBox input:-webkit-autofill {
    background-color: #e8f0fe !important;
    /* Arka plan rengi */
    background: #e8f0fe !important;
    /* Arka plan rengi */
    color: #000;
    /* Metin rengi */
    border: 1px solid #198754;
    /* Kenarlık rengi */
    transition: background-color 0.5s ease-in-out;
    /* Geçiş efekti */
}

.inputBox input:-webkit-autofill:focus {
    background-color: #cce4ff;
    /* Odaklandığında arka plan rengi */
    color: #333;
    /* Odaklandığında metin rengi */
}

.inputBox input:-webkit-autofill,
.inputBox textarea:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px ghostwhite inset !important;
    -webkit-text-fill-color: var(--textColor) !important;
    transition: background-color 5000s ease-in-out 0s;
}

input:-webkit-autofill,
textarea:-webkit-autofill {
    animation: autofill-detected 0.01s;
}

@keyframes autofill-detected {
    from {}

    to {}
}

/* CSS tarafı */
input:-webkit-autofill,
textarea:-webkit-autofill {
    animation-name: autofill;
    animation-duration: 0s;
}

@keyframes autofill {
    from {}

    to {}
}

/* === Form End === */
/* === Header === */
header {
    position: fixed;
    z-index: 50;
    top: 0;
    width: 100%;
    background-color: transparent;
    transition: .5s;
    top: 0;
}

header.sticky {
    top: -50px;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    background-color: color-mix(in srgb, var(--primaryColor), transparent 20%);
}

body.page header {
    background-color: var(--primaryColor);
    border-bottom-left-radius: 35px;
    border-bottom-right-radius: 35px;
    position: sticky;
    top: -91px;
}

header .logo {
    height: 70px;
    display: flex;
    transition: .3s;
    background-image: url(../img/logo.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 198.59px;
    filter: invert(1) brightness(5);
    margin: auto;
}

header.sticky .logo img:first-child {
    display: none;
}

header.sticky .logo {
    display: block !important;
    background-image: url(../img/logo-typ.svg);
    height: 30px;
    background-position: left;
}

header .top {
    padding: 10px 0px;
    position: relative;
    z-index: 5;
    transition: .3s;
}

.stickyOn header .top {
    padding: 0px 0px;

}

header .top .contactUl {
    display: flex;
    gap: 25px;
    font-size: 16px;
    color: var(--textColor);
}

header .top .contactUl a {
    color: white;
    font-weight: 400;
    display: flex;
    align-items: center;
    opacity: .8;
}

header .top .contactUl a i {
    margin-right: 7px;
    aspect-ratio: 1/1;
    display: inline-block;
    line-height: 0;
    font-size: 15px;
}

header .top .language {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    position: relative;
    z-index: 5;
    border-radius: 30px;
    padding: 10px 13px;
    width: fit-content;
    margin-left: auto;
    position: relative;
    overflow: hidden;
}

header .top .language:before {
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    filter: blur(10px);
    z-index: -1;
}

header .top .language li a {
    display: flex;
    width: fit-content;
}

header .top .language li a img {
    height: 22px;
    border-radius: 100%;
}

header .top .language li a:not(.active) img {
    opacity: .5;
}

header .top .language li a.active img {
    opacity: 1;
}

header .top .userButtons li a.button {
    color: var(--primaryColor);
    font-weight: 600;
    font-size: 14px;
    transition: .2s;
    display: flex;
    align-items: center;
}

header .top .userButtons li a.button:hover {
    background-color: var(--secondaryColor);
    color: Whitesmoke;
}

header .top .userButtons li:last-child a {
    background-color: var(--primaryColor);
    color: whitesmoke;
    font-weight: 500;
}

header .top .userButtons li a.button .wallet {
    margin-left: 10px;
}

header .top .userButtons li a.button i {
    margin-right: 7px;
    aspect-ratio: 1/1;
    display: inline-block;
    line-height: 0;
    font-size: 16px;
}

header .top>div>.row>div {
    display: flex;
    align-items: center;
}

header .bottom {
    padding-bottom: 15px;
    border-top: 1px dotted rgb(255 255 255 / 25%);
}

header.sticky .bottom {
    border-top: none !important;
}


header .menuUl {
    display: flex;
    width: 100%;
    gap: 50px;
    font-size: 16px;
    position: relative;
    font-family: "Cinzel", serif;
}

header .menuUl li a {
    color: whitesmoke;
    font-weight: 500;
    transition: .2s;
    position: relative;
}

header .menuUl li a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    opacity: 0;
    height: 2px;
    transform: scaleX(0);
    transform-origin: center;
    background-color: white;
    transition: .3s;
}

header>.bottom>div>.row>div:first-child ul {
    justify-content: flex-end;
}

header>.bottom>div>.row>div:last-child ul {
    justify-content: center;
}

header>.bottom>div>.row>div {
    display: flex;
    align-items: end;
}

header .menuUl li a:hover:before {
    transform: scaleX(1);
    opacity: 1;
}

header>.container {
    position: relative;
    z-index: 2;
}

header nav>ul {
    display: flex;
    gap: 20px;
    margin-bottom: 0px;
    font-size: 13px;
    justify-content: center;
}

header nav ul a {
    color: var(--textColor);
    font-weight: 600;
    line-height: 40px;
    border-bottom: 3px solid transparent;
    display: block;
    transition: .3s;
    padding: 0px 10px;
    font-size: 14px;
    letter-spacing: .3px;
}

header nav ul a:hover,
header nav ul li.here a {
    border-color: var(--primaryColor) !important;
    color: var(--primaryColor) !important;
}

header .menuContent {
    display: flex;
    align-items: center;
    justify-content: center;
}

header .inputBox {
    position: relative;
}

header .inputBox input {
    border-radius: var(--radius);
    border: none;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.2);
    padding: 0px 25px;
    padding-right: 45px;
    line-height: 50px;
    width: 100%;
}

header .inputBox button {
    background-color: transparent;
    border: none;
    position: absolute;
    right: 10px;
    top: 7px;
    padding: 10px;
    aspect-ratio: 1/1;
    display: block;
    border-radius: var(--radius);
    color: #8F9298;
    transition: .3s;
}

header .inputBox button i {
    display: block;
    aspect-ratio: 1/1;
}

header .inputBox button:hover {
    background-color: var(--secondaryColor);
    color: whitesmoke;
}

header .userMenu {
    display: flex;
    gap: 20px;
    margin-bottom: 0px;
    width: 100%;
    justify-content: flex-end;
}

header .userMenu a {
    color: var(--textColor);
    font-size: 15px;
    font-weight: 600;
}

header .userMenu a i {
    margin-right: 5px;
}

header .userMenu .iconButton i {
    font-size: 23px;
}

header .userMenu .iconButton {
    position: relative;
}

header .userMenu .iconButton span {
    aspect-ratio: 1/1;
    background-color: var(--primaryColor);
    border-radius: 100%;
    color: white;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: -5px;
    bottom: -5px;

}

header .userMenu li:not(.iconButton) {
    border-bottom: 1px solid transparent;
    transition: .3s;
}

header .userMenu li:not(.iconButton):hover {
    border-bottom-color: var(--textColor);
}

header .bottom {
    padding-top: 15px;
}

/* Dropdoen Menü Basic */
.drop {
    position: relative;
}

.drop .toggle {
    line-height: 40px;
}

.drop .sub {
    position: absolute;
    height: 0px;
    overflow: hidden;
    transform: translateY(40px);
    opacity: 0;
    padding-top: 0px;
    transition: .3s;
}

.drop:hover>.sub {
    height: auto;
    transform: translateY(0px);
    padding-top: 24px;
    opacity: 1;
}

.drop:hover>.toggle {
    border: none !important;
}

.drop .sub .sub-content {
    position: relative;
    background-color: var(--primaryColor);
}

.drop .sub .sub-content ul li:last-child a {
    border: none;
}



.drop .sub .sub-content:before {
    font-family: 'default' !important;
    content: "\eb4a";
    position: absolute;
    left: 0;
    top: -24px;
    color: var(--primaryColor);
    z-index: 62;
    font-size: 24px;
    line-height: 24px;
}

.drop .sub .sub-content ul {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0px;
}

.drop .sub .sub-content ul li {
    width: 100%;
}

.drop .sub .sub-content ul li a {
    padding: 0px 15px;
    line-height: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, .8);
    display: block;
    color: White;
    transition: .2s;
    white-space: nowrap;
    font-weight: 400;
}

.drop .sub .sub-content ul li a:hover {
    background-color: whitesmoke;
}

/* Dropdoen Menü Basic End */

header .drop .toggle {
    color: var(--textColor);
    font-weight: 600;
}

header .drop .toggle:after {
    font-family: 'default' !important;
    content: "\e928";
    font-size: 10px;
    margin-left: 5px;
}

header .menuLink {
    white-space: nowrap;
}

header .menuLink i {
    margin-right: 10px;
}

header .toggle .caret {
    font-size: 11px;
    margin-left: 7px;
}

header .language .sub-content {
    background-color: white !important;
}

header .language .sub-content a {
    color: var(--textColor) !important;
}

header .language .drop .sub .sub-content:before {
    color: white !important;
    transform: scaleX(-1);
    left: initial;
    right: 0;
}

@media screen and (max-width:992px) {
    header.menuOn {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    header.sticky {
        top: 0;
    }

    header.menuOn>.bottom {
        transform: translateX(0);
    }

    header .mobileLogo {
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    header .mobileLogo li {
        width: initial;
    }

    header .mobileLogo .logo {
        height: 25px;
        width: 140px;
    }

    header .top .userButtons li a.button i {
        margin-right: 0px;
    }

    header .userButtons span.text {
        display: none !important;
    }

    header>.bottom>div {
        padding: 27px;
    }

    header>.bottom>div>.row>div:last-child ul {
        margin-left: 0px;
    }

    header .menuUl {
        flex-flow: column;
        justify-content: flex-start !important;
        text-align: left !important;
        gap: 15px;
        margin-top: 15px;
    }

    header>.bottom>.container>.row>div:nth-child(2) {
        order: 1;
        margin-bottom: 25px;
    }

    header .logo {
        background-image: url(../img/logo.png) !important;
        height: 40px;
        width: 100%;
    }

    header>.bottom>.container>.row>div:nth-child(1) {
        order: 2;
    }

    header>.bottom>.container>.row>div:nth-child(3) {
        order: 3;
    }

    header>.bottom {
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        width: 75%;
        background-color: color-mix(in srgb, var(--primaryColor), black 10%) !important;
        transform: translateX(-100%);
        transition: .3s;
        z-index: 15;
    }

    header .contactUl {
        display: none !important;
    }

    .menuToggle {
        padding: 15px;
        margin-left: -12px;
        color: white;
        font-size: 20px;
        margin-right: -16px;
    }

    header .inputBox input {
        border-radius: 0px;
        background-color: var(--primaryColor);
        color: white;
        outline: none;

    }

    header .searchContent {
        padding: 0px;
    }

    header .inputBox input::-webkit-input-placeholder {
        /* Chrome/Opera/Safari */
        color: rgba(255, 255, 255, .5);
    }

    header .inputBox input::-moz-placeholder {
        /* Firefox 19+ */
        color: rgba(255, 255, 255, .5);
    }

    header .inputBox input:-ms-input-placeholder {
        /* IE 10+ */
        color: rgba(255, 255, 255, .5);
    }

    header .inputBox input:-moz-placeholder {
        /* Firefox 18- */
        color: rgba(255, 255, 255, .5);
    }

    header .inputBox button {
        color: rgba(255, 255, 255, .7);
        opacity: 1;
    }

    header .inputBox button:hover {
        color: rgba(255, 255, 255, 1);
        background-color: transparent;
    }

    header .top .container {
        padding-bottom: 0px;
    }

    header {
        padding-bottom: 0px;
    }

    header .drop .toggle,
    header nav ul a {
        color: white !important;
    }

    header .logoContent {
        background-color: whitesmoke;
        margin-left: -12px;
        margin-right: -12px;
        padding: 0px 15px;
        width: auto;
    }

    header .menuContent {
        align-items: flex-start;
        padding-top: 0px;
    }

    header nav ul a:hover,
    header nav ul li.here a {
        background-color: whitesmoke;
        color: var(--primaryColor) !important;
    }

    header .menuContent>.container {
        padding: 0px;
    }

    .drop .sub .sub-content ul li a {
        border-bottom-color: rgba(255, 255, 255, .08) !important;
    }

    header .drop .toggle:after {
        float: right;
        transform: rotate(270deg);
    }

    header .mobileButton {
        background-color: var(--primaryColor);
        color: whitesmoke !important;
    }

    header .mobileButton i {
        margin-right: 7px !important;
    }
}

/* === Header End === */
/* === Headline === */
#headline {}

#headline>.container-fluid {
    padding: 0;
}

#headline .swiper-slide {
    border-bottom-left-radius: 150px;
    border-bottom-right-radius: 150px;
    overflow: clip;
}

#headline .videoContent {
    height: 60vh;
    overflow: hidden;
    position: relative;
}

#headline .videoContent:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgb(129 108 104 / 70%);
    z-index: 1;
    pointer-events: none;
}

#headline .videoContent:after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, #816c6899 1px, transparent 1px);
    background-size: 4px 3px;
    mix-blend-mode: overlay;
    width: 100%;
    height: 100%;
    z-index: 2;
}

#headline .videoContent video {
    transform: translateY(-20%);
    filter: saturate(0.5);
}

#headline .swiper-slide {
    position: relative;
}

#headline .swiper-slide .mask {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 3;
    display: flex;
    align-items: center;
}

#headline .swiper-slide .mask .caption {
    width: 50%;
    padding-top: 10%;
}

#headline .swiper-slide .mask h2 {
    font-family: "Cinzel", serif;
    font-weight: 600;
    color: white;
    margin: 0px !important;
    font-size: 50px;
}

#headline .swiper-slide .mask article {
    font-weight: 300;
    color: white;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 4px;
    opacity: .8;
    margin-top: 6px;
}

#headline .swiper-slide .mask .button {
    margin-top: 35px;
    background-color: rgba(255, 255, 255, .7);
    color: var(--primaryColor);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
}

/* === Headline End === */
/* === Reservation === */
.reservation {
    height: 0;
    z-index: 10;
    position: relative;
}

.reservation>div {
    height: 0;
}

.reservation .formBox {
    padding: 60px;
    border-radius: 35px;
    background-color: rgb(129 108 104 / 62%);
    backdrop-filter: blur(10px);
    width: 75%;
    margin-left: auto;
    transform: translateY(-75%);
    color: whitesmoke;
    position: relative;
}

.reservation .formBox:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 35px;
    z-index: -1;
    box-shadow: 0px 0px 0px 20px rgb(255 255 255 / 10%);
    border-radius: solid 1px rgb(177 164 161);
}

.reservation .formBox .head h3 {
    width: 70%;
}

.reservation .formBox .inputBox input {
    color: white;
}

/* === Reservation End === */
/* === Advantages === */
#advantages {
    padding: 40px 0px;
    position: relative;
}

#advantages>.container-fluid {
    width: 90%;
    position: relative;
    z-index: 15;
}

#advantages .head {
    margin-bottom: 60px !important;
}

#advantages .head h2 {
    text-align: left;
    color: var(--primaryColor);
}

#advantages .head article {
    text-align: left;
    color: var(--textColor);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    width: 45%;
    line-height: 26px;
}

#advantages .swiper {}

#advantages .swiper .img {
    aspect-ratio: 1 / 1;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 100%;
    box-shadow: 0px 0px 0px 10px color-mix(in srgb, var(--secondaryColor), transparent 80%);
    filter: saturate(50%);
    position: relative;
    overflow: hidden;
}

#advantages .swiper .swiper-slide {
    padding: 10px;
}

#advantages .swiper .img:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgb(129 108 104 / 70%);
    z-index: 1;
    pointer-events: none;
    opacity: .5;
}

#advantages .swiper .caption {
    width: 100%;
    text-align: center;
    color: var(--textColor);
    margin-top: 25px;
}

#advantages .swiper .caption h5 {
    font-size: 15px;
    font-weight: 400;
}

#advantages .swiper .swiper-slide {
    transform: scale(0);
    opacity: 0;
    transition: .8s;
}

#advantages .swiper-slide.current {
    transform: scale(1) !important;
    opacity: 1 !important;
}

/* === Advantages End === */
/* === Rooms === */
#rooms {
    padding: 40px 0px;
    position: relative;
}

#rooms .head {
    text-align: center;
    margin-bottom: 85px !important;
}

#rooms .head h2 {
    text-align: center;
    align-items: center;
}

#rooms .head article {
    width: 45%;
    margin: auto;
    text-align: center;
}

#rooms .sectionMask {
    position: absolute;
    width: 100%;
    top: 0;
    transform: scaleY(-1);
    z-index: -1;
    opacity: .15;
}

#rooms:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 25vh;
    left: 0;
    top: 0;
    background: #ffffff;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 0;
}

#rooms .sectionMask:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 25vh;
    left: 0;
    top: 0;
    background: #ffffff;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 0;
}

#rooms .roomLine {
    position: relative;
    z-index: 10;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}

#rooms .roomLine .title {
    display: flex;
    flex-flow: column;
    margin-left: auto;
    gap: 10px;
}

#rooms .roomLine .title h3 {
    font-weight: 600;
    font-size: 24px;
}

#rooms .roomLine .title article {
    color: var(--textColor);
}

#rooms .roomLine .title a.button {
    width: fit-content;
    margin-top: 15px;
}

#rooms .roomLine>.row>div {
    display: flex;
    align-items: center;
}

#rooms .roomLine>.row>div:first-child {
    padding-right: 35px;
}

#rooms .swiper-slide {
    width: auto !important;
}

#rooms .roomLine .swiper img {
    display: block;
    width: auto;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

#rooms .roomLine .swiper {
    border-radius: 15px;
}

.swiper-pagination {
    bottom: 0px;
}

.swiper-pagination span {
    height: 4px;
    border-radius: 5px;
    width: 4px;
    transition: .3s;
    margin-left: 2px !important;
    margin-right: 2px !important;
    background-color: var(--primaryColor);
}

.swiper-pagination span.swiper-pagination-bullet-active {
    width: 20px;
    background-color: var(--primaryColor);
}

#rooms .roomLine:nth-child(odd)>.row {
    flex-flow: row-reverse;
}

#rooms .birds {
    display: flex;
    pointer-events: none;
    position: absolute;
    top: 5%;
    left: 0;
    width: 100%;
    z-index: -49;
    opacity: .6;
}

#rooms .birds img {
    width: 100%;
}

/* === Rooms End === */
/* === Corporate === */
#corporate {
    padding: 30px 0px;
    position: relative;
    padding-bottom: 120px;
}

#corporate .head {
    margin-top: 110px !important;
}

#corporate .head .flexBox {
    display: flex;
    flex-flow: column;
    gap: 10px;
    width: fit-content;
}

#corporate .head span {
    text-align: left;
    color: var(--textColor);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 3px;
    line-height: 26px;
    font-weight: 500;
    opacity: .8;
}

#corporate .head h2,
#corporate .head article {
    text-align: left;
}

#corporate .head h2 {
    line-height: 2.5rem;
}

#corporate .head article p {
    letter-spacing: 0px;
    text-transform: none;
    margin-top: 20px;
    font-size: 17px;
    font-style: italic;
    font-weight: 500;
    position: relative;
    line-height: 32px;
}

#corporate .head article p:before {
    content: "\eb80";
    position: absolute;
    font-family: 'default' !important;
    left: -40px;
    top: -10px;
    font-size: 22px;
    transform: scaleX(-1);
}

#corporate .head article p:after {
    content: "\eb80";
    position: absolute;
    font-family: 'default' !important;
    right: -30px;
    bottom: -10px;
    font-size: 22px;
    transform: scaleY(-1);
}

#corporate .head a.button {
    width: fit-content;
    margin-top: 20px;
}

#corporate .shadowImg {
    margin-bottom: -100%;
    margin-top: -100%;
    width: 100%;
}

#corporate:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 68%;
    height: 100%;
    background-image: url(../img/corporate.png);
    background-size: cover;
    opacity: 1;
    background-position: bottom left;
    filter: saturate(0.5);
}

@media screen and (min-width: 2048px) {
    #corporate:before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 58%;
        height: 115%;
        background-image: url(../img/corporate.png);
        background-size: cover;
        opacity: 1;
        background-position: top left;
        filter: saturate(0.5);
    }
}

/* === Corporate End === */
/* === Hook === */
#hook {
    padding: 0px 0px;
    position: relative;
    z-index: 2;
    padding-bottom: 60px;
}

#hook:before {
    content: "";
    position: absolute;
    width: 100%;
    height: calc(100% - 100px);
    left: 0;
    top: 90px;
    background-color: whitesmoke;
    z-index: -1;
}

#hook .wave {
    width: 100%;
    position: relative;
    transform: translateY(calc(-100% - -107px))
}

#hook>.container {
    margin-top: -160px;
}

#hook .videoContent {
    position: relative;
}

#hook .videoContent:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 2;
    background-image: url(../img/hook_video_mask.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    aspect-ratio: 1/1;
}

#hook .head {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 5;
}

#hook .head h2 {
    text-align: left
}

#hook .head article p {
    letter-spacing: 0px;
    text-transform: none;
    margin-top: 30px;
    font-size: 17px;
    font-weight: 500;
    position: relative;
    line-height: 32px;
}

#hook .head ul {
    font-weight: 400;
    color: var(--primaryColor);
    display: flex;
    flex-flow: column;
    gap: 20px;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
}

#hook .head ul:before {
    content: "";
    width: 5px;
    height: 100%;
    background-color: var(--secondaryColor);
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 15px;
}

#hook .head ul li {
    position: relative;
}

#hook .head ul li:before {
    position: absolute;
    content: "";
    width: 11px;
    height: 11px;
    background-color: var(--secondaryColor);
    left: calc(-25px + -2.53px);
    top: calc(50% + -5px);
    transform: rotate(45deg);
    box-shadow: 0px 0px 0px 2px whitesmoke;
}

#hook .head ul li:last-child:before {
    box-shadow: 0px 0px 0px 2px #d9ebef;
}





#hook .head a.button {
    margin-top: 35px;
}

#hook:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background-image: url(../img/lara.webp);
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 2;
    opacity: .5;
    pointer-events: none;
}

/* === Hook End === */
/* === Destinations === */
#destinations {
    padding-bottom: 60px;
    padding-top: 0;
    position: relative;
    z-index: 5;
}

#destinations>.wave {
    transform: translateY(-100%);
}

#destinations .head {
    margin-top: -70px;
    margin-bottom: 70px;
}

#destinations .head h2 {
    text-align: left;
}

#destinations .head article {
    width: 45%;
    text-align: left;
}

#destinations .swiper img {
    border-radius: 65px 165px;
    filter: saturate(50%);
}

#destinations .swiper .box {
    position: relative;
}

#destinations .swiper .box .caption {
    text-align: center;
    justify-content: center;
    padding-left: 10%;
}

#destinations .swiper .box .caption .head {
    margin-top: -30px;
    position: relative;
    z-index: 2;
    margin-bottom: 25px !important;
    text-align: left;
}

#destinations .swiper .box .caption .head i {
    background-color: white;
    display: inline-flex;
    width: fit-content;
    padding: 15px;
    border-radius: 100%;
    font-size: 40px;
    justify-content: center;
    align-items: center;
    position: relative;
    line-height: normal;
}

#destinations .swiper .box .caption .head i:after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 100%;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    backdrop-filter: blur(10px);
    transform: scale(1.5);
}

#destinations .swiper .box .caption .head h3 {
    color: var(--primaryColor);
    margin-top: 10px !important;
    font-size: 24px;
    margin-bottom: 0px;
    text-align: left;
}

#destinations .swiper .box .caption>article {
    color: var(--textColor);
    width: 80%;
    font-size: 17px;
    font-weight: 500;
    font-style: italic;
    text-align: left;
}

#destinations .swiper .box .caption>article p {
    position: relative;
}

#destinations .swiper .box .caption>article p:before {
    content: "\eb80";
    position: absolute;
    font-family: 'default' !important;
    left: -40px;
    top: -10px;
    font-size: 22px;
    transform: scaleX(-1);
}

#destinations .swiper .box .caption>article p:after {
    content: "\eb80";
    position: absolute;
    font-family: 'default' !important;
    right: -30px;
    bottom: -10px;
    font-size: 22px;
    transform: scaleY(-1);
}

#destinations .swiper-slide-next {
    position: relative;
}

#destinations .swiper-slide-next:before {
    content: "";
    position: absolute;
    width: 10%;
    height: 100%;
    background: #ffffff;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 49%);
    z-index: 5;
    left: 0;
    top: 0;
}

#destinations .swiper-slide-prev:before {
    content: "";
    position: absolute;
    width: 10%;
    height: 100%;
    background: #ffffff;
    background: linear-gradient(-90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 49%);
    z-index: 5;
    right: 0;
    top: 0;
}

#destinations .sliderContent {
    position: relative;
}

#destinations .head b {
    display: block;
    text-align: center;
    font-weight: 600;
    margin-top: 10px;
    line-height: 2rem;
    font-size: 1.5rem;
    color: var(--primaryColor);
}

/* === Destinations End === */
/* === Footer === */
footer {
    padding-top: 65px;
    background-color: white;
    background-color: color-mix(in srgb, var(--primaryColor) 5%, transparent);
    border-top-left-radius: 150px;
    border-top-right-radius: 150px;
    color: var(--primaryColor);
}

footer .top {
    padding-bottom: 45px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

footer .top .box {
    background-color: #FBFBFB;
    padding: 35px;
    border-radius: 100px;
}

footer .top .box ul {
    display: flex;
    gap: 10px;
}

footer .logoContent img {}

footer .logoContent {
    margin-bottom: 35px;
}

footer .top .box ul li:first-child {
    font-weight: 700;
    font-size: 16px;
    color: black;
    margin-right: 25px;
    display: flex;
    align-items: center;
}

footer .top .box ul li a i {
    aspect-ratio: 1/1;
    border-radius: 100%;
    background-color: var(--primaryColor);
    color: whitesmoke;
    display: inline-block;
    font-size: 18px;
    line-height: 18px;
    padding: 10px;
}

footer .top .box .title {
    font-weight: 700;
    font-size: 16px;
    color: black;
    display: flex;
    align-items: center;
}

footer .top .inputBox {
    position: relative;
}

footer .top .inputBox input {
    border-radius: var(--radius);
    background-color: var(--secondaryColor);
    border: none;
    padding: 0px 25px;
    padding-right: 65px;
    line-height: 50px;
    color: White;
    width: 100%;
    min-width: 350px;
}

footer .top .inputBox input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: rgba(255, 255, 255, .8);
}

footer .top .inputBox input::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(255, 255, 255, 1);
}

footer .top .inputBox input:-ms-input-placeholder {
    /* IE 10+ */
    color: rgba(255, 255, 255, 1);
}

footer .top .inputBox input:-moz-placeholder {
    /* Firefox 18- */
    color: rgba(255, 255, 255, 1);
}

footer .top .inputBox button {
    position: absolute;
    right: 8px;
    top: 7px;
    border-radius: var(--radius);
    background-color: white;
    border: none;
    padding: 7px 25px;
    color: var(--secondaryColor);
    font-size: 14px;
    font-weight: 600;
    transition: .3s;
}

footer .top .inputBox button:hover {
    background-color: var(--primaryColor);
    color: White;
}

footer .bottom {
    padding-top: 15px;
    padding-bottom: 15px;
}

footer .bottom ul li.listHead {
    font-weight: 700;
    font-size: 16px;
    color: black;
    margin-bottom: 7px;
    display: block;
}

footer .bottom ul li a {
    color: var(--primaryColor);
    line-height: 36px;
}

footer .bottom ul li.nested {
    margin-top: 20px;
    font-size: 15px;
}

footer .bottom ul li.nested a {
    color: var(--textColor);
    font-weight: 500;
}

footer .bottom ul>li.nested>ul>li:last-child {
    display: flex;
    margin-top: 10px;
}

footer .bottom ul li.nested ul>li i {
    margin-right: 10px;
}

footer .banks {
    width: 100%;
}

footer .banks .container {
    padding: 15px 0px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}

footer .banks span {
    margin-right: 20px;
    font-weight: 600;
}

footer .pageEnd {
    text-align: center;
    padding: 15px 0px;
    color: var(--textColor);
    font-size: 13px
}

footer a {
    color: color-mix(in srgb, var(--primaryColor) 70%, transparent);
}

footer a:hover {
    color: color-mix(in srgb, var(--primaryColor) 100%, transparent);
}

footer .contactList,
footer .socials {
    display: flex;
    flex-flow: column;
    gap: 15px;
    margin-bottom: 45px;
}

footer .head {
    font-size: 20px;
    color: var(--primaryColor);
    font-weight: 600;
}

footer ul>li.head:not(:first-child) {
    margin-top: 20px;
}

footer .menuList>ul {
    display: flex;
    flex-flow: column;
    gap: 15px;
}

footer .badge {
    background-color: color-mix(in srgb, var(--primaryColor) 10%, transparent);
    padding: 7px 15px;
    border-radius: var(--radius);
    color: color-mix(in srgb, var(--primaryColor) 80%, transparent);
    font-size: 14px;
    font-weight: 400;
    transition: .2s;
}

footer .badge:hover {
    background-color: color-mix(in srgb, var(--primaryColor) 100%, transparent);
    color: white;
}

footer .badgeList {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

footer .copy {
    font-size: 13px;
}

@media screen and (max-width:992px) {
    footer .top {
        padding-bottom: 15px;
    }

    footer .top .box {
        text-align: center;
        width: 100%;
        border-radius: 0px;
        padding: 15px;
    }

    footer .top .box .title {
        text-align: center;
        justify-content: center;
    }

    footer .top .inputBox {
        margin-top: 5px;
    }

    footer .top .inputBox input {
        min-width: 100%;
    }

    footer .top ul {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    footer .top ul li:first-child {
        min-width: 100%;
        text-align: left;
        justify-content: flex-start;
    }

    footer .bottom {
        padding-top: 35px;
        zoom: 90%;
    }

    footer .bottom ul {
        margin-bottom: 25px;
    }

    footer .bottom ul .nested {
        display: none;
    }

    footer .mobileAdres {
        text-align: center;
        padding-top: 25px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    footer .mobileAdres>li:last-child {
        margin-top: 25px;
    }
}

/* === Footer End  === */
/* === Page : Rooms === */
#rooms.page {
    padding: 65px 0px;
}

#rooms.page>.container-fluid {
    width: 85%;
}

#rooms.page .swiper {
    border-radius: 2vw;
}

#rooms.page .roomLine .swiper img {
    height: 27vw;
}

#rooms.page .roomLine {
    position: relative;
    margin-bottom: 200px !important;
}

#rooms.page .roomLine .caption {
    position: absolute;
    left: 10%;
    bottom: 0;
    margin-bottom: -10%;
    width: 30%;
    z-index: 15;
    padding: 35px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    background-color: color-mix(in srgb, var(--primaryColor), transparent 30%);
    color: whitesmoke;
    display: flex;
    flex-flow: column;
    gap: 15px;
    justify-content: flex-start;
}

#rooms.page .roomLine:nth-child(odd) .caption {
    left: initial;
    right: 10%;
}

#rooms.page .roomLine .caption .title {
    font-weight: 700;
    font-family: "Cinzel", serif;
    font-size: 20px;
    margin-left: 0px;
}

#rooms.page .roomLine .caption a.button {
    width: fit-content;
    gap: 10px;
    display: flex;
    align-items: center;
}

#rooms.page .roomLine .caption a.button i {
    font-size: 10px;
}

/* === Page : Rooms End === */
/* === Room === */
#room.page {
    padding: 60px 0px;
}

#room.page .imageList {}

#room.page .imageList ul {
    display: flex;
    flex-flow: column;
    gap: 10px;
}

#room.page .imageList ul li {}

#room.page .imageList ul li img,
#room.page .imageList ul li video {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

#room.page .cardData {
    padding: 15px 15px;
    transition: 1.5s;
    position: sticky;
    top: -100vh;
}

#room.page .cardData .head {
    position: sticky;
    top: 54px;
    padding-top: 15px;
    z-index: 10;
}

#room.page .cardData .head:before {
    content: "";
    width: 100%;
    height: 150%;
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: -1;
    background: #ffffff;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgb(255 255 255 / 77%) 26%, rgba(255, 255, 255, 1) 100%);
}

#room.page .cardData .head h3 {
    color: var(--primaryColor);
    font-size: 30px;
    font-weight: 600;
}

#room.page .cardData .detailText article {
    text-transform: none;
    font-size: 15px;
    letter-spacing: 0px;
    color: var(--textColor);
    line-height: 26px;
}

#room.page .cardData .detailText article p:first-child {
    letter-spacing: 0px;
    text-transform: none;
    margin-top: 20px;
    font-size: 16px;
    font-style: italic;
    font-weight: 500;
    position: relative;
    line-height: 32px;
    padding: 0px 25px;
    margin-bottom: 35px;
}

#room.page .cardData .detailText article p:first-child:before {
    content: "\eb80";
    position: absolute;
    font-family: 'default' !important;
    left: -5px;
    top: -10px;
    font-size: 20px;
    transform: scaleX(-1);
}

#room.page .cardData .detailText article p:first-child:after {
    content: "\eb80";
    position: absolute;
    font-family: 'default' !important;
    right: -5px;
    bottom: -10px;
    font-size: 20px;
    transform: scaleY(-1);
}

#room.page .featureList {
    margin-top: 25px !important;
    transition: 1s;
    opacity: 1;
    max-height: 30vh;
}

#room.page .featureList ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(calc(25% - 10px), 1fr));
    gap: 10px;
}

#room.page .featureList ul li {
    aspect-ratio: 1/1;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0px 0px 0px 1px color-mix(in srgb, var(--primaryColor), transparent 80%);
    background-color: color-mix(in srgb, var(--primaryColor), transparent 95%);
    border-radius: 5px;
    padding: 10px;
}

#room.page .featureList ul li span {
    font-weight: 500;
    font-size: 12px;
    color: var(--textColor);
}

#room.page .buttonContent {
    margin-top: 35px !important;
    position: sticky;
    bottom: 0px;
    padding-top: 20px;
    padding-bottom: 20px;
}

#room.page .buttonContent:before {
    content: "";
    width: 100%;
    height: 150%;
    position: absolute;
    left: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
    background: #ffffff;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.48) 26%, rgba(255, 255, 255, 1) 100%);
}

#room.page .buttonContent .button {
    width: 100%;
    line-height: 60px;
}

#room.page .cardData.fixedModeOn {}

#room.page .cardData.fixedModeOn {
    position: sticky;
    top: 60px;
}

#room.page .cardData.fixedModeOn .featureList {
    opacity: 0;
    max-height: 0vh;
}

/* === Room End === */
/* === Room List === */
#roomList {
    position: relative;
    padding: 25px 0px;
}

#roomList .head {
    margin-bottom: 35px !important;
}

#roomList .head i {
    font-size: 20px;
}

#roomList>.container-fluid {
    padding: 0;
}

#roomList .box {
    padding: 10px;
    display: block;
}

#roomList .box .title {
    color: var(--textColor);
    font-weight: 700;
    font-family: "Cinzel", serif;
    font-size: 20px;
    margin-left: 0px;
    margin-top: 15px;
}

#roomList .box article {
    text-transform: none;
    font-size: 15px;
    letter-spacing: 0px;
    color: var(--textColor);
    line-height: 26px;
}

#roomList .box .visual img {
    border-radius: 7px;
}

/* === Room List End === */
/* === Blog List === */
#blogList {
    position: relative;
    padding: 25px 0px;
}

#blogList .head {
    margin-bottom: 35px !important;
}

#blogList .head i {
    font-size: 20px;
}

#blogList>.container-fluid {
    padding: 0;
}

#blogList .box {
    padding: 10px;
    display: block;
}

#blogList .box .title {
    color: var(--textColor);
    font-weight: 700;
    font-family: "Cinzel", serif;
    font-size: 20px;
    margin-left: 0px;
    margin-top: 15px;
}

#blogList .box article {
    text-transform: none;
    font-size: 15px;
    letter-spacing: 0px;
    color: var(--textColor);
    line-height: 26px;
}

#blogList .box .visual img {
    border-radius: 7px;
}

/* === Blog List End === */
/* === Page : Corporate === */
#corporate.page {
    position: relative;
    padding: 60px 0px;
    padding-top: 0px;
    background-color: whitesmoke;
}

#corporate.page:before {
    display: none;
}

#corporate.page .headContent {
    width: 100%;
    max-height: 30vh;
    overflow: hidden;
    padding: 0;
    position: relative;
    margin-top: -35px;
}

#corporate.page .headContent .videoContent {
    transform: translateY(-36%);
}

#corporate.page .headContent .videoContent:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgb(129 108 104 / 70%);
    z-index: 1;
    pointer-events: none;
}

#corporate.page .headContent .videoContent:after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, #816c6899 1px, transparent 1px);
    background-size: 4px 3px;
    mix-blend-mode: overlay;
    width: 100%;
    height: 100%;
    z-index: 2;
}

#corporate.page .headContent .mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#corporate.page .headContent .mask .head {
    margin-top: 0px !important;
}

#corporate.page .headContent .mask .head h2 {
    justify-content: center;
    align-items: center;
    text-align: center;
    color: whitesmoke;
}

#corporate.page .headContent .mask .head article {
    text-align: center;
    color: whitesmoke;
    width: 50%;
    margin: auto;
    opacity: .7;
}

#corporate.page .swiper .swiper-slide a {
    padding: 10px;
}

#corporate.page .swiper .img {
    aspect-ratio: 1 / 1;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 100%;
    box-shadow: 0px 0px 0px 10px whitesmoke;
    filter: saturate(50%);
    position: relative;
    overflow: hidden;
}

#corporate.page .swiper .img:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgb(129 108 104 / 70%);
    z-index: 1;
    pointer-events: none;
    opacity: .5;
}

#corporate.page .swiper .caption {
    width: 100%;
    text-align: center;
    color: var(--textColor);
    margin-top: 25px;
}

#corporate.page .swiper .caption h5 {
    font-size: 15px;
    font-weight: 400;
}

#corporate.page .advantagesList {
    margin-top: -65px;
    padding: 0;
    z-index: 10;
    position: relative;
}

#corporate.page .swiper.advantages .swiper-slide {
    transform: scale(0);
    opacity: 0;
    transition: .8s;
}

#corporate.page .swiper.advantages .swiper-slide.current {
    transform: scale(1) !important;
    opacity: 1 !important;
}


#corporate.page .sliderContent {
    position: relative;
    overflow: hidden;
}

#corporate.page .sliderContent:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 2;
    background-image: url(../img/hook_video_mask.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    aspect-ratio: 1 / 1;
    pointer-events: none;
}

#corporate.page .head {
    position: relative;
    z-index: 10;
}

/* === Page : Corporate End === */
/* === Page : Coffe === */
#coffe.page {
    position: relative;
}

#coffe.page>.container-fluid {
    padding: 0;
    margin-top: -35px;
}

#coffe.page .swiperCoffe .swiper-slide {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    filter: saturate(50%);
}

#coffe.page .swiperCoffe:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgb(129 108 104 / 50%);
    z-index: 2;
    pointer-events: none;
}

#coffe.page>.textContent {
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    position: relative;
    z-index: 5;
    margin-top: -65px;
    background-color: white;
    padding: 60px 0px;
}

#coffe.page>.textContent .head {
    margin-bottom: 60px;
}

#coffe.page>.textContent .head h2 {
    text-align: left;
}

#coffe.page>.textContent .events {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 60px;
}

#coffe.page .eventList {
    display: flex;
    justify-content: flex-end;
}

#coffe.page .eventList li {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#coffe.page .eventList li:not(:first-child) {
    margin-left: -20px;
}

#coffe.page .eventList li:last-child {
    margin-left: 10px;
    display: flex;
    align-items: center;
    font-weight: 700;
    color: var(--primaryColor);
    font-family: "Cinzel", serif;
    font-size: 20px;
}

#coffe.page .eventList li:last-child a.button {
    margin-left: 15px;
    font-size: 16px;
    font-family: "Inter", sans-serif;
}

#coffe.page .eventList li:not(:last-child) {
    filter: grayscale(50%) saturate(.5);
    border-radius: 100%;
    width: 60px;
    aspect-ratio: 1/1;
    box-shadow: 0px 0px 0px 3px white;
}

#coffe.page .articleContent {
    padding-top: 30px;
    padding-bottom: 30px;
}

#coffe.page .articleContent article {
    font-size: 16px;
    color: var(--textColor);
}

#coffe.page .articleContent article p:first-child {
    letter-spacing: 0px;
    text-transform: none;
    margin-top: 20px;
    font-size: 25px;
    font-weight: 500;
    position: relative;
    color: var(--primaryColor);
    line-height: 36px;
    padding: 0px 30px;
    margin-bottom: 40px;
}

#coffe.page .articleContent article p:first-child:before {
    content: "\eb80";
    position: absolute;
    font-family: 'default' !important;
    left: 0px;
    top: -10px;
    font-size: 22px;
    transform: scaleX(-1);
}

#coffe.page .articleContent article p:first-child:after {
    content: "\eb80";
    position: absolute;
    font-family: 'default' !important;
    right: -30px;
    bottom: 0px;
    font-size: 22px;
    transform: scaleY(-1);
}

#coffe.page .swiperCocktail {
    margin-left: -35px;
}

#coffe.page .swiperCocktail .swiper-slide {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    height: 500px;
    filter: saturate(50%);
    background-color: white;
}

/* === Page : Coffe End === */
/* === Page : Events  === */
#events.page {
    padding: 100px 0px;
    background-color: whitesmoke;
    padding-bottom: 130px;
    margin-top: -35px;
}

#events.page .head {
    margin-bottom: 60px !important;
}

#events.page .head article {
    text-align: center;
    width: 50%;
    margin: auto;
}

/* === Page : Events End === */
/* === Page : Services  === */
#services.page {
    padding: 60px 0px;
    padding-bottom: 80px;
}

#services.page .head {
    margin-bottom: 60px !important;
}

#services.page .head article {
    text-align: center;
    width: 50%;
    margin: auto;
}

/* === Page : Services End === */
/* === Page : Gallery  === */
#gallery.page {
    padding: 60px 0px;
    padding-bottom: 80px;
}

#gallery.page .head {
    margin-bottom: 60px !important;
}

#gallery.page .head article {
    text-align: center;
    width: 50%;
    margin: auto;
}

#gallery.page .gridContent .eventList {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 5px;
}

/* === Page : Gallery End === */
/* === Page : Blogs  === */
#blogs.page {
    padding: 60px 0px;
    padding-bottom: 80px;
}

#blogs.page .head {
    margin-bottom: 60px !important;
}

#blogs.page .head article {
    text-align: center;
    width: 50%;
    margin: auto;
}

/* === Page : Blogs End === */
/* === Page : Content  === */
#content.page {
    padding: 60px 0px;
    padding-bottom: 80px;
}

#content.page .head {
    margin-bottom: 60px !important;
}

#content.page .head article {
    text-align: center;
    width: 50%;
    margin: auto;
}

#content.page .editorData {
    padding-bottom: 45px;
    border-bottom: solid 1px color-mix(in srgb, var(--secondaryColor), transparent 70%);
}

#content.page .editorData article {
    color: var(--textColor);
}

#content.page .editorData article img {
    border-radius: 10px;
}

/* === Page : Content End === */
/* === Grid Content === */
.gridContent .eventList {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 35px;
}

.gridContent .eventList a {
    display: flex;
    flex-flow: column;
    gap: 10px;
}

.gridContent .eventList a .img {
    aspect-ratio: 1/1;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 7px;
}

.gridContent .caption h5 {
    color: var(--textColor);
    font-weight: 700;
    font-family: "Cinzel", serif;
    font-size: 20px;
    margin-left: 0px;
    margin-top: 15px;
}

.gridContent .caption {
    margin-bottom: 10px;
}

.gridContent .caption article {
    text-transform: none;
    font-size: 15px;
    letter-spacing: 0px;
    color: var(--textColor);
    line-height: 26px;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gridContent .button.fill {
    width: fit-content;
}

/* === Grid Content End === */
/* === Page : Contact === */
#contact {
    padding: 60px 0px;
    padding-bottom: 0px;
    position: relative;
    z-index: 15;
    background-color: color-mix(in srgb, var(--primaryColor) 5%, transparent);
}

#contact .head {
    margin-bottom: 60px;
}

#contact .head article {
    text-align: center;
}

#contact .item {
    text-align: center;
    margin-top: 35px;
}

#contact .item:nth-child(3) {
    transition: .5s;
}

#contact .item:nth-child(4) {
    transition: .8s;
}

#contact .item:nth-child(5) {
    transition: 1.1s;
}

#contact .item i {
    font-size: 30px;
    line-height: 30px;
    display: inline-block;
    padding: 25px;
    background-color: var(--primaryColor);
    color: white;
    border-radius: 100%;
    margin-bottom: 35px;
}

#contact .item .title {
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    color: var(--textColor);
    opacity: .6;
    margin-bottom: 10px;
}

#contact .item .text {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: var(--primaryColor);
}

#contact .content {
    margin-top: 65px;
    margin-bottom: 0px;
    background-color: white;
    border-top-left-radius: 85px;
    border-top-right-radius: 85px;
}

#contact .content .box {
    padding: 35px;
    padding-top: 65px;
    background-color: white;
    border-radius: var(--radius);
    background-color: transparent;
}

#contact .content form {}

#contact iframe {
    border-radius: 30px;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    transition: .3s;
}

#contact iframe:hover {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}

#contact .button {
    display: table;
    margin: auto;
    margin-top: 25px;
    border: none;
}

#contact .button:hover {
    background-color: var(--success);
    border-color: var(--success);
}

#contact .contactList {
    font-size: 16px;
    font-weight: 500;
}

#contact .contactList li {
    margin-bottom: 15px;
}

#contact .contactList li a {
    color: var(--textColor);
    display: flex;
    align-items: center;
    width: fit-content;
}

#contact .contactList li a i {
    margin-right: 10px;
    float: left;
    font-size: 25px;
    padding: 10px;
    border-radius: var(--radius);
    border: solid 1px;
    color: var(--primaryColor);
}

#contact .socials {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-top: 35px;
}

#contact .socials li {
    margin-right: 5px;
}

#contact .socials li a {
    color: white;
    border-radius: var(--radius);
    border: solid 1px transparent;
    white-space: nowrap;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: .2s;
    background-color: var(--primaryColor);
}

#contact .socials li a i {
    font-size: 22px;
    padding: 15px;
}

#contact .socials li a span {
    line-height: 18px;
    display: flex;
    float: right;
    align-items: center;
}

#contact .socials li a:hover {
    color: white;
    border: solid 1px var(--secondaryColor);
    background-color: var(--secondaryColor);
}

#contact .socials li:first-child {
    width: 100%;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--primaryColor);
}

#contact .inputBox input,
#contact .inputBox textarea {
    background-color: white;
}

#contact .inputBox label {
    border-radius: 30px;
    background-color: transparent;
}

@media screen and (max-width:992px) {
    #contact .button {
        padding: 0px 45px;
    }

    #contact .head {
        padding: 0px;
        font-size: 24px;
        margin-bottom: 15px;
    }

    #contact .contactList {
        text-align: center;
        padding-top: 25px;
    }

    #contact .contactList i {
        display: none;
    }

    #contact .head article {
        text-align: center;
        font-size: 12px;
        width: 100%;
        line-height: 23px;
        padding: 0px 25px;
    }

    #contact .item {
        zoom: 73%;
    }

    #contact .content {
        margin-top: 35px;
        padding: 0px;
        padding-bottom: 15px;
        border-radius: 0px;
    }

    #contact .content .box {
        background-color: transparent;
        box-shadow: none;
        padding: 15px;
    }

    #contact .content .box .input {
        background-color: transparent;
    }

    #contact .content form .inputBox {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    #contact .socials {
        justify-content: center;
        margin-top: 15px;
    }

    #contact .socials li {
        margin-left: 0px;
        margin-right: 10px;
    }

    #contact .socials span {
        display: none !important;
    }

    #contact .socials a {
        background-color: var(--primaryColor) !important;
        color: White !important;
        border: none !important;
        aspect-ratio: 1/1;
        border-radius: 100% !important;
    }

    #contact .socials a i {
        margin: 0px !important;
    }

    #contact .contactList li a {
        display: inline-block;
    }

    #contact .item:nth-child(4) {
        display: none;
    }
}

/* === Page : Contact End === */
.reservation .formBox .inputBox input[type="date"] {
    padding-left: 0;
    padding-right: 0;
    font-weight: 400;
    background-color: transparent;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: brightness(0) invert(1);
    /* Beyaz yapar */
    opacity: 1;
    /* Bazı temalarda görünürlük artırır */
}
.inputBox.date label {
    transform: translateY(-14px);
    font-size: 12px;
    opacity: .5;
}
/* ====== Mobile Settings ====== */
@media screen and (max-width:992px) {
    input[type="date"]::-webkit-calendar-picker-indicator {
        filter: brightness(1) invert(0);
        opacity: .5;
    }

    .reservation .formBox .inputBox input {
        color: var(--textColor);
    }

    #room.page .cardData .head {
        top: 62px;
    }

    #room.page .featureList {
        max-height: 40vh;
    }

    #room.page .imageList ul li video {
        width: auto !important;
    }

    #room.page .imageList ul li img,
    #room.page .imageList ul li video {
        width: revert-layer;
        height: 27vh;
        max-width: fit-content;
    }

    #room.page .imageList ul li a {
        min-width: fit-content;
        display: block;
    }

    #room.page .imageList ul {
        flex-flow: row;
        overflow-x: auto;
    }

    /**/
    #contact {
        padding: 40px 0px;
        background-color: white;
    }

    /**/
    #blogs.page {
        padding: 40px 0px;
    }

    #blogs.page .head article {
        text-align: center;
        font-size: 12px;
        width: 100%;
        line-height: 23px;
        padding: 0px 25px;
    }

    /**/
    #gallery.page .gridContent .eventList {
        grid-template-columns: 1fr 1fr 1fr;
    }

    #gallery.page .head article {
        text-align: center;
        font-size: 12px;
        width: 100%;
        line-height: 23px;
        padding: 0px 25px;
    }

    /**/
    #rooms.page .roomLine .swiper img {
        height: 50vw;
    }

    #rooms.page .roomLine:nth-child(odd) .caption {
        left: initial;
        right: 0;
    }

    #rooms.page {
        padding: 40px 0px;
    }

    #rooms.page>.container-fluid {
        width: 100%;
    }

    #rooms.page .roomLine {
        margin-bottom: 0 !important;
    }

    #rooms.page .roomLine .caption {
        position: relative;
        left: 0;
        bottom: 0;
        margin-bottom: 0;
        width: 100%;
        z-index: 15;
        padding: 0;
        border-radius: 0;
        backdrop-filter: none;
        background-color: transparent;
        color: var(--textColor);
    }

    /**/
    #services.page .head article {
        text-align: center;
        font-size: 12px;
        width: 100%;
        line-height: 23px;
        padding: 0px 25px;
    }

    #services.page {
        padding: 40px 0px;
    }

    /**/
    .gridContent .eventList {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    #events.page .head {
        margin-bottom: 40px !important;
    }

    .gridContent .caption article {
        font-size: 13px;
        line-height: 22px;
    }

    .gridContent .caption h5 {
        font-size: 18px;
        margin-top: 5px;
    }

    .gridContent .eventList {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    #events.page .head article {
        text-align: center;
        font-size: 12px;
        width: 100%;
        line-height: 23px;
        padding: 0px 25px;
    }

    #events.page {
        padding: 30px 0px;
        padding-bottom: 60px;
        margin-top: 0;
    }

    /**/
    #coffe.page .articleContent article p:first-child:after {
        right: 0px;
    }

    #coffe.page .articleContent article p:first-child {
        font-size: 20px;
        line-height: 30px;
    }

    #coffe.page .articleContent {
        padding-top: 0;
    }

    #coffe.page .swiperCocktail .swiper-slide {
        background-size: contain;
        height: 290px;
    }

    #coffe.page .swiperCocktail {
        margin-left: 0;
    }

    #coffe.page .eventList {
        justify-content: center;
        flex-wrap: wrap;
    }

    #coffe.page .eventList li:last-child {
        flex-basis: 100%;
        width: 100%;
        height: auto;
        margin-top: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: none;
    }

    #coffe.page>.textContent .head {
        margin-bottom: 30px;
        text-align: center;
    }

    #coffe.page>.textContent .head h2 {
        text-align: center;
    }

    #coffe.page>.textContent .head article {
        font-size: 12px;
    }

    #coffe.page>.textContent {
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
        padding: 30px 20px;
    }

    #roomList .box article {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    #corporate.page .corporateText>.row {
        flex-flow: column-reverse;
    }

    #corporate.page .swiper .swiper-slide a {
        display: block;
    }

    #corporate.page .advantagesList {
        margin-top: -30px;
        width: 100%;
        padding: 0px 13px;
    }

    #corporate.page .headContent .videoContent video {
        transform: scale(1.7);
    }

    #corporate.page .headContent {
        max-height: 35vh;
    }

    #corporate .head h2 {
        line-height: 2rem;
    }

    #corporate.page .headContent .mask .head article {
        width: 90%;
        font-size: 12px;
    }

    #corporate.page .head {
        background-color: transparent;
        margin-top: 0px !important;
    }

    #corporate.page .headContent .videoContent {
        transform: translateY(0);
        height: 35vh;
    }

    #corporate.page .headContent {
        margin-top: 0px;
    }

    body.page header {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    /**/
    footer .menuList:not(:last-child) {
        margin-bottom: 30px;
    }

    footer .menuList {
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        padding-top: 30px;
    }

    footer .badgeList {
        gap: 6px;
    }

    footer .menuList>ul {
        gap: 25px;
    }

    footer .badge {
        font-size: 9px;
        font-weight: 500;
        padding: 7px 10px;
        border-radius: 5px;
    }

    footer {
        padding-top: 45px;
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
    }

    /**/
    #destinations .swiper img {
        border-radius: 20px;
    }

    #destinations .head {
        margin-bottom: 35px;
    }

    #destinations .head article {
        width: 100%;
        font-size: 12px;
        line-height: 23px;
    }

    #destinations>.wave {
        transform: translateY(-94%);
    }

    #destinations .head {
        margin-top: 0px;
    }

    /**/
    #hook .videoContent {
        margin-top: -45px;
        margin-bottom: 25px;
    }

    #hook {
        margin-top: 60px;
    }

    #hook .wave {
        transform: translateY(calc(-100%));
        z-index: 15;
    }

    #hook:before {
        height: calc(100%);
        top: 0;
    }

    #hook>.container>.row {
        flex-flow: column-reverse;
    }

    #hook>.container {
        margin-top: 0;
    }

    /**/
    #corporate .head {
        margin-top: 85% !important;
        background-color: white;
    }

    #corporate:before {
        bottom: initial;
        top: 0;
        width: 100%;
        height: 370px;
        display: block;
    }

    #corporate {
        padding-top: 0;
        padding-bottom: 30px;
    }

    /**/
    #rooms {
        padding-bottom: 0px;
        padding-top: 0px;
    }

    #rooms .roomLine>.row>div:first-child {
        padding-right: calc(var(--bs-gutter-x) / 2);
    }

    #rooms .roomLine:last-child {
        background: #F7F4F1;
        background: linear-gradient(180deg, rgba(247, 244, 241, 1) 0%, rgba(255, 255, 255, 0) 100%);
    }




    #rooms .roomLine {
        padding-top: 40px;
        padding-bottom: 40px;
        margin: 0px !important;
    }

    #rooms .roomLine:nth-child(odd):not(:last-child) {
        background-color: color-mix(in srgb, var(--secondaryColor) 20%, transparent);
    }

    #rooms .roomLine .swiper {
        margin-bottom: 25px;
    }

    #rooms .roomLine:nth-child(odd)>.row {
        flex-flow: column;
    }

    #rooms .head {
        margin-bottom: 15px !important;
    }

    #rooms .head article {
        text-align: center;
        font-size: 12px;
        width: 100%;
        line-height: 23px;
        padding: 0px 25px;
    }

    #rooms:before {
        height: 100px;
        left: 0;
        top: 155px;
        z-index: 0;
        transform: scale(-1);
    }

    #rooms .sectionMask {
        transform: scaleY(1);
        opacity: .5;
    }

    /**/
    #advantages .head {
        margin-bottom: 30px !important;
    }

    #advantages .head {
        margin-bottom: 30px !important;
    }

    #advantages>.container-fluid {
        width: 100%;
    }

    #advantages .head article {
        text-align: center;
        font-size: 12px;
        width: 100%;
        line-height: 23px;
        padding: 0px 25px;
    }

    #advantages .head h2 {
        text-align: center;
    }

    .head h2 {
        font-size: 2rem;
    }

    /**/
    #headline .swiper-slide .mask {
        padding-left: 25px;
        padding-right: 25px;
    }

    #headline .swiper-slide .mask .button {
        margin-top: 15px;
    }

    header .top .language li a img {
        aspect-ratio: 1 / 1;
        max-width: fit-content;
    }

    header {
        position: sticky !important;
        top: 0 !important;
        background-color: var(--primaryColor);
        box-shadow: 0px 20px 10px -20px #00000063;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    header.sticky {
        top: 0;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background-color: var(--primaryColor);
    }

    /**/
    #headline>.container-fluid {
        position: relative;
        z-index: 20;
    }

    #headline {
        z-index: 15;
    }

    #headline .swiper-slide {
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }

    #headline .videoContent video {
        transform: translateY(0) scale(1.35);
        transform-origin: center;
    }

    #headline .videoContent {
        height: 30vh;
    }

    /**/
    .reservation .formBox .head h3 {
        width: 100%;
        color: var(--textColor);
    }

    .reservation .formBox:after {
        display: none;
    }

    .reservation .formBox {
        width: 100%;
        transform: translateY(0);
        padding: 40px;
        padding-top: 60px;
        border-radius: 0;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
        margin-top: -20px;
        background-color: rgb(243 241 241);
        color: var(--textColor);
    }

    .reservation,
    .reservation>div {
        height: auto;
        padding: 0;
    }

    #headline .swiper-slide .mask article {
        font-size: 12px;
        line-height: 20px;
    }

    #headline .swiper-slide .mask h2 {
        font-size: 30px;
    }

    #headline .swiper-slide .mask .caption {
        width: 80%;
        padding-top: 0;
    }

    .swiper-pagination {
        bottom: -5px !important;
    }
}

@media (max-width: 767px) {

    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
}

/* ====== Mobile Settings ENd ====== */