* {
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    border-radius: 8px;
    border: 1px #3a3a3a solid;
    background: rgba(0, 0, 0, 0);
}

::-webkit-scrollbar-thumb:hover {
    background: #2dffdb;
}

::-moz-selection {
    color: #fff;
    background: #1e1e1e;
}

::selection {
    color: #fff;
    background: #1e1e1e;
}

html {
    scroll-behavior: smooth;
    -webkit-touch-callout: none;
    -webkit-text-size-adjust: none;
    -webkit-font-smoothing: antialiased;
}

body {
    margin: 0;
    padding: 0;
    color: #ffffff;
    background-color: #000;
    font-optical-sizing: auto;
    font-size: calc(14px + 12 * (100vw - 300px) / 1300);
    font-family: "Barlow", sans-serif;
}
body::after {
    content: "";
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
    height: 100px;
    display: block;
    position: absolute;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
}

h1 {
    color: #2dffdb;
    margin-bottom: 0;
}

h2,
h3,
h4,
h5,
h6 {
    color: #fff;
    margin-top: 10px;
}

p {
    color: #fff;
    font-size: 15px;
    line-height: 1.5rem;
    text-align: justify;
}

.btn {
    width: 100%;
    border: none;
    height: 50px;
    color: #fff;
    display: flex;
    margin: 30px 0;
    font-size: 16px;
    cursor: pointer;
    max-width: 200px;
    font-weight: bold;
    border-radius: 8px;
    align-items: center;
    text-decoration: none;
    justify-content: center;
    text-transform: uppercase;
    background: linear-gradient(135deg, #2dffdb 0%, #0091fe 50%);
}
.btn:hover {
    color: #0d3a5d;
    background: linear-gradient(135deg, #0091fe 0%, #2dffdb 50%);
}

.btn-line {
    width: 100%;
    height: 50px;
    color: #fff;
    display: flex;
    margin: 30px 0;
    font-size: 16px;
    max-width: 200px;
    font-weight: bold;
    border-radius: 8px;
    align-items: center;
    text-decoration: none;
    justify-content: center;
    text-transform: uppercase;
    border: 1px solid #ffffff;
}
.btn-line:hover {
    color: #2dffdb;
    border-color: #2dffdb;
}

.row {
    margin: auto;
    width: 100%;
    display: flex;
    max-width: 1200px;
}
.row .col-1 {
    width: 100%;
    display: flex;
    min-height: 100dvh;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.row .col-1 p {
    text-align: center;
}
.row .col-2 {
    width: 50%;
    display: flex;
    min-height: 100dvh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.row .col-3 {
    width: 33.333%;
}

header {
    top: 0;
    left: 0;
    right: 0;
    width: auto;
    z-index: 99;
    position: absolute;
}
header .wrap {
    margin: auto;
    height: 100px;
    display: flex;
    max-width: 1200px;
    align-items: center;
    justify-content: space-between;
}
header .wrap .logo {
    height: 45px;
    vertical-align: middle;
}
header .wrap a {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
}
header .wrap a:hover {
    color: #2dffdb;
}
header .wrap .nav-link.active {
    color: #2dffdb;
}
header .wrap .btn-line {
    height: 40px;
    width: 170px;
    display: inline-flex;
}
header .wrap div:nth-child(1) a {
    margin: 0 20px 0 0;
    vertical-align: middle;
}
header .wrap div:nth-child(2) a {
    margin: 0 0 0 20px;
}

footer {
    font-size: 14px;
    padding: 50px 0;
    line-height: 1.5em;
    background-color: #080808;
}
footer > div {
    margin: auto;
    max-width: 1200px;
}
footer .wrap {
    margin: auto;
    display: flex;
    margin-top: 20px;
    max-width: 1200px;
    justify-content: space-between;
}
footer .logo {
    height: 45px;
    vertical-align: middle;
}
footer .cards {
    width: 150px;
}
footer .flag,
footer .arrow {
    vertical-align: middle;
}
footer .flag {
    width: 20px;
}
footer .arrow {
    width: 10px;
}
footer p {
    max-width: 400px;
    margin-right: 50px;
}
footer .text-link {
    color: inherit;
    display: block;
    margin: 20px 0;
    text-decoration: none;
}
footer .text-link:hover {
    color: #2dffdb;
}
footer .text-link-inline {
    color: inherit;
    margin: 0 10px 0 0;
    display: inline-block;
    text-decoration: none;
}
footer .text-link-inline:hover {
    text-decoration: underline;
}
footer .icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    display: inline-block;
    background-size: 100% auto;
}
footer .icon.fb {
    background-image: url(../imgs/fb_icon.svg);
}
footer .icon.in {
    background-image: url(../imgs/in_icon.svg);
}
footer .icon.ln {
    background-image: url(../imgs/ln_icon.svg);
}
footer .icon.yt {
    background-image: url(../imgs/yt_icon.svg);
}

section {
    z-index: 1;
    display: block;
    padding: 0 50px;
    position: relative;
}
section img {
    width: 100%;
    position: relative;
}
section.bg_styleA {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-image: url('data:image/svg+xml,<svg width="100%" height="100%" viewBox="0 0 1920 1080" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;"><g transform="matrix(2.10066,2.57256e-16,-1.65534e-16,1.35169,-270.985,-1616.62)"><rect x="129" y="1196" width="914" height="799" style="fill:rgb(16,18,33);"/><clipPath id="_clip1"><rect x="129" y="1196" width="914" height="799"/></clipPath><g clip-path="url(%23_clip1)"><g transform="matrix(0.862802,-3.45821e-16,-1.09349e-16,-0.728738,364.764,2911.08)"><circle cx="838.5" cy="2353.5" r="634.5" style="fill:url(%23_Radial2);"/></g><g transform="matrix(0.862802,-1.64695e-16,-5.72564e-17,-0.728738,-135.912,3710.08)"><circle cx="838.5" cy="2353.5" r="634.5" style="fill:url(%23_Radial3);"/></g></g></g><defs><radialGradient id="_Radial2" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(634.5,0,0,634.5,838.5,2353.5)"><stop offset="0" style="stop-color:rgb(74,23,94);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(16,18,33);stop-opacity:1"/></radialGradient><radialGradient id="_Radial3" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(634.5,0,0,634.5,838.5,2353.5)"><stop offset="0" style="stop-color:rgb(27,118,125);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(16,18,33);stop-opacity:1"/></radialGradient></defs></svg>');
}
section.bg_styleB {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    background-image: url('data:image/svg+xml,<svg width="100%" height="100%" viewBox="0 0 1920 1080" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;"><g transform="matrix(2.10066,2.57256e-16,-1.65534e-16,1.35169,-270.985,-1616.62)"><rect x="129" y="1196" width="914" height="799" style="fill:rgb(16,18,33);"/><clipPath id="_clip1"><rect x="129" y="1196" width="914" height="799"/></clipPath><g clip-path="url(%23_clip1)"><g transform="matrix(0.862802,-3.45821e-16,-1.09349e-16,-0.728738,-639.683,3710.08)"><circle cx="838.5" cy="2353.5" r="634.5" style="fill:url(%23_Radial2);"/></g><g transform="matrix(0.862802,-1.64695e-16,-5.72564e-17,-0.728738,-135.912,2911.08)"><circle cx="838.5" cy="2353.5" r="634.5" style="fill:url(%23_Radial3);"/></g></g></g><defs><radialGradient id="_Radial2" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(634.5,0,0,634.5,838.5,2353.5)"><stop offset="0" style="stop-color:rgb(74,23,94);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(16,18,33);stop-opacity:1"/></radialGradient><radialGradient id="_Radial3" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(634.5,0,0,634.5,838.5,2353.5)"><stop offset="0" style="stop-color:rgb(27,118,125);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(16,18,33);stop-opacity:1"/></radialGradient></defs></svg>');
}
section.bg_styleC {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    background-image: url('data:image/svg+xml,<svg width="100%" height="100%" viewBox="0 0 1920 1080" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;"><g transform="matrix(2.10066,2.57256e-16,-1.65534e-16,1.35169,-270.985,-1616.62)"><rect x="129" y="1196" width="914" height="799" style="fill:rgb(16,18,33);"/><clipPath id="_clip1"><rect x="129" y="1196" width="914" height="799"/></clipPath><g clip-path="url(%23_clip1)"><g transform="matrix(0.862802,-3.45821e-16,-1.09349e-16,-0.728738,-639.683,3710.08)"><circle cx="838.5" cy="2353.5" r="634.5" style="fill:url(%23_Radial2);"/></g><g transform="matrix(0.862802,-1.64695e-16,-5.72564e-17,-0.728738,-135.912,2911.08)"><circle cx="838.5" cy="2353.5" r="634.5" style="fill:url(%23_Radial3);"/></g></g></g><defs><radialGradient id="_Radial2" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(634.5,0,0,634.5,838.5,2353.5)"><stop offset="0" style="stop-color:rgb(74,23,94);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(16,18,33);stop-opacity:1"/></radialGradient><radialGradient id="_Radial3" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(634.5,0,0,634.5,838.5,2353.5)"><stop offset="0" style="stop-color:rgb(27,118,125);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(16,18,33);stop-opacity:1"/></radialGradient></defs></svg>');
}
section.bg_styleD {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    background-image: url('data:image/svg+xml,<svg width="100%" height="100%" viewBox="0 0 1920 1080" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;"><g transform="matrix(2.10066,-2.57256e-16,-1.65534e-16,-1.35169,-270.985,2696.62)"><rect x="129" y="1196" width="914" height="799" style="fill:rgb(16,18,33);"/><clipPath id="_clip1"><rect x="129" y="1196" width="914" height="799"/></clipPath><g clip-path="url(%23_clip1)"><g transform="matrix(0.862802,-3.45821e-16,-1.09349e-16,-0.728738,-639.683,3710.08)"><circle cx="838.5" cy="2353.5" r="634.5" style="fill:url(%23_Radial2);"/></g><g transform="matrix(0.862802,-1.64695e-16,-5.72564e-17,-0.728738,-135.912,2911.08)"><circle cx="838.5" cy="2353.5" r="634.5" style="fill:url(%23_Radial3);"/></g></g></g><defs><radialGradient id="_Radial2" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(634.5,0,0,634.5,838.5,2353.5)"><stop offset="0" style="stop-color:rgb(74,23,94);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(16,18,33);stop-opacity:1"/></radialGradient><radialGradient id="_Radial3" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(634.5,0,0,634.5,838.5,2353.5)"><stop offset="0" style="stop-color:rgb(27,118,125);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(16,18,33);stop-opacity:1"/></radialGradient></defs></svg>');
}

#home p {
    max-width: 75%;
}
#home .main {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-image: url(../imgs/hero_bg.jpg);
}
#home .rooms img,
#home .rooms p {
    width: 70%;
}
#home .private {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-image: url(../imgs/bg_c.jpg);
}
#home .private img,
#home .private p {
    width: 70%;
}
#home .genres {
    margin: 0;
    padding: 0;
}
#home .genres li {
    margin: 10px;
    list-style: none;
    font-size: 0.75rem;
    text-align: center;
    display: inline-block;
}
#home .genres li img {
    width: 60px;
    opacity: 0.5;
    margin-bottom: 15px;
}
#home .devices {
    width: 92%;
}
#home .jack {
    mix-blend-mode: lighten;
}

#experiences .hero {
    background-size: cover;
    background-position: top center;
    background-image: url(../imgs/exp_bg.jpg);
}
#experiences section.hero .row .col-1 {
    min-height: 100dvh;
    align-items: center;
    justify-content: flex-end;
}
#experiences section.hero .row .col-1 .box-content {
    width: 100%;
    display: flex;
    padding: 30px;
    max-width: 600px;
    margin-bottom: 50px;
    border-radius: 30px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.75);
}
#experiences section.hero .row .col-1 h3 {
    text-align: center;
}
#experiences section.hero .row p {
    text-align: justify;
}
#experiences section .wrap-title {
    left: 0;
    right: 0;
    top: 10px;
    position: absolute;
    text-align: center;
}
#experiences section .v-wrap {
    margin: 20px auto;
    position: relative;
}
#experiences section .v-wrap::before {
    content: "";
    inset: 0px;
    z-index: -1;
    filter: blur(20px);
    position: absolute;
    border-radius: 30px;
    pointer-events: none;
    transform: translate3d(0, 0px, 0px);
    background: linear-gradient(to bottom, rgb(169, 228, 247) 0%, rgb(15, 180, 231) -100%);
}
#experiences section .v-wrap video {
    max-width: 360px;
    border-radius: 30px;
    background-color: #000;
}
#experiences section .v-wrap-full {
    margin: 20px auto;
    position: relative;
}
#experiences section .v-wrap-full::before {
    content: "";
    inset: 0px;
    z-index: -1;
    filter: blur(20px);
    position: absolute;
    border-radius: 30px;
    pointer-events: none;
    transform: translate3d(0, 0px, 0px);
    background: linear-gradient(to bottom, rgb(169, 228, 247) 0%, rgb(15, 180, 231) -100%);
}
#experiences section .v-wrap-full video {
    max-width: 720px;
    border-radius: 30px;
    background-color: #000;
}
#experiences section.explicit p {
    max-width: 680px;
}
#experiences section.explicit .v-wrap {
    display: none;
}

#plan {
    background-size: cover;
    background-position: bottom center;
    background-image: url(../imgs/plan_bg.jpg);
}
#plan section {
    display: flex;
    padding-top: 100px;
    min-height: 100dvh;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
#plan .wrap-top {
    display: block;
    text-align: center;
}
#plan .wrap-top .kara_logo {
    opacity: 0.85;
    width: 240px;
    animation: flikr 400ms linear infinite;
}
@keyframes flikr {
    0% {
        filter: brightness(1);
    }
    3% {
        filter: brightness(0);
    }
    6% {
        filter: brightness(0);
    }
    7% {
        filter: brightness(1);
    }
    100% {
        filter: brightness(1);
    }
}
#plan .wrap-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
}
#plan .wrap-bottom .price {
    width: 100%;
    margin: 30px;
    display: block;
    min-width: 340px;
    text-align: center;
    border-radius: 25px;
}
#plan .wrap-bottom .price div {
    padding: 25px 0;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.15);
}
#plan .wrap-bottom .price div h4 {
    margin: 0;
    padding: 0;
}
#plan .wrap-bottom .price.ini {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
}
#plan .wrap-bottom .price.ini h5 {
    color: #000;
    margin-top: 25px;
}
#plan .wrap-bottom .price.ini div h4 {
    color: #000;
}
#plan .wrap-bottom .price.snd {
    background: linear-gradient(-135deg, #009dfb 0%, #00f1c3 100%);
}
#plan .wrap-bottom .price.snd h5 {
    color: #fff;
    margin-top: 25px;
}
#plan .wrap-bottom .price .btn {
    font-size: 18px;
    max-width: 280px;
    margin: 25px auto;
    text-transform: capitalize;
}
#plan .wrap-bottom .price .btn.grey {
    color: #000;
    background: #f6f6f6;
}
#plan .wrap-bottom .price .btn.grey:hover {
    color: #fff;
    background: #0794cc;
}

#explore {
    background-size: cover;
    background-position: bottom center;
    background-image: url(../imgs/explore_bg.jpg);
}
#explore section {
    display: flex;
    padding-top: 100px;
    min-height: 100dvh;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
#explore .wrap-top {
    display: block;
    text-align: center;
}
#explore .wrap-top .ss_icon {
    width: 60px;
}
#explore .wrap-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
}
#explore .wrap-bottom .panel {
    width: 340px;
    margin: 30px;
    min-width: 340px;
    min-height: 340px;
    text-align: center;
    position: relative;
    border-radius: 25px;
    background-color: #fff;
    text-decoration: none;
    transition: 100ms ease-in-out;
}
#explore .wrap-bottom .panel.boy {
    background-size: 340px auto;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-image: url(../imgs/guy_bg.png);
}
#explore .wrap-bottom .panel.girl {
    background-size: 315px auto;
    background-repeat: no-repeat;
    background-position: right bottom;
    background-image: url(../imgs/girl_bg.png);
}
#explore .wrap-bottom .panel h6 {
    color: #000;
    margin-top: 20px;
}
#explore .wrap-bottom .panel .btn {
    left: 0;
    right: 0;
    opacity: 0;
    width: 90%;
    bottom: 10px;
    margin: auto;
    position: absolute;
}
#explore .wrap-bottom .panel .btn:hover {
    background: linear-gradient(135deg, #2dffdb 0%, #0091fe 50%);
}
#explore .wrap-bottom .panel:hover {
    transform: scale(0.97);
}
#explore .wrap-bottom .panel:hover .btn {
    opacity: 1;
    color: #0d3a5d;
    background: linear-gradient(135deg, #0091fe 0%, #2dffdb 50%);
}

#faq section {
    padding: 0 20px;
}
#faq .faq_header {
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-image: url(../imgs/faq_bg.jpg);
}
#faq .wrap {
    max-width: 1200px;
    margin: 0 auto 50px auto;
}
#faq .wrap h5 {
    margin-top: 25px;
    margin-bottom: 15px;
}
#faq .wrap .collapsible {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
#faq .wrap .collapsible h6 {
    margin: 0;
    padding: 20px 0;
    cursor: pointer;
}
#faq .wrap .collapsible h6 span {
    color: #2dffdb;
}
#faq .wrap .collapsible h6::before {
    content: "";
    width: 15px;
    height: 15px;
    display: inline-block;
    vertical-align: middle;
    margin: 0px 10px 0px 0px;
    background-size: 100% auto;
    background-repeat: no-repeat;
    transform: rotate(-90deg);
    background-image: url("../imgs/chevron_down.svg");
}
#faq .wrap .collapsible h6.active::before {
    margin: 5px 10px 0px 0px;
    transform: rotate(0deg);
}
#faq .wrap .collapsible p {
    font-size: 14px;
}
#faq .wrap .collapsible p a {
    color: inherit;
}
#faq .wrap .collapsible .content {
    display: none;
    margin: 0px 30px;
}
#faq .wrap .collapsible .content h6::before {
    display: none;
}

#contact {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-image: url(../imgs/hero_bg.jpg);
}
#contact section {
    display: flex;
    min-height: 80dvh;
    align-items: center;
    justify-content: center;
}
#contact section .form {
    width: 100%;
    display: flex;
    margin: 120px 0;
    max-width: 1200px;
    padding-top: 30px;
    border-radius: 30px;
    align-items: center;
    justify-content: space-evenly;
    background-color: rgba(0, 0, 0, 0.75);
}
#contact section .form h1 {
    font-size: 2rem;
    margin-top: 0;
}
#contact section .form p {
    font-size: 1rem;
}
#contact section .form .sideA {
    padding: 0 30px;
}
#contact section .form .sideA button {
    margin: 0;
}
#contact section .form .sideB {
    padding: 0 30px;
}
#contact section .form .sideB button {
    margin: 0;
}
#contact section .form hr {
    border: none;
    height: 400px;
    margin: 50px 50px;
    border-left: rgba(45, 255, 219, 0.3) 1px solid;
}
#contact section .form input {
    width: 100%;
    height: 40px;
    margin: 7px 0;
    padding: 10px;
    color: #fff;
    outline: none;
    font-size: 1rem;
    border: 1px solid #252525;
    background-color: transparent;
}
#contact section .form input::-moz-placeholder {
    font-size: 0.95rem;
}
#contact section .form input::placeholder {
    font-size: 0.95rem;
}
#contact section .form textarea {
    width: 100%;
    color: #fff;
    resize: none;
    height: 200px;
    padding: 10px;
    margin: 7px 0;
    outline: none;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid #252525;
    background-color: transparent;
}
#contact section .form textarea::-moz-placeholder {
    font-size: 0.95rem;
}
#contact section .form textarea::placeholder {
    font-size: 0.95rem;
}

#mobile_menu {
    top: 30px;
    right: 20px;
    width: 35px;
    height: 35px;
    z-index: 1000;
    display: none;
    position: absolute;
    background-size: 100% auto;
    background-image: url("../imgs/menu_icon.svg");
}

#close_btn {
    top: 30px;
    right: 30px;
    width: 25px;
    opacity: 0.5;
    height: 25px;
    z-index: 1000;
    position: absolute;
    background-size: 100% auto;
    background-image: url("../imgs/close_icon.svg");
}

#sidebar {
    top: 0;
    right: 0;
    width: 85%;
    z-index: 10001;
    height: 100dvh;
    display: none;
    position: fixed;
    background-size: auto 100%;
    background-position: top left;
    background-image: url('data:image/svg+xml,<svg width="100%" height="100%" viewBox="0 0 1920 1080" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;"><g transform="matrix(2.10066,2.57256e-16,-1.65534e-16,1.35169,-270.985,-1616.62)"><rect x="129" y="1196" width="914" height="799" style="fill:rgb(16,18,33);"/><clipPath id="_clip1"><rect x="129" y="1196" width="914" height="799"/></clipPath><g clip-path="url(%23_clip1)"><g transform="matrix(0.862802,-3.45821e-16,-1.09349e-16,-0.728738,-639.683,3710.08)"><circle cx="838.5" cy="2353.5" r="634.5" style="fill:url(%23_Radial2);"/></g><g transform="matrix(0.862802,-1.64695e-16,-5.72564e-17,-0.728738,-135.912,2911.08)"><circle cx="838.5" cy="2353.5" r="634.5" style="fill:url(%23_Radial3);"/></g></g></g><defs><radialGradient id="_Radial2" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(634.5,0,0,634.5,838.5,2353.5)"><stop offset="0" style="stop-color:rgb(74,23,94);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(16,18,33);stop-opacity:1"/></radialGradient><radialGradient id="_Radial3" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(634.5,0,0,634.5,838.5,2353.5)"><stop offset="0" style="stop-color:rgb(27,118,125);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(16,18,33);stop-opacity:1"/></radialGradient></defs></svg>');
}
#sidebar.show {
    display: block;
}
#sidebar nav {
    display: flex;
    padding: 0 30px;
    min-height: 100dvh;
    align-items: flex-end;
    flex-direction: column;
    margin-top: 100px;
    justify-content: flex-start;
}
#sidebar nav a {
    color: #fff;
    margin: 15px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
}
#sidebar nav .btn-line {
    width: 80%;
}

.mobile {
    display: none;
}
.mobile p {
    text-align: justify !important;
}
#subscribe-plan {
    max-width: 250px;
}
.explore-section {
    display: block !important;
}
.customer-care-container,
.customer-care-container p {
    color: black;
}
.customer-care-container h2 {
    color: #000;
    font-size: 24px;
}
.customer-care-navbar {
    display: flex;
    justify-content: center;
    padding: 13px;
}
.customer-care-container .customer-care-navbar {
    background-color: #000;
}
.customer-care-navbar img {
    width: 15%;
}
.white-bg {
    background-color: #fff !important;
}
.white-bg::after {
    position: relative;
    content: unset;
}
.customer-care {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 1rem 2rem !important;
}
.customer-care ul,
.customer-care p {
    font-size: 18px;
}
.customer-care form {
    width: 60%;
    display: flex;
    flex-direction: column;
}
.customer-care form input {
    padding: 8px 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    outline: none;
    border: 1px solid lightgray;
    font-weight: 500;
}
.customer-care .customer-care-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
}
.customer-care .customer-care-form form button {
    border-radius: 5px;
    background-color: black;
    color: white;
    padding: 10px 15px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    outline: none;
    border: none;
    cursor: pointer;
}
.customer-care .customer-care-form form textarea {
    padding: 8px 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    outline: none;
    border: 1px solid lightgray;
    font-weight: 500;
}
.customer-care .customer-care-heading ul li a {
    color: black;
    text-decoration: underline;
}
.customer-care .customer-care-heading ul li {
    margin-bottom: 2%;
}

@media only screen and (max-width: 1024px) {
    header {
        left: 20px;
        right: 20px;
    }
    header .wrap div a {
        font-size: 12px;
    }
    header .wrap div .btn-line {
        width: 160px;
    }
    footer {
        padding: 50px 20px;
    }
    .row .col-1 {
        min-height: 640px;
    }
    .row .col-2 {
        min-height: 640px;
    }
    section {
        padding: 0 20px;
    }
    #home p {
        max-width: 100%;
    }
    #home .rooms img,
    #home .rooms p {
        width: 80%;
    }
    #home .private img,
    #home .private p {
        width: 80%;
    }
    #home .genres li img {
        width: 45px;
    }
    #faq .faq_header {
        min-height: 200px;
    }
    #faq .wrap h5 {
        margin-bottom: 0;
    }
}
@media only screen and (max-width: 768px) {
    .customer-care-navbar img {
        width: 30%;
    }
    .customer-care form {
        width: 100%;
    }
    .alert-container {
        width: 90% !important;
    }
    .explore-row {
        flex-direction: column-reverse !important;
    }
    .alert-box {
        width: 80% !important;
        padding: 3% 5% !important;
    }
    .mobile,
    #mobile_menu {
        display: block;
    }
    .desktop {
        display: none;
    }
    .btn,
    .btn-line {
        min-height: 65px;
        max-width: 100%;
        font-size: 20px;
    }
    header .wrap div:nth-child(1) a:nth-child(1) {
        display: block;
    }
    header .wrap div a,
    header .wrap div .btn-line {
        display: none;
    }
    footer {
        padding: 50px 15px;
    }
    footer p {
        width: 100%;
    }
    footer .wrap {
        flex-direction: column;
    }
    footer .wrap h2 {
        margin: 30px 0;
    }
    footer .wrap .copy {
        margin-top: 30px;
    }
    .row {
        flex-direction: column;
    }
    .row .col-1 {
        min-height: auto;
    }
    .row .col-2 {
        width: 100%;
        min-height: auto;
        align-items: center;
        text-align: center;
    }
    section {
        padding: 100px 20px;
    }
    #home h1 {
        font-size: 28px;
    }
    #home h3 {
        font-size: 20px;
        text-align: center;
    }
    #home p {
        max-width: 100%;
    }
    #home .rooms img,
    #home .rooms p {
        width: 100%;
    }
    #home .private img,
    #home .private p {
        width: 100%;
    }
    #home .genres li img {
        width: 30px;
    }
    #home .mx-gap {
        padding: 25px 20px;
    }
    #experiences section {
        padding: 25px 20px;
    }
    #experiences section.gap-fix {
        padding: 70px 20px 25px 20px;
    }
    #experiences .hero {
        padding: 0 20px;
    }
    #experiences section .row .col-1 .box-content {
        padding: 10px;
        border-radius: 15px;
    }
    #experiences .explicit {
        padding: 50px 20px;
    }
    #experiences .explicit .v-wrap-full {
        display: none !important;
    }
    #experiences .explicit .v-wrap {
        display: block !important;
    }
    #experiences h1 {
        font-size: 28px;
        text-align: center;
    }
    #experiences h3 {
        font-size: 20px;
        text-align: center;
    }
    #experiences p {
        text-align: justify;
    }
    #experiences .arrange .row {
        flex-direction: column-reverse;
    }
    #faq .faq_header {
        min-height: 150px;
    }
    #faq .wrap h5 {
        font-size: 24px;
        margin-bottom: 0;
    }
    #faq .wrap h6 {
        font-size: 18px;
    }
    #plan .wrap-bottom {
        flex-direction: column;
    }
    #plan .wrap-bottom .price {
        width: 300px;
        margin: 15px auto;
    }
    #plan .wrap-bottom .price h4 {
        font-size: 28px;
    }
    #plan .wrap-bottom .price h5 {
        font-size: 18px;
    }
    #explore h3 {
        font-size: 24px;
    }
    #explore .wrap-bottom {
        flex-direction: column;
    }
    #explore .wrap-bottom .panel {
        width: 300px;
        margin: 15px auto;
    }
    #explore .wrap-bottom .panel h6 {
        font-size: 18px;
    }
    #contact section .form {
        margin: auto;
        flex-direction: column;
    }
    #contact section .form hr {
        height: 1px;
        width: 96%;
        border-bottom: rgba(45, 255, 219, 0.3) 1px solid;
    }
} /*# sourceMappingURL=styles.css.map */

#tnc,
#privacy_policy {
    margin: 9% 7% 5%;
}
#privacy_policy p {
    font-size: 18px;
}
.tnc_section,
.privacy_section {
    margin-top: 3%;
}
.tnc_text,
.privacy_section h2 {
    font-size: 20px;
}

.privacy_text ul li {
    font-size: 18px;
}
.privacy_text a {
    color: #fff;
}
.alert-container {
    display: none;
    justify-content: center;
    width: 100%;
    align-items: center;
    position: fixed;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    top: 0;
    bottom: 0;
    z-index: 1000;
}
.alert-container p {
    color: #000;
    text-align: center;
}
.err-icon {
    width: 8%;
    margin-bottom: 5%;
}
.alert-box {
    position: relative;
    color: #000;
    width: 35%;
    background-color: #fff;
    padding: 2% 1%;
    text-align: center;
    font-size: 19px;
    border-radius: 10px;
}
#alert-close {
    position: absolute;
    right: 3%;
    top: 6%;
    width: 6%;
    cursor: pointer;
}
