/* Renkler colors.php tarafÄ±ndan dinamik olarak yÃ¼klenir */

html {
    line-height: 1.15;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

html {
  scroll-behavior: smooth;
}


body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
}

article,
aside,
footer,
header,
nav,
section {
    display: block;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

figcaption,
figure,
main {
    display: block;
}

figure {
    margin: 1em 40px;
}

hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

pre {
    font-family: monospace, monospace;
    font-size: 1em;
}

a {
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
    color: inherit;
    text-decoration: none;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
}

b,
strong {
    font-weight: inherit;
}

b,
strong {
    font-weight: bolder;
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

dfn {
    font-style: italic;
}

mark {
    background-color: #ff0;
    color: #000;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

audio,
video {
    display: inline-block;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

img {
    border-style: none;
}

svg:not(:root) {
    overflow: hidden;
}

button,
input,
optgroup,
select,
textarea {
    font-family: sans-serif;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

legend {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

progress {
    display: inline-block;
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type="checkbox"],
[type="radio"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

details,
menu {
    display: block;
}

summary {
    display: list-item;
}

canvas {
    display: inline-block;
}

template {
    display: none;
}

[hidden] {
    display: none;
}

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

a{
    transition: all .3s ease;
}

ul,ol{
    list-style: none;
    padding: 0;
    margin: 0;
}

body{
    background: var(--color-dark);
}

.desktop-header {
    padding: 50px 0;
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    height: 100%;
}

ul.header-menu {
    display: flex;
    color: white;
    gap: 72px;
}

ul.header-menu li a {
    display: inline-block;
    padding: 10px 0;
    position: relative;
}

.header-menu li a::before {
    position: absolute;
    content: '';
    width: 45px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all .3s ease;
}

.header-menu li a:hover::before {
    opacity: 1;
}

.header-menu li a:hover {
    font-weight: 600;
}

a.phone-btn {
    padding: 19px 30px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: white;
    display: flex;
    gap: 10px;
    font-weight: 600;
}

.hero-left-content .sub-title {
    font-size: 24px;
    color: white;
    margin-bottom: 17px;
}

.hero-left-content .title {
    font-size: 82px;
    color: var(--color-primary);
    font-weight: bold;
    margin-bottom: 40px;
    line-height: 78px;
}

.hero-left-content .desc {
    color: white;
    line-height: 25px;
    padding-right: 64px;
    margin-bottom: 100px;
}

.hero-left-content a.read-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    letter-spacing: 2px;
}

.hero-picture {
    position: relative;
}

.hero-picture .bg {
    /* position: absolute; */
    z-index: -1;
}

.hero-picture {
    text-align: center;
}

.hero-picture .center img {position: absolute;bottom: 0;left: 50%;transform: translateX(-50%);}

.hero-component .row {
    align-items: center;
}

.hero-component {
    position: relative;
}

.hero-component::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, var(--color-primary) -18.57%, rgba(20, 24, 55, 0) 77.17%);
    z-index: -1;
    bottom: 0;
    left: 0;
}

.hero-component::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 9px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    bottom: 0;
}

.discovery-btn {
    text-align: center;
    margin-top: 120px;
    font-size: 24px;
    letter-spacing: 10px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    font-weight: 300;
    margin-bottom: 50px;
}

.cta-top-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}

.cta-top-wrapper .ok-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50% , -50%);
}

.cta-top-wrapper .cta-right {
    background: linear-gradient(
271deg, var(--color-primary) -1.64%, rgba(20, 24, 55, 0) 74.23%);
    padding: 40px 40px 40px 130px;
    display: grid;
    grid-template-columns: 6fr 3fr;
}

.cta-top-wrapper .cta-right .sub-title {
    color: var(--color-primary-mid);
    margin-bottom: 5px;
}

.cta-top-wrapper .cta-right .title {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.cta-top-wrapper .cta-right .desc {
    color: white;
}

a.number-link {
    display: flex;
    border: 1px solid var(--color-border);
    font-size: 32px;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    color: white;
    font-weight: bold;
}

.cta-top-component {
    margin-bottom: 200px;
    padding-top: 100px;
}

.cta-top-wrapper .cta-left {
    position: relative;
}

.cta-top-wrapper .cta-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 65px;
    height: 65px;
    background: linear-gradient(200.66deg, var(--color-primary) -11.52%, rgba(20, 24, 55, 0) 84.21%);
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.about-left-picture {
    position: relative;
    text-align: center;
}

.about-left-picture .bg {
    position: absolute;
    left: 0;
    top: 0;
}

img {
    max-width: 100%;
}

.about-left-picture .text {
    position: absolute;
    width: 138px;
    height: 138px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--color-border);
    padding: 20px;
    color: white;
    line-height: 22px;
    letter-spacing: 2px;
    border-radius: 50%;
    top: 0;
    background: linear-gradient(60.17deg, var(--color-primary) -1.64%, rgba(20, 24, 55, 0) 74.23%);
    left: 66px;
}

.about-left-picture::before {
    position: absolute;
    content: '';
    width: 80%;
    height: 86%;
    background: var(--color-primary);
    left: 50%;
    filter: blur(187px);
    z-index: -2;
    transform: translateX(-50%);
    top: 10%;
}

.about-component .about-contents .sub-title {
    color: white;
    margin-bottom: 10px;
}

.about-component .about-contents .title {
    font-size: 48px;
    font-weight: bold;
    color: var(--color-primary);
    width: 70%;
    padding-bottom: 15px;
    position: relative;
    margin-bottom: 22px;
}

.about-component .about-contents .title::before {
    position: absolute;
    content: '';
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    bottom: 0;
}

.about-component .about-contents .desc {
    font-size: 20px;
    color: white;
    margin-bottom: 40px;
}

.about-component .about-contents .desc b {
    display: block;
    margin-top: 30px;
}

.about-contents .read-btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
}

.about-contents .read-btn .box {
    padding: 18px 30px;
    border: 1px solid var(--color-border);
    color: white;
    background: linear-gradient(60.17deg, var(--color-primary) -1.64%, rgba(20, 24, 55, 0) 74.23%);
    letter-spacing: 2px;
}

.about-component .row {
    align-items: center;
}

.why-us {
    margin-top: 250px;
    margin-bottom: 200px;
}

.why-us .section-title-area {
    display: flex;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin-bottom: 80px;
}

.why-us .section-title-area .title {
    position: relative;
}

.why-us .section-title-area .title::before {
    position: absolute;
    content: '';
    height: 3px;
    width: 300px;
    background: linear-gradient(90deg, var(--color-primary-dark) 0%, var(--color-dark) 100%);
    left: -320px;
    top: 14px;
    transform: rotate(180deg);
}

.why-us .section-title-area .title::after {
    position: absolute;
    content: '';
    height: 3px;
    width: 300px;
    background: linear-gradient(90deg, var(--color-primary-dark) 0%, var(--color-dark) 100%);
    right: -320px;
    top: 14px;
}

.why-us-box {
    text-align: center;
    color: white;
    padding: 0 30px;
}

.why-us-box .top-title {
    display: inline-block;
    padding: 13px 40px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 50px;
}

.why-us-box .desc {
    font-size: 18px;
}

.component-slogan {
    margin-top: 50px;
    text-align: center;
    background: var(--color-dark);
    display: inline-flex;
    padding: 15px 40px;
    color: white;
    border: 1px solid var(--color-border);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    letter-spacing: 2px;
}

.why-us-wrapper {
    text-align: center;
    position: relative;
    padding-bottom: 52px;
}

.why-us-wrapper::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-border);
    left: 0;
    top: 22px;
    z-index: -1;
}

.counter-left-box {
    background: linear-gradient(90deg, var(--color-primary-mid) 56.17%, var(--color-dark) 93.1%);
    padding: 56px 360px 51px 56px;
    position: relative;
    color: white;
}

.counter-left-box .apart-man {
    position: absolute;
    right: 0;
    bottom: -7px;
}

.counter-left-box .text {
    font-size: 18px;
    margin-bottom: 30px;
}

.counter-left-box .bottom-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
}

.counter-wrapper .top-text {
    text-align: center;
    font-size: 36px;
    color: white;
    font-weight: bold;
    line-height: 0;
}

.counter-area {display: grid;grid-template-columns: 1fr 1fr 1fr;margin-top: 50px;text-align: center;color: white;}

.counter-area .counter-box .number {
    font-size: 36px;
    color: var(--color-primary-mid);
    font-weight: bold;
    margin-bottom: 8px;
}

.counter-box {
    border-right: solid 2px var(--color-primary-mid);
}

.counter-component .row {
    align-items: center;
}

.counter-component {
    padding-top: 200px;
    margin-bottom: 250px;
}

 .tabs {
      margin: auto;
      overflow: hidden;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      margin-top: 50px;
    }

    .tab-buttons {
      display: flex;
      gap: 20px;
    }

    .tab-btn {
      width: 90px;
      padding: 15px;
      border: none;
      cursor: pointer;
      background: linear-gradient(
60.17deg, var(--color-primary) -1.64%, rgba(20, 24, 55, 0) 74.23%);
      border: 1px solid var(--color-border);
      color: white;
      transition: 0.3s;
      font-size: 16px;
      font-family: 'Poppins';
      font-size: 20px;
    }

    .tab-btn.active {
      color: white;
      background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    }

    .tab-content {
      display: none;
    }

    .tab-content.active {
      display: block;
    }

    .rooms-component {
    padding-top: 100px;
    margin-bottom: 200px;
    padding-left: 15%;
    overflow: hidden;
}

.section-mini-title {
    color: white;
    font-size: 32px;
    margin-bottom: 60px;
    display: inline-block;
    padding-right: 20px;
    background: var(--color-dark);
}

.rooms-left .title {
    font-size: 48px;
    font-weight: bold;
    color: var(--color-primary-mid);
    margin-bottom: 40px;
    position: relative;
}

.rooms-left .desc {
    font-size: 18px;
    color: white;
}

.rooms-left .title::before {
    position: absolute;
    content: '';
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    bottom: -15px;
}

.swiper-container{
    overflow: hidden;
}

.align-center{
    align-items: center;
}

.room-box img {
    width: 100%;
}

.rooms-wrapper {
    position: relative;
}

.rooms-wrapper::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary-mid) 0%, var(--color-dark) 100%);
    transform: rotate(180deg);
    top: 18px;
    z-index: -1;
}

.section-all-btn-wrapper {
    margin-top: 60px;
    display: flex;
    justify-content: end;
    padding-right: 15%;
}

.section-all-btn-wrapper .all-box {
    display: flex;
    align-items: center;
    gap: 30px;
}

.section-all-btn-wrapper .all-box a {
    display: inline-block;
    padding: 18px 22px;
    background: linear-gradient(60.17deg, var(--color-primary) -1.64%, rgba(20, 24, 55, 0) 74.23%);
    border: 1px solid var(--color-border);
    color: white;
    letter-spacing: 2px;
}

.services-wrapper {
    text-align: center;
    padding: 65px;
    border: solid 2px var(--color-border);
    position: relative;
}

.services-wrapper .top-title {
    position: absolute;
    font-size: 32px;
    color: white;
    top: -19px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-dark);
    padding: 0 30px;
}

.service-box {
    padding: 74px 40px 50px 40px;
    background: linear-gradient(60.17deg, var(--color-primary) -1.64%, rgba(20, 24, 55, 0) 74.23%);
    border: 1px solid var(--color-border);
    margin-bottom: 24px;
}

.service-box .icon {
    margin-bottom: 10px;
}

.service-box .title {
    color: white;
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 20px;
    position: relative;
}

.service-box .title::before {
    position: absolute;
    content: '';
    width: 45px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    left: 50%;
    bottom: 11px;
    transform: translateX(-50%);
}

.service-box .desc {
    font-size: 18px;
    color: white;
}

.service-wrapper .all-btn {
    position: absolute;
}

.services-wrapper .all-btn {
    position: absolute;
    bottom: 0;
    color: white;
    letter-spacing: 2px;
    font-size: 18px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -12px;
    background: var(--color-dark);
    padding: 0 30px;
}

.service-component {
    margin-bottom: 200px;
}

.slogan-component {
    padding-top: 200px;
    text-align: center;
    margin-bottom: 100px;
}

.slogan-top .slogan {
    font-size: 32px;
    color: white;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.slogan-top .slogan::before {
    position: absolute;
    content: '';
    width: 300px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary-dark) 0%, var(--color-dark) 100%);
    left: -350px;
    transform: rotate(180deg);
    top: 18px;
}

.slogan-top .slogan::after {
    position: absolute;
    content: '';
    width: 300px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary-dark) 0%, var(--color-dark) 100%);
    right: -350px;
    top: 18px;
}

.slogan-top .big-slogan {
    font-size: 64px;
    font-weight: bold;
    color: white;
    margin-bottom: 60px;
}

.slogan-btn {
    display: inline-block;
    padding: 28px 135px;
    background: linear-gradient(60.17deg, var(--color-primary) -1.64%, rgba(20, 24, 55, 0) 74.23%);
    font-size: 24px;
    color: white;
    letter-spacing: 4px;
    border: 1px solid var(--color-border);
    margin-bottom: 60px;
}

.slogan-component .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-component {
    padding-top: 200px;
    margin-bottom: 200px;
}

.gallery-title {
    text-align: center;
    font-size: 32px;
    color: white;
    margin-bottom: 50px;
}

.gallery-box {
    position: relative;
}

.gallery-box .picture img {
    width: 100%;
}

.gallery-box::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(196, 147, 103, 0) 37.74%, var(--color-primary-mid) 100%);
    transition: all .3s ease;
    opacity: 0;
}

.gallery-box .search {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    transition: all .3s ease;
    opacity: 0;
    cursor: pointer;
}

.gallery-box .content {
    position: absolute;
    bottom: 45px;
    width: 100%;
    text-align: center;
    transition: all .3s ease;
    opacity: 0;
}

.gallery-box .content .title {
    font-size: 20px;
    color: white;
    font-weight: 700;
    margin-bottom: 15px;
}

.gallery-box .content .desc {
    color: white;
}

.gallery-box:hover::before {
    opacity: 1;
}

.gallery-box:hover .search {
    opacity: 1;
}

.gallery-box:hover .content {
    opacity: 1;
}

/* MODAL */
.modal{
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 999;
    justify-content: center;
    align-items: center;
}

.modal-image{
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
}

.close{
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}

.gallery-wrapper {
    padding: 0 60px;
    position: relative;
}

.gallery-wrapper .galeri-button-prev {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.gallery-wrapper .galeri-button-prev img, .gallery-wrapper .galeri-button-next img {
    width: 45px;
}

.gallery-wrapper .galeri-button-next {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.comments-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 32px;
    color: white;
}

.testimonials-wrapper {
    padding: 0 80px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.testimonials-wrapper .testimonials-button-prev img, .testimonials-wrapper .testimonials-button-next img {
    width: 45px;
}

.testimonials-wrapper .testimonials-button-prev {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.testimonials-wrapper .testimonials-button-next {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.testimonials-box {
    text-align: center;
    padding: 56px 150px 40px 150px;
    background: linear-gradient(60.17deg, var(--color-primary) -1.64%, rgba(20, 24, 55, 0) 74.23%);
    border: 1px solid var(--color-border);
    color: white;
}

.testimonials-box .stars {
    margin-bottom: 25px;
}

.testimonials-box .comment {
    padding-bottom: 30px;
    margin-bottom: 30px;
    position: relative;
}

.testimonials-box .comment::before {
    position: absolute;
    content: '';
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.testimonials-box .name {
    font-weight: 700;
}

a.all-comments-btn {
    display: inline-block;
    color: white;
    letter-spacing: 2px;
    margin-top: 50px;
    text-align: center;
    position: relative;
}

.testimonials-component {
    padding-top: 100px;
    margin-bottom: 200px;
}

.testimonials-wrapper::before {
    position: absolute;
    content: '';
    width: calc(50% - 140px);
    height: 1px;
    background: linear-gradient(90deg, var(--color-primary-dark) 0%, var(--color-dark) 100%);
    left: 80px;
    bottom: 8px;
}

.testimonials-wrapper::after {
    position: absolute;
    content: '';
    width: calc(50% - 140px);
    height: 1px;
    background: linear-gradient(90deg, var(--color-primary-dark) 0%, var(--color-dark) 100%);
    right: 80px;
    bottom: 8px;
    transform: rotate(180deg);
}

.blog-component {
    padding-top: 100px;
    margin-bottom: 200px;
}

.blog-title {
    text-align: center;
    font-size: 32px;
    color: white;
    margin-bottom: 60px;
}

a.blog-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--color-border);
}

.blog-box .blog-left {
    padding: 26px 31px 34px 26px;
    background: linear-gradient(60.17deg, var(--color-primary) -1.64%, rgba(20, 24, 55, 0) 74.23%);
}

.blog-box .blog-left .date {
    font-size: 12px;
    color: #7C7A7A;
    margin-bottom: 30px;
}

.blog-box .blog-left .title {
    font-size: 22px;
    font-weight: 700;
    color: white;
    padding-bottom: 15px;
    margin-bottom: 15px;
    position: relative;
}

.blog-box .blog-left .title::before {
    position: absolute;
    content: '';
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    bottom: 0;
}

.blog-box .blog-left .desc {
    color: white;
    margin-bottom: 45px;
}

.blog-box .blog-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-box .read-btn {
    display: flex;
    align-items: center;
    letter-spacing: 2px;
    color: white;
}

.all-blog-btn {
    display: flex;
    margin-top: 65px;
    text-align: center;
    color: white;
    justify-content: center;
    letter-spacing: 2px;
}

.cta-component {
    padding-top: 100px;
    margin-bottom: 150px;
}

.cta-wrapper {
    text-align: center;
}

.cta-wrapper .cta-text {
    font-size: 32px;
    color: white;
    letter-spacing: 3px;
    line-height: 0;
    margin-top: -60px;
    margin-bottom: 50px;
}

.cta-wrapper .cta-phone-wrapper a {
    display: inline-block;
    padding: 8px 30px;
    font-size: 32px;
    color: white;
    font-weight: 600;
    background: linear-gradient(60.17deg, var(--color-primary) -1.64%, var(--color-dark) 74.23%);
    border: 1px solid var(--color-border);
    margin-bottom: 40px;
}

.cta-wrapper .cta-phone-wrapper .text {
    color: white;
}

.top-up-btn {
    text-align: center;
    font-size: 24px;
    color: white;
    letter-spacing: 6px;
}

footer {
    background: linear-gradient(360deg, var(--color-primary)87 -18.57%, rgba(20, 24, 55, 0) 77.17%);
    border-top: solid 9px var(--color-primary);
    padding-top: 90px;
    padding-bottom: 50px;
    margin-top: 80px;
}

.footer-title {
    color: var(--color-primary-mid);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    color: white;
    margin-bottom: 10px;
}

.footer-contact ul li span {
    display: inline-block;
    width: 22px;
    color: var(--color-primary-mid);
    font-weight: bold;
}

.footer-menu ul {
    color: white;
}

.footer-menu ul li {
    margin-bottom: 10px;
}

.social-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.social-wrapper ul {
    display: flex;
    gap: 10px;
}

.social-wrapper .title {
    font-size: 20px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}

.footer-bottom-wrapper {
    display: flex;
    padding: 12px;
    justify-content: space-between;
    color: white;
}

.footer-bottom {
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
}

.breadcrumb-wrapper {
    padding: 60px 25px;
    text-align: center;
    justify-content: space-between;
    background: linear-gradient(60.17deg, var(--color-primary) -1.64%, rgba(20, 24, 55, 0) 74.23%);
    border: 1px solid var(--color-border);
    color: white;
}

.breadcrumb-wrapper ul {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 10px;
}

.breadcrumb-wrapper ul li a {
    position: relative;
}

.breadcrumb-wrapper ul li a::before {
    position: absolute;
    content: '|';
    right: -10px;
}

.detail-page {
    margin: 100px 0;
}

.content-wrapper {
    color: white;
    font-size: 17px;
}

.tab-content .contents {
    color: white;
    margin-top: 15px;
}


.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: linear-gradient(60.17deg, var(--color-primary) -1.64%, rgba(20, 24, 55, 0) 74.23%);
    padding: 30px;
    text-align: center;
    margin-bottom: 50px;
    border-radius: 20px;
}

.contact-detail-box .title {
    font-size: 38px;
    font-weight: bold;
    color: white;
}

.contact-detail-box {
    padding: 40px 0;
    border-right: solid 1px #d4d4d4;
}

.contact-detail-box a {
    font-size: 18px;
    display: block;
    margin-top: 10px;
    font-weight: 500;
    color: white;
}

.contact-wrapper .contact-detail-box:last-child {
    border: none;
}

@media(max-width:992px){
    header.desktop-header {
    display: none;
}

.mobile-header .mobile-header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-bars {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 18px;
}

.mobile-header .logo-link img {
    max-width: 160px;
}

.mobile-header {
    padding: 15px 0;
    position: sticky;
    top: 0;
    background: var(--color-dark);
    z-index: 999;
}

.hero-left-content .sub-title {
    font-size: 18px;
    margin-bottom: 5px;
}

.hero-left-content .title {
    font-size: 48px;
    line-height: 52px;
    margin-bottom: 10px;
}

.hero-left-content .desc {
    margin-bottom: 30px;
}

.hero-left-content a.read-btn {
    margin-bottom: 30px;
}

.hero-component .row {
}

.hero-component {
    padding-top: 50px;
}

.discovery-btn {
    margin: 40px 0;
}

.cta-top-component {
    padding-top: 0;
    margin-bottom: 100px;
}

.cta-top-wrapper {
    grid-template-columns: 1fr;
}

.cta-top-wrapper .cta-right {
    padding: 40px;
    grid-template-columns: 1fr;
}

.cta-top-wrapper .ok-btn {
    display: none;
}

.cta-top-wrapper .cta-right .contents {
    margin-bottom: 20px;
}

.cta-top-wrapper .cta-right .title {
    font-size: 26px;
}

.about-left-picture .text {
    left: 19px;
}

.about-left-picture {
    margin-bottom: 30px;
}

.about-component .about-contents .title {
    font-size: 32px;
}

.why-us {
    margin-top: 100px;
    margin-bottom: 0px;
}

.why-us .section-title-area .title::before {
    display: none;
}

.why-us .section-title-area .title::after {
    display: none;
}

.why-us .section-title-area {
    font-size: 26px;
    text-align: center;
    margin-bottom: 40px;
}

.why-us-box {
    margin-bottom: 45px;
}

.component-slogan {
    font-size: 16px;
    padding: 15px;
}

.slogan-img {}

.counter-left-box {
    padding: 30px;
    margin-bottom: 21px;
}

.counter-left-box .apart-man {
    display: none;
}

.counter-area {
    grid-template-columns: 1fr;
}

.counter-box {
    border: none;
    margin-bottom: 30px;
    border-bottom: solid 2px var(--color-primary-mid);
    padding-bottom: 30px;
}

.counter-component {
    margin-bottom: 50px;
}

.section-mini-title {
    font-size: 26px;
    text-align: center;
    display: block;
    margin-bottom: 40px;
}

.rooms-wrapper::before {
    display: none;
}

.rooms-component {
    padding-top: 50px;
    padding: 15px;
    margin-bottom: 100px;
}

.rooms-left {
    margin-bottom: 30px;
}

.services-wrapper .top-title {
    font-size: 26px;
    top: -15px;
}

.services-wrapper {
    padding: 30px;
}

.services-wrapper .all-btn {
    bottom: -25px;
}

.slogan-component {
    padding-top: 20px;
    margin-bottom: 30px;
}

.service-component {
    margin-bottom: 150px;
}

.slogan-top .slogan {
    font-size: 26px;
}

.slogan-top .slogan::before {
    display: none;
}

.slogan-top .slogan::after {
    display: none;
}

.slogan-top .big-slogan {
    font-size: 36px;
    margin-bottom: 40px;
}

.slogan-btn {
    padding: 24px;
    font-size: 20px;
    letter-spacing: 3px;
}

.gallery-component {
    padding-top: 50px;
    margin-bottom: 50px;
}

.gallery-title {
    font-size: 26px;
}

.comments-title {
    font-size: 26px;
    margin-bottom: 40px;
}

.testimonials-wrapper {
    padding: 0 15px;
}

.testimonials-box {
    padding: 40px;
}

.testimonials-component {
    margin-bottom: 50px;
}

.blog-title {
    font-size: 26px;
    margin-bottom: 40px;
}

a.blog-box {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
}

.blog-component {
    margin-bottom: 50px;
}

.all-blog-btn {
    margin-top: 40px;
}

.cta-component {
    padding-top: 50px;
    margin-bottom: 75px;
}

.cta-wrapper .cta-text {
    margin-top: 52px;
    line-height: normal;
    font-size: 28px;
}

.footer-bottom-wrapper {
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    gap: 15px;
}

section.detail-page {
    margin: 50px 0;
}

.breadcrumb-wrapper {
    padding: 40px 20px;
}

.breadcrumb-wrapper h1 {
    font-size: 30px;
    margin-bottom: 10px;
}
}

*,
*::before,
*::after {
  box-sizing: border-box;
}




/* Modal */


.modal-open {
    overflow: hidden;
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: .5rem;
    pointer-events: none;
}

.modal.fade .modal-dialog {
    transition: -webkit-transform .3s ease-out;
    -webkit-transition: -webkit-transform .3s ease-out;
    transition: transform .3s ease-out;
    transition: transform .3s ease-out, -webkit-transform .3s ease-out;
    transition: transform .3s ease-out, -webkit-transform .3s ease-out;
    -webkit-transform: translate(0, -50px);
    transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
        -webkit-transition: none;
        transition: none;
    }
}

.modal.show .modal-dialog {
    -webkit-transform: none;
    transform: none;
}

.modal-dialog-scrollable {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    max-height: calc(100% - 1rem);
}

.modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 1rem);
    overflow: hidden;
}

.modal-dialog-scrollable .modal-footer,
.modal-dialog-scrollable .modal-header {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.modal-dialog-scrollable .modal-body {
    overflow-y: auto;
}

.modal-dialog-centered {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    min-height: calc(100% - 1rem);
}

.modal-dialog-centered::before {
    display: block;
    height: calc(100vh - 1rem);
    content: "";
}

.modal-dialog-centered.modal-dialog-scrollable {
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    height: 100%;
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
    max-height: none;
}

.modal-dialog-centered.modal-dialog-scrollable::before {
    content: none;
}

.modal-content {
    position: relative;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: .3rem;
    outline: 0;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}

.modal-backdrop.fade {
    opacity: 0;
}

.modal-backdrop.show {
    opacity: .5;
}

.modal-header {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: .3rem;
    border-top-right-radius: .3rem;
}

.modal-header .close {
    padding: 1rem 1rem;
    margin: -1rem -1rem -1rem auto;
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
}

.modal-body {
    position: relative;
    -ms-flex: 1 1 auto;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    padding: 1rem;
}

.modal-footer {
    display: -ms-flexbox;
    /* display: -webkit-box; */
    /* display: flex; */
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    /* justify-content: flex-end; */
    padding: 1rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: .3rem;
    border-bottom-left-radius: .3rem;
}

.modal-footer> :not(:first-child) {
    margin-left: .25rem;
}

.modal-footer> :not(:last-child) {
    margin-right: .25rem;
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }
    .modal-dialog-scrollable {
        max-height: calc(100% - 3.5rem);
    }
    .modal-dialog-scrollable .modal-content {
        max-height: calc(100vh - 3.5rem);
    }
    .modal-dialog-centered {
        min-height: calc(100% - 3.5rem);
    }
    .modal-dialog-centered::before {
        height: calc(100vh - 3.5rem);
    }
    .modal-sm {
        max-width: 300px;
    }
}

@media (min-width: 992px) {
    .modal-lg,
    .modal-xl {
        max-width: 800px;
    }
}

@media (min-width: 1200px) {
    .modal-xl {
        max-width: 1140px;
    }
}

.fade {
    -webkit-transition: opacity .15s linear;
    transition: opacity .15s linear;
}

@media (prefers-reduced-motion: reduce) {
    .fade {
        -webkit-transition: none;
        transition: none;
    }
}

.fade:not(.show) {
    opacity: 0;
}


.modal-dialog {
    padding: 0;
    margin: 0;
}

.modal-content {
    border: none;
    border-radius: 0;
    min-height: 100vh;
    width: 70%;
    background: linear-gradient(60.17deg, var(--color-primary) -1.64%, rgb(20 24 55) 74.23%);
}

.light-mode .modal-content{
    background: white;
}

.mobile-nav ul {
    font-size: 20px;
}

.mobile-nav ul li {
    margin-bottom: 20px;
}

.mobile-nav ul {
    color: white;
    font-size: 22px;
    margin-top: 20px;
}

.mobile-header{
    display: none;
}

@media(max-width:992px){
    .mobile-header{
        display: block;
    }
    .contact-wrapper {
    grid-template-columns: 1fr;
}

.contact-detail-box {
    border: none;
    padding: 20px 0;
}

.contact-detail-box .title {
    font-size: 32px;
}

section.detail-page.contact-page {
    padding: 0 15px;
}
.tab-buttons {
    margin-bottom: 20px;
}
}