:root {
  --gun-metal: #2d3142;
  --brownish-grey: #727171;
  --greenish-blue: #12738c;
  --light-gray: #8b8888;
  --greyish-brown: #494949;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-feature-settings: normal;
  -moz-osx-font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1240px;
  padding-left: 30px;
  padding-right: 30px;
}

.bubble-button {
  background-color: #89bd24;
  display: -webkit-inline-flex;
  display: -ms-inline-flex;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.06);
  border-radius: 70px;
  overflow: hidden;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}
.bubble-button:hover {
  box-shadow: 0 6px 14px 0 rgba(0, 0, 0, 0.12);
}

.bubble-button.big {
  width: 70px;
  height: 70px;
}

.bubble-button.small {
  width: 40px;
  height: 40px;
}

header.header {
  overflow: hidden;
  position: relative;
  height: 160px;
/*  border-top: 17px solid #89bd24; */
}

header.header::after {
  content: "";
  display: block;
  position: absolute;
  width: 70%;
  height: 128px;
  transform: skew(-25deg);
  opacity: 0.24;
  border-radius: 13px;
  background-color: #d8d8d8;
  left: calc(50% - 100px);
  top: -17px;
  z-index: -1;
}

header.header .container {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

header.header .logo {
  margin-top: 33px;
  display: block;
  width: 100%;
  max-width: 361px;
}

header.header .man-with-boxes {
  margin-top: 8px;
}

header.header .right-part {
  display: block;
  width: calc(50% + 100px);
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

header.header .right-part .call-us {
  text-align: center;
  padding-top: 12px;
}

header.header .right-part .call-us span {
  display: block;
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 24px;
  font-weight: 800;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #561e53;
  text-transform: uppercase;
}

header.header .right-part .call-us a {
  font-family: "Clarika Pro Geometric", sans-serif;
  display: inline-block;
  font-size: 40px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.66;
  letter-spacing: normal;
  text-align: center;
  color: #b584b3;
  text-decoration: none;
  white-space: nowrap;
}

header.header .right-part .request-callback {
  -webkit-border-bottom-right-radius: 14px;
  -webkit-border-bottom-left-radius: 14px;
  -moz-border-radius-bottomright: 14px;
  -moz-border-radius-bottomleft: 14px;
  border-bottom-right-radius: 14px;
  border-bottom-left-radius: 14px;
  background-color: #561e53;
  width: 218px;
  height: 90px;
  display: -webkit-inline-flex;
  display: -ms-inline-flex;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 23.4px;
  font-weight: 800;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}
header.header .right-part .request-callback:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.16);
}

header.header .right-part .request-callback .bubble-button {
  margin-right: 5px;
}

header.header .right-part > .bubble-button {
  margin-top: 11px;
}

header.header .right-part > .bubble-button.big img {
  position: relative;
  top: 2px;
}

@media (max-width: 1100px) {
  header.header .logo {
    width: 250px;
    margin-right: 30px;
  }
  header.header .right-part {
    width: calc(50% + 220px);
  }
  header.header .right-part .call-us {
    padding-top: 20px;
  }
  header.header .right-part .call-us a {
    font-size: 30px;
  }
}

@media (max-width: 991px) {
  header.header .logo {
    width: 180px;
    margin-right: 20px;
  }
  header.header .right-part {
    width: calc(50% + 220px);
  }
  header.header .right-part .call-us {
    padding-top: 20px;
  }
  header.header .right-part .call-us span {
    font-size: 22px;
  }
  header.header .right-part .call-us a {
    font-size: 24px;
  }
  header.header .right-part .request-callback {
    width: 180px;
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  header.header {
    display: none;
  }
}

@media (min-width: 769px) {
  header.header-mobile {
    display: none;
  }
}

.mainmenu {
  padding-bottom: 20px;
}

@media (max-width: 768px) {
  .mainmenu {
    display: none;
  }
}

.mainmenu ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.mainmenu ul li {
  display: -webkit-inline-flex;
  display: -ms-inline-flex;
  display: inline-flex;
  padding: 0px 10px;
}
@media (min-width: 1280px) {
  .mainmenu ul li {
    padding: 0px 13px;
  }
}


.mainmenu ul li:first-child {
  padding-left: 0;
}

.mainmenu ul li:last-child {
  padding-right: 0;
}

.mainmenu ul li a {
  font-family: "Clarika Pro Geometric", sans-serif;
  display: block;
  font-size: 23px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.11px;
  text-align: justify;
  color: #89bd24;
  text-decoration: none;
  -moz-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}
@media (max-width: 1200px) {
  .mainmenu ul li {
    padding: 0px 4px;
  }
  .mainmenu ul li a {
    font-size: 20px;
  }
}
.mainmenu ul li a:hover {
  color: #561e53;
}
.mainmenu ul li.active a {
  color: #561e53;
  font-weight: 600;
}

.main-banner {
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .main-banner {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .main-banner .container {
    padding-left: 0;
    padding-right: 0;
  }
}

.main-banner .inner {
  position: relative;
  width: 100%;
  height: 437px;
  overflow: visible;
  background: #561e53 url("../img/banner-bg.png") left top no-repeat;
  background-size: cover;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: flex-end;
}
@media(max-width: 991px) and (min-width: 769px) {
  .main-banner .inner {
    background-image: url("../img/banner-bg.png");
  }
}
@media(max-width: 768px) and (min-width: 576px) {
  .main-banner .inner {
    background-image: url("../img/banner-bg.png");
  }
}
@media(max-width: 575px) and (min-width: 420px)  {
  .main-banner .inner {
    background-image: url("../img/banner-bg.png");
  }
}
@media(max-width: 420px) {
  .main-banner .inner {
    background-image: url("../img/banner-bg.png");
  }
}

@media (min-width: 769px) {
  .main-banner .inner {
    border-radius: 25px;
  }
}

@media (max-width: 768px) {
  .main-banner .inner {
    height: 312px;
  }
}

.main-banner .text-badge {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 42px;
  font-weight: 800;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.83;
  letter-spacing: -1px;
  text-align: center;
  color: #fff;
  background-color: #89bd24;
  border: solid 4px #561e53;
  border-radius: 103px;
  width: 206px;
  height: 206px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-transform: uppercase;
  position: absolute;
  right: 40px;
  top: 40px;
  z-index: 4;
}

@media (max-width: 768px) {
  .main-banner .text-badge {
    font-size: 29px;
    letter-spacing: normal;
  }
}

.main-banner .text-badge b {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 55px;
  font-weight: 800;
  display: block;
}

@media (max-width: 768px) {
  .main-banner .text-badge b {
    font-size: 38px;
  }
}

.main-banner .text-badge span {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 31px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.81;
  letter-spacing: -0.4px;
  text-align: center;
  color: #561e53;
  text-transform: none;
  display: block;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .main-banner .text-badge span {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .main-banner .text-badge {
    width: 145px;
    height: 145px;
    right: 40px;
    top: 100px;
  }
}

.main-banner .bot-text {
  font-family: "Clarika Pro Geometric", sans-serif;
  background-color: #561e53;
  font-size: 29px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #89bd24;
  padding: 10px 35px;
  width: 100%;
  text-align: center;
}

.main-banner .bot-text a {
  font-size: 29px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #fff;
  text-decoration: none;
}

.main-banner .bot-text i {
  position: relative;
  top: 2px;
  margin-left: 10px;
  color: #89bd24;
}
@media (max-width: 1150px) and (min-width: 769px){
  .main-banner .bot-text a {
    display: block;
  }
}

@media (min-width: 769px) {
  .main-banner .bot-text {
    -webkit-border-bottom-right-radius: 25px;
    -webkit-border-bottom-left-radius: 25px;
    -moz-border-radius-bottomright: 25px;
    -moz-border-radius-bottomleft: 25px;
    border-bottom-right-radius: 25px;
    border-bottom-left-radius: 25px;
  }
}
@media (max-width: 991px) {
  .main-banner .bot-text,
  .main-banner .bot-text a {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .main-banner .bot-text {
    overflow: hidden;
    font-size: 17px;
    text-align: center;
    padding: 13px 15px 15px 15px;
    font-weight: 500;
  }
  .main-banner .bot-text a {
    font-size: 17px;
  }
  .main-banner .bot-text i {
    display: none;
  }
}

@media (max-width: 374px) {
  .main-banner .bot-text {
    height: 49px;
    padding-top: 0;
    padding-bottom: 0;
    line-height: 0.7em;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}

.main-banner .boxman {
  position: absolute;
  right: 20px;
  bottom: -41px;
  z-index: 3;
  width: 361px;
}
.main-banner .boxman img {

}

@media (max-width: 768px) {
  .main-banner .boxman {
    width: 216px;
    right: 20px;
    bottom: 48px;
  }
}

h2.heading {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 36px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.17px;
  color: #561e53;
  margin-top: 0;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  h2.heading {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  h2.heading {
    font-size: 24px;
  }
}

.content {
  padding-bottom: 50px;
}

.content ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.content ul li {
  font-family: "DM Sans", sans-serif;
  padding-left: 25px;
  display: block;
  position: relative;
  font-size: 19px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.42;
  letter-spacing: 0.09px;
  color: #585a60;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .content ul li {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .content ul li {
    font-size: 17px;
  }
}

.content ul li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 4px;
  background-color: #89bd24;
  position: absolute;
  left: 10px;
  top: 11px;
}

.side-module {
  border-radius: 25px;
  max-width: 253px;
  margin-bottom: 35px;
  text-decoration: none;
  display: block;
}
@media (max-width: 768px) {
  .side-module {
    max-width: 420px;
    margin-bottom: 15px;
  }
}

.side-module h3 {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 21px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.36px;
  text-align: center;
  color: #fff;
}

.side-module .first-part {
  padding: 22px 20px;
  background-color: #561e53;
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 21px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.36px;
  text-align: center;
  color: #fff;
  -webkit-border-top-left-radius: 25px;
  -webkit-border-top-right-radius: 25px;
  -moz-border-radius-topleft: 25px;
  -moz-border-radius-topright: 25px;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  text-align: center;
}
.side-module .first-part h3 {
  margin-bottom: 0;
}

.side-module .second-part {
  border: solid 4px #89bd24;
  border-top: none;
  background-color: #fff;
  -webkit-border-bottom-right-radius: 25px;
  -webkit-border-bottom-left-radius: 25px;
  -moz-border-radius-bottomright: 25px;
  -moz-border-radius-bottomleft: 25px;
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 25px;
}

.side-module .second-part.green-bg {
  background-color: #89bd24;
}

.side-module .second-part p {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 28px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: -0.48px;
  color: #fff;
}

.side-module.red-border .second-part {
  border: solid 4px #d70000;
  border-top: 0;
}

.side-module.instant .second-part {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 38px;
  font-weight: 800;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.87;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  padding-top: 15px;
  padding-bottom: 15px;
}
.side-module.instant {
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  overflow: hidden;
  border: 4px solid #89bd24;
}
.side-module.instant .first-part,
.side-module.instant .second-part {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

@media (max-width: 768px) {
  .side-module.instant {
    display: flex;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    overflow: hidden;
    border: 4px solid #89bd24;
  }
  .side-module.instant .first-part {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    width: 130px;
  }
  .side-module.instant .second-part {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;

    font-size: 27px;
    width: 100%;
    max-width: calc(100% - 124px);
  }
  .side-module.instant .second-part {
    padding-bottom: 0px;
  }
}

.side-module.serve .second-part {
  position: relative;
  padding: 30px 30px 20px 30px;
}

.side-module.serve .second-part::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 12px 0 12px;
  border-color: #561e53 transparent transparent transparent;
  position: absolute;
  top: 0;
  left: calc(50% - 12px);
}

.side-module.serve .second-part ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.side-module.serve .second-part ul li {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.7;
  letter-spacing: -0.34px;
  text-align: center;
  color: #561e53;
  padding: 0;
  text-align: center;
}

.side-module.serve .second-part ul li::before {
  display: none;
}

.side-module.size-unit .second-part {
  position: relative;
  padding: 25px 12px;
  padding-bottom: 70px;
}

.side-module.size-unit .second-part::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 12px 0 12px;
  border-color: #561e53 transparent transparent transparent;
  position: absolute;
  top: 0;
  left: calc(50% - 12px);
}

.side-module.size-unit .module-img img {
  position: absolute;
  left: -44px;
  top: -88px;
}

.side-module.shop .second-part {
  position: relative;
  padding: 25px 12px;
  padding-bottom: 50px;
}
.side-module.shop span {
  color: #fff;
  font-size: 15px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.87;
  letter-spacing: -0.26px;
  color: #fff;
}

.side-module.shop .second-part::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 12px 0 12px;
  border-color: #561e53 transparent transparent transparent;
  position: absolute;
  top: 0;
  left: calc(50% - 12px);
}

.side-module.shop .second-part a {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 15px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.87;
  letter-spacing: -0.26px;
  color: #fff;
  text-decoration: none;
  position: relative;
  z-index: 2;
}
.side-module.shop .second-part a:hover {
  color: #561e53;
}

.side-module.shop .module-img img {
  position: absolute;
  right: -25px;
  bottom: -74px;
}

.side-module .module-img {
  position: relative;
}
@media (max-width: 768px) {
  .side-module.size-unit .first-part {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .side-module.size-unit .first-part h3 {
    margin-bottom: 0;
  }
  .side-module.size-unit .first-part h3 i {
    color: #89bd24;
    font-size: 25px;
    position: relative;
    top: 2px;
  }
  .side-module.size-unit .second-part {
    text-align: center;
    padding-bottom: 85px;
    padding-left: 20px;
    padding-right: 20px;

  }
  .side-module.size-unit .second-part p {
    font-size: 25px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.12;
    letter-spacing: -0.43px;
    text-align: center;
  }
  .side-module.size-unit .second-part::before {
    display: none;
  }
  .side-module.size-unit .module-img img {
    top: -102px;
    left: -40px;
  }

  .side-module.shop .first-part {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .side-module.shop .first-part h3 {
    margin-bottom: 0;
  }
  .side-module.shop .first-part h3 i {
    color: #89bd24;
    font-size: 25px;
    position: relative;
    top: 2px;
  }
  .side-module.shop .second-part {
    position: relative;
    padding: 15px 20px;
    padding-bottom: 5px;
  }
  .side-module.shop .second-part p {
    font-size: 25px;
    font-weight: 700;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.12;
    letter-spacing: -0.43px;
  }
  .side-module.shop .module-img img {
    width: 165px;
    right: -14px;
    bottom: 27px;
  }

  .side-module.shop .second-part::before {
    display: none;
  }
  .side-module.serve .first-part {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .side-module.serve .first-part h3 {
    margin-bottom: 0;
  }
}

.type-of-storage {
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .type-of-storage:not(.mobile) {
    display: none;
  }
}

.type-of-storage h2.heading {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 36px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #561e53;
  margin-bottom: 20px;
}

.type-of-storage h2.heading b {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 36px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #89bd24;
}

@media (max-width: 991px) {
  .type-of-storage h2.heading {
    font-size: 32px;
    margin-bottom: 30px;
  }
  .type-of-storage h2.heading b {
    font-size: 32px;
  }
}

.type-of-storage .item {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: flex-start;
  width: auto;
}

.type-of-storage .item .item-img {
  margin-right: 17px;
}

.type-of-storage .item .item-text {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 23px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.22;
  letter-spacing: 0.11px;
  color: #561e53;
  opacity: 0.6;
}

.type-of-storage .itemlist {
  max-width: 1020px;
  margin: 0 auto;
  justify-content: space-between;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .type-of-storage .itemlist {
    max-width: 520px;
  }
  .type-of-storage .item {
    margin-bottom: 25px;
  }
}

@media (min-width: 769px) {
  .type-of-storage.mobile {
    display: none;
  }
}

.type-of-storage.mobile h2.heading {
  font-size: 29px;
  margin-bottom: 30px;
}

.type-of-storage.mobile h2.heading b {
  font-size: 29px;
}

.type-of-storage.mobile .item {
  margin-bottom: 28px;
}

.type-of-storage.mobile .item .item-text {
  font-size: 23px;
  line-height: 1.22;
}

footer.footer {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #561e53;
}

footer.footer .container {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer.footer .container > div:not(:last-child) {
  padding: 10px;
}

footer.footer .call-us {
  text-align: center;
}

footer.footer .call-us span {
  display: block;
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 18px;
  font-weight: 800;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #89bd24;
  text-transform: uppercase;
}

footer.footer .call-us a {
  font-family: "Clarika Pro Geometric", sans-serif;
  display: inline-block;
  font-size: 35px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.75;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

footer.footer .email-us {
  text-align: center;
}

footer.footer .email-us span {
  display: block;
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 18px;
  font-weight: 800;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #89bd24;
  text-transform: uppercase;
}

footer.footer .email-us a {
  font-family: "Clarika Pro Geometric", sans-serif;
  display: inline-block;
  font-size: 35px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.75;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

footer.footer .live-chat a img {
  position: relative;
  top: 2px;
}

@media (max-width: 1100px) {
  footer.footer .logo {
    max-width: 240px;
  }
  footer.footer .call-us span {
    font-size: 16px;
    font-weight: 700;
  }
  footer.footer .call-us a {
    font-size: 24px;
    font-weight: 500;
  }
  footer.footer .email-us span {
    font-size: 16px;
    font-weight: 700;
  }
  footer.footer .email-us a {
    font-size: 24px;
    font-weight: 500;
  }
  footer.footer .bubble-button.big {
    width: 60px;
    height: 60px;
  }
  footer.footer .bubble-button.big img {
    width: 30px;
  }
}
@media (max-width: 575px) {
  footer.footer .logo {
    max-width: 240px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

@media (max-width: 991px) {
  footer.footer .call-us a, footer.footer .email-us a {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  footer.footer {
    padding-bottom: 110px;
    padding-top: 20px;
  }
  footer.footer .container {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  footer.footer .live-chat {
    display: none;
  }
  footer.footer .call-us span, footer.footer .email-us span {
    font-size: 22px;
    line-height: 1.2;
  }
  footer.footer .call-us a, footer.footer .email-us a {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  footer.footer {
    padding-bottom: 110px;
    padding-top: 15px;
  }
  footer.footer .call-us span, footer.footer .email-us span {
    font-size: 17px;
    font-weight: 800;
  }
  footer.footer .call-us a, footer.footer .email-us a {
    font-size: 24px;
    line-height: 1;
  }
}

.pick-a-store {
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .pick-a-store {
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .pick-a-store {
    margin-bottom: 15px;
  }
}

.pick-a-store .pas-search {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  max-width: 1010px;
  padding: 20px 25px;
  margin-left: auto;
  margin-right: auto;
  background-color: #f7f7f7;
  align-items: center;
  height: 100px;
}

.pick-a-store .pas-search h3 {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 23.3px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.9;
  letter-spacing: 0.11px;
  color: #561e53;
  width: 80px;
  max-width: 80px;
  margin: 0;
  padding: 0;
}

@media (min-width: 769px) {
  .pick-a-store .pas-search {
    border-radius: 18px;
  }
}

.pick-a-store .pas-or span {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 23px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.9;
  letter-spacing: 0.11px;
  text-align: center;
  color: #561e53;
  display: block;
  margin-top: 11px;
  margin-bottom: 11px;
}

@media (min-width: 769px) {
  .pick-a-store .pas-or span {
    display: none !important;
  }
}

.pick-a-store .pas-dropdown select {
  border-radius: 3px;
  border: solid 3px #89bd24;
  background-color: #fff;
  height: 55px;
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 20px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.99px;
  color: #561e53;
  width: 300px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' fill='%23561e53'%3E%3Cpath d='M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z'/%3E%3C/svg%3E");
  background-position: 255px 10px;
  background-repeat: no-repeat;
  background-size: 25px;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: '';
  cursor: pointer;
  outline: none;
  padding: 0px 15px;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding-right: 50px;
}

.pick-a-store .pas-code {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
}

.pick-a-store .pas-code input[type="text"] {
  border-radius: 3px;
  border: solid 2px #89bd24;
  background-color: #fff;
  width: 270px;
  height: 55px;
  padding: 0px 15px;
  outline: none;
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 20px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.99px;
  color: #561e53;
}

.pick-a-store .pas-code input[type="text"]::placeholder {
  color: #561e53;
}

.pick-a-store .pas-code button {
  border-radius: 3px;
  border: solid 2px #89bd24;
  background-color: #89bd24;
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 16px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.08px;
  text-align: center;
  color: #561e53;
  width: 160px;
  height: 55px;
  display: block;
  margin-left: 27px;
  -moz-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.pick-a-store .pas-code button:hover {
  background: #561e53;
  color: #89bd24;
  border-color: #561e53;
}

@media (max-width: 1080px) {
  .pick-a-store .pas-dropdown select {
    width: 190px;
    background-position: 145px 10px;
    font-size: 18px;
  }
  .pick-a-store .pas-code input[type="text"] {
    width: 210px;
    font-size: 18px;
  }
  .pick-a-store .pas-code button {
    width: 120px;
  }
}

@media (max-width: 880px) {
  .pick-a-store h3:not(.mobile) {
    display: none !important;
  }
  .pick-a-store .pas-code button {
    margin-left: 15px;
  }
}

@media (max-width: 768px) {
  .pick-a-store .container {
    padding-left: 0;
    padding-right: 0;
  }
  .pick-a-store .pas-search {
    padding: 15px 24px 30px 24px;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
  }
  .pick-a-store .pas-search h3 {
    display: block;
    width: 100%;
    max-width: none;
    text-align: center;
    margin-bottom: 15px;
    order: 1;
  }
  .pick-a-store .pas-search .pas-dropdown {
    order: 4;
    width: 100%;
    max-width: 420px;
  }
  .pick-a-store .pas-search .pas-code {
    width: 100%;
    max-width: 420px;
  }
  .pick-a-store .pas-search .pas-dropdown select {
    width: 100%;
    max-width: 420px;
    background-position: calc(100% - 25px) 10px;
    font-size: 20px;
  }
  .pick-a-store .pas-search .pas-or {
    order: 3;
  }
  .pick-a-store .pas-search .pas-or img {
    display: none;
  }
  .pick-a-store .pas-search .pas-code {
    order: 2;
  }
  .pick-a-store .pas-search .pas-code button {
    width: 100px;
    margin-left: 0;
    -webkit-border-top-left-radius: 0px;
    -webkit-border-bottom-left-radius: 0px;
    -moz-border-radius-topleft: 0px;
    -moz-border-radius-bottomleft: 0px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    font-size: 16px;
  }
  .pick-a-store .pas-search .pas-code input[type="text"] {
    width: calc(100% - 100px);
    max-width: 400px;
    -webkit-border-top-right-radius: 0px;
    -webkit-border-bottom-right-radius: 0px;
    -moz-border-radius-topright: 0px;
    -moz-border-radius-bottomright: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    font-size: 20px;
    border: solid 3px #89bd24;
  }
}

.store-item-wrapper .store-item-header {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 36px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.17px;
  text-align: center;
  text-align: center;
  color: #89bd24;
  margin-bottom: 30px;
}

.store-item-wrapper .store-item-header b {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-weight: 700;
  color: #561e53;
}

@media (max-width: 991px) {
  .store-item-wrapper .store-item-header {
    font-size: 28px;
    margin-bottom: 25px;
  }
}

@media (max-width: 768px) {
  .store-item-wrapper .store-item-header {
    font-size: 24px;
    margin-bottom: 15px;
  }
}

.store-item-wrapper.small {
  margin-bottom: 50px;
}

.store-item-wrapper.small .store-item-header {
  text-align: left;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.store-item-wrapper.small .store-item-header .distance {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 36px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.17px;
  text-align: center;
  color: #561e53;
  border-radius: 25px;
  background-color: #89bd24;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 25px 9px 25px;
  margin-right: 25px;
  line-height: 1;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .store-item-wrapper.small .store-item-header .distance {
    font-size: 26px;
    padding: 5px 20px 7px 20px;
  }
}

@media (max-width: 768px) {
  .store-item-wrapper.small .store-item-header .distance {
    font-size: 24px;
    padding: 3px 10px 5px 10px;
    margin-right: 15px;
  }
}

.store-item-wrapper.small .store-item {
  margin-bottom: 30px;
}

.store-item {
  margin-bottom: 50px;
  border-radius: 25px;
  overflow: hidden;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  background: #561e53;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .store-item {
    flex-direction: column;
  }
}

.store-item .store-get {
  background: #89bd24;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 170px;
  text-decoration: none;
  -moz-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.store-item .store-get b {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 25px;
  font-weight: 800;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.9;
  letter-spacing: normal;
  text-align: center;
  color: #561e53;
  text-transform: uppercase;
  -moz-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.store-item .store-get span {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 17.6px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.08;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
  -moz-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.store-item .store-get i {
  font-size: 45px;
  color: #fff;
  display: block;
  margin-bottom: 20px;
  margin-top: 30px;
  -moz-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.store-item .store-get:hover {
  background-color: #561e53;
}

.store-item .store-get:hover b {
  color: #89bd24;
}

.store-item .store-get:hover i {
  color: #89bd24;
}

@media (max-width: 991px) {
  .store-item .store-get {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    padding: 20px;
  }
  .store-item .store-get span {
    display: none;
  }
  .store-item .store-get i {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 15px;
    position: relative;
    top: 2px;
  }
}

@media (max-width: 768px) {
  .store-item .store-get b {
    font-size: 22px;
  }
  .store-item .store-get i {
    font-size: 32px;
  }
}

.store-item .store-info {
  width: calc(100% - 170px);
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 30px 30px 30px 30px;
}

.store-item .store-info .store-text {
  padding-right: 50px;
  width: calc(100% - 380px);
}

.store-item .store-info .store-text h3 {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 23px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.4px;
  color: #89bd24;
  margin-bottom: 20px;
}

.store-item .store-info .store-text .address {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 23px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.4px;
  color: #fff;
}

.store-item .store-info .store-text .address span {
  color: #89bd24;
}

.store-item .store-info .store-text .address a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 991px) {
  .store-item .store-info .store-text .address {
    font-size: 20px;
  }
}

.store-item .store-info .store-text .opening-times {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: flex-start;
  margin-top: 25px;
}

.store-item .store-info .store-text .opening-times h4 {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 18px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.31px;
  color: #89bd24;
}

.store-item .store-info .store-text .opening-times p {
  color: #fff;
}

.store-item .store-info .store-text .opening-times p b {
  font-weight: bold;
}

.store-item .store-info .store-text .opening-times p.additional-info {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.24px;
  color: #fff;
}

@media (max-width: 991px) {
  .store-item .store-info .store-text {
    width: 60%;
  }
}

.store-item .store-info .store-map {
  border-radius: 13px;
  overflow: hidden;
  display: flex;
  flex: 1;
}

@media (min-width: 651px) {
  .store-item .store-info .store-map iframe {
    height: 100% !important;
  }
}
@media (min-width: 650px) {
  .store-item .store-info .store-map iframe {
    width: 100% !important;
  }
}

@media (max-width: 991px) {
  .store-item .store-info .store-map {
    width: 40%;
  }
}

@media (max-width: 991px) {
  .store-item .store-info {
    width: 100%;
    padding: 24px;
  }
}

@media (max-width: 650px) {
  .store-item .store-info {
    display: block;
  }
  .store-item .store-info .store-text, .store-item .store-info .store-map {
    width: 100%;
  }
  .store-item .store-info .store-map img {
    width: 100%;
  }
}

.sib-header {
  border-radius: 19px;
  background-color: #f7f7f7;
  padding: 15px 30px;
  position: relative;
  max-width: calc(100% - 100px);
  margin-bottom: 35px;
  margin-top: 20px;
}

@media (max-width: 575px) {
  .sib-header {
    padding: 15px;
    padding-right: 50px;
  }
}

.sib-header h3 {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 36px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.17px;
  color: #561e53;
}

.sib-header h3 span {
  color: #89bd24;
}

@media (max-width: 768px) {
  .sib-header h3 {
    font-size: 24px;
    line-height: 1;
  }
}

.sib-header h4 {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 26px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.15;
  letter-spacing: 0.12px;
  color: #89bd24;
}

.sib-header h4 span {
  font-weight: 400;
  font-size: 19px;
  letter-spacing: 0.09px;
  color: #585a60;
}

@media (max-width: 768px) {
  .sib-header h4 {
    font-size: 20px;
    margin-bottom: 0;
  }
}

.sib-header .sib-img {
  position: absolute;
  right: -100px;
  top: -10px;
  width: 212px;
  max-width: 212px;
  overflow: hidden;
  border-radius: 120px;
}

@media (max-width: 768px) {
  .sib-header .sib-img {
    width: 175px;
  }
}

@media (max-width: 575px) {
  .sib-header .sib-img {
    width: 150px;
  }
}

.rounded-11 {
  border-radius: 11px;
  overflow: hidden;
}

.sib-content p {
  font-family: "DM Sans", sans-serif;
  font-size: 19px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.42;
  letter-spacing: 0.09px;
  color: #585a60;
}

@media (max-width: 768px) {
  .sib-content p {
    font-size: 18px;
  }
}

.sib-content .bb-block {
  padding-left: 0;
  padding-right: 0;
}

.store-more-details .smd-content {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
}

@media (max-width: 991px) {
  .store-more-details .smd-content {
    flex-direction: column;
  }
}

.store-more-details .smd-header {
  width: calc(50% - 100px);
}

.store-more-details .smd-text {
  width: calc(50% + 100px);
  padding-left: 140px;
  padding-top: 10px;
}

.store-more-details .smd-text p {
  font-family: "DM Sans", sans-serif;
  font-size: 19px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.42;
  letter-spacing: 0.09px;
  color: #585a60;
}

@media (max-width: 768px) {
  .store-more-details .smd-text p {
    font-size: 18px;
  }
}

@media (max-width: 1200px) {
  .store-more-details .smd-header {
    width: calc(55% - 100px);
  }
  .store-more-details .smd-text {
    width: calc(45% + 100px);
  }
}

@media (max-width: 991px) {
  .store-more-details .smd-header {
    width: 100%;
  }
  .store-more-details .smd-text {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

.smd-link {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 23px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.4px;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 20px;
  -moz-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

@media (max-width: 991px) {
  .smd-link {
    margin-bottom: 0;
  }
}

@media (min-width: 651px) {
  .smd-link.mobile {
    display: none;
  }
}

@media (max-width: 650px) {
  .smd-link {
    margin-top: 20px;
    font-size: 18px;
  }
  .smd-link:not(.mobile) {
    display: none;
  }
}

.smd-link i {
  -moz-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.smd-link:hover {
  color: #89bd24;
}

.smd-link.active i {
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.header-mobile .topline {
  text-align: center;
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 14px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.07px;
  text-align: center;
  color: #fff;
  padding: 3px 15px 3px 15px;
  background-color: #89bd24;
}

.header-mobile .topline i {
  position: relative;
  top: 1px;
}

.header-mobile .logo {
  width: 200px;
  margin-top: 15px;
  position: relative;
  z-index: 100;
}

.header-mobile .contacts {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  background-color: rgba(216, 216, 216, 0.24);
  padding: 8px 30px 0px 30px;
  margin-top: 15px;
  height: 104px;
}

.header-mobile .contacts img {
  position: relative;
  top: -16px;
  margin-right: 15px;
  width: 65px;
}

.header-mobile .contacts h4 {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 17px;
  font-weight: 800;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #89bd24;
  text-transform: uppercase;
}

.header-mobile .contacts a {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.77;
  letter-spacing: normal;
  color: #b584b3;
  text-decoration: none;
  display: inline-block;
}

.header-mobile .contacts a i {
  font-size: 19px;
  color: #561e53;
}

.request-callback-mobile {
  margin-bottom: -35px;
  position: relative;
  z-index: 2;
  display: block;
  background-color: #561e53;
  width: 100%;
  height: 35px;
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 19px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.81;
  letter-spacing: normal;
  color: #fff;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0px 10px;
}

@media (min-width: 769px) {
  .request-callback-mobile {
    display: none;
  }
}

.request-callback-mobile:hover {
  color: #fff;
}

.request-callback-mobile .bubble-button.small {
  width: 22px;
  height: 22px;
  margin-right: 14px;
  position: relative;
  top: -1px;
}

.request-callback-mobile .bubble-button.small img {
  width: 12px;
  position: relative;
  top: 1px;
}

body:not(.homepage) .request-callback-mobile {
  width: 100%;
}

.hamburger {
  padding: 25px 15px 5px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  margin-right: -15px;
  overflow: visible;
  position: relative;
  z-index: 100;
}

.hamburger:hover, .hamburger.is-active:hover {
  opacity: 0.8;
}

.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner::before, .hamburger.is-active .hamburger-inner::after {
  background-color: #561e53;
}

.hamburger-box {
  width: 30px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 30px;
  height: 3px;
  background-color: #561e53;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.mobile-menu {
  position: absolute;
  width: 100%;
  height: calc(100% - 23px);
  left: 0;
  top: 23px;
  right: 0;
  bottom: 0;
  z-index: 99;
  background-color: #fff;
  /*padding: 90px 24px 110px 24px;*/
  padding: 160px 24px 110px 24px;
  -moz-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  -moz-transform: translate(-100%, 0px);
  -webkit-transform: translate(-100%, 0px);
  -o-transform: translate(-100%, 0px);
  -ms-transform: translate(-100%, 0px);
  transform: translate(-100%, 0px);
}

.mobile-menu.is-active {
  -moz-transform: translate(0, 0px);
  -webkit-transform: translate(0, 0px);
  -o-transform: translate(0, 0px);
  -ms-transform: translate(0, 0px);
  transform: translate(0, 0px);
}

.mobile-menu ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.mobile-menu ul li {
  margin-bottom: 10px;
}

.mobile-menu ul li a {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 24px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.2em;
  letter-spacing: -0.34px;
  text-align: left;
  color: #89bd24;
  display: block;
  text-decoration: none;
}

.mobile-menu ul li.active a {
  color: #561e53;
  font-weight: 600;
}

.bottom-sticky-panel {
  box-shadow: 0 -3px 4px 0 rgba(26, 42, 85, 0.08);
  background-color: #89bd24;
  -webkit-border-top-left-radius: 20px;
  -webkit-border-top-right-radius: 20px;
  -moz-border-radius-topleft: 20px;
  -moz-border-radius-topright: 20px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  position: fixed;
  z-index: 10;
  left: 0;
  bottom: 0;
  right: 0;
  height: 90px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: nowrap;
  height: 90px;
  padding: 22px 20px 18px 20px;
}

@media (min-width: 769px) {
  .bottom-sticky-panel {
    display: none;
  }
}

.bottom-sticky-panel a {
  text-decoration: none;
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 17px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.55;
  letter-spacing: normal;
  text-align: center;
  color: #561e53;
  display: inline-block;
}

.bottom-sticky-panel a.active {
  color: #89bd24;
  padding: 8px 15px 4px 15px;
  border: 1px solid #561e53;
  border-radius: 8px;
  background: #561e53;
}

.bottom-sticky-panel a i {
  display: block;
  font-size: 22px;
}

.bottom-sticky-panel a span {
  display: block;
}

.inner-page-top {
  text-align: center;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .inner-page-top {
    margin-bottom: 20px;
  }
}

@media (max-width: 575px) {
  .inner-page-top {
    margin-bottom: 20px;
  }
}

.inner-page-top .inner-page-header {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 34px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
  text-align: center;
  display: -webkit-inline-flex;
  display: -ms-inline-flex;
  display: inline-flex;
  margin-left: auto;
  margin-right: auto;
  border-radius: 33px;
  border: solid 4px #561e53;
  background-color: #89bd24;
  align-items: center;
  justify-content: center;
  min-width: 355px;
  min-height: 66px;
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
  top: -33px;
  padding: 10px 15px;
  z-index: 10;
}

@media (max-width: 991px) {
  .inner-page-top .inner-page-header {
    font-size: 24px;
    min-width: 240px;
    min-height: 50px;
    border: solid 3px #561e53;
    position: relative;
    top: -25px;
  }
}

@media (max-width: 575px) {
  .inner-page-top .inner-page-header {
    width: calc(100% - 30px);
    min-height: 50px;
    height: auto;
    margin-left: 15px;
    margin-right: 15px;
  }
}

.inner-page-top .inner-page-banner {
  border-radius: 25px;
  /*background-color: #561e53;*/
  overflow: hidden;
  min-height: 100px;
}

@media (max-width: 991px) {
  .inner-page-top .inner-page-banner {
    border-radius: 0px;
  }
}
@media (max-width: 768px) {
  .inner-page-top .inner-page-banner {
    height: 199px;
    background: url("../img/store-inner.png") center center no-repeat;
    background-size: cover;
  }
  .inner-page-top .inner-page-banner img {
    display: none !important;
  }
  .inner-page-banner > div {
    display: none !important;
  }
}

@media (max-width: 575px) {
  .inner-page-top .inner-page-banner {
    height: 199px;
    background: url("../img/store-inner.png") center center no-repeat;
    background-size: cover;
  }
}

@media (max-width: 991px) {
  .inner-page-top .container {
    padding-left: 0;
    padding-right: 0;
  }
}

.news-list .container {
  max-width: 1040px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}

@media (max-width: 575px) {
  .news-list .container {
    grid-template-columns: 1fr;
  }
}

.news-list .news-item {
  display: block;
  text-decoration: none;
}

.news-list .news-item .news-img {
  position: relative;
  display: block;
}

.news-list .news-item .news-img img {
  width: 100%;
}

.news-list .news-item .news-img::after {
  content: "";
  display: block;
  left: 0;
  right: 0;
  bottom: 0;
  height: 12px;
  background: #89bd24;
  position: absolute;
  z-index: 2;
  -moz-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  opacity: 1;
}

.news-list .news-item:hover .news-img::after {
  height: 100%;
  opacity: 0.2;
}

.news-list .news-item .news-date {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  color: #757575;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media (max-width: 768px) {
  .news-list .news-item .news-date {
    font-size: 16px;
  }
}

.news-list .news-item .news-header {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 26px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.35;
  letter-spacing: normal;
  color: #561e53;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .news-list .news-item .news-header {
    font-size: 22px;
    margin-bottom: 10px;
  }
}

.news-list .news-item .news-text {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.56;
  letter-spacing: normal;
  color: #561e53;
  padding-bottom: 20px;
}

.pagination {
  text-align: center;
  padding-top: 50px;
  padding-bottom: 75px;
}

.pagination ul {
  padding: 0;
  margin: 0;
  margin-left: auto;
  margin-right: auto;
}

.pagination ul li {
  display: inline-block;
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: center;
  color: #561e53;
}

.pagination ul li.active a {
  background-color: #89bd24;
}

.pagination ul li a {
  display: block;
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: center;
  color: #561e53;
  text-decoration: none;
  height: 30px;
  width: 30px;
  border: solid 1px #89bd24;
  background-color: #fff;
  display: -webkit-inline-flex;
  display: -ms-inline-flex;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -moz-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  margin: 4px;
}

.pagination ul li a:hover {
  background-color: #89bd24;
}

.pagination ul li a i {
  display: block;
  padding-top: 2px;
}

.faqs {
  background-color: #fff;
}
.faqs h1 {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 36px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.17px;
  color: #561e53;
  margin-top: 0;
  margin-bottom: 0px;
  margin-bottom: 20px;
}

.faqs .accordion {
  max-width: 1000px;
}

.faqs .container {
  padding-bottom: 70px;
  padding-top: 0px;
  max-width: 1040px;
}

.faqs .container h2 {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 25px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.17px;
  color: #561e53;
  margin-top: 0;
  margin-bottom: 1em;
}

@media (max-width: 768px) {
  .faqs .container h2 {
    font-size: 22px;
  }
}

.faqs ul {
  list-style: none;
  padding: 0;
}

.faqs ul .item {
  background-color: #FFFFFF;
  border: solid 1px #d3d3d3;
  position: relative;
  -moz-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  text-decoration: none;
  margin-bottom: 10px;
}

.faqs ul .item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 8px;
  height: 100%;
  background-color: #89bd24;
  -moz-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.faqs ul .item.active::before {
  background-color: #561e53;
}

@media (min-width: 768px) {
  .faqs ul .item.active a.toggle {
    padding-top: 38px;
  }
}

.faqs ul .item a.toggle {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 22px 25px 22px 38px;
  justify-content: space-between;
  -moz-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

@media (max-width: 768px) {
  .faqs ul .item a.toggle {
    padding: 15px 15px 15px 25px;
  }
}

.faqs ul .item a.toggle b {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 25px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.63px;
  color: #203367;
  padding-right: 45px;
}

@media (max-width: 768px) {
  .faqs ul .item a.toggle b {
    font-size: 22px;
    letter-spacing: -0.5px;
  }
}

.faqs ul .item a.toggle .toggle-icon {
  width: 26px;
  height: 26px;
  min-width: 26px;
  min-height: 26px;
  max-width: 26px;
  max-height: 26px;
  position: relative;
  display: block;
  border: 2px solid #a0a0a0;
  border-radius: 20px;
  position: absolute;
  display: block;
  border: 2px solid #a0a0a0;
  border-radius: 20px;
  top: 25px;
  right: 25px;
}

@media (max-width: 768px) {
  .faqs ul .item a.toggle .toggle-icon {
    top: 15px;
    right: 15px;
  }
}

.faqs ul .item a.toggle .toggle-icon::before, .faqs ul .item a.toggle .toggle-icon::after {
  -moz-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  position: absolute;
  content: "";
  width: 14px;
  height: 2px;
  background-color: #a0a0a0;
  left: 4px;
  top: 10px;
}

.faqs ul .item a.toggle .toggle-icon::before {
  opacity: 1;
}

.faqs ul .item a.toggle .toggle-icon::after {
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.faqs ul .item a.toggle.active .toggle-icon::before {
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  opacity: 0;
}

.faqs ul .item a.toggle.active .toggle-icon::after {
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  opacity: 1;
}

.faqs ul .item .inner {
  padding: 5px 50px 40px 38px;
  overflow: hidden;
  display: none;
}

@media (max-width: 768px) {
  .faqs ul .item .inner {
    padding: 10px 25px 15px 25px;
  }
}

.faqs ul .item .inner p {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 17px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.47;
  letter-spacing: normal;
  color: #000;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .faqs ul .item .inner p {
    font-size: 17px;
  }

}

.get-a-quote h3 {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.88;
  letter-spacing: 0.11px;
  color: #561e53;
}
@media (max-width: 768px) {
  .get-a-quote h3 {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .get-a-quote h3 {
    font-size: 20px;
  }
}

.get-a-quote p {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.07px;
  color: #561e53;
}

.get-a-quote p a {
  color: inherit;
}

.get-a-quote .label {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.9;
  letter-spacing: 0.11px;
  color: #561e53;
  padding-top: 20px;
}
@media (max-width: 575px) {
  .get-a-quote .row>div:not(:last-child):not(.clearfix) {
    margin-bottom: 5px;
  }
  .get-a-quote {
    margin-top: -25px;
  }
}



.get-a-quote select.default {
  width: 100%;
  height: 56px;
  border-radius: 3px;
  border: solid 3px #89bd24;
  background-color: #fff;
  padding: 0px 15px;
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 20px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #561e53;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' fill='%23561e53'%3E%3Cpath d='M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z'/%3E%3C/svg%3E");
  background-position: calc(100% - 20px) 10px;
  background-repeat: no-repeat;
  background-size: 25px;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  cursor: pointer;
  outline: none;
  padding: 0px 15px;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding-right: 50px;
}
.get-a-quote select.default:disabled {
  background: #d8d8d8;
  cursor: not-allowed;
  color: #888;
  border-color: #d8d8d8;
}
@media (max-width: 768px) {
  .get-a-quote select.default {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .get-a-quote select.default {
    font-size: 17px;
  }
}

.get-a-quote input.default {
  width: 100%;
  height: 56px;
  border-radius: 3px;
  border: solid 3px #89bd24;
  background-color: #fff;
  padding: 0px 15px;
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 20px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #561e53;
}

.get-a-quote .v-planner-link {
  font-family: "Clarika Pro Geometric", sans-serif;

  display: -webkit-inline-flex;
  display: -ms-inline-flex;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border-radius: 3px;
  border: solid 2px #b584b3;
  background-color: #fff;
  height: 56px;
  padding: 0px 15px;
}
.get-a-quote .v-planner-link span {
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.2em;
  letter-spacing: 0.08px;
  text-align: center;
  color: #561e53;
}
@media (max-width: 900px) {
  .get-a-quote .v-planner-link span {
    font-size: 14px;
    line-height: 1em;
    letter-spacing: 0;
  }
}
.get-a-quote .v-planner-link i {
  font-size: 36px;
  font-weight: 100;
  color: #561e53;
}
@media (max-width: 575px) {
  .get-a-quote .v-planner-link {
    text-align: center;
    width: 100%;
    padding: 0px 5px;
  }
  .get-a-quote .v-planner-link span {
    display: none;
  }
  .get-a-quote .v-planner-link i {
    margin: 0 auto !important;
    font-size: 30px;
    font-weight: 300;
  }
}



.custom-checkbox .custom-checkbox-label {
  position: relative;
  padding-left: 55px;
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.88;
  letter-spacing: 0.11px;
  color: #561e53;
  padding-top: 7px;
  min-height: 35px;
  cursor: pointer;
}

.custom-checkbox .custom-checkbox-label::before {
  content: "";
  display: block;
  width: 35px;
  height: 35px;
  border-radius: 3px;
  border: solid 3px #89bd24;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
}

.custom-checkbox .custom-checkbox-label::after {
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  color: #89bd24;
  display: -webkit-inline-flex;
  display: -ms-inline-flex;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  font-size: 24px;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.custom-checkbox .custom-checkbox-input {
  display: none;
}

.custom-checkbox .custom-checkbox-input:checked + .custom-checkbox-label::after {
  opacity: 1;
}

@media (max-width: 768px) {
  .get-a-quote .label {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .custom-checkbox .custom-checkbox-label {
    font-size: 20px;
    padding-left: 45px;
  }
  .custom-checkbox .custom-checkbox-label::before {
    width: 30px;
    height: 30px;
  }
  .custom-checkbox .custom-checkbox-label::after {
    width: 30px;
    height: 30px;
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .get-a-quote .label {
    margin-bottom: 0px;
  }
  .custom-checkbox .custom-checkbox-label {
    font-size: 16px;
  }
}

.btn.btn-success {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.08px;
  text-align: center;
  color: #561e53;
  border-radius: 3px;
  border: solid 2px #89bd24;
  background-color: #89bd24;
}

.btn-xl {
  padding: 1rem 3rem;
}

.btn.btn-purple {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 24px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.11px;
  text-align: center;
  color: #89bd24;
  border-radius: 3px;
  border: solid 3px #561e53;
  background-color: #561e53;
  width: 100%;
  padding: 20px;
  -webkit-transition: all 0.2s 0s ease;
  -moz-transition: all 0.2s 0s ease;
  -o-transition: all 0.2s 0s ease;
  transition: all 0.2s 0s ease;
}
.btn.btn-purple:hover {
  background-color: #fff;
  color: #561e53;
}

.quote-callback {
  text-align: center;
  margin-bottom: 50px;
}

.quote-callback .container {
  max-width: 970px;
  border: solid 1px rgba(151, 151, 151, 0.14);
  background-color: rgba(125, 132, 145, 0.14);
  padding-top: 30px;
  padding-bottom: 40px;
}

.quote-callback p {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 20px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #561e53;
}
@media (max-width: 768px) {
  .quote-callback p {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .quote-callback p {
    font-size: 17px;
  }
}

.quote-callback .button {
  display: inline-block;
  text-decoration: none;
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.11px;
  text-align: center;
  color: #fff;
  border-radius: 3px;
  border: solid 3px #b584b3;
  background-color: #b584b3;
  padding: 8px 150px 12px 150px;
  margin-top: 15px;
}

@media (max-width: 768px) {
  .quote-callback .button {
    padding: 8px 15px 12px 15px;
    width: 100%;
  }
}

.quote-reserve {
  margin-bottom: 20px;
  text-align: center;
  margin-bottom: 50px;
}

.quote-reserve .container {
  max-width: 970px;
  border: solid 1px #89bd24;
  background-color: #89bd24;
  padding-top: 30px;
  padding-bottom: 40px;
}

.quote-reserve p {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #561e53;
}
@media (max-width: 768px) {
  .quote-reserve p {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .quote-reserve p {
    font-size: 17px;
  }
}

.quote-reserve .button {
  display: inline-block;
  text-decoration: none;
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.11px;
  text-align: center;
  color: #fff;
  border-radius: 3px;
  border: solid 3px #561e53;
  background-color: #561e53;
  padding: 17px 130px 19px 130px;
  margin-top: 15px;
}

@media (max-width: 768px) {
  .quote-reserve .button {
    padding: 8px 15px 12px 15px;
    width: 100%;
  }
}

.quote-reserve a.heading {
  text-align: center;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 24px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #561e53;
  margin-bottom: 25px;
  padding-left: 30px;
  padding-right: 30px;
}

.shop-pre {
  margin-bottom: 80px;
  padding-top: 40px;
}
@media (max-width: 991px) {
  .shop-pre {
    padding-top: 0;
  }
}

.shop-pre .container {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
}

@media (max-width: 991px) {
  .shop-pre .container {
    flex-direction: column;
  }
}

.shop-pre .p1 {
  padding-right: 30px;

}
@media (min-width: 992px) {
  .shop-pre .p1 {
    max-width: 50%;
  }
}

.shop-pre .p1 h3 {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 26px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.09;
  letter-spacing: normal;
  color: #89bd24;
}
.shop-pre .p1 h3 strong{
  font-weight: 500;
  color: #561e53;
  font-size: 26px;
}

.shop-pre .p1 h3 b {
  font-weight: 400;
  color: #561e53;
}

@media (max-width: 768px) {
  .shop-pre .p1 h3, .shop-pre .p1 h3 strong {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .shop-pre .p1 h3, .shop-pre .p1 h3 strong {
    font-size: 22px;
  }
}

.shop-pre .p1 p {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.31;
  letter-spacing: normal;
  color: #561e53;
  margin-bottom: 20px;

}
@media (min-width: 992px) {
  .shop-pre .p1 p {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .shop-pre .p1 p {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .shop-pre .p1 p {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .shop-pre .p1 {
    padding-right: 0;
  }
}

.shop-pre .p2 {
  border-radius: 19px;
  background-color: #f7f7f7;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: flex-end;
  padding-left: 15px;
  padding-right: 15px;
}

@media (max-width: 991px) {
  .shop-pre .p2 {
    margin-top: 40px;
  }
}

@media (max-width: 575px) {
  .shop-pre .p2 {
    margin-top: 20px;
    padding: 15px;
  }
}

.shop-pre .p2 img {
  margin-top: -31px;
  margin-right: 30px;
}

@media (max-width: 575px) {
  .shop-pre .p2 img {
    display: none;
  }
}

.shop-pre .p2 h3 {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 27px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.1;
  letter-spacing: normal;
  color: #561e53;
  padding-top: 5px;
}

@media (max-width: 768px) {
  .shop-pre .p2 h3 {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .shop-pre .p2 h3 {
    font-size: 22px;
  }
}

.shop-pre .p2 p {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 19px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: normal;
  color: #7d8491;
}

@media (max-width: 768px) {
  .shop-pre .p2 p {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .shop-pre .p2 p {
    font-size: 17px;
  }
}

.shop-list .shop-category-heading {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 44px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #89bd24;
  margin-bottom: 35px;
}

@media (max-width: 768px) {
  .shop-list .shop-category-heading {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .shop-list .shop-category-heading {
    font-size: 32px;
  }
}

.shop-list .shop-category-items {
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .shop-list .shop-category-items {
    margin-bottom: 30px;
  }
}

.shop-list .sc-item {
  margin-bottom: 40px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}

@media (max-width: 768px) {
  .shop-list .sc-item {
    align-items: flex-start;
  }
}

@media (max-width: 575px) {
  .shop-list .sc-item {
    flex-direction: column;
    margin-bottom: 50px;
  }
}

.shop-list .sc-item .sc-img {
  border: solid 1px #979797;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  width: 400px;
  margin-right: 40px;
}

.shop-list .sc-item .sc-img img {
  display: block;
  max-width: 100%;
}

@media (max-width: 768px) {
  .shop-list .sc-item .sc-img {
    min-width: 30%;
    margin-right: 20px;
    padding: 10px;
  }
}

@media (max-width: 575px) {
  .shop-list .sc-item .sc-img {
    width: 100%;
    margin-right: 0px;
    padding: 10px;
    margin-bottom: 20px;
  }
}

.shop-list .sc-item .sc-content {
  width: 550px;
}

@media (max-width: 768px) {
  .shop-list .sc-item .sc-content {
    width: calc(70% - 30px);
  }
}

@media (max-width: 575px) {
  .shop-list .sc-item .sc-content {
    width: 100%;
  }
}

.shop-list .sc-item .sc-content .sc-name {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 31px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #561e53;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .shop-list .sc-item .sc-content .sc-name {
    font-size: 26px;
  }
}

@media (max-width: 575px) {
  .shop-list .sc-item .sc-content .sc-name {
    font-size: 22px;
  }
}

.shop-list .sc-item .sc-content .sc-info {
  margin-bottom: 30px;
}

.shop-list .sc-item .sc-content .sc-info ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.shop-list .sc-item .sc-content .sc-info ul li {
  display: block;
  position: relative;
  padding-left: 35px;
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 18px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #b584b3;
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .shop-list .sc-item .sc-content .sc-info ul li {
    font-size: 18px;
    padding-left: 25px;
  }
}
@media (max-width: 575px) {
  .shop-list .sc-item .sc-content .sc-info ul li {
    font-size: 17px;
    padding-left: 25px;
  }
}

.shop-list .sc-item .sc-content .sc-info ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  font-size: 26px;
  color: #89bd24;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1;
}

@media (max-width: 768px) {
  .shop-list .sc-item .sc-content .sc-info ul li::before {
    font-size: 20px;
    top: 2px;
  }
}

.shop-list .sc-item .sc-content .sc-bot {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

@media (max-width: 575px) {
  .shop-list .sc-item .sc-content .sc-bot {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 410px) {
  .shop-list .sc-item .sc-content .sc-bot {
    flex-direction: column;
  }
}

.shop-list .sc-item .sc-content .sc-bot .sc-qty {
  border-radius: 3px;
  border: solid 2px #b584b3;
  background-color: #b584b3;
  overflow: hidden;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 160px;
  height: 56px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 20px;
}
@media (max-width: 768px) {
  .shop-list .sc-item .sc-content .sc-bot .sc-qty {
    height: 46px;
  }
}

@media (max-width: 410px) {
  .shop-list .sc-item .sc-content .sc-bot .sc-qty {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

.shop-list .sc-item .sc-content .sc-bot .sc-qty .qty-label {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.08px;
  text-align: center;
  color: #fff;
  height: 54px;
  width: 80px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .shop-list .sc-item .sc-content .sc-bot .sc-qty .qty-label {
    height: 44px;
  }
}

.shop-list .sc-item .sc-content .sc-bot .sc-qty .qty-value {
  font-size: 41px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #561e53;
  height: 54px;
  width: 80px;
  border: none;
  text-align: center;
  -moz-appearance: textfield;
}
@media (max-width: 768px) {
  .shop-list .sc-item .sc-content .sc-bot .sc-qty .qty-value {
    height: 44px;
    font-size: 34px;
  }
}

.shop-list .sc-item .sc-content .sc-bot .sc-qty .qty-value:focus {
  outline: none;
}

.shop-list .sc-item .sc-content .sc-bot .sc-qty .qty-value::-webkit-outer-spin-button, .shop-list .sc-item .sc-content .sc-bot .sc-qty .qty-value::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.shop-list .sc-item .sc-content .sc-bot .sc-add-to-cart {
  width: 160px;
  height: 56px;
  border-radius: 3px;
  border: solid 2px #89bd24;
  background-color: #89bd24;
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.08px;
  text-align: center;
  color: #561e53;
  text-decoration: none;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.2s 0s ease;
  -moz-transition: all 0.2s 0s ease;
  -o-transition: all 0.2s 0s ease;
  transition: all 0.2s 0s ease;
}
.shop-list .sc-item .sc-content .sc-bot .sc-add-to-cart:hover {
  background: #fff;
  color: #561e53;
}
@media (max-width: 768px) {
  .shop-list .sc-item .sc-content .sc-bot .sc-add-to-cart {
    height: 46px;
  }
}


.quote-info h2.heading {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #561e53;
  margin-bottom: 20px;
}

.quote-info h3.heading {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 34px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #561e53;
  margin-bottom: 25px;
}

.quote-info .container {
  max-width: 1030px;
}

.quote-info .pl {
  border-radius: 3px;
  border: solid 3px #89bd24;
  background-color: #fff;
  padding: 35px 40px 40px 40px;
  height: 100%;
}

@media (max-width: 991px) {
  .quote-info .pl {
    padding: 15px;
  }
}

.quote-info .pl .label {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 20px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #b584b3;
}

.quote-info .pl .value {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 20px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #561e53;
}

.quote-info .pl .value b {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 20px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #561e53;
}

.quote-info .pl select.default {
  width: 100%;
  height: 42px;
  border-radius: 3px;
  border: solid 3px #89bd24;
  background-color: #fff;
  padding: 0px 15px;
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 20px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #561e53;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' fill='%23561e53'%3E%3Cpath d='M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z'/%3E%3C/svg%3E");
  background-position: calc(100% - 16px) 6px;
  background-repeat: no-repeat;
  background-size: 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  cursor: pointer;
  outline: none;
  padding: 0px 15px;
}

.quote-info .pr {
  border-radius: 3px;
  border: solid 3px #89bd24;
  background-color: #561e53;
  color: #fff;
  padding: 40px;
  height: 100%;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .quote-info .pr {
    margin-top: 30px;
  }
}

@media (max-width: 991px) {
  .quote-info .pr {
    padding: 15px;
  }
}

.price-discounted {
  align-items: center;
  margin-bottom: 10px;
}

.price-discounted .price-label {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #fff;
}

.price-discounted .price-value {
  text-align: right;
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 45px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: right;
  color: #fff;
}

.price-discounted .price-value b {
  text-align: right;
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 45px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: right;
  color: #fff;
}


.price-discounted .price-value span {
  display: block;
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 20px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #fff;
}


.price-standart {
  align-items: center;
  margin-bottom: 10px;
}

.price-standart .price-label {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 20px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #fff;
}

.price-standart .price-value {
  text-align: right;
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 45px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: right;
  color: #fff;
}

.price-standart .price-value b {
  text-align: right;
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 45px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: right;
  color: #fff;
  text-decoration: line-through;
}


.price-standart .price-value span {
  display: block;
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 20px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #fff;
  text-decoration: none;
}


.price-final {
  border-radius: 15px;
  border: solid 3px #89bd24;
  background-color: #561e53;
  text-align: center;
  padding: 10px;
}

.price-final h4 {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
  margin-bottom: 0;
}

.price-final b {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 65px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
  display: block;
  margin-bottom: 6px;
}


.price-final span {
  display: block;
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 20px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  color: #fff;
}

.quote-plans {
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .quote-plans {
    margin-bottom: 30px;
  }
}

.quote-plans .heading {
  font-size: 34px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #561e53;
  margin-bottom: 25px;
}

.quote-plans .plans-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
}

@media (max-width: 768px) {
  .quote-plans .plans-list {
    grid-template-columns: 1fr;
  }
}

.quote-plans .plans-list .plan-item {
  border: solid 3px #89bd24;
  background-color: #fff;
  -webkit-border-bottom-right-radius: 18px;
  -webkit-border-bottom-left-radius: 18px;
  -moz-border-radius-bottomright: 18px;
  -moz-border-radius-bottomleft: 18px;
  border-bottom-right-radius: 18px;
  border-bottom-left-radius: 18px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

@media (max-width: 768px) {
  .quote-plans .plans-list .plan-item {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }
}

.quote-plans .plans-list .plan-item .plan-size {
  position: relative;
  height: 70px;
  padding-top: 10px;
}

.quote-plans .plans-list .plan-item .plan-size span {
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #561e53;
  display: block;
}

.quote-plans .plans-list .plan-item .plan-size b {
  font-size: 36px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.87;
  letter-spacing: normal;
  text-align: center;
  color: #561e53;
  display: block;
  position: relative;
  z-index: 5;
}

.quote-plans .plans-list .plan-item .plan-size::before {
  content: '';
  display: block;
  position: absolute;
  top: calc(100% - 3px);
  left: 0;
  right: 0;
  background: #fff;
  clip-path: polygon(0 0, 0 3px, 50% 23px, 100% 3px, 100% 0);
  z-index: 3;
  height: 23px;
}

.quote-plans .plans-list .plan-item .plan-size::after {
  content: '';
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #89bd24;
  clip-path: polygon(0 0, 0 3px, 50% 23px, 100% 3px, 100% 0);
  z-index: 2;
  height: 23px;
}

.quote-plans .plans-list .plan-item .plan-content {
  padding: 30px;
  padding-top: 40px;
  background: #561e53;
  height: calc(100% - 70px - 78px);
}
@media (max-width: 991px) and (min-width: 769px) {
  .quote-plans .plans-list .plan-item .plan-content {
    padding: 15px 10px;
  }
}

.quote-plans .plans-list .plan-item .plan-content .price-standart .price-label, .quote-plans .plans-list .plan-item .plan-content .price-discounted .price-label {
  font-size: 16px;
}

.quote-plans .plans-list .plan-item .plan-content .price-standart .price-value b, .quote-plans .plans-list .plan-item .plan-content .price-discounted .price-value b {
  font-size: 36px;
}

.quote-plans .plans-list .plan-item .plan-content .price-standart .price-value span, .quote-plans .plans-list .plan-item .plan-content .price-discounted .price-value span {
  font-size: 16px;
}

.quote-plans .plans-list .plan-item .plan-content .price-final {
  margin-top: 30px;
  padding: 15px 10px;
}

.quote-plans .plans-list .plan-item .plan-content .price-final h4 {
  font-size: 16px;
}

.quote-plans .plans-list .plan-item .plan-content .price-final b {
  font-size: 52px;
}

.quote-plans .plans-list .plan-item .plan-content .price-final span {
  font-size: 16px;
}

.quote-plans .plans-list .plan-item .plan-button {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 26px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #7d8491;
  height: 78px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -moz-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.quote-plans .plans-list .plan-item .plan-button:hover {
  background-color: #89bd24;
  color: #fff;
}

.quote-plans .plans-list .plan-item .plan-button .sel-y {
  display: none;
}

.quote-plans .plans-list .plan-item .plan-button .sel-n {
  display: block;
}

.quote-plans .plans-list .plan-item.selected .plan-size {
  background-color: #89bd24;
}

.quote-plans .plans-list .plan-item.selected .plan-size::before, .quote-plans .plans-list .plan-item.selected .plan-size::after {
  background-color: #89bd24;
}

.quote-plans .plans-list .plan-item.selected .plan-button {
  background-color: #89bd24;
  color: #fff;
  font-weight: 500;
}

.quote-plans .plans-list .plan-item.selected .plan-button i {
  position: relative;
  top: 2px;
}

.quote-plans .plans-list .plan-item.selected .plan-button .sel-y {
  display: block;
}

.quote-plans .plans-list .plan-item.selected .plan-button .sel-n {
  display: none;
}

@media (max-width: 991px) {
  .quote-plans .plans-list .plan-item .plan-content .price-final b {
    font-size: 48px;
  }
  .quote-plans .plans-list .plan-item .plan-content .price-discounted .price-value b {
    font-size: 36px;
  }
  .quote-plans .plans-list .plan-item .plan-content .price-discounted .price-value span{
    font-size: 18px;
  }
  .quote-plans .plans-list .plan-item .plan-content .price-standart .price-value b {
    font-size: 36px;
  }
  .quote-plans .plans-list .plan-item .plan-content .price-standart .price-value span {
    font-size: 18px;
  }
}

.size-selector {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.size-selector .size-nav {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 30px;
}

.size-selector .size-nav .size-prev {
  display: -webkit-inline-flex;
  display: -ms-inline-flex;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  line-height: 1;
}

@media (max-width: 575px) {
  .size-selector .size-nav .size-prev span {
    display: none;
  }
}

.size-selector .size-nav .size-prev i {
  font-size: 45px;
  color: #89bd24;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .size-selector .size-nav .size-prev i {
    font-size: 32px;
  }
}

.size-selector .size-nav .size-prev span {
  font-size: 15px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.07px;
  color: #a8a8a8;
  text-transform: uppercase;
  position: relative;
  top: -1px;
}

.size-selector .size-nav .size-next {
  display: -webkit-inline-flex;
  display: -ms-inline-flex;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  line-height: 1;
}

@media (max-width: 575px) {
  .size-selector .size-nav .size-next span {
    display: none;
  }
}

.size-selector .size-nav .size-next i {
  font-size: 45px;
  color: #89bd24;
  margin-left: 10px;
}

@media (max-width: 768px) {
  .size-selector .size-nav .size-next i {
    font-size: 32px;
  }
}

.size-selector .size-nav .size-next span {
  font-size: 15px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.07px;
  color: #a8a8a8;
  text-transform: uppercase;
  position: relative;
  top: -1px;
}

.size-selector .size-list {
  width: 140px;
  min-width: 140px;
  max-width: 140px;
  margin-right: 40px;
  padding-top: 80px;
}

.size-selector .size-list .sl-item {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 15px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.07px;
  color: #d8e9b8;
  border: none;
  background: none;
  display: block;
  width: 100%;
  text-align: left;
  padding-right: 20px;
  position: relative;
  cursor: default;
}

.size-selector .size-list .sl-item span {
  padding-left: 0px;
  display: block;
  width: 70px;
  text-align: right;
}

.size-selector .size-list .sl-item.selectable {
  color: #561e53;
  cursor: pointer;
}

.size-selector .size-list .sl-item.selectable::after {
  width: 30px;
  height: 2px;
  background: #979797;
  position: absolute;
  content: "";
  right: 15px;
  top: calc(50% - 1px);
}

.size-selector .size-list .sl-item.selectable.active {
  border-radius: 10px;
  background-color: #89bd24;
  color: #fff;
}

.size-selector .size-content {
  width: calc(100% - 140px);
  position: relative;
}

@media (max-width: 768px) {
  .size-selector .size-content {
    width: 100%;
  }
}

.size-selector .size-content .size-nav {
  position: absolute;
  width: 100%;
  z-index: 2;
  padding-top: 10px;
}
@media (max-width: 768px) {
  .size-selector .size-content .size-nav {
    padding-top: 28px;
  }
}
@media (max-width: 575px) {
  .size-selector .size-content .size-nav {
    padding-top: 28px;
  }
}

.size-selector .size-selector-header {
  background-color: #87cb00;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 106px;
  -webkit-border-top-left-radius: 19px;
  -webkit-border-top-right-radius: 19px;
  -moz-border-radius-topleft: 19px;
  -moz-border-radius-topright: 19px;
  border-top-left-radius: 19px;
  border-top-right-radius: 19px;
  padding: 0px 15px;
}

.size-selector .size-selector-header .ssh-item {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 15px;
  margin-right: 15px;
  max-width: 30%;
  width: 30%;
}

@media (max-width: 768px) {
  .size-selector .size-selector-header .ssh-item {
    justify-content: center;
    margin-right: 5px;
    margin-left: 5px;

  }
}
@media (max-width: 575px) {
  .size-selector .size-selector-header {
    height: 80px;
  }
}

.size-selector .size-selector-header .ssh-item img {
  margin-right: 13px;
  max-width: 60px;
  max-height: 60px;
}

@media (max-width: 768px) {
  .size-selector .size-selector-header .ssh-item img {
    max-width: 50px;
    max-height: 50px;
  }
}

@media (max-width: 575px) {
  .size-selector .size-selector-header .ssh-item img {
    max-width: 35px;
    max-height: 35px;
    margin-right: 6px;
  }
}

.size-selector .size-selector-header .ssh-item span {
  font-size: 25px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #fff;
  line-height: 1;
  display: inline-block;
}

@media (max-width: 768px) {
  .size-selector .size-selector-header .ssh-item span {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .size-selector .size-selector-header .ssh-item span {
    font-size: 16px;
    font-weight: 500;
  }
}

.size-selector .carousel-inner .ssh-img {
  padding: 20px 40px;
  border: solid 4px #87cb00;
}

.size-selector .size-selector-footer {
  padding: 15px 35px;
  border: solid 4px #87cb00;
  text-decoration: none;
  -webkit-border-bottom-right-radius: 19px;
  -webkit-border-bottom-left-radius: 19px;
  -moz-border-radius-bottomright: 19px;
  -moz-border-radius-bottomleft: 19px;
  border-bottom-right-radius: 19px;
  border-bottom-left-radius: 19px;
  background-color: #561e53;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: none;
  -webkit-transition: all 0.2s 0s ease;
  -moz-transition: all 0.2s 0s ease;
  -o-transition: all 0.2s 0s ease;
  transition: all 0.2s 0s ease;
}
.size-selector .size-selector-footer:hover {
  background: #fff;
}
.size-selector .size-selector-footer:hover p {
  color: #561e53;
}

@media (max-width: 768px) {
  .size-selector .size-selector-footer {
    padding: 15px;
  }
}

@media (max-width: 575px) {
  .size-selector .size-selector-footer {
    font-size: 20px;
  }
}

.size-selector .size-selector-footer p {
  font-size: 26px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
  margin-right: 15px;
  -webkit-transition: all 0.2s 0s ease;
  -moz-transition: all 0.2s 0s ease;
  -o-transition: all 0.2s 0s ease;
  transition: all 0.2s 0s ease;
}

@media (max-width: 768px) {
  .size-selector .size-selector-footer p {
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  .size-selector .size-selector-footer p {
    font-size: 20px;
  }
}

.size-selector .size-selector-footer i {
  color: #89bd24;
  font-size: 26px;
}

.size-selector p.note {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.64;
  letter-spacing: 0.07px;
  color: #585a60;
  margin-top: 27px;
}

.carousel-item {
  position: relative;
  transition: none;
}

.carousel-item .size-name {
  font-size: 45px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: right;
  color: #561e53;
  text-align: center;
  width: 100%;
  z-index: 0;
  height: 90px;
}

@media (max-width: 768px) {
  .carousel-item .size-name {
    font-size: 34px;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.quick-tip {
  border-radius: 19px;
  background-color: #f7f7f7;
  padding: 15px;
  padding-right: 0;
  padding-bottom: 0;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 40px;
}

@media (max-width: 1200px) {
  .quick-tip {
    align-items: flex-end;
    padding-right: 15px;
  }
}

@media (max-width: 575px) {
  .quick-tip {
    padding-bottom: 15px;
    margin-bottom: 30px;
  }
}

.quick-tip .qt-img {
  display: block;
  margin-top: -42px;
  margin-right: 20px;
}

@media (max-width: 575px) {
  .quick-tip .qt-img {
    display: none;
  }
}

.quick-tip h3 {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 36px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.17px;
  color: #561e53;
  margin-bottom: 10px;
  margin-top: 0;
}

@media (max-width: 768px) {
  .quick-tip h3 {
    font-size: 28px;
  }
}

.quick-tip p {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  color: #7d8491;
  margin-bottom: 15px;
}

.mobile-size-selector {
  margin-bottom: 0px;
}

.mobile-size-selector #mss-button {
  width: 100%;
  height: 56px;
  border-radius: 3px;
  border: solid 3px #89bd24;
  background-color: #fff;
  padding: 0px 15px;
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #561e53;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' fill='%23561e53'%3E%3Cpath d='M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z'/%3E%3C/svg%3E");
  background-position: calc(100% - 20px) 10px;
  background-repeat: no-repeat;
  background-size: 25px;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  cursor: pointer;
  outline: none;
  padding: 0px 15px;
}

.mobile-size-selector .dropdown-menu {
  width: 100%;
  padding: 0;
  margin: 0;
  border: solid 3px #89bd24;
}

.mobile-size-selector .dropdown-menu li {
  list-style-type: none;
  padding-left: 0;
  height: 48px;
}

.mobile-size-selector .dropdown-menu li::before {
  display: none;
}

.mobile-size-selector .dropdown-menu li:not(:last-child) {
  border-bottom: 1px solid #89bd24;
}

.mobile-size-selector .dropdown-menu li a {
  display: block;
  line-height: 40px;
}

.mobile-size-selector .dropdown-menu li a.active, .mobile-size-selector .dropdown-menu li a:active {
  background-color: #561e53;
  color: #fff;
}
.main .mainmenu {
  z-index: 5;
  position: relative;
}


.faqs-pre {
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .faqs-pre {
    margin-bottom: 30px;
  }
}
.faqs-pre h2 {
  font-size: 25px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #561e53;
}
.faqs-pre p {
  font-size: 18px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  text-align: center;
  color: #561e53;
}
@media (max-width: 768px) {
  .faqs-pre h2 {
    font-size: 22px;
  }
  .faqs-pre p {
    font-size: 17px;
  }
}
.faqs-pre p a {
  font-size: inherit;
  font-weight: inherit;
  font-stretch: inherit;
  font-style: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
}
.faqs-pre p a:hover {
  text-decoration: none;
}


.loading-text {
  font-size: 19px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.42;
  letter-spacing: 0.09px;
  color: #561e53;
  text-align: center;
}


.locations-page label {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.9;
  letter-spacing: 0.11px;
  color: #561e53;
  padding-top: 0px;
  margin-bottom: 10px;
}



.locations-page select.form-select {
  width: 100%;
  height: 56px;
  border-radius: 3px;
  border: solid 3px #89bd24;
  background-color: #fff;
  padding: 0px 15px;
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 20px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #561e53;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' fill='%23561e53'%3E%3Cpath d='M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z'/%3E%3C/svg%3E");
  background-position: calc(100% - 20px) 10px;
  background-repeat: no-repeat;
  background-size: 25px;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  cursor: pointer;
  outline: none;
  padding: 0px 15px;
}

.locations-page input.form-control {
  width: 100%;
  height: 56px;
  border-radius: 3px;
  border: solid 3px #89bd24;
  background-color: #fff;
  padding: 0px 15px;
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 20px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #561e53;
  outline: none;
  box-shadow: none;
}
.locations-page textarea.form-control {
  width: 100%;
  height: 256px;
  border-radius: 3px;
  border: solid 3px #89bd24;
  background-color: #fff;
  padding: 15px;
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 20px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #561e53;
  outline: none;
  box-shadow: none;
}

@media (max-width: 768px) {
  .locations-page label {
    font-size: 20px;
  }
  .locations-page textarea.form-control,
  .locations-page input.form-control {
    font-size: 18px;
  }
  .locations-page textarea.form-control {
    height: 200px;
  }
}
@media (max-width: 575px) {
  .locations-page textarea.form-control,
  .locations-page input.form-control {
    font-size: 17px;
  }
}

.callback-form .close {
  outline: none;
  font-size: 31px;
  color: #02acff;
  background: none;
  border: none;
}

.callback-form .close i {
  outline: none;
  font-size: 31px;
  color: #02acff;
}

.callback-form .modal-dialog {
  max-width: 680px;
}

.callback-form .modal-body {
  padding: 30px 30px 30px 30px;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
}

.callback-form h2 {
  font-size: 32px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.52;
  letter-spacing: -0.67px;
  color: #561e53;
  margin-bottom: 20px;
}

.callback-form label {
  font-size: 20px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  color: #561e53;
  margin-bottom: 10px;
}

.callback-form .d-flex {
  margin-top: 10px;
}

.callback-form .d-flex label {
  margin-bottom: 0;
  width: 130px;
  flex-basis: 130px;
}

.callback-form .d-flex input.default {
  flex-basis: calc(100% - 130px);
  width: calc(100% - 130px);
}

.callback-form p {
  font-size: 19px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: -0.41px;
  color: #561e53;
  margin-bottom: 0;
  margin-top: 20px;
}


.callback-form input.default {
  width: 100%;
  height: 56px;
  border-radius: 3px;
  border: solid 3px #89bd24;
  background-color: #fff;
  padding: 0px 15px;
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 20px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #561e53;
}


.callback-form input.default:focus {
  border-color: #561e53;
}

.callback-form textarea.default {
  width: 100%;
  height: 80px;
  border-radius: 3px;
  border: solid 3px #89bd24;
  background-color: #fff;
  padding: 15px;
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 20px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #561e53;
  outline: none;
  box-shadow: none;
}
@media (max-width: 575px) {
  .callback-form input.default {
    height: 46px;
  }
  .callback-form textarea.default {
    height: 80px;
  }
}
.modal-title {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #561e53;
}

.callback-form textarea.default:focus {
  border-color: #561e53;
}

#visual-planner .size-list {
  padding-top: 0;
}
.modal-header .btn-close {
  outline: none;
  box-shadow: none;
}

.faqs ul .item .inner ul li {
  font-family: "DM Sans", sans-serif;
  padding-left: 25px;
  display: block;
  position: relative;
  font-size: 18px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.42;
  letter-spacing: 0.09px;
  color: #585a60;
  margin-bottom: 5px;
}
.faqs ul .item .inner p {
  font-family: "DM Sans", sans-serif;
  position: relative;
  font-size: 18px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.42;
  letter-spacing: 0.09px;
  color: #585a60;
}
.faqs ul .item .inner ul li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 4px;
  background-color: #89bd24;
  position: absolute;
  left: 2px;
  top: 11px;
  display: block;
}
@media (max-width: 768px) {
  .faqs ul .item .inner ul li,
  .faqs ul .item .inner p {
    font-size: 17px;
  }
}

.storeAddress, .storeAddress a {
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 20px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #561e53;
  text-decoration: none;
}
@media (max-width: 768px) {
  .storeAddress, .storeAddress a {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .storeAddress, .storeAddress a {
    font-size: 17px;
  }
}

.copy-links {
  font-size: 14px;
  color: #fff;
}
.copy-links a {
  font-size: 14px;
  color: #fff;
  text-decoration: none;
}
.copy-links a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .copy-links >div {
    flex-direction: column;
  }
}

.contact-page-form h3 {
  font-size: 24px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.39;
  letter-spacing: normal;
  color: #561e53;
  margin-bottom: 15px;
}
.contact-page-form p {
  font-size: 18px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.39;
  letter-spacing: normal;
  color: #561e53;
  margin-bottom: 35px;
}
@media (max-width: 768px) {
  .contact-page-form h3 {
    font-size: 22px;
  }
  .contact-page-form p {
    font-size: 17px;
    margin-bottom: 25px;
  }
}
.contact-page-form-wrapper {
  max-width: 476px;
  margin-right: 0;
  margin-left: auto;
}

.contact-page-form .custom-checkbox .custom-checkbox-label {
  position: relative;
  padding-left: 25px;
  font-family: "Clarika Pro Geometric", sans-serif;
  font-size: 17px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.08px;
  color: #561e53;
  padding-top: 0;
  min-height: 35px;
  cursor: pointer;
  margin-bottom: 0;
}

.contact-page-form  .custom-checkbox .custom-checkbox-label::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 2px;
  border: solid 2px #561e53;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 4px;
}

.contact-page-form .custom-checkbox .custom-checkbox-label::after {
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  color: #561e53;
  display: -webkit-inline-flex;
  display: -ms-inline-flex;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  font-size: 14px;
  line-height: 16px;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 5px;
  opacity: 0;
}

.contacts-info p {
  font-size: 26px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.12px;
  color: #89bd24;
}
.contacts-info p b {
  color: #561e53;
  font-weight: 700;
}
.contacts-info p a {
  color: inherit;
  text-decoration: none;
}
.contacts-info p a:hover {
  text-decoration: underline;
}
.contacts-info h3 {
  font-size: 26px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.12px;
  color: #89bd24;
}
@media (max-width: 768px) {
  .contacts-info h3 {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .contacts-info h3 {
    font-size: 22px;
  }
}
#left-location-list .store-item {
  background: none;
  padding-left: 0;
  border-radius: 0;
}
#left-location-list .store-item .store-info {
  padding-left: 0;
  padding-top: 0;
}
#left-location-list .store-item .store-info .store-text .address {
  font-size: 18px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.39;
  letter-spacing: normal;
  color: #561e53;

}
#left-location-list .store-item .store-info .store-text .address b {
  font-weight: 700;
}
#left-location-list .store-item .store-info .store-text .address span {
  font-size: 18px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.39;
  letter-spacing: normal;
  color: #561e53;
}
#left-location-list .store-item .store-info .store-text .address a {
  font-size: 18px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.39;
  letter-spacing: normal;
  color: #89bd24;
}
#left-location-list .store-item .store-info .store-text .address .fa-map {
  font-size: 30px;
  position: relative;
  top: 5px;
}

#left-location-list .store-item .store-info .store-text {
  padding-right: 0;
}

@media (max-width: 1200px) and (min-width: 576px) {
  .modal-lg, .modal-xl {
      max-width: calc(100% - 60px);
  }
}

.footer .logo {
  display: block;
  width: 100%;
  max-width: 268px;
}

@media (max-width: 768px) {
  #chat-widget-container {
    bottom: 90px !important;
  }
}

.snip-layout .snip-header {
  background: #89bd24;
}
.snip-layout .snip-header__total {
  background: #561e53;
}
.snip-layout .snip-header__total-label {
  color: #fff;
}
.snip-layout .snip-layout__main-container {
  border-radius: 6px;
  overflow: hidden;
}
.snip-layout .snip-btn, .snip-layout .snip-btn--highlight {
  background: #89bd24;
  color: #561e53;
}
.snip-layout .snip-footer {
  background: #561e53;
}
.snip-layout .snip-footer__copyright {
  color: #fff;
}
.snip-layout .snip-table td, .snip-layout .snip-table th, .snip-layout .snip-table tr {
  color: #561e53;
}
.snip-layout .snip-product__name {
  color: #561e53;
}

.snipcart-cart-summary-side {
  border-left: 2px solid #561e53;
}
.snipcart-button-primary {
  background: #89bd24;
  color: #561e53;
}
.snipcart-cart__secondary-header {
  background: #89bd24;
}
.snipcart-button-link {
  color: #561e53;
}
.snipcart {
  color: #561e53;
}
.snipcart-summary-fees {
  color: #561e53;
}
.snipcart-item-quantity__quantity {
  color: #561e53;
  border-color: #561e53;
  border-radius: 6px;
}
.snipcart-button-icon.is-secondary {
  background: #89bd24;
  color: #561e53;
}
.snipcart-item-line {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #561e53;
}
.snipcart-cart-header .snipcart-modal__close-icon, .snipcart-cart-header__icon {
  color: #89bd24;
}

.snipcart-item-list {
  padding: 10px;
  z-index: 2222222222;
  position: relative;
}
.snipcart-summary-fees__notice {
  margin-top: 0;
  margin-bottom: 10px;
}
.snipcart-summary-fees__amount {
  font-weight: 600;
  letter-spacing: 1px;
}
.snipcart-cart__secondary-header .snipcart__icon--medium {
  width: 40px;
  height: 40px;
  color: #fff;
}
.snipcart-cart__secondary-header-title {
  color: #fff;
  font-weight: bold;
  font-size: 22px;
}
.snipcart-cart-summary-side .snipcart-cart__footer {
  border-top: 1px solid #561e53;
}
.snipcart-button-primary:hover {
  background: #561e53;
}
.snipcart-button-link:hover {
  color: #561e53;
}
.snipcart-item-line {
  margin-bottom: 10px;
}
.snipcart-cart-summary-side .snipcart-cart__content .snipcart-item-list .snipcart-item-line {
  margin-bottom: 10px;

}

.side-module.instant .second-part {
  font-size: 28px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.17em;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
  text-transform: none;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media (max-width: 768px) {
  .side-module.instant .second-part {
    font-size: 25px;
    padding: 15px 10px;
  }
}
@media (max-width: 768px) {
  .main-banner .text-badge {
    top: 50px;
    right: 30px;
  }
}


.mainmenu .has-children {
  position: relative;
}

.mainmenu .bigmenu {
  position: absolute;
  background: #fff;
  left: 0;
  top: 100%;
  width: auto;
  min-width: 200px;
  background: transparent;
  visibility: hidden;
  z-index: -999;
  opacity: 0;
  transition: all 300ms ease;
  transform: translateY(-5px);
  padding: 0;
  box-sizing: border-box;
  padding-top: 15px;
}
.mainmenu .bigmenu .bigmenu-item {
  border-radius: 14px;
  background: #561E53;
  padding: 18px;
}
.mainmenu .has-children:hover .bigmenu {
  visibility: visible;
  z-index: 999;
  opacity: 1;
  transform: translateX(0);
}
.mainmenu .bigmenu-item ul li a {
  white-space: nowrap;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.mainmenu .bigmenu-item ul li+li {
  margin-top: 6px;
}
.mainmenu .bigmenu-item ul li {
  padding-left: 0;
  padding-right: 0;
}

.mainmenu .bigmenu-item ul li a:hover{
  color: #89BD24;
}
.mainmenu .bigmenu-item ul li.active a {
  color: #89BD24;
  font-weight: 500;
}
.mainmenu .mobile-expand-toggle {
  display: none;
}
.mobile-menu {
  padding-left: 0;
  padding-right: 0;
}
.mobile-menu .mobile-expand-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0;
  top: 0;
  transition: all 300ms ease;
}
.mobile-menu .mobile-expand-toggle.active {
  transform: rotate(90deg);
}
.mobile-menu .bigmenu-item ul li a {
  font-size: 20px;
  line-height: 1.4em;
}
.mobile-menu .bigmenu {
  position: relative;
  padding: 5px 0;
  border-top: 1px solid #561e53;
  border-bottom: 1px solid #561e53;
  display: none;
}
.mobile-menu .has-children {
  position: relative;
}
.mobile-menu ul li {
    margin-bottom: 0;
    margin-top: 0;
    padding: 0px;
}
.mobile-menu ul li a {
  margin-bottom: 0;
  margin-top: 0;
  padding: 5px 0px;
  display: block;
}
.mobile-menu>ul {
  overflow-y: auto;
  height: 100%;
  padding-left: 24px;
  padding-right: 24px;
}