@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700;900&display=swap');
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

html, body{
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
	font-weight: 400;
    color: #000;
}

h1,
h2,
h3 {
    font-family: 'Poppins', sans-serif;
	font-weight: 900;
    color: #000;
}

h4,
h6 {
    font-family: 'Poppins', sans-serif;
	font-weight: 700;
    color: #000;
}

h5 {
    font-family: 'Poppins', sans-serif;
	font-weight: 400;
    color: #000;
}

p,
span {
    font-family: 'Poppins', sans-serif;
	font-weight: 300;
    color: #000;
}

.pt-7{
    padding-top: 7em;
}
.py-7{
    padding-top: 7em;
    padding-bottom: 7em;
}
.pb-7{
    padding-bottom: 7em;
}
.sflex {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

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

.bflex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.container {
    padding-left: 25px;
    padding-right: 25px;
}

header {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 99999;
    transition: .1s;
}

.header {
    padding-top: 20px;
    padding-bottom: 20px;
    z-index: 999;
}
.fixed-background {
    animation-name: header;
    animation-duration: .5s;
    background-color: rgba(0, 0, 0, 0.9) !important;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.05);
    z-index: 999;
}
.fixed {
    animation-name: header;
    animation-duration: .5s;
    background-color: rgba(0, 0, 0, 0.9) !important;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.05);
    z-index: 999;
}

@keyframes header {
    0% {
        transform: translateY(-15%);
    }

    100% {
        transform: translateY(0%);
    }
}

.header .navbar-brand img {
    height: auto;
    width: 100px;
    vertical-align: middle;
}

.header .nav-item {
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
    margin: 0px 2.5px;
}

.header .nav-item:last-child {
    margin-right: 0px;
    margin-left: 10px;
}
.header .nav-link {
    position: relative;
    
}
.header .nav-link span{
    color: #fff !important;
}
.cus-nav .menu-main-menu-container{
margin-left: auto !important;
}

.header .nav-link:after {
    visibility: hidden;
    position: absolute;
    content: '';
    height: 1px;
    width: 0%;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    margin: 0 auto 5px;
    background-color: #fff;
    transition: .5s;
}

.header .nav-link:hover:after {
    visibility: visible;
    opacity: 1;
    width: 100%;
    transition: .5s;
}

.header .navbar-toggler {
    outline: 0;
    border: 0;
    padding: 10px;
    color: transparent;
}

.mob {
    display: flex;
    flex-flow: column;
    align-items: flex-end;
}

.mobi {
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 1px;
    background-color: #fff;
    transition: .5s;
}

.mobi-2 {
    visibility: visible;
    opacity: 1;
    margin: 7.5px 0;
    transition: .5s;
}

.mobi-1.action {
    width: 25px;
    transition: .5s;
}

.mobi-2.action {
    width: 15px;
    transition: .5s;
}

.mobi-3.action {
    width: 5px;
    transition: .5s;
}

.btn-white {
    text-decoration: none;
    text-transform: none;
    font-size: 14px;
    color: #000 !important;
    padding: 10px 25px !important;
    border: none;
    border-radius: 35px;
    background-color: rgba(255, 255, 255, 1);
    transition: .5s;
}

/* .btn-white:after{
    visibility: hidden;
    position: absolute;
    content: '→';
    opacity: 0;
    color: #000;
    margin-left: 0px;
    transition: .5s;
}
.btn-white:hover:after{
    visibility: visible;
    opacity: 1;
    margin-left: 5px;
    transition: .5s;
} */

.btn-social {
    position: fixed;
    height: 65px;
    width: 65px;
    bottom: 25px;
    right: 25px;
    border-radius: 100%;
    margin-right: 5px;
    background-color: #25D266;
    transition: .5s;
    z-index: 999;
}

.btn-social img {
    height: auto;
    width: 35px;
}

.btn-social:hover{
    transform: scale(0.9);
    transition: .5s;
}

.title {
    position: relative;
    height: auto;
    width: 100%;
}

.title .carousel-inner,
.title .carousel-item {
    position: relative;
    height: auto;
}

.abs-home {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9;
}

.title .carousel-item img {
    height: 100vh;
    width: 100%;
    object-fit: cover;
    z-index: 1;
}

.title .carousel-indicators{
    z-index: 99;
}

.title-data {
    max-width: 450px;
}

.title-data span {
    font-size: 16px;
    color: #fff;
}

.title-data h1 {
    font-size: 55px;
    color: #fff;
}

.title-data p {
    font-size: 14px;
    color: #fff;
    margin-bottom: 25px;
}


/* .title .carousel-item.active .title-data{
	animation-name: fadeUp;
    animation-duration: 1s;
    animation-iteration-count:  ease forwards;
}

@keyframes fadeUp{
	0%{
		opacity: 0;
		transform: translateY(25%);
	}
	100%{
		opacity: 1;
		transform: translateY(0%);
	}
} */

.title .carousel-indicators [data-bs-target] {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    border-radius: 100%;
}

.benefit {
    height: auto;
    width: 100%;
}

.benefit .col-lg-6:first-child {
    padding-right: 0;
}

.lbenefit img {
    height: 600px;
    width: 100%;
    object-fit: cover;
    object-position: right;
}

.rbenefit {
    padding-left: 75px;
    box-sizing: border-box;
}

.rbenefit ul {
    margin-top: 15px;
    padding-left: 0;
}

.rbenefit li {
    display: block;
    list-style: none;
}

.rbenefit a {
    display: block;
    text-decoration: none;
    padding: 15px 0;
    box-sizing: border-box;
    border-bottom: 1px solid #c3c3c3;
    transition: .5s;
}

.rbenefit a:hover {
    padding: 15px 0 15px 15px;
    /* background-color: #f9f9f9; */
    border-color: #000;
    transition: .5s;
}

.rbenefit li:last-child a {
    border-bottom: 0;
}

.rbenefit h6 {
    font-family: 'Poppins', sans-serif;
	font-weight: 400;
}

.rbenefit p {
    font-size: 14px;
    color: #000;
    margin: 5px 0 0;
}

.about {
    height: auto;
    width: 100%;
    padding: 100px 0;
    background-color: #fff;
}

.labout {
    padding-right: 55px;
    box-sizing: border-box;
}

.habout span {
    font-size: 16px;
    color: #676767;
}

.l-text {
    font-family: 'Poppins', sans-serif;
	font-weight: 900;
    font-size: 35px;
    color: #000;
}

.m-text {
    font-family: 'Poppins', sans-serif;
	font-weight: 300;
    line-height: normal !important;
    font-size: 22px;
    color: #000;
    margin: 15px 0 25px;
}

.ms-text{
    font-family: 'Poppins', sans-serif;
	font-weight: 400;
    line-height: normal !important;
    font-size: 16px;
    color: #000;
}

.msx-text{
    font-family: 'Poppins', sans-serif;
	font-weight: 400;
    line-height: normal !important;
    font-size: 20px;
    color: #000;
}

.s-text {
    font-family: 'Poppins', sans-serif;
	font-weight: 300;
    line-height: normal !important;
    font-size: 13px;
    color: #000;
}

.sm-text {
    font-family: 'Poppins', sans-serif;
	font-weight: 300;
    line-height: normal !important;
    font-size: 12px;
    color: #000;
}

.pop-text {
    font-family: 'Poppins', sans-serif;
	font-weight: 700;
    line-height: normal !important;
    font-size: 17px;
    color: #000;
}

.habout font,
.hinvestment font {
    border-bottom: 1px solid #000;
}

.babout.sflex {
    align-items: flex-start;
    margin-top: 25px;
}

.babout .line {
    height: 1px;
    width: 250px;
    margin: 10px 15px 0 0;
    background-color: #000;
}

.babout p {
    font-size: 13px;
    color: #000;
    margin: 0 0 25px;
}

.rabout img {
    height: 550px;
    width: 100%;
    object-fit: cover;
}

.service {
    height: auto;
    width: 100%;
    padding-bottom: 100px;
    background-color: #fff;
}

.hservice {
    margin-bottom: 50px;
}

.hservice p {
    text-align: justify;
    max-width: 600px;
    font-size: 13px;
    color: #000;
    margin-bottom: 0;
}

.data-service img {
    height: 450px;
    width: 100%;
    object-fit: cover;
}

.info-service {
    height: auto;
    width: 100%;
    padding: 25px;
    box-sizing: border-box;
}

.info-service p {
    max-width: 275px;
    font-size: 13px;
    color: #000;
    margin: 15px 0 0;
}

.parallax {
    height: 100%;
    width: 100%;
    padding-bottom: 100px;
}

.cparallax {
    position: relative;
    height: 80vh;
    width: 100%;
    overflow: hidden;
}

.p-par {
    position: relative;
    height: 70vh;
    width: 100%;
    overflow: hidden;
}

.p-par img{
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0 !important;
    left: 0;
    object-fit: cover;
}

.spa-par {
    position: relative;
    display: flex;
    align-items: flex-start;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.spa-par img{
    position: absolute;
    height: 100vh;
    width: 100%;
    top: 0 !important;
    left: 0;
    object-fit: cover;
}
.spa-par-spa {
    position: relative;
    display: flex;
    align-items: flex-start;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.spa-par-spa img{
    position: absolute;
    height: 100vh;
    width: 100%;
    top: 0 !important;
    left: 0;
    object-fit: cover;
}


.content-spa{
    position: absolute;
    height: 100vh;
    width: 100%;
    top: 0 !important;
    left: 0;
    transform: translateY(-50%);
    object-fit: cover;
    z-index: 9;
}
.content-spa-spa{
    position: absolute;
    height: 100vh;
    width: 100%;
    top: 0 !important;
    left: 0;
    transform: translateY(-50%);
    object-fit: cover;
    z-index: 9;
}

.ov-parallax{
    position: relative;
    height: 80vh;
    width: 100%;
    overflow: hidden;
}

.ind-par{
    height: 100vh;
    width: 100%;
}

.ind-par img{
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0 !important;
    left: 0;
    object-fit: cover;
}

#lg-counter,
#lg-share,
.lg-download,
.lg-autoplay-button {
    display: none !important;
    opacity: 0 !important;
}

.investment {
    height: auto;
    width: 100%;
    padding-bottom: 100px;
    background-color: #fff;
}

.hinvestment {
    height: auto;
    width: 100%;
    max-width: 750px;
    margin: 0 auto 50px;
}

.hinvestment .cflex {
    align-items: flex-start;
}

.hinvestment .col-lg-4:first-child .line {
    height: 1px;
    width: 75px;
    margin: 10px 0 0 0;
    background-color: #000;
}

.hinvestment .col-lg-8:last-child .m-text {
    margin: 0 0 25px;
}

.hinvestment .col-lg-8:last-child p:nth-child(2) {
    text-align: justify;
}

.hinvestment .col-lg-8:last-child p:last-child {
    text-align: justify;
    margin-bottom: 0;
}

.binvestment .cov-img {
    height: 225px;
    width: 100%;
    overflow: hidden;
}

.binvestment img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: .5s;
}

.binvestment img:hover {
    transform: scale(1.1);
    transition: .5s;
}

.des-gallery{
    flex-flow: wrap;
}

.d-gallery{
    height: 225px;
    width: 33.33%;
    margin-top: 25px;
}

.partner {
    height: auto;
    width: 100%;
    padding: 100px 0;
    background-color: #fbfbfb;
}

.hpartner {
    height: auto;
    width: 100%;
    margin-bottom: 50px;
}

.hpartner .m-text {
    max-width: 450px;
}

.hpartner .s-text {
    text-align: justify;
    max-width: 600px;
}

.bpartner img {
    height: 450px;
    width: 100%;
    object-fit: cover;
}

.owl-carousel {
    position: relative;
}

.owl-prev {
    position: absolute;
    top: -40%;
    left: -25px;
    bottom: 0;
    margin: auto;
}

.owl-next {
    position: absolute;
    top: -40%;
    right: -25px;
    bottom: 0;
    margin: auto;
}
.owl-nav.disabled {
    display: block !important;
}
.owl-nav button {
    background-color: black !important;
}

.owl-prev,
.owl-next {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    border-radius: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    transition: .5s;
}

.owl-prev span,
.owl-next span {
    font-size: 25px;
    color: #fff;
    margin-top: -2.5px;
}

.owl-prev:hover,
.owl-next:hover {
    background-color: #000 !important;
    transition: .5s;
}

.panoramic {
    height: auto;
    width: 100%;
    padding: 100px 0;
    background-color: #fff;
}

.tpanoramic {
    height: auto;
    width: 100%;
    max-width: 450px;
    text-align: center;
    margin: 0 auto 50px;
}

.mpanoramic {
    margin-bottom: 50px;
}

.mpanoramic img {
    height: auto;
    width: 100%;
}

.data{
    height: auto;
    width: 100%;
    padding: 35px 35px;
    background-color: #fff;
    border-bottom: 1px solid #c3c3c3;
    transition: .5s;
}

.cdata{
    width: 100%;
    max-width: 850px;
}

.data:hover{
    background-color: #f9f9f9;
    transition: .5s;
}

.data:last-child{
    border-bottom: 0;
}

.hdata{
    margin-bottom: 25px;
}

.hdata .msx-text{
    font-size: 20px;
}

.bdata .s-text {
    font-family: 'Poppins', sans-serif;
	font-weight: 300;
    font-size: 15px;
    color: #000;
    padding: 2.5px 0;
}

.pack {
    height: auto;
    width: 100%;
    padding: 200px 0 100px;
    background-color: #fff;
}

.hpack .line {
    height: 1px;
    width: 75px;
    margin: 10px 0 0 0;
    background-color: #000;
}

.bpack {
    display: flex;
    justify-content: flex-start;
    flex-flow: wrap;
    margin-top: 50px;
}

.package {
    height: auto;
    width: 48.5%;
    background-color: #fff;
    margin: 50px 2.5% 0 0;
}

.package:nth-child(even) {
    margin-right: 0;
}

.package .cov-img {
    height: 300px;
    width: 100%;
    overflow: hidden;
}

.package img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: .5s;
}

.package:hover img {
    transform: scale(1.1);
    transition: .5s;
}

.info-package {
    height: auto;
    width: 100%;
    padding: 25px;
    box-sizing: border-box;
}

.info-package .ms-text {
    font-family: 'Poppins', sans-serif;
	font-weight: 700;
    font-size: 14px;
    margin-bottom: 35px;
}

.info-package p {
    margin: 25px 0;
}

.info-package .btn-box-black:after{
    margin-top: 2.5px;
}

.pack .col-lg-4:first-child .line {
    height: 1px;
    width: 75px;
    margin: 10px 0 0 0;
    background-color: #000;
}

.spa {
    background-color: #f9f9f9;
    padding-bottom: 0;
}

.spa .container{
    height: 100vh;
}

.cspa {
    position: relative;
    width: 100%;
    max-width: 650px;
    padding: 100px 0;
    text-align: center;
    box-sizing: border-box;
    z-index: 9;
}

.cspa .l-text {
    color: #fff;
}

.cspa .line {
    height: 1px;
    width: 60px;
    margin: 10px auto 25px auto;
    background-color: #fff;
}

.cspa p {
    font-size: 14px;
    color: #fff;
    margin: 0 0 35px;
}

.cspa .pop-text {
    text-transform: uppercase;
    color: #fff;
}

.key {
    height: auto;
    width: 100%;
    padding-bottom: 100px;
    background-color: #fff;
}

.hkey {
    height: auto;
    width: 100%;
    max-width: 500px;
    text-align: center;
    margin: 0 auto;
}

.hkey .line {
    height: 1px;
    width: 75px;
    margin: 10px auto 0;
    background-color: #000;
}

.hkey p {
    margin: 25px 0 0;
}

.bkey {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: wrap;
    height: auto;
    width: 100%;
    margin-top: 50px;
}

.data-key {
    height: 150px;
    width: 14.66%;
    padding: 15px;
    margin: 10px;
    text-align: center;
    box-sizing: border-box;
    background-color: #fff;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.05);
}

.data-key img {
    display: block;
    height: 25px;
    width: auto;
    margin: 0 auto 15px;
}

.data-key p {
    font-size: 12px;
    margin: 0;
}

.data-keys {
    height: 150px;
    width: 18%;
    padding: 15px;
    margin: 10px;
    text-align: center;
    box-sizing: border-box;
    background-color: #fff;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.05);
    transition: .5s;
}

.data-keys:hover{
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.10);
    transition: .5s;
}
.data-key:hover {
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.10);
    transition: .5s;
}

.data-keys img {
    display: block;
    height: 25px;
    width: auto;
    margin: 0 auto 15px;
}

.data-keys p {
    font-size: 12px;
    margin: 0;
}

.data-keyss {
    height: 200px;
    width: 32%;
    padding: 15px;
    text-align: center;
    box-sizing: border-box;
    background-color: #fff;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.05);
    transition: .5s;
}

.data-keyss:hover{
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.10); 
    transition: .5s;
}

.data-keyss img {
    display: block;
    height: 30px;
    width: auto;
    margin: 0 auto 15px;
}

.data-keyss .ms-text {
    text-transform: uppercase;
    font-size: 15px;
    margin: 25px 0 10px;
}

.data-keyss p {
    font-size: 13px;
    margin: 0;
}

.view-show {
    height: auto;
    width: 100%;
    background-color: #fff;
}

.view-show img {
    height: auto;
    width: 100%;
}

.info{
    height: auto;
    width: 100%;
    padding: 100px 0;
    background-color: #fff;
}

.cinfo{
    height: auto;
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
}
.accordion-item {
    border-bottom: 1px solid rgba(0,0,0,0.07);
}
.accordion-item:last-child {
    border-bottom: 0;
}
.accordion-item:last-of-type .accordion-collapse {
	border-bottom-width: 0;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}
.cinfo .accordion-button{
    background-color: transparent;
    color: #000;
    outline: none;
    border: 0 !important;
    box-shadow: none !important;
    border-color: transparent !important;
    transition: .5s !important;
}
.cinfo .accordion-button:after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.cinfo li{
    font-family: 'Poppins', sans-serif;
	font-weight: 300;
    font-size: 13px;
    color: #000;
}

.new {
    height: auto;
    width: 100%;
    background-color: #fff;
    margin: 0 auto;
}

.new:nth-child(even) {
    margin-right: 0;
}

.new .cov-img {
    height: 300px;
    width: 100%;
    overflow: hidden;
}

.new img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: .5s;
}

.new:hover img {
    transform: scale(1.1);
    transition: .5s;
}

.info-new {
    height: auto;
    width: 100%;
    padding: 25px;
    text-align: center;
    box-sizing: border-box;
}

.info-new .ms-text {
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
	font-weight: 300;
    font-size: 16px;
}

.info-new p {
    text-align: center;
    margin: 25px 0;
}

.footers {
    height: auto;
    width: 100%;
    padding: 100px 0;
    background-color: #f9f9f9;
}

.footers.footer{
    height: auto;
    width: 100%;
    padding: 0 0 100px !important;
    background-color: #fff !important;
}

.footer .col-lg-6:last-child {
    padding-left: 0;
}

.lfooter {
    padding-right: 75px;
    box-sizing: border-box;
}
.c-form p{
    margin: 0;
}

.lfooter p {
    font-size: 14px;
}

.lfooter input {
    width: 100%;
    font-family: 'Poppins', sans-serif;
	font-weight: 300;
    font-size: 14px;
    color: #000;
    padding: 15px 0;
    border: 0;
    border-radius: 0;
    outline: none;
    background-color: transparent;
    border-bottom: 1px solid #c3c3c3;
    transition: .5s;
}

.lfooter textarea {
    height: 100px;
    max-height: 150px;
    width: 100%;
    max-width: 100%;
    font-family: 'Poppins', sans-serif;
	font-weight: 300;
    font-size: 14px;
    color: #000;
    padding: 15px 0;
    border: 0;
    border-radius: 0;
    outline: none;
    background-color: transparent;
    border-bottom: 1px solid #c3c3c3;
    transition: .5s;
}

.lfooter input:focus,
.lfooter textarea:focus {
    border-color: #000;
    transition: .5s;
}

.btn-box-black {
    height: auto;
    width: auto;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
	font-weight: 400;
    font-size: 14px;
    color: #000;
    cursor: pointer;
    padding: 10px 35px;
    background-color: #fff;
    border-radius: 0px !important;
    border: 1px solid #000;
    transition: .5s;
}

.btn-box-black:hover {
    color: #fff;
    background-color: #000;
    transition: .5s;
}

.btn-box-black:after {
    visibility: hidden;
    position: absolute;
    content: '→';
    opacity: 0;
    color: #fff;
    margin-left: 0px;
    transition: .5s;
}

.btn-box-black:hover:after {
    visibility: visible;
    opacity: 1;
    margin-left: 5px;
    transition: .5s;
}

input.input-box-black {
    height: auto;
    width: auto;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
	font-weight: 400;
    font-size: 14px;
    color: #000;
    cursor: pointer;
    padding: 10px 35px;
    background-color: #fff;
    border-radius: 0px !important;
    border: 1px solid #000;
    transition: .5s;
}

input.input-box-black:hover {
    color: #fff;
    background-color: #000;
    transition: .5s;
}

input.input-box-black:after {
    visibility: hidden;
    position: absolute;
    content: '→';
    opacity: 0;
    color: #fff;
    margin-left: 0px;
    transition: .5s;
}

input.input-box-black:hover:after {
    visibility: visible;
    opacity: 1;
    margin-left: 5px;
    transition: .5s;
}


.btn-box-white {
    height: auto;
    width: auto;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
	font-weight: 400;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
    padding: 10px 35px;
    background-color: transparent;
    border-radius: 0px !important;
    border: 1px solid #fff;
    transition: .5s;
}

.btn-box-white:hover {
    color: #000;
    background-color: #fff;
    transition: .5s;
}

.btn-box-white:after {
    visibility: hidden;
    position: absolute;
    content: '→';
    opacity: 0;
    color: #000;
    margin-left: 0px;
    transition: .5s;
}

.btn-box-white:hover:after {
    visibility: visible;
    opacity: 1;
    margin-left: 5px;
    transition: .5s;
}

.rfooter {
    position: relative;
    height: 550px;
}

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

.foot-info {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    padding: 100px 125px;
    background-color: rgba(255, 255, 255, 0.8);
}

.foot-info>img {
    height: auto;
    width: 125px;
    margin-bottom: 25px;
}

.foot-info span {
    font-size: 14px;
    color: #676767;
}

.foot-info p {
    font-size: 14px;
    color: #000;
}

.oval-icon {
    height: 35px;
    width: 35px;
    border-radius: 100%;
    margin-right: 5px;
    background-color: #25D266;
}

.oval-icon img {
    height: auto;
    width: 20px;
}

.social p {
    font-family: 'Poppins', sans-serif;
	font-weight: 500;
    font-size: 14px;
    color: #000;
    margin-bottom: 0;
}

.contact a {
    display: inline-flex;
    font-size: 14px;
    color: #000;
}

.copyright {
    position: absolute;
    width: 100%;
    left: 0px;
    bottom: 0px;
    padding: 15px 45px;
}

.copyright p {
    width: 100%;
    font-size: 12px !important;
    color: #000;
}

@media screen and (max-width: 992px) {
    .fixeds {
        background-color: rgba(0, 0, 0, 0.9) !important;
        box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.05);
        transition: .1s;
        z-index: 99;
    }

    .header .navbar-nav {
        align-items: center;
        justify-content: center;
        padding: 0 25px 50px;
    }

    .header .nav-item {
        margin: 5px 0px;
    }

    .header .nav-item:last-child {
        margin: 10px 0 0 0;
    }

    .about .bflex {
        flex-flow: column-reverse;
    }

    .labout {
        padding-right: 0;
        margin-top: 25px;
    }

    .habout span {
        font-size: 14px;
    }

    .m-text {
        font-size: 20px;
    }

    .rabout img {
        max-height: 250px;
        height: auto !important;
    }

    .hservice p {
        margin: 25px 0 0;
    }

    .bservice .col-lg-4 {
        margin-bottom: 25px;
    }

    .bservice .col-lg-4:last-child {
        margin-bottom: 0;
    }

    .data-service img {
        height: auto;
        max-height: 250px;
    }

    .info-service p {
        max-width: 100%;
    }

    .cparallax {
        height: 250px;
        width: 100%;
    }

    .content-spa{
        transform: translateY(-60%);
    }

    .benefit .col-lg-6:first-child {
        padding-right: calc(var(--bs-gutter-x) * .5);
    }

    .lbenefit img {
        height: auto;
        width: 100%;
    }

    .rbenefit {
        padding-left: 0;
        margin: 50px 0;
    }

    .hinvestment .col-lg-4:first-child {
        margin-bottom: 25px;
    }

    .binvestment .col-lg-4 {
        margin-bottom: 25px;
    }

    .binvestment .col-lg-4:last-child {
        margin-bottom: 0;
    }

    .data-key {
        width: 20.5%;
    }

    .data-keys {
        width: 27.5%;
    }


    .news .col-lg-6{
        margin-bottom: 25px;
    }

    .news .col-lg-6:last-child{
        margin-bottom: 0px;
    }

    .d-gallery{
        height: 225px;
        width: 50%;
    }    

    .footer .col-lg-6:last-child {
        padding-left: calc(var(--bs-gutter-x) * .5);
    }

    .lfooter {
        padding-right: 0;
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 768px) {
    /* Text Options */

    .l-text {
        font-size: 30px;
    }
    
    .m-text {
        font-size: 20px !important;
    }
    
    .ms-text{
        font-size: 15px;
    }
    
    .msx-text{
        font-size: 17px;
    }
    
    .s-text {
        font-size: 13px;
    }

    .sm-text {
        font-size: 12px;
    }
    
    .pop-text {
        font-size: 16px;
    }

    /* End Text Options */

    .title-data span {
        font-size: 14px;
    }

    .title-data h1 {
        font-size: 45px;
        color: #fff;
    }

    .owl-prev {
        left: 5px;
    }

    .owl-next {
        right: 5px;
    }

    .package {
        width: 100%;
        margin: 50px 0;
    }

    .package:last-child {
        margin-bottom: 0;
    }

    .data-key {
        width: 40.5%;
    }

    .data-keys {
        width: 40.5%;
    }

    .data-keyss {
        height: 200px;
        width: 100%;
        margin: 10px 0;
    }

    .d-gallery, .d-gallery .cov-img{
        height: 150px;
    } 

    .footers {
        padding: 100px 0 50px;
    }

    .footers.footer {
        height: auto;
        width: 100%;
        padding: 0 0 50px;
    }

    .foot-info {
        padding: 100px 45px;
    }
}

/* video */
.video {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}
.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* book */
.desk-book ul li{
    display: list-item;
    list-style: unset;   
    font-size: 14px;
    font-weight: lighter;
}
.desk-book ul {
    padding-left: 30px;
    
}

/* image background */
@media screen and (max-width: 936px) {
    .ind-par img {
        position: relative;
        height: auto;
        width: 100%;
        top: 0 !important;
        left: 0;
        object-fit: contain;
    }
    .p-par, .spa-par {
        position: relative;
        height: auto;
        width: 100%;
        overflow: hidden;
        padding-top: 5.5em;
    }
    .p-par img, .spa-par img {
        position: relative;
        height: auto;
        width: 100%;
        top: 0 !important;
        left: 0;
        object-fit: contain;
    }
    .spa-par {
        position: relative;
        display: flex;
        align-items: flex-start;
        height: 70vh;
        width: 100%;
        overflow: hidden;
    }
    .background-mobile{
            animation-name: header;
            animation-duration: .5s;
            background-color: rgba(0, 0, 0, 0.9) !important;
            box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.05);
            z-index: 999;
    }
    .content-spa{
        position: relative;
        height: auto;
        width: 100%;
        top: 0 !important;
        left: 0;
        transform: translateY(0%) !important;
        object-fit: none;
        z-index: 9;
    }
    .title .slide-package img {
        height: auto !important;
        width: 100%;
        object-fit: cover;
        z-index: 1;
        padding-top: 90px;
    }
    .ov-parallax {
        position: relative;
        height: auto;
    }
    .ind-par {
        height: auto;
        width: 100%;
    }
}
@media screen and (max-width: 500px) {
    .spa-par {
        position: relative;
        display: flex;
        align-items: flex-start;
        height: auto;
        width: 100%;
        overflow: hidden;
    }



}