/*flexbox*/
/*Flexbox SASS mixins*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Antique&display=swap");
.flex {
  display: flex;
}
.flex__wrap {
  flex-wrap: wrap;
}
.flex__col {
  flex-direction: column;
}
.flex__row {
  flex-direction: row;
}
.flex__reverse {
  flex-direction: row-reverse;
}
.flex__grow {
  flex-grow: 1;
  min-width: 1px;
}
.flex__shrink {
  flex-shrink: 0;
}
.flex__1 {
  flex: 1;
}
.flex__aln-start {
  align-items: flex-start;
}
.flex__aln-center {
  align-items: center;
}
.flex__aln-end {
  align-items: flex-end;
}
.flex__jfy-start {
  justify-content: flex-start;
}
.flex__jfy-center {
  justify-content: center;
}
.flex__jfy-end {
  justify-content: flex-end;
}
.flex__jfy-between {
  justify-content: space-between;
}
.flex__jfy-around {
  justify-content: space-around;
}

/***** Responsive breakpoints*****/
html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: "Montserrat arm bold";
  src: url("../fonts/Montserratarm-Bold.otf");
}
@font-face {
  font-family: "Montserrat arm regular";
  src: url("../font/Montserratarm-Regular.otf");
}
html,
body {
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  box-sizing: border-box;
  scroll-behavior: smooth;
  background: #f9f7f0;
}

body[lang=en] {
  font-family: "Montserrat", sans-serif;
}

body[lang=hy] {
  font-family: "Montserrat arm regular";
}

.overflow {
  overflow: hidden;
}

.bgClr {
  background: #f9f7f0;
}

.bgWhite {
  background: #ffffff;
}

.main-conatainer {
  width: 100%;
  height: 100vh;
  position: relative;
}

.space-all {
  padding: 44px 0;
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  min-height: 100vh;
  height: auto;
  position: relative;
}
@media only screen and (min-width: 1700px) {
  .container {
    max-width: 100%;
    padding: 0 104px;
  }
}
@media only screen and (max-width: 1440px) {
  .container {
    max-width: 100%;
    padding: 0 44px;
  }
}
@media only screen and (max-width: 1281px) {
  .container {
    max-width: 100%;
    padding: 0 32px;
  }
}
@media only screen and (max-width: 1025px) {
  .container {
    max-width: 100%;
    padding: 0 24px;
    height: auto;
  }
}

.btn {
  border: 0;
  outline: 0;
  height: 52px;
  font-size: 16px;
  text-align: center;
}
.btn.primery {
  background: #fc4c02;
  color: #ffffff;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  border-radius: 100px;
  padding: 0 16px;
}
.btn:hover {
  background: #9a2e00;
}
.btn:active {
  background: #c13b03;
}

.nav {
  text-align: center;
  position: fixed;
  width: 100%;
  padding: 16px 0;
  top: 0;
  left: 0;
  z-index: 4;
}
@media only screen and (min-width: 1700px) {
  .nav {
    padding: 32px 0;
  }
}
@media only screen and (max-width: 1025px) {
  .nav {
    padding: 0;
  }
}
.nav .light {
  background: #f9f7f0;
}
.nav__container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 1700px) {
  .nav__container {
    max-width: 100%;
    padding: 0 104px;
  }
}
@media only screen and (max-width: 1440px) {
  .nav__container {
    max-width: 100%;
    padding: 0 44px;
  }
}
@media only screen and (max-width: 1281px) {
  .nav__container {
    max-width: 100%;
    padding: 0 32px;
  }
}
@media only screen and (max-width: 1025px) {
  .nav__container {
    max-width: 100%;
    padding: 16px 24px;
  }
}
.nav .logo {
  display: flex;
}
.nav .logo img {
  width: 146px;
}
@media only screen and (max-width: 1025px) {
  .nav .logo {
    width: 100%;
    justify-content: center;
    margin-left: 32px;
  }
}
.nav .nav-ul {
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  justify-content: flex-end;
}
@media only screen and (max-width: 1025px) {
  .nav .nav-ul {
    width: auto;
  }
}
.nav .nav-ul .bars {
  width: 32px;
  height: 32px;
  display: none;
}
@media only screen and (max-width: 1025px) {
  .nav .nav-ul .bars {
    display: block;
  }
}
.nav .nav-ul .bars .middle {
  width: 70px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -20px 0 0 -35px;
}
.nav .nav-ul .bars a.menu {
  float: left;
  width: 32px;
  height: 32px;
  overflow: hidden;
  transition: 0.3s;
}
.nav .nav-ul .bars a.menu span {
  width: 32px;
  height: 32px;
  position: relative;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav .nav-ul .bars a.menu span:before {
  content: "";
  width: 32px;
  height: 3px;
  background-color: #0c4831;
  position: absolute;
  top: 10px;
  left: 0;
}
.nav .nav-ul .bars a.menu span:after {
  content: "";
  width: 32px;
  height: 3px;
  background-color: #0c4831;
  position: absolute;
  bottom: 10px;
  left: 0;
}
.nav .nav-ul .bars a.menu.active span {
  background-color: transparent;
}
.nav .nav-ul .bars a.menu.active span:before {
  top: 16px;
  transform: rotate(-35deg);
}
.nav .nav-ul .bars a.menu.active span:after {
  bottom: 12px;
  transform: rotate(35deg);
}
@media only screen and (max-width: 1025px) {
  .nav .nav-ul .ul-list {
    display: none;
    position: absolute;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: #f9f7f0;
    z-index: -1;
  }
}
@media only screen and (max-width: 1025px) and (max-width: 520px) {
  .nav .nav-ul .ul-list .btn {
    width: 100%;
    align-items: center;
    justify-content: center;
  }
}
.nav .nav-ul .ul-list .btn {
  margin-right: 16px;
}
.nav .nav-ul .ul-list.show {
  display: flex;
}
.nav .nav-ul li {
  margin-right: 22px;
}
@media only screen and (max-width: 1025px) {
  .nav .nav-ul li {
    margin-right: 0;
    line-height: 32px;
    margin-bottom: 5px;
  }
}
.nav .nav-ul li:last-child {
  margin-right: 0;
}
.nav .nav-ul li a {
  font-size: 18px;
  color: #0c4831;
  transition: all 0.3s;
}
.nav .nav-ul li a:hover, .nav .nav-ul li a.active {
  color: #1b9868;
}

.main-banner-content {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.main-banner-content .container {
  height: auto;
}

.animated-banner {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  overflow: hidden;
  z-index: 9;
  background: #030024;
  display: none;
}
.animated-banner.show {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
  opacity: 1;
}
.animated-banner.hideTop {
  display: block;
  animation: fadeBottomTop 1s ease backwards;
  opacity: 0;
  visibility: hidden;
}
.animated-banner .night-sky {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: none;
  transition: 0.3s;
}
.animated-banner .night-sky.show {
  display: block;
  width: 100%;
  height: 100%;
  animation: fadeAnimation 0.6s ease-in-out;
  transform: translateY(0%);
}
.animated-banner .night-sky .night-sky-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120vw;
  height: 120vw;
  min-width: 120%;
  min-height: 120%;
  object-fit: contain;
  object-position: center;
  transform-origin: center center;
  z-index: 1;
}
@media only screen and (max-width: 520px) {
  .animated-banner .night-sky .night-sky-img {
    width: 300vw;
    height: 300vw;
  }
}
.animated-banner .night-sky .night-sky-img.show {
  animation: starRotate linear 360s infinite;
}
.animated-banner .bear-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  z-index: 2;
  display: none;
}
.animated-banner .bear-img.show {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}
.animated-banner .gradient {
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 3;
}
.animated-banner .star-skew {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  display: none;
}
.animated-banner .star-skew.show {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}
.animated-banner .star-skew img {
  animation: tilt-shaking-plus linear 12s infinite;
}

.main-content {
  position: relative;
  width: 100%;
  height: 100vh;
}
@media only screen and (max-width: 1025px) {
  .main-content {
    height: auto;
  }
}
.main-content .product-row {
  width: 1305px;
  height: 90vh;
  overflow: hidden;
  position: relative;
}
.main-content .product-row .product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: pointer;
}
.main-content .product-row .dialouge-small {
  position: absolute;
  top: 14%;
  right: 14%;
  width: 386px;
}
.main-content .product-row .dialouge-small img {
  width: 100%;
  object-fit: contain;
}
.main-content .product-row .dialouge-small p {
  position: absolute;
  top: 50px;
  padding: 0 32px;
  font-size: 20px;
  line-height: 24px;
}
.main-content .rotate-row {
  width: 1305px;
  height: 10vh;
}

.image-bg {
  background-position: center;
}

.music-play {
  position: absolute;
  bottom: 64px;
  width: 100%;
  z-index: 5;
}
.music-play .now-playing,
.music-play a {
  color: #ffffff;
  font-size: 16px;
  margin-top: 44px;
}
.music-play .track-name {
  font-size: 32px;
  font-weight: normal;
  line-height: 48px;
  color: #ffffff;
  font-family: "Zen Antique", serif;
}
@media only screen and (max-width: 520px) {
  .music-play .track-name {
    font-size: 20px;
    padding: 0 16px;
    line-height: 32px;
    text-align: center;
  }
}
.music-play .track-artist {
  font-size: 18px;
  text-align: center;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.6);
}
@media only screen and (max-width: 520px) {
  .music-play .track-artist {
    font-size: 16px;
    padding: 0 8px;
  }
}
.music-play .player-row {
  cursor: pointer;
  /* Change the mouse cursor to a pointer
      when hovered over */
}
@media only screen and (max-width: 520px) {
  .music-play .player-row {
    width: 100%;
    padding: 0 24px;
  }
}
.music-play .player-row .buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 16px auto;
}
.music-play .player-row .playpause-track,
.music-play .player-row .prev-track,
.music-play .player-row .next-track {
  margin: 0 2px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.2s;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.music-play .player-row .playpause-track:hover,
.music-play .player-row .prev-track:hover,
.music-play .player-row .next-track:hover {
  opacity: 0.8;
}
.music-play .player-row .playpause-track {
  background: #fc4c02;
}
.music-play .player-row i {
  cursor: pointer;
  font-size: 32px;
  color: #ffffff;
}

.about-wrap {
  max-width: 1420px;
  width: 100%;
  height: 100vh;
  margin: 0 auto;
}
@media only screen and (max-width: 1025px) {
  .about-wrap {
    height: 100%;
  }
}
.about-wrap .about-row {
  height: 80vh;
  overflow: hidden;
  padding-top: 64px;
}
@media only screen and (max-width: 1025px) {
  .about-wrap .about-row {
    height: auto;
    flex-direction: column;
    padding-top: 0;
  }
}
.about-wrap .about-row .about-item {
  height: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 1025px) {
  .about-wrap .about-row .about-item {
    margin-bottom: 24px;
    width: 100%;
  }
}
.about-wrap .about-row .about-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.about-wrap .about-text {
  padding-left: 112px;
}
@media only screen and (max-width: 1025px) {
  .about-wrap .about-text {
    padding-left: 0;
  }
}
.about-wrap .about-text h1 {
  color: #020202;
  font-size: 48px;
  line-height: 40px;
  margin-bottom: 8px;
  font-weight: bold;
}
@media only screen and (max-width: 1281px) {
  .about-wrap .about-text h1 {
    font-size: 32px;
  }
}
.about-wrap .about-text p,
.about-wrap .about-text ul {
  font-size: 20px;
  line-height: 24px;
  color: #27211a;
}
@media only screen and (max-width: 1281px) {
  .about-wrap .about-text p,
  .about-wrap .about-text ul {
    font-size: 16px;
  }
}
.about-wrap .about-text ul {
  margin: 16px 0;
}
.about-wrap .about-text ul li {
  display: flex;
  flex-direction: row;
  align-items: center;
  line-height: 24px;
}
.about-wrap .about-text ul li img {
  width: 20px;
  margin-right: 12px;
}

.about-btn-row a {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 24px 8px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.about-btn-row .primery {
  background: #fc4c02;
}
.about-btn-row .disabled {
  background: #dcdcdc;
}

.where-to-go-wrap {
  width: 90%;
  height: 70vh;
  margin: 8rem auto;
  background: #ffffff;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  border-radius: 24px;
  padding: 12px;
  box-sizing: border-box;
  border: 1px solid #e2e2e2;
}
@media only screen and (max-width: 1025px) {
  .where-to-go-wrap {
    width: 100%;
    height: 80vh;
    flex-direction: column;
  }
}
.where-to-go-wrap .filter-top {
  margin-bottom: 16px;
  position: relative;
}
.where-to-go-wrap .filters {
  width: 35%;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  border-radius: 16px;
  overflow: hidden;
  background: #f5f4f4;
  padding: 12px;
}
@media only screen and (max-width: 1025px) {
  .where-to-go-wrap .filters {
    width: 100%;
    margin-bottom: 0;
    order: 2;
    margin-top: 24px;
    height: 100%;
  }
}
.where-to-go-wrap .filters form {
  width: 100%;
  height: 44px;
  background: #ffffff;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  margin-right: 16px;
  overflow: hidden;
}
.where-to-go-wrap .filters form select {
  outline: 0;
  border: 0;
  width: 100%;
  padding: 0 16px;
}
.where-to-go-wrap .filters .filter-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
}
.where-to-go-wrap .filters .filter-box {
  background: #ffffff;
  color: #222222;
  border: 1px solid #dadada;
  width: 100%;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  position: absolute;
  padding: 16px;
  font-size: 18px;
  left: 0;
  top: 48px;
  z-index: 8;
  display: none;
}
.where-to-go-wrap .filters .filter-box.show {
  display: block;
}
.where-to-go-wrap .filters .filter-box li {
  width: 100%;
  height: 44px;
}
.where-to-go-wrap .filters .filter-box li input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.where-to-go-wrap .filters .filter-box li input:checked + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 9px;
  width: 6px;
  height: 14px;
  border: solid #fc4c02;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.where-to-go-wrap .filters .filter-box li label {
  position: relative;
  cursor: pointer;
}
.where-to-go-wrap .filters .filter-box li label::before {
  content: "";
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  border: 1px solid #e2e2e2;
  width: 24px;
  height: 24px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 4px;
}
.where-to-go-wrap .filters .location-col {
  height: 73vh;
  overflow: hidden scroll;
  padding-right: 16px;
  /* width */
  /* Track */
  /* Handle */
}
@media only screen and (max-width: 1025px) {
  .where-to-go-wrap .filters .location-col {
    height: 100%;
  }
}
.where-to-go-wrap .filters .location-col::-webkit-scrollbar {
  width: 12px;
}
.where-to-go-wrap .filters .location-col::-webkit-scrollbar-track {
  background: #ffffff;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
}
.where-to-go-wrap .filters .location-col::-webkit-scrollbar-thumb, .where-to-go-wrap .filters .location-col::-webkit-scrollbar-thumb:hover {
  background: #fc4c02;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
}
.where-to-go-wrap .filters .location-col .item {
  background: #ffffff;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 6px;
  position: relative;
}
.where-to-go-wrap .filters .location-col .item .partner {
  width: 72px;
  height: 72px;
  border: 1px solid #efefef;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
}
@media only screen and (max-width: 1025px) {
  .where-to-go-wrap .filters .location-col .item .partner {
    background: #ffffff;
    width: 54px;
    height: 54px;
    object-fit: contain;
  }
}
.where-to-go-wrap .filters .location-col .item .info {
  margin-left: 16px;
}
@media only screen and (max-width: 1025px) {
  .where-to-go-wrap .filters .location-col .item .info {
    margin-left: 8px;
  }
}
.where-to-go-wrap .filters .location-col .item .info h4 {
  color: #000000;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 4px;
}
.where-to-go-wrap .filters .location-col .item .info p {
  font-size: 14px;
  line-height: 24px;
  color: #000000;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1025px) {
  .where-to-go-wrap .filters .location-col .item .info p {
    font-size: 12px;
  }
}
.where-to-go-wrap .filters .location-col .item .info p span {
  color: #fc4c02;
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
  margin-left: 8px;
  cursor: pointer;
}
.where-to-go-wrap .filters .location-col .item .info img {
  margin-right: 4px;
}
.where-to-go-wrap .filters .location-col .item .item-dropdown {
  background: #ffffff;
  color: #0c4831;
  border: 1px solid #dadada;
  padding: 12px;
  width: 230px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  position: absolute;
  left: 68%;
  top: 90%;
  transform: translateX(-50%);
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: none;
}
.where-to-go-wrap .filters .location-col .item .item-dropdown .polygon {
  position: absolute;
  left: 50%;
  top: -14px;
  transform: translateX(-50%);
}
.where-to-go-wrap .filters .location-col .item .item-dropdown ul {
  font-size: 16px;
  line-height: 24px;
}
.where-to-go-wrap .filters .location-col .item .item-dropdown ul li {
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  color: #0c4831;
  margin-bottom: 8px;
}
.where-to-go-wrap .filters .location-col .item .item-dropdown ul li:last-child {
  margin-bottom: 0;
}
.where-to-go-wrap .filters .location-col .item .item-dropdown ul li img {
  margin-right: 8px;
}
.where-to-go-wrap .filters .location-col .item:hover .item-dropdown {
  display: block;
}
.where-to-go-wrap .map-box {
  width: 65%;
  height: 100%;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  border-radius: 16px;
  overflow: hidden;
  margin-left: 16px;
}
@media only screen and (max-width: 1025px) {
  .where-to-go-wrap .map-box {
    width: 100%;
    margin-left: 0;
    order: 1;
    height: 424px;
  }
}
@media only screen and (max-width: 520px) {
  .where-to-go-wrap .map-box {
    height: 390px;
  }
}

#buy {
  width: 100%;
  min-height: 100vh;
  height: auto;
}

.getnow-wrap {
  width: 100%;
  margin: 8rem 0;
}
@media only screen and (max-width: 1025px) {
  .getnow-wrap {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

.getnow-wrap-img {
  overflow: hidden;
}
@media only screen and (max-width: 1025px) {
  .getnow-wrap-img {
    width: 100%;
  }
}
.getnow-wrap-img .getnow-slide {
  width: 100%;
  overflow: hidden;
}
.getnow-wrap-img .getnow-slide .owl-stage-outer {
  height: 90%;
  overflow: hidden;
  padding: 32px 0;
}
.getnow-wrap-img .getnow-slide .owl-stage {
  display: flex;
  height: 100%;
}
.getnow-wrap-img .getnow-slide .owl-stage div {
  height: 100%;
}
.getnow-wrap-img .getnow-slide .owl-nav {
  width: 100%;
  height: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.getnow-wrap-img .getnow-slide .owl-nav button {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 24px 8px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  outline: 0;
  border: 0;
  color: #ffffff;
  font-size: 24px;
}
.getnow-wrap-img .getnow-slide .owl-nav .owl-prev,
.getnow-wrap-img .getnow-slide .owl-nav .owl-next {
  background: #fc4c02;
}
.getnow-wrap-img .getnow-slide .owl-nav .disabled {
  background: #dcdcdc;
}
.getnow-wrap-img .product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.getnow-wrap-text {
  padding-left: 32px;
  color: #222222;
}
@media only screen and (min-width: 1700px) {
  .getnow-wrap-text {
    padding-left: 40px;
  }
}
@media only screen and (max-width: 1025px) {
  .getnow-wrap-text {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 24px;
    padding-left: 0;
  }
}
.getnow-wrap-text h1 {
  font-size: 24px;
  font-weight: normal;
  line-height: 38px;
  margin-bottom: 8px;
  color: #0c4831;
  font-family: "Zen Antique", serif;
}
@media only screen and (min-width: 1700px) {
  .getnow-wrap-text h1 {
    margin-bottom: 24px;
  }
}
.getnow-wrap-text h1 span {
  font-size: 18px;
  color: #fc4c02;
  position: relative;
  top: -4px;
}
.getnow-wrap-text p {
  font-size: 14px;
  line-height: 24px;
  display: flex;
  align-items: center;
  color: #555555;
  margin-bottom: 16px;
}
@media only screen and (min-width: 1700px) {
  .getnow-wrap-text p {
    font-size: 18px;
    margin-bottom: 24px;
    line-height: 32px;
  }
}
.getnow-wrap-text span {
  color: #222222;
  font-size: 14px;
  line-height: 24px;
}
.getnow-wrap-text ul {
  font-size: 14px;
  margin-bottom: 16px;
  color: #555555;
}
.getnow-wrap-text ul:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 1700px) {
  .getnow-wrap-text ul {
    font-size: 18px;
    margin-bottom: 24px;
  }
}
.getnow-wrap-text ul li {
  font-size: 14px;
  line-height: 24px;
  color: #555555;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 1700px) {
  .getnow-wrap-text ul li {
    font-size: 18px;
    line-height: 32px;
  }
}
.getnow-wrap-text ul li img {
  margin-right: 8px;
}
.getnow-wrap-text .price-row {
  margin: 8px 0;
}
@media only screen and (min-width: 1700px) {
  .getnow-wrap-text .price-row {
    margin: 24px 0;
  }
}
.getnow-wrap-text .price-row .new-price {
  font-size: 24px;
  font-weight: 600;
  margin-right: 16px;
  margin-bottom: 0;
  color: #555555;
}
.getnow-wrap-text .price-row .old-price {
  font-size: 20px;
  margin-bottom: 0;
  font-weight: 600;
  color: #b9b9b9;
  text-decoration: line-through;
}
.getnow-wrap-text .counter-row {
  margin-bottom: 24px;
}
.getnow-wrap-text .counter-row .decrease,
.getnow-wrap-text .counter-row .increase {
  width: 44px;
  height: 44px;
  background: #ffffff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.getnow-wrap-text .counter-row input {
  width: 130px;
  height: 44px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  border-radius: 24px;
  padding: 0 16px;
  text-align: center;
  outline: 0;
  border: 0;
  margin: 0 12px;
  font-family: "Montserrat", sans-serif;
}
.getnow-wrap-text .counter-row input::placeholder {
  font-family: "Montserrat", sans-serif;
}
@media only screen and (max-width: 520px) {
  .getnow-wrap-text .counter-row input {
    width: 100%;
  }
}
.getnow-wrap-text button,
.getnow-wrap-text .addcart {
  max-width: 232px;
}
@media only screen and (max-width: 520px) {
  .getnow-wrap-text button,
  .getnow-wrap-text .addcart {
    max-width: 100%;
    width: 100%;
  }
}

#contact {
  overflow: hidden;
  background: hsl(47, 100%, 73%);
  width: 100%;
  min-height: 100vh;
  height: auto;
}
@media only screen and (max-width: 1025px) {
  #contact {
    height: auto;
    padding: 64px 0;
  }
}

.contact-wrap {
  color: #222222;
  background: #ffffff;
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  -ms-border-radius: 32px;
  border-radius: 32px;
  padding: 24px;
  width: 1272px;
  height: 70vh;
  border: 1px solid #e2e2e2;
  margin: 8rem 0;
}
@media only screen and (max-width: 1025px) {
  .contact-wrap {
    flex-direction: column;
    height: 85vh;
  }
}
@media only screen and (max-width: 520px) {
  .contact-wrap {
    height: auto;
  }
}
.contact-wrap .gallery-wrap {
  height: 100%;
  overflow: hidden;
  flex: 1;
}
.contact-wrap .gallery-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  border-radius: 40px;
}
@media only screen and (max-width: 1025px) {
  .contact-wrap .gallery-wrap {
    width: 100%;
    margin-bottom: 24px;
    order: 1;
  }
}
.contact-wrap .gallery-wrap .title h3 {
  font-size: 32px;
  font-weight: bold;
}
.contact-wrap .gallery-wrap .title a {
  color: #222222;
  font-size: 24px;
}
.contact-wrap .gallery {
  width: 100%;
  height: 100%;
}
.contact-wrap .img-gallery-magnific {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  position: relative;
  height: 100%;
}
@media only screen and (max-width: 1025px) {
  .contact-wrap .img-gallery-magnific {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
.contact-wrap .img-gallery-magnific img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.contact-wrap .contacts {
  flex: 1;
  margin-right: 16px;
  color: #222222;
  position: relative;
}
@media only screen and (max-width: 1025px) {
  .contact-wrap .contacts {
    width: 100%;
    padding: 0;
    margin-right: 0;
    order: 2;
  }
}
.contact-wrap .contacts h1 {
  font-size: 24px;
  line-height: 38px;
  color: #0c4831;
  font-family: "Zen Antique", serif;
  font-weight: normal;
  margin-bottom: 10px;
}
.contact-wrap .contacts p {
  font-size: 16px;
  color: #555555;
  line-height: 24px;
  margin-bottom: 10px;
}
.contact-wrap .contacts form {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 16px;
}
.contact-wrap .contacts .custom-input {
  display: flex;
  width: 100%;
  flex-direction: column;
  margin-bottom: 16px;
  position: relative;
}
.contact-wrap .contacts .custom-input:has(.error) input {
  border: 1px solid #b82e2e;
}
.contact-wrap .contacts .custom-input:has(.error) label {
  color: transparent;
}
.contact-wrap .contacts .custom-input input {
  width: 100%;
  height: 40px;
  outline: 0;
  border: 1px solid #e6e6e6;
  color: #737373;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  border-radius: 16px;
  padding: 0 16px;
  font-family: "Montserrat", sans-serif;
}
.contact-wrap .contacts .custom-input input::placeholder {
  font-family: "Montserrat", sans-serif;
  color: #737373;
}
.contact-wrap .contacts .custom-input textarea {
  width: 100%;
  outline: 0;
  border: 1px solid #e6e6e6;
  color: #737373;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  border-radius: 16px;
  padding: 16px;
  font-family: "Montserrat", sans-serif;
  height: 80px;
}
@media only screen and (min-width: 1700px) {
  .contact-wrap .contacts .custom-input textarea {
    height: 224px;
  }
}
.contact-wrap .contacts .custom-input textarea::placeholder {
  font-family: "Montserrat", sans-serif;
}
.contact-wrap .contacts .custom-input label {
  position: absolute;
  top: 16px;
  left: 16px;
  color: #737373;
  font-family: "Montserrat", sans-serif;
}
.contact-wrap .contacts .custom-input label span {
  color: #fc4c02;
}
.contact-wrap .contacts .wap-socials {
  width: 100%;
  position: absolute;
  bottom: 0px;
}
@media only screen and (max-width: 1025px) {
  .contact-wrap .contacts .wap-socials {
    position: relative;
  }
}
.contact-wrap .contacts .socials {
  width: 100%;
  gap: 12px;
}
.contact-wrap .contacts .socials .s-item {
  font-size: 14px;
  width: 100%;
  justify-content: center;
  align-items: center;
  border: 1px solid #dedede;
  padding: 0 16px;
  height: 40px;
  -webkit-border-radius: 44px;
  -moz-border-radius: 44px;
  -ms-border-radius: 44px;
  border-radius: 44px;
}
@media only screen and (min-width: 1700px) {
  .contact-wrap .contacts .socials .s-item {
    padding: 24px;
  }
}
@media only screen and (max-width: 520px) {
  .contact-wrap .contacts .socials .s-item {
    font-size: 12px;
  }
}
.contact-wrap .contacts .socials .s-item a {
  color: #222222;
}
.contact-wrap .contacts .socials .s-item img {
  width: 20px;
  margin-right: 4px;
}
.contact-wrap .contacts .socials.socials-contact {
  margin-bottom: 20px;
}
@media only screen and (max-width: 1025px) {
  .contact-wrap .contacts .socials.socials-contact {
    margin-bottom: 12px;
  }
}
.contact-wrap .contacts .socials.socials-location {
  display: block;
}
@media only screen and (max-width: 1025px) {
  .contact-wrap .contacts .btn-send {
    margin-bottom: 16px;
  }
}
.contact-wrap .error-note,
.contact-wrap .success-note {
  top: 124px;
  max-width: 600px;
}

.checkout {
  width: 100%;
}
@media only screen and (max-width: 1025px) {
  .checkout {
    padding: 8rem 0;
    height: auto;
  }
}
.checkout form {
  width: 100%;
}

.checkout-box {
  width: 100%;
  color: #222222;
}
@media only screen and (max-width: 1025px) {
  .checkout-box {
    flex-direction: column;
    height: 100%;
  }
}
.checkout-box .checkout-box-inner {
  margin-right: 16px;
}
@media only screen and (max-width: 1025px) {
  .checkout-box .checkout-box-inner {
    width: 100%;
    margin-right: 0;
    order: 2;
  }
}
.checkout-box .checkout-form {
  width: 100%;
  background: #ffffff;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  border-radius: 24px;
  border: 1px solid #e2e2e2;
  padding: 24px;
}
.checkout-box .checkout-form h2 {
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 16px;
  color: #414141;
  font-weight: normal;
  font-family: "Montserrat", sans-serif;
}
.checkout-box .checkout-form .left-mg {
  margin-right: 24px;
}
.checkout-box .checkout-form .checkut-form {
  position: relative;
}
.checkout-box .checkout-form .checkut-form.space {
  margin-bottom: 16px;
}
.checkout-box .checkout-form .checkut-form label {
  position: absolute;
  color: #737373;
  font-size: 18px;
  top: 14px;
  left: 16px;
}
.checkout-box .checkout-form .checkut-form textarea {
  padding: 12px 16px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  outline: 0;
  border: 1px solid #e6e6e6;
  color: #737373;
  font-size: 18px;
}
.checkout-box .checkout-form .checkut-form textarea::placeholder {
  color: #b1b1b1;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
}
.checkout-box .checkout-form .checkut-form input,
.checkout-box .checkout-form .checkut-form .select-toggle {
  flex-grow: 1;
  padding: 0 16px;
  height: 40px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  outline: 0;
  border: 1px solid #e6e6e6;
  color: #737373;
  font-size: 16px;
}
.checkout-box .checkout-form .checkut-form input::placeholder,
.checkout-box .checkout-form .checkut-form .select-toggle::placeholder {
  color: #b1b1b1;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
}
.checkout-box .checkout-form .checkut-form input a,
.checkout-box .checkout-form .checkut-form .select-toggle a {
  color: #b1b1b1;
}
.checkout-box .checkout-form .checkut-form:has(.error) input {
  border: 1px solid #b82e2e;
}
.checkout-box .checkout-form .checkut-form:has(.error) label {
  color: transparent;
}
.checkout-box .checkout-form .checkut-form:has(.error) .error-m {
  color: #b82e2e;
  font-size: 14px;
  line-height: 24px;
  position: absolute;
  bottom: -22px;
}
.checkout-box .checkout-form .checkut-form.flex__row input:not(:last-child) {
  margin-right: 16px;
}
@media only screen and (max-width: 520px) {
  .checkout-box .checkout-form .payment-methods {
    flex-direction: column;
  }
}
.checkout-box .checkout-form .payment-methods a {
  width: auto;
  height: 50px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  border-radius: 100px;
  border: 1px solid #e6e6e6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  margin-right: 12px;
  padding: 0 16px;
  color: #414141;
  font-size: 16px;
}
@media only screen and (max-width: 520px) {
  .checkout-box .checkout-form .payment-methods a {
    height: 44px;
    margin-bottom: 12px;
    margin-right: 0;
  }
}
.checkout-box .checkout-form .payment-methods a img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  object-fit: contain;
}
.checkout-box .checkout-item {
  width: 100%;
  margin-bottom: 8px;
}
@media only screen and (max-width: 1025px) {
  .checkout-box .checkout-item .left-side {
    flex-direction: column;
  }
}
.checkout-box .order-box {
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid #e2e2e2;
  background: #ffffff;
}
@media only screen and (max-width: 1025px) {
  .checkout-box .order-box {
    width: 100%;
    order: 1;
    margin-bottom: 16px;
  }
}
.checkout-box .order-box h3 {
  font-size: 24px;
  color: #414141;
  font-family: "Zen Antique", serif;
}
.checkout-box .order-box .order-row {
  padding: 9px 0;
  width: 100%;
}
.checkout-box .order-box .order-row p {
  color: #737373;
  text-transform: capitalize;
  font-size: 14px;
  flex: 1;
}
.checkout-box .order-box .order-row span {
  font-size: 14px;
  font-weight: normal;
  color: #737373;
}
.checkout-box .order-box .total {
  width: 100%;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}
.checkout-box .order-box .total span {
  font-size: 24px;
  font-weight: normal;
  color: #0c4831;
  font-family: "Zen Antique", serif;
}
.checkout-box .order-box .order-input-wrapper {
  width: 100%;
  height: 44px;
  border: 1px solid #e6e6e6;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  margin-top: 16px;
}
.checkout-box .order-box .order-input-wrapper input {
  width: 82%;
  height: 100%;
  outline: 0;
  border: 0;
  padding: 0 16px;
  color: #999999;
  font-size: 16px;
}
.checkout-box .order-box .order-input-wrapper input::placeholder {
  color: #999999;
  font-family: "Montserrat", sans-serif;
}
.checkout-box .order-box .order-input-wrapper .apply-btn {
  position: absolute;
  width: 18%;
  height: 100%;
  text-align: right;
  right: 0;
  padding-right: 16px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fc4c02;
  font-size: 16px;
  cursor: pointer;
}
.checkout-box .checkout-item .product-img {
  width: 170px;
  object-fit: contain;
  margin-right: 32px;
}
@media only screen and (max-width: 1025px) {
  .checkout-box .checkout-item .product-img {
    width: 100%;
    height: 324px;
    object-fit: contain;
    margin-right: 0;
  }
}
.checkout-box .checkout-item h3 {
  font-size: 24px;
  line-height: 40px;
  color: #0c4831;
  font-family: "Zen Antique", serif;
}
.checkout-box .checkout-item ul {
  font-size: 14px;
  margin-bottom: 8px;
  color: #555555;
}
.checkout-box .checkout-item ul:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 1700px) {
  .checkout-box .checkout-item ul {
    font-size: 18px;
    margin-bottom: 24px;
  }
}
.checkout-box .checkout-item ul li {
  font-size: 14px;
  line-height: 24px;
  color: #555555;
  display: flex;
  align-items: flex-start;
  margin: 2px 0;
}
@media only screen and (min-width: 1700px) {
  .checkout-box .checkout-item ul li {
    font-size: 18px;
    line-height: 32px;
  }
}
.checkout-box .checkout-item ul li img {
  margin-right: 8px;
  margin-top: 2px;
}
@media only screen and (max-width: 1025px) {
  .checkout-box .checkout-inputs {
    flex-direction: column;
  }
  .checkout-box .checkout-inputs .left-mg {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.checkout-box .product-count {
  justify-content: space-between;
}
.checkout-box .add-cart .circle {
  width: 44px;
  height: 44px;
  background: #ffffff;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  border-radius: 100px;
  border: 1px solid #e6e6e6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}
.checkout-box .add-cart .circle img {
  width: 18px;
}
.checkout-box .add-cart .counter-row {
  background: #ffffff;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  border-radius: 100px;
  border: 1px solid #e6e6e6;
  padding: 0 16px;
  margin-right: 8px;
  height: 44px;
}
.checkout-box .add-cart .counter-row .decrease,
.checkout-box .add-cart .counter-row .increase {
  width: 44px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.checkout-box .add-cart .counter {
  width: 64px;
  height: 100%;
  border: 0;
  outline: 0;
  text-align: center;
  font-size: 18px;
  color: #222222;
  font-weight: 500;
  appearance: none;
  -webkit-appearance: none;
}
@media only screen and (max-width: 1025px) {
  .checkout-box .add-cart .counter {
    width: 164px;
  }
}
.checkout-box .right-side {
  justify-content: space-between;
  align-items: flex-end;
}
.checkout-box .right-side .share-btn {
  width: 44px;
  height: 44px;
  background: #ffffff;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.checkout-box .right-side .share-btn img {
  width: 18px;
}
.checkout-box .right-side p {
  font-size: 32px;
  font-weight: 600;
}

.error-note,
.success-note {
  position: absolute;
  bottom: 24px;
  left: -100%;
  width: auto;
  text-align: left;
  padding: 8px 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  border-radius: 16px;
  animation: noteAnimation 0.3s ease-in-out 1s forwards;
}
.error-note h1,
.success-note h1 {
  font-size: 18px;
  font-weight: bold;
}

@keyframes noteAnimation {
  from {
    left: -100%;
  }
  to {
    left: 24px;
  }
}
.error-note {
  color: #b82e2e;
  background: rgba(184, 46, 46, 0.2);
}

.success-note {
  color: forestgreen;
  background: rgba(34, 139, 34, 0.2);
}

@media only screen and (max-width: 1025px) {
  .lang {
    display: none;
  }
}

.toggleMenu {
  position: relative;
  margin-left: 16px;
  cursor: pointer;
}
.toggleMenu li a i,
.toggleMenu li a svg {
  margin-left: 8px;
  font-size: 16px;
}
.toggleMenu .dropdown-menu {
  width: 132px;
  position: absolute;
  background: #ffffff;
  padding: 8px 0;
  right: 0;
  top: 34px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  border-radius: 16px;
  z-index: 2;
  overflow: hidden;
  opacity: 0;
  box-shadow: 1px 2px 12px rgba(0, 0, 0, 0.1);
}
.toggleMenu .dropdown-menu li {
  font-size: 18px;
  color: #222222;
  padding: 0 16px;
  height: 44px;
  margin: 0 !important;
  text-align: center;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #dcdcdc;
}
.toggleMenu .dropdown-menu li a {
  width: 100%;
  text-align: center;
  color: #222222;
}
.toggleMenu .dropdown-menu li a.active {
  color: #fc4c02;
}
.toggleMenu .dropdown-menu li:last-child {
  border-bottom: 0;
}
.toggleMenu .dropdown-menu.show {
  animation: fade-in 0.3s ease-in-out;
  opacity: 1;
}
@keyframes fade-in {
  from {
    opacity: 0;
    top: 54px;
  }
  to {
    opacity: 1;
    top: 36px;
  }
}

.select-toggle {
  position: relative;
  width: 100%;
  height: 44px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  background: #ffffff;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  margin-right: 16px;
  font-size: 18px;
  color: #222222;
}
.select-toggle li {
  width: 100%;
}
.select-toggle li a {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #222222;
}
.select-toggle li a i,
.select-toggle li a svg {
  font-size: 14px;
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.select-toggle .select-dropdown {
  width: 100%;
  position: absolute;
  background: #ffffff;
  padding: 8px 0;
  right: 0;
  top: 46px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  z-index: 2;
  overflow: hidden;
  display: none;
}
.select-toggle .select-dropdown li {
  font-size: 18px;
  color: #222222;
  padding: 0 16px;
  height: 44px;
  margin: 0 !important;
  text-align: left;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #dcdcdc;
}
.select-toggle .select-dropdown li:last-child {
  border-bottom: 0;
}
.select-toggle .select-dropdown.show {
  display: block;
}

.success-page {
  width: 100%;
  height: 100vh;
}

.success-page-inner {
  width: 100%;
  height: 100vh;
  position: relative;
}
.success-page-inner h1 {
  font-size: 32px;
  font-weight: normal;
  color: #0c4831;
  font-family: "Zen Antique", serif;
  margin-bottom: 8px;
  text-align: center;
}
@media only screen and (max-width: 520px) {
  .success-page-inner h1 {
    font-size: 24px;
    line-height: 32px;
  }
}
.success-page-inner p {
  color: #222222;
  font-size: 18px;
  line-height: 32px;
  padding-bottom: 10%;
  text-align: center;
}
.success-page-inner img {
  position: absolute;
  bottom: 0;
  width: 100%;
  object-fit: contain;
}

@keyframes tilt-shaking-minus {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-2deg);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes tilt-shaking-plus {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-2px, -2px) rotate(4deg);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeBottomTop {
  0% {
    transform: translate(0px, 0px);
    opacity: 1;
    visibility: visible;
  }
  100% {
    transform: translate(0px, -100%);
    opacity: 1;
    visibility: visible;
  }
}
@keyframes fadeOutTop {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes fadeAnimation {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0%);
  }
}
@keyframes fadeTopAnimation {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(-100%);
  }
}
@keyframes fadeDownAnimation {
  from {
    transform: translateY(0%);
  }
  to {
    transform: translateY(100%);
  }
}
@keyframes fadeBear {
  from {
    transform: translateY(0%, -50%);
  }
  to {
    transform: translate(-50%, -50%);
  }
}
@keyframes starRotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.footer {
  position: fixed;
  width: 100%;
  height: 86px;
  bottom: 0;
  left: 0;
  color: #222222;
}
@media only screen and (max-width: 1025px) {
  .footer {
    height: auto;
    bottom: 16px;
  }
}
.footer__container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (min-width: 1700px) {
  .footer__container {
    max-width: 100%;
    padding: 0 104px;
  }
}
@media only screen and (max-width: 1440px) {
  .footer__container {
    max-width: 100%;
    padding: 0 44px;
  }
}
@media only screen and (max-width: 1281px) {
  .footer__container {
    max-width: 100%;
    padding: 0 32px;
  }
}
@media only screen and (max-width: 1025px) {
  .footer__container {
    max-width: 100%;
    padding: 0 24px;
    height: auto;
    display: none;
  }
}
.footer__container ul li:first-child a {
  text-transform: none;
}
.footer__container ul li a {
  font-size: 18px;
  margin-left: 22px;
  color: #222222;
  transition: all 0.3s;
  text-decoration: underline;
  line-height: 24px;
  text-transform: uppercase;
}
.footer__container ul li a:hover, .footer__container ul li a.active {
  color: #fc4c02;
}

.magnific-img {
  display: inline-block;
  width: 100%;
  overflow: hidden;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  border-radius: 16px;
}

.magnific-img img {
  width: 100%;
  height: auto;
  transition: all 0.3s ease-in-out;
}

.magnific-img:hover img {
  transform: scale(1.05);
}

a.image-popup-vertical-fit {
  cursor: pointer;
  width: 100%;
  height: 100%;
  display: block;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  /* ideally, transition speed should match zoom duration */
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.98;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}

button.mfp-arrow,
.mfp-counter {
  opacity: 0 !important;
  transition: opacity 200ms ease-in, opacity 2000ms ease-out;
}

.mfp-container:hover button.mfp-arrow,
.mfp-container:hover .mfp-counter {
  opacity: 1 !important;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #ccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #ccc;
}

.mfp-preloader a:hover {
  color: #fff;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #fff;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #fff;
  right: 24px;
  top: 24px;
  position: fixed;
  text-align: right;
  padding-right: 6px;
  width: 100%;
  font-size: 64px;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #ccc;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -40px;
  padding: 0;
  width: 80px;
  height: 80px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin: 24px;
  color: #fff;
  font-size: 32px;
  line-height: 32px;
  font-family: var(--fa-style-family, "Font Awesome 6 Free");
  font-weight: var(--fa-style, 900);
}

.mfp-arrow-left:after {
  content: "\f104";
}

.mfp-arrow-right:before {
  content: "\f105";
}

.mfp-arrow-left {
  left: 32px;
}

.mfp-arrow-right {
  right: 32px;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: 600px;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
#where {
  background: #ffe175;
  min-height: 100vh;
  height: auto;
}
@media only screen and (max-width: 1025px) {
  #where {
    padding-top: 108px;
  }
}

.about {
  width: 100%;
  min-height: 100vh;
  height: auto;
}
@media only screen and (max-width: 1025px) {
  .about {
    height: auto;
  }
}
.about__sec--1 {
  width: 100%;
  height: 100%;
  color: #222222;
  position: relative;
  margin: 8rem 0;
}
@media only screen and (max-width: 1025px) {
  .about__sec--1 {
    display: flex;
    flex-direction: column;
  }
}
.about__sec--1 h2 {
  text-align: center;
  font-size: 32px;
  line-height: 40px;
  color: #0c4831;
  font-family: "Zen Antique", serif;
  margin-bottom: 32px;
}
.about__sec--1 .benefits {
  display: flex;
  flex-wrap: wrap;
  width: 1300px;
  margin: 0 auto;
  justify-content: center;
  gap: 24px;
  padding: 24px 0;
}
@media only screen and (max-width: 1281px) {
  .about__sec--1 .benefits {
    width: 100%;
  }
}
@media only screen and (max-width: 1025px) {
  .about__sec--1 .benefits {
    flex-direction: column;
    align-items: center;
    padding: 0;
  }
}
.about__sec--1 .benefits__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: #ffffff;
  color: #555555;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  border-radius: 100px;
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.08);
  width: auto;
  transform: rotate(var(--rotate, 0deg));
  transition: transform 0.3s;
  margin: 16px 0;
  cursor: pointer;
}
@media only screen and (max-width: 1281px) {
  .about__sec--1 .benefits__item {
    padding: 12px;
  }
}
@media only screen and (max-width: 1025px) {
  .about__sec--1 .benefits__item {
    width: fit-content;
  }
}
.about__sec--1 .benefits__item:hover, .about__sec--1 .benefits__item:active, .about__sec--1 .benefits__item.active {
  background: #fc4c02;
  color: #ffffff;
}
.about__sec--1 .benefits__item:hover .icon, .about__sec--1 .benefits__item:active .icon, .about__sec--1 .benefits__item.active .icon {
  background-color: #ffffff;
}
.about__sec--1 .benefits__item img {
  margin-right: 8px;
  fill: #555555;
}
.about__sec--1 .benefits__item .icon {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  background-color: #555555;
}
@media only screen and (max-width: 1281px) {
  .about__sec--1 .benefits__item .icon {
    width: 16px;
    height: 16px;
  }
}
.about__sec--1 .benefits__item .icon--gift {
  -webkit-mask: url("/baroor/images/gift.svg") no-repeat center;
  mask: url("/baroor/images/gift.svg") no-repeat center;
  mask-size: contain;
  -webkit-mask-size: contain;
}
.about__sec--1 .benefits__item .icon--baby {
  -webkit-mask: url("/baroor/images/baby.svg") no-repeat center;
  mask: url("/baroor/images/baby.svg") no-repeat center;
  mask-size: contain;
  -webkit-mask-size: contain;
}
.about__sec--1 .benefits__item .icon--music-notes {
  -webkit-mask: url("/baroor/images/music-notes.svg") no-repeat center;
  mask: url("/baroor/images/music-notes.svg") no-repeat center;
  mask-size: contain;
  -webkit-mask-size: contain;
}
.about__sec--1 .benefits__item .icon--brain {
  -webkit-mask: url("/baroor/images/brain.svg") no-repeat center;
  mask: url("/baroor/images/brain.svg") no-repeat center;
  mask-size: contain;
  -webkit-mask-size: contain;
}
.about__sec--1 .benefits__item .icon--newborn-mother {
  -webkit-mask: url("/baroor/images/newborn-mother.svg") no-repeat center;
  mask: url("/baroor/images/newborn-mother.svg") no-repeat center;
  mask-size: contain;
  -webkit-mask-size: contain;
}
.about__sec--1 .benefits__item .icon--pregnent {
  -webkit-mask: url("/baroor/images/pregnent.svg") no-repeat center;
  mask: url("/baroor/images/pregnent.svg") no-repeat center;
  mask-size: contain;
  -webkit-mask-size: contain;
}
.about__sec--1 .benefits__item p {
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  line-height: 40px;
  margin: 0;
}
@media only screen and (max-width: 1281px) {
  .about__sec--1 .benefits__item p {
    font-size: 16px;
    line-height: 24px;
  }
}
.about__sec--1 .benefits-content {
  padding: 64px 0;
  width: 100%;
}
@media only screen and (max-width: 1025px) {
  .about__sec--1 .benefits-content {
    flex-direction: column;
  }
}
.about__sec--1 .benefits-content__text {
  width: 25%;
}
@media only screen and (max-width: 1025px) {
  .about__sec--1 .benefits-content__text {
    width: 100%;
    margin-bottom: 104px;
  }
}
.about__sec--1 .benefits-content__text h3 {
  font-size: 24px;
  color: #0c4831;
  line-height: 40px;
  font-family: "Zen Antique", serif;
  margin-bottom: 8px;
}
.about__sec--1 .benefits-content__text p {
  font-size: 16px;
  color: #676767;
  line-height: 24px;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 16px;
}
.about__sec--1 .benefits-content__text button {
  width: fit-content;
  text-transform: capitalize;
}
.about__sec--1 .benefits-content__img {
  width: 75%;
  gap: 16px;
  margin-left: 24px;
}
@media only screen and (max-width: 1025px) {
  .about__sec--1 .benefits-content__img {
    display: flex;
    overflow-x: scroll;
    scroll-behavior: smooth;
    width: 100%;
    margin-left: 0;
    scroll-snap-type: x mandatory;
    padding-right: 20%;
  }
}
.about__sec--1 .benefits-content__img-item {
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  border-radius: 40px;
  flex: 0 0 116px;
  transition: flex 0.3s ease;
  height: 332px;
  overflow: hidden;
}
@media only screen and (min-width: 1700px) {
  .about__sec--1 .benefits-content__img-item {
    flex: 0 0 141px;
    height: 424px;
  }
}
@media only screen and (max-width: 1281px) {
  .about__sec--1 .benefits-content__img-item {
    flex: 0 0 90px;
    height: 324px;
  }
}
@media only screen and (max-width: 1025px) {
  .about__sec--1 .benefits-content__img-item {
    flex: 0 0 100%;
  }
}
.about__sec--1 .benefits-content__img-item.active {
  flex: 1;
}
@media only screen and (max-width: 1025px) {
  .about__sec--1 .benefits-content__img-item.active {
    flex: 0 0 100%;
  }
}
.about__sec--1 .benefits-content__img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about--text-wrapper {
  padding: 108px 0 164px 0;
  position: relative;
}
@media only screen and (max-width: 1025px) {
  .about--text-wrapper {
    padding: 0;
  }
}
.about--text-wrapper h6 {
  font-size: 32px;
  line-height: 40px;
  text-align: center;
  width: 1054px;
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -25%);
}
@media only screen and (max-width: 1025px) {
  .about--text-wrapper h6 {
    width: 100%;
    padding: 44px 24px;
    position: relative;
    order: 2;
    left: 0;
    top: 0;
    align-items: flex-end;
    transform: none;
  }
}
@media only screen and (max-width: 520px) {
  .about--text-wrapper h6 {
    padding: 16px;
    font-size: 24px;
    line-height: 32px;
    text-align: left;
  }
}
.about .divider {
  width: 100%;
  margin-bottom: 64px;
}
.about__gallery {
  width: 100%;
  position: absolute;
  bottom: 90px;
  left: 0;
  display: grid;
  gap: 16px;
  height: 232px;
  grid-template-columns: repeat(auto-fit, minmax(232px, 1fr));
}
@media only screen and (min-width: 1700px) {
  .about__gallery {
    height: 330px;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  }
}
@media only screen and (max-width: 1440px) {
  .about__gallery {
    height: 200px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}
@media only screen and (max-width: 1281px) {
  .about__gallery {
    height: 164px;
    grid-template-columns: repeat(6, 1fr);
  }
}
@media only screen and (max-width: 1025px) {
  .about__gallery {
    order: 1;
    position: relative;
    grid-template-columns: repeat(3, 1fr);
    place-items: center;
    bottom: 0;
    height: 100%;
    padding-top: 64px;
  }
}
@media only screen and (max-width: 520px) {
  .about__gallery {
    place-items: baseline;
    padding-top: 32px;
  }
}
.about__gallery__item {
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  -ms-border-radius: 60px;
  border-radius: 60px;
  height: 232px;
  overflow: hidden;
}
.about__gallery__item:first-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
@media only screen and (max-width: 1025px) {
  .about__gallery__item:first-child {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
  }
}
.about__gallery__item:last-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
@media only screen and (max-width: 1025px) {
  .about__gallery__item:last-child {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
  }
}
@media only screen and (min-width: 1700px) {
  .about__gallery__item {
    height: 330px;
  }
}
@media only screen and (max-width: 1440px) {
  .about__gallery__item {
    height: 200px;
  }
}
@media only screen and (max-width: 1281px) {
  .about__gallery__item {
    height: 164px;
  }
}
@media only screen and (max-width: 1025px) {
  .about__gallery__item {
    width: 224px;
    height: 224px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
  }
  .about__gallery__item:nth-child(2) {
    top: 50%;
  }
  .about__gallery__item:nth-child(3) {
    top: 15%;
  }
  .about__gallery__item:nth-child(5) {
    width: 232px;
    height: 232px;
  }
  .about__gallery__item:nth-child(6) {
    width: 264px;
    height: 264px;
  }
  .about__gallery__item:nth-child(4) {
    order: 5;
    width: 180px;
    height: 180px;
    top: 20%;
  }
  .about__gallery__item:nth-child(6) {
    order: 4;
    left: -25%;
  }
  .about__gallery__item:nth-child(5) {
    right: -25%;
    order: 6;
  }
}
@media only screen and (max-width: 520px) {
  .about__gallery__item {
    width: 96px;
    height: 96px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
  }
  .about__gallery__item:nth-child(2) {
    top: 50%;
  }
  .about__gallery__item:nth-child(3) {
    top: 10%;
  }
  .about__gallery__item:nth-child(5) {
    width: 100px;
    height: 100px;
  }
  .about__gallery__item:nth-child(6) {
    width: 110px;
    height: 110px;
  }
  .about__gallery__item:nth-child(4) {
    order: 5;
    width: 80px;
    height: 80px;
    top: 20%;
  }
  .about__gallery__item:nth-child(6) {
    order: 4;
    left: -25%;
  }
  .about__gallery__item:nth-child(5) {
    right: -32%;
    order: 6;
  }
}
.about__gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.banner {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.banner__inner {
  background: url("./../images/banner.jpg") no-repeat center;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.banner__content {
  width: 720px;
  position: absolute;
  left: 50%;
  top: 25%;
  transform: translate(-50%, -25%);
  transition: all 0.3s;
}
.banner__content.arm {
  width: 1100px;
}
.banner__content.push-top {
  left: 50%;
  top: -50%;
  transform: translate(-50%, 50%);
}
@media only screen and (max-width: 520px) {
  .banner__content {
    width: 100%;
  }
}
.banner__content h1 {
  font-family: "Zen Antique", serif;
  font-size: 116px;
  color: #0c4831;
  margin-bottom: 24px;
}
.banner__content h1.arm {
  font-size: 64px;
  line-height: 80px;
  text-align: center;
  font-family: "Montserrat arm regular";
  font-weight: 700;
  text-transform: uppercase;
}
@media only screen and (max-width: 520px) {
  .banner__content h1.arm {
    font-size: 32px;
    line-height: 44px;
  }
}
@media only screen and (min-width: 1700px) {
  .banner__content h1 {
    font-size: 124px;
  }
}
@media only screen and (max-width: 520px) {
  .banner__content h1 {
    font-size: 56px;
  }
}
.banner__content p {
  color: #0c4831;
  line-height: 30px;
  font-size: 18px;
  text-align: center;
}
@media only screen and (min-width: 1700px) {
  .banner__content p {
    line-height: 42px;
    font-size: 24px;
  }
}
@media only screen and (max-width: 520px) {
  .banner__content p {
    font-size: 12px;
    line-height: 24px;
  }
}
.banner__bear {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
.banner__bear img {
  width: auto;
  height: 100%;
  margin: 0 auto;
}
.banner--btn {
  width: 124px;
  height: 124px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background: #fc4c02;
  color: #ffffff;
  font-size: 16px;
  position: absolute;
  top: 66%;
  left: 75%;
  border: 0;
  outline: 0;
  text-transform: capitalize;
  font-weight: normal;
  cursor: pointer;
}
@media only screen and (min-width: 1700px) {
  .banner--btn {
    width: 140px;
    height: 140px;
    top: 68%;
  }
}
.banner--btn.hide {
  animation: animated-hide 0.3s;
  opacity: 0;
}
@media only screen and (max-width: 1025px) {
  .banner--btn {
    width: 164px;
    top: 58%;
    left: 50%;
    transform: translateX(-50%);
    height: 55px;
    -webkit-border-radius: 32px;
    -moz-border-radius: 32px;
    -ms-border-radius: 32px;
    border-radius: 32px;
  }
}
@keyframes animated-hide {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0.8;
  }
  75% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
  }
}
.banner .animated-bear {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.banner .animated-bear.hide {
  display: none;
}
.banner .animated-bear .wrap-bear {
  width: 100%;
  height: 100vh;
  object-fit: contain;
  object-position: center;
  position: absolute;
}
.banner .animated-bear .zoomOut {
  animation: zoomOut 2s ease-in-out;
  pointer-events: all;
}
@keyframes zoomOut {
  0% {
    bottom: -36%;
    transform: scale(1.8);
  }
  100% {
    bottom: -15%;
    transform: scale(0.8);
  }
}
.banner .rotated-bear {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.banner .rotated-bear .viewer {
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner .rotated-bear #pdtViewer {
  width: 100%;
  margin: 0 auto;
  height: 100%;
  position: relative;
}
.banner .rotated-bear .viewer img {
  padding: 0;
  user-select: none;
  -moz-user-select: none;
}
.banner .rotated-bear .static img {
  position: absolute;
  pointer-events: none;
  transform: translate3d(0px, 60%, 0px) scale(1.1);
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.banner .rotated-bear .static img.reveal-bear {
  transform: translate3d(0px, 0%, 0px) scale(1);
}
@media only screen and (max-width: 1025px) {
  .banner .rotated-bear .static img {
    transform: translate3d(0px, 62%, 0px) scale(1.1);
  }
}
.banner .rotated-bear .animated-top img {
  pointer-events: all;
  height: 100%;
}
@media only screen and (max-width: 1025px) {
  .banner .rotated-bear .animated-top img {
    object-fit: cover;
  }
}
@keyframes animatedTop {
  0% {
    transform: translate3d(80px, 160px, 0px) scale(1.3);
    opacity: 0.6;
  }
  100% {
    transform: translate3d(0px, 0px, 0px) scale(1.15);
    opacity: 1;
  }
}
.banner .rotated-bear #dummy {
  display: none;
}
.banner .rotated-bear img.draggable {
  cursor: e-resize;
}
.banner .rotated-bear img.keys {
  cursor: pointer;
}
@media screen and (max-width: 1030px) {
  .banner .rotated-bear #pdtViewer img {
    width: 100%;
  }
}
@media screen and (max-width: 992px) {
  .banner .rotated-bear .hidePhone {
    display: none;
  }
  .banner .rotated-bear .btnDiv {
    zoom: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .banner .rotated-bear .fork {
    width: 100px;
    position: absolute !important;
  }
  .banner .rotated-bear h1 {
    margin-top: 60px;
  }
}
.banner .rotated-bear .ring-container {
  position: absolute;
  bottom: 27%;
  width: 100%;
  height: 44px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 38px;
  display: none;
  cursor: pointer;
  z-index: 3;
}
@media only screen and (max-width: 1025px) {
  .banner .rotated-bear .ring-container {
    bottom: 28%;
  }
}
@media only screen and (max-width: 520px) {
  .banner .rotated-bear .ring-container {
    bottom: 27%;
  }
}
.banner .rotated-bear .ring-container.show {
  display: flex;
}
.banner .rotated-bear .ring-container .circle {
  width: 26px;
  height: 26px;
  background-color: #ee4e54;
  border-radius: 50%;
  right: 3px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: circle 1.2s ease-out infinite;
}
.banner .rotated-bear .ring-container .circle .music-ico {
  position: absolute;
  width: 15px;
  height: 15px;
  transform: none;
  object-fit: contain;
}
@keyframes circle {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}
.banner .rotated-bear .ring-container .ringring {
  background-color: #ee4e54;
  border-radius: 30px;
  height: 41px;
  width: 41px;
  position: relative;
  left: 30px;
  top: 0;
  animation: pulsate 1.5s ease-out infinite;
  opacity: 1;
}
@keyframes pulsate {
  0% {
    transform: scale(0.1, 0.1);
    opacity: 1;
    filter: blur(0px);
  }
  50% {
    opacity: 0.4;
    filter: blur(0px);
  }
  100% {
    transform: scale(1.2, 1.2);
    opacity: 0.3;
    filter: blur(1px);
  }
}

.equalizer {
  display: flex;
  /* Displaying bars in a row */
  flex-direction: row;
  align-items: flex-end;
  gap: 6px;
  height: 44px;
  margin-top: 24px;
}
.equalizer .bar {
  width: 2px;
  height: 100%;
  background: #fef9e6;
  transform-origin: bottom;
}
.equalizer .bar.active {
  animation: bounce 1s infinite ease-in-out;
  background: #fc4c02;
  animation-delay: calc(0.2s * var(--bar-index));
  transition: background-color 0.2s ease-in-out;
}

@keyframes bounce {
  0%, 100% {
    transform: scaleY(0.4);
  }
  50% {
    transform: scaleY(1);
  }
}
.mobile-lang-bar {
  display: none;
}
@media only screen and (max-width: 1025px) {
  .mobile-lang-bar {
    display: flex;
    flex-direction: column;
    width: 100%;
    color: #222222;
  }
  .mobile-lang-bar .lang {
    display: block;
    text-align: center;
    width: 100%;
    margin: 32px 0;
  }
  .mobile-lang-bar .lang li a {
    line-height: 44px;
  }
  .mobile-lang-bar .dropdown-menu {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    line-height: 32px;
    margin-bottom: 8px;
    margin-top: 16px;
    opacity: 1;
    top: inherit;
    right: inherit;
    border-radius: 0;
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
    padding: 0;
  }
  .mobile-lang-bar .dropdown-menu li {
    line-height: 32px;
    margin-bottom: 0px;
    border: 0;
  }
  .mobile-lang-bar .dropdown-menu li a {
    line-height: 32px;
    margin-bottom: 0px;
    color: #222222;
  }
  .mobile-lang-bar .dropdown-menu li a.active {
    color: #fc4c02;
  }
}

.carousel-wrapper {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.carousel-wrapper .big-slide {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  box-shadow: 1px 2px 16px -16px rgba(0, 0, 0, 0.8);
  margin: 0 60px;
  padding: 24px;
  width: calc(100% - 120px);
  height: 100%;
  min-height: 400px;
}
@media only screen and (max-width: 1025px) {
  .carousel-wrapper .big-slide {
    margin: 0 auto;
    width: 100%;
    padding: 16px;
  }
}
.carousel-wrapper .big-slide img {
  object-fit: cover;
  width: 65%;
  height: 65%;
}
@media only screen and (min-width: 1700px) {
  .carousel-wrapper .big-slide img {
    width: 70%;
    height: 70%;
  }
}
.carousel-wrapper .thumbnail-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  gap: 16px;
}
.carousel-wrapper .arrow-btn {
  background: #ffffff;
  color: #c0c0c0;
  font-size: 32px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
  z-index: 2;
  display: flex;
  justify-content: center;
}
.carousel-wrapper .arrow-btn:hover {
  background: #fc4c02;
  color: #ffffff;
}
.carousel-wrapper .thumbnail-wrapper {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-right: 40px;
  flex: 1;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
@media only screen and (min-width: 1700px) {
  .carousel-wrapper .thumbnail-wrapper {
    gap: 12px;
  }
}
.carousel-wrapper .thumbnail-wrapper::-webkit-scrollbar {
  display: none;
}
.carousel-wrapper .thumbnail {
  flex: 0 0 132px;
  height: 132px;
  background: #ffffff;
  padding: 8px;
  object-fit: cover;
  border: 2px solid transparent;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: border 0.2s;
  scroll-snap-align: start;
  box-shadow: 1px 2px 16px -16px rgba(0, 0, 0, 0.8);
}
@media only screen and (min-width: 1700px) {
  .carousel-wrapper .thumbnail {
    flex: 0 0 166px;
    height: 166px;
    padding: 12px;
  }
}
.carousel-wrapper .thumbnail.active-thumb {
  border-color: #fc4c02;
}

.terms-inner-page {
  max-width: 1000px;
  height: 100%;
  position: relative;
  margin: 0 auto;
  margin-top: 108px;
  background: #ffffff;
  border-top-right-radius: 24px;
  border-top-left-radius: 24px;
  padding: 24px;
}
.terms-inner-page h1 {
  font-size: 18px;
  text-align: left;
  margin-bottom: 24px;
}
.terms-inner-page p {
  text-align: justify;
}

@media only screen and (max-width: 1025px) {
  .socials-ul {
    width: 100%;
    margin-top: 32px;
  }
  .socials-ul a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
  }
}/*# sourceMappingURL=main.css.map */