@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
body {
  font-family: "Montserrat", sans-serif;
  background-color: #F4F4F2;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

.full-img {
  width: 100%;
  height: 100%;
}

.img-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.object-postion-center {
  -o-object-position: center;
     object-position: center;
}

a {
  text-decoration: none;
}

.font-great-vibes {
  font-family: "Great Vibes", cursive;
}

.fs-20 {
  font-size: clamp(16px, 1.5vw, 20px);
}

.fs-22 {
  font-size: clamp(17.6px, 1.6vw, 22px);
}

.fs-24 {
  font-size: clamp(19.2px, 1.8vw, 24px);
}

.fs-26 {
  font-size: clamp(20.8px, 1.9vw, 26px);
}

.fs-28 {
  font-size: clamp(22.4px, 2vw, 28px);
}

.fs-30 {
  font-size: clamp(24px, 2.1vw, 30px);
}

.fs-32 {
  font-size: clamp(25.6px, 2.2vw, 32px);
}

.fs-34 {
  font-size: clamp(27.2px, 2.3vw, 34px);
}

.fs-36 {
  font-size: clamp(28.8px, 2.4vw, 36px);
}

.fs-38 {
  font-size: clamp(30.4px, 2.5vw, 38px);
}

.fs-40 {
  font-size: clamp(32px, 2.6vw, 40px);
}

.fs-45 {
  font-size: clamp(33.75px, 2.7vw, 45px);
}

.fs-70 {
  font-size: clamp(35px, 3.5vw, 70px);
}

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

.text-25 {
  font-size: 25px;
}

.text-30 {
  font-size: clamp(16px, 1.6vw, 30px);
}

.text-40 {
  font-size: 40px;
}

.text-45 {
  font-size: clamp(22px, 2.47vw, 45px);
}

@media (max-width: 1440px) {
  .text-20 {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .text-20 {
    font-size: 16px;
  }
  .text-25 {
    font-size: 20px;
  }
  .text-40 {
    font-size: 25px;
  }
}
@media (max-width: 440px) {
  .text-20 {
    font-size: 14px;
  }
  .text-25 {
    font-size: 18px;
  }
  .text-40 {
    font-size: 22px;
  }
}
.fw-semiBold {
  font-weight: 600;
}

.text-orange {
  color: #F36F21;
}

.text-blue {
  color: #115091;
}

.text-black-2 {
  color: #1E1E1E;
}

.text-gray {
  color: #3F3F3F;
}

.text-white {
  color: #FFFFFF;
}

.text-green {
  color: #658886;
}

.text-rotage {
  transform: rotate(-7.66deg);
}

.bg-test-1 {
  background-color: rgba(187, 234, 174, 0.4);
}

.bg-test-2 {
  background-color: rgba(194, 220, 100, 0.4);
}

.bg-test-3 {
  background-color: rgba(231, 112, 112, 0.4);
}

.bg-test-4 {
  background-color: rgba(166, 128, 241, 0.4);
}

:root {
  --cards: 3;
  --cardHeight: 500px;
  --cardTopPadding: 1em;
  --cardMargin: 3vw;
}
@media (max-width: 767px) {
  :root {
    --cardHeight: fit-content;
  }
}

.fp-overflow::-webkit-scrollbar {
  display: none;
}
.fp-overflow {
  -ms-overflow-style: none;
}

.sec-container {
  height: 100%;
  min-height: 100dvh;
}

.padding-nav {
  padding-top: 88px;
}

.nav-fixed {
  opacity: 0;
  pointer-events: none;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
  transition: opacity 0.3s ease;
}
.nav-fixed.active {
  opacity: 1;
  pointer-events: auto;
}

.nav-bar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 148px 10px 70px;
  background-color: white;
  transition: all 0.3s linear;
  position: relative;
}
.nav-bar .menu {
  display: flex;
  align-items: center;
  -moz-column-gap: 54px;
       column-gap: 54px;
}
.nav-bar .menu a {
  font-size: 18px;
  font-weight: 300;
  color: #000000;
  text-transform: uppercase;
}
.nav-bar .menu a.active {
  font-weight: 400;
  color: #F36F21;
}
.nav-bar .hamburger {
  display: none;
  position: absolute;
  top: 50%;
  right: 35px;
  transform: translateY(-50%);
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  z-index: 10;
}
.nav-bar .hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #F36F21;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.nav-bar .hamburger.active {
  justify-content: center;
}
.nav-bar .hamburger.active span {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.nav-bar .hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
}
.nav-bar .hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav-bar .hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
}
@media (max-width: 1440px) {
  .nav-bar {
    padding: 10px 50px 10px 35px;
  }
  .nav-bar .menu {
    -moz-column-gap: 25px;
         column-gap: 25px;
  }
  .nav-bar .menu a {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .nav-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-bar .menu {
    position: absolute;
    top: 88px;
    background-color: white;
    height: 0;
    width: calc(100% + 50px);
    left: 0;
    padding-left: 50px;
    transition: all 0.2s ease;
  }
  .nav-bar .menu a {
    display: none;
  }
  .nav-bar .menu.active {
    height: 50px;
  }
  .nav-bar .menu.active a {
    display: block;
  }
  .nav-bar .hamburger {
    display: flex;
  }
}
@media (max-width: 768px) {
  .nav-bar .menu {
    overflow: auto;
    padding-right: 70px;
  }
  .nav-bar .menu a {
    font-size: 14px;
    text-wrap: nowrap;
  }
}
@media (max-width: 425px) {
  .nav-bar {
    padding: 10px;
  }
  .nav-bar .menu {
    top: 66px;
  }
  .nav-bar .hamburger {
    height: 18px;
    right: 10px;
  }
  .nav-bar .hamburger span {
    height: 2px;
  }
}

.nav-logo {
  width: 294px;
}
.nav-logo img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 425px) {
  .nav-logo {
    width: 200px;
  }
}

.sec-1 .content-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.sec-1 .video {
  width: 100%;
  height: 100%;
}
.sec-1 .video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec-1 .logo {
  width: 90%;
  max-width: 390px;
  aspect-ratio: 390/90;
  position: absolute;
  top: 6%;
  left: 6%;
}
.sec-1 .journey-group {
  width: 90%;
  max-width: 723px;
  aspect-ratio: 723/386;
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
}
.sec-1 .journey-group .pos-rel {
  width: 100%;
  height: 100%;
  position: relative;
}
.sec-1 .journey {
  width: 100%;
  position: absolute;
  top: 0;
}
.sec-1 .journey-sub {
  width: 65%;
  position: absolute;
  bottom: 13%;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .sec-1 .logo {
    left: 50%;
    transform: translateX(-50%);
  }
}

.sec-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../asset/images/sec-2/bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.7;
  z-index: 0;
}
.sec-2 .content-container {
  height: 100%;
  display: flex;
  padding: 15px 0;
}
.sec-2 .content-block {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-self: center;
  justify-content: center;
  row-gap: 25px;
}
.sec-2 .slider-wrapper {
  width: 100%;
  overflow: hidden;
}
.sec-2 .slider {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
}
.sec-2 .slider .img-box {
  width: 100%;
  max-width: 505px;
  height: 40dvh;
  max-height: 305px;
  margin-right: -1px;
  overflow: hidden;
}
.sec-2 .slider img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.sec-2 .slider-to-left {
  animation: slide-to-left-loop 20s linear infinite;
}
.sec-2 .slider-to-right {
  animation: slide-to-right-loop 20s linear infinite;
}
@keyframes slide-to-left-loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes slide-to-right-loop {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

.sec-3 .content-container {
  width: 100%;
  height: 100%;
  min-height: 100%;
  position: relative;
  display: flex;
}
.sec-3 .left-side {
  height: 100%;
  position: relative;
  flex: 1;
}
.sec-3 .left-side .side-img {
  width: 100%;
  height: 90%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom left;
     object-position: bottom left;
}
.sec-3 .right-side {
  width: 45%;
  min-width: 630px;
  height: 100%;
  padding: 0 50px;
  display: flex;
  flex: 0 0 45%;
}
.sec-3 .right-side .content-group {
  margin: auto;
  width: 100%;
  max-width: 580px;
}
.sec-3 .right-side .content-group .heading {
  position: relative;
  margin-bottom: 55px;
}
.sec-3 .right-side .content-group .heading .text-normal {
  font-size: 40px;
  line-height: 60px;
  text-indent: 215px;
}
.sec-3 .right-side .content-group .heading .text-special {
  font-size: 75px;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: 20px;
  left: 90px;
  transform: translate(-50%, -50%);
}
.sec-3 .right-side .content-group .desc {
  max-width: 525px;
  line-height: 35px;
  margin-bottom: 109px;
}
.sec-3 .right-side .content-group .btn-box {
  width: 100%;
}
.sec-3 .right-side .content-group .btn-pre-booking {
  border: unset;
  outline: unset;
  width: 100%;
  max-width: 323px;
  height: 70px;
  background-color: #F36F21;
  color: #FEFEFE;
  border-radius: 20px 20px 0 0;
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 22px;
       column-gap: 22px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16);
}
.sec-3 .right-side .content-group .btn-pre-booking img {
  width: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1024px) {
  .sec-3 .left-side {
    display: none;
  }
  .sec-3 .right-side {
    width: 100%;
    min-width: unset;
    flex: unset;
    padding: 0;
  }
  .sec-3 .right-side .content-group {
    max-width: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: unset;
  }
  .sec-3 .right-side .content-group .heading {
    width: 90%;
    max-width: 350px;
    margin-top: 50px;
    margin-bottom: 20px;
  }
  .sec-3 .right-side .content-group .heading .text-special {
    font-size: 50px;
    top: 0;
  }
  .sec-3 .right-side .content-group .heading .text-normal {
    font-size: 25px;
    line-height: 1.5;
    text-indent: 170px;
  }
  .sec-3 .right-side .content-group .desc {
    margin-bottom: 0;
  }
  .sec-3 .right-side .content-group .btn-box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
  }
}
@media (max-width: 440px) {
  .sec-3 .right-side .content-group .desc {
    line-height: 1.5;
  }
}

.sec-4 .bg-img {
  position: absolute;
  width: auto;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  left: 50%;
  top: 0;
  z-index: 0;
  transform: translateX(-50%);
  z-index: 1;
}
.sec-4 .content-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  row-gap: 15px;
  position: relative;
  z-index: 2;
}
.sec-4 .content-block {
  width: 90%;
  max-width: 1400px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.sec-4 h1 {
  margin-bottom: 32px;
}
.sec-4 .icon-cross {
  width: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 32px;
}
.sec-4 .package {
  width: 100%;
  height: 298px;
  background-image: url("../asset/images/sec-4/package.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.sec-4 .package h2 {
  opacity: 1;
}
.sec-4 .package .price-box {
  opacity: 0;
  display: none;
  width: 90%;
  max-width: 890px;
  height: 182px;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.2);
  transition: opacity 0.3s ease;
}
.sec-4 .package:hover h2 {
  display: none;
  opacity: 0;
}
.sec-4 .package:hover .price-box {
  display: flex;
  opacity: 1;
}
@media (max-width: 1024px) {
  .sec-4 .package {
    height: 250px;
  }
  .sec-4 .package .price-box {
    height: 140px;
  }
}
@media (max-width: 768px) {
  .sec-4 .content-block {
    width: 100%;
    max-width: 670px;
  }
  .sec-4 h1 {
    margin-bottom: 20px;
  }
  .sec-4 .icon-cross {
    width: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 440px) {
  .sec-4 .fs-1 {
    font-size: 25px !important;
  }
  .sec-4 .fs-4 {
    font-size: 16px !important;
  }
}

.sec-5 {
  background-image: url("../asset/images/sec-5/bg.png");
  background-size: cover;
  background-position: left;
}
.sec-5 .content-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-bottom: 25px;
}
.sec-5 .hero-container {
  display: flex;
  justify-content: center;
  flex-grow: 1;
  margin-top: 5vw;
  padding: 0 15px;
}
.sec-5 .content-block {
  background-color: rgba(255, 255, 255, 0.4);
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
}
.sec-5 .hero-block {
  width: 400px;
}
.sec-5 .hero-block .title {
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 80px;
  margin-bottom: 64px;
}
.sec-5 .hero-block .title h1 {
  font-weight: 400;
  font-size: 85px;
  line-height: 50px;
  margin-left: -80px;
}
.sec-5 .hero-block .title h2 {
  font-weight: 500;
  font-size: 35px;
  line-height: 70px;
  text-transform: uppercase;
}
.sec-5 .hero-block .desc {
  font-size: 25px;
  font-weight: 500;
  color: #3F3F3F;
  line-height: 45px;
}
.sec-5 .collapse-container {
  width: 1187px;
  height: 100%;
}
.sec-5 .collapse-block {
  width: 100%;
  height: 100%;
}
@media (max-width: 1024px) {
  .sec-5 .hero-container {
    margin-top: 0;
    margin-bottom: 20px;
  }
  .sec-5 .content-block {
    flex-direction: column;
  }
  .sec-5 .collapse-container {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .sec-5 .hero-block .title {
    margin-bottom: 20px;
  }
  .sec-5 .hero-block .title h1 {
    font-size: 45px;
    margin-left: -50px;
  }
  .sec-5 .hero-block .desc {
    font-size: 20px;
    line-height: 1.5;
  }
}
@media (max-width: 440px) {
  .sec-5 .hero-block .title {
    padding-left: 0;
    margin: 0 auto;
  }
  .sec-5 .hero-block .title h1 {
    font-size: 35px;
  }
  .sec-5 .hero-block .title h2 {
    margin-top: -20px;
    font-size: 25px;
  }
  .sec-5 .hero-block .desc {
    font-size: 16px;
  }
}

.sec-6 {
  background-image: url("../asset/images/sec-6/bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.sec-6 .content-flex {
  display: flex;
  justify-content: space-between;
}
.sec-6 .content-flex .content-img {
  width: 100%;
  max-width: 40%;
  height: auto;
}
.sec-6 .content-flex .content-img img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec-6 .content-flex .content-details {
  padding: 100px 100px 0;
  width: 100%;
}
.sec-6 .content-flex .content-details .title {
  display: flex;
  margin-bottom: 50px;
}
.sec-6 .content-flex .content-details .title h1 {
  font-weight: 600;
  font-size: 36px;
  text-transform: uppercase;
}
.sec-6 .content-flex .content-details .title .text-custom {
  color: #2199af;
  font-weight: 400;
  font-size: 50px;
  line-height: 50px;
}
@media screen and (max-width: 1284px) {
  .sec-6 .content-flex .content-details {
    padding: 35px 45px 0;
  }
  .sec-6 .content-flex .content-details .title {
    margin-bottom: 30px;
  }
  .sec-6 .content-flex .content-details .title h1 {
    font-size: 28px;
    margin-right: 10px;
  }
  .sec-6 .content-flex .content-details .title .text-custom {
    font-size: 35px;
    line-height: 35px;
  }
}
@media screen and (max-width: 1284px) {
  .sec-6 .content-flex {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .sec-6 .content-flex .content-img {
    max-width: 100%;
    margin-bottom: 30px;
    height: 400px;
  }
  .sec-6 .content-flex .content-details {
    width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .sec-6 .content-flex .content-details {
    padding: 10px 20px;
  }
  .sec-6 .content-flex .content-details .title {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .sec-6 .content-flex .content-details .title h1 {
    font-size: 24px;
    margin-right: 5px;
  }
  .sec-6 .content-flex .content-details .title .text-custom {
    font-size: 30px;
    line-height: 30px;
  }
  .sec-6 .content-flex .content-img {
    height: 200px;
  }
}

.sec-7 {
  background: linear-gradient(180deg, rgba(250, 251, 253, 0.1) 0%, #fafbfd 27.86%);
}
.sec-7 .content-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sec-7 .content-flex .content-img {
  width: 100%;
  max-width: 40%;
  max-height: 1000px;
  height: auto;
}
.sec-7 .content-flex .content-img img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.sec-7 .content-flex .content-details {
  width: 100%;
  padding: 0 100px;
}
.sec-7 .content-flex .content-details .title {
  display: flex;
  margin-bottom: 50px;
}
.sec-7 .content-flex .content-details .title h1 {
  font-weight: 600;
  font-size: 36px;
  text-transform: uppercase;
}
.sec-7 .content-flex .content-details .title .text-custom {
  color: #2199af;
  font-weight: 400;
  font-size: 50px;
  line-height: 50px;
}
@media screen and (max-width: 1284px) {
  .sec-7 .content-flex .content-details {
    padding: 35px 45px 0;
  }
}
@media screen and (max-width: 784px) {
  .sec-7 .content-flex {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }
  .sec-7 .content-flex .content-img {
    max-width: 100%;
    margin-bottom: 30px;
    height: 400px;
  }
}
@media screen and (max-width: 575px) {
  .sec-7 .content-flex .content-details {
    padding: 10px 20px;
  }
  .sec-7 .content-flex .content-details .title {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .sec-7 .content-flex .content-details .title h1 {
    font-size: 24px;
    margin-right: 5px;
  }
  .sec-7 .content-flex .content-details .title .text-custom {
    font-size: 30px;
    line-height: 30px;
  }
  .sec-7 .content-flex .content-img {
    height: 200px;
  }
}

.sec-8 .content-container {
  width: 100%;
  min-height: 500px;
  background-image: url("../asset/images/sec-8/bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-top: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.sec-8 .content-block {
  width: 90%;
  max-width: 1113px;
  padding: 100px 0;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.2);
}

.sec-9 .content-container {
  width: 100%;
  height: 100%;
  min-height: -moz-fit-content;
  min-height: fit-content;
  position: relative;
  display: flex;
}
.sec-9 .bg {
  width: 50%;
  height: 90%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.sec-9 .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec-9 .backdrop {
  width: 50%;
  min-width: 1004px;
  height: 80%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.sec-9 .backdrop img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec-9 .content-block {
  position: relative;
  z-index: 3;
  margin: auto;
  padding: 20px;
}
.sec-9 .content-block .hero-img {
  width: 100%;
  max-width: 1040px;
}
.sec-9 .content-block .hero-img img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.sec-9 .content-block .text-block {
  width: 100%;
  max-width: 575px;
  line-height: 45px;
}
@media (max-width: 991px) {
  .sec-9 .bg {
    width: 100%;
    height: 100%;
  }
  .sec-9 .content-block .hero-img {
    margin: auto;
    max-width: 550px;
  }
  .sec-9 .content-block .text-block {
    margin-top: 25px;
    line-height: 1.5;
  }
}
@media (max-height: 885px) {
  .sec-9 .bg {
    height: 100%;
  }
}
@media (max-width: 440px) {
  .sec-9 .fs-4 {
    font-size: 16px !important;
  }
  .sec-9 .content-block {
    margin: 0;
  }
}

.sec-10 hr {
  border: 0;
  height: 1px;
  background: #c5c5c5;
  margin: 14px 0;
}
.sec-10 .main-sec-10 {
  background-image: url("../asset/images/sec-10/bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 500px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.sec-10 .main-sec-10 a {
  align-self: flex-end;
}
.sec-10 .main-sec-10 .content-sec-10 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 5px;
  -webkit-backdrop-filter: blur(11px);
          backdrop-filter: blur(11px);
  margin-bottom: 110px;
}
.sec-10 .main-sec-10 .content-sec-10 .content-img {
  width: 100%;
  max-width: 440px;
  height: auto;
  margin-right: 80px;
  position: relative;
}
.sec-10 .main-sec-10 .content-sec-10 .content-img img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec-10 .main-sec-10 .content-sec-10 .content-img .add-text {
  position: absolute;
  top: 15%;
  left: 30%;
  transform: translate(-30%, -15%);
  color: #ffffff;
  padding-left: 10px;
}
.sec-10 .main-sec-10 .content-sec-10 .content-img .add-text h3 {
  font-weight: 500;
  font-size: 40px;
  line-height: 40px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.sec-10 .main-sec-10 .content-sec-10 .content-img .add-text h1 {
  font-weight: 700;
  font-size: 75px;
  line-height: 70px;
  max-width: 260px;
  margin-bottom: 20px;
}
.sec-10 .main-sec-10 .content-sec-10 .content-img .add-text .font-great-vibes {
  font-weight: 400;
  font-size: 70px;
  line-height: 70px;
}
.sec-10 .main-sec-10 .content-sec-10 .content-details {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
}
.sec-10 .main-sec-10 .content-sec-10 .content-details .list-text-line {
  flex: 1;
  min-width: 400px;
}
.sec-10 .main-sec-10 .content-sec-10 .content-details .title {
  display: flex;
  margin-bottom: 50px;
}
.sec-10 .main-sec-10 .content-sec-10 .content-details .title h1 {
  font-weight: 600;
  font-size: 36px;
  text-transform: uppercase;
}
.sec-10 .main-sec-10 .content-sec-10 .content-details .title .text-custom {
  color: #2199af;
  font-weight: 400;
  font-size: 50px;
  line-height: 50px;
}
@media screen and (max-width: 1393px) {
  .sec-10 .main-sec-10 .content-sec-10 {
    align-items: flex-start;
  }
}
@media screen and (max-width: 960px) {
  .sec-10 .main-sec-10 .content-sec-10 {
    flex-direction: column;
  }
  .sec-10 .main-sec-10 .content-sec-10 .content-img {
    width: 100%;
    max-width: 100%;
    height: 400px;
    overflow: hidden;
    margin-bottom: 30px;
  }
  .sec-10 .main-sec-10 .content-sec-10 .content-img img {
    width: 100%;
    max-height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .sec-10 .main-sec-10 .content-sec-10 .content-img .add-text {
    top: 20px;
    left: 20px;
    transform: unset;
  }
}
@media screen and (max-width: 576px) {
  .sec-10 .main-sec-10 .content-sec-10 .content-img .add-text h3 {
    font-size: 30px;
    line-height: 30px;
  }
  .sec-10 .main-sec-10 .content-sec-10 .content-img .add-text h1 {
    font-size: 50px;
    line-height: 50px;
  }
  .sec-10 .main-sec-10 .content-sec-10 .content-img .add-text .font-great-vibes {
    font-size: 50px;
    line-height: 50px;
  }
  .sec-10 .main-sec-10 .content-sec-10 .content-details {
    flex-direction: column;
  }
  .sec-10 .main-sec-10 .content-sec-10 .content-details .list-text-line {
    flex: 1;
    min-width: unset;
  }
  .sec-10 .main-sec-10 .content-sec-10 .content-details .list-text-line .text {
    font-size: 16px;
    line-height: 16px;
  }
}

.sec-11 .content-container {
  width: 100%;
  height: 100%;
  display: flex;
  padding: 15px 0;
}
.sec-11 .scroll-wrapper {
  overflow: hidden;
  width: 100%;
}
.sec-11 .content-block {
  width: -moz-max-content;
  width: max-content;
  height: 100%;
  margin: auto;
  overflow-x: auto;
  scroll-behavior: smooth;
  display: flex;
  -moz-column-gap: 26px;
       column-gap: 26px;
  animation: scroll-left 30s linear infinite;
}
.sec-11 .content-block::-webkit-scrollbar {
  display: none;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.sec-11 .items-group {
  flex-shrink: 0;
  width: 33.3333333333%;
  max-width: 596px;
  min-width: 550px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 26px;
}
.sec-11 .items-group .item {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.sec-11 .items-group .item .text-block {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  text-align: center;
}
.sec-11 .items-group .item .text-block p {
  line-height: 25px;
}
.sec-11 .items-group .item-1 {
  background-color: rgba(3, 161, 0, 0.15);
}
.sec-11 .items-group .item-2 {
  background-color: rgba(241, 249, 0, 0.15);
}
.sec-11 .items-group .item-3 {
  background-color: rgba(255, 21, 0, 0.15);
}
.sec-11 .group-1 .item-1 {
  grid-area: 1/1/2/2;
}
.sec-11 .group-1 .item-2 {
  grid-area: 1/2/2/3;
}
.sec-11 .group-1 .item-3 {
  grid-area: 2/1/3/3;
}
.sec-11 .group-2 .item-1 {
  grid-area: 1/1/2/3;
}
.sec-11 .group-2 .item-2 {
  grid-area: 2/1/3/2;
}
.sec-11 .group-2 .item-3 {
  grid-area: 2/2/3/3;
}
@media (max-width: 1440px) {
  .sec-11 .content-block {
    -moz-column-gap: 18px;
         column-gap: 18px;
  }
  .sec-11 .items-group {
    gap: 18px;
  }
}

.sec-12 {
  background-image: url("../asset/images/sec-12/bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.sec-12 .content-horizontal {
  background: #ffffff;
  border: 1px solid #a4a4a4;
  padding: 10px;
  display: flex;
  background-image: url("../asset/images/sec-12/bg-horizontal.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow-y: hidden;
  overflow-x: scroll;
}
.sec-12 .content-horizontal::-webkit-scrollbar {
  display: none;
}
.sec-12 .content-horizontal .content-img {
  min-width: 400px;
  height: auto;
  margin-right: 10px;
  background-color: #ffffff;
  padding: 10px;
}
@media screen and (max-width: 948px) {
  .sec-12 .content-horizontal .content-img {
    min-width: 310px;
  }
}
.sec-12 .content-horizontal .content-img img {
  height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec-12 .content-horizontal .content-card {
  display: flex;
  flex-grow: 1;
  width: 100%;
  height: auto;
  padding: 10px 70px;
}
.sec-12 .content-horizontal .content-card .card-day {
  height: 100%;
  min-width: 410px;
  margin-right: 30px;
  display: flex;
  flex-direction: column;
}
.sec-12 .content-horizontal .content-card .card-day .day {
  padding-left: 15px;
  font-weight: 700;
  font-size: 60px;
  text-transform: uppercase;
  color: #90c0c0;
  margin-bottom: 20px;
}
.sec-12 .content-horizontal .content-card .card-day .card-day-body {
  padding: 0 20px;
  background: #ffffff;
  height: 100%;
}
.sec-12 .content-horizontal .content-card .card-day .card-day-body .title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: #ffffff;
  width: 100%;
  min-height: 35px;
  background-color: #90c0c0;
  text-align: center;
}
.sec-12 .content-horizontal .content-card .card-day .card-day-body .title:first-child {
  top: -20px;
}
.sec-12 .content-horizontal .content-card .card-day .card-day-body .text {
  font-size: 16px;
  font-weight: 300;
  color: #1e1e1e;
}
.sec-12 .content-horizontal .content-card .card-day .card-day-body .text hr {
  margin: 3px 0;
  background-color: #bebebe;
}
.sec-12 .content-horizontal .content-card .card-day .card-day-body .text.first-child {
  margin-top: -10px;
  min-height: 200px;
}
.sec-12 .content-horizontal .content-card .card-day:nth-child(2) .day {
  color: #7eafae;
}
.sec-12 .content-horizontal .content-card .card-day:nth-child(2) .title {
  background-color: #7eafae;
}
.sec-12 .content-horizontal .content-card .card-day:nth-child(3) .day {
  color: #5b8988;
}
.sec-12 .content-horizontal .content-card .card-day:nth-child(3) .title {
  background-color: #5b8988;
}
.sec-12 .content-horizontal .content-card .card-day:nth-child(4) .day {
  color: #396665;
}
.sec-12 .content-horizontal .content-card .card-day:nth-child(4) .title {
  background-color: #396665;
}
.sec-12 .content-horizontal .content-card .card-day:nth-child(5) .day {
  color: #254f4e;
}
.sec-12 .content-horizontal .content-card .card-day:nth-child(5) .title {
  background-color: #254f4e;
}
.sec-12 .content-horizontal .content-card .card-day:nth-child(6) .day {
  color: #efac9a;
}
.sec-12 .content-horizontal .content-card .card-day:nth-child(6) .title {
  background-color: #efac9a;
}
.sec-12 .content-horizontal .content-card .card-day:nth-child(7) .day {
  color: #d69a8a;
}
.sec-12 .content-horizontal .content-card .card-day:nth-child(7) .title {
  background-color: #d69a8a;
}
.sec-12 .content-horizontal .content-card .card-day:nth-child(8) .day {
  color: #ce9482;
}
.sec-12 .content-horizontal .content-card .card-day:nth-child(8) .title {
  background-color: #ce9482;
}
.sec-12 .content-horizontal .content-card .card-day:nth-child(9) .day {
  color: #a56b5b;
}
.sec-12 .content-horizontal .content-card .card-day:nth-child(9) .title {
  background-color: #a56b5b;
}
.sec-12 .content-horizontal .content-card .card-day:nth-child(10) .day {
  color: #77544b;
}
.sec-12 .content-horizontal .content-card .card-day:nth-child(10) .title {
  background-color: #77544b;
}
@media screen and (max-width: 600px) {
  .sec-12 .content-horizontal .content-card .card-day {
    min-width: 310px;
  }
}
@media screen and (max-width: 450px) {
  .sec-12 .content-horizontal .content-card {
    padding: 10px;
  }
  .sec-12 .content-horizontal .content-card .card-day .day {
    font-size: 30px;
  }
}

.sec-13 {
  position: relative;
  z-index: 1;
}
.sec-13::after {
  content: "";
  position: absolute;
  top: 50px;
  right: 0;
  width: 40%;
  height: 100%;
  background-image: url("../asset/images/sec-13/mock-4.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.sec-13 .title-brown {
  font-weight: 500;
  font-size: 50px;
  line-height: 50px;
  text-transform: uppercase;
}
@media (max-width: 440px) {
  .sec-13 .title-brown {
    font-size: 35px;
    line-height: 40px;
  }
}

.sec-14 {
  background-image: url("../asset/images/sec-14/bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.sec-14 .content-container {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.sec-14 h1 {
  padding-left: 100px;
  margin-bottom: 60px;
}
.sec-14 .content-block {
  height: -moz-fit-content;
  height: fit-content;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 25px 70px;
}
@media (max-width: 768px) {
  .sec-14 h1 {
    padding-left: 20px;
    margin-bottom: 15px;
  }
  .sec-14 .content-block {
    padding: 25px 20px;
  }
}

.sec-15 {
  background-image: url("../asset/images/sec-15/bg.jpg");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: 60% 90%;
}
.sec-15 .content-container {
  width: 100%;
  height: 100%;
  display: flex;
}
.sec-15 .content-block {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sec-15 .title-block {
  margin-bottom: 96px;
}
.sec-15 .card-block {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec-15 .card-block .card-container {
  width: 90%;
  max-width: 1342px;
  height: 600px;
  margin: 0 auto;
  overflow-y: scroll;
  position: relative;
}
.sec-15 .card-block .card-container::-webkit-scrollbar {
  display: none;
}
.sec-15 .card-block .card-container {
  -ms-overflow-style: none;
}
.sec-15 .card-block .card-group {
  height: calc(var(--cards) * var(--cardHeight));
  position: relative;
  min-height: calc(var(--cards) * var(--cardHeight) + 250px);
}
.sec-15 .card-block #cards {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(var(--cards), var(--cardHeight));
  gap: var(--cardMargin);
  padding-bottom: calc(var(--cards) * var(--cardTopPadding));
  margin-bottom: var(--cardMargin);
}
.sec-15 .card-block .card-item {
  position: sticky;
  top: 0;
  padding-top: calc(var(--index) * var(--cardTopPadding));
}
.sec-15 .card-block .card-item#card1 {
  --index: 1;
}
.sec-15 .card-block .card-item#card2 {
  --index: 2;
}
.sec-15 .card-block .card-item#card3 {
  --index: 3;
}
.sec-15 .card-block .card-body {
  box-sizing: border-box;
  height: var(--cardHeight);
  transition: all 0.5s;
  padding: 5px;
  background: #FFFFFF;
  box-shadow: 3px 4px 16px 0px rgba(0, 0, 0, 0.15);
}
@media (max-width: 1440px) {
  .sec-15 {
    background-size: auto 90%;
  }
}
@media (max-width: 767px) {
  .sec-15 .content-container {
    height: -moz-fit-content;
    height: fit-content;
  }
  .sec-15 .title-block {
    margin-bottom: 25px;
  }
  .sec-15 .card-block #cards {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    margin: 0;
    padding: 0;
  }
  .sec-15 .card-block #cards::-webkit-scrollbar {
    display: none;
  }
  .sec-15 .card-block .card-container {
    overflow-y: unset;
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
  }
  .sec-15 .card-block .card-item {
    flex-shrink: 0;
    position: relative;
    padding: 0;
    width: 100%;
    min-width: 350px;
  }
}
@media (max-width: 440px) {
  .sec-15 .title-block {
    margin-bottom: 15px;
  }
  .sec-15 .card-block .card-body h1 {
    font-size: 22px !important;
  }
  .sec-15 .card-block .card-body p,
  .sec-15 .card-block .card-body li {
    font-size: 16px !important;
  }
}

.sec-16 {
  background-image: url("../asset/images/sec-16/bg-1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.sec-16 .content-container {
  height: 100%;
  display: flex;
}
.sec-16 .content-block {
  background-color: #bb6060;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 90%;
  margin: auto;
  background-image: url("../asset/images/sec-16/bg-2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: space-around;
  gap: 25px;
  flex-wrap: wrap;
  padding: 50px 70px;
}
.sec-16 .title-blog {
  margin-top: 89px;
}
.sec-16 .booking-form {
  width: 80%;
  max-width: 720px;
  height: -moz-fit-content;
  height: fit-content;
  background-color: rgba(217, 217, 217, 0.4);
  padding: 60px 80px 70px 80px;
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
}
.sec-16 .booking-form .btn-pre-booking {
  width: 80%;
  max-width: 430px;
  box-shadow: 5px 8px 11px rgba(0, 0, 0, 0.2);
  justify-self: center;
}
@media (max-width: 1440px) {
  .sec-16 .booking-form {
    padding: 30px 40px;
  }
}
@media (max-width: 1200px) {
  .sec-16 .title-blog {
    margin-top: auto;
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media (max-width: 768px) {
  .sec-16 .content-block {
    min-height: 100%;
    padding: 20px;
  }
  .sec-16 .booking-form {
    width: 100%;
    max-width: 550px;
    padding: 15px 25px;
  }
}

.sec-17 .map {
  width: 100%;
  height: 50%;
  min-height: 335px;
  padding: 12px 0;
}
.sec-17 .map iframe {
  width: 100%;
  height: 100%;
}
.sec-17 .content {
  width: 100%;
  height: 50%;
  min-height: 300px;
  display: flex;
  background-image: url("../asset/images/sec-17/bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.sec-17 .card-location-group {
  display: flex;
  width: calc(100% - 20px);
  align-items: center;
  justify-content: center;
  gap: 28px;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -40%);
}
.sec-17 .card-location-group .card-location {
  width: calc(50% - 14px);
  max-width: 820px;
  padding: 5px;
  aspect-ratio: 820/212;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 12px 8px 20px rgba(0, 0, 0, 0.15);
  display: flex;
}
.sec-17 .card-location-group .card-location .img-block {
  height: 100%;
  aspect-ratio: 1/1;
  border-radius: 17px;
  overflow: hidden;
  flex-shrink: 0;
}
.sec-17 .card-location-group .card-location .text-block {
  flex-grow: 1;
  padding: 25px 64px 25px 45px;
}
.sec-17 .card-location-group .card-location .text-block .title {
  font-size: clamp(14px, 1.3vw, 25px);
  margin-bottom: 3%;
}
.sec-17 .card-location-group .card-location .text-block .desc {
  font-size: clamp(12px, 0.94vw, 18px);
  margin-bottom: 3%;
}
.sec-17 .card-location-group .card-location .text-block .tel {
  font-size: clamp(14px, 1.3vw, 25px);
}
.sec-17 .footer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 80px;
  background-color: rgba(255, 255, 255, 0.4);
  position: absolute;
  left: 0;
  bottom: 0;
}
.sec-17 .btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 1440px) {
  .sec-17 .card-location-group {
    gap: 14px;
  }
  .sec-17 .card-location-group .card-location .text-block {
    padding: 15px 44px 15px 25px;
  }
  .sec-17 .footer {
    padding: 20px;
  }
}
@media (max-width: 1200px) {
  .sec-17 .card-location-group {
    top: 40px;
    flex-direction: column;
  }
  .sec-17 .card-location-group .card-location {
    width: 100%;
    max-width: 575px;
    height: 130px;
  }
  .sec-17 .card-location-group .card-location .text-block {
    padding: 8px 20px 8px 20px;
  }
  .sec-17 .card-location-group .card-location .text-block .title {
    margin-bottom: 8px;
  }
  .sec-17 .card-location-group .card-location .text-block .desc {
    margin-bottom: 5px;
  }
}
@media (max-width: 768px) {
  .sec-17 .nav-logo {
    width: 200px;
  }
  .sec-17 .content {
    min-height: 350px;
  }
  .sec-17 .footer {
    flex-wrap: wrap;
    row-gap: 15px;
  }
}
@media (max-width: 455px) {
  .sec-17 .card-location-group {
    top: 80px;
  }
  .sec-17 .card-location-group .card-location {
    aspect-ratio: unset;
    height: -moz-fit-content;
    height: fit-content;
    border-radius: 10px;
  }
  .sec-17 .card-location-group .card-location .img-block {
    height: 90px;
    border-radius: 8px;
  }
}
@media (max-width: 425px) {
  .sec-17 .content {
    min-height: 450px;
  }
}

.btn-theme {
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
  color: #fefefe;
  text-wrap: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  box-shadow: 0 4px 7.8px rgba(0, 0, 0, 0.16);
  transition: all 0.3s ease;
  cursor: pointer;
  border: unset;
  outline: unset;
}
.btn-theme .icon {
  -o-object-fit: contain;
     object-fit: contain;
}
.btn-theme.btn-sm {
  font-size: 20px;
  height: 42px;
  padding: 0 15px;
}
.btn-theme.btn-sm .icon {
  width: 16px;
}
.btn-theme.btn-lg {
  font-size: 25px;
  height: 64px;
  padding: 0 33px;
}
.btn-theme.btn-lg .icon {
  width: 22px;
}
.btn-theme.btn-blue {
  background-color: #115091;
}
.btn-theme.btn-blue:hover {
  background-color: #0e457c;
}
.btn-theme.btn-orange {
  background-color: #f36f21;
}
.btn-theme.btn-orange:hover {
  background-color: #ec6212;
}
@media (max-width: 1440px) {
  .btn-theme.btn-lg {
    font-size: 22px;
  }
}
@media (max-width: 1024px) {
  .btn-theme.btn-lg {
    font-size: 20px;
    height: 50px;
  }
}
@media (max-width: 768px) {
  .btn-theme.btn-lg {
    font-size: 16px;
    padding: 0 14px;
  }
}

.form-input {
  display: flex;
  flex-direction: column;
}
.form-input label {
  color: #FFFFFF;
}
.form-input input,
.form-input textarea {
  color: #FFFFFF;
  width: 100%;
  padding: 14px 28px;
  background-color: rgba(217, 217, 217, 0.4);
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
  outline: unset;
  border: unset;
}
.form-input input {
  height: 64px;
}
@media (max-width: 1440px) {
  .form-input input {
    height: 48px;
  }
}
@media (max-width: 768px) {
  .form-input input,
  .form-input textarea {
    padding: 10px 8px;
  }
}

.accordion-theme {
  border-top: 1px solid #C5C5C5;
  border-right: 1px solid #C5C5C5;
  border-left: 1px solid #C5C5C5;
}
.accordion-theme .accordion-item {
  border: unset;
}
.accordion-theme .accordion-item .accordion-button {
  font-size: 25px;
  font-weight: 500;
  color: #115091;
  text-transform: uppercase;
  background-color: #F8F8F8;
  padding: 25px 40px 25px 60px;
  box-shadow: unset;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.accordion-theme .accordion-item .accordion-button::after {
  display: none;
}
.accordion-theme .accordion-item .accordion-button .icon-plus {
  width: 34px;
  height: 34px;
  transform: rotateZ(0deg);
  transition: all 0.3s ease;
}
.accordion-theme .accordion-item .accordion-button .icon-plus.rotated {
  transform: rotateZ(45deg);
}
.accordion-theme .accordion-item .accordion-button .line {
  width: 100%;
  height: 1px;
  border-top: 1px solid #C5C5C5;
  position: absolute;
  right: 0;
  bottom: 0;
  transition: all 0.3s linear;
}
.accordion-theme .accordion-item .accordion-button .line.active {
  width: calc(100% - 60px);
}
.accordion-theme .accordion-item .accordion-body {
  padding: 35px 80px 35px 60px;
  background-color: #F8F8F8;
  font-size: 20px;
  color: #1E1E1E;
  line-height: 35px;
  border-bottom: 1px solid #C5C5C5;
  overflow: auto;
}
.accordion-theme.accordionRegen {
  border-bottom: 1px solid #C5C5C5;
}
.accordion-theme.accordionRegen .accordion-item {
  border-bottom: 1px solid #C5C5C5;
}
.accordion-theme.accordionRegen .accordion-item .accordion-button {
  color: #86B0C2;
  text-transform: unset;
}
.accordion-theme.accordionRegen .accordion-item .accordion-body {
  border-bottom: 0;
  padding: 0;
}
.accordion-theme.accordionRegen .accordion-item:last-child {
  border-bottom: 0;
}
@media (max-width: 1024px) {
  .accordion-theme .accordion-item .accordion-button {
    font-size: 20px;
  }
  .accordion-theme .accordion-item .accordion-button .icon-plus {
    width: 24px;
    height: 24px;
  }
  .accordion-theme .accordion-item .accordion-body {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .accordion-theme .accordion-item .accordion-button {
    padding: 20px;
  }
  .accordion-theme .accordion-item .accordion-button .line.active {
    width: calc(100% - 20px);
  }
  .accordion-theme .accordion-item .accordion-body {
    padding: 20px;
  }
}
@media (max-width: 440px) {
  .accordion-theme .accordion-item .accordion-button {
    font-size: 18px;
    padding: 16px 20px;
  }
  .accordion-theme .accordion-item .accordion-button .icon-plus {
    width: 20px;
    height: 20px;
  }
  .accordion-theme .accordion-item .accordion-body {
    font-size: 16px;
    line-height: 30px;
  }
}

.table-theme thead th {
  background-color: #E4EDF2;
  color: #86B0C2;
  font-size: 20px;
  font-weight: 600;
}
.table-theme thead th:first-child {
  padding-left: 100px;
}
.table-theme tbody tr td {
  font-size: 20px;
  font-weight: 300;
  color: #1E1E1E;
  border-bottom: 0;
}
.table-theme tbody tr td:first-child {
  padding-left: 100px;
}
.table-theme tbody tr:nth-of-type(odd) > * {
  background-color: #FBFCFC;
}
.table-theme tbody tr:nth-of-type(even) > * {
  background-color: #F2F5F6;
}
@media (max-width: 768px) {
  .table-theme thead th {
    font-size: 18px;
  }
  .table-theme thead th:first-child {
    padding-left: 20px;
  }
  .table-theme tbody tr td {
    font-size: 16px;
  }
  .table-theme tbody tr td:first-child {
    padding-left: 20px;
  }
}

.list-text-line {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.list-text-line .item-text {
  position: relative;
  width: 100%;
  padding-left: 40px;
  padding-bottom: 40px;
}
.list-text-line .item-text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 12%;
  width: 10px;
  height: 10px;
  background-color: #8ac6d0;
  border-radius: 50%;
  transform: translateY(-12%);
}
.list-text-line .item-text:last-child {
  padding-bottom: 0;
}
.list-text-line .item-text:last-child::after {
  top: 5px;
  transform: unset;
}
.list-text-line .line {
  position: absolute;
  background-color: #8ac6d0;
  width: 1px;
  height: 100%;
  left: 4px;
  top: 15px;
}
.list-text-line .text {
  font-weight: 600;
  font-size: 25px;
  line-height: 25px;
  color: #4e4c3f;
  text-transform: uppercase;
}
@media screen and (max-width: 575px) {
  .list-text-line .item-text {
    padding-bottom: 20px;
  }
  .list-text-line .item-text .text {
    font-size: 16px;
    line-height: 16px;
  }
  .list-text-line .item-text .line {
    top: 5px;
  }
}

.card-blue {
  background: rgba(138, 198, 208, 0.2);
  border-radius: 25px;
  padding: 35px;
  height: auto;
}
.card-blue.fix-margin {
  margin: 0 -35px;
}
.card-blue .text {
  font-size: 20px;
}

.banner-blue {
  min-height: 230px;
  background: linear-gradient(90deg, rgba(102, 165, 196, 0) 1%, #2c6f91 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner-blue .title {
  color: #194f90;
  padding-left: 80px;
}
.banner-blue .title h1 {
  font-weight: 400;
  font-size: 85px;
  line-height: 50px;
  margin-left: -80px;
}
.banner-blue .title h2 {
  font-weight: 600;
  font-size: 35px;
  line-height: 70px;
  text-transform: uppercase;
}
.banner-blue .line {
  width: 1px;
  height: 100px;
  background: #ffffff;
  margin: 0 30px;
}
.banner-blue .text {
  max-width: 702px;
  color: #ffffff;
  font-weight: 500;
  font-size: 30px;
  line-height: 35px;
}
@media (max-width: 1300px) {
  .banner-blue .title {
    padding-left: 20px;
  }
  .banner-blue .title h1 {
    font-size: 50px;
    line-height: 30px;
    margin-left: -20px;
  }
  .banner-blue .title h2 {
    font-size: 25px;
    line-height: 50px;
  }
  .banner-blue .text {
    font-size: 20px;
    line-height: 25px;
    max-width: 400px;
  }
}
@media (max-width: 765px) {
  .banner-blue .title {
    padding-left: 0;
  }
  .banner-blue .title h1 {
    font-size: 30px;
    line-height: 30px;
    margin-left: 0;
  }
  .banner-blue .title h2 {
    font-size: 20px;
    line-height: 30px;
  }
  .banner-blue .text {
    font-size: 18px;
    line-height: 25px;
    max-width: 300px;
  }
}
@media (max-width: 610px) {
  .banner-blue {
    background: linear-gradient(180deg, rgba(102, 165, 196, 0) 1%, #2c6f91 100%);
    padding: 20px 0;
    flex-direction: column;
  }
  .banner-blue .title {
    padding-left: 20px;
  }
  .banner-blue .title h1 {
    font-size: 50px;
    line-height: 30px;
    margin-left: -20px;
  }
  .banner-blue .title h2 {
    font-size: 25px;
    line-height: 50px;
  }
  .banner-blue .line {
    width: 80%;
    height: 1px;
    background: #ffffff;
  }
  .banner-blue .text {
    padding: 15px;
    max-width: 100%;
  }
}
@media (max-width: 440px) {
  .banner-blue .title {
    padding-left: 0;
  }
  .banner-blue .title h1 {
    font-size: 35px;
  }
  .banner-blue .title h2 {
    font-size: 25px;
  }
  .banner-blue .text {
    font-size: 16px;
  }
}

.card-pricing {
  background-color: #fdfefe;
  height: 100%;
}
.card-pricing .pricing-tilte {
  background-color: #4e4c3f;
  padding: 30px;
  color: #ffffff;
}
.card-pricing.brown {
  color: #77534b;
}
.card-pricing.brown .pricing-tilte {
  background-color: #77534b;
}
.card-pricing.brown hr {
  background-color: #77534b;
}
.card-pricing.brown .pricing-body .list-item .item::after {
  background-color: #77534b;
}
.card-pricing.green {
  color: #658886;
}
.card-pricing.green .pricing-tilte {
  background-color: #658886;
}
.card-pricing.green hr {
  background-color: #658886;
}
.card-pricing.green .pricing-body .list-item .item::after {
  background-color: #658886;
}
.card-pricing.blue {
  color: #88aeac;
}
.card-pricing.blue .pricing-tilte {
  background-color: #88aeac;
}
.card-pricing.blue hr {
  background-color: #88aeac;
}
.card-pricing.blue .pricing-body .list-item .item::after {
  background-color: #88aeac;
}
.card-pricing hr {
  margin: 20px -30px;
  opacity: 1;
}
.card-pricing .main-title {
  font-weight: 600;
  font-size: 24px;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.card-pricing .sub-title {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.card-pricing .sub-title p {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
}
.card-pricing .sub-title .font-great-vibes {
  font-weight: 400;
  font-size: 35px;
  line-height: 25px;
}
.card-pricing .price {
  font-weight: 800;
  font-size: 40px;
  text-align: right;
}
.card-pricing .pricing-body {
  padding: 20px 30px;
}
.card-pricing .pricing-body .title {
  font-weight: 600;
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.card-pricing .pricing-body .text {
  font-size: 14px;
  font-weight: 400;
}
.card-pricing .pricing-body .list-item .item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 400;
}
.card-pricing .pricing-body .list-item .item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  background-color: #4e4c3f;
  border-radius: 50%;
}
@media screen and (max-width: 575px) {
  .card-pricing .price {
    font-size: 30px;
  }
  .card-pricing .main-title {
    font-size: 22px;
  }
  .card-pricing .sub-title p {
    font-size: 12px;
    margin-right: 10px;
  }
  .card-pricing .sub-title .font-great-vibes {
    font-size: 25px;
    line-height: 25px;
  }
}

.title-blue {
  font-weight: 600;
  font-size: 50px;
  line-height: 50px;
  text-transform: uppercase;
  color: #71a0a8;
  padding-left: 100px;
  margin-bottom: 70px;
}
@media (max-width: 768px) {
  .title-blue {
    padding-left: 50px;
    margin-bottom: 20px;
    font-size: 35px;
  }
}
@media (max-width: 440px) {
  .title-blue {
    font-size: 35px;
  }
}