/* ---------------- Google fonts ------------------ */
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap");
@import url("https://fonts.googleapis.com/css?family=Poppins:400,500,700&display=swap");
@font-face {
  font-family: "Arboria-Medium";
  src: url("/fonts/dda65d7f418f4ab23abf484c807c9f17.eot");
  src: url("/fonts/dda65d7f418f4ab23abf484c807c9f17.eot?#iefix")
      format("embedded-opentype"),
    url("/fonts/dda65d7f418f4ab23abf484c807c9f17.woff") format("woff"),
    url("/fonts/dda65d7f418f4ab23abf484c807c9f17.woff2") format("woff2"),
    url("/fonts/dda65d7f418f4ab23abf484c807c9f17.ttf") format("truetype"),
    url("/fonts/dda65d7f418f4ab23abf484c807c9f17.svg") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Arboria-Bold";
  src: url("/fonts/be167b60b37c7f9cd47a1b0fdb248cf5.eot");
  src: url("/fonts/be167b60b37c7f9cd47a1b0fdb248cf5.eot?#iefix")
      format("embedded-opentype"),
    url("/fonts/be167b60b37c7f9cd47a1b0fdb248cf5.woff") format("woff"),
    url("/fonts/be167b60b37c7f9cd47a1b0fdb248cf5.woff2") format("woff2"),
    url("/fonts/be167b60b37c7f9cd47a1b0fdb248cf5.ttf") format("truetype"),
    url("/fonts/be167b60b37c7f9cd47a1b0fdb248cf5.svg#Arboria-Bold")
      format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Arboria-Book";
  src: url("/fonts/1c7f14203d028f1c6f8914508f469cb9.eot");
  src: url("/fonts/1c7f14203d028f1c6f8914508f469cb9.eot?#iefix")
      format("embedded-opentype"),
    url("/fonts/1c7f14203d028f1c6f8914508f469cb9.woff") format("woff"),
    url("/fonts/1c7f14203d028f1c6f8914508f469cb9.woff2") format("woff2"),
    url("/fonts/1c7f14203d028f1c6f8914508f469cb9.ttf") format("truetype"),
    url("/fonts/1c7f14203d028f1c6f8914508f469cb9.svg#Arboria-Book")
      format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* ---------------- Basic css ------------------ */
* {
  margin: 0;
  box-sizing: border-box;
}
html {
  font-size: 0.52vw;
  scroll-behavior: smooth;
}

:root {
  scroll-behavior: unset;
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
  transition: 200ms;
  color: inherit;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
  outline: none;
}

/* body */
body {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.3;
  font-family: "Arboria-Medium", sans-serif;
  background-color: #fff;
  color: #333b55;
  overflow-x: hidden;
}
figure {
  margin: 0;
  padding: 0;
}

figure img {
  width: 100%;
}
section {
  position: relative;
  border-left: 9rem solid #fff;
  border-right: 9rem solid #fff;
  background: #f1eff5;
}
.wrapper {
  overflow: hidden;
}
.borderbnone {
  border-bottom: none !important;
}
/* scroll bar */
::-webkit-scrollbar {
  width: 0;
  height: 0;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 0;
  cursor: grabbing;
}

::-webkit-scrollbar-thumb:hover {
  background: transparent;
}

/* -------------- preloader --------------- */

#preloader {
  position: fixed;
  background: #fff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader3 {
  width: 5rem;
  height: 5rem;
  display: inline-block;
  padding: 0;
  text-align: left;
}

.loader3 span {
  position: absolute;
  display: inline-block;
  width: 5rem;
  height: 5rem;
  border-radius: 100%;
  background: #755fa4;
  animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
  animation-delay: -0.9s;
  -webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
  0% {
    transform: scale(0, 0);
    opacity: 0.8;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
/* ---------------- Header area ------------------ */

/* menu */
.menu {
  display: flex;
  align-items: center;
}

.menu li:not(:last-child) {
  margin-right: 5rem;
}

.menu li a {
  color: #231f20;
}

/*Hamburger menu*/
.hamburger-menu {
  cursor: pointer;
  position: relative;
  display: none;
  z-index: 999;
}

.hamburger-menu span {
  background: #847631;
  width: 3rem;
  height: 0.3rem;
  display: block;
  margin: 0.5rem 0;
  transition: all 0.3s ease;
}

.hamburger-menu:hover .line-top {
  transform: translateY(-100%);
}

.hamburger-menu:hover .line-bottom {
  transform: translateY(100%);
}

.hamburger-menu .line-top.current {
  transform: translateY(200%) rotate(135deg);
}

.hamburger-menu .line-center.current {
  opacity: 0;
}

.hamburger-menu .line-bottom.current {
  transform: translateY(-325%) rotate(-135deg);
}

/*ofcanvas menu*/
.ofcavas-menu {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: -1;
  top: 0;
  display: none;
  left: -100%;
  transition: 0.3s;
}

.ofcavas-menu.current {
  left: 0;
}

.ofcavas-menu li {
  padding: 0.8rem 0;
}

.ofcavas-menu a {
  color: #5f490c;
}

/* ============= Header Area ============== */
.site_header.scroll_header {
  position: fixed;
  transition: 0.5s;
  top: -100%;
  background: #fff;
}
.scroll_header.active_menu.active_menu_up {
  top: 0;
  box-shadow: 0 0 27px 0 rgba(0, 0, 0, 0.1);
}
.site_header {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1024;
  width: 100%;
  padding-left: 2.4rem;
  padding-right: 2.4rem;
  padding-bottom: 8rem;
  transition: 0.5s;
  padding-top: 2rem;
}
.main_wrapper {
  position: relative;
  overflow: hidden;
}
.main_bg {
  background: #f1eff5;
  width: 100vw;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  display: flex;
  justify-content: space-between;
}
.main_bg span {
  width: 9rem;
  height: 100%;
  background: #fff;
}
.site_header .nav {
  justify-content: space-between;
}
.logo a img {
  width: 22rem;
}

.hamburger {
  width: 4rem;
  height: 4rem;
  position: relative;
  justify-content: center;
  align-items: center;
  display: flex;
  border: 1px solid #231f20;
  cursor: pointer;
  transition: 0.3s;
}

.hamburger img {
  width: 2.1rem;
}

.language {
  margin-top: 7.2rem;
  margin-left: -3.4rem;
}

.language ul {
  display: flex;
  transform: rotate(-90deg);
  align-items: center;
  gap: 1.6rem;
}

.language ul li {
  line-height: 1;
}

.language ul li a {
  color: var(--Gray, #989898);
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
.language ul li a:hover {
  color: #dbcff3;
}

.shopping_icon a {
  width: 4rem;
  height: 4rem;
  align-items: center;
  justify-content: center;
  display: flex;
  position: relative;
  border: 1px solid #231f20;
  transition: 0.3s;
}
.header_icons:hover img {
  filter: invert(1);
  border: var(--LavenderDark, #755fa4) !important;
}

.shopping_icon a .notif {
  position: absolute;
  right: -1.2rem;
  top: 0.3rem;
  background: #755fa4;
  color: var(--Lavender, #dbcff3);
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  width: 1.7rem;
  height: 1.7rem;
  display: flex;
  align-items: center;
  transition: 0.3s;
  justify-content: center;
}

.shopping_icon a img {
  width: 2.4rem;
}

.shopping_icon a:hover .notif {
  background: #dbcff3;
  color: var(--Lavender, #755fa4);
}
.shopping_icon a:hover {
  background: #755fa4;
  border: 1px solid #755fa4;
}
.shopping_icon a:hover svg path {
  width: 1.3rem;
  stroke: #dbcff3;
}
.shopping_icon a svg {
  width: 1.3rem;
}
.busket_icon a {
  width: 6rem;
  height: 6rem;
  background: var(--LavenderDark, #755fa4);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100rem;
}
.busket_icon a img {
  width: 3.293rem;
}
.busket_icon {
  position: fixed;
  bottom: 12rem;
  z-index: 99;
  right: 2rem;
  transform: translateY(50%);
}
.hamburger:hover {
  background: var(--LavenderDark, #755fa4);
  border: 1px solid #755fa4;
}
.hamburger:hover span {
  background: #bdcff3;
}
.active_mobile_menu .hamburger span {
  transform: translateY(0);
  width: 1.513rem;
}
.active_mobile_menu .hamburger span:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}
.active_mobile_menu .hamburger span:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}
.active_mobile_menu .hamburger span:nth-child(2) {
  transform: translateY(0) rotate(0deg);
  width: 0;
}
.cross {
  display: none;
}
.active_mobile_menu .hamburger img:first-child {
  display: none;
}
.active_mobile_menu .hamburger .cross {
  display: block;
}
.scroll_header .language {
  display: none;
}
.site_header.scroll_header {
  padding-bottom: 2rem;
}
.site_header.scroll_header .main_bg {
  background: #fff;
}
.site_header.scroll_header .nav {
  align-items: center;
}
/* ============= Toggle Menu ============= */
.toggleMenu {
  position: fixed;
  width: 100%;
  height: 0;
  background: #fff;
  overflow: hidden;
  top: -50vh;
  left: 0;
  transition: 0.5s ease-out;
  opacity: 0.5;
}
.active_mobile_menu .toggleMenu {
  height: 100vh;
  top: 0;
  opacity: 1;
  padding-top: 3.125rem;
}
.toggle_menus {
  display: flex;
  justify-content: center;
  text-align: center;
  padding-top: 11.927rem;
}
.toggle_menus ul li a {
  color: var(--offBlack, #231f20);
  text-align: center;
  font-family: Arboria-Medium;
  font-size: 6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 95%; /* 84px */
  transform: 0.3s;
}
.toggle_menus ul li a:hover {
  color: #755fa4;
}
.toggle_menus ul {
  gap: 5rem;
  display: grid;
}
/* ============= Featured Area ============== */
.featured_area {
  position: relative;
  border: none;
}
.hover_rotate {
  position: absolute;
  bottom: 14.94rem;
  border-radius: 151.682px;
  border: 3.004px solid var(--offBlack, #231f20);
  background: #fff;
  right: 2.188rem;
  transition: 0.2s ease;
}
.hover_rotate:hover {
  transform: rotate(30deg);
}
.line1.fLine1 {
  top: -6.75rem;
  background: #231f20;
  margin: 0;
}
.featured_area .line1,
.imgline {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
}
.line1.fLine3.imgline {
  height: 9.75rem;
  bottom: -5.063rem;
  z-index: 1;
  margin: 0 !important;
}
.featurelinetop {
  width: 0.1rem;
  background: #231f20;
  position: absolute;
  top: -2.7rem;
  left: 50%;
  height: 5.3rem;
  bottom: auto;
}
.featured_two .section_img {
  position: relative !important;
}

/* ============= Timeline Area ============== */
.timeline_area {
  padding-top: 9.75rem;
  padding-bottom: 4.688rem;
  position: relative;
}
.section_title h2 {
  color: var(--offBlack, #231f20);
  text-align: center;
  font-size: 7rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  padding-bottom: 3rem;
  padding-top: 1rem;
}
.timeline_desc p {
  color: var(--offBlack, #231f20);
  text-align: center;
  font-size: 4rem;
  font-style: normal;
  font-family: "Arboria-Book", sans-serif;
  font-weight: 400;
  line-height: 120%; /* 48px */
}
.section_desc p {
  color: var(--offBlack, #231f20);
  text-align: center;
  font-size: 3rem;
  font-style: normal;
  font-family: "Arboria-Book", sans-serif;
  font-weight: 400;
  line-height: 170.5%; /* 51.15px */
  padding: 0 12%;
}
.line1 {
  width: 1px;
  height: 11.438rem;
  background: #231f20;
  margin: 7.5rem auto 7rem auto;
}
.timeline_img {
  padding: 4.688rem 0 4.688rem 4.375rem;
  display: flex;
  justify-content: center;
  position: relative;
  width: fit-content;
  margin: 0 auto;
}
.timeline_img:before {
  content: "";
  width: 1000%;
  position: absolute;
  height: 0.063rem;
  background: #231f20;
  top: 45%;
  left: 100%;
}
.timeline_img:after {
  content: "";
  width: 1000%;
  position: absolute;
  right: calc(100%);
  height: 0.063rem;
  background: #231f20;
  top: 45%;
}
.timeline_img img {
  width: 50rem;
}
.timelinesm {
  display: none;
}
.timelinelg {
  display: block;
}
.timeline_desc {
  width: 66rem;
  margin: 0 auto;
}
/* ============= Product Area ============== */
.product_area {
  border: none;
  z-index: 0;
}
.owl-stage {
  display: flex;
}
.product_area .owl-stage-outer {
  overflow: hidden;
  position: relative;
}
.owl-nav.disabled {
  display: none;
}

.product_img:hover {
    box-shadow:0px 0px 5px #755fa4;
}

.product_img img {
  width: 100%;
}

.product_box {
  position: relative;
  padding: 5.406rem 0;
  padding-left:5rem;
  padding-right:5rem;
  border-left: solid 1px #000;
}

.owl-item:last-child .product_box:before {
  width: 0px;
}

.product_cap p {
  color: var(--offBlack, #231f20);
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 105%; /* 24px */
  text-align: center;
}

.product_cap {
  border: 0.063rem solid var(--offBlack, #231f20);
  background: #fff;
  padding: 1rem;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  top:-1.8rem;
  width: 80%;
}

.product_box a {
  display: block;
  position: relative;
}

.owl-item:nth-child(even) .product_cap,
.owl-item:nth-child(odd) .product_cap {
    top:unset;
    bottom:-1.6rem;
}

.pd_border {
  width: 100%;
  height: 0.313rem;
  background: url(/img/gradientbg.png) no-repeat scroll top left / 100% 100%;
}

.owl-item {

}

.owl-item.active.center {
  position: relative;
}
.owl-item.active.center:before {
  content: "";
  width: 0.125rem;
  height: 100%;
  position: absolute;
  left: -60px;
  top: 0;
}
.owl-item.active.center:after {
  content: "";
  width: 0.125rem;
  height: 100%;
  position: absolute;
  right: -60px;
  left: auto;
  top: 0;
}
.product_area .main_bg span {
  width: 9rem;
}
/* ============= Service Icons Area ============== */
.serviceIcons_area {
  padding-top: 10.625rem;
  padding-bottom: 2.188rem;
}
.service_icons {
  display: grid;
  grid-template-columns: repeat(4, 4fr);
  justify-items: center;
  align-items: center;
  gap: 1rem;
}

.service_icon {
  position: relative;
}
.service_icon img {
  position: relative;
  z-index: 0;
}
.service_icon:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #eae5f4;
  position: absolute;
  z-index: 0;
  border-radius: 100px;
  box-shadow: 0px 0px 65px 35px #eae5f4;
  transition: 0.1s;
}
.service_icon:hover:before {
  box-shadow: 0px 0px 10px 80px #eae5f4;
  filter: blur(4rem);
}
.service_icon:nth-child(2):before {
  background: #e3e6e3;
  box-shadow: 0px 0px 65px 35px #e3e6e3;
}
.service_icon:nth-child(2):hover:before {
  box-shadow: 0px 0px 10px 80px #e3e6e3;
  filter: blur(4rem);
}
.service_icon:nth-child(3):before {
  background: #f1eceb;
  box-shadow: 0px 0px 65px 35px #f1eceb;
}
.service_icon:nth-child(3):hover:before {
  box-shadow: 0px 0px 10px 80px #f1eceb;
  filter: blur(3rem);
}
.service_icon:nth-child(4):before {
  background: #e7e4ee;
  box-shadow: 0px 0px 65px 35px #e7e4ee;
}
.service_icon:nth-child(4):hover:before {
  box-shadow: 0px 0px 10px 80px #e7e4ee;
  filter: blur(4rem);
}
.service_line {
  background: #231f20;
  width: 0.063rem;
  height: 11.938rem;
  margin: 0 auto;
  margin-top: 2.688rem;
}
/* ============= Featured Two ============== */
.featured_two {
  border: 0;
}
.featured_two .section_title {
  padding: 0 1.5rem;
  padding-bottom: 4.5rem;
  border-left: 9rem solid #ffff;
  border-right: 9rem solid #ffff;
}
/* ============= Timeline Two ============== */
.timeline2_img img {
  width: 100%;
}
.scroll_anim img {
  width: auto;
}
.anim1 {
  display: flex;
  justify-content: center;
}
.anim2 {
  display: flex;
  justify-content: center;
}
.scroll_anim {
  position: absolute;
  display: flex;
  justify-content: center;
  top: -5.813rem;
  width: 17rem;
  left: -4.313rem;
  align-items: center;
}
.anim2 {
  position: absolute;
}
.anim2,
.anim1 {
  transition: 1s ease;
}
.anim1 img {
  width: 17rem;
}
.anim2 img {
  width: 11.651rem;
  height: 10.872rem;
  /* transform: translate(2px, -5px); */
}
.scroll_anim .anim1 {
  animation: spinRight linear infinite 8s;
}
.scroll_anim .anim2 {
  animation: spinLeft linear infinite 8s;
}
@keyframes spinRight {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spinLeft {
  0% {
    transform: rotate(0deg) translate(2px, -5px);
  }
  100% {
    transform: rotate(-360deg) translate(2px, -5px);
  }
}
.timeline2_img {
  position: relative;
  z-index: 0;
}
.timeline_two .section_desc p {
  text-align: left;
  padding-right: 9.313rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
  padding-left: 4.563rem;
  margin-bottom: 5rem;
  position: relative;
}
.timelineDesc2 p {
  padding-left: 10rem !important;
}
.section_desc.timelineDesc1 p:before {
  content: "";
  width: calc(1000%);
  height: 0.063rem;
  background: #231f20;
  position: absolute;
  bottom: 0;
  left: 0.063rem;
  z-index: 0;
}
.section_desc.timelineDesc1 p:after {
  position: absolute;
  content: "";
  width: 0.063rem;
  height: 62.0rem;
  left: 0;
  background: #231f20;
  z-index: 1;
  bottom: -11rem;
}
.section_desc.timelineDesc2 p:before {
  content: "";
  width: calc(1000%);
  height: 0.063rem;
  background: #231f20;
  position: absolute;
  bottom: 0;
  right: 0.063rem;
  z-index: 0;
}
.section_desc.timelineDesc2 p {
  padding-right: 5rem;
  margin-bottom: 13.5rem;
}
.section_desc.timelineDesc2 p:after {
  position: absolute;
  content: "";
  width: 0.063rem;
  height: 91.6rem;
  right: 0;
  background: #231f20;
  z-index: 1;
  bottom: -16.688rem;
}
.section_desc p span {
  font-family: Arboria-Bold;
  font-size: 3rem;
  font-weight: 700;
  line-height: 180%;
}
.timelineDesc1 {
  position: relative;
}
.timelineDesc1::before {
  content: "";
  width: 43.4rem;
  height: 43.4rem;
  border-radius: 43.4rem;
  /*background: var(--Lavender, rgb(219, 207, 243, 0.5));*/
  filter: blur(4.2rem);
  position: absolute;
  left: -17.4rem;
  bottom: 0;
  opacity: 0;
  transform: scale(0.8);
  transition: 0.3s;
}
.timelineDesc1:hover:before {
  opacity: 1;
  transform: scale(1);
}
.timeline2img:hover img,
.gardenimg:hover img {
  transform: scale(1.2);
}
.timeline2img img,
.gardenimg img {
  transition: 0.3s;
}
.timeline2img,
.gardenimg {
  overflow: hidden;
}
.timeline2_img {
  position: relative;
}
.timeline2_img:before {
  content: "";
  width: 36.8rem;
  height: 36.8rem;
  border-radius: 36.8rem;
  /*background: var(--Green, #adc59e);*/
  filter: blur(4.2rem);
  position: absolute;
  right: -16rem;
  bottom: -19rem;
  opacity: 0;
  z-index: -1;
  transition: 0.3s;
  transform: scale(0.8);
}
.timeline2_img:hover:before {
  transform: scale(1);
  opacity: 0.5;
}
/* ============= Garden Area ============== */
.garden_area {
  border: none;
  padding-bottom: 9.063rem;
}
.garden_area .main_bg {
  z-index: 0;
}
.TimelineColpd_0 {
  padding-right: 0 !important;
}
.gardenCap h2 {
  color: var(--offBlack, #231f20);
  text-align: center;
  font-family: "Arboria-Bold";
  font-size: 3.7rem;
  font-style: normal;
  font-weight: 700;
  line-height: 170.5%;
  margin-top: 6.004rem;
}
.garden_area .owl-item.active {
  border: none;
}
.garden_area .owl-stage-outer {
  display: flex;
  margin-top:7rem;
}
.garden_img {
  position: relative;
}
.garden_img .imgline {
  height: 13rem !important;
  bottom: -4.129rem !important;
}
/* added now */
.garden_area .owl-item.active.center:before,
.garden_area .owl-item.active.center:after {
  display: none;
}
.owl-stage {
  display: flex;
}

/* =========== Prijavi Section =========== */
.Prijavi_section {
  padding-bottom: 3rem;
  padding-top: 3rem;
  position: relative;
  border: none;
  z-index: 0;
}
.Prijavi_section {
  z-index: 0;
  border-top: 0.069rem solid #231f20;
  border-bottom: 0.069rem solid #231f20;
}
.prijavi_content {
  display: flex;
  align-items: center;
  justify-content: center;
}
.prijavih2 h2 {
  color: var(--offBlack, #231f20);
  text-align: center;
  font-family: Arboria-Bold;
  font-size: 5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 170.5%;
  padding-left: 1rem;
  padding-right: 4rem;
}
.prijavibtn a,
.prijavibtn span {
  color: var(--LavenderDark, #755fa4);
  text-align: center;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  padding: 1.563rem 1.5rem;
  background: var(--Lavender, #dbcff3);
  transition: 0.3s;
}

.prijavibtn a:hover,
.prijavibtn span:hover {
    background: var(--LavenderDark, #755fa4);
  color: var(--Lavender, #dbcff3);
}
.prijaviimg img:hover {
  transform: rotate(30deg);
}
.prijaviimg img {
  transition: 0.3s;
  margin-right: 2rem;
}

/* =========== Terms_regulation Section =========== */
.tr_img {
  width: 100%;
  position: absolute;
  z-index: 1;
}
.terms_regulation {
  border: none;
  top: 0;
  position: relative;
  background: #fff;
  border-bottom: 1px solid#231f20;
}
.tm_h2 h2 {
  color: var(--offBlack, #231f20);
  text-align: center;
  font-family: Arboria-Medium;
  font-size: 7rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 8rem;
}
.tm_p p {
  color: var(--offBlack, #231f20);
  text-align: justify;
  font-family: Arboria-Book;
  font-size: 3rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
}
.tm_p {
  display: grid;
  gap: 8rem;
}
.tm_contents {
  padding: 14rem 28.813rem 43.375rem 28.813rem;
  background: #f1eff5;
  z-index: 1;
  width: calc(100% - 18rem);
  margin: 0 auto 0 auto;
  position: relative;
  top: 39.488rem;
  margin-bottom: 39.488rem !important;
}
.tr_img img {
  width: 100%;
}
.innerline1 {
  width: 1px;
  height: 24rem;
  background: #231f20;
  left: 50%;
  top: -16rem;
  transform: translateX(-50%);
  position: absolute;
}
/* ============ Catalog Section ============= */
.tabs_area {
  background: #f1eff5;
  width: calc(100% - 18rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  top: 35rem;
  padding-top: 12.2rem;
  margin-bottom: 44rem;
}

.catalog_product {
    display: grid;
    grid-template-columns: 12fr;
    width: calc(100% + 9rem);
    background: #fff;
    transform: translateX(-4.5rem);
    border: 1px solid#231f20;
    position: relative;
}

.catalog_section .tr_img {
  z-index: -1 !important;
  position: absolute;
}

.catalog_header h2 {
  color: var(--offBlack, #231f20);
  text-align: center;
  font-family: Arboria-Medium;
  font-size: 7rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 84px */
}
.catalog_header {
  width: 86.4rem;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
}
.catalog_header p {
  color: var(--offBlack, #231f20);
  text-align: center;
  font-family: Arboria-Book;
  font-size: 3rem;
  font-style: normal;
  font-weight: 400;
  line-height: 170.5%; /* 51.15px */
}
.catagory_tabcontents .tabs {
  display: flex;
  justify-content: center;
  gap: 16rem;
  padding-top: 13.7rem;
  align-items: center;
}
.catagory_tabcontents .tabs a {
  color: var(--offBlack, #231f20);
  text-align: center;
  font-family: Arboria-Medium;
  font-size: 4rem;
  font-style: normal;
  font-weight: 400;
  padding-bottom:6rem;
  line-height: 120%; /* 60px */
  display: block;
  width: 25rem;
}

.tabh2 h2 {
  color: var(--offBlack, #231f20);
  text-align: center;
  font-family: Arboria-Medium;
  font-size: 7rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 84px */
  position: relative;
  width: fit-content;
  padding:5rem 0 5rem 0;
  margin: 10rem auto;
}

.tab:nth-child(1) .tabh2 h2 {
  padding-top: 0 !important;
}

.tab:nth-child(1) .tabh2 h2:before {
  display: block !important;
}
.tabh2 h2:before {
  content: "";
  width: 1px;
  height: 5rem;
  background: #231f20;
  left: 50%;
  position: absolute;
  bottom: calc(100% + 8.5rem);
  display: none;
}
.tabs a:nth-child(1) {
  display: block;
}

.tabs a:before,
.tabh2 h2:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 20%;
  transition: 0.3s;
  opacity: 0.3;
  border-radius: 100rem;
  height: 24.3rem;
  width: 24.3rem;
  transform: translateX(-50%) translateY(-50%);
  filter: blur(4rem);
}
.tabh2 h2:after {
  opacity: 0.3 !important;
}
.tabs a:hover:before {
  opacity: 1;
}
.tabs a:nth-child(1):before {
  background: #adc59e;
}
.tab:nth-child(1) .tabh2 h2:after {
  background: #dbcff3;
}
.tabs a:nth-child(2):before {
  background: #dbcff3;
}
.tab:nth-child(2) .tabh2 h2:after {
  background: #adc59e;
}
.tabs a:nth-child(3):before {
  background: #f2dfc4;
}

.tabs a:nth-child(4):before {
    background: #dbcff3;
}

.tab:nth-child(3) .tabh2 h2:after {
  background: #f2dfc4;
}
.tab:nth-child(4) .tabh2 h2:after {
  background: #f2dfc4;
}
.tabs a {
  position: relative;
}
.ctp_line {
  height: 13rem;
  width: 0.05rem;
  background: #231f20;
  position: absolute;
  left: calc(50% - 0.075rem);
  transform: translateX(-50%);
  z-index: 0;
}
.ctpline_bottom {
  bottom: -13rem;
}
.ctpline_top {
  top: -13rem;
}
.ct_product_img .scroll_anim {
  left: 9.5rem;
  top: -10rem;
}
.ct_product_img .scroll_anim img {
  width: 24.2rem;
}
.tab:nth-child(2) .ct_ProdContent {
  /*border-right: 1px solid;*/
}
.catalog_page .header_icons,
.terms_regulation_Page .header_icons {
  background: #fff;
}
.catalog_page .header_icons:hover,
.terms_regulation_Page .header_icons:hover {
  background: var(--LavenderDark, #755fa4);
}

/* Catalog product content */
.ct_product_img img,
.ctproductimg img,
.ctproductimg {
    background:#ddd5d1;
    width: 100%;
    object-fit: cover;
}
.ct_product_img,
.ctproductimg {
  display: flex;
}
.ctproductimg:hover img:nth-child(2) {
  display: block;
}
.ctproductimg img:nth-child(2) {
  display: none;
}
.ctproductimg:hover img:nth-child(1) {
  display: none;
}

.ctp_h3 {
  color: var(--offBlack, #231f20);
  font-family: Arboria-Medium;
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 60px */
}

.cpt_desc {
  color: var(--offBlack, #231f20);
  text-align: justify;
  font-family: Arboria-Book;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 26.4px */
  transition: max-height 0.3s ease;
}

.niche {
  color: var(--offBlack, #231f20);
  font-family: Arboria-Medium;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 30px */
  width: 24.4rem;
  height: 5.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--offBlack, #231f20);
  background: var(--White, #fff);
  position: relative;
  z-index: 0;
}
.cpt_ProdNiche {
  position: relative;
}
.niche_line {
  width: 1000%;
  height: 1px;
  background: #231f20;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
}

.ct_ProdContent {
  overflow: hidden;
  padding: 7rem 10.5rem 6rem 10.5rem;
}

.catalog_prodicons {
  display: flex;
  justify-content: space-around;
  padding-top:1rem;
  /*margin-bottom: 7rem;*/
}
.catalog_prodicon a img {
  width: 14.1rem;
}
.item_selectingTop h4 {
  color: var(--offBlack, #231f20);
  font-family: Arboria-Medium;
  font-size: 3rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 36px */
}
.item_selectingTop {
  justify-content: space-between;
  border: 1px solid#231F20 !important;
  border-bottom: none !important;
  padding: 0 2rem;
}

.itemSeletingBottom {
    display: flex;
    align-items: center;
    border: 1px solid #231F20 !important;
}

.itemSeletingBottom2 {
    margin:0 auto;
    display:block;
    width:111px;
    background:#fff;
    border-top:solid 1px hsl(345, 6%, 13%);
    border-left:solid 1px hsl(345, 6%, 13%);
    border-bottom:solid 1px hsl(345, 6%, 13%);
}

.product-name {
    font-size:14px;
    font-weight: normal;
}

.ISTright {
  border: 0;
  border-left: none !important;
  border-right: none !important;
}

.Incre_Decre {
  display: flex;
  align-items: center;
  border-right:solid 1px #231F20;
}

.cart-box {
    background:#fff;
    border: solid 1px #231f20;
    display:inline-grid;
    grid-template-columns: 25px 30px 25px;
    grid-template-rows: 30px;
    align-items: center;
    padding:0;
    margin:0;
    grid-gap:0;
}

.cart-box > div:nth-child(1) {
    border-right:solid 1px #231F20;
}

.cart-box > div:nth-child(3) {
    border-left:solid 1px #231F20;
}

.cart-box input[type=text] {
    border:0;
    font-size:14px;
    padding:0;
    margin:0;
    max-width:30px;
    text-align:center;
}

.cart-box button {
    border:0;
    font-size:14px;
    padding:0;
    margin:0;
    height:30px;
    width:20px;
    background:#fff;
    text-align:center;
}

.ISTright,
.ISTright button {
  width: 100%;
}

.itemSeletingBottom2 button,
.itemSeletingBottom button,
.itemSeletingBottom p,
.item_selectingTop {
  height: 8.3rem;
  display: flex;
  align-items: center;
  border: none;
  outline: none;
}

.displayedNumber {
  padding: 0 3.3rem;
  border-left: 1px solid#231F20 !important;
  border-right: 1px solid#231F20 !important;
}

.Incre_Decre button {
  padding: 0 1.5rem;
}

.Incre_Decre button:hover {
  background: var(--Lavender, #dbcff3);
  color: var(--LavenderDark, #755fa4);
}

.ISTright button {
  justify-content: center;
  padding: 0;
  background: var(--LavenderDark, #755fa4);
  color: var(--Lavender, #dbcff3);
  text-align: center;
  font-family: Arboria-Medium;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 400;
  transition: 0.3s;
  line-height: 120%; /* 30px */
}
.ISTright button:hover {
  background: var(--Lavender, #dbcff3);
  color: #755fa4;
}
.Incre_Decre button,
.Incre_Decre p {
  color: var(--offBlack, #231f20);
  font-family: Arboria-Medium;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 30px */
  background: #fff;
}
.cp_prodContTOp {
    display: grid;
    gap: 4.5rem;
    margin-bottom: 4.5rem;
    max-width:890px;
    margin:0 auto;
}

.cpt_ItemSelecting {
    margin-top:5rem;
    max-width:890px;
    margin:0 auto;
    margin-top:5rem;
}

.moreHeight {
    max-height:130px;
    overflow:hidden;
    transition: all 0.3s ease;
}

.slide-down {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.slide-up {
    max-height:135px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.cpt_desc1 {
    transition: all 4.3s ease; /* Smooth transition */
}

.show-more {
    color: #595959;
    font-family: Arboria-Medium;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 26.4px */
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:1rem;
    cursor:pointer;
}

.arrow-down {
    width:20px;
    height:20px;
    background:url('/img/arrow-down.svg') no-repeat center center;
}

.arrow-up {
    width:20px;
    height:20px;
    background:url('/img/arrow-up.svg') no-repeat center center;
}

.catalogIzdelki {
    max-width:890px;
    margin:0 auto;
}

/* =========== Contact Section =========== */
.Contact_area {
  border: none;
  position: relative;
  /*background: url(/img/FeaturedImg.png) no-repeat scroll left top / cover;*/
  background:#ffffff44;
  backdrop-filter: blur(4px);
  padding-bottom: 38rem;
  padding-top: 8rem;
  min-height: 100vh;
}
.Contact_remove {
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.3;
}
.Contact_area2 {
  padding-bottom: 13.8rem !important;
}
.Contact_area .contact_box {
  margin: 0 auto;
  width: 78.6rem;
  background: #fff;
  padding-left: 5.8rem;
  padding-right: 5.8rem;
  padding-bottom: 5.5rem;
  padding-top: 5rem;
  position: relative;
}
.Contact_area .form_desc p {
  color: var(--offBlack, #231f20);
  font-family: Arboria-Book;
  font-size: 3rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 36px */
  padding-top: 5rem;
  padding-bottom: 1rem;
}
.Contact_area .form-group input,
.Contact_area .form-group textarea {
  width: 100%;
  padding: 16.78px 0px 16.78px 5px;
  border-bottom: 1px solid var(--offBlack, #231f20) !important;
  border: none;
  color: #755fa4;
  font-family: Arboria-Book;
  font-size: 2.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 26.4px */
}
.Contact_area .form-group textarea {
  border: 1px solid var(--offBlack, #231f20) !important;
  height: 10rem;
  padding: 10px 0px 16.78px 15px !important;
}
.Contact_area .form-group input::placeholder,
.Contact_area .form-group textarea::placeholder {
  color: #755fa4;
}
.Contact_area .submit_btn button {
  padding: 25px 0;
  width: 100%;
  background: var(--LavenderDark, #755fa4);
  color: var(--Lavender, #dbcff3);
  text-align: center;
  font-family: Arboria-Medium;
  font-size: 2.5rem;
  border: none;
  outline: none;
  line-height: 120%; /* 30px */
  transition: 0.3s;
}
.Contact_area .contact-form {
  display: grid;
  gap: 2rem;
}
.Contact_area .form-group input:focus {
  border-bottom: 1px solid #755fa4 !important;
}
.Contact_area .form-group textarea:focus {
  border: 1px solid #755fa4 !important;
}
.Contact_area .submit_btn button:hover {
  color: var(--LavenderDark, #755fa4);
  background: var(--Lavender, #dbcff3);
}
.main_bg.formStyle span {
  background: #ede7f9 !important;
}
.Form_page .header_icons {
  background: #fff;
}
.Form_page .header_icons:hover {
  background: #755fa4;
}
.contact_iconright img {
  width: 16.3rem;
  height: 16.3rem;
  transition: 0.3s;
}
.contact_iconright img:hover {
  transform: rotate(45deg);
}
.contact_iconright {
  position: absolute;
  background: #fff;
  border: 2px solid#231f20;
  border-radius: 100rem;
  top: -3.5rem;
  right: -3.5rem;
}
.Contact_modal {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: -9999;
  height: 100%;
  left: 0;
  overflow: scroll;
  opacity: 0;
  transform: scale(0.8);
  transition: 0.3s;
}
.openmodal {
  opacity: 1;
  z-index: 9999;
  transform: scale(1);
}
.Contact_modal .main_bg {
  background: #e6dff4;
}
.Contact_modal .main_bg span {
  background: #ede7f9;
}
.mailbtn,
.contactbtn {
  cursor: pointer;
  width: fit-content;
}
.mailbtn img,
.contactbtn img {
  transition: 0.3s;
}
.mailbtn img:hover,
.contactbtn img:hover {
  transform: rotate(30deg);
}
/* =========== Footer Section =========== */
.footer_area {
  background: #fff;
  z-index: 1;
  position: relative;
  border-top: 1px solid#231f20 !important;
}

.footer_content {
  padding-bottom: 4.068rem;
  padding-top: 4.125rem;
  padding-left: 2.2rem;
  padding-right: 2.686rem;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
}
.footer_right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.social_icons a svg {
  width: 2.925rem;
  height: 2.925rem;
}
.social_icons a {
  width: 4.6rem;
  border: 1px solid var(--offBlack, #231f20);
  background: var(--White, #fff);
  height: 4.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social_icons {
  display: flex;
  flex-direction: column;
  gap: 1.95rem;
}
.footer_links ul li {
  color: var(--offBlack, #231f20);
  text-align: center;
  font-family: Arboria-Book;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 132%; /* 26.4px */
}
.footer_links ul li a {
  color: var(--LavenderDark, #755fa4);
}
.footer_log {
  padding-bottom: 2.563rem;
  display: flex;
  justify-content: center;
}
.footer_logo {
  display: flex;
  justify-content: center;
}
.middle_left a img {
  width: 151px;
  height: 151px;
}
.footer_logo img {
  padding-bottom: 4.375rem;
}
/* copywrite */
.copywrite p {
  color: var(--offBlack, #231f20);
  text-align: center;
  font-family: Arboria-Book;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
.copywrite p a {
  color: var(--offBlack, #231f20);
  text-decoration-line: underline;
}
.copywrite {
  padding-bottom: 2.125rem;
  padding-top: 2.125rem;
  background: url(/img/copywritebg.png) scroll no-repeat top left / cover;
}
.social_icons.Sticky_socialmenu {
  position: fixed;
  bottom: 13.3rem;
  z-index: 99;
  flex-direction: column;
  left: 2.2rem;
}
.social_icons.Sticky_socialmenu.animate {
  display: none;
}

/*====================================
New CSS Of Dalower
==================================== */

/* button */

.button {
  display: inline-block;
  background: #755fa4;
  padding: 2.5rem 2rem;
  color: #dbcff3;
  text-align: center;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 30px */
  font-family: "Arboria-medium", sans-serif;
  border: none;
  transition: 300ms;
}

.button:hover {
  background: #dbcff3;
  color: #755fa4;
}

.button.green {
  background-color: #adc59e;
  color: #4b5843;
}

.button.green:hover {
  background: #dbcff3;
  color: #755fa4;
}

.button_md {
  line-height: 1;
  padding: 2rem 2rem;
}

/* Title */

.title_xl {
  color: #231f20;
  font-size: 7rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 60px */
}

.title_lg {
  color: #231f20;
  font-size: 5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 60px */
}

.text_md {
  color: #231f20;
  font-family: "Arboria-Book", sans-serif;
  font-size: 3rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 54px */
}

/* ------------ Story Hero section ------------ */

.stroyHero_img {
  width: 100%;
}

.stroyHero_sec .line1 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -6rem;
  width: 1px;
}

/* ------------ the story sec ------------ */

.the_story_sec {
  position: relative;
  padding-bottom: 0rem;
}

.the_story_sec::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0rem;
  width: 1px;
  height: calc(100% + 20rem);
  background-color: #231f20;
  z-index: 1;
}

.the_story_sec .content {
  position: relative;
  z-index: 1;
}

.the_story_sec .content p {
  pointer-events: none;
}

.the_story_sec .img {
  width: calc(100% + 18rem);
  padding: 7rem 0 7rem 7rem;
  border-bottom: 1px solid #231f20;
  overflow: hidden;
}

.the_story_sec .img img {
  transition: 300ms;
}

.the_story_sec .img img:hover {
  transform: scale(1.1);
}

.the_story_sec .block1 .content {
  padding: 5rem 3rem 0 4rem;
}

.the_story_sec .block1 .circle {
  position: absolute;
  right: -2.3rem;
  bottom: -20rem;
  width: 43.4rem;
  height: 43.4rem;
  border-radius: 50%;
  background: #dbcff3;
  filter: blur(42px);
  opacity: 0.3;
  z-index: -1;
  transition: 300ms;
}

.the_story_sec .block1 .circle:hover {
  opacity: 0.8;
}

.the_story_sec .block2 .img {
  margin-left: -18rem;
  padding: 7rem 7rem 7rem 0;
}

.the_story_sec .block2 .content {
  padding: 5rem 7rem 0 8rem;
}

.the_story_sec .block2 .circle {
  position: absolute;
  left: -0.7rem;
  bottom: -10rem;
  width: 24.3rem;
  height: 24.3rem;
  border-radius: 50%;
  background: #f2dfc4;
  filter: blur(42px);
  opacity: 0.3;
  z-index: -1;
  transition: 300ms;
}

.the_story_sec .block2 .circle:hover {
  opacity: 0.8;
}

.the_story_sec .scroll_anim {
  top: unset;
  bottom: -39.5rem;
  left: unset;
  right: 0;
}

.line1 {
  width: 1px;
}
/*------------ terroir section ------------ */

.terroir_sec {
  position: relative;
  border-top: 1px solid #231f20;
}

.terroir_sec::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #231f20;
  z-index: 1;
}

.terroir_sec .img {
  margin-left: -18rem;
  padding: 7rem 7rem 7rem 0;
  width: calc(100% + 18rem);
  border-bottom: 1px solid #231f20;
  overflow: hidden;
}

.terroir_sec .main_img {
  transition: 300ms;
}

.terroir_sec .main_img:hover {
  transform: scale(1.1);
}

.terroir_sec .content {
  padding: 7rem 7rem 0rem 8rem;
  position: relative;
  z-index: 1;
}

.terroir_sec .content p {
  pointer-events: none;
}

.terroir_sec .scroll_anim {
  top: 14rem;
  left: 9rem;
}

.terroir_sec .circle {
  position: absolute;
  top: 14rem;
  right: 0;
  width: 36.8rem;
  height: 36.8rem;
  border-radius: 50%;
  background: #adc59e;
  filter: blur(42px);
  opacity: 0.3;
  z-index: -1;
  transition: 300ms;
}

.terroir_sec .circle:hover {
  opacity: 0.8;
}

/*------------ checkout section ------------ */

.checkout_sec {
  padding: 7rem 0 15rem;
  margin-top: -6rem;
  position: relative;
}

.checkout_sec .line1 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -4rem;
  width: 1px;
  height: 8rem;
}

.checkout_sec form {
  max-width: 67rem;
  margin: auto;
}

.checkout_sec form .input_wrapper {
  border: 1px solid #231f20;
  background: #fff;
  padding: 5rem 6rem 3rem 5rem;
  margin: 3.5rem 0;
}

.checkout_sec .subTitle {
  font-size: 3rem;
  font-family: "Arboria-Book", sans-serif;
  font-weight: 400;
}

.input_box {
  width: 100%;
  height: 4.8rem;
  font-size: 2.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 26.4px */
  font-family: "Arboria-Book", sans-serif;
  border: none;
  border-bottom: 1px solid #231f20;
  background-color: transparent;
}

.input_box::placeholder {
  color: #755fa4;
  opacity: 1;
}

.input_box.outline {
  border: 1px solid #231f20;
  padding: 0 2.5rem;
}

.text_sm {
  color: #755fa4;
  font-family: "Arboria-Book", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 20.136px */
}

.checkout_sec form .registration {
  display: inline-block;
  margin: 1.7rem 0 5rem;
  text-decoration: underline;
}

.checkout_sec form .registration:hover {
  color: #231f20;
}

.footer_area.border-top {
  border-top: 1px solid #231f20 !important;
}

/*------------ Information section ------------ */

.information_sec {
  padding: 7rem 0 10rem;
}

.information_sec .row {
  --bs-gutter-x: 5rem;
  --bs-gutter-y: 2.5rem;
}

.applied-coupon {
    padding-top:2rem;
    padding-bottom: 1rem;
}

.applied-coupon h6 {
    font-size:16px;
}

.info_box {
  padding-bottom: 4rem;
}

.info_box .title_lg {
  padding-bottom: 2rem;
}

.info_box .box_inner {
  background-color: #fff;
  border: 1px solid #231f20;
  background: #fff;
  padding: 5rem;
}


/* checkbox */
.checkbox input {
  /* display: none; */
  opacity:0;
  width:1px;
  height:1px;
  z-index:-1;
}

.checkbox input + label {
  position: relative;
  font-size: 3rem;
  font-family: "Arboria-Book", sans-serif;
  color: #231f20;
  line-height: 1;
  padding-left: 5.5rem;
  user-select: none;
  cursor: pointer;
}

.checkbox input + label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 3rem;
  height: 3rem;
  border: 1px solid #231f20;
}

.checkbox input:checked + label::before {
  border-color: #755fa4;
  background: #755fa4;
}

.info_box .input_box {
  height: 6.5rem;
}

/* .info_box .input_box.outline:focus {
  background: #dbcff3;
} */

.info_box .checkbox input + label {
  display: flex;
  align-items: center;
  gap: 0 2.5rem;
}

.info_box .checkbox input + label img {
  height: 2.5rem;
}

.pd_basket {
  border: 1px solid #231f20;
  background: #fff;
}

.basket_pd_card {
  display: block;
  display: grid;
  align-items: center;
  grid-template-columns: 9.3rem 1fr;
  border-bottom: 1px solid #231f20;
  grid-gap:1rem;
}

.basket_pd_card img {
  width: 100%;
  width:100px;
  height:100px;
  object-fit:cover;
  padding:1rem;

}

.basket_pd_card > div {
  padding: 0 5rem;
}

.basket_pd_card h3 {
  color: #231f20;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 30px */
  padding-bottom: 1rem;
}

.basket_pd_card p {
  color: #231f20;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 30px */
  font-family: "Arboria-Book", sans-serif;
}

.cal_list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 4rem;
  color: #231f20;
  font-family: "Arboria-Book", sans-serif;
  font-size: 1.9rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 22.8px */
  border-bottom: 1px solid #231f20;
}

.pd_basket_bottom {
  padding: 1.7rem 2rem;
  text-align: left;
}

.pd_basket_bottom .text_sm {
  text-align: left;
  color: #231f20;
  padding-bottom: 2rem;
}

.pd_basket_wrap .checkbox {
  padding-bottom: 1.5rem;
}

.pd_basket_wrap .checkbox input + label {
  font-size: 1.9rem;
  line-height: 2.5;
}

.pd_basket_wrap .checkbox input + label::before {
  top: 0.7rem;
}

/*------------ Thank you section ------------ */
.thank_you_sec {
  line-height: 1;
  padding-bottom: 25rem;
  min-height: 65vh;
}

.thank_you_sec p {
  color: #231f20;
  text-align: center;
  font-size: 3rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 36px */
  font-family: "Arboria-Book", sans-serif;
}

.thank_you_sec form .input_wrapper {
  padding: 4rem 5rem;
}

.overflow-unset {
  overflow: unset !important;
}

/* Custom */

.btnCart {
    display:inline-block;
    justify-content: center;
    padding: 1rem;
    max-width:300px;
    min-height:70px;
    background: var(--LavenderDark, #755fa4);
    color: var(--Lavender, #dbcff3);
    text-align: center;
    font-family: Arboria-Medium;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 400;
    transition: 0.3s;
    line-height: 120%;
}

div.form-info {
    font-size:18px;
    margin-top: 2rem;
}

.text-right {
    text-align:right;
}

.shop-table th {
    text-transform: uppercase;
    font-size:15px;
    color:#444;
    font-weight:400;
}

.mobileCartInfo {
    position:absolute;
    color:#fff;
    padding-top:6px;
    font-weight:400;
    font-size:12px;
}

.owl-nav > button {
    position:absolute;
    background:none;
    top:calc(50% - 25px);
    font-size:8rem;
    border:none;
    opacity:.5;
}

.owl-nav > button:hover {
    opacity:.9;
}

.owl-nav > button:nth-child(1) {
    left:1.5rem;
}

.owl-nav > button:nth-child(2) {
    right:1.5rem;
}

.toggle-text {
    color:#595959;
    font-size:22px;
    font-weight:400;
}

.empty-cart-box {
    min-height:600px;
}

.basket-pic {
    width:100%;
    aspect-ratio:16/9;
    object-fit: cover;
}

.vimeo_overlay {
    position:absolute;
    z-index:1;
    top:0;
    width:100%;
    height:100%;
    background:#00000000;
    cursor:none;
}

#custom-cursor {
    position: fixed;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    pointer-events: none;
    display: none;
    transform: translate(-50%, -50%);
    z-index: 1;
}

#custom-cursor img {
    max-width:80px;
    max-height:80px;
}

.mmt_video {
    margin-top:-6rem;
}
