@charset "UTF-8";
/* external font */
@font-face {
  font-family: "Brockmann";
  src: url("../fonts/Brockmann-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Brockmann";
  src: url("../fonts/Brockmann-SemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Brockmann";
  src: url("../fonts/Brockmann-BoldItalic.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Brockmann";
  src: url("../fonts/Brockmann-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Brockmann";
  src: url("../fonts/Brockmann-RegularItalic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Brockmann";
  src: url("../fonts/Brockmann-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Brockmann";
  src: url("../fonts/Brockmann-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Brockmann";
  src: url("../fonts/Brockmann-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PP Agrandir";
  src: url("../fonts/PPAgrandir-GrandHeavy.woff") format("woff"), url("../fonts/PPAgrandir-GrandHeavy.otf") format("truetype"), url("../fonts/PPAgrandir-GrandHeavy.eot") format("truetype"), url("../fonts/PPAgrandir-GrandHeavy.woff2") format("truetype"), url("../fonts/PPAgrandir-GrandHeavy.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
/* ---------------- Basic css ------------------ */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: auto;
  margin: 0;
  padding: 0;
}

img {
  width: 100%;
}

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;
}

input {
  border: none;
  outline: none;
}

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

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

button {
  background: none;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
}

/* iOS Safari reset: prevent blue tint on buttons/links and ensure intended color */
/*
button,
input[type="button"],
input[type="submit"],
a.button,
.button,
.increase_cart_btn,
.increase_cart_btn * {
  -webkit-appearance: none !important;
  appearance: none !important;
  -webkit-tap-highlight-color: transparent !important;
  -webkit-text-fill-color: #000 !important;
  color: #000 !important;
  outline: none !important;
  border: none !important;
  background: transparent !important;
}

button:focus,
.increase_cart_btn:focus,
a.button:focus {
  box-shadow: none !important;
  outline: none !important;
}
*/

/* body */
body {
  font-size: 1.6rem;
  color: #000;
  overflow-x: hidden;
  font-family: "Brockmann", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  background: #fff;
}
@media (max-width: 991.98px) {
  body {
    font-size: 1.4rem;
  }
}

main {
  position: relative;
  width: 100%;
}

.figure img,
.figure {
  width: 100%;
}

.fp-watermark {
  display: none;
}

.site_icon {
    padding-left:2rem;
    padding-right:1rem;
}

@media (max-width: 767px) {

    .site_icon {
        padding-left:.4rem;
        padding-right:.4rem;
    }

  .fp-overflow {
    max-height: inherit !important;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
  color: #000;
  font-family: "PP Agrandir", sans-serif;
}

/* default_styles */
.xy_center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.y_center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.x_center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.position_center_xy {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.position_center_x {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.position_center_y {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.right_0 {
  right: 0 !important;
  left: auto !important;
}

.left_0 {
  right: auto !important;
  left: 0 !important;
}

.top_0 {
  top: 0 !important;
  bottom: auto !important;
}

.bottom_0 {
  top: auto !important;
  bottom: 0 !important;
}

/* color collection */
.text_orange {
  color: #da673a;
}

.bg_orange {
  background: #da673a;
}

.text_black {
  color: #fff;
}

.bg_black {
  background: #fff;
}

/* img colors */
.imgWhite {
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(325deg) brightness(105%) contrast(101%);
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(325deg) brightness(105%) contrast(101%);
}

.imgBlack {
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(325deg) brightness(105%) contrast(101%);
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(325deg) brightness(105%) contrast(101%);
}

/* icon sizes */
.icon24 {
  width: 2.4rem;
}

.icon20 {
  width: 2rem;
}

.icon10 {
  width: 1rem;
}

.icon15 {
  width: 1.5rem;
}

.icon14 {
  width: 1.4rem;
}

.icon12 {
  width: 1.2rem;
}

.icon16 {
  width: 1.6rem;
}

.icon18 {
  width: 1.8rem;
}

.icon28 {
  width: 2.8rem;
}

.icon22 {
  width: 2.2rem;
}

.icon24 {
  width: 2.4rem;
}

.icon27 {
  width: 2.7rem;
}

.icon25 {
  width: 2.5rem;
}

.icon26 {
  width: 2.6rem;
}

.icon30 {
  width: 3rem;
}

.icon32 {
  width: 3.2rem;
}

.icon35 {
  width: 3.5rem;
}

.icon38 {
  width: 3.8rem;
}

.icon45 {
  width: 4.5rem;
}

.icon50 {
  width: 5rem;
}

/* Font Weights */
.f_300 {
  font-weight: 300 !important;
}

.f_400 {
  font-weight: 400 !important;
}

.f_500 {
  font-weight: 500 !important;
}

.f_600 {
  font-weight: 600 !important;
}

.f_700 {
  font-weight: 700 !important;
}

.f_800 {
  font-weight: 800 !important;
}

.f_900 {
  font-weight: 900 !important;
}

/* z-index */
.z1 {
  z-index: 1 !important;
}

.z0 {
  z-index: 0 !important;
}

.z-1 {
  z-index: -1 !important;
}

/* round */
.round0 {
  border-radius: 0;
}

.round10 {
  border-radius: 1rem;
}

.round12 {
  border-radius: 1.2rem;
}

.round20 {
  border-radius: 2rem;
}

.round30 {
  border-radius: 3rem;
}

.round28 {
  border-radius: 2.8rem;
}

.round100 {
  border-radius: 100rem;
}

/* titles */
h1 {
  font-size: 4rem;
  line-height: 120%;
}
@media (max-width: 991.98px) {
  h1 {
    font-size: 2.8rem;
    line-height: 110%;
  }
}

h2 {
  font-size: 4rem;
  line-height: 120%;
}
@media (max-width: 991.98px) {
  h2 {
    font-size: 2.8rem;
    line-height: 110%;
  }
}

h3 {
  font-size: 2.8rem;
  line-height: 120%;
}
@media (max-width: 991.98px) {
  h3 {
    font-size: 2rem;
    line-height: 110%;
  }
}

h4 {
  font-size: 2.4rem;
  line-height: 120%;
}

h5 {
  font-size: 2rem;
  line-height: 120%;
}

h6 {
  font-size: 1.8rem;
  line-height: 120%;
}

/* texts */
.text_xxl {
  font-size: 2.4rem;
  line-height: 120%;
}

.text_xl {
  font-size: 2rem;
  line-height: 120%;
}

.text_lg {
  font-size: 1.8rem;
  line-height: 120%;
}

.text_md {
  font-size: 1.6rem;
  line-height: 120%;
}

.text_sm {
  font-size: 1.4rem;
  line-height: 120%;
}

.text_15 {
  font-size: 1.5rem;
  line-height: 120%;
}

.text_xsm {
  font-size: 1.2rem;
  line-height: 120%;
}

.text_smallest {
  font-size: 1rem;
  line-height: 120%;
}

/* scrollbar style */
/* border */
.border_t1 {
  border: 0.1rem solid #eaecf0;
}

.border_t1_left {
  border-left: 0.1rem solid #eaecf0;
}

.border_t1_right {
  border-right: 0.1rem solid #eaecf0;
}

.border_t1_bottom {
  border-bottom: 0.1rem solid #eaecf0;
}

.border_t1_top {
  border-top: 0.1rem solid #eaecf0;
}

/* buttons */
.button {
  height: 4.9rem;
  padding: 0 3rem;
  border-radius: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  font-weight: 600;
}
.button.button_darkpink {
  background: #d5abb9;
}
.button.button_darkpink:hover {
  background: #0b8f85;
}
.button.button_orange {
  background: #da673a;
}
.button.button_orange:hover {
  background: #0b8f85;
}
.button.button_white {
  background: #fff;
}
.button.button_lightorange {
  background: #f0e0ca;
}
.button span {
  line-height: 120%;
  font-size: 1.6rem;
  color: #000;
  font-weight: 600;
  -webkit-transition: 0.65s ease;
  transition: 0.65s ease;
  text-transform: uppercase;
}
.button span:nth-child(1) {
  opacity: 0;
}
.button span:nth-child(2) {
  -webkit-transform: translateY(15rem) rotate(30deg);
          transform: translateY(15rem) rotate(30deg);
}
.button:hover span:nth-child(2) {
  -webkit-transform: translateY(0) rotate(0deg);
          transform: translateY(0) rotate(0deg);
}
.button:hover span:nth-child(3) {
  -webkit-transform: translateY(-10rem) rotate(30deg);
          transform: translateY(-10rem) rotate(30deg);
}
@media (max-width: 991.98px) {
  .button {
    height: 4rem;
    padding: 0 1.5rem;
  }
  .button span {
    font-size: 1.4rem;
  }
}

@media (max-width: 600px) {
    .button {
      height: 4rem;
      padding: 0 1.5rem;
    }

    .button span {
      font-size: 1.2rem;
    }
  }

/* -------------- preloader --------------- */
#preloader {
  position: fixed;
  background: #fff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  height: 100vh;
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#preloader .loader3 {
  width: 5rem;
  height: 5rem;
  display: inline-block;
  padding: 0;
  text-align: left;
}
#preloader .loader3 span {
  position: absolute;
  display: inline-block;
  width: 5rem;
  height: 5rem;
  border-radius: 100%;
  background: #da673a;
  -webkit-animation: loader3 1.5s linear infinite;
  animation: loader3 1.5s linear infinite;
}
#preloader .loader3 span:last-child {
  animation-delay: -0.9s;
  -webkit-animation-delay: -0.9s;
}

@-webkit-keyframes loader3 {
  0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    opacity: 0;
  }
}
@keyframes loader3 {
  0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    opacity: 0;
  }
}
/*Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1440px) {
  html {
    font-size: 0.6944vw;
  }
  html:not(.homepage) .site_header {
    top: 2rem;
  }
  html:not(.homepage) .site_header.fixed_menu {
    top: 2rem !important;
  }
  html:not(.homepage) .site_header.fixed_menu:after {
    opacity: 1;
  }
  html:not(.homepage) .site_header.fixed_menu:before {
    opacity: 1;
  }
  html:not(.homepage) .site_header:before {
    width: calc(100% - 4rem);
    left: 2rem;
  }
  html:not(.homepage) .site_header:after {
    width: calc(100% + 4rem);
    left: 0;
  }
  html:not(.homepage) .site_header .logo {
    z-index: 9;
  }
  html:not(.homepage) .container {
    width: 128rem;
  }
  .container {
    width: 128rem;
    max-width: 100%;
  }
  .homepage .container {
    padding-right: 4.5rem;
    padding-left: 0;
  }
  main {
    margin-top: 0;
    overflow: hidden;
  }
  main > div {
    border: 2rem solid #fff;
    border-radius: 4rem;
  }
  main > div:nth-child(1) {
    padding-top: 18rem;
  }
  .transaksija_area {
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .txt_area {
    padding-top: 14rem !important;

    a {
        color: #da673a;
    }

    a:hover {
        color: #ea774a;
    }
    ol {
        counter-increment: step-counter;
        list-style-type: decimal;
        margin-left:2rem;
    }
  }
}
@media (min-width: 992px) and (max-width: 1439.98px) {
  html:not(.homepage) {
    font-size: 0.63vw;
  }
  html:not(.homepage) .site_header {
    top: 2rem;
  }
  html:not(.homepage) .site_header.fixed_menu {
    top: 2rem;
  }
  html:not(.homepage) .site_header.fixed_menu:after {
    opacity: 1;
  }
  html:not(.homepage) .site_header.fixed_menu:before {
    opacity: 1;
  }
  html:not(.homepage) .site_header:before {
    width: calc(100% - 4rem);
    left: 2rem;
    opacity: 0;
  }
  html:not(.homepage) .site_header:after {
    width: calc(100% + 4rem);
    left: 0;
  }
  html:not(.homepage) .site_header .logo {
    z-index: 9;
  }
  html:not(.homepage) .container {
    width: 140rem;
    max-width: 100%;
    padding: 0;
  }
  html:not(.homepage) body {
    background: #fff !important;
  }
  html.homepage {
    font-size: 0.63vw;
  }
  html.homepage .container {
    padding-right: 4.5rem;
    padding-left: 0;
    max-width: 140rem;
  }


  .sticky-img {
    position: sticky;
    top: 100px;
}

  main {
    margin-top: 0;
  }
  main > div {
    border: 2rem solid #fff;
    border-radius: 4rem;
  }
  main > div:nth-child(1) {
    padding-top: 18rem;
  }
  .txt_area {
    padding-top: 14rem !important;
  }
  .transaksija_area {
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 991.98px) {
  html:not(.homepage) {
    font-size: 1.3vw;
  }
  html:not(.homepage) .container {
    width: 100%;
    max-width: 100%;
    padding: 0 2rem;
  }
  html:not(.homepage) .fixed_menu {
    top: 1rem;
  }
  html:not(.homepage) .fixed_menu:after {
    opacity: 1;
  }
  html:not(.homepage) .fixed_menu:before {
    opacity: 1;
  }
  html:not(.homepage) .site_header {
    padding: 0 3rem;
  }
  html:not(.homepage) .site_header.fixed_menu {
    top: 1rem;
  }
  html:not(.homepage) .site_header.fixed_menu:after {
    opacity: 1;
  }
  html:not(.homepage) .site_header.fixed_menu:before {
    opacity: 1;
  }
  html:not(.homepage) .site_header:before {
    width: calc(100% - 2rem);
    height: 100%;
    background: #f0e0ca;
    position: absolute;
    left: 1rem;
    top: 0;
    content: "";
    z-index: 9;
    opacity: 0;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    pointer-events: none;
    border-radius: 1.5rem;
  }
  html:not(.homepage) .site_header:after {
    height: calc(100% + 3rem);
  }
  html:not(.homepage) body {
    background: #fff !important;
  }
  html:not(.homepage) body.menu_toggled .fixed_menu {
    top: 1rem;
  }
  html:not(.homepage) .logo {
    z-index: 9;
  }
  html.homepage {
    font-size: 1.2vw;
  }
  html.homepage .container {
    padding: 0;
    width: 100%;
    max-width: 100%;
  }
  main {
    margin-top: 0;
    overflow: hidden;
  }
  main > div {
    border: 1rem solid #fff;
    border-radius: 2.5rem;
  }
  main > div:nth-child(1) {
    padding-top: 14rem;
  }
}
/*Medium devices (tablets, 767px and down)*/
@media (max-width: 767px) {
  .remove-section-vh {
    width: 100vw;
    height: 44vh !important;
    padding-top: 12rem;
  }
}
/*Medium devices (tablets, 767px and down)*/
@media (max-width: 767px) {
  html {
    font-size: 55% !important;
  }
  .fixed_menu {
    top: 1rem;
  }
  .fixed_menu:after {
    opacity: 1;
  }
  .fixed_menu:before {
    opacity: 1;
  }
  .site_header {
    padding: 0 3rem;
  }
  .site_header.fixed_menu {
    top: 1rem !important;
  }
  .site_header.fixed_menu:after {
    opacity: 1;
    height: calc(100% + 3rem);
  }
  .site_header.fixed_menu:before {
    opacity: 1;
  }
  .site_header:before {
    width: calc(100% - 2rem);
    left: 1rem;
    opacity: 1;
  }
  .site_header:after {
    height: calc(100% + 3rem);
  }
  body.menu_toggled .fixed_menu {
    top: 0;
  }
  .logo {
    z-index: 9;
  }
  main {
    margin-top: 0;
    overflow: hidden;
  }
  main > div:nth-child(1) {
    padding-top: 10rem;
  }
  .menu_toggled main > div:nth-child(1) {
    margin: 0;
  }
  /* Specific styles for small screens */
  #fullpage .section {
    height: auto; /* Allow sections to have auto height */
    overflow-y: visible; /* Enable normal overflow behavior */
  }
  body {
    overflow-y: auto; /* Ensure vertical scrolling is enabled */
  }
}
/*Small devices (landscape phones, 575px and down)*/
@media (max-width: 575px) {
  html {
    font-size: 2.66vw !important;
  }
}
/* -------------- Header --------------- */
.site_header {
  z-index: 999999;
  position: fixed;
  height: 12rem;
  width: 100%;
  background: transparent;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
}
.site_header.fixed_menu {
  height: 10rem;
  top: 0;
}
.site_header .header_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fff;
  height: 3.9rem;
  padding: 0 1.5rem;
  border-radius: 10rem;
  font-weight: 600;
}
.site_header .menu_link {
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
}
.site_header .menu_link:hover {
  color: #0b8f85 !important;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .site_header {
    height: 8rem;
    padding: 0 3rem;
    top: 1rem;
  }
  .site_header.fixed_menu {
    height: 7rem;
  }
  .site_header .container {
    padding: 0 3rem;
  }
  .site_header .header_btn {
    height: 4rem;
    padding: 0 1.5rem;
    font-size: 1.4rem;
  }
  .site_header .menu_link {
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  .site_header {
    height: 7rem;
    top: 1rem;
    padding: 2.5rem;
  }
  .site_header.fixed_menu {
    height: 6rem;
    top: 1rem;
  }
  .site_header .header_right > * {
    margin-left: 1rem;
  }
}

@media (max-width: 767px) {
  .mobile_menu {
    top: 0;
    position: relative;
    width: 100%;
    left: 0;
    background: #fff;
    padding: 0;
    height: 0;
    -webkit-transition: 0.2s ease all;
    transition: 0.2s ease all;
    opacity: 0;
    padding-top: 0;
    pointer-events: none;
    margin: 0 !important;
  }
  .mobile_menu .primary_menus {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 !important;
    gap: 0.1rem;
  }

  .site_header .header_right > * {
    margin-left: .5rem;
  }

  .mobile_menu .primary_menus a {
    margin: 0;
    font-size: 2.8rem;
    font-family: "PP Agrandir", sans-serif;
    padding: 1.5rem;
    background: #f0e0ca;
    border-radius: 1.5rem;
    line-height: 1.2;
    font-weight: 800 !important;
  }
  .hamburger_btn img:nth-child(1) {
    display: block;
  }
  .hamburger_btn img:nth-child(2) {
    display: none;
  }
  .hamburger_btn.active img:nth-child(1) {
    display: none;
  }
  .hamburger_btn.active img:nth-child(2) {
    display: block;
  }
  .menu_toggled {
    -webkit-transition: 0.2s all ease;
    transition: 0.2s all ease;
    overflow: hidden;
  }
  .menu_toggled .mobile_menu {
    height: 29.5rem;
    opacity: 1;
    pointer-events: all;
    padding: 1rem;
    padding-top: 8.5rem;
    padding-bottom: 0;
  }
}
.header_right a,
.header_right button {
  position: relative;
  z-index: 99;
}

.site_header:before {
  width: calc(100% - 2rem);
  height: 100%;
  background: #f0e0ca;
  position: absolute;
  left: 1rem;
  top: 0;
  content: "";
  z-index: 9;
  opacity: 0;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  pointer-events: none;
  border-radius: 1.5rem;
}
.site_header:after {
  width: 100%;
  height: calc(100% + 4rem);
  background: #fff;
  position: absolute;
  left: 0;
  top: -2rem;
  content: "";
  z-index: -9;
  opacity: 0;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  pointer-events: none;
}
@media (max-width: 767px) {
  .site_header:before {
    opacity: 0;
  }
}

@media (max-width: 767px) {
  .menu_toggled #fullpage {
    margin-top: 0;
  }
  .menu_toggled .hero_area .content {
    padding-top: 0;
  }
  .menu_toggled .site_header:before {
    opacity: 1 !important;
  }
}
body.fp-viewing-1stpage .logo {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: fixed;
  top: calc(50% - 5.5rem);
  left: 8rem;
}
body.fp-viewing-1stpage .logo img {
  width: 45rem;
}
body.fp-viewing-2ndpage .logo, body.fp-viewing-3rdpage .logo, body.fp-viewing-4thpage .logo, body.fp-viewing-5thpage .logo, body.fp-viewing-6thpage .logo {
  -webkit-transform: translateY(4.5rem);
          transform: translateY(4.5rem);
  top: 0;
  position: fixed;
}
body.fp-viewing-2ndpage .logo img, body.fp-viewing-3rdpage .logo img, body.fp-viewing-4thpage .logo img, body.fp-viewing-5thpage .logo img, body.fp-viewing-6thpage .logo img {
  width: 11.1rem;
}
body .logo img {
  width: 11.1rem;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
body:not(.homepage) .logo {
  -webkit-transform: translate(1rem, 0) !important;
          transform: translate(1rem, 0) !important;
  left: 0 !important;
  top: 0 !important;
}
body:not(.homepage) .logo img {
  width: 11.1rem;
}
@media (min-width: 992px) and (max-width: 1439.98px) {
  body.fp-viewing-1stpage .logo {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    position: fixed;
    top: calc(50% - 5.5rem);
    left: 9.5rem;
  }
  body.fp-viewing-1stpage .logo img {
    width: 50rem;
  }
  body.fp-viewing-2ndpage .logo, body.fp-viewing-3rdpage .logo, body.fp-viewing-4thpage .logo, body.fp-viewing-5thpage .logo, body.fp-viewing-6thpage .logo {
    -webkit-transform: translateY(4rem);
            transform: translateY(4rem);
    top: 0;
    position: fixed;
  }
  body.fp-viewing-2ndpage .logo img, body.fp-viewing-3rdpage .logo img, body.fp-viewing-4thpage .logo img, body.fp-viewing-5thpage .logo img, body.fp-viewing-6thpage .logo img {
    width: 11.1rem;
  }
  body .logo img {
    width: 1.1rem;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  body:not(.homepage) .logo {
    -webkit-transform: translate(0, 0) !important;
            transform: translate(0, 0) !important;
    left: 0 !important;
    top: 0 !important;
  }
  body:not(.homepage) .logo img {
    width: 11.1rem;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  body.fp-viewing-1stpage .logo {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    top: calc(50% + 0.5rem);
    left: 2.5rem;
  }
  body.fp-viewing-1stpage .logo img {
    width: 27.4rem;
  }
  body.fp-viewing-2ndpage .logo, body.fp-viewing-3rdpage .logo, body.fp-viewing-4thpage .logo, body.fp-viewing-5thpage .logo, body.fp-viewing-6thpage .logo {
    -webkit-transform: translateY(2.5rem);
            transform: translateY(2.5rem);
    left: 3rem;
  }
  body.fp-viewing-2ndpage .logo img, body.fp-viewing-3rdpage .logo img, body.fp-viewing-4thpage .logo img, body.fp-viewing-5thpage .logo img, body.fp-viewing-6thpage .logo img {
    width: 8.3rem;
  }
  body .logo img {
    width: 8.3rem;
  }
  body:not(.homepage) .logo {
    -webkit-transform: translate(0, 0) !important;
            transform: translate(0, 0) !important;
    left: 0 !important;
    top: 0 !important;
  }
  body:not(.homepage) .logo img {
    width: 7.3rem;
  }
}
@media (max-width: 767px) {
  body.fp-viewing-1stpage .logo {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    top: calc(50% - 0.5rem);
    left: 2rem;
  }
  body.fp-viewing-1stpage .logo img {
    width: 27.4rem;
  }
  body.fp-viewing-2ndpage .logo, body.fp-viewing-3rdpage .logo, body.fp-viewing-4thpage .logo, body.fp-viewing-5thpage .logo, body.fp-viewing-6thpage .logo {
    -webkit-transform: translateY(3rem);
            transform: translateY(3rem);
    left: 4rem;
  }
  body.fp-viewing-2ndpage .logo img, body.fp-viewing-3rdpage .logo img, body.fp-viewing-4thpage .logo img, body.fp-viewing-5thpage .logo img, body.fp-viewing-6thpage .logo img {
    width: 8.3rem;
  }
  body .logo {
    width: 0;
    -webkit-transform: translateY(13.5rem) translateX(0rem);
            transform: translateY(13.5rem) translateX(0rem);
  }
  body .logo img {
    width: 19rem;
  }
  body:not(.homepage) .logo {
    -webkit-transform: translate(0, 0) !important;
            transform: translate(0, 0) !important;
    left: 0 !important;
    top: 0 !important;
  }
  body:not(.homepage) .logo img {
    width: 7.3rem;
  }
}

@media (max-width: 767px) {
  .logo_reposition .logo {
    width: 0;
    -webkit-transform: translateY(0) translateX(0);
            transform: translateY(0) translateX(0);
    z-index: 999;
  }
  .logo_reposition .logo img {
    width: 8.3rem;
  }
}

@media (max-width: 767px) {
  .menu_toggled .logo {
    width: 0;
    -webkit-transform: translateY(0) translateX(0);
            transform: translateY(0) translateX(0);
    z-index: 999;
  }
  .menu_toggled .logo img {
    width: 8.3rem;
  }
}

.header_btn {
  position: relative;
  overflow: hidden;
  width: 8.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2rem;
}
.header_btn p {
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.header_btn:hover {
  background: #da673a;
}
.header_btn:hover p {
  color: #000;
}

@media (max-width: 560px) {
    .header_btn {
        width: 6.7rem;
    }
}

.notif {
  width: 2.9rem;
  height: 2.9rem;
  background: #da673a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 10rem;
  z-index: 9;
}

.footer {
  padding-bottom: 15rem;
  width: 100% !important;
}
.footer.footer_home {
  width: 100vw !important;
}
.footer.footer_v2 {
  padding-top: 8rem;
  padding-bottom: 0;
  height: auto;
}
.footer .subscribe {
  display: grid;
  grid-template-columns: 1fr 11rem;
  gap: 0.5rem;
}
.footer .subscribe .form_group {
  width: 100%;
}
.footer .subscribe .form_group .input_field::-webkit-input-placeholder {
  color: #000;
  font-family: "Brockmann", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  /*text-transform: capitalize;*/
}
.footer .subscribe .form_group .input_field::-moz-placeholder {
  color: #000;
  font-family: "Brockmann", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  /*text-transform: capitalize;*/
}
.footer .subscribe .form_group .input_field:-ms-input-placeholder {
  color: #000;
  font-family: "Brockmann", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  /*text-transform: capitalize;*/
}
.footer .subscribe .form_group .input_field::-ms-input-placeholder {
  color: #000;
  font-family: "Brockmann", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  /*text-transform: capitalize;*/
}
.footer .subscribe .form_group .input_field,
.footer .subscribe .form_group .input_field::placeholder {
  color: #000;
  font-family: "Brockmann", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  /*text-transform: capitalize;*/
}
.footer .subscribe .form_group .input_field {
  border-radius: 10rem;
  padding: 0 3rem;
  height: 4.9rem;
  width: 100%;
}
.footer .footer_right {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transform: rotate(6deg);
          transform: rotate(6deg);
  margin-left: auto;
  margin-right: 2rem;
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
}
.footer .footer_right:hover {
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
}
.footer .footer_right h3 {
  line-height: 110%;
}
.footer .footer_bottom {
  position: absolute;
  width: 121rem;
  bottom: 0;
  padding: 4rem 0;
  left: 7.5rem;
}
@media (min-width: 992px) and (max-width: 1439.98px) {
  .footer .footer_bottom {
    width: 134rem;
    left: 6.5rem;
  }
}
.footer .footer_icon img {
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
}
.footer .footer_icon:hover img {
  -webkit-filter: brightness(0) saturate(100%) invert(38%) sepia(28%) saturate(2337%) hue-rotate(138deg) brightness(100%) contrast(91%);
  filter: brightness(0) saturate(100%) invert(38%) sepia(28%) saturate(2337%) hue-rotate(138deg) brightness(100%) contrast(91%);
}
.footer .footer_links a {
  -webkit-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
}
.footer .footer_links a:hover {
  color: #0b8f85;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .footer {
    padding-left: 0 !important;
    padding-bottom: 5rem;
  }
  .footer.footer_home {
    padding-left: 2rem !important;
  }
  .footer .footer_bottom {
    width: calc(100vw - 10rem);
    bottom: 0;
    padding: 3rem 0;
    left: 2rem;
  }
  .footer .form_group .input_field {
    height: 4rem;
  }
  .footer .subscribe .form_group {
    width: 100%;
  }
  .footer .subscribe .form_group .input_field::-webkit-input-placeholder {
    font-size: 1.4rem;
  }
  .footer .subscribe .form_group .input_field::-moz-placeholder {
    font-size: 1.4rem;
  }
  .footer .subscribe .form_group .input_field:-ms-input-placeholder {
    font-size: 1.4rem;
  }
  .footer .subscribe .form_group .input_field::-ms-input-placeholder {
    font-size: 1.4rem;
  }
  .footer .subscribe .form_group .input_field,
  .footer .subscribe .form_group .input_field::placeholder {
    font-size: 1.4rem;
  }
  .footer .subscribe .form_group .input_field {
    padding: 0 1.5rem;
    height: 4rem;
  }
  .footer .subscribe .button {
    height: 4rem;
    font-weight: 600;
    padding: 0 1.5rem;
    text-transform: uppercase;
  }
  .footer .footer_right {
    margin-left: -5.5rem;
    margin-right: 0rem;
    padding: 2rem;
    width: 21.5rem;
  }
  .footer .footer_right h3 {
    padding-bottom: 1.5rem;
  }
  .footer .footer_right p {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .footer {
    padding-top: 11rem;
    padding-bottom: 4rem;
  }
  .footer .container {
    padding: 0 !important;
  }
  .footer .footer_bottom {
    width: calc(100vw - 4rem);
    bottom: 0;
    padding: 3rem 0;
    left: 0;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    position: relative;
    grid-template-rows: 1fr 1fr;
    gap: 1rem 5rem;
  }
  .footer .form_group .input_field {
    height: 4rem;
  }
  .footer .subscribe {
    grid-template-columns: 1fr 10.5rem;
  }
  .footer .subscribe .form_group {
    width: 100%;
  }
  .footer .subscribe .form_group .input_field::-webkit-input-placeholder {
    font-size: 1.4rem;
  }
  .footer .subscribe .form_group .input_field::-moz-placeholder {
    font-size: 1.4rem;
  }
  .footer .subscribe .form_group .input_field:-ms-input-placeholder {
    font-size: 1.4rem;
  }
  .footer .subscribe .form_group .input_field::-ms-input-placeholder {
    font-size: 1.4rem;
  }
  .footer .subscribe .form_group .input_field,
  .footer .subscribe .form_group .input_field::placeholder {
    font-size: 1.4rem;
  }
  .footer .subscribe .form_group .input_field {
    padding: 0 1.5rem;
    height: 4rem;
  }
  .footer .subscribe .button {
    height: 4rem;
    font-weight: 600;
    padding: 0 1.5rem;
    text-transform: uppercase;
  }
  .footer .footer_right {
    padding: 2rem;
    width: 23.5rem;
    margin: 0 auto;
  }
  .footer .footer_right h3 {
    padding-bottom: 1.5rem;
  }
  .footer .footer_right p {
    padding-right: 3rem;
  }
  .footer .footer_links {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer .footer_links a {
    padding-bottom: 0;
    line-height: 1;
  }
  .footer .footer_links.footer_box3 {
    grid-column: 2;
    grid-row: 1;
  }
  .footer .footer_links.footer_box3 a {
    line-height: 1.2;
  }
  .footer .footer_links.footer_box1 {
    grid-column: 1;
    grid-row: 1;
  }
  .footer .footer_links.footer_box2 {
    grid-column: 1;
    grid-row: 2;
  }
  .footer .footer_links.footer_box4 {
    grid-column: 2;
    grid-row: 2;
  }
  .footer .footer_links.footer_box1, .footer .footer_links.footer_box2 {
    gap: 2.5rem;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .footer .social_media_icons {
    display: grid !important;
    grid-template-columns: 0fr 0fr;
    gap: 1rem;
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .footer .social_media_icons a {
    margin: 0;
  }
  .footer .row > * {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    padding-top: 5rem;
  }
  .footer .col-md-5 {
    padding: 2rem 0;
  }
}

@media (min-width: 992px) and (max-width: 1439.98px) {
  .footer.footer_home {
    padding: 0 4rem 0 2rem !important;
  }
}
.form_group {
  width: 100%;
}
.form_group .input_field::-webkit-input-placeholder {
  color: #000;
  font-family: "Brockmann", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  /*text-transform: capitalize;*/
}
.form_group .input_field::-moz-placeholder {
  color: #000;
  font-family: "Brockmann", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  /*text-transform: capitalize;*/
}
.form_group .input_field:-ms-input-placeholder {
  color: #000;
  font-family: "Brockmann", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  /*text-transform: capitalize;*/
}
.form_group .input_field::-ms-input-placeholder {
  color: #000;
  font-family: "Brockmann", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  /*text-transform: capitalize;*/
}
.form_group .input_field,
.form_group .input_field::placeholder {
  color: #000;
  font-family: "Brockmann", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  /*text-transform: capitalize;*/
}
.form_group .input_field {
  border-radius: 10rem;
  padding: 0 3rem;
  height: 4.2rem;
  width: 100%;
}
.form_group .input_field:focus::-webkit-input-placeholder {
  color: #fff !important;
}
.form_group .input_field:focus::-moz-placeholder {
  color: #fff !important;
}
.form_group .input_field:focus:-ms-input-placeholder {
  color: #fff !important;
}
.form_group .input_field:focus::-ms-input-placeholder {
  color: #fff !important;
}
.form_group .input_field:focus::placeholder {
  color: #fff !important;
}
@media (max-width: 991.98px) {
  .form_group .input_field::-webkit-input-placeholder {
    font-size: 1.4rem;
  }
  .form_group .input_field::-moz-placeholder {
    font-size: 1.4rem;
  }
  .form_group .input_field:-ms-input-placeholder {
    font-size: 1.4rem;
  }
  .form_group .input_field::-ms-input-placeholder {
    font-size: 1.4rem;
  }
  .form_group .input_field,
  .form_group .input_field::placeholder {
    font-size: 1.4rem;
  }
  .form_group .input_field {
    height: 4rem !important;
  }
}

.subscribe {
  position: relative;
}
.subscribe:before {
  content: "Tvojesporočilo je bilouspešnoposlano...";
  position: absolute;
  font-family: "PP Agrandir", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  bottom: -4rem;
  opacity: 0;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  pointer-events: none;
}
.subscribe.success:before {
  opacity: 1;
  pointer-events: all;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
@media (max-width: 991.98px) {
  .subscribe:before {
    font-size: 1.2rem;
    bottom: -2.5rem;
  }
}

@media (max-width: 767px) {
  .footer .row {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .footer.footer_v2 .row {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 575px) {
  .footer .row {
    padding-left: 0;
    padding-right: 0;
  }
}
.section {
  width: 100vw;
  height: 100vh;
  padding-top: 9rem;
  border: 2rem solid #fff;
  border-radius: 4rem;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .section {
    padding: 0 4rem 0 1.5rem;
    border: 1rem solid #fff;
    border-radius: 2.5rem;
  }
}
@media (max-width: 767px) {
  .section {
    padding: 0 1.5rem;
    height: auto !important;
    position: relative;
    overflow-x: hidden;
    border: 1rem solid #fff;
    border-radius: 2.5rem;
  }
}

@media (max-width: 991.98px) {
  .remove-section-vh {
    height: auto !important;
    position: relative;
    overflow-x: hidden;
  }
}
@media (max-width: 767px) {
  .remove-section-vh {
    padding: 0 2rem !important;
  }
}
.hero_area {
  background: #f0dbd9;
}
.hero_area .content {
  padding-top: 15rem;
}
@media (min-width: 1440px) {
  .hero_area .hero_img.hero_img_lg {
    width: 50vh;
    margin-left: auto;
    margin-right: 4rem;
  }
}
@media (min-width: 992px) and (max-width: 1439.98px) {
  .hero_area .hero_img.hero_img_lg {
    width: 50vh;
    margin-left: auto;
    margin-right: 3rem;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero_area {
    padding-top: 7rem;
  }
  .hero_area .hero_img.hero_img_sm {
    width: 25rem;
    margin-left: auto;
    margin-right: 5rem;
  }
  .hero_area .content {
    padding-top: 18rem;
  }
  .hero_area .content p {
    padding: 2rem 0;
  }
}
@media (max-width: 767px) {
  .hero_area {
    padding-top: 12rem;
    padding-bottom: 7rem;
  }
  .hero_area .content {
    padding-top: 8rem;
    padding-bottom: 2.5rem;
  }
  .hero_area .content p {
    padding: 2rem 0;
  }
  .hero_area img {
    width: 32rem;
    margin: auto;
  }
}
@media (max-width: 575px) {
  .hero_area img {
    width: 20rem;
    margin-left: auto;
    margin-right: 3rem;
  }
}

#fp-nav {
  display: none;
}

.side_navigation {
  position: fixed;
  z-index: 9999;
  height: calc(100vh - 24rem);
  top: 18.5rem;
  right: 0;
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
  border-radius: 0.1rem;
}
.side_navigation p {
  -webkit-transform: rotate(90deg) translateY(190%) translateX(4rem);
          transform: rotate(90deg) translateY(190%) translateX(4rem);
}
.side_navigation ul {
  display: grid;
  gap: 1rem;
}
.side_navigation ul li {
  padding: 0;
  margin: 0;
}
.side_navigation ul li a {
  width: 1.2rem;
  height: 0.8rem;
  background: #fff;
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
  display: block;
  border-radius: 0.1rem;
  position: absolute;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  bottom: 50%;
}
.side_navigation ul li span {
  display: none;
}
@media (min-width: 992px) and (max-width: 1439.98px) {
  .side_navigation {
    right: 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .side_navigation {
    height: calc(100vh - 15rem);
    top: 11rem;
    right: -3.8rem;
  }
  .side_navigation p {
    -webkit-transform: rotate(90deg) translateY(270%) translateX(4rem);
            transform: rotate(90deg) translateY(270%) translateX(4rem);
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .side_navigation {
    display: none !important;
    opacity: 0;
    pointer-events: none;
  }
}

.side_navigation ul li:nth-child(1) a {
  bottom: calc(50% - 8rem);
}

.side_navigation ul li:nth-child(2) a {
  bottom: calc(50% - 6.2rem);
}

.side_navigation ul li:nth-child(3) a {
  bottom: calc(50% - 4.4rem);
}

.side_navigation ul li:nth-child(4) a {
  bottom: calc(50% - 2.6rem);
}

.side_navigation ul li:nth-child(5) a {
  bottom: calc(50% - 0.8rem);
}

.side_navigation ul li:nth-child(6) a {
  bottom: calc(50% + 1rem);
}

.section-section1 .side_navigation ul li:nth-child(1) a,
.section-section2 .side_navigation ul li:nth-child(1) a,
.section-section3 .side_navigation ul li:nth-child(1) a,
.section-section4 .side_navigation ul li:nth-child(1) a,
.section-section5 .side_navigation ul li:nth-child(1) a,
.section-section6 .side_navigation ul li:nth-child(1) a,
.section-section7 .side_navigation ul li:nth-child(1) a {
  position: absolute;
  bottom: 0;
  background: #da673a;
}

.section-section2 .side_navigation ul li:nth-child(2) a,
.section-section3 .side_navigation ul li:nth-child(2) a,
.section-section4 .side_navigation ul li:nth-child(2) a,
.section-section5 .side_navigation ul li:nth-child(2) a,
.section-section6 .side_navigation ul li:nth-child(2) a {
  position: absolute;
  bottom: 1.8rem;
  background: #da673a;
}

.section-section3 .side_navigation ul li:nth-child(3) a,
.section-section4 .side_navigation ul li:nth-child(3) a,
.section-section5 .side_navigation ul li:nth-child(3) a,
.section-section6 .side_navigation ul li:nth-child(3) a {
  position: absolute;
  bottom: 3.8rem;
  background: #da673a;
}

.section-section4 .side_navigation ul li:nth-child(4) a,
.section-section5 .side_navigation ul li:nth-child(4) a,
.section-section6 .side_navigation ul li:nth-child(4) a {
  position: absolute;
  bottom: 5.8rem;
  background: #da673a;
}

.section-section5 .side_navigation ul li:nth-child(5) a,
.section-section6 .side_navigation ul li:nth-child(5) a {
  position: absolute;
  bottom: 7.8rem;
  background: #da673a;
}

.section-section6 .side_navigation ul li:nth-child(6) a,
.section-section7 .side_navigation ul li:nth-child(6) a {
  position: absolute;
  bottom: 9.8rem;
  background: #da673a;
}

.stack_img_area .row {
  margin-left: -3.5rem;
  margin-right: -3.5rem;
}
.stack_img_area .row > * {
  padding: 0 3.5rem;
}
@media (min-width: 992px) {
  .stack_img_area .content p {
    padding: 4vh 0;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .stack_img_area {
    padding-top: 8rem;
  }
  .stack_img_area .content {
    padding-right: 2rem;
  }
  .stack_img_area .content h2 {
    padding-right: 5rem;
  }
  .stack_img_area .content h2 br {
    display: none;
  }
  .stack_img_area .row {
    margin-left: -1rem;
    margin-right: -1rem;
  }
  .stack_img_area .row > * {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .stack_img_area {
    padding-bottom: 0;
    padding-top: 3rem;
  }
  .stack_img_area .content {
    padding-right: 0;
  }
  .stack_img_area .content h2 {
    padding-right: 0;
  }
  .stack_img_area .content h2 br {
    display: none;
  }
  .stack_img_area .content p {
    padding: 2rem 0;
  }
}
@media (max-width: 767px) {
  .stack_img_area .content {
    padding-right: 4rem;
  }
}

.stack_images {
  width: 100%;
  height: 70vh;
  position: relative;
}



.stack_images .stack_img_box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
}
.stack_images .stack_img_box.stack_img_box3 {
  -webkit-transform: translate(-50%, -50%) rotate(11deg) !important;
          transform: translate(-50%, -50%) rotate(11deg) !important;
  z-index: 3;
}
.stack_images .stack_img_box.stack_img_box3 img {
  width: 39vh;
}
.stack_images .stack_img_box.stack_img_box2 {
  -webkit-transform: translate(0) rotate(-7.01deg) !important;
          transform: translate(0) rotate(-7.01deg) !important;
  bottom: 4rem !important;
  top: auto !important;
  right: 12rem;
  left: auto !important;
  z-index: 1;
}
.stack_images .stack_img_box.stack_img_box2 img {
  width: 39vh;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 1rem;
}
.stack_images .stack_img_box.stack_img_box1 {
  z-index: 2;
  -webkit-transform: translate(-57%, 0rem) rotate(-12.33deg) !important;
          transform: translate(-57%, 0rem) rotate(-12.33deg) !important;
  top: 5rem !important;
}
.stack_images .stack_img_box.stack_img_box1 img {
  width: 48vh;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .stack_images {
    height: 45rem;
  }

  .stack_images .stack_img_box {
    position: absolute;
    top: 50%;
    left: 50%;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    border-radius: 1rem;
  }
  .stack_images .stack_img_box.stack_img_box3 {
    -webkit-transform: translate(-50%, -50%) rotate(11deg) !important;
            transform: translate(-50%, -50%) rotate(11deg) !important;
  }
  .stack_images .stack_img_box.stack_img_box3 img {
    width: 25rem;
  }
  .stack_images .stack_img_box.stack_img_box2 {
    -webkit-transform: translate(0) rotate(-7.01deg) !important;
            transform: translate(0) rotate(-7.01deg) !important;
    bottom: 6rem !important;
    right: 3rem;
  }
  .stack_images .stack_img_box.stack_img_box2 img {
    width: 25rem;
    border-radius: 0.8rem;
  }
  .stack_images .stack_img_box.stack_img_box1 {
    z-index: 2;
    -webkit-transform: translate(-52%, 0rem) rotate(-12.33deg) !important;
            transform: translate(-52%, 0rem) rotate(-12.33deg) !important;
    top: 5rem !important;
  }
  .stack_images .stack_img_box.stack_img_box1 img {
    width: 30rem;
  }
}
@media (max-width: 767px) {
  .stack_images {
    height: 25rem;
  }

  .stack_images2 {
    height: 45rem !important;
  }

  .stack_images .stack_img_box {
    position: absolute;
    top: 50%;
    left: 50%;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .stack_images .stack_img_box.stack_img_box3 {
    -webkit-transform: translate(-50%, -50%) rotate(11deg) !important;
            transform: translate(-50%, -50%) rotate(11deg) !important;
  }
  .stack_images .stack_img_box.stack_img_box3 img {
    width: 22rem;
  }
  .stack_images .stack_img_box.stack_img_box2 {
    -webkit-transform: translate(-50%) rotate(-7.01deg) !important;
            transform: translate(-50%) rotate(-7.01deg) !important;
    bottom: 6rem !important;
    right: 8rem;
  }
  .stack_images .stack_img_box.stack_img_box2 img {
    width: 20rem;
  }
  .stack_images .stack_img_box.stack_img_box1 img {
    width: 25rem;
  }
}
@media (max-width: 767px) {
  .stack_images .stack_img_box {
    position: absolute;
    top: 50%;
    left: 50%;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .stack_images .stack_img_box.stack_img_box3 {
    -webkit-transform: translate(-50%, -50%) rotate(11deg) !important;
            transform: translate(-50%, -50%) rotate(11deg) !important;
  }
  .stack_images .stack_img_box.stack_img_box3 img {
    width: 22rem;
  }
  .stack_images .stack_img_box.stack_img_box2 {
    -webkit-transform: translate(-50%) rotate(-7.01deg) !important;
            transform: translate(-50%) rotate(-7.01deg) !important;
    bottom: 7rem !important;
    right: 14rem;
  }
  .stack_images .stack_img_box.stack_img_box2 img {
    width: 20rem;
  }
  .stack_images .stack_img_box.stack_img_box1 img {
    width: 25rem;
  }
}
@media (max-width: 575px) {
  .stack_images .stack_img_box {
    position: absolute;
    top: 50%;
    left: 50%;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .stack_images .stack_img_box.stack_img_box3 {
    -webkit-transform: translate(-50%, -50%) rotate(11deg) !important;
            transform: translate(-50%, -50%) rotate(11deg) !important;
  }
  .stack_images .stack_img_box.stack_img_box3 img {
    width: 24rem;
  }
  .stack_images .stack_img_box.stack_img_box2 {
    -webkit-transform: translate(0) rotate(-7.01deg) !important;
            transform: translate(0) rotate(-7.01deg) !important;
    bottom: 6rem !important;
    right: 1rem;
  }
  .stack_images .stack_img_box.stack_img_box2 img {
    width: 20rem;
  }
  .stack_images .stack_img_box.stack_img_box1 img {
    width: 25rem;
  }
}

.stack_img_box {
  padding: 1.5rem;
  background: #fff;
  border-radius: 1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.stack_img_box img {
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 991.98px) {
  .stack_img_box {
    padding: 0.8rem;
    border-radius: 0.8rem;
  }
}

.featurji_area .owl-stage-outer {
  overflow: visible !important;
}
.featurji_area .stack_img_box {
  border-radius: 2rem;
  padding: 1rem;
}
.featurji_area .featurji_box {
  opacity: 0;
  -webkit-transform: translateX(-20%);
          transform: translateX(-20%);
  -webkit-transition: 0.65s ease;
  transition: 0.65s ease;
}
.featurji_area .featurji_box.featurji_box1 {
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}
.featurji_area .featurji_box.featurji_box2 {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.featurji_area .featurji_box.featurji_box3 {
  -webkit-transition-delay: 0.75s;
          transition-delay: 0.75s;
}
.featurji_area.active .featurji_box {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .featurji_area {
    padding: 8rem 1rem 0rem 1rem;
  }
  .featurji_area .container {
    padding: 0 4rem 0 3rem;
  }
  .featurji_area .owl-stage-outer {
    margin-left: 1rem;
  }
  .featurji_area .owl-stage {
    width: 94% !important;
  }
}
@media (max-width: 767px) {
  .featurji_area {
    padding: 15rem 0 13rem 0;
  }
  .featurji_area p br {
    display: none;
  }
  .featurji_area .owl-stage-outer {
    padding-left: 2rem;
  }
}

.featurji_box img {
  width: 25rem;
  height: 42.5vh !important;
}
.featurji_box h3 {
  font-size: 3.2vh;
  padding: 2.5rem 0 1.5rem;
  line-height: 1.2;
}
.featurji_box p {
  font-size: 2vh;
  line-height: 1.4;
}
.featurji_box .featurji_img_box1 {
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
  -webkit-transform: rotate(4deg);
          transform: rotate(4deg);
}
.featurji_box .featurji_img_box1:hover {
  -webkit-transform: rotate(1deg);
          transform: rotate(1deg);
}
.featurji_box .featurji_img_box1 img {
  width: 27rem;
  height: 44.5vh !important;
}
.featurji_box .featurji_img_box2 {
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
  -webkit-transform: rotate(-4deg);
          transform: rotate(-4deg);
}
.featurji_box .featurji_img_box2:hover {
  -webkit-transform: rotate(1deg);
          transform: rotate(1deg);
}
.featurji_box .featurji_img_box2 img {
  width: 26rem;
  height: 40.8rem;
}
.featurji_box .featurji_img_box3 {
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
  -webkit-transform: rotate(4deg);
          transform: rotate(4deg);
}
.featurji_box .featurji_img_box3:hover {
  -webkit-transform: rotate(1deg);
          transform: rotate(1deg);
}
.featurji_box .featurji_img_box3 img {
  width: 26rem;
  height: 38.6rem;
}
@media (min-width: 992px) and (max-width: 1439.98px) {
  .featurji_box .featurji_img_box1 img {
    width: 32.5rem;
    height: 35.6rem !important;
  }
  .featurji_box .featurji_img_box2 img {
    width: 29rem;
    height: 36.8rem !important;
  }
  .featurji_box .featurji_img_box3 {
    -webkit-transform: rotate(4deg);
            transform: rotate(4deg);
  }
  .featurji_box .featurji_img_box3 img {
    width: 31rem;
    height: 35.6rem !important;
  }
  .featurji_box h3 {
    line-height: 110%;
    padding-top: 3rem;
  }
  .featurji_box p {
    font-size: 1.6rem;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .featurji_box.featurji_box2 {
    margin-left: -0.25rem;
  }
  .featurji_box h3 {
    padding-top: 2rem;
    padding-bottom: 1rem;
    font-size: 2rem;
  }
  .featurji_box .featurji_img_box1 img {
    width: 19rem;
    height: 20rem !important;
  }
  .featurji_box .featurji_img_box2 img {
    width: 19rem;
    height: 21rem !important;
  }
  .featurji_box .featurji_img_box3 img {
    width: 19rem;
    height: 21rem !important;
  }
  .featurji_box p {
    padding-right: 3rem;
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .featurji_box h3 {
    padding-top: 3rem;
    padding-bottom: 1rem;
  }
  .featurji_box .featurji_img_box1 {
    -webkit-transform: rotate(4deg);
            transform: rotate(4deg);
  }
  .featurji_box .featurji_img_box1 img {
    width: 25rem;
    height: 25rem !important;
  }
  .featurji_box .featurji_img_box2 {
    -webkit-transform: rotate(-4deg);
            transform: rotate(-4deg);
  }
  .featurji_box .featurji_img_box2 img {
    width: 25rem;
    height: 25rem !important;
  }
  .featurji_box .featurji_img_box3 {
    -webkit-transform: rotate(4deg);
            transform: rotate(4deg);
  }
  .featurji_box .featurji_img_box3 img {
    width: 25rem;
    height: 25rem !important;
  }
  .featurji_box p {
    font-size: 1.4rem;
  }
  .featurji_box h3 {
    font-size: 2.2rem;
    line-height: 1.2;
  }
}

@media (max-height: 650px) {
  .featurji_box p {
    font-size: 1.4rem;
  }
  .featurji_box h3 {
    font-size: 1.8rem;
  }
  .products_area .product_content > p {
    font-size: 1.4rem !important;
  }
}
.products_area .product_discount {
  width: 10.7rem;
  height: 10.7rem;
  background:#0b8f85ee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 10rem;
  position: absolute;
  top: -5rem;
  right: 5rem;

}

.products_area .product_discount > h3 {
    color: #d5abb9;
}

.products_area .product_discount.product_discount_s_purple {
  background: #8f53a1;
}
.products_area .product_flower_img {
  position: absolute;
  width: 47rem;
  bottom: -50rem;
  left: 0;
  -webkit-transition-delay: 0.35s;
          transition-delay: 0.35s;
  -webkit-transition: 0.8s ease-out;
  transition: 0.8s ease-out;
}
.products_area .product_img img {
  width: 40vh;
}
.products_area .owl-stage-outer {
  padding: 3rem 0;
}
.products_area.items_fade_in .product_flower_img {
  bottom: 0;
}
.products_area .drag_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 9.2rem;
  height: 9.2rem;
  background: #fff;
  border-radius: 10rem;
  margin: 0 auto;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  margin-top: -3rem;
  -webkit-transform: translateX(-4.5rem);
          transform: translateX(-4.5rem);
  cursor: -webkit-grab;
  cursor: grab;
}
.products_area .drag_btn:focus, .products_area .drag_btn:active {
  background: #da673a;
  color: #000;
}
.products_area .product_content p:nth-child(3) {
  margin-bottom: 1rem;
  padding-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.products_area .product_content h3 {
  padding: 3vh 0;
}
@media (min-width: 992px) and (max-width: 1439.98px) {
  .products_area .product_img img {
    width: 26rem;
  }
}
@media (min-width: 992px) and (max-width: 1439.98px) and (max-height: 650px) {
  .products_area.products_area_home .product_content p {
    font-size: 2.05rem;
  }
  .products_area.products_area_home .product_content p br {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .products_area {
    padding-top: 8rem;
  }
  .products_area .product_content > * {
    padding-bottom: 1rem;
    padding-top: 0;
    line-height: 1.2;
  }
  .products_area .product_content > p {
    font-size: 1.6rem;
    line-height: 1.4;
    padding-bottom: 0;
  }
  .products_area .product_content .button {
    padding-top: 0;
    padding-bottom: 0;
  }
  .products_area .product_content h3 {
    padding: 1.5rem 0;
  }
  .products_area .product_content br {
    display: none;
  }
  .products_area .product_discount {
    width: 6rem;
    height: 6rem;
    top: -2rem;
    right: 2rem;
  }
  .products_area .product_discount > * {
    font-size: 1.5rem;
  }
  .products_area .product_img img {

    width: 17rem;
    -webkit-transform: translateX(3rem);
            transform: translateX(3rem);
    margin-left: -6rem;
  }
  .products_area .drag_btn {
    width: 6rem;
    height: 6rem;
    font-size: 1.2rem;
    margin-top: -4rem;
    -webkit-transform: translateX(-2rem);
            transform: translateX(-2rem);
  }
  .products_area .owl-stage-outer {
    width: calc(100% - 2rem);
    padding: 0;
  }
}
@media (max-width: 767px) {
  .products_area {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .products_area .product_content {
    margin-right: 0;
  }
  .products_area .product_content > * {
    padding-bottom: 1rem;
    padding-top: 0;
  }
  .products_area .product_content .button {
    padding-top: 0;
    padding-bottom: 0;
  }
  .products_area .product_content br {
    display: none;
  }
  .products_area .product_content h3 {
    padding: 1rem 0;
  }
  .products_area .product_discount {
    width: 7rem;
    height: 7rem;
    top: 0rem;
    right: 7rem;
  }
  .products_area .product_discount > * {
    font-size: 1.5rem;
  }
  .products_area .drag_btn {
    width: 6rem;
    height: 6rem;
    font-size: 1.2rem;
    margin-top: -4rem;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .products_area .product {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 2rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: flex-end;
    height: 100%;
  }
  .products_area .product_img {
    margin-right: auto;
  }
  .products_area .product_img img {
    margin-left: 0;
    width: 24rem;
    margin-right: auto;
  }
  .products_area .product_discount h4 {
    font-size: 1.6rem;
  }
}
@media (max-width: 575px) {
  .products_area .product_img img {
    margin-left: 0rem;
    width: 24rem;
  }
}

.product_content h3:nth-last-child(2) {
    /*
    white-space: nowrap;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
    */
}

.cut_price {
  position: relative;
  margin-left: 1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.cut_price:before {
  content: "";
  width: 100%;
  height: 0.1rem;
  background: #000;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (min-width: 992px) and (max-width: 1439.98px) {
  .cut_price {
    font-size: 1.4rem;
  }
}
@media (max-width: 991.98px) {
  .cut_price {
    font-size: 1.1rem;
  }
}
@media (max-width: 575px) {
  .cut_price {
    font-size: 1.1rem;
  }
}

.fakts_area .fp-overflow {
  overflow: hidden;
}
.fakts_area .fakt_bottle1 {
  position: absolute;
  width: 27rem;
  bottom: 0;
  right: 17.7rem;
  z-index: 99;
}
.fakts_area .fakt_bottle2 {
  position: absolute;
  width: 40vh;
  top: 0;
  left: 23.8rem;
  z-index: 9;
}
@media (min-width: 1300px) and (max-width: 1600px) and (min-height: 768px) {
  .fakts_area .fakt_bottle2 {
    width: 38vh;
    top: -1rem;
  }
}
.fakts_area .container {
  padding-left: 5rem !important;
}
.fakts_area .container .row > * {
  padding: 0 4.5rem;
}
.fakts_area .container .fakt_img:after, .fakts_area .container .fakt_img:before {
  width: 100%;
  height: 5rem;
  position: absolute;
  content: "";
  top: -0.5rem;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(240, 219, 217)), to(rgba(240, 219, 217, 0)));
  background: linear-gradient(180deg, rgb(240, 219, 217) 0%, rgba(240, 219, 217, 0) 100%);
  z-index: 9;
}
.fakts_area .container .fakt_img:after {
  bottom: -0.5rem;
  top: auto;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(240, 219, 217, 0)), to(rgb(240, 219, 217))) !important;
  background: linear-gradient(180deg, rgba(240, 219, 217, 0) 0%, rgb(240, 219, 217) 100%) !important;
}
@media (min-width: 1440px) and (min-height: 768px) {
  .fakts_area .white_flower {
    width: 40vh !important;
  }
}
.fakts_area .white_flower {
  width: 32rem;
}
@media (min-width: 992px) and (max-width: 1439.98px) {
  .fakts_area .fakt_bottle2 {
    left: 30.8rem;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .fakts_area .fakt_bottle1 {
    right: 6.2rem;
    width: 20rem;
  }
  .fakts_area .fakt_bottle2 {
    left: 16rem;
    width: 20rem;
  }
  .fakts_area .white_flower {
    width: 22rem;
  }
  .fakts_area .container {
    padding-left: 0 !important;
  }
  .fakts_area .container .row {
    margin: 0;
  }
  .fakts_area .container .row > * {
    padding: 0 0;
  }
}
@media (max-width: 767px) {
  .fakts_area {
    padding: 9rem 0 5rem;
  }
  .fakts_area .fakt_img {
    height: 42rem;
    -webkit-transform: translateY(-3rem) scale(0.8);
            transform: translateY(-3rem) scale(0.8);
    margin-top: 2rem;
  }
}
.fakts_area .container {
  padding-left: 0 !important;
}
.fakts_area .container .row > * {
  padding: 0;
}

.animate_wrap {
  position: relative;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  vertical-align: bottom;
  overflow: hidden;
}
.animate_wrap img {
  -webkit-animation: animateWords 10s infinite ease;
  animation: animateWords 10s infinite ease;
}
.animate_wrap.animate_wrap1 span {
  -webkit-animation: animateWords 10s infinite ease;
  animation: animateWords 10s infinite ease;
  padding: 0.5rem 0;
}
.animate_wrap.animate_wrap3 span {
  -webkit-animation: animateWords 10s infinite ease;
  animation: animateWords 10s infinite ease;
}
.animate_wrap span {
  display: block;
}
@media (max-width: 991.98px) {
  .animate_wrap {
    height: 3.5rem;
  }
}

.fakt_img {
  position: relative;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  vertical-align: bottom;
  overflow: hidden;
}
.fakt_img.animate_wrap {
  border-radius: 20rem;
}
.fakt_img img {
  display: block;
  -webkit-animation: animateWords 10s infinite ease;
  animation: animateWords 10s infinite ease;
  padding: 3rem 0;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .fakt_img {
    height: 29rem !important;
    -webkit-transform: translateY(-4rem) !important;
            transform: translateY(-4rem) !important;
  }
  .fakt_img.animate_wrap {
    border-radius: 5rem;
  }
  .fakt_img img {
    width: 24rem;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .fakt_img {
    height: 29rem !important;
    -webkit-transform: translateY(0) !important;
            transform: translateY(0) !important;
  }
  .fakt_img img {
    width: 24rem;
  }
}
@media (max-width: 575px) {
  .fakt_img.animate_wrap {
    border-radius: 0;
  }
}

/* divided into as many parts as there are spans, each part decreasing the translateY by -100% */
@-webkit-keyframes animateWords {
  0% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  25% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  50% {
    -webkit-transform: translateY(-200%);
            transform: translateY(-200%);
  }
  75% {
    -webkit-transform: translateY(-300%);
            transform: translateY(-300%);
  }
  100% {
    -webkit-transform: translateY(-400%);
            transform: translateY(-400%);
  }
}
@keyframes animateWords {
  0% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  25% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  50% {
    -webkit-transform: translateY(-200%);
            transform: translateY(-200%);
  }
  75% {
    -webkit-transform: translateY(-300%);
            transform: translateY(-300%);
  }
  100% {
    -webkit-transform: translateY(-400%);
            transform: translateY(-400%);
  }
}
.owl-stage-outer {
  overflow: hidden;
}
.owl-stage-outer .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: flex-start;
      -ms-flex-align: flex-start;
          align-items: flex-start;
  padding: 2rem 0;
}

.owl-nav.disabled {
  display: none;
}

.people_area .peoples_cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3vh 0;
  gap: 1.5rem;
}
.people_area .owl-stage-outer {
  overflow: visible !important;
}
.people_area .people_wrap {
  opacity: 0;
  -webkit-transform: translateX(-20%);
          transform: translateX(-20%);
  -webkit-transition: 0.65s ease;
  transition: 0.65s ease;
}
.people_area .people_wrap.people_wrap1 {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}
.people_area .people_wrap.people_wrap2 {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.people_area .people_wrap.people_wrap3 {
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}
.people_area .people_wrap.people_wrap4 {
  -webkit-transition-delay: 0.65s;
          transition-delay: 0.65s;
}
.people_area .people_wrap.people_wrap5 {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.people_area.active .people_wrap {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media (max-width: 991.98px) {
  .people_area {
    padding: 5rem 0 0 0;
  }
  .people_area .owl-stage-outer {
    overflow: hidden !important;
    width: calc(100% - 4rem);
    -webkit-transform: translateX(2rem);
            transform: translateX(2rem);
    padding: 0;
  }
  .people_area .owl-stage-outer .owl-stage {
    padding: 0 2rem;
  }
  .people_area .peoples_cards {
    padding: 6rem 4rem 6rem 0rem;
  }
}
@media (max-width: 767px) {
  .people_area {
    padding: 0 0 0 0;
  }
  .people_area .peoples_cards {
    padding: 6rem 1rem;
  }
  .people_area .owl-stage-outer {
    overflow: visible !important;
    width: 100%;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.people {
  width: 23.1rem;
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
  cursor: pointer;
}

@media (min-width: 900px) {
    .people {
        width: 20.1rem;
      }
}

.people .people p.f_600 {
  font-size: 2.1vh;
  padding-top: 2vh;
  line-height: 3.2vh;
}
.people .people_img img {
  width: 15vh;
}
.people.people1 {
  -webkit-transform: rotate(3deg);
          transform: rotate(3deg);
}
.people.people1:hover {
  -webkit-transform: rotate(-2deg);
          transform: rotate(-2deg);
}
.people.people2 {
  -webkit-transform: rotate(-2deg);
          transform: rotate(-2deg);
}
.people.people2:hover {
  -webkit-transform: rotate(3deg);
          transform: rotate(3deg);
}
.people.people3 {
  -webkit-transform: rotate(5deg);
          transform: rotate(5deg);
}
.people.people3:hover {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.people.people4, .people.people5 {
  -webkit-transform: rotate(-3deg);
          transform: rotate(-3deg);
}
.people.people4:hover, .people.people5:hover {
  -webkit-transform: rotate(2deg);
          transform: rotate(2deg);
}
.people.people4 h3, .people.people5 h3 {
  padding-bottom: 4vh;
  font-size: 2.6rem;
}
@media (min-width: 1200px) {
  .people p.f_600.pt_40.pb_15 {
    font-size: 2.1vh;
    padding: 2vh 0;
    line-height: 1.4;
  }
  .people .people_name {
    font-size: 2.1vh !important;
  }
}
@media (min-width: 992px) and (max-width: 1439.98px) {
  .people.people5 {
    width: 21.5rem;
  }
}
@media (max-width: 991.98px) {
  .people .people_img img {
    width: 8rem;
  }
  .people.people3 {
    width: 20rem;
  }
  .people.people2 {
    width: 19rem;
  }
  .people.people4 {
    width: 15rem;
  }
  .people.people5 {
    width: 18rem;
    padding: 1.5rem;
  }
  .people.people1 {
    width: 20rem;
  }
  .people .people_img img {
    width: 10rem;
  }
  .people p.f_600.pt_40.pb_15 {
    padding: 1rem 0 1.5rem;
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
@media (max-width: 767px) {
  .people p.f_600.pt_40.pb_15 {
    font-size: 1.4rem;
  }
  .people .people.people5 h3 {
    font-size: 2.2rem !important;
  }
}

@media (max-height: 650px) {
  .people p.f_600.pt_40.pb_15 {
    padding: 1rem 0 1rem !important;
    font-size: 1.3rem !important;
    line-height: 1.6 !important;
  }
}
.js-marquee {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}

.marquee > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}

.animated_cursor_box {
  position: relative;
  overflow: hidden;
}
.animated_cursor_box .drag-circle {
  position: absolute;
  z-index: 9999999999;
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  pointer-events: none;
  -webkit-transform: scale(0.5) rotate(15deg);
          transform: scale(0.5) rotate(15deg);
  -webkit-transition: opacity 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out; /* Adjust transition time for smoother movement */
}
.animated_cursor_box:hover {
  cursor: -webkit-grab;
  cursor: grab;
}
.animated_cursor_box:hover .drag-circle {
  opacity: 1;
  -webkit-transform: scale(1) rotate(0);
          transform: scale(1) rotate(0);
}

@media (max-width: 991.98px) {
  .drag-circle,
  .product_flower_img2 {
    display: none !important;
  }

  .product-description {
    margin-bottom:2rem;
  }

  .product_flower_img {
    max-width:50%;
  }
}
@media (max-width: 767px) {
  .slider1 .owl-item {
    width: 21rem !important;
  }
}
@media (max-width: 767px) {
  .slider1 .owl-stage {
    padding: 2rem 1rem;
  }
}
.slider2 .owl-item {
  width: auto !important;
}

@media (max-width: 767px) {
  .stack_img_area_v2 {
    padding: 3rem 0 0;
  }
}

.story_area {
  background: #f0e0ca;
  padding: 15rem 0;
}
.story_area .row {
  margin-left: -2.5rem;
  margin-right: -2.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.story_area .row > * {
  padding: 0 2.5rem;
}
.story_area .content {
  width: 45rem;
}
.story_area .story_img {
  padding: 1rem !important;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.story_area .story_img img {
  width: 42rem;
  height: 32rem;
}
.story_area .story_img.story_img1 {
  -webkit-transform: rotate(5deg);
          transform: rotate(5deg);
}
.story_area .story_img.story_img1:hover {
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
}
.story_area .story_img.story_img2 {
  -webkit-transform: rotate(-6deg);
          transform: rotate(-6deg);
}
.story_area .story_img.story_img2:hover {
  -webkit-transform: rotate(5deg);
          transform: rotate(5deg);
}
.story_area .story_img.story_img3 {
  -webkit-transform: rotate(6deg);
          transform: rotate(6deg);
}
.story_area .story_img.story_img3:hover {
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
}
@media (min-width: 768px) {
  .story_area .rightword {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
  .story_area .leftword {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
@media (max-width: 991.98px) {
  .story_area {
    padding: 9rem 0 3rem 0;
  }
  .story_area .row {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }
  .story_area .row > * {
    padding: 0 1.5rem;
  }
  .story_area .content {
    width: 29.5rem;
  }
  .story_area .container {
    padding: 0 6rem 0 4rem;
  }
  .story_area .story_img {
    padding: 1rem !important;
  }
  .story_area .story_img img {
    width: 30rem;
    height: 25rem;
  }
}
@media (max-width: 767px) {
  .story_area {
    padding: 3rem 0 6rem;
  }
  .story_area .content {
    width: 60%;
  }
  .story_area .story_img img {
    width: 100%;
    height: auto;
  }
  .story_area .row {
    gap: 3rem;
  }
  .story_area .row.row2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .story_area .row > * {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .story_area .container {
    padding: 0 1.5rem;
  }
}
@media (max-width: 575px) {
  .story_area {
    padding: 3rem 0 6rem;
  }
  .story_area .content {
    width: 100%;
  }
}

@media (max-width: 991.98px) {
  .story_hero_wrap_v2 {
    padding-top: 0rem !important;
  }
}
@media (max-width: 767px) {
  .story_hero_wrap_v2 {
    padding-top: 8rem !important;
  }
}

.team_area .team {
  width: 23.3rem;
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
}
.team_area .team img {
  width: 100%;
}
.team_area .team.team1 {
  -webkit-transform: rotate(4deg);
          transform: rotate(4deg);
}
.team_area .team.team1:hover {
  -webkit-transform: rotate(-1deg);
          transform: rotate(-1deg);
}
.team_area .team.team2 {
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
}
.team_area .team.team2:hover {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.team_area .team.team3 {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.team_area .team.team3:hover {
  -webkit-transform: rotate(5deg);
          transform: rotate(5deg);
}
.team_area .team.team4 {
  -webkit-transform: rotate(-8deg);
          transform: rotate(-8deg);
}
.team_area .team.team4:hover {
  -webkit-transform: rotate(-3deg);
          transform: rotate(-3deg);
}
.team_area .owl-stage-outer {
  overflow: visible !important;
}
.team_area .owl-item {
  margin-right: 3rem !important;
}
@media (max-width: 991.98px) {
  .team_area {
    padding: 9rem 0 6rem;
  }
  .team_area .container {
    padding: 0 !important;
  }
  .team_area .team {
    width: 23.3rem;
  }
  .team_area .team img {
    width: 100%;
  }
  .team_area .team h3 {
    padding: 1.5rem 0 0.5rem 0;
  }
  .team_area .owl-stage-outer {
    overflow: hidden !important;
    padding: 0 2rem;
  }
  .team_area .owl-item {
    margin-right: 2rem !important;
  }
}
@media (max-width: 767px) {
  .team_area {
    padding: 0 0 7rem;
  }
  .team_area .owl-item {
    margin-right: 3rem !important;
  }
}

.products_area_v2 .row.row1 {
  margin-left: -3.5rem;
  margin-right: -3.5rem;
}
.products_area_v2 .row.row1 > * {
  padding: 0 3.5rem;
}
.products_area_v2 .row.row2 {
  gap: 12rem 0;
  margin-left: -1rem;
  margin-right: -1rem;
}
.products_area_v2 .row.row2 > * {
  padding: 0 1rem;
}
.products_area_v2 .productv2_flower_card {
  border-radius: 2rem;
  -webkit-transform: translateY(1rem) rotate(4deg);
          transform: translateY(1rem) rotate(4deg);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.products_area_v2 .productv2_flower_card:hover {
  -webkit-transform: translateY(1rem) rotate(1deg);
          transform: translateY(1rem) rotate(1deg);
}
.products_area_v2 .productv2_flower_card .flower2 {
  width: 6rem;
}
.products_area_v2 .productv2_flower_card h3 {
  white-space: nowrap;
}
.products_area_v2 .product_content {
  width: 29.15rem;
}
.products_area_v2 .animate_wrap5 {
  position: relative;
}
.products_area_v2 .animate_wrap5 img {
  padding: 1rem 0;
}
.products_area_v2 .animate_wrap5:after, .products_area_v2 .animate_wrap5:before {
  width: 100%;
  height: 2rem;
  position: absolute;
  content: "";
  top: -0.5rem;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 9;
}
.products_area_v2 .animate_wrap5:after {
  bottom: -0.5rem;
  top: auto;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgb(255, 255, 255))) !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%) !important;
}
@media (min-width: 992px) {
  .products_area_v2 .product_discount {
    top: -1rem !important;
    right: 3.5rem !important;
  }
}
@media (max-width: 991.98px) {
  .products_area_v2 .row.row1 {
    padding-bottom: 6rem;
    padding-right: 7rem;
  }
  .products_area_v2 .row.row2 {
    gap: 6rem 0;
  }
  .products_area_v2 .productv2_flower_card {
    border-radius: 0.8rem;
    padding: 1.2rem 0.8rem;
  }
  .products_area_v2 .productv2_flower_card .flower2 {
    width: 3rem;
  }
  .products_area_v2 .product_content {
    width: 16rem;
  }
  .products_area_v2 .productv2_flower_area h2 {
    padding-bottom: 1.5rem;
  }
  .products_area_v2 .product_discount {
    top: -1rem;
    right: 2rem;
  }
}
@media (max-width: 767px) {
  .products_area_v2 {
    padding: 3rem 0;
  }
  .products_area_v2 .row.row1 {
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
    gap: 3.5rem;
  }
  .products_area_v2 .row.row1 > * {
    padding: 0;
  }
  .products_area_v2 .row.row2 {
    gap: 6rem 0;
    width: 100%;
  }
  .products_area_v2 .productv2_flower_card {
    border-radius: 0.8rem;
    padding: 0.8rem 0.8rem;
    margin: 0 auto;
  }
  .products_area_v2 .productv2_flower_card .flower2 {
    width: 3rem;
  }
  .products_area_v2 .productv2_flower_card h3 {
    font-size: 1.6rem;
  }
  .products_area_v2 .productv2_flower_area h2 {
    padding-right: 4rem;
  }
  .products_area_v2 .productv2_flower_area p {
    padding-right: 4rem;
  }
  .products_area_v2 .product_img img {
    width:100%;
    max-width: 18rem;
    aspect-ratio:1/1.9;
    object-fit: cover;
    object-position: center;
  }
  .products_area_v2 .product_content {
    width: 100%;
  }
  .products_area_v2 .product_discount {
    top: -1rem;
    right: 5rem;
  }
}

@media (max-width: 991.98px) {
  .title_area {
    padding: 4rem 0;
  }
}
@media (max-width: 767px) {
  .title_area {
    padding: 2rem 0;
  }
}

.product_area_v3 {
  padding: 16rem 0 9rem 0;
}
.product_area_v3 .choose_product {
  height: 4.4rem;
  border-radius: 1rem;
  overflow: hidden;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 0.2rem;
  cursor: pointer;
  -webkit-transition: 0.1s ease;
  transition: 0.1s ease;
}
.product_area_v3 .choose_product.active .choose_left, .product_area_v3 .choose_product:hover .choose_left {
  background: #0b8f85;
}
.product_area_v3 .choose_product .choose_left {
  width: 5.2rem;
  background: #da673a;
  padding: 0 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
}
.product_area_v3 .choose_product .choose_right {
  background: #fff;
  padding: 0 1.5rem;
}
.product_area_v3 .product_img {
  padding-right: 6rem;
}
.product_area_v3 .product_img img {
  width: 42rem;
}
.product_area_v3 .row {
  margin-left: -5rem;
  margin-right: -5rem;
}
.product_area_v3 .row > * {
  padding: 0 5rem;
}
.product_area_v3 .product_flower_img {
  width: 39rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.product_area_v3 .increase_decrease_btn {
  width: 13rem;
}
@media (max-width: 991.98px) {
  .product_area_v3 {
    padding: 4rem 0 6.4rem 0;
  }
  .product_area_v3 .product_img {
    padding-right: 0;
  }
  .product_area_v3 .product_img img {
    width: 25rem;
  }
  .product_area_v3 .row {
    margin-left: -3rem;
    margin-right: -3rem;
  }
  .product_area_v3 .row > * {
    padding: 0 3rem;
  }
  .product_area_v3 .product_flower_img2 {
    display: none;
  }
  .product_area_v3 .choose_products_list {
    padding: 1.5rem 0;
  }
  .product_area_v3 p.pt_30 {
    padding-top: 1.5rem;
  }
  .product_area_v3 p.pb_30 {
    padding-bottom: 1.5rem;
  }
}


@media (max-width: 767px) {
  .product_area_v3 .product_img {
    padding-right: 4.5rem;
  }
  .product_area_v3 .product_img img {
    width: 26rem;
  }
  .product_area_v3 .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
  }
  .product_area_v3 .product_flower_img {
    max-width:60%;
  }
}


@media (max-width: 767px) and (orientation: landscape) {
    .product_area_v3 .product_img img {
        max-width: 10rem;
      }
      .product_area_v3 .product_img {
        justify-content: flex-start !important;
      }

  }



.animate_wrap4 img {
  padding: 1rem 0 !important;
}
@media (max-width: 991.98px) {
  .animate_wrap4 img {
    padding: 1rem 0 !important;
  }
}
@media (max-width: 767px) {
  .animate_wrap4 img {
    padding: 1rem 0 !important;
  }
}

.product_items_scroller {
  overflow-x: auto;
  overflow-y: visible;
  padding: 2rem 0;
}
.product_items_scroller::-webkit-scrollbar {
  display: none;
  scrollbar-width: 0;
}

.product_flower_area img {
  width: 10rem;
}
.product_flower_area .animate_wrap {
  white-space: nowrap;
}
.product_flower_area .animate_wrap.animate_wrap4 {
  position: relative;
}
.product_flower_area .animate_wrap.animate_wrap4:after, .product_flower_area .animate_wrap.animate_wrap4:before {
  width: 100%;
  height: 3rem;
  position: absolute;
  content: "";
  top: -0.5rem;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 9;
}
.product_flower_area .animate_wrap.animate_wrap4:after {
  bottom: -0.5rem;
  top: auto;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgb(255, 255, 255))) !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%) !important;
}
@media (max-width: 991.98px) {
  .product_flower_area {
    padding: 3rem 0;
  }
  .product_flower_area img {
    width: 5rem;
  }
  .product_flower_area .animate_wrap {
    padding: 0 3rem;
  }
  .product_flower_area .productv2_flower_card {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@media (max-width: 767px) {
  .product_flower_area {
    padding-top: 0;
    padding-bottom: 0;
  }
  .product_flower_area img {
    width: 3rem;
  }
  .product_flower_area .animate_wrap {
    padding: 0 2rem;
    font-size: 2rem;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .product_flower_area .productv2_flower_card {
    display: grid !important;
    grid-template-columns: 0fr 0fr 0fr;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
    margin: 0 auto;
    -webkit-transform: translateX(5rem);
            transform: translateX(5rem);
  }
}
@media (max-width: 575px) {
  .product_flower_area .productv2_flower_card {
    -webkit-transform: translateX(-1.5rem);
            transform: translateX(-1.5rem);
  }
}

.cart_Area {
  padding: 7rem 0 6.5rem;
}
.cart_Area .product_cart_bottle img {
  /*width: 5.3rem;*/
}
.cart_Area ul:first-child {
  border-bottom: 0.2rem solid #f0e0ca;
}
.cart_Area .row {
  gap: 1.5rem 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.cart_Area .increase_decrease_btn {
  width: 14rem;
}
.cart_Area .price.d-md-block.d-none {
  width: 8rem;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  white-space: nowrap;
}
@media (max-width: 991.98px) {
  .cart_Area {
    padding: 4rem 0 6rem;
  }
  .cart_Area h1 {
    padding-bottom: 1.5rem;
  }
  .cart_Area .product_cart_right {
    padding: 2rem;
  }
  .cart_Area .price.d-md-block.d-none {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .cart_Area {
    padding: 3rem 0 3rem;
  }
  .cart_Area .product_cart_bottle img {
    width: 4rem;
    margin: 0 1.3rem;
  }
  .cart_Area .increase_decrease_btn {
    width: 10rem;
  }
  .cart_Area .increase_decrease_number {
    padding: 0 1.5rem;
  }
  .cart_Area .product_cart {
    padding: 1rem;
    border-radius: 1rem;
  }
  .cart_Area button {
    height: 3.7rem;
  }
  .cart_Area .product_cart_right {
    padding: 2rem;
  }
}
.cart_Area .row {
  gap: 1.5rem 0;
}

@media (max-width: 767px) {
  .products_slider_v2 {
    padding-top: 5rem !important;
  }
  .products_slider_v2 .product_content p:nth-child(3) br {
    display: none !important;
  }
}
@media (min-width: 601px) and (max-width: 767px) {
  .products_slider_v2 .owl-stage-outer {
    padding: 3rem 1.5rem;
  }
}
@media (max-width: 575px) {
  .products_slider_v2 .owl-stage-outer {
    padding: 3rem 0.5rem;
  }
}
/* -------------- Checkout --------------- */
.checkout_area .login-btn-area {
  position: relative;
}
.checkout_area .login-btn-area .btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 3rem;
  background-color: #fff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.checkout_area .login-btn-area .btn-wrapper .left h3 {
  font-family: "PP Agrandir", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 3.36rem;
  text-align: left;
}
.checkout_area .login-btn-area .btn-wrapper .left p {
  font-family: "Brockmann", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.24rem;
  text-align: left;
}
.checkout_area .login-btn-area .btn-wrapper .right .loginBtn {
  padding: 1.5rem 3rem 1.5rem 3rem;
  font-family: "Brockmann", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.92rem;
  gap: 10px;
  background-color: #da673a;
  border-radius: 3rem;
  -webkit-border-radius: 3rem;
  -moz-border-radius: 3rem;
  -ms-border-radius: 3rem;
  -o-border-radius: 3rem;
}
.checkout_area .login-btn-area .btn-wrapper.style2 {
  padding: 3rem 0;
}
.checkout_area .login-btn-area .btn-wrapper .title {
  font-family: "PP Agrandir", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 3.36rem;
  text-align: left;
}
.checkout_area .login-btn-area .rotate-text {
  position: absolute;
  font-family: "Brockmann", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2.24rem;
  text-align: center;
  top: 4.5rem;
  right: -3.5rem;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}
.checkout_area .text-title {
  font-family: "PP Agrandir", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 33.6px;
  text-align: left;
}
.checkout_area .themeBtn {
  padding: 10px 35px 10px 35px;
  font-family: "Brockmann", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.92rem;
  gap: 1rem;
  background-color: #da673a;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}
.checkout_area .form_group .input_field {
  height: 5rem;
}
.checkout_area .payment-methods {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  padding: 2rem;
  border-radius: 10px;
}
.checkout_area .payment-methods h4 {
  font-size: 2.4rem;
  margin-bottom: 2rem;
  font-weight: bold;
}
.checkout_area .payment-methods .payment-option {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.5rem;
  grid-template-columns: 2rem 0fr 1fr;
  display: grid !important;
  gap: 1.5rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.checkout_area .payment-methods .payment-option > * {
  margin: 0 !important;
  padding: 0 !important;
}
.checkout_area .payment-methods .payment-option input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 2rem;
  height: 2rem;
  border: 0.2rem solid #fff;
  background: #fff;
  border-radius: 50%;
  margin-right: 1rem;
  cursor: pointer;
  position: relative;
}
.checkout_area .payment-methods .payment-option input[type=radio]:checked::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  line-height: 1.5rem;
  background-color: #da673a;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.checkout_area .payment-methods .payment-option label {
  font-size: 1.8rem;
  cursor: pointer;
  margin-left: 1.2rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.checkout_area .payment-methods .bank-details {
  margin-left: 3rem;
  color: #231f20;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.checkout_area .payment-methods .payment-logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.checkout_area .payment-methods .payment-logos img {
  height: 2rem;
  vertical-align: middle;
}
.checkout_area .payment-methods .bank-details {
  display: none;
  margin-left: 3rem;
  color: #231f20;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.checkout_area .payment-methods .bank-details.visible {
  display: block;
}
.checkout_area .payment-methods .small-text1,
.checkout_area .payment-methods .small-text2,
.checkout_area .payment-methods .small-text3 {
  display: none;
  margin-left: 3rem;
  color: #231f20;
  font-size: 1.4rem;
}
.checkout_area .payment-methods .small-text1.visible,
.checkout_area .payment-methods .small-text2.visible,
.checkout_area .payment-methods .small-text3.visible {
  display: block;
}
.checkout_area .payment-methods .small-text {
  padding-bottom: 1rem !important;
  max-width: 48rem;
  line-height: 1.5;
  margin-bottom: 0;
}
.checkout_area .box-wrapper {
  padding: 3rem;
  background-color: #fff;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.checkout_area .box-wrapper ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 1rem;
}
.checkout_area .box-wrapper ul .title {
  font-family: "Brockmann", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2.24rem;
  text-align: left;
}
.checkout_area .box-wrapper ul .price {
  font-family: "Brockmann", sans-serif;
  font-size: 1.6rem;
  line-height: 2.24rem;
  font-weight: 400;
  text-align: left;
}
.checkout_area .box-wrapper .border-bottoms {
  font-family: "Brockmann", sans-serif;
  font-size: 1.4rem;
  line-height: 1.96rem;
  font-weight: 400;
  text-align: right;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f0e0ca;
  margin-bottom: 2rem;
}
.checkout_area .box-wrapper h6 {
  font-family: "Brockmann", sans-serif;
  font-size: 1.4rem;
  line-height: 1.96rem;
  font-weight: 400;
  text-align: right;
  padding-bottom: 1rem;
}
.checkout_area .box-wrapper .checkbox .check {
  background: #f0e0ca !important;
}
.checkout_area .box-wrapper .checkbox.active .check {
  background: #da673a !important;
}
.checkout_area .box-wrapper .checkbox p {
  font-family: "Brockmann", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.24rem;
  text-align: left;
}
@media (min-width: 992px) {
  .checkout_area .row2 {
    margin-left: -2rem;
    margin-right: -2rem;
  }
  .checkout_area .row2 > * {
    padding: 0 2rem;
  }
}
@media (max-width: 767px) {
  .checkout_area .login-btn-area {
    padding-right: 0;
  }
  .checkout_area .login-btn-area .btn-wrapper {
    padding: 2rem 1rem;
  }
  .checkout_area .login-btn-area .btn-wrapper .left h3 {
    font-size: 2rem;
    line-height: 2.4rem;
  }
  .checkout_area .login-btn-area .btn-wrapper .left p {
    font-family: "Brockmann", sans-serif;
    font-size: 1.4rem;
    line-height: 1.98rem;
  }
  .checkout_area .login-btn-area .btn-wrapper .right .loginBtn {
    padding: 1rem 1.5rem;
    font-size: 1.6rem;
    line-height: 1.92rem;
  }
  .checkout_area .login-btn-area .rotate-text {
    display: none;
  }
  .checkout_area .text-title {
    font-size: 2rem;
    line-height: 2.4rem;
    margin-bottom: -1rem;
  }
  .checkout_area .themeBtn {
    padding: 10px 35px 10px 35px;
    font-size: 1.6rem;
    line-height: 1.92rem;
  }
  .checkout_area .payment-methods {
    margin-bottom: -3rem;
  }
  .checkout_area .payment-methods div:not(.payment-option) {
    padding-bottom: 1rem !important;
  }
  .checkout_area .box-wrapper {
    padding: 1rem;
    margin-bottom: -3rem;
  }
  .checkout_area .box-wrapper ul .title {
    font-size: 1.6rem;
    line-height: 2.24rem;
  }
  .checkout_area .box-wrapper ul .price {
    font-size: 1.6rem;
    line-height: 2.24rem;
  }
  .checkout_area .box-wrapper .border-bottoms {
    font-size: 1.4rem;
    line-height: 1.96rem;
  }
  .checkout_area .box-wrapper h6 {
    font-size: 1.4rem;
    line-height: 1.96rem;
  }
  .checkout_area .box-wrapper .checkbox p {
    font-size: 1.6rem;
    line-height: 2.24rem;
  }
}

.box-wrapper .button_orange {
  pointer-events: none;
}
.box-wrapper.terms_agreed .button_orange {
  pointer-events: all;
}

.hide_field {
  display: none;
}
.hide_field.shown {
  display: block;
}

.code_validation .code_validation_text {
  display: none;
}
.code_validation.validated_successfully .contact_form {
  display: none;
}
.code_validation.validated_successfully .code_validation_text {
  display: block;
}

.fakts_area_v2 {
  width: 100% !important;
  position: relative;
}
.fakts_area_v2 .text_slide_area {
  width: 50rem;
  margin: 0 auto;
  -webkit-transform: rotate(-4deg);
          transform: rotate(-4deg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: relative;
  z-index: 9999;
}
.fakts_area_v2 .text_slide_area:hover {
  -webkit-transform: rotate(1deg);
          transform: rotate(1deg);
}
.fakts_area_v2 .text_slide_area .owl-stage {
  padding: 0;
}
.fakts_area_v2 .text_slide_area .owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  width: 100%;
  padding-top: 3rem;
  position: relative;
  height: 0.8rem;
}
.fakts_area_v2 .text_slide_area .owl-dots button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  -webkit-transition: 0.45s ease;
  transition: 0.45s ease;
}
.fakts_area_v2 .text_slide_area .owl-dots button span {
  width: 0.8rem;
  height: 1.2rem;
  border-radius: 0.2rem;
  background: #f0e0ca;
  display: block;
}
.fakts_area_v2 .text_slide_area .owl-dots button:nth-child(1) {
  right: calc(100% - 8rem);
}
.fakts_area_v2 .text_slide_area .owl-dots button:nth-child(2) {
  right: calc(100% - 6.2rem);
}
.fakts_area_v2 .text_slide_area .owl-dots button:nth-child(3) {
  right: calc(100% - 4.4rem);
}
.fakts_area_v2 .text_slide_area .owl-dots button:nth-child(4) {
  right: calc(100% - 2.6rem);
}
.fakts_area_v2 .text_slide_area .owl-dots button:nth-child(5) {
  right: calc(100% - 0.8rem);
}
.fakts_area_v2 .text_slide_area .owl-dots button.active span {
  background: #da673a;
}
.fakts_area_v2 .text_slide_area .owl-dots.dot1 button:nth-child(1), .fakts_area_v2 .text_slide_area .owl-dots.dot2 button:nth-child(1), .fakts_area_v2 .text_slide_area .owl-dots.dot3 button:nth-child(1), .fakts_area_v2 .text_slide_area .owl-dots.dot4 button:nth-child(1), .fakts_area_v2 .text_slide_area .owl-dots.dot5 button:nth-child(1), .fakts_area_v2 .text_slide_area .owl-dots.dot6 button:nth-child(1), .fakts_area_v2 .text_slide_area .owl-dots.dot7 button:nth-child(1), .fakts_area_v2 .text_slide_area .owl-dots.dot8 button:nth-child(1), .fakts_area_v2 .text_slide_area .owl-dots.dot9 button:nth-child(1), .fakts_area_v2 .text_slide_area .owl-dots.dot10 button:nth-child(1) {
  position: absolute;
  right: 0;
}
.fakts_area_v2 .text_slide_area .owl-dots.dot1 button:nth-child(1) span, .fakts_area_v2 .text_slide_area .owl-dots.dot2 button:nth-child(1) span, .fakts_area_v2 .text_slide_area .owl-dots.dot3 button:nth-child(1) span, .fakts_area_v2 .text_slide_area .owl-dots.dot4 button:nth-child(1) span, .fakts_area_v2 .text_slide_area .owl-dots.dot5 button:nth-child(1) span, .fakts_area_v2 .text_slide_area .owl-dots.dot6 button:nth-child(1) span, .fakts_area_v2 .text_slide_area .owl-dots.dot7 button:nth-child(1) span, .fakts_area_v2 .text_slide_area .owl-dots.dot8 button:nth-child(1) span, .fakts_area_v2 .text_slide_area .owl-dots.dot9 button:nth-child(1) span, .fakts_area_v2 .text_slide_area .owl-dots.dot10 button:nth-child(1) span {
  background: #da673a;
}
.fakts_area_v2 .text_slide_area .owl-dots.dot2 button:nth-child(2), .fakts_area_v2 .text_slide_area .owl-dots.dot3 button:nth-child(2), .fakts_area_v2 .text_slide_area .owl-dots.dot4 button:nth-child(2), .fakts_area_v2 .text_slide_area .owl-dots.dot5 button:nth-child(2), .fakts_area_v2 .text_slide_area .owl-dots.dot6 button:nth-child(2), .fakts_area_v2 .text_slide_area .owl-dots.dot7 button:nth-child(2), .fakts_area_v2 .text_slide_area .owl-dots.dot8 button:nth-child(2), .fakts_area_v2 .text_slide_area .owl-dots.dot9 button:nth-child(2), .fakts_area_v2 .text_slide_area .owl-dots.dot10 button:nth-child(2) {
  position: absolute;
  right: 1.4rem;
}
.fakts_area_v2 .text_slide_area .owl-dots.dot2 button:nth-child(2) span, .fakts_area_v2 .text_slide_area .owl-dots.dot3 button:nth-child(2) span, .fakts_area_v2 .text_slide_area .owl-dots.dot4 button:nth-child(2) span, .fakts_area_v2 .text_slide_area .owl-dots.dot5 button:nth-child(2) span, .fakts_area_v2 .text_slide_area .owl-dots.dot6 button:nth-child(2) span, .fakts_area_v2 .text_slide_area .owl-dots.dot7 button:nth-child(2) span, .fakts_area_v2 .text_slide_area .owl-dots.dot8 button:nth-child(2) span, .fakts_area_v2 .text_slide_area .owl-dots.dot9 button:nth-child(2) span, .fakts_area_v2 .text_slide_area .owl-dots.dot10 button:nth-child(2) span {
  background: #da673a;
}
.fakts_area_v2 .text_slide_area .owl-dots.dot3 button:nth-child(3), .fakts_area_v2 .text_slide_area .owl-dots.dot4 button:nth-child(3), .fakts_area_v2 .text_slide_area .owl-dots.dot5 button:nth-child(3), .fakts_area_v2 .text_slide_area .owl-dots.dot6 button:nth-child(3), .fakts_area_v2 .text_slide_area .owl-dots.dot7 button:nth-child(3), .fakts_area_v2 .text_slide_area .owl-dots.dot8 button:nth-child(3), .fakts_area_v2 .text_slide_area .owl-dots.dot9 button:nth-child(3), .fakts_area_v2 .text_slide_area .owl-dots.dot10 button:nth-child(3) {
  position: absolute;
  right: 2.8rem;
}
.fakts_area_v2 .text_slide_area .owl-dots.dot3 button:nth-child(3) span, .fakts_area_v2 .text_slide_area .owl-dots.dot4 button:nth-child(3) span, .fakts_area_v2 .text_slide_area .owl-dots.dot5 button:nth-child(3) span, .fakts_area_v2 .text_slide_area .owl-dots.dot6 button:nth-child(3) span, .fakts_area_v2 .text_slide_area .owl-dots.dot7 button:nth-child(3) span, .fakts_area_v2 .text_slide_area .owl-dots.dot8 button:nth-child(3) span, .fakts_area_v2 .text_slide_area .owl-dots.dot9 button:nth-child(3) span, .fakts_area_v2 .text_slide_area .owl-dots.dot10 button:nth-child(3) span {
  background: #da673a;
}
.fakts_area_v2 .text_slide_area .owl-dots.dot4 button:nth-child(4), .fakts_area_v2 .text_slide_area .owl-dots.dot5 button:nth-child(4), .fakts_area_v2 .text_slide_area .owl-dots.dot6 button:nth-child(4), .fakts_area_v2 .text_slide_area .owl-dots.dot7 button:nth-child(4), .fakts_area_v2 .text_slide_area .owl-dots.dot8 button:nth-child(4), .fakts_area_v2 .text_slide_area .owl-dots.dot9 button:nth-child(4), .fakts_area_v2 .text_slide_area .owl-dots.dot10 button:nth-child(4) {
  position: absolute;
  right: 4.2rem;
}
.fakts_area_v2 .text_slide_area .owl-dots.dot4 button:nth-child(4) span, .fakts_area_v2 .text_slide_area .owl-dots.dot5 button:nth-child(4) span, .fakts_area_v2 .text_slide_area .owl-dots.dot6 button:nth-child(4) span, .fakts_area_v2 .text_slide_area .owl-dots.dot7 button:nth-child(4) span, .fakts_area_v2 .text_slide_area .owl-dots.dot8 button:nth-child(4) span, .fakts_area_v2 .text_slide_area .owl-dots.dot9 button:nth-child(4) span, .fakts_area_v2 .text_slide_area .owl-dots.dot10 button:nth-child(4) span {
  background: #da673a;
}
.fakts_area_v2 .text_slide_area .owl-dots.dot5 button:nth-child(5), .fakts_area_v2 .text_slide_area .owl-dots.dot6 button:nth-child(5), .fakts_area_v2 .text_slide_area .owl-dots.dot7 button:nth-child(5), .fakts_area_v2 .text_slide_area .owl-dots.dot8 button:nth-child(5), .fakts_area_v2 .text_slide_area .owl-dots.dot9 button:nth-child(5), .fakts_area_v2 .text_slide_area .owl-dots.dot10 button:nth-child(5) {
  position: absolute;
  right: 5.6rem;
}
.fakts_area_v2 .text_slide_area .owl-dots.dot5 button:nth-child(5) span, .fakts_area_v2 .text_slide_area .owl-dots.dot6 button:nth-child(5) span, .fakts_area_v2 .text_slide_area .owl-dots.dot7 button:nth-child(5) span, .fakts_area_v2 .text_slide_area .owl-dots.dot8 button:nth-child(5) span, .fakts_area_v2 .text_slide_area .owl-dots.dot9 button:nth-child(5) span, .fakts_area_v2 .text_slide_area .owl-dots.dot10 button:nth-child(5) span {
  background: #da673a;
}
.fakts_area_v2 .fakt_bottle1 {
  width: 25rem;
  right: 15rem;
  bottom: 0;
}
.fakts_area_v2 .fakt_bottle2 {
  width: 30rem;
  top: 0;
}
.fakts_area_v2 .owl-item {
  -webkit-transition: 2s ease;
  transition: 2s ease;
  opacity: 1;
}
.fakts_area_v2 .owl-item:not(.active) {
  opacity: 0;
}
@media (max-width: 991.98px) {
  .fakts_area_v2 {
    position: relative;
    height: auto !important;
    padding: 15rem 0 !important;
  }
  .fakts_area_v2::before {
    content: "";
    width: calc(100% + 2rem);
    position: absolute;
    left: 50%;
    top: 50%;
    border: 1rem solid #fff;
    height: calc(100% + 2rem);
    background: transparent;
    z-index: 999;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    pointer-events: none;
  }
  .fakts_area_v2 .text_slide_area {
    width: 40rem;
  }
  .fakts_area_v2 .text_slide_area .owl-dots {
    padding-top: 1.5rem;
  }
  .fakts_area_v2 p.pt_30.pb_30 {
    padding: 1.5rem 0;
  }
  .fakts_area_v2 .fakt_bottle1 {
    width: 20rem;
    right: 7.2rem;
    -webkit-transform: rotate(-10.75deg);
    transform: rotate(25.25deg);
    bottom: -4rem;
  }
  .fakts_area_v2 .fakt_bottle2 {
    width: 23rem;
    top: -2.5rem;
  }
}
@media (max-width: 767px) {
  .fakts_area_v2 {
    padding: 9.5rem 0 6rem;
    overflow: hidden;
  }
  .fakts_area_v2.text_slide_section {
    padding: 14rem 0 6rem !important;
  }
  .fakts_area_v2 .text_slide_area {
    width: 27.6rem;
    -webkit-transform: translateX(1rem) rotate(-4deg);
            transform: translateX(1rem) rotate(-4deg);
  }
  .fakts_area_v2 p.pt_30.pb_30 {
    padding: 2.5rem 0 1.5rem 0;
  }
}

.login_area .row {
  gap: 6rem 0;
  margin-left: -3rem;
  margin-right: -3rem;
}
.login_area .row > * {
  padding: 0 3rem;
}
@media (max-width: 991.98px) {
  .login_area {
    padding: 3rem 0 6rem;
  }
  .login_area .row {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }
  .login_area .row > * {
    padding: 0 1.5rem;
  }
  .login_area h2 {
    padding-bottom: 2.5rem;
  }
}
@media (max-width: 767px) {
  .login_area {
    padding: 3rem 0 3rem;
  }
}

.contact_form .form_group .input_field::-webkit-input-placeholder {
  font-weight: 400 !important;
}

.contact_form .form_group .input_field::-moz-placeholder {
  font-weight: 400 !important;
}

.contact_form .form_group .input_field:-ms-input-placeholder {
  font-weight: 400 !important;
}

.contact_form .form_group .input_field::-ms-input-placeholder {
  font-weight: 400 !important;
}

.contact_form .form_group .input_field,
.contact_form .form_group .input_field::placeholder {
  font-weight: 400 !important;
}
.contact_form .form_group .checkbox {
  display: grid !important;
  grid-template-columns: 0fr 1fr;
  cursor: pointer;
}
.contact_form .form_group .checkbox .check {
  width: 2rem;
  height: 2rem;
  border-radius: 0.3rem;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contact_form .form_group .checkbox .check img {
  opacity: 0 !important;
}
.contact_form .form_group .checkbox.active .check {
  background: #da673a;
}
.contact_form .form_group .checkbox.active .check img {
  opacity: 1 !important;
}
.contact_form .form_link {
  text-decoration: underline;
  cursor: pointer;
}
.contact_form .form_link:hover {
  text-decoration: none;
  color: #da673a;
}
.contact_form p {
  line-height: 140%;
}
@media (max-width: 991.98px) {
  .contact_form .form_group {
    margin-bottom: 1rem;
  }
}/*# sourceMappingURL=style.css.map */

#responseMessage {
    padding:1rem;
    margin-top:1rem;
    padding-left:2rem;

    .error {
        color:#900;
    }
}


.lang-change {
    margin-left:1rem;
    display:flex;
}

.lang-change > a {
    display:block;
    border-radius:50%;
    padding:.7rem;
    font-weight: 600 !important;
}

.lang-change > a.active {
    background:white;
}

.menu-active {
    color:#0b8f85 !important;
}

.product_content {
}

.product-description p {
    margin-bottom:.5rem;
}

.product-description h1,
.product-description h2,
.product-description h3,
.product-description h4,
.product-description h5,
.product-description h6
 {
    margin-top:.5rem !important;
    margin-bottom:.5rem !important;
}

.showCartNum {
    z-index:9000;
    margin-left:0;
}


.page-container p,
.page-container div,
.page-container span
{
    display:block;
    margin-top:1rem;
}

.page-container ul {
    list-style:disc;
    margin-left:2rem;
    margin-top:1rem;
    margin-bottom:1.2rem;
}

.page-container ul > li {
    padding-bottom:.5rem;
}

.page-container h1,
.page-container h2,
.page-container h3,
.page-container h4,
.page-container h5,
.page-container h6 {
    margin-top:1.5rem;
    margin-bottom:1rem;
}

.page-container .table-striped>tbody>tr:nth-of-type(odd)>* {
    background-color: #99999905;
}

.page-container .table-striped>tbody>tr:nth-of-type(even)>* {
    background-color: #cccccc11;
}

.productv2_flower_card {
    opacity:0;
}

.fadeIn {
    opacity:1;
    animation: fadeInAnimation 2s ease-in-out;
}

@keyframes fadeInAnimation {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


@media (max-width: 991px) {
    .image-product-index {
        max-width:200px;
    }
}

.cart-row {
    display:flex;
    gap:1rem;
    align-items: center;

    span {
        img {
            max-height:50%;
        }
    }
}

@media (max-width: 574px) {
    .cart-row {
        display:flex;
        gap:0.2rem;
        align-items: center;

        span {
            width: auto;
            text-align:center;
            img {
                max-height:50%;
            }
        }
    }
}


@media (min-width: 575px) and (max-width: 768px){
    .product_area_v3 .product_img img {
      width: 100%;
    }
}

.icons-list {
    display:flex;
    justify-content:center;
    gap:4rem;
    flex-wrap: wrap;
}

@media (min-width: 575px) and (max-width: 768px){

    .icons-list {
        display:flex;
        justify-content:center;
        gap:2rem;
        flex-wrap: wrap;
    }

}

.icon-item {

    display:flex;

    img {
        width:5rem;
    }

    span {
        width:6rem;
        font-weight:bold;
        font-size:1.5rem;
        margin-left:-1rem;
    }
}

.people-grid {
    display:flex;
    gap:3rem;
    padding-top:2rem;
    img {
        transform: scaleX(-1) rotate(75deg);
    }
}

@media (max-width: 768px){

    .people-grid {
        padding-top:3rem;
        padding-left:2rem;
        gap:0.4rem;

        img {
            transform: scale(.7) scaleX(-1) rotate(75deg);
        }
    }
}

.summary-wrapper {
    position: sticky;
    top: 100px;
    z-index: 10;
    height: fit-content;
    max-height: 85vh;
    overflow-y: auto;
}

