:root {
    --sm: 640px;
    --md: 768px;
    --lg: 1024px;
    --xl: 1280px;
    --xxl: 1536px;
    --xxxl:1800px;
}
@font-face {
  font-family: 'MarkPro';
  src: url('../assets/Fonts/MarkPro.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'myanmar';
  src: url('../assets/Fonts/myanmar.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.font-Markpro{font-family: 'MarkPro';}
.font-myanmar{font-family: 'myanmar';}

html, body {
    height: 100%;
}
html { scroll-behavior: smooth; }

body{
    background-color: #fff;
    font-family: 'Helvetica';
    font-weight: normal;
}
section{
    max-width: 100%;
}


/*----------------
     Navigation 
------------------*/

nav {
  z-index: 99;
}

nav#desktop img#logo {
  margin-left: 3%;
  padding: 16px 0px;
}

nav#desktop ul#navlist {
  margin-right: 3%;
}

@media screen and (min-width: 1024px) and (max-width: 1117px) {
  nav#desktop img#logo {
    margin-left: 2%;
  }
  nav#desktop ul#navlist {
    margin-right: 1%;
  }
}

@media screen and (min-width: 1118px) and (max-width: 1200px) {
  nav#desktop img#logo {
    margin-left: 3%;
  }
  nav#desktop ul#navlist {
    margin-right: 3%;
  }
}

nav#desktop .bg-navbar {
 background-color: transparent;
}

nav#desktop.scrolled.bg-navbar {
  background-color: #04072B !important;
  transition: background-color 500ms linear;
  height: 85px;
  /* box-shadow: 0 0 50px #ccc; */
}

nav#desktop.scrolled .container-scroll{
  padding: 0;
}

nav#desktop.scrolled ul li a{
  color: white;
  transition: color 500ms linear;
  position: relative;
}
nav#desktop.scrolled ul li a.btn-register {
  color: #CBAA6D;
  transition: color 500ms linear;
  position: relative;
}

nav#desktop.scrolled ul li a:hover {
  color: #A97560;
  font-weight: 600;
  transition: color 500ms linear;
}

nav#desktop.scrolled ul li a:hover.btn-register {
  color: white !important;
}

nav#desktop.scrolled ul li a.btn-register:hover {
  background-color: #A97560 !important;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}


nav#desktop.scrolled ul li a.btn-register:after {
  background-color: transparent !important;
}

nav#desktop.scrolled ul li a:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #A97560;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
}

nav#desktop.scrolled ul li a:hover:after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}


.active-link {
  color: black;
}

nav#desktop.scrolled ul li a.btn-register {
  color: #CBAA6D;
}

nav#desktop.scrolled img#logo {
  width: 160px;
  transition: width 0.5s ease;
}
  
/* Existing hamburger menu styles */

/* Navbar styles */
.navbar-nav {
  list-style: none;
  padding: 20px;
  margin: 0;
  flex-direction: column; /* Stack items vertically */
  align-items: center; /* Center items horizontally */
  opacity: 0; /* Start hidden */
  transition: opacity 1s ease; /* Transition for the fade effect */
  display: none; /* Hide by default */
}

.navbar-nav.active {
  opacity: 1; /* Fade in */
  display: flex; /* Show when active */
}

.navbar-navi {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-direction: column; /* Stack items vertically */
  align-items: center; /* Center items horizontally */
}

.navbar-nav li {
  margin: 10px 0;
}

.navbar-navi li {
  margin: 10px 0;
}

.navbar-nav a {
  text-decoration: none;
  color: white;
  font-size: 21px;
}

.navbar-navi a {
  text-decoration: none;
  color: #1A3C2D;
}

/* Hide menu initially */
.hidden {
  display: none;
}

/* Additional styles for the sticky nav and theme background */
.sticky {
  position: sticky;
  top: 0;
  background: #1A3C2D;
  padding: 10px;
  z-index: 1000;
}

.theme-background {
  background-color: #1A3C2D;
}

.theme-background .hamburger {
  background: #fff;
}

.theme-background .hamburger .hamburger-inner,
.theme-background .hamburger .hamburger-inner:after,
.theme-background .hamburger .hamburger-inner:before {
  background-color: #707C67;
}

.hamburger-box {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hamburger-inner {
  top: 50%;
  display: block;
  margin-top: -2px;
}

.hamburger--spin .hamburger-inner {
  transition-timing-function: cubic-bezier(.55, .055, .675, .19);
  transition-duration: .22s;
}

.hamburger--spin.is-active .hamburger-inner {
  transition-delay: .12s;
  transition-timing-function: cubic-bezier(.215, .61, .355, 1);
  transform: rotate(225deg);
}

.hamburger-inner:before {
  top: -10px;
}

.hamburger--spin.is-active .hamburger-inner:before {
  top: 0;
  transition: top .1s ease-out, opacity .1s ease-out .12s;
  opacity: 0;
}

.hamburger--spin.is-active .hamburger-inner:after {
  bottom: 0;
  transition: bottom .1s ease-out, transform .22s cubic-bezier(.215, .61, .355, 1) .12s;
  transform: rotate(-90deg);
  width: 30px !important;
}

.hamburger-inner:after {
  bottom: -10px;
  width: 20px !important;
}

.hamburger-inner:after,
.hamburger-inner:before {
  display: block;
  content: "";
}

.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
  position: absolute;
  width: 30px;
  height: 2px;
  transition-timing-function: ease;
  transition-duration: .15s;
  transition-property: transform;
  border-radius: 4px;
  background-color: #707C67;
}

.hamburger--spin .hamburger-inner:before {
  transition: top .1s ease-in .25s, opacity .1s ease-in;
}

.hamburger--spin .hamburger-inner:after {
  transition: bottom .1s ease-in .25s, transform .22s cubic-bezier(.55, .055, .675, .19);
}



.navi-menu-wrapper.is-active {
  opacity: 1;
  visibility: visible;
}

.navi-menu-wrapper.is-active .menu {
  transform: translateX(0px);
}

.navi-menu-wrapper.is-active .menu ul li {
  opacity: 1;
  margin-left: 0%;
}

.navi-menu-wrapper .menu ul li:nth-of-type(1) {
  transition-delay: 0.1s;
}

.navi-menu-wrapper .menu ul li:nth-of-type(2) {
  transition-delay: 0.2s;
}

.fade-in {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.fade-in.visible {
  opacity: 1;
}

.logo.fixed {
  position: fixed;
  left: 48px;
  top: 20px;
  z-index: 1001;
}

@media only screen and (max-width: 767px) {
  .logo.fixed {
      top: 1.2rem;
      left: 1.2rem;
  }
}

.logo img {
  transition: all linear .5s;
}

@media only screen and (max-width: 1024px) {
  .logo img {
      width: 105px !important;
  }
}

/*-----------------
     carousel
------------------*/
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */ /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #EBD8B5;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
}

/* The Close Button */
.close {
  color: #1A3C2D;
  font-size: 33px;
  position: absolute;
  right:12px;
  top:0;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

/* Style the tab */
.tab {
  overflow: hidden;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  float: left;
  cursor: pointer;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #1A3C2D;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #1A3C2D;
  color: #CBAA6D;
}

/* Style the tab content */
.tabcontent {
  display: none;
}

.tabcontent .container .bg-\[\#CBAA6D\] {
  --tw-bg-opacity: 0.2;
}

/*-----------------
     carousel
------------------*/
.features-carousel.owl-nav, .gallery-carousel.owl-nav {
  display: flex;
  justify-content: flex-end;
}

.features-carousel.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  right: -35px;
  top: 30%;
  transform: translateY(-50%);
  background-color: white !important;
  border-radius: 100% !important;
  border-style: solid !important;
  border-color: #1A3C2D !important;
  padding: 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gem-carousel.owl-nav, .gallery-carousel.owl-nav {
  display: flex;
  justify-content: flex-end;
}

.gem-carousel.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  right: 0px;
  top: 40%;
  transform: translateY(-50%);
  background-color: white !important;
  border-radius: 100% !important;
  border-style: solid !important;
  border-color: #1A3C2D !important;
  padding: 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gem-carousel.owl-carousel .owl-nav button.owl-prev{
  position: absolute;
  left: 0px;
  top: 40%;
  transform: translateY(-50%);
  background-color: white !important;
  border-radius: 100% !important;
  border-style: solid !important;
  border-color: #1A3C2D !important;
  padding: 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  display: none;
}
.gallery-carousel.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  right: 18%;
  top: 50%;
  transform: translateY(-50%);
  background-color: white !important;
  border-radius: 100% !important;
  border-style: solid !important;
  border-color: white !important;
  padding: 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-carousel.owl-carousel .owl-nav button.owl-prev{
  position: absolute;
  left: 18%;
  top: 50%;
  transform: translateY(-50%);
  background-color: white !important;
  border-radius: 100% !important;
  border-style: solid !important;
  border-color: white !important;
  padding: 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  display: none;
}
@media (max-width: 640px) { 
  .gallery-carousel.owl-carousel .owl-nav button.owl-next {
    right: 3% !important;
    width: 40px;
  height: 40px;
  top: 40%;
  }
  .gallery-carousel.owl-carousel .owl-nav button.owl-prev{height: 40px;width: 40px;}
}

@media (min-width: 768px) and (max-width: 1023px) {
  .gallery-carousel.owl-carousel .owl-nav button.owl-next {
    right: 17% !important;
    width: 40px;
  height: 40px;
  top: 40%;
  }
}

@media (min-width: 1024px) and (max-width: 1439px) {
  .gallery-carousel.owl-carousel .owl-nav button.owl-next {
    right: 17% !important;
    width: 50px;
  height: 50px;
  top: 50%;
  }
}

@media (min-width: 1440px) and (max-width: 2560px) {
  .gallery-carousel.owl-carousel .owl-nav button.owl-next {
    right: 17% !important;
    width: 70px;
  height: 70px;
  top: 50%;
  }
}

@media (max-width: 640px) { 
  .features-carousel.owl-carousel .owl-nav button.owl-next {
    right: -25px !important;
    width: 40px;
  height: 40px;
  top:35%;
  }
}

.owl-nav .owl-prev {
  display: none;
}

.owl-nav .owl-next i, .owl-nav .owl-prev i {
  font-size: 24px;
  color: #1A3C2D;
}


/*-----------------
     General
------------------*/

section {
  position: relative;
  box-sizing: border-box;
  display: flex;
  height: auto;
  max-width: 100%;
  flex-direction: column;
  overflow: hidden;
}

@media only screen and (max-width: 1023px) {
  /* section {
    padding: 60px 0px 60px !important;
  } */
  .logo img {
    width: 120px !important;
  }
}

.prompt {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.title {
  letter-spacing: 5px !important;
  font-family: 'Marcellus Regular';
  letter-spacing: 2px;
}

.title-desc {
  letter-spacing: 3px !important;
  font-family: 'Marcellus Regular';
  letter-spacing: 2px;
}

a.hover:hover {
  opacity: 0.7 !important;
}

.nowrap {
  white-space: nowrap;
}

/*-----------------
     Banner
------------------*/

.banner {
  background: url("./../assets/img/hero-5-april.jpg") no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: top center;
}

.banner-title {
  position: absolute;
  height: 100%;
  top: 25%;
  left: 23%;
  transform: translateX(-50%);
  text-align: center;
  border-top-left-radius: 12vw;
  border-top-right-radius: 12vw;
  background-image: linear-gradient(to top, rgba(112, 124, 103, 0), rgba(112, 124, 103, 0.3), rgba(112, 124, 103, 0.8), rgba(49, 64, 10, 1.0));
  padding: 60px 30px 20%;
  min-width: 25%;
}

#mobile-banner {
  padding: 1% 0% 0% !important;
}

.banner-mobile {
  background: url("./../assets/img/bg-hero.jpg") no-repeat;
  background-size: cover;
  background-attachment: scroll !important;
  background-position: 60%;
  border-top-left-radius: 60vw !important;
  border-top-right-radius: 60vw !important;
  height: 70vh;
}


@media screen and (min-width: 640px) and (max-width: 959px) {
  .pt-tab {
    padding-top: 4rem !important;
  }
}
 
.banner-title p {
  font-family: 'Marcellus Regular';
}

.banner-title h1,
.banner-title h3 {
  line-height: 1;
  font-family: 'Gilmoray';
}

p {
  color: #000;
  line-height: 1.3;
}

@media (max-width: 767px) {
  .banner {
      background-attachment: scroll !important;
      background-position: 60%;
  }
  .banner-title {
    top: 33% !important;
    background-image: linear-gradient(to top, rgba(112, 124, 103, 0.5), rgba(112, 124, 103, 0.6), rgba(112, 124, 103, 0.8), rgba(49, 64, 10, 1.0)) !important;
  }
}

@media (min-width: 1440px) {
  .banner-title {
    top: 35% !important;
  }
}

@screen and (orientation: landscape) {
  .banner {
    background-attachment: scroll !important;
    background-position: 60%;
  }
  .banner-title {
    top: 33% !important;
    background-image: linear-gradient(to top, rgba(112, 124, 103, 0.5), rgba(112, 124, 103, 0.6), rgba(112, 124, 103, 0.8), rgba(49, 64, 10, 1.0)) !important;
  }
}


/* @media only screen and (min-width: 960px) {
  #concept {
    min-height: 110vh;
  }
} */

/*------------------
   Accordion
--------------------*/
.accordion-inside {
  background-color: #fff;
  cursor: pointer;
  padding: 10px 10px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  transition: 0.4s;
  border-bottom: 1px solid #eee;
}

.accordion-outer {
  overflow-y: auto;
}

.accordion-outer .accordion-inside:last-child {
  border-bottom: none;
}

.accordion-inside:after {
  content: '\002B';
  color: white;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.accordion-outer .active:after {
  content: "\2212";
}

.panel-inside {
  padding: 0 10px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  color: #000;
}

.accordion-outer .panel-inside.expanded {
  max-height: none;
}

@media (max-width: 992px) {
  .accordion-outer {
    height: auto;
    overflow-y: auto;
  }
}

.adventure.fa-solid.fa-circle {
  color: #05A84A;
}
.education.fa-solid.fa-circle {
  color: #06B0EB;
}
.serving.fa-solid.fa-circle {
  color: #2B2C8B;
}
.essentials.fa-solid.fa-circle {
  color: #712B8C;
}
.health.fa-solid.fa-circle {
  color: #EA1B24;
}
.access.fa-solid.fa-circle {
  color: #1F671F;
}

.adventure .fa-circle {
  font-size: 10px;
  color: #05A84A;
}
.education .fa-circle {
  font-size: 10px;
  color: #06B0EB;
}
.serving .fa-circle {
  font-size: 10px;
  color: #2B2C8B;
}
.essentials .fa-circle {
  font-size: 10px;
  color: #712B8C;
}
.health .fa-circle {
  font-size: 10px;
  color: #EA1B24;
}
.access .fa-circle {
  font-size: 10px;
  color: #1F671F;
}

.icon-envelope {
  color: #CBAA6D;
}


/*------------------
   View more
--------------------*/
#more {display: none;}

/*------------------
   Registration
--------------------*/



/* Loader Progress Bar  */

@-webkit-keyframes loader {
  0% {
      width: 0;
  }
  20% {
      width: 10%;
  }
  25% {
      width: 24%;
  }
  43% {
      width: 41%;
  }
  56% {
      width: 50%;
  }
  66% {
      width: 52%;
  }
  71% {
      width: 60%;
  }
  75% {
      width: 76%;
  }
  94% {
      width: 86%;
  }
  100% {
      width: 100%;
  }
}

@keyframes loader {
  0% {
      width: 0;
  }
  20% {
      width: 10%;
  }
  25% {
      width: 24%;
  }
  43% {
      width: 41%;
  }
  56% {
      width: 50%;
  }
  66% {
      width: 52%;
  }
  71% {
      width: 60%;
  }
  75% {
      width: 76%;
  }
  94% {
      width: 86%;
  }
  100% {
      width: 100%;
  }
}

.progress-bar {
  width: 95%;
  max-width: 95%;
  left: 50%;
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  margin-top: 30px;
}
.progress {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}
.bar {
  margin-top: 25px !important;
  margin-bottom: 0 !important;
}
.progress-bar {
  border-radius: 0;
  overflow: hidden;
  width: 100%;
  padding: 0;
  display: none;
}
.progress-bar span {
  display: block;
}
.bar {
  background: 0 0;
}
.progress {
  -webkit-animation: loader 8s ease infinite;
  animation: loader 8s ease infinite;
  background: #707C67;
  color: #fff;
  padding: 5px;
  width: 0;
  margin-top: 25px;
  margin-bottom: 25px;
}
.progress-bar {
  position: relative;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  background-color: transparent;
}

/*--------------------
      Map
---------------------*/

.map-row{
  display: flex;
}
.map-col-lg-8{
  width: 70%;
}
.map-col-lg-4{
  width: 30%;
}
.map-row .elementor-accordion-icon i {
  color: #c9176b;
}
.location {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: transparent;
  text-align: left;
  line-height: 1.3;
  width: 100%;
  border: none;
}
.location img{
  width: 20px;
  height: 20px;
  object-fit: contain;
  object-position: center;
  margin-right: 10px;
}
.accordion-location{
  height: 600px;
  background-color: white;
}
.accordion-location .elementor-accordion-title, 
.accordion-location .elementor-accordion-icon {
    color: #000;
    font-family: "Lato", Sans-serif;
    font-size: 17px;
}
.elementor-accordion .elementor-tab-title {
    margin: 0;
    padding: 20px 25px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    outline: none;
}
.accordion-location .elementor-widget-accordion .elementor-active .elementor-accordion-icon, .accordion-location .elementor-widget-accordion .elementor-active .elementor-accordion-title{
  color: #D51970;
}
.accordion-location .card{
  height: 100%;
  overflow-y: unset;
}
.title-amenities{
  margin: 0;
  padding: 30px 25px;
  border-left: 1px solid #d4d4d4;
  color: #000;
  font-family: "Lato", Sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.35;
}
.accordion-location .elementor-accordion .elementor-tab-content{
  padding: 10px 0;
  margin: 0;
}
.accordion-location .elementor-widget-accordion{
  height:100%;
  overflow-y: auto;
}

.location-map-listitems p { 
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .title-amenities { 
      font-size: 25px; 
  } 
}

@media (max-width: 480px) {
  .title-amenities {
      font-size: 21px;
      padding: 20px 25px 15px 25px;
      line-height: 1.5;
  }

  .map-col-lg-8 {
    width: 100%; 
    display: block;
    min-height: 400px;
  }

  .map-col-lg-4 {
      width: 100%;
      display: block; 
  } 
  .map-row {
    display: block;
  }

  .accordion-location {
    height: auto; 
  }
}

.overlay-pot{
  position: absolute; 
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: 1; 
}

/*--------------------
      Thank You
---------------------*/

section#thank-you,
section#error {
  overflow: hidden;
  width: 100%;
  min-height: calc(100vh - 174px) !important;
}

/*-----------------------
    Mobile Responsive
-----------------------*/

@media only screen and (min-width: 1800px) { 
  nav#desktop.scrolled img#logo,
  nav#desktop.scrolled #navlist {
    margin-top: 0 !important;
  }
  .title {
    line-height: 60px !important;
  }
  .slider-desc {
    max-width: 600px;
  }
  .vr-360-container {
    height: 57vh;
  }
}

@media only screen and (max-width: 767px) { 
  .logo img {
    width: 100px !important;
  }
  .bg-flexi-img {
    top: -25px;
  }
  #features h6 {
    line-height: 20px;
  }
  .slider-desc h1 {
    line-height: 30px;
  }
  .slider-desc {
    padding: 1rem 0rem 1rem;
  }
}

@media screen and (max-width: 399px) {
  .bg-flexi-img {
    height: 330px;
  }
  .swiper.swiper-flexi-img {
    height: 310px !important;
  }
}

@media screen and (min-width: 400px) and (max-width: 767px) {
  .bg-flexi-img {
    height: 365px;
  }
  .swiper-flexi-img {
    height: 340px !important;
  }
}

/* Icons */
.sticky-icons {
  position: fixed;
  bottom: 5%;
  z-index: 10000;
  display: flex;
  flex-direction: row;
  right: 1%;
  background-color: white;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 2px 2px 6px rgb(182, 182, 182);
  -webkit-animation: pulse 1.5s infinite;
  -moz-animation: pulse 1.5s infinite;
  -o-animation: pulse 1.5s infinite;
  animation: pulse 1.5s infinite;
}
.sticky-icons:hover {
  -webkit-animation: none;
  -moz-animation: none;
  -o-animation: none;
  animation: none;
}
.sticky-icons :hover{cursor: pointer;}
.sticky-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  background: #0D9F16;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 5px;
  position: relative;
  transform: rotate(30deg);
}
.sticky-icon img{width: 70%;object-fit: contain; transform: rotate(-24deg);}
.sticky-icons p{
  color: #0a6b10;
  font-family: 'Roboto';
  font-size: 20px;
  margin-bottom: 0px;
  padding: 0;
  font-weight: bold;
  line-height: 1.2;
}
.sticky-icon::after{
  content: "";
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #0d9f16;
  position: absolute;
  bottom: -3px;
  left: -17px;
  right: 0;
  margin: 0 auto;
  transform: rotateZ(31deg);
}
@-webkit-keyframes pulse {
  0% {transform: scale(0.9);}
  70% {transform: scale(1);box-shadow: 0 0 0 30px rgba(90, 153, 212, 0);}
  100% {transform: scale(0.9);box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);}
}
@-moz-keyframes pulse{
  0% {transform: scale(0.9);}
  70% {transform: scale(1);box-shadow: 0 0 0 30px rgba(90, 153, 212, 0);}
  100% {transform: scale(0.9);box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);}
}
@-o-keyframes pulse{
  0% {transform: scale(0.9);}
  70% {transform: scale(1);box-shadow: 0 0 0 30px rgba(90, 153, 212, 0);}
  100% {transform: scale(0.9);box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);}
}
@keyframes pulse{
  0% {transform: scale(0.9);}
  70% {transform: scale(1);box-shadow: 0 0 0 30px rgba(90, 153, 212, 0);}
  100% {transform: scale(0.9);box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);}
}
.gallery-carousel.owl-carousel .owl-dots{display: flex;justify-content: center;margin-top: 20px;}
.gallery-carousel.owl-carousel button.owl-dot{width: 10px;height: 10px;background: #CBAA6D;margin: 0 3px;border-radius: 28px;opacity: 0.5;}
.gallery-carousel.owl-carousel button.owl-dot.active{width: 30px;opacity: 1.0;}
@media(max-width:500px){
  .sticky-icons p{font-size: 16px;}
  .sticky-icon{width: 35px;height: 35px;}
  .gem-carousel.owl-carousel .owl-nav button.owl-prev, .gallery-carousel.owl-carousel .owl-nav button.owl-prev{display: flex;}
  .gem-carousel.owl-carousel .owl-nav button.owl-prev{left: -8%;}
  .gem-carousel.owl-carousel .owl-nav button.owl-next{right: -8%;}
  .gem-carousel.owl-carousel .owl-nav button.owl-next, .gem-carousel.owl-carousel .owl-nav button.owl-prev, .gallery-carousel.owl-carousel .owl-nav button.owl-next,.gallery-carousel.owl-carousel .owl-nav button.owl-prev{border-color: #CBAA6D !important;border-width: 1px;}
  .owl-nav .owl-next i, .owl-nav .owl-prev i{color: #CBAA6D;}
  .gallery-carousel.owl-carousel .owl-nav button.owl-next{top: unset;bottom: 2%;}
  .gallery-carousel.owl-carousel .owl-nav button.owl-prev{font-size: 24px;color: #CBAA6D;top: unset;bottom: 2%;left: 3%;}
}