@media (max-width: 1440px) {
  body {
    font-size: 14px;
  }
}

main {
  overflow: hidden;
}

.main-menu {
  background: url("../images/bg-main.jpg") no-repeat center;
  background-size: cover;
  opacity: 0;
  pointer-events: none;
  transition: 0.6s all !important;
  @media (max-width: 1023px) {
    display: none;
  }
}
.main-menu.active {
  opacity: 1;
  pointer-events: unset;
  @media (max-width: 1023px) {
    display: flex;
  }
}
.main-menu a {
  color: #FFE6E0;
  position: relative;
}

.close-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 32px;
  right: 32px;
  z-index: 2;
  cursor: pointer;
  transition: 0.3s all !important;
  @media (max-width: 767px) {
    top: 16px;
    right: 16px;
    svg {
      width: 32px;
      height: auto;
    }
  }
}
.close-menu:hover {
  transform: scale(1.3);
}

.h-menu {
  @media (max-width: 1364px) {
    font-size: 16px;
  }
}

.h-menu a {
  display: inline-flex;
  min-width: 240px;
  align-items: center;
  justify-content: center;
}
.h-menu a:hover {
  background: #006A69;
}
.h-menu a:hover:after {
  background: url("../images/menu-right-2.png") no-repeat center;
  background-size: contain;
  transform: scale(2);
  left: 95%;
}
.h-menu a:hover:before {
  background: url("../images/menu-left-2.png") no-repeat center;
  background-size: contain;
  transform: scale(2);
  right: 95%;
}
.h-menu a:after {
  content: "";
  width: 14px;
  height: 14px;
  position: absolute;
  left: 0;
  top: calc(50% - 6px);
  z-index: 2;
  background: url("../images/menu-left-11.png") no-repeat center;
  background-size: contain;
  display: flex;
  align-items: center;
  pointer-events: none;
  transition: 0.4s all !important;
}
.h-menu a:before {
  content: "";
  width: 14px;
  height: 14px;
  position: absolute;
  right: 0;
  top: calc(50% - 6px);
  z-index: 2;
  background: url("../images/menu-right-1.png") no-repeat center;
  background-size: contain;
  display: flex;
  align-items: center;
  pointer-events: none;
  transition: 0.4s all !important;
}

.container {
  max-width: 1400px !important;
  padding: 0 15px;
  margin: 0 auto;
  width: 100% !important;
}
@media (max-width: 1600px) {
  .container {
    max-width: 1200px !important;
  }
}
@media (max-width: 1280px) {
  .container {
    padding: 0 60px;
  }
}
@media (max-width: 1023px) {
  .container {
    padding: 0 40px;
  }
}
@media (max-width: 767px) {
  .container {
    padding: 0 20px;
  }
}

.swiper {
  width: 100%;
  height: 100vh;
}

#fullpage .vertical-scrolling {
  overflow: hidden;
  height: 100vh;
}

.btn-main a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 300px;
  height: 48px;
  color: #fff;
  background: #FABEAF;
  padding: 0 20px;
  font-size: 14px;
  text-align: right;
  position: relative;
  margin-left: auto;
  @media (max-width: 575px) {
    max-width: 100%;
    display: inline-flex;
    gap: 16px;
    height: 40px;
    font-size: 13px;
  }
}
.btn-main a:after {
  content: "";
  width: 100%;
  height: 100%;
  background: #D57565;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0 0 0 20px;
  transition: 0.4s all !important;
}
.btn-main a svg, .btn-main a span {
  position: relative;
  z-index: 2;
}
.btn-main a:hover:after {
  border-radius: 0 0 0 80px;
}

.btn-link a {
  display: inline-flex;
  border: 1px solid #006A69;
  position: relative;
  height: 48px;
  align-items: center;
  justify-content: center;
  min-width: 228px;
  color: #006A69;
  background: #006A69;
}
.btn-link a span {
  background: #FFE6E0;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 12px 0;
  transition: 0.4s all !important;
}
.btn-link a:hover {
  color: #fff;
}
.btn-link a:hover span {
  background: #D57565;
  border-radius: 20px 0;
}

.desc p {
  margin-bottom: 16px !important;
}
.desc p:last-child {
  margin-bottom: 0 !important;
}

.section-2 {
  @media (max-width: 767px) {
    font-size: 12px;
  }
}

.section-2 .note ul li {
  position: relative;
  padding-right: 24px;
  border-right: 1px solid #D57565;
  @media (max-width: 767px) {
    padding-right: 20px;
  }
}

.section-4 {
  background: url(../images/luoi.png) #FABEAF no-repeat center;
  background-size: cover;
}

.gallery-section-4 {
  background: url("../images/bg-main.jpg") no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  opacity: 0;
  pointer-events: none;
  transition: 0.6s all !important;
  @media (max-width: 1200px) {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: auto;
    padding: 60px 0;
  }
  @media (max-width: 1023px) {
    top: 82px;
    height: calc(100vh - 82px);
    padding: 40px 0;
  }
  @media (max-width: 767px) {
    top: 53px;
    height: calc(100vh - 53px);
  }
  .inner-swiper {
    @media (max-width: 1200px) {
      height: auto;
      overflow: auto;
    }
  }
  .close-gallery {
    svg {
      @media (max-width: 1200px) {
        height: auto;
        width: 16px;
      }
    }
  }
}
.gallery-section-4.active {
  opacity: 1;
  pointer-events: unset;
}
.gallery-section-4 .swiper-pagination {
  position: relative;
  top: unset;
  bottom: 0;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-section-4 .swiper-pagination span {
  width: 8px;
  height: 8px;
  background: #FABEAF;
  margin: 0 6px;
  transition: 0.4s all !important;
  border-radius: 0;
  opacity: 1;
}
.gallery-section-4 .swiper-pagination span.swiper-pagination-bullet-active {
  width: 12px;
  height: 12px;
  background: #D57565;
}

.arrow-slide {
  width: auto;
  height: auto;
  margin: 0;
}
.arrow-slide:after {
  display: none;
}
.arrow-slide.swiper-button-prev {
  left: -80px;
}
.arrow-slide.swiper-button-next {
  right: -80px;
}

.form-main ul {
  list-style: disc;
  padding-left: 20px;
}
.form-main .txt_field {
  width: 100%;
  height: 60px;
  background: #fff;
  padding: 0 20px;
  border: 1px solid #D57565;
  color: #004A5A;
}
@media (max-width: 1600px) {
  .form-main .txt_field {
    height: 50px;
  }
}
@media (max-width: 1440px) {
  .form-main .txt_field {
    height: 44px;
  }
}
.form-main .txt_field::placeholder {
  color: #004A5A;
}
.form-main textarea {
  width: 100%;
  height: 90px;
  background: #fff;
  padding: 12px 20px;
  border: 1px solid #D57565;
  color: #004A5A;
}
@media (max-width: 1440px) {
  .form-main textarea {
    height: 60px;
  }
}
.form-main textarea::placeholder {
  color: #004A5A;
}
.form-main .accept-check input {
  position: absolute;
  opacity: 0;
  left: 0;
  top: 0;
}
.form-main .accept-check input:checked ~ label:after {
  transform: scale(1);
}
.form-main .accept-check label {
  font-size: 14px;
  position: relative;
  gap: 8px;
  cursor: pointer;
  padding-left: 24px;
  letter-spacing: -0.2px;
}
.form-main .accept-check label:before {
  content: "";
  width: 18px;
  height: 18px;
  background: #ffffff;
  border: 1px solid #004A5A;
  position: absolute;
  left: 0;
  top: 0;
}
.form-main .accept-check label:after {
  content: "";
  width: 8px;
  height: 8px;
  background: #004A5A;
  position: absolute;
  top: 5px;
  left: 5px;
  transform: scale(0);
  transition: 0.4s all !important;
}
.form-main .btn_contact {
  background: #FABEAF;
}
.form-main .btn_field {
  height: 50px;
  background: #D57565;
  width: 100%;
  padding: 0 24px;
  text-align: left;
  font-size: 14px;
  font-weight: bold;
  border-radius: 0 0 20px 0;
  transition: 0.3s all !important;
}
.form-main .btn_field:hover {
  border-radius: 0 0 32px 0;
}

.location a {
  min-width: 228px;
  font-size: 14px;
  border-radius: 0 0 16px 0;
}
.location a:hover {
  border-radius: 0 0 32px 0;
}

.social-section {
  border-top: 1px solid #D57565;
  border-bottom: 1px solid #D57565;
}

.tab-content .top {
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  @media (max-width: 767px) {
    height: auto;
    font-size: 10px;
  }
}
.tab-content .top svg {
  position: relative;
  top: 2px;
  @media (max-width: 767px) {
    top: 1px;
    width: 6px;
    height: auto;
  }
}
.tab-content .top .compass {
  pointer-events: none;
}
.tab-content .bot a {
  color: #006A69;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  border: 1px solid #006A69;
  background: #fff;
  position: relative;
  padding: 0 16px;
  font-size: 14px;
  @media (max-width: 1200px) {
    font-size: 10px;
    padding: 0 10px;
  }
}
@media (max-width: 1440px) {
  .tab-content .bot a {
    height: 42px;
  }
}
.tab-content .bot a:after {
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 20px 0;
  position: absolute;
  top: 0;
  left: 0;
}
.tab-content .bot a:hover {
  background: #006A69;
}
.tab-content .bot a.active {
  background: #006A69;
}
.tab-content .bot a.active:after {
  background: #FFE6E0;
}
.tab-content .bot a span {
  position: relative;
  z-index: 2;
}

.tab-content .bot {
  @media (max-width: 767px) {
    padding: 0 12px;
  }
  ul {
    @media (max-width: 767px) {
      flex-wrap: wrap;
    }
    li {
      @media (max-width: 767px) {
        max-width: 50%;
        flex: 0 0 50%;
      }
    }
  }
}

.item-gallery {
  cursor: pointer;
}
.item-gallery:hover .info {
  background: #D57565;
}
.item-gallery:hover .icon-abs img {
  width: 150%;
  height: 150%;
  opacity: 0;
}
.item-gallery.active .info {
  background: #D57565;
}
.item-gallery.active .avr img {
  top: -40px;
}
.item-gallery .avr img {
  position: relative;
  top: 0;
  transition: 0.4s all !important;
}
.item-gallery .info {
  background: rgba(213, 117, 101, 0.8);
  transition: 0.4s all !important;
  cursor: pointer;
}
.item-gallery .desc {
  display: none;
}
.item-gallery .icon-abs {
  pointer-events: none;
}
.item-gallery .icon-abs img {
  transition: 0.4s all !important;
  width: 40px;
  height: 40px;
  z-index: 2;
  position: absolute;
  bottom: 0;
  right: 0;
}

.head-tab {
  @media (max-width: 767px) {
    overflow: scroll;
  }
}

.head-tab ul {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  height: 79px;
  @media (max-width: 767px) {
    width: 620px;
    height: auto;
  }
}
.head-tab ul li {
  margin-left: -32px;
  transition: 0.3s all !important;
  width: 190px;
  position: relative;
  overflow: hidden;
  @media (max-width: 1023px) {
    font-size: 12px;
  }
}
.head-tab ul li:first-child {
  margin-left: 0 !important;
  z-index: 6;
}
.head-tab ul li:nth-child(2) {
  z-index: 5;
}
.head-tab ul li:nth-child(3) {
  z-index: 5;
}
.head-tab ul li:nth-child(4) {
  z-index: 3;
}
.head-tab ul li:nth-child(5) {
  z-index: 2;
}
.head-tab ul li:nth-child(6) {
  z-index: 1;
}
.head-tab ul li.active {
  width: 250px;
  margin-left: -60px;
}
.head-tab ul li.active .clc-tab-gallery svg path:nth-child(2) {
  fill: #FFE6E0;
}
.head-tab ul li.active .clc-tab-gallery span {
  font-size: 20px;
  font-weight: bold;
  left: -100%;
  @media (max-width: 1023px) {
    font-size: 16px;
  }
}
.head-tab ul li.active .clc-tab-gallery label {
  left: 0;
  font-size: 20px;
  font-weight: bold;
  @media (max-width: 1023px) {
    font-size: 16px;
  }
}

.clc-tab-gallery {
  cursor: pointer;
}
.clc-tab-gallery svg {
  transition: 0.3s all !important;
  width: 100%;
  height: auto;
}
.clc-tab-gallery svg path:nth-child(2) {
  fill: #F4C3BA;
}
.clc-tab-gallery span, .clc-tab-gallery label {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #006A69;
  text-transform: uppercase;
  font-weight: 500;
  transition: 0.4s all !important;
}
.clc-tab-gallery label {
  left: 100%;
}

.content-tab-gallery .tab-gallery {
  position: absolute;
  top: 0;
  left: 15%;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 0.4s all !important;
  transform: scale(0.95);
  pointer-events: none;
}
.content-tab-gallery .tab-gallery.active {
  opacity: 1;
  pointer-events: unset;
  transform: scale(1);
  position: relative;
  left: 0;
}

.animate-section-4 {
  background: url("../images/bg-main.jpg") no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  transition: 0.6s all !important;
}
.animate-section-4.active {
  opacity: 0;
  pointer-events: none;
}
.animate-section-4 .img-abs {
  object-fit: contain;
  transition: 0.65s all !important;
}
.animate-section-4 .img-abs.abs-1 {
  transform: scale(0.4);
  opacity: 0;
}
.animate-section-4 .img-abs.abs-1.step-1 {
  transform: scale(1.15);
}
.animate-section-4 .img-abs.abs-1.step-2 {
  transform: scale(0);
}
.animate-section-4 .img-abs.abs-1.step-3 {
  transform: scale(0);
}
.animate-section-4 .img-abs.abs-2 {
  transform: scale(0.4);
  opacity: 0;
}
.animate-section-4 .img-abs.abs-2.step-1 {
  transform: scale(1.15);
  opacity: 1;
}
.animate-section-4 .img-abs.abs-2.step-2 {
  transform: scale(0.9);
}
.animate-section-4 .img-abs.abs-2.step-3 {
  transform: scale(0);
}
.animate-section-4 .logo {
  opacity: 0;
  transition: 0.4s all !important;
}
.animate-section-4 .logo.active {
  opacity: 1;
}

.animate-scroll {
  transition: 1s all !important;
}

.animate-right {
  opacity: 0;
  top: -100px;
  right: -80%;
  @media (max-width: 1200px) {
    opacity: 1;
    top: 0;
    right: 0;
  }
}

.animate-left {
  opacity: 0;
  top: -100px;
  left: -60%;
  @media (max-width: 1200px) {
    opacity: 1;
    top: 0;
    left: 0;
  }
}

.swiper-slide-active .img-abs.abs-1 {
  opacity: 1;
  transform: scale(1.3);
}
.swiper-slide-active .img-abs.abs-2 {
  opacity: 0.4;
  transform: scale(1.3);
}
.swiper-slide-active .animate-scroll {
  opacity: 1;
}
.swiper-slide-active .animate-right {
  top: 0;
  right: 0;
}
.swiper-slide-active .animate-left {
  top: 0;
  left: 0;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.item-ground {
  @media (max-width: 1023px) {
    flex-wrap: wrap;
  }
}

.item-ground .avarta {
  height: 44vh;
  display: flex;
  align-items: center;
  justify-content: center;
  @media (max-width: 1200px) {
    height: 26vh;
  }
  @media (max-width: 1023px) {
    margin-bottom: 0 !important;
  }
  @media (max-width: 767px) {
    height: auto;
  }
}
.item-ground .ground-left { 
  flex: 0 0 100%;
  max-width: 100%;
  width: 100%;
  transition: 0.25s all !important;
  @media (max-width: 1023px) {
    flex-wrap: wrap;
  }
}
.item-ground .ground-right {
  overflow: hidden;
  flex: 0 0 33%;
  max-width: 33%;
  width: 100%;
  transition: 0.25s all !important;
  @media (max-width: 1023px) {
    flex: 0 0 100%;
    max-width: 100%;
    display: none;
  }
}
.item-ground.active .ground-right {
  @media (max-width: 1023px) {
    display: block;
  }
}
.item-ground.active .ground-left {
  flex: 0 0 67%;
  max-width: 67%;
  @media (max-width: 1023px) {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.sidebar-ground {
  position: relative;
  height: 100%;
  background: #FABEAF;
  color: #FFE6E0;
  padding: 0 24px;
  @media (max-width: 1023px) {
    padding: 24px;
  }
}
.sidebar-ground:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #D57565;
  border-radius: 80px 0;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.avarta-ground {
  position: absolute;
  top: 40px;
  left: 40px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: 0.3s all !important;
  opacity: 0;
  @media (max-width: 767px) {
    display: none;
    position: relative;
    top: 0;
    left: 0;
  }
}
.avarta-ground.active {
  top: 0;
  left: 0;
  opacity: 1;
  pointer-events: unset;
  opacity: 1;
  @media (max-width: 767px) {
    display: block;
  }
}

.txt-sidebar {
  font-size: 14px;
  position: relative;
  z-index: 2;
  .info-sidebar-ground {
    @media (max-width: 1023px) {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
    }
  }
}
@media (max-width: 1380px) {
  .txt-sidebar {
    font-size: 12px;
  }
}
.txt-sidebar ul {
  text-transform: uppercase;
}
.txt-sidebar ul li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.txt-sidebar ul li:last-child {
  margin-bottom: 0;
}

.clc-show-sidebar {
  cursor: pointer;
}

.head-ground ul {
  display: flex;
  align-items: flex-end;
}
.head-ground ul li {
  margin-left: -45px;
  @media (max-width: 767px) {
    margin-left: 0;
    background: #fff;
  }
}
.head-ground ul li:first-child {
  margin-left: 0;
  z-index: 10;
  pointer-events: none;
}
.head-ground ul li:first-child .clc-tab-ground {
  clip-path: polygon(0px 0px, 325px 0px, 400px 266px, 0 400px);
  width: 350px;
  height: 90px;
  font-size: 22px;
  font-weight: bold;
  background: #FFE6E0;
  @media (max-width: 767px) {
    font-size: 12px;
    width: auto;
    height: 36px;
    border-radius: 16px 0;
    background: #026b6a;
    color: #fff;
  }
}
.head-ground ul li:first-child .clc-tab-ground:after {
  width: 2px;
  height: 120px;
  background: #fff;
  top: -16px;
  right: -7px;
  transform: rotate(-16deg);
  @media (max-width: 767px) {
    display: none !important; 
    opacity: 0 !important;
  }
}
.head-ground .clc-tab-ground {
  height: 60px;
  width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #006A69;
  padding: 0 24px;
  font-weight: 500;
  clip-path: polygon(0px 0px, 275px 0px, 400px 300px, 75px 180px);
  background: #F4C3BA;
  text-transform: uppercase;
  border: 2px solid #fff;
  position: relative;
  overflow: hidden;
  transition: 0.3s all !important;
  cursor: pointer;
  @media (max-width: 767px) {
    clip-path: unset !important;
    height: 36px;
    width: auto;
    font-size: 12px;
    border: 1px solid #fff;
    padding: 0 16px; 
  }
}
@media (min-width: 768px) {
  .head-ground .clc-tab-ground:after {
    content: "";
    width: 2px;
    height: 90px;
    position: absolute;
    background: #fff;
    top: -31px;
    right: -2px;
    transform: rotate(-22deg);
    transform-origin: bottom center;
  }
}

.head-ground .clc-tab-ground span {
  position: relative;
  z-index: 2;
}

.content-tab-main .tab-content {
  display: none;
}
.content-tab-main .tab-content.active {
  display: block;
}

.m-ground {
  color: #000000;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  border: 1px solid #000000;
  padding: 1px 3px;
  border-radius: 5px;
  background: #fff;
  z-index: 2;
  @media (max-width: 1023px) {
    margin-left: -2% !important;
  }
  @media (max-width: 767px) {
    font-size: 5.6px !important;
    margin-left: -3% !important;
    transform: scale(0.6) !important;
  }
}
@media (max-width: 1600px) {
  .m-ground {
    transform: scale(0.8);
  }
}
.m-ground:before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 5px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.m-ground span {
  position: relative;
  z-index: 2;
}
.m-ground.abs-1 {
  top: 2%;
  left: 5.4%;
}
.m-ground.abs-2 {
  top: 2%;
  left: 11.8%;
}
.m-ground.abs-3 {
  top: 2%;
  left: 18.4%;
}
.m-ground.abs-4 {
  top: 2%;
  left: 24.4%;
}
.m-ground.abs-5 {
  top: 9%;
  left: 8.7%;
}
.m-ground.abs-6 {
  top: 9%;
  left: 15%;
}
.m-ground.abs-7 {
  top: 9%;
  left: 21%;
}
.m-ground.abs-8 {
  top: 9%;
  left: 27.2%;
}
.m-ground.abs-10 {
  top: 2%;
  left: 42.8%;
}
.m-ground.abs-11 {
  top: 2%;
  left: 49.2%;
}
.m-ground.abs-12 {
  top: 9%;
  left: 46.2%;
}
.m-ground.abs-13 {
  top: 9%;
  left: 52.8%;
}
.m-ground.abs-14 {
  top: 2%;
  left: 71.4%;
}
.m-ground.abs-15 {
  top: 2%;
  left: 77.4%;
}
.m-ground.abs-16 {
  top: 2%;
  left: 84.4%;
}
.m-ground.abs-17 {
  top: 2%;
  left: 91.4%;
}
.m-ground.abs-18 {
  top: 9%;
  left: 68.4%;
}
.m-ground.abs-19 {
  top: 9%;
  left: 74.4%;
}
.m-ground.abs-20 {
  top: 9%;
  left: 80.9%;
}
.m-ground.abs-21 {
  top: 9%;
  left: 87.4%;
}
.m-ground.abs-22 {
  bottom: 10%;
  left: 5.2%;
}
.m-ground.abs-23 {
  bottom: 10%;
  left: 11.8%;
}
.m-ground.abs-24 {
  bottom: 10%;
  left: 17.9%;
}
.m-ground.abs-25 {
  bottom: 10%;
  left: 24%;
}
.m-ground.abs-26 {
  bottom: 10%;
  left: 30.9%;
}
.m-ground.abs-27 {
  bottom: 3%;
  left: 8.8%;
}
.m-ground.abs-28 {
  bottom: 3%;
  left: 14.9%;
}
.m-ground.abs-29 {
  bottom: 3%;
  left: 20.8%;
}
.m-ground.abs-30 {
  bottom: 3%;
  left: 27.6%;
}
.m-ground.abs-31 {
  bottom: 10%;
  left: 40%;
}
.m-ground.abs-32 {
  bottom: 10%;
  left: 46%;
}
.m-ground.abs-33 {
  bottom: 10%;
  left: 52.6%;
}
.m-ground.abs-34 {
  bottom: 3%;
  left: 42.8%;
}
.m-ground.abs-35 {
  bottom: 3%;
  left: 49.4%;
}
.m-ground.abs-36 {
  bottom: 3%;
  left: 55.8%;
}
.m-ground.abs-37 {
  bottom: 10%;
  left: 65.2%;
}
.m-ground.abs-38 {
  bottom: 10%;
  left: 71.6%;
}
.m-ground.abs-39 {
  bottom: 10%;
  left: 78%;
}
.m-ground.abs-40 {
  bottom: 10%;
  left: 83.8%;
}
.m-ground.abs-41 {
  bottom: 10%;
  left: 91.2%;
}
.m-ground.abs-42 {
  bottom: 3%;
  left: 68.6%;
}
.m-ground.abs-43 {
  bottom: 3%;
  left: 74.8%;
}
.m-ground.abs-44 {
  bottom: 3%;
  left: 81.2%;
}
.m-ground.abs-45 {
  bottom: 3%;
  left: 87%;
}
.m-ground.bg-1:before {
  background: #0B807F;
}
.m-ground.bg-1.active:before {
  animation: change-background 1s linear infinite;
}
.m-ground.bg-2:before {
  background: #FABEAF;
}
.m-ground.bg-2.active:before {
  animation: change-background 1s linear infinite;
}
.m-ground.bg-3:before {
  background: #D57565;
}
.m-ground.bg-3.active:before {
  animation: change-background 1s linear infinite;
}
.m-ground.bg-4:before {
  background: #D57565;
}
.m-ground.bg-4.active:before {
  animation: change-background 1s linear infinite;
}
.m-ground.bg-5:before {
  background: #B1DFDD;
}
.m-ground.bg-5.active:before {
  animation: change-background 1s linear infinite;
}
.m-ground.bg-6:before {
  background: #62B5B6;
}
.m-ground.bg-6.active:before {
  animation: change-background 1s linear infinite;
}

@keyframes change-background {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.item-ground.active .m-ground {
  border-radius: 4px;
  @media (min-width: 1024px) {
    font-size: 5.6px;
  }
}

@media (min-width: 1024px) {
  .item-ground.active .m-ground.abs-1 {
    top: 19%;
  }
  .item-ground.active .m-ground.abs-2 {
    top: 19%;
  }
  .item-ground.active .m-ground.abs-3 {
    top: 19%;
  }
  .item-ground.active .m-ground.abs-4 {
    top: 19%;
  }
  .item-ground.active .m-ground.abs-5 {
    top: 23.2%;
  }
  .item-ground.active .m-ground.abs-6 {
    top: 23.2%;
  }
  .item-ground.active .m-ground.abs-7 {
    top: 23.2%;
  }
  .item-ground.active .m-ground.abs-8 {
    top: 23.2%;
  }
  .item-ground.active .m-ground.abs-10 {
    top: 19%;
  }
  .item-ground.active .m-ground.abs-11 {
    top: 19%;
  }
  .item-ground.active .m-ground.abs-12 {
    top: 23.2%;
  }
  .item-ground.active .m-ground.abs-13 {
    top: 23.2%;
  }
  .item-ground.active .m-ground.abs-14 {
    top: 19%;
  }
  .item-ground.active .m-ground.abs-15 {
    top: 19%;
  }
  .item-ground.active .m-ground.abs-16 {
    top: 19%;
  }
  .item-ground.active .m-ground.abs-17 {
    top: 19%;
  }
  .item-ground.active .m-ground.abs-18 {
    top: 23.2%;
  }
  .item-ground.active .m-ground.abs-19 {
    top: 23.2%;
  }
  .item-ground.active .m-ground.abs-20 {
    top: 23.2%;
  }
  .item-ground.active .m-ground.abs-21 {
    top: 23.2%;
  }
  .item-ground.active .m-ground.abs-22 {
    bottom: 24%;
  }
  .item-ground.active .m-ground.abs-23 {
    bottom: 24%;
  }
  .item-ground.active .m-ground.abs-24 {
    bottom: 24%;
  }
  .item-ground.active .m-ground.abs-25 {
    bottom: 24%;
  }
  .item-ground.active .m-ground.abs-26 {
    bottom: 24%;
  }
  .item-ground.active .m-ground.abs-27 {
    bottom: 19.6%;
  }
  .item-ground.active .m-ground.abs-28 {
    bottom: 19.6%;
  }
  .item-ground.active .m-ground.abs-29 {
    bottom: 19.6%;
  }
  .item-ground.active .m-ground.abs-30 {
    bottom: 19.6%;
  }
  .item-ground.active .m-ground.abs-31 {
    bottom: 24%;
  }
  .item-ground.active .m-ground.abs-32 {
    bottom: 24%;
  }
  .item-ground.active .m-ground.abs-33 {
    bottom: 24%;
  }
  .item-ground.active .m-ground.abs-34 {
    bottom: 19.6%;
  }
  .item-ground.active .m-ground.abs-35 {
    bottom: 19.6%;
  }
  .item-ground.active .m-ground.abs-36 {
    bottom: 19.6%;
  }
  .item-ground.active .m-ground.abs-37 {
    bottom: 24%;
  }
  .item-ground.active .m-ground.abs-38 {
    bottom: 24%;
  }
  .item-ground.active .m-ground.abs-39 {
    bottom: 24%;
  }
  .item-ground.active .m-ground.abs-40 {
    bottom: 24%;
  }
  .item-ground.active .m-ground.abs-41 {
    bottom: 24%;
  }
  .item-ground.active .m-ground.abs-42 {
    bottom: 19.6%;
  }
  .item-ground.active .m-ground.abs-43 {
    bottom: 19.6%;
  }
  .item-ground.active .m-ground.abs-44 {
    bottom: 19.6%;
  }
  .item-ground.active .m-ground.abs-45 {
    bottom: 19.6%;
  }
}



.clc-bg-ground {
  opacity: 0;
  cursor: pointer;
}
.clc-bg-ground.abs-1 {
  background: #000000;
  left: 4.5%;
  width: 4.4%;
  height: 30%;
  top: 17%;
}
.clc-bg-ground.abs-2-1 {
  background: red;
  left: 9%;
  width: 22.4%;
  height: 30%;
  top: 17%;
}
.clc-bg-ground.abs-2-2 {
  background: red;
  left: 43.4%;
  width: 9.5%;
  height: 30%;
  top: 17%;
}
.clc-bg-ground.abs-2-3 {
  background: red;
  left: 68.6%;
  width: 22.5%;
  height: 30%;
  top: 17%;
}
.clc-bg-ground.abs-2-4 {
  background: red;
  left: 8.6%;
  width: 22.5%;
  height: 30%;
  top: 52%;
}
.clc-bg-ground.abs-2-5 {
  background: red;
  left: 43.6%;
  width: 12.5%;
  height: 30%;
  top: 52%;
}
.clc-bg-ground.abs-2-6 {
  background: red;
  left: 68.6%;
  width: 22.5%;
  height: 30%;
  top: 52%;
}
.clc-bg-ground.abs-3 {
  background: yellow;
  right: 2.2%;
  width: 7%;
  height: 30%;
  top: 17%;
}
.clc-bg-ground.abs-4-1 {
  background: blue;
  left: 31%;
  width: 12.5%;
  height: 30%;
  top: 52%;
}
.clc-bg-ground.abs-4-2 {
  background: blue;
  left: 56%;
  width: 12.8%;
  height: 30%;
  top: 52%;
}
.clc-bg-ground.abs-5-1 {
  background: green;
  left: 2.2%;
  width: 6.5%;
  height: 30%;
  top: 52%;
}
.clc-bg-ground.abs-5-2 {
  background: green;
  right: 2%;
  width: 7.2%;
  height: 30%;
  top: 52%;
}
.clc-bg-ground.abs-6 {
  background: black;
  left: 52.8%;
  width: 6.5%;
  height: 30%;
  top: 17%;
}

.info-sidebar-ground .dt span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: bold;
  border-radius: 12px;
  border: 1px solid #FFE6E0;
  padding: 8px 8px 12px 8px;
  line-height: 1;
  @media (max-width: 1200px) {
    font-size: 24px;
  }
  @media (max-width: 767px) {
    font-size: 16px;
  }
}

.sidebar-content-ground {
  display: none;
}
.sidebar-content-ground.active {
  display: flex;
}
.sidebar-content-ground .info-sidebar-ground .avarta {
  height: auto;
  margin-bottom: 20px;
}
.sidebar-content-ground .info-sidebar-ground .avarta img {
  max-height: 40vh;
  @media (max-width: 1200px) {
    max-height: 24vh;
  }
}

.sidebar-ground-1 {
  background: #62B5B6;
}
.sidebar-ground-1:before {
  background: #0B807F;
}

.sidebar-ground-2 {
  background: #D57565;
}
.sidebar-ground-2:before {
  background: #FABEAF;
}

.sidebar-ground-3 {
  background: #FABEAF;
}
.sidebar-ground-3:before {
  background: #D57565;
}

.sidebar-ground-4 {
  background: #D57565;
}
.sidebar-ground-4:before {
  background: #EB9381;
}

.sidebar-ground-5 {
  background: #004A5A;
}
.sidebar-ground-5:before {
  background: #B1DFDD;
}

.sidebar-ground-6 {
  background: #004A5A;
}
.sidebar-ground-6:before {
  background: #B1DFDD;
}

.inner-swiper-gallery .avr {
  text-align: center;
}
@media (max-width: 1440px) {
  .inner-swiper-gallery .avr img {
    max-height: 46vh;
  }
}

.close-gallery {
  cursor: pointer;
}
.close-gallery svg {
  height: auto;
  width: 24px;
}

.number-sidebar {
  background: #FABEAF;
  color: #fff;
  font-weight: bold;
  border-radius: 100%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
}
.number-sidebar.num-1 {
  top: 36%;
  left: 14%;
}
.number-sidebar.num-2 {
  top: 36%;
  left: 17.4%;
}
.number-sidebar.num-3 {
  top: 34%;
  left: 44.4%;
}
.number-sidebar.num-4 {
  top: 40%;
  left: 51.4%;
}
.number-sidebar.num-5 {
  top: 36%;
  left: 68.4%;
}
.number-sidebar.num-6 {
  top: 42%;
  left: 82.4%;
}
.number-sidebar.num-7 {
  top: 41%;
  left: 68%;
}
.number-sidebar.num-8 {
  top: 50%;
  left: 82%;
}
.number-sidebar.num-10 {
  top: 44%;
  left: 21%;
}
.number-sidebar.num-11 {
  top: 60%;
  left: 45%;
}
.number-sidebar.num-12 {
  top: 60%;
  left: 56%;
}
.number-sidebar.num-13 {
  top: 57%;
  left: 69%;
}
.number-sidebar.num-14 {
  top: 38%;
  left: 84%;
}

/*# sourceMappingURL=custom.css.map */


.title-7 {
  padding: 12px;
  border: 1px solid #D57565;
  @media (max-width: 767px) {
    /*border-radius: 16px 0;*/
  }
  img {
    @media (max-width: 1364px) {
      max-height: 72px;
    }
    @media (max-width: 767px) {
      max-height: 48px;
    }
  }
  .icon {
    height: 100%;
    svg {
      width: auto;
      height: 50%;
    }
  }
} 

.lg-img-wrap {
  @media (max-width: 767px) {
    min-height: 100vh;
  }
}

.lg-backdrop {
  @media (max-width: 767px) {
    width: 100%;
    height: 120vh;
  }
}
html.lg-on {
    overflow: hidden;
}

@media (max-width: 767px) {
  .header-fixed .logo img {
    max-height: 32px;
    width: auto;
  }
}