/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Assistant:wght@200;300;400;500;600;700;800&family=Cinzel+Decorative:wght@700&display=swap");
@font-face {
  font-family: "times-bold";
  src: url("../fonts/Times-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "visby-light";
  src: url("../fonts/VisbyCF-Light.otf") format("truetype");
}

@font-face {
  font-family: "visby-bold";
  src: url("../fonts/VisbyCF-Bold.otf") format("truetype");
}

/* /Fonts */
/* Global */
html {
  margin: 0 !important;
  overflow-x: hidden;
}

body {
  position: relative;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Assistant", sans-serif;
  font-weight: 400;
  font-size: 18px;
  padding-top: 115px;
}
@media only screen and (max-width: 1370px) {
  body {
    padding-top: 85px;
  }
}
@media only screen and (max-width: 950px) {
  body {
    padding-top: 40px;
  }
}

input {
  border: none;
  outline: none;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

a {
  text-decoration: none;
  color: inherit;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  direction: rtl;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

ul {
  -webkit-padding-start: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

section {
  width: 100%;
  max-width: 1920px;
  margin: auto;
  overflow: hidden;
  position: relative;
  padding: 75px 0;
}
@media only screen and (max-width: 1200px) {
  section {
    padding: 55px 0;
  }
}
@media only screen and (max-width: 950px) {
  section {
    padding: 40px 0;
  }
}

.section {
  max-width: 1920px;
  margin: auto;
  padding: 75px 0;
}
@media only screen and (max-width: 1200px) {
  .section {
    padding: 55px 0;
  }
}
@media only screen and (max-width: 950px) {
  .section {
    padding: 40px 0;
  }
}

.section-inner {
  max-width: 1200px;
  padding: 0 10px;
  width: 100%;
  margin: auto;
  position: relative;
}
.section-inner.narrow {
  max-width: 850px;
}
.section-inner.wide {
  max-width: 1330px;
}

.content {
  font-family: "Assistant", sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: #496d5b;
  line-height: 1.4;
}
.content p,
.content ul,
.content li,
.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content img {
  margin-top: 15px;
}
.content ul {
  list-style: disc;
  padding-right: 25px;
}
.content a {
  color: #003c22;
  text-decoration: underline;
}
.content a:hover {
  text-decoration: none;
}
.content img {
  max-width: 100%;
}
@media only screen and (max-width: 950px) {
  .content {
    font-size: 16px;
  }
}

.centered {
  text-align: center;
}

.white {
  color: #fff;
}

.parts {
  display: flex;
  margin: 0 -45px;
}
.parts .part {
  width: 50%;
  padding: 0 45px;
  position: relative;
}
.parts .part .image,
.parts .part .video {
  position: relative;
  text-align: center;
}
.parts .part .image img,
.parts .part .video img {
  max-width: 100%;
}
@media only screen and (max-width: 950px) {
  .parts {
    flex-wrap: wrap;
  }
  .parts .part {
    width: 100%;
  }
  .parts .part:nth-child(2) {
    margin-top: 25px;
  }
}

.section-title {
  font-family: "Assistant", sans-serif;
  font-weight: 400;
  font-size: 32px;
  color: #003c22;
  text-align: center;
  position: relative;
  /*
	&:before {
		content: "";
		background: #F4F6F8;
		position: absolute;
		display: block;
		top: 50%;
		left: 50%;
		transform: translateX(-50%) translateY(-50%);
		height: 40px;
		width: 110px;
		z-index: 1;
	}
	*/
}
.section-title.align-right {
  text-align: right;
}
.section-title.decor-white:before {
  background: #fff;
}
.section-title.text-white {
  color: #fff;
}
.section-title.text-white:before {
  background: #3f4e66;
}
.section-title span {
  display: inline-block;
  margin: auto;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 1200px) {
  .section-title {
    font-size: 30px;
  }
}
@media only screen and (max-width: 950px) {
  .section-title {
    font-size: 25px;
  }
  .section-title:before {
    height: 30px;
    width: 90px;
  }
}

.title-2-lines {
  text-align: right;
  color: #fff;
}
.title-2-lines.centered {
  text-align: center;
}
.title-2-lines span {
  display: inline-block;
  margin: auto;
  position: relative;
  z-index: 2;
}
.title-2-lines.dark {
  color: #fdfdfa;
}
.title-2-lines.dark .line-1:before {
  background: #f4f6f8;
}
.title-2-lines.light {
  color: #fdfdfa;
}
.title-2-lines.light .line-1:before {
  background: #fbf7f3;
}
.title-2-lines .line-1 {
  position: relative;
  font-family: "Assistant", sans-serif;
  font-weight: 300;
  font-size: 34px;
}
.title-2-lines .line-2 {
  font-family: "Assistant", sans-serif;
  font-weight: 300;
  font-size: 60px;
  line-height: 1;
}
@media only screen and (max-width: 1370px) {
  .title-2-lines .line-1 {
    font-size: 30px;
  }
  .title-2-lines .line-2 {
    font-size: 45px;
  }
}
@media only screen and (max-width: 950px) {
  .title-2-lines .line-1 {
    font-size: 25px;
  }
  .title-2-lines .line-1:before {
    height: 30px;
    width: 90px;
  }
  .title-2-lines .line-2 {
    font-size: 35px;
  }
}

.section-subtitle {
  font-family: "Assistant", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  color: #496d5b;
  text-align: center;
  margin-top: 10px;
}
.section-subtitle.align-right {
  text-align: right;
}
@media only screen and (max-width: 1200px) {
  .section-subtitle {
    font-size: 18px;
  }
}
@media only screen and (max-width: 950px) {
  .section-subtitle {
    font-size: 16px;
  }
}

.loading:after {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  content: "\f1ce";
  -webkit-animation: fa-spin 0.75s linear infinite;
  animation: fa-spin 0.75s linear infinite;
  height: 20px;
  width: 20px;
  line-height: 20px;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  color: #1c1c1d;
  z-index: 2;
}

.play-button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 85px;
  width: 85px;
  border-radius: 100%;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 9;
  transition: 0.5s;
  cursor: pointer;
}
.play-button i {
  font-size: 25px;
  color: #1c1c1d;
  transition: 0.5s;
}
.play-button:hover {
  background: #1c1c1d;
}
.play-button:hover i {
  color: #fff;
}

.button-underline-hover {
  font-family: "Assistant", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #003c22;
  display: inline-block;
  position: relative;
  padding: 13px 35px;
  padding-top: 0;
  cursor: pointer;
  transition: 0.5s;
  white-space: nowrap;
}
.button-underline-hover i {
  margin-right: 8px;
  font-size: 14px;
  -moz-columns: inherit;
  columns: inherit;
  position: relative;
  z-index: 2;
}
.button-underline-hover span {
  position: relative;
  z-index: 2;
}
.button-underline-hover.white {
  color: #fff;
}
.button-underline-hover.white-line:after {
  background: #fff;
}
.button-underline-hover.white-line:hover {
  color: #27282a !important;
}
.button-underline-hover:after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #003c22;
  transition: 0.5s;
}
.button-underline-hover:hover {
  color: #fff;
}
.button-underline-hover:hover:after {
  height: 45px;
}

.decor {
  position: absolute;
}
.decor img {
  max-width: 100%;
}
.decor.decor-text {
  max-width: 70%;
}

#sm_menu_ham {
  float: none;
  left: auto;
  top: 11px;
  left: 7px;
  right: auto;
  position: static;
}
#sm_menu_ham span {
  background-color: #003c22;
  height: 2px;
}

.sm_menu_outer.accordion {
  bottom: 0;
  height: auto;
  top: 115px;
  background-color: #fdfdfa;
  background-repeat: no-repeat;
  background-position: left bottom;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sm_menu_outer.accordion.slide .mobile_menu .sub-menu {
  background: #000;
  height: 800px;
}
.sm_menu_outer.accordion .mobile_menu {
  max-width: 400px;
  width: 300px;
  margin: auto;
  text-align: center;
}
.sm_menu_outer.accordion .mobile_menu li {
  -o-border-image: linear-gradient(
      to right,
      rgba(0, 60, 34, 0) 0%,
      rgba(0, 60, 34, 0.5) 20%,
      rgba(0, 60, 34, 0.5) 50%,
      rgba(0, 60, 34, 0.5) 80%,
      rgba(0, 60, 34, 0) 100%
    )
    0 0 1 0;
  border-image: linear-gradient(
      to right,
      rgba(0, 60, 34, 0) 0%,
      rgba(0, 60, 34, 0.5) 20%,
      rgba(0, 60, 34, 0.5) 50%,
      rgba(0, 60, 34, 0.5) 80%,
      rgba(0, 60, 34, 0) 100%
    )
    0 0 1 0;
}
.sm_menu_outer.accordion .mobile_menu li.hasChild > a,
.sm_menu_outer.accordion .mobile_menu li.back a {
  background-size: 20px;
}
.sm_menu_outer.accordion .mobile_menu li.hasChild > a::before,
.sm_menu_outer.accordion .mobile_menu li.back a::before {
  right: auto;
  left: 0;
  top: 17px;
  transform: rotate(-90deg);
  background-size: 10px;
}
.sm_menu_outer.accordion .mobile_menu a {
  font-family: "Assistant", sans-serif;
  font-weight: 400;
  padding: 15px 15px;
  font-size: 18px;
  color: #496d5b;
}
.sm_menu_outer.accordion .mobile_menu .current_page_item > a {
  font-family: "Cinzel Decorative", "Assistant";
  font-weight: 700;
}
.sm_menu_outer.accordion .mobile_menu .sub-menu .menu-item:first-child {
  margin-top: -10px;
}
.sm_menu_outer.accordion .mobile_menu .sub-menu .menu-item a {
  font-size: 16px;
  padding: 10px 10px;
}
.sm_menu_outer.accordion .mobile_menu .sub-menu .menu-item a::before {
  top: 10px;
}

.sm_menu_outer.slide .mobile_menu li.hasChild > a {
  background: url(../plugins/mmenu/images/next.png) no-repeat scroll 10px
    center/5% auto;
}

.sm_menu_outer .mobile_menu li.back a {
  padding: 20px 45px 20px 5px;
  background: url(../plugins/mmenu/images/back.png) no-repeat scroll right 15px
    center/5% auto;
}

.wrap-scrolldownhoney {
  left: 50%;
  position: absolute;
  text-align: center;
  bottom: 20px;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 3;
}
.wrap-scrolldownhoney.dark .scrolldownhoney {
  border-color: #797778;
}
.wrap-scrolldownhoney.dark .scrolldownhoney .scrolldownhoney-c1,
.wrap-scrolldownhoney.dark .scrolldownhoney .scrolldownhoney-c2 {
  fill: #797778;
}
.wrap-scrolldownhoney.dark .scrolldownhoney line {
  stroke: #797778;
}
.wrap-scrolldownhoney .scrolldownhoney {
  border: 2px solid #fff;
  border-radius: 30px;
  height: 46px;
  margin: 0 auto 8px;
  text-align: center;
  width: 30px;
}
.wrap-scrolldownhoney .scrolldownhoney .scrolldownhoney-c1,
.wrap-scrolldownhoney .scrolldownhoney .scrolldownhoney-c2 {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-name: scrolldownhoney;
  animation-name: scrolldownhoney;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  fill: #fff;
}
.wrap-scrolldownhoney .scrolldownhoney line {
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: scrolldownhoney;
  animation-name: scrolldownhoney;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.wrap-scrolldownhoney .scrolldownhoney-c2 {
  -webkit-animation-delay: 0.75s;
  animation-delay: 0.75s;
}
@media only screen and (max-width: 1370px) {
  .wrap-scrolldownhoney {
    bottom: -20px;
  }
  .wrap-scrolldownhoney .scrolldownhoney {
    transform: scale(0.75);
  }
}

@-webkit-keyframes scrolldownhoney {
  0% {
    opacity: 0;
    transform: translate(0, -8px);
  }
  50% {
    opacity: 1;
    transform: translate(0, 0);
  }
  100% {
    opacity: 0;
    transform: translate(0, 8px);
  }
}

@keyframes scrolldownhoney {
  0% {
    opacity: 0;
    transform: translate(0, -8px);
  }
  50% {
    opacity: 1;
    transform: translate(0, 0);
  }
  100% {
    opacity: 0;
    transform: translate(0, 8px);
  }
}

.wait-for-scroll {
  position: relative;
  transform: translateY(90px);
  opacity: 0;
  transition-duration: 0.5s;
}
.wait-for-scroll.scrolled {
  transition-duration: 1s;
  transform: translateY(0);
  opacity: 1;
}

/*
.fp-tableCell {
	display: flex;
	justify-content: center;
	align-items: center;
}
*/
body.fp-viewing-weddingsss #fp-nav ul li a span,
body.fp-viewing-weddingsss .fp-slidesNav ul li a span {
  background: #fff;
}

/* ---------------------- header ---------------------- */
body.fp-viewing-slider-top header .header-top,
body.not-scrolled header .header-top {
  height: 30px;
  padding: 4px;
}

@media only screen and (max-width: 1370px) {
  body.fp-viewing-slider-top header .header-top,
  body.not-scrolled header .header-top {
    height: 25px;
    padding: 2px;
  }
}

#fullpage .section {
  position: relative;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 0px 2px 5px 0px rgba(50, 50, 50, 0.2);
}
header .header-top {
  text-align: center;
  background: #496d5b;
  padding: 0px;
  height: 0px;
  transition: 0.5s;
  overflow: hidden;
}
header .header-top .text {
  font-family: "Assistant", sans-serif;
  font-weight: 400;
  font-size: 17px;
  color: #fff;
}
header .header-top .text a {
  color: #fbf7f3;
}
header .header-inner {
  height: 85px;
  display: flex;
  background: #fff;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
}
header .part-right,
header .part-left {
  flex: 1 0;
}
header .part-logo {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .part-logo img {
  max-height: 80%;
  height: 100%;
  width: auto;
}
header .part-logo.mobile {
  display: none;
}
@media only screen and (max-width: 950px) {
  header .part-logo.desktop {
    display: none;
  }
  header .part-logo.mobile {
    display: flex;
  }
}
header .part-left {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header .search-toggle-icon {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 20px;
}
@media only screen and (max-width: 950px) {
  header .search-toggle-icon {
    display: none;
  }
}
header .search-field {
  margin-right: 20px;
  opacity: 0;
  position: relative;
  left: -60px;
  visibility: hidden;
  transition: 0.5s;
}
header .search-field.open {
  opacity: 1;
  visibility: visible;
  left: -40px;
}
@media only screen and (max-width: 950px) {
  header .search-field {
    display: none;
  }
}
header .tel {
  font-family: "Assistant", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #003c22;
  white-space: nowrap;
  /* margin-left: 35px;  */
}
header .tel span {
  font-family: "Assistant", sans-serif;
  font-weight: 800;
  color: #003c22;
}
header .icons {
  display: flex;
  align-items: center;
}
header .icons .icon {
  padding: 0 25px;
  position: relative;
}
header .icons .icon img {
  max-height: 25px;
  width: auto;
}
header .icons .icon:after {
  content: "";
  position: absolute;
  display: block;
  height: 50px;
  width: 1px;
  background: #496d5b;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
header .icons .icon:last-child:after {
  content: none;
}
header .icons .icon.tel-mobile {
  display: none;
}
@media only screen and (max-width: 950px) {
  header .icons .icon.tel-mobile {
    display: block;
  }
}
header .icons .icon .wrapper-img {
  font-size: 0;
  position: relative;
}
header .icons .icon .wrapper-img .num {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 16px;
  width: 16px;
  border-radius: 100%;
  background: #003c22;
  font-size: 0;
  top: -3px;
  right: -8px;
}
header .icons .icon .wrapper-img .num span {
  font-family: "Assistant", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 10px;
  color: #fff;
}
header .icons .icon.login {
  display: flex;
  align-items: center;
  font-family: "Assistant", sans-serif;
  font-weight: 400;
  font-size: 17px;
  color: #003c22;
}
header .icons .icon.login .sep {
  margin: 0 5px;
  opacity: 0.3;
}
header .icons .icon.login .wrapper-img {
  margin-left: 10px;
}
header .icons .icon.lang-select .title {
  font-family: "Assistant", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #003c22;
  position: relative;
  text-transform: uppercase;
}
@media only screen and (max-width: 1370px) {
  header .header-top .text {
    font-size: 16px;
  }
  header .header-inner {
    height: 60px;
    padding: 0 25px;
  }
}
@media only screen and (max-width: 950px) {
  header {
    box-shadow: 0px 2px 5px 0px rgba(50, 50, 50, 0.2);
    background: #fff;
  }
  header .header-top {
    display: none;
  }
  header .header-inner {
    height: 40px;
    padding: 0 10px;
    background: #fff;
  }
  header .ham-button {
    margin-left: 5px;
  }
  header .tel {
    display: none;
  }
  header .part-left .icons {
    margin-left: -10px;
  }
  header .icons .icon {
    padding: 0 8px;
  }
  header .icons .icon.login {
    margin-right: 5px;
    padding-left: 0;
  }
  header .icons .icon.lang-select .title {
    font-size: 17px;
  }
  header .icons .icon img {
    max-height: 17px;
  }
  header .icons .icon:after {
    height: 10px;
  }
  header .icons .icon.login span {
    display: none;
  }
}

/* --------------------- /header ---------------------- */
.arrow-top {
  position: fixed;
  left: 15px;
  bottom: 15px;
  height: 40px;
  width: 40px;
  background: #496d5b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  border-radius: 100%;
  z-index: 99;
  cursor: pointer;
  box-shadow: 0px 2px 5px 0px rgba(50, 50, 50, 0.2);
  transition: 0.5s;
}

body.not-scrolled .arrow-top {
  bottom: -40px;
}

.whatapp-floating {
  position: fixed;
  z-index: 99;
  bottom: 0;
  right: 0;
  font-size: 0;
}
.whatapp-floating img {
  width: 100px;
  height: 100px;
}
@media only screen and (max-width: 950px) {
  .whatapp-floating img {
    width: 80px;
    height: 80px;
  }
}

/* ---------------------- .section.top-index ---------------------- */
.section.top-index {
  height: 800px;
}
.section.top-index .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
.section.top-index .bg:after {
  content: none;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #fff;
  opacity: 0.34;
  z-index: 3;
}
.section.top-index .bg .swiper-container {
  height: 100%;
}
.section.top-index .bg .swiper-container .swiper-wrapper {
  height: 100%;
}
.section.top-index .bg .swiper-container .swiper-wrapper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.section.top-index .bg .swiper-container .swiper-wrapper .swiper-slide img {
  min-height: 100%;
}
.section.top-index .section-inner {
  max-width: 100%;
  z-index: 2;
}
.section.top-index .text {
  text-align: center;
  font-family: "times-bold", "Assistant";
  font-weight: 700;
  font-size: 68px;
  color: #fdfdfa;
  letter-spacing: 25px;
  padding: 0 30px;
}
.section.top-index .text .line-2 {
  font-size: 45px;
  letter-spacing: normal;
  margin-top: 75px;
}
@media only screen and (max-width: 1370px) {
  .section.top-index {
    height: 650px;
  }
}
@media only screen and (max-width: 950px) {
  .section.top-index {
    height: 500px;
    max-height: 500px;
    padding: 35px 0;
    display: flex;
    align-items: center;
  }
  .section.top-index .text {
    font-size: 35px;
    letter-spacing: 15px;
    padding: 0 10px;
    margin-top: 0px;
  }
  .section.top-index .text .line-2 {
    font-size: 22px;
  }
  .section.top-index .bg img {
    height: 100%;
  }
}

/* ---------------------- /.section.top-index ---------------------- */
/* ---------------------- .Section about ---------------------- */
.section.about {
  overflow: hidden;
  padding: 0;
}
.section.about .button {
  margin-top: 25px;
}
.section.about .part-top {
  padding: 130px 0;
  background: #ffffff url("../images/index/bg-about.jpg") no-repeat;
  background-position: left center;
}
.section.about .part-bottom {
  padding: 120px 20px;
  background: #fdfdfa;
}
.section.about .boxes {
  display: flex;
  flex-wrap: wrap;
  font-size: 0;
  margin: -15px;
  margin-top: 35px;
}
.section.about .boxes .box {
  width: 33.33%;
  margin: 0;
  padding: 15px;
  display: block;
  position: relative;
}
.section.about .boxes .box .inner {
  position: relative;
  display: flex;
  align-items: center;
}
.section.about .boxes .box .icon {
  position: relative;
}
.section.about .boxes .box .icon:before {
  content: "";
  position: absolute;
  right: -5px;
  top: -5px;
  height: 50px;
  width: 50px;
  background: #fbf7f3;
  border-radius: 100%;
}
.section.about .boxes .box .icon img {
  position: relative;
  z-index: 2;
}
.section.about .boxes .box .text {
  font-family: "Assistant", sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: #003c22;
  margin-right: 25px;
}
@media only screen and (max-width: 1370px) {
  .section.about .boxes {
    margin-top: 25px;
  }
  .section.about .boxes .box .icon {
    position: relative;
  }
  .section.about .boxes .box .icon:before {
    height: 35px;
    width: 35px;
  }
  .section.about .boxes .box .icon img {
    height: 35px;
  }
  .section.about .boxes .box .text {
    font-size: 18px;
    margin-right: 25px;
  }
}
@media only screen and (max-width: 1200px) {
  .section.about .part-top {
    padding: 90px 0;
    background-position: right center;
  }
  .section.about .part-bottom {
    padding: 90px 20px;
  }
}
@media only screen and (max-width: 950px) {
  .section.about .decor.decor-text {
    bottom: -20px;
  }
  .section.about .wrapper-parts .part {
    padding: 55px 0;
  }
  .section.about .wrapper-parts .part-top {
    height: auto;
  }
  .section.about .wrapper-parts .part-bottom {
    height: auto;
  }
  .section.about .boxes {
    margin: -10px;
    margin-top: 25px;
  }
  .section.about .boxes .box {
    width: 100%;
  }
  .section.about .boxes .box .inner {
    align-items: flex-start;
  }
  .section.about .boxes .box .icon img {
    height: auto;
    width: 35px;
  }
  .section.about .boxes .box .text {
    font-size: 16px;
    margin-right: 25px;
  }
}

/* --------------------- /.Section about ---------------------- */
/* ---------------------- .Section categories ---------------------- */
.section.categories {
  background: #fdfdfa;
}
.section.categories.inner {
  background: #f6f8f9;
}
.section.categories.inner .boxes {
  margin-top: 55px;
}
.section.categories.inner .boxes .box .text {
  color: #304260;
}
@media only screen and (max-width: 950px) {
  .section.categories.inner .boxes {
    margin-top: 0px;
  }
}
.section.categories .decor.decor-collection {
  right: 0;
  bottom: 20px;
}
.section.categories .boxes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0;
  margin: -9px;
  margin-top: 20px;
}
.section.categories .boxes .box {
  width: 33.33%;
  margin: 0;
  padding: 9px;
  display: block;
  position: relative;
  text-align: center;
  cursor: pointer;
  z-index: 2;
}
.section.categories .boxes .box:hover {
  z-index: 1;
}
.section.categories .boxes .box:hover .image img {
  transform: scale(1.1);
}
.section.categories .boxes .box:hover .text {
  color: #003c22;
}
.section.categories .boxes .box .inner {
  background: #fff;
  padding: 25px;
  padding-bottom: 35px;
  height: 100%;
}
.section.categories .boxes .box .image {
  height: 270px;
  overflow: hidden;
  position: relative;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section.categories .boxes .box .image img {
  max-height: 100%;
  max-width: 100%;
  transition: 0.5s;
}
.section.categories .boxes .box .text {
  font-family: "Assistant", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #496d5b;
  position: relative;
  transition: color 0.5s;
  margin-top: 10px;
}
.section.categories .boxes .box .text span {
  display: inline-block;
  margin: auto;
  position: relative;
  z-index: 2;
}
.section.categories .button {
  margin-top: 25px;
}
@media only screen and (max-width: 950px) {
  .section.categories .boxes .box {
    width: 50%;
  }
  .section.categories .boxes .box .inner {
    padding: 15px;
  }
  .section.categories .boxes .box .image {
    height: 160px;
  }
  .section.categories .boxes .box:hover .text:before {
    opacity: 0;
  }
}

/* --------------------- /.Section categories ---------------------- */
/* ---------------------- .Section section-slider-products ---------------------- */
.section.section-slider-products .decor-love {
  bottom: 0;
  left: 0;
}

.section.section-slider-products .decor-diamonds {
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.section.section-slider-products .section-inner {
  position: relative;
  z-index: 3;
}

.section.section-slider-products .swiper-container {
  margin-top: 75px;
  padding: 0px 75px;
  overflow: visible;
  mix-blend-mode: multiply;
}
.section.section-slider-products .swiper-container .navigation {
  margin: auto;
  margin-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 9;
  text-align: center;
}
.section.section-slider-products .swiper-container .navigation .products-prev {
  margin-left: 55px;
}
.section.section-slider-products .swiper-container .navigation .products-next {
  margin-right: 55px;
}
.section.section-slider-products .swiper-container .navigation .products-prev,
.section.section-slider-products .swiper-container .navigation .products-next {
  padding: 10px;
  cursor: pointer;
}
.section.section-slider-products .swiper-container .navigation .caption .title {
  font-family: "Assistant", sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: #496d5b;
}
.section.section-slider-products
  .swiper-container
  .navigation
  .caption
  .subtitle {
  font-family: "Assistant", sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: #496d5b;
}
.section.section-slider-products
  .swiper-container
  .swiper-wrapper
  .swiper-slide {
  transition: 0.5s;
  transform: translateX(100px);
}
.section.section-slider-products
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .caption {
  display: none;
}
.section.section-slider-products
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .wrapper-image {
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section.section-slider-products
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .wrapper-image
  img {
  max-width: 100%;
  max-height: 100%;
  transition: 0.5s;
}
.section.section-slider-products
  .swiper-container
  .swiper-wrapper
  .swiper-slide.swiper-slide-active {
  margin: 0 100px;
}
.section.section-slider-products
  .swiper-container
  .swiper-wrapper
  .swiper-slide.swiper-slide-active
  img {
  transform: scale(1.5);
}

@media only screen and (max-width: 1370px) {
  .section.section-slider-products .swiper-container {
    margin-top: 25px;
  }
  .section.section-slider-products .swiper-container .navigation {
    margin-top: 5px;
  }
}

@media only screen and (max-width: 950px) {
  .section.section-slider-products {
    padding: 45px 0;
  }
  .section.section-slider-products .swiper-container {
    margin-top: 60px;
    padding: 0px 25px;
  }
  .section.section-slider-products .swiper-container .navigation {
    margin: auto;
    margin-top: 0px;
    margin-right: -20px;
    margin-left: -20px;
    position: relative;
    padding-top: 50px;
  }
  .section.section-slider-products
    .swiper-container
    .navigation
    .products-prev {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
  }
  .section.section-slider-products
    .swiper-container
    .navigation
    .products-next {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
  }
  .section.section-slider-products .swiper-container .navigation .products-prev,
  .section.section-slider-products
    .swiper-container
    .navigation
    .products-next {
    padding: 10px;
    margin-top: 10px;
    cursor: pointer;
  }
  .section.section-slider-products .swiper-container .navigation .caption {
    width: 100%;
  }
  .section.section-slider-products
    .swiper-container
    .navigation
    .caption
    .title {
    font-family: "Assistant", sans-serif;
    font-weight: 400;
    font-size: 22px;
    color: #496d5b;
  }
  .section.section-slider-products
    .swiper-container
    .navigation
    .caption
    .subtitle {
    font-family: "Assistant", sans-serif;
    font-weight: 300;
    font-size: 18px;
    color: #496d5b;
  }
  .section.section-slider-products
    .swiper-container
    .swiper-wrapper
    .swiper-slide {
    transition: 0.5s;
    transform: translateX(30px);
  }
  .section.section-slider-products
    .swiper-container
    .swiper-wrapper
    .swiper-slide
    .caption {
    display: none;
  }
  .section.section-slider-products
    .swiper-container
    .swiper-wrapper
    .swiper-slide
    .wrapper-image {
    height: 250px;
  }
  .section.section-slider-products
    .swiper-container
    .swiper-wrapper
    .swiper-slide.swiper-slide-active {
    margin: 0 30px !important;
  }
  .section.section-slider-products
    .swiper-container
    .swiper-wrapper
    .swiper-slide.swiper-slide-active
    img {
    transform: scale(1.8);
  }
}

/* --------------------- /.Section section-slider-products ---------------------- */
.section.section-slider-products
  .swiper-container
  .navigation
  .swiper-pagination-progressbar {
  width: 100%;
  height: 8px;
  left: 0;
  top: 0;
}

.section.section-slider-products
  .swiper-container
  .navigation
  .swiper-pagination-progressbar
  .swiper-pagination-progressbar-fill {
  background: #27282a;
}

/* ---------------------- .Section personal ---------------------- */
.section.personal {
  padding: 0;
}
.section.personal.inner {
  padding-bottom: 200px;
  background: #fff url("../images/inner/bg-personal.png") no-repeat center
    center;
}
.section.personal.inner .title-2-lines .line-2 {
  color: #304260;
}
.section.personal.inner:after {
  content: none;
}
.section.personal.inner .decor-unique {
  right: auto;
  left: 0;
}
.section.personal.inner .items {
  display: flex;
  justify-content: center;
  margin-top: 100px;
}
.section.personal.inner .items .item {
  margin: 0 3%;
}
.section.personal.inner .items .item .number {
  color: #304260;
}
@media only screen and (max-width: 950px) {
  .section.personal.inner {
    padding-bottom: 100px;
  }
  .section.personal.inner .items {
    flex-direction: column;
    align-items: center;
    margin-top: 55px;
  }
  .section.personal.inner .items .item {
    margin: 10px 0;
    width: 100%;
  }
}
.section.personal .decor-unique {
  bottom: -190px;
  right: 0;
  z-index: 2;
}
.section.personal .decor-stones {
  left: 0;
  bottom: 0;
  max-width: 43%;
}
.section.personal .button {
  margin-top: 35px;
}
.section.personal .halves {
  display: flex;
}
.section.personal .halves .half {
  width: 50%;
  background: #fdfdfa;
}
.section.personal .halves .half .half-inner {
  max-width: 500px;
  margin-left: 0;
  margin-right: auto;
}
.section.personal .halves .half-text {
  background: #fdfdfa;
  padding: 90px;
}
.section.personal .halves .half-video {
  font-size: 0;
}
.section.personal .halves .half-video .video {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.section.personal .halves .half-video .video img {
  max-width: 100%;
}
.section.personal .items {
  margin-top: 85px;
}
.section.personal .items .item {
  display: flex;
  align-items: center;
  margin-top: 25px;
}
.section.personal .items .item .number {
  font-family: "visby-bold", "Assistant";
  font-weight: 700;
  font-size: 86px;
  color: #496d5b;
  text-align: center;
  width: 115px;
  flex-shrink: 0;
}
.section.personal .items .item .info {
  max-width: 220px;
  margin-right: 20px;
}
.section.personal .items .item .info .title {
  font-family: "Cinzel Decorative", "Assistant";
  font-weight: 700;
  font-size: 22px;
  color: #003c22;
}
.section.personal .items .item .info .text {
  font-family: "Assistant", sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: #496d5b;
  margin-top: 15px;
}
.section.personal .custom-made-image {
  height: 100%;
  background: #fdfdfa;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section.personal .custom-made-image img {
  max-width: 100%;
}
.section.personal .frames {
  height: 100%;
  background: #fdfdfa;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section.personal .frames img {
  max-width: 100%;
}
@media only screen and (max-width: 1370px) {
  .section.personal .content {
    font-size: 16px;
  }
  .section.personal .items {
    margin-top: 55px;
  }
  .section.personal .items .item {
    margin-top: 15px;
  }
  .section.personal .items .item .number {
    font-size: 65px;
    width: 90px;
  }
  .section.personal .items .item .info {
    max-width: 320px;
    margin-right: 20px;
  }
  .section.personal .items .item .info .title {
    font-size: 18px;
  }
  .section.personal .items .item .info .text {
    font-size: 16px;
  }
}
@media only screen and (max-width: 950px) {
  .section.personal {
    padding: 55px 0;
    padding-bottom: 0px;
  }
  .section.personal .decor-unique {
    bottom: -80px;
  }
  .section.personal .items {
    margin-top: 55px;
  }
  .section.personal .halves {
    flex-wrap: wrap;
  }
  .section.personal .halves .half {
    width: 100%;
  }
  .section.personal .halves .half-text {
    padding: 35px 20px;
  }
  .section.personal .halves .half-video .video {
    height: 400px;
  }
}

/* --------------------- /.Section personal ---------------------- */
/* ---------------------- .Section lab ---------------------- */
.section.lab {
  background: url("../images/index/bg-lab.jpg") no-repeat center bottom;
  overflow: hidden;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section.lab .decor-lab {
  right: 0;
  bottom: -150px;
}
.section.lab .button {
  margin-top: 55px;
}
.section.lab .content {
  font-family: "Assistant", sans-serif;
  font-weight: 400;
  max-width: 580px;
  margin: auto;
}
@media only screen and (max-width: 1370px) {
  .section.lab {
    padding: 150px 0px;
  }
}
@media only screen and (max-width: 950px) {
  .section.lab {
    height: auto;
    padding: 100px 0px;
    background-size: 100% auto;
    background-position: center center;
  }
  .section.lab .content {
    font-size: 18px;
  }
}

/* --------------------- /.Section lab ---------------------- */
/* ---------------------- .Section sales ---------------------- */
.section.sales {
  height: 1000px;
  padding: 0;
}
.section.sales .halves {
  display: flex;
  height: 100%;
}
.section.sales .halves .half {
  width: 50%;
  height: 100%;
  padding: 30px 50px;
}
.section.sales .halves .half .inner {
  padding: 50px 70px;
  height: 100%;
}
.section.sales .half.diamonds {
  background: #fbf7f3 url("../images/index/bg-stones.jpg") no-repeat center
    center;
  background-size: auto 100%;
}
.section.sales .half.year {
  background: #f2f2f2 url("../images/index/bg-sales.jpg") no-repeat center
    center;
  background-size: auto 100%;
}
.section.sales .content {
  font-family: "Assistant", sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: #fdfdfa;
}
.section.sales .button {
  margin-top: 35px;
}
@media only screen and (max-width: 1370px) {
  .section.sales {
    height: 800px;
  }
  .section.sales .halves .half {
    padding: 20px 35px;
  }
  .section.sales .halves .half .inner {
    padding: 30px 50px;
  }
}
@media only screen and (max-width: 950px) {
  .section.sales {
    height: auto;
  }
  .section.sales .halves {
    display: flex;
    flex-wrap: wrap;
  }
  .section.sales .halves .half {
    width: 100%;
    height: auto;
    padding: 20px 25px;
  }
  .section.sales .halves .half .inner {
    padding: 20px 25px;
    padding-bottom: 200px;
  }
  .section.sales .content {
    font-size: 18px;
  }
  .section.sales .half.diamonds {
    background-size: auto 100%;
  }
  .section.sales .half.year {
    background-size: auto 100%;
  }
}

/* --------------------- /.Section sales ---------------------- */
/* ---------------------- .Section weddings ---------------------- */
.section.weddings {
  background: #fdfdfa;
}
.section.weddings .decor-engaged {
  left: 0;
  bottom: 0px;
}
.section.weddings .gallery {
  margin: 0 -7px;
  margin-top: 35px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 280px);
}
.section.weddings .gallery .box {
  padding: 7px;
  cursor: pointer;
  /*
            &:nth-child(1) {
                grid-column: 1 / 3;
            }
            &:nth-child(3) {
                grid-column: 4 / 6;
                grid-row: 1 / 3;
            }
            &:nth-child(5) {
                grid-column: 2 / 4;
            }
            */
}
.section.weddings .gallery .box:hover .cover {
  opacity: 1;
}
.section.weddings .gallery .box .inner {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}
.section.weddings .gallery .box .inner > img {
  /* position: absolute;
          top: 50%;
          left: 50%;
          transform: translateX(-50%) translateY(-50%);
          min-height: 100%;
          min-width: 100%;
          transition: 0.5s; */
  z-index: 1;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.section.weddings .gallery .box .cover {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(244, 246, 248, 0.5);
  transition: 0.5s;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section.weddings .gallery .box .cover .plus {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  width: 38px;
  background: #003c22;
  border-radius: 100%;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
@media only screen and (max-width: 1370px) {
  .section.weddings .gallery {
    grid-template-rows: repeat(2, 210px);
  }
}
@media only screen and (max-width: 950px) {
  .section.weddings {
    padding: 55px 0;
  }
  .section.weddings .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 200px);
  }
  .section.weddings .gallery .box:nth-child(1) {
    grid-column: 1 / 3;
  }
  .section.weddings .gallery .box:nth-child(2) {
    grid-column: 1 / 2;
  }
  .section.weddings .gallery .box:nth-child(3) {
    grid-column: 1 / 3;
    grid-row: 4 / 6;
  }
  .section.weddings .gallery .box:nth-child(5) {
    grid-column: 1 / 3;
  }
  .section.weddings .gallery .box:nth-child(6) {
    grid-column: 1 / 3;
  }
}

/* --------------------- /.Section weddings ---------------------- */
/* ---------------------- .Section contact ---------------------- */
.section.contact {
  background: #fdfdfa;
  padding: 0;
}

/* --------------------- /.Section contact ---------------------- */
/* ---------------------- .Section footer ---------------------- */
.section.footer {
  background: #fff;
  padding: 0;
}

/* --------------------- /.Section footer ---------------------- */
/* ---------------------- Section contact ---------------------- */
section.contact {
  background: #fdfdfa;
}
section.contact .wrapper-form {
  margin: auto;
  background: #fdfdfa;
}
section.contact .wrapper-form .wpcf7 form {
  display: flex;
  align-items: center;
  width: 100%;
  padding-bottom: 50px;
}
section.contact .wrapper-form .wpcf7 form .wpcf7-form-control-wrap,
section.contact .wrapper-form .wpcf7 form .wrapper-submit {
  margin: 0;
  padding: 10px;
}
section.contact .wrapper-form .wpcf7 form .wpcf7-form-control-wrap input,
section.contact .wrapper-form .wpcf7 form .wrapper-submit input {
  height: auto;
}
section.contact .wrapper-form .wpcf7 form .newsletter-cb {
  position: absolute;
  bottom: 0px;
  right: 0;
  margin-top: 0;
  float: none;
}
@media only screen and (max-width: 950px) {
  section.contact .wrapper-form .wpcf7 form {
    display: block;
  }
  section.contact .wrapper-form .wpcf7 form .newsletter-cb {
    position: static;
    margin-top: 35px;
  }
}
section.contact .wrapper-form .title {
  font-family: "times-bold", "Assistant";
  font-weight: 700;
  font-size: 68px;
  color: #232b3d;
  letter-spacing: 30px;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 950px) {
  section.contact {
    padding: 0;
  }
  section.contact .wrapper-form {
    padding: 25px;
  }
  section.contact .wrapper-form .title {
    font-size: 55px;
    letter-spacing: 20px;
    white-space: normal;
  }
}

/* --------------------- /Section contact ---------------------- */
.wpcf7 {
  overflow: auto;
  margin: auto;
  margin-top: 35px;
}
.wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
  direction: rtl;
}
.wpcf7 input,
.wpcf7 select {
  font-family: "Assistant", sans-serif;
  font-weight: 400;
  font-size: 18px;
  border: none;
  color: #003c22;
  border-bottom: 2px solid #496d5b;
  background: none;
  outline: none;
  padding: 15px 0;
  width: 100%;
  height: 100%;
  direction: rtl;
}
.wpcf7 input::-webkit-input-placeholder,
.wpcf7 select::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #496d5b;
}
.wpcf7 input:-moz-placeholder,
.wpcf7 select:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #496d5b;
}
.wpcf7 input::-moz-placeholder,
.wpcf7 select::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #496d5b;
}
.wpcf7 input:-ms-input-placeholder,
.wpcf7 select:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #496d5b;
}
.wpcf7 .wpcf7-form-control-wrap {
  display: block;
  position: relative;
  margin-top: 20px;
}
.wpcf7 .wpcf7-form-control-wrap:first-child {
  margin-top: 0;
}
.wpcf7 .wrapper-submit {
  max-width: 250px;
  float: left;
  display: flex;
  align-items: center;
  transition: 0.5s;
  margin-top: 55px;
  color: #496d5b;
}
.wpcf7 .wrapper-submit i {
  margin-right: 5px;
  color: #496d5b;
}
.wpcf7 .wrapper-submit:hover {
  color: #496d5b;
}
.wpcf7 input[type="submit"] {
  font-family: "Cinzel Decorative", "Assistant";
  font-weight: 700;
  font-size: 22px;
  color: #496d5b;
  border: none;
  text-align: center;
  display: inline-block;
  cursor: pointer;
}
.wpcf7 input[type="checkbox"] {
  height: auto;
  width: auto;
}
.wpcf7 .wpcf7-form-control-wrap.newsletter {
  display: inline-block;
}
.wpcf7 .newsletter-cb {
  font-family: "Assistant", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #003c22;
  display: block;
  margin-top: 15px;
  cursor: pointer;
  text-align: right;
  float: right;
  margin-top: 70px;
  padding-right: 10px;
  display: flex;
}
.wpcf7 .newsletter-cb .desc-cb {
  margin-right: 15px;
}
.wpcf7 .newsletter-cb input {
  display: none;
}
.wpcf7 .newsletter-cb .wpcf7-list-item-label {
  margin-left: 15px;
}
.wpcf7 .newsletter-cb .wpcf7-list-item-label:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
  background: #f1f1f1;
  border-radius: 5px;
}
.wpcf7 .newsletter-cb .wpcf7-list-item-label:before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  height: 10px;
  width: 10px;
  background: #27282a;
  border-radius: 3px;
  opacity: 0;
  transform: scale(0.1);
  transition: 0.5s;
  z-index: 2;
}
.wpcf7 .newsletter-cb input:checked ~ .wpcf7-list-item-label:before {
  opacity: 1;
  transform: scale(1);
}
.wpcf7 span[role="alert"] {
  font-family: "Assistant", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #f5a12d;
  position: absolute;
  left: 0;
  bottom: -20px;
}
.wpcf7 .wpcf7-response-output {
  font-family: "Assistant", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #496d5b;
  position: absolute;
  bottom: -30px;
  border: none;
  padding: 0;
  margin: 0;
}
.wpcf7 .ajax-loader {
  display: none;
  position: absolute !important;
}
.wpcf7 .wpcf7-spinner {
  position: absolute;
}
@media only screen and (max-width: 950px) {
  .wpcf7 .newsletter-cb {
    width: 100%;
    margin-top: 35px;
  }
  .wpcf7 .wrapper-submit {
    margin-top: 25px;
  }
}

/* ---------------------- footer ---------------------- */
footer {
  background: #fff;
  position: relative;
  overflow: visible;
  z-index: 30;
}
footer.has-form .part-top {
  padding-top: 220px;
}
footer .part-top {
  padding-top: 70px;
  padding-bottom: 70px;
  text-align: center;
  overflow: auto;
}
footer .part-top .cols {
  display: flex;
  justify-content: space-between;
  color: white;
  font-size: 17px;
  text-align: right;
  width: 100%;
  margin: auto;
}
footer .part-top .cols .col {
  margin: 0 10px;
  color: #fff;
  max-width: 485px;
}
footer .part-top .cols .col .title {
  font-family: "Cinzel Decorative", "Assistant";
  font-weight: 700;
  font-size: 17px;
  color: #003c22;
}
footer .part-top .cols .col .content {
  font-family: "Assistant", sans-serif;
  font-weight: 400;
  font-size: 17px;
  margin-top: 20px;
  color: #496d5b;
}
footer .part-top .cols .col .content a {
  color: #496d5b;
  transition: 0.5s;
}
footer .part-top .cols .col .content a:hover {
  color: #003c22;
}
footer .part-top .cols .col .content ul {
  list-style: none;
  padding-right: 0;
}
footer .part-top .cols .col .content p,
footer .part-top .cols .col .content li {
  margin-top: 10px;
}
footer .part-top .cols .col .content img {
  margin: 0;
  display: inline-block;
  vertical-align: middle;
}
footer .part-bottom {
  background: #496d5b;
  padding: 15px 50px;
  color: #fff;
  font-family: "Assistant", sans-serif;
  font-weight: 300;
  font-size: 18px;
}
footer .part-bottom .section-inner {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  max-width: 100%;
}
@media only screen and (max-width: 1370px) {
  footer {
    background-size: auto 100%;
  }
  footer .part-top {
    padding-top: 60px;
    padding-bottom: 40px;
  }
  footer .part-bottom {
    padding: 15px 15px;
  }
}
@media only screen and (max-width: 1200px) {
  footer .part-top {
    padding-top: 50px;
    padding-bottom: 30px;
  }
  footer .part-top .section-inner {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    align-items: center;
  }
}
@media only screen and (max-width: 950px) {
  footer .part-top {
    padding-right: 10px;
    padding-left: 10px;
    padding-top: 35px;
    padding-bottom: 0px;
  }
  footer .part-top .cols {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
  }
  footer .part-top .cols .col {
    margin: 20px 2%;
    width: 100%;
    text-align: center;
  }
  footer .part-top .cols .col:last-child {
    width: 100%;
  }
  footer .part-top .cols .col .content {
    margin-top: 10px;
  }
  footer .part-top .cols .col .content p,
  footer .part-top .cols .col .content li {
    margin-top: 5px;
  }
  footer .part-bottom {
    padding: 15px 15px;
  }
  footer .part-bottom .section-inner {
    flex-direction: column;
  }
  footer .part-bottom .credit,
  footer .part-bottom .cards {
    margin-top: 10px;
  }
}

/* --------------------- /footer ---------------------- */
.wrapper-social {
  margin: auto;
  margin-left: 0;
  margin-right: auto;
  display: inline-block;
  margin-top: 25px;
  padding: 10px 0;
}
.wrapper-social .social {
  display: flex;
  align-items: center;
  margin-top: 15px;
}
.wrapper-social .social .title {
  font-family: "Assistant", sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 2;
  color: #f6f8f9;
  margin-left: 8px;
}
.wrapper-social .social a {
  color: #496d5b;
  font-size: 25px;
  margin: 8px;
  transition: 0.5s;
}
.wrapper-social .social a:hover {
  color: #003c22;
}
.wrapper-social .social .line {
  width: 50px;
  height: 1px;
  background: #496d5b;
}
@media only screen and (max-width: 950px) {
  .wrapper-social {
    margin-top: 30px;
    width: 100%;
  }
  .wrapper-social .social {
    justify-content: center;
  }
  .wrapper-social .social .title {
    display: none;
  }
}

.section.call-to-action {
  padding: 70px;
  background: #496d5b;
  text-align: center;
  font-family: "Assistant", sans-serif;
  font-weight: 300;
  font-size: 72px;
  color: #fff;
}
@media only screen and (max-width: 950px) {
  .section.call-to-action {
    padding: 35px;
    font-size: 45px;
  }
}

.popup-banner {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: 0.5s;
  visibility: hidden;
  opacity: 0;
  padding: 10px;
}
.popup-banner.open {
  visibility: visible;
  opacity: 1;
}
.popup-banner.open .container .inner {
  opacity: 1;
  transform: scale(1);
}
.popup-banner .container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-banner .container .inner {
  background: #fff;
  max-width: 1400px;
  max-height: 90vh;
  width: auto;
  margin: auto;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: 0.5s;
  opacity: 0;
  transform: scale(0.8);
}
.popup-banner .container .inner .banner {
  display: block;
  font-size: 0;
}
.popup-banner .container .inner .banner img {
  max-width: 100%;
  max-height: 80vh;
}
.popup-banner .close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: #1a1e29;
}
.popup-banner .close img {
  max-width: 50%;
}
@media only screen and (max-width: 775px) {
  .popup-banner .cont-form {
    width: auto;
    background-size: auto 100%;
  }
}

/* ---------------------- Section top-inner ---------------------- */
section.top-inner {
  padding: 55px 0;
  color: #fff;
  /* background: linear-gradient(134.13deg, #393C49 1.47%, #23232C 100%); */
  background: #fdfdfa;
  text-align: center;
  position: relative;
}
section.top-inner.extended {
  padding: 135px 0;
}
section.top-inner .buttons {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}
section.top-inner .buttons .button {
  font-family: "Assistant", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #27282a;
  background-color: #fff;
  margin: 5px;
  padding: 15px;
  cursor: pointer;
  transition: 0.5s;
  flex: 1 1 0px;
  max-width: 250px;
}
section.top-inner .buttons .button:hover {
  background-color: #003c22;
  color: #fff;
}
section.top-inner .bg {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
section.top-inner .section-inner {
  z-index: 2;
}
section.top-inner .title {
  font-family: "Cinzel Decorative", "Assistant";
  font-weight: 700;
  font-size: 56px;
  color: #003c22;
  line-height: 1;
  text-align: center;
}
section.top-inner .breadcrumbs {
  margin-top: 15px;
  font-family: "Assistant", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #496d5b;
}
@media only screen and (max-width: 1370px) {
  section.top-inner {
    padding: 45px 0;
  }
  section.top-inner.extended {
    padding: 95px 0;
  }
  section.top-inner .title {
    font-size: 50px;
  }
}
@media only screen and (max-width: 1200px) {
  section.top-inner {
    padding: 40px 0;
  }
  section.top-inner.extended {
    padding: 80px 0;
  }
  section.top-inner .title {
    font-size: 45px;
  }
}
@media only screen and (max-width: 950px) {
  section.top-inner {
    padding: 30px 0;
  }
  section.top-inner.extended {
    padding: 30px 0;
  }
  section.top-inner .title {
    font-size: 35px;
  }
  section.top-inner .buttons {
    margin-top: 20px;
  }
  section.top-inner .buttons .button {
    font-size: 16px;
    margin: 5px;
    padding: 10px;
    max-width: 250px;
  }
}

/* --------------------- /Section top-inner ---------------------- */
/* ---------------------- Section timeline ---------------------- */
section.timeline {
  background: #fff;
  overflow: visible;
}
section.timeline .decor.decor-left {
  left: 9%;
  top: 50%;
  max-width: 33%;
  transform: translateY(-50%);
}
section.timeline .decor.decor-timeline {
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 1400px) {
  section.timeline .decor.decor-left {
    left: -5%;
  }
}
@media only screen and (max-width: 950px) {
  section.timeline .decor.decor-left {
    top: auto;
    transform: none;
    bottom: 5%;
  }
  section.timeline .decor.decor-timeline {
    top: 10px;
  }
}
section.timeline .items {
  margin: auto;
  margin-top: 200px;
}
section.timeline .items .line {
  content: "";
  position: absolute;
  border: 1px dashed #989fb1;
  top: 140px;
  bottom: 140px;
  left: 50%;
  transform: translateX(-50%);
}
section.timeline .items .item {
  width: 100%;
  position: relative;
  clear: both;
  overflow: auto;
  padding: 25px;
  margin-top: -130px;
  pointer-events: none;
}
section.timeline .items .item:nth-child(odd) .wrapper-content {
  float: left;
  border-radius: 0px 40px;
}
section.timeline .items .item .dot {
  width: 8px;
  height: 8px;
  background: #003c22;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  transition: 0.5s;
}
section.timeline .items .item .wrapper-content {
  width: 43%;
  float: right;
  transition: 0.5s;
  pointer-events: auto;
  cursor: pointer;
}
section.timeline .items .item .wrapper-content .inner {
  display: flex;
  height: 200px;
  background: #fff;
  box-shadow: -6px 6px 20px rgba(0, 0, 0, 0.22);
  border-radius: 40px 0px;
  overflow: hidden;
  transition: 0.5s;
}
section.timeline .items .item .wrapper-content:hover ~ .dot {
  height: 15px;
  width: 15px;
}
section.timeline .items .item .wrapper-content:hover .inner {
  background: #fdfdfa;
}
section.timeline .items .item .wrapper-content .image {
  height: 100%;
  width: 45%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-size: 0;
}
section.timeline .items .item .wrapper-content .image img {
  height: 100%;
}
section.timeline .items .item .wrapper-content .date {
  font-family: "visby-bold", "Assistant";
  font-weight: 700;
  font-size: 30px;
  color: #496d5b;
}
section.timeline .items .item .wrapper-content .text {
  font-family: "Assistant", sans-serif;
  font-weight: 300;
  font-size: 22px;
  color: #496d5b;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 1370px) {
  section.timeline .items .item .wrapper-content .date {
    font-size: 28px;
  }
}
@media only screen and (max-width: 950px) {
  section.timeline .items {
    margin-top: 50px;
  }
  section.timeline .items .line {
    transform: none;
    left: 20px;
  }
  section.timeline .items .item {
    margin-top: 0px;
    padding: 15px;
  }
  section.timeline .items .item .dot {
    top: 50%;
    left: 7px;
    transform: translateX(0%) translateY(-50%);
  }
  section.timeline .items .item:nth-child(odd) .wrapper-content {
    float: right;
  }
  section.timeline .items .item .wrapper-content {
    width: 95%;
  }
  section.timeline .items .item .wrapper-content .inner {
    box-shadow: -3px 3px 10px rgba(0, 0, 0, 0.22);
  }
  section.timeline .items .item .wrapper-content .image {
    width: 40%;
  }
  section.timeline .items .item .wrapper-content .date {
    font-size: 28px;
  }
}

/* --------------------- /Section timeline ---------------------- */
/* ---------------------- Section category ---------------------- */
section.category .sidebar .open-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  left: -35px;
  background: #353535;
  box-shadow: -3px 3px 4px rgba(0, 0, 0, 0.16);
  z-index: 2;
  display: none;
}
section.category .sidebar .open-button .close {
  display: none;
}

section.category .sidebar .cover {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  opacity: 0.5;
  z-index: 1;
  transition: 0.5s;
  display: none;
}

section.category .sidebar .inner {
  position: relative;
  z-index: 2;
}

section.category .boxes {
  display: flex;
  flex-wrap: wrap;
  margin: -6px;
  margin-top: 55px;
}
section.category .boxes .box {
  width: 25%;
  padding: 6px;
}

section.category .widget_price_filter .ui-slider .ui-slider-range {
  background: #003c22;
}

section.category .widget_price_filter .ui-slider .ui-slider-handle {
  background: #003c22;
}

section.category .widget_price_filter .button {
  background: #003c22;
  color: #fff;
}

/* @media only screen and (max-width: 950px) {
  section.category .sidebar {
    width: 350px;
    margin-left: 0px;
    position: fixed;
    z-index: 99;
    top: 50px;
    right: -350px;
    transition: 0.5s; }
    section.category .sidebar .inner {
      height: 100%;
      background: #fff; }
    section.category .sidebar .cover {
      display: block;
      visibility: hidden;
      opacity: 0; }
    section.category .sidebar .open-button {
      display: flex;
      align-items: center;
      justify-content: center; }
    section.category .sidebar.open {
      right: 0; }
      section.category .sidebar.open .cover {
        visibility: visible;
        opacity: 0.5; }
      section.category .sidebar.open .inner {
        box-shadow: -3px 8px 8px rgba(0, 0, 0, 0.05); }
      section.category .sidebar.open .open-button .open {
        display: none; }
      section.category .sidebar.open .open-button .close {
        display: block; }
  section.category .boxes {
    display: flex;
    flex-wrap: wrap;
    margin: -6px;
    margin-top: 35px; }
    section.category .boxes .box {
      width: 50%;
      padding: 6px; } } */

/* --------------------- /Section category ---------------------- */
section.category .filters {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -7px;
  margin-top: 15px;
}
section.category .filters .widget {
  flex-grow: 1;
  padding: 0 7px;
  margin-top: 25px;
}
section.category .filters .widget label {
  background: #f6f8f9;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 15px;
}
section.category .filters .widget label select {
  flex-grow: 1;
  font-family: "Assistant", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #626469;
  margin-right: 5px;
  background: #f6f8f9;
  border: none;
}
section.category .filters .widget label span {
  font-family: "Assistant", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #27282a;
}
section.category .filters .widget-title {
  font-family: "Cinzel Decorative", "Assistant";
  font-weight: 700;
  font-size: 16px;
  color: #003c22;
  margin-bottom: 5px;
}
section.category .filters .price_slider_wrapper {
  max-width: 320px;
}
section.category .filters ul {
  display: flex;
  justify-content: flex-start;
}
section.category .filters ul li {
  text-align: center;
  padding: 10px;
  font-family: "Assistant", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #003c22;
}
section.category .filters ul li .children {
  display: none;
}
section.category .filters ul li .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 65px;
  margin: auto;
}
section.category .filters ul li .icon img {
  max-width: 100%;
}
section.category .filters ul li .count {
  float: none;
  font-size: 14px;
  color: #d3d3d3;
}
section.category .filters ul li.current-cat {
  color: #003c22;
}
section.category .filters ul li.chosen {
  color: #003c22;
}
section.category .filters #woocommerce_product_categories-2 {
  width: 100%;
}
section.category .filters ul.product-categories {
  justify-content: center;
  width: 100%;
  margin-top: 10px;
  align-items: flex-end;
  flex-wrap: wrap;
}
section.category .filters ul.product-categories .cat-item {
  padding: 15px;
  background: #fdfdfa;
  margin: 0 1%;
}
section.category .filters ul.product-categories .cat-item .icon {
  height: 65px;
}
section.category .filters ul.product-categories .cat-item.current-cat {
  background: #fff;
  box-shadow: 7px 5px 30px rgba(0, 0, 0, 0.15);
}
section.category .filters #woocommerce_layered_nav-3 {
  border-bottom: 1px solid #d5d5d5;
  width: 100%;
}
section.category .filters #woocommerce_layered_nav-3 ul {
  justify-content: center;
}

@media only screen and (max-width: 950px) {
  section.category .filters {
    margin-top: 0;
  }
  section.category .filters .widget {
    width: 100%;
    margin-top: 0;
  }
  /* section.category .filters .widget ul, section.category .filters .widget form {
        display: none; } */
  section.category .filters .widget form {
    padding: 20px;
  }
  section.category .filters .widget form .price_label {
    white-space: nowrap;
  }
  section.category .filters .widget.active .widget-title {
    background: url("../images/icons/ru.svg") no-repeat left 10px center;
  }
  /* section.category .filters .widget.active ul, section.category .filters .widget.active form {
        display: flex; } */
  section.category .filters .widget.active ul ul,
  section.category .filters .widget.active form ul {
    display: none;
  }
  section.category .filters ul {
    flex-wrap: wrap;
  }
  section.category .filters ul li {
    font-size: 15px;
  }
  section.category .filters ul.product-categories {
    justify-content: flex-start;
  }
  section.category .filters ul.product-categories .cat-item {
    padding: 10px;
    margin: 1% 1%;
  }
  /* section.category .filters #woocommerce_layered_nav-3 {
      border-bottom: none; } */
  section.category .filters #woocommerce_layered_nav-3 ul {
    justify-content: flex-start;
  }
  /* section.category .filters .widget-title {
      padding: 10px;
      background: url("../images/icons/rd.svg") no-repeat left 10px center; }  */
}

.box-product {
  cursor: pointer;
}
.box-product:hover .inner {
  box-shadow: 0px 0px 50px rgba(126, 126, 126, 0.44);
}
.box-product:hover .image img.hover {
  opacity: 1;
  transform: translateX(-50%) translateY(-50%);
}
.box-product .inner {
  position: relative;
  border: 1px solid #d4ddd9;
  transition: 0.5s;
  height: 100%;
}
.box-product .like {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 2;
}
.box-product .like .wpulike {
  padding: 5px 0;
}
.box-product .like .wpulike.wpulike-default {
  padding: 0px 0px;
}
.box-product .like .wpulike.wpulike-default .wp_ulike_put_image:after {
  width: 20px;
  height: 18px;
}
.box-product .like .wpulike.wpulike-default .wp_ulike_btn {
  padding: 20px 20px;
}
@media only screen and (max-width: 950px) {
  .box-product .like .wpulike.wpulike-default {
    padding: 0px 0px;
  }
  .box-product .like .wpulike.wpulike-default .wp_ulike_btn {
    padding: 15px 18px;
  }
}
.box-product .colors {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 2;
}
.box-product .colors .color {
  cursor: pointer;
  height: 20px;
  width: 20px;
  border: 2px solid #fff;
  border-radius: 100%;
  margin-top: 3px;
  cursor: pointer;
  transition: 0.5s;
}
.box-product .colors .color:first-child {
  margin-top: 0;
}
.box-product .colors .color:hover {
  -webkit-filter: drop-shadow(4px 0px 10px rgba(69, 48, 8, 0.24));
  filter: drop-shadow(4px 0px 10px rgba(69, 48, 8, 0.24));
}
.box-product .image {
  height: 350px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.box-product .image img {
  transition: 0.5s;
  max-height: 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.box-product .image img.hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  opacity: 0;
  max-height: 100%;
}
.box-product .part-bottom {
  padding: 15px;
  padding-bottom: 50px;
  display: block;
}
.box-product .part-bottom .title {
  font-family: "Assistant", sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: #003c22;
  text-align: center;
}
.box-product .part-bottom .price {
  font-family: "Assistant", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #003c22;
  margin-top: 10px;
  text-align: center;
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 15px;
}
.box-product .part-bottom .price.var {
  font-size: 0;
}
.box-product .part-bottom .price.var .amount:nth-child(2) bdi,
.box-product .part-bottom .price.var .amount:nth-child(1) bdi,
.box-product .part-bottom .price.var .ds {
  font-size: 15px;
}
.box-product .part-bottom .price ins {
  font-family: "Assistant", sans-serif;
  font-weight: 600;
  text-decoration: none;
}
.box-product .part-bottom .price del {
  margin-left: 5px;
  font-family: "Assistant", sans-serif;
  font-weight: 300;
}
@media only screen and (max-width: 1370px) {
  .box-product .image {
    height: 350px;
  }
}
@media only screen and (max-width: 1200px) {
  .box-product .image {
    height: 350px;
  }
}
@media only screen and (max-width: 950px) {
  .box-product .colors {
    top: 8px;
    right: 8px;
  }
  .box-product .image {
    height: 350px;
  }
}

.wpulike.wpulike-default .count-box,
.wpulike.wpulike-default .wp_ulike_likers_wrapper {
  display: none;
}

.wpulike.wpulike-default .wp_ulike_put_image:after {
  width: 22px;
  height: 19px;
}

.wpulike.wpulike-default .wp_ulike_btn {
  background-color: rgba(255, 255, 255, 0);
  cursor: pointer;
}

/* ---------------------- Section product ---------------------- */
section.product .product-title {
  font-family: "Assistant", sans-serif;
  font-weight: 300;
  font-size: 34px;
  color: #003c22;
  line-height: 1;
}

section.product .sku {
  font-family: "Assistant", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #496d5b;
  margin-top: 5px;
}

section.product .content {
  font-family: "Assistant", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #496d5b;
}

section.product .price {
  margin-top: 30px;
  font-family: "Assistant", sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: #003c22;
}
section.product .price ins {
  text-decoration: none;
}
section.product .price del {
  font-family: "Assistant", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #3e434e;
}

section.product .woocommerce-variation-price .price {
  font-family: "Cinzel Decorative", "Assistant";
  font-weight: 700;
  font-size: 25px;
}

section.product .part-sliders .part-top {
  display: none;
}

section.product .cart select {
  font-family: "Assistant", sans-serif;
  font-weight: 400;
  font-size: 17px;
  color: #373a6d;
  padding: 5px;
}

section.product .cart .controls {
  display: flex;
  align-items: flex-end;
  margin-top: 25px;
}
section.product .cart .controls.no-sell .quantity {
  display: none;
}
section.product .cart .controls .single_add_to_cart_button {
  font-family: "Assistant", sans-serif;
  font-weight: 600;
  font-size: 21px;
  color: #fff;
  border-radius: 33.5px;
  background: #003c22;
  border: 1px solid #d2d2d2;
  padding: 13px 23px;
  padding-right: 35px;
  margin-right: 15px;
  white-space: nowrap;
  flex-grow: 1;
  text-align: center;
  cursor: pointer;
  position: relative;
}
section.product .cart .controls .single_add_to_cart_button span,
section.product .cart .controls .single_add_to_cart_button img {
  display: inline-block;
  vertical-align: middle;
}
section.product .cart .controls .single_add_to_cart_button img {
  margin-left: 5px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: auto;
  filter: invert(1);
}
section.product .cart .controls .fav,
section.product .cart .controls .no-sell {
  font-family: "Assistant", sans-serif;
  font-weight: 600;
  font-size: 21px;
  color: #fff;
  border-radius: 33.5px;
  background: #fdebe8;
  border: 1px solid #d2d2d2;
  padding: 13px 23px;
  padding-right: 55px;
  background: #496d5b;
  white-space: nowrap;
  margin-right: 15px;
  text-align: center;
  cursor: pointer;
  position: relative;
}
section.product .cart .controls .fav .wpulike,
section.product .cart .controls .fav span,
section.product .cart .controls .no-sell .wpulike,
section.product .cart .controls .no-sell span {
  display: inline-block;
  vertical-align: middle;
}
section.product .cart .controls .fav .wpulike,
section.product .cart .controls .no-sell .wpulike {
  padding: 0;
  margin-left: 5px;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
}
section.product .cart .controls .fav .wpulike .wp_ulike_btn,
section.product .cart .controls .no-sell .wpulike .wp_ulike_btn {
  padding: 15px;
  border-radius: 100%;
}
section.product .cart .controls .fav .wpulike .count-box,
section.product .cart .controls .no-sell .wpulike .count-box {
  display: none;
}
section.product .cart .controls .no-sell {
  padding-right: 23px;
}

section.product .cart .variations {
  margin-top: 25px;
}
section.product .cart .variations tbody {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
section.product .cart .variations tbody tr {
  display: block;
  padding: 0 10px;
  min-width: 50%;
}
section.product .cart .variations tbody tr td {
  display: block;
}
section.product .cart .variations tbody tr.thumbs td select {
  display: none;
}
section.product .cart .variations tbody tr.carat .label {
  display: none;
}
section.product .cart .variations tbody tr.carat td select {
  display: none;
}
section.product .cart .variations .label {
  margin-top: 20px;
}
section.product .cart .variations select {
  font-family: "Assistant", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #1c1c1d;
  background: #fdfdfa;
  padding: 5px 10px;
  border: none;
  outline: none;
  width: 100%;
  margin-top: 5px;
}

section.product .cart .single_variation_wrap {
  margin-top: 25px;
}

section.product .cart .quantity .label {
  font-family: "Assistant", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #222447;
}

section.product .cart .quantity .wrapper {
  display: flex;
  margin-top: 7px;
}
section.product .cart .quantity .wrapper .button {
  width: 50px;
  height: 50px;
  font-size: 24px;
  background: #f2f2f2;
  color: #222447;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.5s;
}
section.product .cart .quantity .wrapper .button span {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
section.product .cart .quantity .wrapper .button:hover {
  color: #fbf7f3;
}
section.product .cart .quantity .wrapper input {
  width: 50px;
  height: 50px;
  text-align: center;
  font-family: "Assistant", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #222447;
  background: #f9f9fc;
}

section.product .product-description {
  margin-top: 55px;
}
section.product .product-description .title {
  font-family: "Assistant", sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: #003c22;
}
section.product .product-description .content {
  font-size: 18px;
}
section.product .product-description .hidden {
  display: none;
}
section.product .product-description .button {
  margin-top: 35px;
}

section.product .sliders {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  height: 525px;
  text-align: right;
}
section.product .sliders * {
  direction: ltr;
}
section.product .sliders .gallery-top {
  border: 1px solid #fbf7f3;
  margin: 0 20px;
  margin-right: 0;
}
section.product .sliders .gallery-top .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
section.product .sliders .gallery-top .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
section.product .sliders .gallery-thumbs-wrapper {
  flex-shrink: 0;
  width: 111px;
  height: 100%;
  padding-bottom: 35px;
  margin: 0 20px;
  margin-right: 0;
}
section.product .sliders .gallery-thumbs-wrapper .navigation {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
section.product .sliders .gallery-thumbs-wrapper .navigation .nav-item {
  height: 33px;
  width: 48%;
  background: #27282a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: 0.5s;
}
section.product .sliders .gallery-thumbs-wrapper .navigation .nav-item:hover {
  background: #f6f8f9;
  color: #27282a;
}
section.product .sliders .gallery-thumbs {
  height: 100%;
}
section.product .sliders .gallery-thumbs .swiper-slide {
  cursor: pointer;
  transition: opacity 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.product .sliders .gallery-thumbs .swiper-slide img {
  max-height: 90%;
  width: auto;
}
section.product
  .sliders
  .gallery-thumbs
  .swiper-slide.swiper-slide-thumb-active {
  opacity: 0.5;
}

@media only screen and (max-width: 1200px) {
  section.product .cart .controls {
    flex-wrap: wrap;
  }
  section.product .cart .controls .break {
    width: 100%;
    margin-top: 15px;
  }
  section.product .cart .controls .single_add_to_cart_button {
    margin-right: 0;
  }
  section.product .cart .controls .button {
    margin: 5px;
  }
}

@media only screen and (max-width: 950px) {
  section.product .parts {
    flex-direction: column-reverse;
  }
  section.product .parts .part-info .part-top {
    display: none;
  }
  section.product .parts .part-sliders .part-top {
    display: block;
  }
  section.product .product-title {
    font-size: 30px;
  }
  section.product .product-description .content {
    font-size: 16px;
  }
  section.product .sliders {
    flex-wrap: wrap;
    height: auto;
    max-width: 530px;
    margin: auto;
    margin-top: 25px;
  }
  section.product .sliders .gallery-top {
    margin-left: 0;
    height: 300px;
  }
  section.product .sliders .gallery-thumbs-wrapper {
    width: 100%;
    height: auto;
    padding-bottom: 0px;
  }
  section.product .sliders .gallery-thumbs-wrapper .navigation {
    display: none;
  }
  section.product .sliders .gallery-thumbs {
    width: 100%;
    height: 80px;
    margin: 0;
    margin-top: 15px;
  }
  section.product .sliders .gallery-thumbs .swiper-slide img {
    max-height: 100%;
  }
  section.product .cart .controls .fav,
  section.product .cart .controls .no-sell {
    margin-right: 0;
    flex-grow: 1;
    margin-top: 10px;
    width: 100%;
  }
}

/* --------------------- /Section product ---------------------- */
.props-selector .items {
  display: flex;
  margin: -5px;
  margin-top: 0px;
}
.props-selector .items .item {
  padding: 5px;
  margin: 5px;
  text-align: center;
  cursor: pointer;
  transition: 0.5s;
}
.props-selector .items .item.active {
  background: #f5e8e0;
}
.props-selector .items .item .image {
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.props-selector .items .item .image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.props-selector .items .item .text {
  font-family: "Assistant", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #496d5b;
}

.wrapper-slider-selector {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 460px;
}
.wrapper-slider-selector .label {
  font-family: "Assistant", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #1c1c1d;
  cursor: pointer;
}
.wrapper-slider-selector .slider-selector {
  position: relative;
  flex-grow: 1;
  margin: 0 13px;
  margin-top: 35px;
}
.wrapper-slider-selector .slider-selector input {
  width: 100%;
  position: absolute;
  top: -20px;
  height: 50px;
  left: 0;
  right: 0;
  opacity: 0;
  z-index: 9;
  cursor: pointer;
}
.wrapper-slider-selector .slider-selector .track {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #000000;
}
.wrapper-slider-selector .slider-selector .items {
  width: 100%;
  height: 28px;
  display: flex;
  justify-content: space-between;
}
.wrapper-slider-selector .slider-selector .items .item {
  position: relative;
}
.wrapper-slider-selector .slider-selector .items .item .text {
  margin-top: 10px;
  font-family: "Assistant", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #1c1c1d;
  transition: 0.5s;
  opacity: 0;
}
.wrapper-slider-selector .slider-selector .items .item .dot {
  height: 6px;
  width: 6px;
  background: #000;
  border-radius: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  transition: 0.5s;
  opacity: 0;
}
.wrapper-slider-selector .slider-selector .items .item.active .text {
  opacity: 1;
}
.wrapper-slider-selector .slider-selector .items .item.active .dot {
  height: 15px;
  width: 15px;
  opacity: 1;
}
.wrapper-slider-selector .slider-selector .items .item:first-child .dot,
.wrapper-slider-selector .slider-selector .items .item:last-child .dot {
  opacity: 1;
}
.wrapper-slider-selector .slider-selector .items .item:first-child .text,
.wrapper-slider-selector .slider-selector .items .item:last-child .text {
  display: none;
}
.wrapper-slider-selector .slider-selector .items .item:first-child .dot {
  left: 100%;
}
.wrapper-slider-selector .slider-selector .items .item:last-child .dot {
  left: 0%;
}

/* ---------------------- Section product-icons ---------------------- */
section.product-icons .boxes {
  display: flex;
  flex-wrap: wrap;
  font-size: 0;
  margin: -25px;
}
section.product-icons .boxes.logos {
  margin-top: 25px;
}
section.product-icons .boxes .box {
  flex: 1 1 0px;
  margin: 0;
  padding: 25px;
  display: block;
  position: relative;
  text-align: center;
  cursor: pointer;
}
section.product-icons .boxes .box:hover .icon:before {
  background: #496d5b;
}
section.product-icons .boxes .box .inner {
  position: relative;
}
section.product-icons .boxes .box .icon {
  height: 80px;
  width: 80px;
  display: inline-block;
  margin: auto;
  position: relative;
}
section.product-icons .boxes .box .icon img {
  max-height: 90%;
  position: relative;
  z-index: 2;
  width: auto;
}
section.product-icons .boxes .box .icon:before {
  content: "";
  position: absolute;
  display: block;
  background-color: #fdfdfa;
  height: 80px;
  width: 80px;
  top: -13px;
  right: -23px;
  border-radius: 100%;
  z-index: 1;
  transition: 0.5s;
}
section.product-icons .boxes .box .logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.product-icons .boxes .box .logo img {
  max-height: 100%;
  max-width: 100%;
  height: auto;
  width: auto;
}
section.product-icons .boxes .box .text {
  margin-top: 10px;
}
section.product-icons .boxes .box .text .title {
  font-family: "Assistant", sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: #003c22;
}
section.product-icons .boxes .box .text .desc {
  font-family: "Assistant", sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: #496d5b;
  margin-top: 10px;
}

section.product-icons .wrapper-special {
  margin-top: 100px;
  background: #fdfdfa;
  padding: 50px;
  display: flex;
  align-items: center;
}
section.product-icons .wrapper-special .image {
  flex-shrink: 0;
  margin-right: 5%;
  max-width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.product-icons .wrapper-special .image img {
  max-width: 150%;
  height: auto;
}
section.product-icons .wrapper-special .info {
  text-align: center;
}
section.product-icons .wrapper-special .info .title {
  font-family: "Assistant", sans-serif;
  font-weight: 300;
  font-size: 28px;
  color: #003c22;
  margin-top: 10px;
}
section.product-icons .wrapper-special .info .items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 15px;
}
section.product-icons .wrapper-special .info .items .item {
  width: 30%;
  text-align: center;
  white-space: nowrap;
  font-family: "Assistant", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #496d5b;
  margin: 10px 0;
}
section.product-icons .wrapper-special .info .items .item img,
section.product-icons .wrapper-special .info .items .item span {
  display: inline-block;
  vertical-align: middle;
}
section.product-icons .wrapper-special .info .items .item span {
  margin-right: 5px;
}

@media only screen and (max-width: 1370px) {
  section.product-icons .boxes .box .icon {
    height: 70px;
    width: 70px;
  }
  section.product-icons .boxes .box .icon:before {
    height: 70px;
    width: 70px;
  }
}

@media only screen and (max-width: 950px) {
  section.product-icons .boxes {
    flex-direction: column;
    margin: -10px;
  }
  section.product-icons .boxes.logos {
    flex-direction: row;
    flex-wrap: wrap;
  }
  section.product-icons .boxes .box {
    flex: 1 50%;
    padding: 10px;
  }
  section.product-icons .boxes .box .icon {
    height: 50px;
    width: 50px;
  }
  section.product-icons .boxes .box .icon:before {
    height: 50px;
    width: 50px;
  }
  section.product-icons .boxes .box .logo {
    height: 50px;
  }
  section.product-icons .boxes .box .text {
    margin-top: 10px;
  }
  section.product-icons .boxes .box .text .title {
    font-size: 18px;
  }
  section.product-icons .boxes .box .text .desc {
    font-size: 16px;
    margin-top: 0;
  }
  section.product-icons .wrapper-special {
    margin-top: 50px;
    padding: 20px;
    flex-direction: column;
    align-items: center;
  }
  section.product-icons .wrapper-special .image {
    margin-left: 0%;
    width: 100%;
    max-width: 100%;
    text-align: center;
    margin-top: 25px;
  }
  section.product-icons .wrapper-special .image img {
    margin: auto;
    max-width: 100%;
  }
  section.product-icons .wrapper-special .info .title {
    font-size: 22px;
  }
  section.product-icons .wrapper-special .info .items .item {
    width: 48%;
    font-size: 16px;
    text-align: right;
  }
}

/* --------------------- /Section product-icons ---------------------- */
/* ---------------------- Section blog ---------------------- */
section.blog.inner .boxes {
  margin-top: 25px;
}

section.blog .items {
  display: flex;
  margin: -10px;
}
section.blog .items .item {
  font-family: "Assistant", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #003c22;
  background: #fdfdfa;
  flex: 1 1 0px;
  transition: 0.5s;
  margin: 10px;
  padding: 13px;
  text-align: center;
  cursor: pointer;
}
section.blog .items .item:hover,
section.blog .items .item.active {
  background: #003c22;
  color: #fff;
}

section.blog .boxes {
  display: flex;
  flex-wrap: wrap;
  font-size: 0;
  margin: -15px;
  margin-top: 65px;
}
section.blog .boxes .box {
  width: 33.33%;
  margin: 0;
  padding: 15px;
  display: block;
  position: relative;
  overflow: hidden;
}
section.blog .boxes .box .inner {
  overflow: hidden;
  position: relative;
}
section.blog .boxes .box .image {
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.blog .boxes .box .caption {
  position: absolute;
  background: #fff;
  box-shadow: 0px 2px 55px rgba(0, 0, 0, 0.19);
  padding: 20px;
  bottom: 10px;
  left: 10px;
  right: 10px;
}
section.blog .boxes .box .caption .title {
  font-family: "Assistant", sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: #003c22;
}
section.blog .boxes .box .caption .desc {
  font-family: "Assistant", sans-serif;
  font-weight: 300;
  font-size: 17px;
  color: #1c1c1d;
  margin-top: 10px;
}
section.blog .boxes .box .caption .read-more {
  font-family: "Assistant", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #1c1c1d;
}

@media only screen and (max-width: 1370px) {
  section.blog .boxes {
    margin-top: 35px;
  }
  section.blog .boxes .box .image {
    height: 350px;
  }
}

@media only screen and (max-width: 950px) {
  section.blog .items {
    flex-wrap: wrap;
  }
  section.blog .items .item {
    flex: 1 1 46%;
    margin: 2%;
  }
  section.blog .boxes {
    margin-top: 35px;
    justify-content: center;
  }
  section.blog .boxes .box {
    width: 100%;
    max-width: 400px;
  }
  section.blog .boxes .box .image {
    height: 250px;
  }
}

/* --------------------- /Section blog ---------------------- */
/* ---------------------- Section banner ---------------------- */
section.banner .wrapper-banner {
  background: #fdfdfa;
  padding: 20px;
  overflow: hidden;
}

section.banner .inner {
  display: flex;
  align-items: center;
  font-size: 0;
  border: 2px solid #fff;
}
section.banner .inner .part {
  width: 50%;
  text-align: center;
}
section.banner .inner .part-image {
  position: relative;
}
section.banner .inner .part-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
section.banner .inner .part-text {
  padding: 15px;
}

@media only screen and (max-width: 950px) {
  section.banner .inner .part-image {
    width: 40%;
  }
  section.banner .inner .part-image img {
    max-width: 100%;
  }
  section.banner .inner .part-text {
    width: 60%;
  }
  section.banner .title-2-lines .line-1 {
    font-size: 22px;
  }
  section.banner .title-2-lines .line-2 {
    font-size: 25px;
  }
}

/* --------------------- /Section banner ---------------------- */
/* ---------------------- Section post ---------------------- */
section.post .title {
  font-family: "Assistant", sans-serif;
  font-weight: 300;
  font-size: 34px;
  color: #003c22;
  margin-top: 0;
}

section.post .img-main {
  width: 50%;
  float: left;
  margin-right: 50px;
  margin-bottom: 50px;
}
section.post .img-main.mobile {
  display: none;
}
section.post .img-main img {
  width: 100%;
  margin-top: 0;
}

section.post .content .section-title {
  margin-top: 0;
}
section.post .content .section-title p {
  margin-top: 0;
}

@media only screen and (max-width: 950px) {
  section.post .title {
    font-size: 30px;
  }
  section.post .img-main {
    float: none;
    width: 100%;
    max-width: 500px;
    margin-right: 0;
    margin-bottom: 0;
    margin-top: 20px;
    display: none;
  }
  section.post .img-main.mobile {
    display: block;
  }
}

/* --------------------- /Section post ---------------------- */
/* ---------------------- Section consultation ---------------------- */
section.consultation .items .item {
  margin: 125px 0;
}
section.consultation .items .item:first-child {
  margin-top: 70px;
}
section.consultation .items .item .parts {
  align-items: center;
}
section.consultation .items .item:nth-child(even) .parts {
  flex-direction: row-reverse;
}
section.consultation .items .item:nth-child(even) .video .decor {
  right: auto;
  left: 0%;
}
section.consultation .items .item .title {
  font-family: "Assistant", sans-serif;
  font-weight: 300;
  font-size: 34px;
  line-height: 1;
  color: #003c22;
}
section.consultation .items .item .video {
  text-align: center;
}
section.consultation .items .item .video img {
  margin: auto;
  max-width: 100%;
  position: relative;
  z-index: 2;
}
section.consultation .items .item .video .decor {
  position: absolute;
  top: 50%;
  right: -20%;
  transform: translateY(-50%);
  z-index: 1;
  width: 61%;
}
section.consultation .items .item .video .decor img {
  max-width: 100%;
}
section.consultation .items .item .button {
  font-family: "Assistant", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  background-color: #003c22;
  padding: 15px;
  cursor: pointer;
  transition: 0.5s;
  flex: 1 1 0px;
  max-width: 250px;
  margin-top: 35px;
  display: inline-block;
  text-align: center;
}
section.consultation .items .item .button:hover {
  background-color: #496d5b;
  color: #fff;
}

@media only screen and (max-width: 950px) {
  section.consultation .items .item {
    margin: 80px 0;
  }
  section.consultation .items .item:first-child {
    margin-top: 0;
  }
  section.consultation .items .item .title {
    font-size: 30px;
  }
  section.consultation .items .item .video .decor {
    width: 50%;
  }
}

/* --------------------- /Section consultation ---------------------- */
/* ---------------------- Section personal ---------------------- */
section.personal .parts {
  margin-top: 75px;
}

section.personal .items {
  margin-top: 25px;
}
section.personal .items .item {
  display: flex;
  align-items: center;
  margin-top: 25px;
}
section.personal .items .item:first-child {
  margin-top: 0;
}
section.personal .items .item .number {
  font-family: "visby-bold", "Assistant";
  font-weight: 700;
  font-size: 86px;
  color: #003c22;
  text-align: center;
  width: 115px;
  flex-shrink: 0;
}
section.personal .items .item .info {
  max-width: 320px;
  margin-right: 20px;
}
section.personal .items .item .info .title {
  font-family: "Cinzel Decorative", "Assistant";
  font-weight: 700;
  font-size: 22px;
  color: #003c22;
}
section.personal .items .item .info .text {
  font-family: "Assistant", sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: #496d5b;
}

@media only screen and (max-width: 950px) {
  section.personal .items {
    margin-top: 15px;
  }
  section.personal .items .item {
    margin-top: 15px;
  }
  section.personal .items .item .number {
    font-size: 65px;
    width: 90px;
  }
  section.personal .items .item .info {
    max-width: 320px;
    margin-right: 20px;
  }
  section.personal .items .item .info .title {
    font-size: 18px;
  }
  section.personal .items .item .info .text {
    font-size: 16px;
  }
}

/* --------------------- /Section personal ---------------------- */
/* ---------------------- Section upload-ring ---------------------- */
section.upload-ring .wpcf7 {
  max-width: 675px;
  margin: auto;
  margin-top: 40px;
}
section.upload-ring .wpcf7 form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
section.upload-ring .wpcf7 input,
section.upload-ring .wpcf7 select {
  background: #f6f8f9;
  border: none;
  padding: 15px 10px;
}
section.upload-ring .wpcf7 input[type="submit"] {
  background: #fbf7f3;
  width: 170px;
  margin: 8px 1%;
  transition: 0.5s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
section.upload-ring .wpcf7 input[type="submit"]:hover {
  background: #27282a;
  color: #fff;
}
section.upload-ring .wpcf7 .wpcf7-form-control-wrap {
  width: 31.333%;
  margin: 8px 1%;
}
section.upload-ring .wpcf7 .wpcf7-form-control-wrap[class*="file"] {
  width: 100%;
}

@media only screen and (max-width: 950px) {
  section.upload-ring .wpcf7 .wpcf7-form-control-wrap {
    width: 100%;
  }
}

/* --------------------- /Section upload-ring ---------------------- */
/* ---------------------- Section contact-page ---------------------- */
section.contact-page {
  background: url("../images/inner/bg-contact.png") no-repeat center center;
}
section.contact-page .items {
  display: flex;
  justify-content: center;
  margin-top: 45px;
}
section.contact-page .items .item {
  font-family: "Assistant", sans-serif;
  font-weight: 300;
  font-size: 17px;
  color: #27282a;
  background: #fff;
  padding: 20px;
  text-align: center;
  margin: 5px;
  box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.103201);
  display: block;
}
section.contact-page .items .item.waze {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cinzel Decorative", "Assistant";
  font-weight: 700;
}
section.contact-page .items .item.waze img {
  width: 25px;
  height: auto;
  margin-right: 5px;
}
section.contact-page .wrapper-form {
  margin-top: 100px;
}
@media only screen and (max-width: 950px) {
  section.contact-page .items {
    display: block;
  }
  section.contact-page .items .item {
    margin: 10px;
  }
  section.contact-page .wrapper-form {
    margin-top: 50px;
  }
}

/* --------------------- /Section contact-page ---------------------- */
/* ---------------------- Section map ---------------------- */
section.map {
  padding: 0;
  position: relative;
  height: 432px;
}
section.map .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.map .bg img {
  height: 100%;
}
@media only screen and (max-width: 1370px) {
  section.map {
    height: 350px;
  }
}
@media only screen and (max-width: 950px) {
  section.map {
    height: 200px;
  }
}

/* --------------------- /Section map --------------------- */
/* ---------------------- Section questions ---------------------- */
section.questions .decor.decor-right {
  right: -3%;
  top: 100px;
  max-width: 16%;
}

section.questions .decor.decor-left {
  left: 1%;
  top: 100px;
  max-width: 11%;
}

section.questions .decor.decor-questions {
  left: 0;
  bottom: 0;
}

@media only screen and (max-width: 950px) {
  section.questions .decor.decor-right {
    top: 50px;
  }
  section.questions .decor.decor-left {
    top: auto;
    transform: none;
    bottom: 50px;
  }
}

section.questions .accordion {
  margin-top: 55px;
}
section.questions .accordion h3,
section.questions .accordion .h3 {
  padding: 10px 0;
  outline: none;
  cursor: pointer;
  font-family: "Cinzel Decorative", "Assistant";
  font-weight: 700;
  font-size: 17px;
  color: #003c22;
  padding-right: 100px;
  padding-left: 55px;
  position: relative;
  margin: 0;
  border: none;
  border-radius: 0;
  margin-top: 25px;
}
section.questions .accordion h3 .ui-accordion-header-icon,
section.questions .accordion .h3 .ui-accordion-header-icon {
  display: none;
}
section.questions .accordion h3:first-child,
section.questions .accordion .h3:first-child {
  border-top: none;
  margin-top: 0;
}
section.questions .accordion h3:before,
section.questions .accordion .h3:before {
  display: inline-block;
  font-family: FontAwesome;
  content: "\f107";
  color: #142231;
  font-size: 25px;
  line-height: 100%;
  text-align: center;
  padding-top: 2px;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
section.questions .accordion h3 .number,
section.questions .accordion .h3 .number {
  font-family: "visby-light", "Assistant";
  font-weight: 300;
  font-size: 42px;
  color: #496d5b;
  text-align: center;
  position: absolute;
  display: inline-block;
  right: 0;
  top: 0;
  bottom: 0;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.questions .accordion h3.ui-state-active:before,
section.questions .accordion .h3.ui-state-active:before {
  content: "\f106";
}
section.questions .accordion .content {
  font-family: "Assistant", sans-serif;
  font-weight: 400;
  font-size: 17px;
  color: #496d5b;
  padding: 25px;
  padding-bottom: 50px;
}
section.questions .accordion .content a {
  display: block;
  margin-top: 15px;
}

@media only screen and (max-width: 950px) {
  section.questions .parts .part:nth-child(2) {
    margin-top: 0px;
  }
  section.questions .parts .part:nth-child(2) .accordion {
    margin-top: 10px;
  }
  section.questions .accordion h3,
  section.questions .accordion .h3 {
    font-size: 16px;
    padding: 5px 0;
    padding-right: 70px;
    padding-left: 45px;
    margin-top: 10px;
  }
  section.questions .accordion h3:before,
  section.questions .accordion .h3:before {
    left: 10px;
  }
  section.questions .accordion h3 .number,
  section.questions .accordion .h3 .number {
    width: 50px;
    font-size: 35px;
  }
  section.questions .accordion .content {
    font-size: 16px;
    padding: 15px;
    padding-bottom: 50px;
  }
}

/* --------------------- /Section questions ---------------------- */
/* ---------------------- Section tech-info ---------------------- */
section.tech-info {
  padding-top: 20px;
}
section.tech-info .cols {
  display: flex;
  flex-wrap: wrap;
  margin: -7px;
}
section.tech-info .cols .col {
  background: #f6f8f9;
  padding: 30px;
  margin: 7px;
  flex-grow: 1;
  max-width: 50%;
}
section.tech-info .cols .col .title {
  font-family: "Assistant", sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: #1c1c1d;
  min-height: 28px;
}
section.tech-info .cols .col .line {
  font-family: "Assistant", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #1c1c1d;
  padding: 15px 0;
  border-bottom: 1px solid #e1e4e7;
}
section.tech-info .cols .col .line:last-child {
  border-bottom: none;
}
@media only screen and (max-width: 950px) {
  section.tech-info .cols .col {
    padding: 15px;
    max-width: 100%;
  }
}

/* --------------------- /Section tech-info ---------------------- */
div.tech-info {
  margin-top: 20px;
}
div.tech-info .title {
  font-family: "Assistant", sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: #003c22;
}
div.tech-info .cols {
  display: flex;
  flex-wrap: wrap;
  margin: -7px;
}
div.tech-info .cols .col {
  margin: 7px;
  flex-grow: 1;
  max-width: 50%;
}
div.tech-info .cols .col .line {
  font-family: "Assistant", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #003c22;
  padding: 15px 0;
}
@media only screen and (max-width: 950px) {
  div.tech-info .cols .col {
    max-width: 100%;
  }
}

.popup {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: 0.5s;
  visibility: hidden;
  opacity: 0;
  padding: 10px;
}
.popup.open {
  visibility: visible;
  opacity: 1;
}
.popup.open .container .inner {
  opacity: 1;
  transform: scale(1);
}
.popup .container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup .container .inner {
  background: #fff url("../images/inner/bgc.png") no-repeat left bottom;
  max-width: 960px;
  max-height: 90vh;
  width: 100%;
  margin: auto;
  padding: 75px;
  padding-bottom: 95px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: 0.5s;
  opacity: 0;
  transform: scale(0.8);
}
.popup .container .inner .close {
  position: absolute;
  right: 20px;
  top: 20px;
  height: 36px;
  width: 36px;
  background: #f6f8f9;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.popup .wpcf7 form {
  overflow: hidden;
}
.popup .wpcf7 form .wpcf7-spinner {
  position: absolute;
}
.popup .wpcf7 .fields {
  display: flex;
}
.popup .wpcf7 .fields .wpcf7-form-control-wrap {
  padding: 10px;
  position: relative;
  display: block;
  margin: 0;
}
.popup .wpcf7 .fields .wpcf7-form-control-wrap input {
  padding: 10px 0;
  height: auto;
}
.popup .wpcf7 .cont-radio {
  margin-top: 35px;
}
.popup .wpcf7 .cont-radio .title {
  font-family: "Assistant", sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: #1c1c1d;
}
.popup .wpcf7 .cont-radio .wpcf7-form-control-wrap {
  margin: 0;
}
.popup .wpcf7 .cont-radio .wpcf7-form-control {
  display: flex;
  margin: -5px;
  margin-top: 5px;
}
.popup .wpcf7 .cont-radio .wpcf7-form-control .wpcf7-list-item {
  flex: 1 0;
  padding: 5px;
  margin: 0;
}
.popup .wpcf7 .cont-radio .wpcf7-form-control input {
  width: auto;
  height: auto;
  display: none;
}
.popup
  .wpcf7
  .cont-radio
  .wpcf7-form-control
  input:checked
  ~ .wpcf7-list-item-label {
  background: #fbf7f3;
}
.popup .wpcf7 .cont-radio .wpcf7-form-control .wpcf7-list-item-label {
  display: block;
  font-family: "Assistant", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #1c1c1d;
  padding: 13px;
  background: #e9ecf0;
  border-radius: 5px;
  text-align: center;
  transition: 0.5s;
  cursor: pointer;
  white-space: nowrap;
}
.popup .wpcf7 .cont-submit {
  text-align: center;
  margin-top: 45px;
}
.popup .wpcf7 .cont-submit input[type="submit"] {
  background: #fbf7f3;
  width: auto;
  padding: 13px 25px;
  transition: 0.5s;
}
.popup .wpcf7 .cont-submit input[type="submit"]:hover {
  background: #27282a;
  color: #fff;
}
.popup .info {
  font-family: "Assistant", sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: #1c1c1d;
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
}
@media only screen and (max-width: 1370px) {
  .popup .container .inner {
    padding: 35px;
    padding-bottom: 75px;
  }
}
@media only screen and (max-width: 950px) {
  .popup .container .inner {
    padding: 15px;
    padding-bottom: 75px;
    background-size: 100px auto;
  }
  .popup .container .inner .close {
    right: 8px;
    top: 8px;
  }
  .popup .wpcf7 {
    margin-top: 13px;
  }
  .popup .wpcf7 .fields {
    flex-wrap: wrap;
  }
  .popup .wpcf7 .cont-radio {
    margin-top: 15px;
  }
  .popup .wpcf7 .cont-radio .wpcf7-form-control {
    flex-wrap: wrap;
  }
  .popup .wpcf7 .cont-radio .wpcf7-form-control .wpcf7-list-item-label {
    font-size: 16px;
    padding: 8px;
  }
}
.popup .info {
  font-size: 18px;
}

@-webkit-keyframes bubble {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes bubble {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.product-request-form .title {
  font-family: "Assistant", sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #003c22;
}

.product-request-form .subtitle {
  font-family: "Assistant", sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: #496d5b;
}

.product-request-form .form {
  margin-top: 35px;
}
.product-request-form .form .title {
  font-family: "Cinzel Decorative", "Assistant";
  font-weight: 700;
  font-size: 20px;
  color: #003c22;
}
.product-request-form .form .row {
  display: flex;
  align-items: center;
  margin: 0 -8px;
  flex-wrap: wrap;
}
.product-request-form .form .wrapper-input {
  flex: 1 0;
  padding: 8px;
  min-width: 150px;
}
.product-request-form .form .wrapper-input input {
  font-family: "Assistant", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #003c22;
  background: #fdfdfa;
  border: 1px solid #496d5b;
  padding: 10px;
  border-radius: 200px;
  width: 100%;
}
.product-request-form .form .wrapper-input input.invalid {
  border: 1px solid red;
}

.product-request-form .buttons {
  text-align: center;
}

.product-request-form .button-send-form {
  font-family: "Assistant", sans-serif;
  font-weight: 600;
  font-size: 21px;
  color: #fff;
  border-radius: 33.5px;
  background: #496d5b;
  border: 1px solid #d2d2d2;
  padding: 20px 25px;
  display: inline-block;
  transition: 0.5s;
  margin-top: 35px;
  cursor: pointer;
  position: relative;
  margin-left: 0;
  margin-right: auto;
}
.product-request-form .button-send-form:hover {
  background: #003c22;
  color: #fff;
}
.product-request-form .button-send-form.animate {
  -webkit-animation: bubble 1s forwards;
  animation: bubble 1s forwards;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.product-request-form .info {
  clear: both;
  text-align: center;
  margin-top: 35px;
  font-family: "Assistant", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #ffb2a5;
  display: none;
}

.product-request-form .tabs {
  margin-top: 35px;
}
.product-request-form .tabs .tab {
  margin-top: 7px;
}
.product-request-form .tabs .tab .tab-title {
  font-family: "Cinzel Decorative", "Assistant";
  font-weight: 700;
  font-size: 18px;
  color: #003c22;
  padding: 20px;
  background: #fdfdfa;
  position: relative;
  cursor: pointer;
}
.product-request-form .tabs .tab .tab-title:after {
  content: "";
  position: absolute;
  display: block;
  top: 25px;
  left: 25px;
  height: 15px;
  width: 15px;
  background: url("../images/icons/rd.svg") no-repeat;
  background-position: center center;
  transition: 0.5s;
  transform-origin: center;
  transform: rotate(180deg);
}
.product-request-form .tabs .tab .tab-content {
  padding: 25px 0;
  display: none;
  position: relative;
}
.product-request-form .tabs .tab .tab-content:after {
  content: "";
  position: absolute;
  display: block;
  top: 0px;
  bottom: 0px;
  left: 0;
  background-color: #fff;
  width: 1px;
}
.product-request-form .tabs .tab.active .tab-title:after {
  transform: rotate(0deg);
}
.product-request-form .tabs .tab .items {
  display: flex;
  flex-wrap: wrap;
}
.product-request-form .tabs .tab .items .item {
  flex: 0 1;
  padding: 15px;
  text-align: center;
  border: 4px solid transparent;
  transition: 0.5s;
  cursor: pointer;
  position: relative;
  padding-bottom: 25px;
}
.product-request-form .tabs .tab .items .item .icon {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-request-form .tabs .tab .items .item .text {
  font-family: "Assistant", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #000;
  white-space: nowrap;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.product-request-form .tabs .tab .items .item.active {
  border: 4px solid #fdebe8;
}
@media only screen and (max-width: 950px) {
  .product-request-form .tabs .tab .items .item {
    flex: 33.33% 1;
  }
}
.product-request-form .tabs .tab .group {
  flex: 0 1;
  padding: 15px;
  text-align: center;
  flex-grow: 1;
  position: relative;
}
.product-request-form .tabs .tab .group:after {
  content: "";
  position: absolute;
  display: block;
  top: 30px;
  bottom: 30px;
  left: 0;
  background-color: #d4d4d4;
  width: 1px;
}
.product-request-form .tabs .tab .group .group-title {
  width: 100%;
  text-align: center;
  font-family: "Assistant", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  height: 32px;
  color: #707070;
}
.product-request-form .tabs .tab .group .group-items {
  display: flex;
  justify-content: center;
}

@font-face {
  font-family: star;
  src: url(../../../../../plugins/woocommerce/assets/fonts/star.eot);
  src: url(../../../../../plugins/woocommerce/assets/fonts/star.eot?#iefix)
      format("embedded-opentype"),
    url(../../../../../plugins/woocommerce/assets/fonts/star.woff)
      format("woff"),
    url(../../../../../plugins/woocommerce/assets/fonts/star.ttf)
      format("truetype"),
    url(../../../../../plugins/woocommerce/assets/fonts/star.svg#star)
      format("svg");
  font-weight: 400;
  font-style: normal;
}

.price ins {
  font-weight: 400;
}

.woocommerce-active .site-header .col-full {
  position: relative;
}

.woocommerce-active .site-branding {
  float: right;
}

.site-header-cart {
  list-style-type: none;
  margin-right: 0;
  padding: 0;
  margin-bottom: 0;
}

.site-header-cart .cart-contents {
  display: none;
}

.site-header-cart .widget_shopping_cart {
  display: none;
}

.site-header-cart .widget_shopping_cart .woocommerce-mini-cart__empty-message {
  margin: 1.41575em;
}

.site-header-cart .widget_shopping_cart .product_list_widget img {
  margin-right: 1em;
}

.site-search {
  font-size: 0.875em;
  clear: both;
  display: none;
}

.site-search .widget_product_search input[type="search"],
.site-search .widget_product_search input[type="text"] {
  padding: 1em 1.41575em;
  line-height: 1;
}

.site-search .widget_product_search form:before {
  top: 1.15em;
  right: 1.15em;
}

.site-search .widget_product_search #searchsubmit {
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
}

.storefront-handheld-footer-bar {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.7);
  z-index: 9999;
}

.storefront-handheld-footer-bar:after,
.storefront-handheld-footer-bar:before {
  content: "";
  display: table;
}

.storefront-handheld-footer-bar:after {
  clear: both;
}

.storefront-handheld-footer-bar ul {
  margin: 0;
}

.storefront-handheld-footer-bar ul li {
  display: inline-block;
  float: right;
  text-align: center;
}

.storefront-handheld-footer-bar ul li:last-child > a {
  border-left: 0;
}

.storefront-handheld-footer-bar ul li > a {
  height: 4.235801032em;
  display: block;
  position: relative;
  text-indent: -9999px;
  z-index: 999;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.storefront-handheld-footer-bar ul li > a:active,
.storefront-handheld-footer-bar ul li > a:focus {
  outline: 0;
}

.storefront-handheld-footer-bar ul li.search .site-search {
  position: absolute;
  bottom: -2em;
  right: 0;
  left: 0;
  transition: all, ease, 0.2s;
  padding: 1em;
  z-index: 1;
  display: block;
}

.storefront-handheld-footer-bar ul li.search.active .site-search {
  bottom: 100%;
}

.storefront-handheld-footer-bar ul li.search .site-search,
.storefront-handheld-footer-bar ul li.search .widget,
.storefront-handheld-footer-bar ul li.search form {
  margin-bottom: 0;
}

.storefront-handheld-footer-bar ul li.cart .count {
  text-indent: 0;
  display: block;
  width: 2em;
  height: 2em;
  line-height: 2;
  box-sizing: content-box;
  font-size: 0.75em;
  position: absolute;
  top: 0.875em;
  right: 50%;
  border-radius: 100%;
  border: 1px solid;
}

.storefront-handheld-footer-bar ul.columns-1 li {
  width: 100%;
  display: block;
  float: none;
}

.storefront-handheld-footer-bar ul.columns-2 li {
  width: 50%;
}

.storefront-handheld-footer-bar ul.columns-3 li {
  width: 33.33333%;
}

.storefront-handheld-footer-bar ul.columns-4 li {
  width: 25%;
}

.storefront-handheld-footer-bar ul.columns-5 li {
  width: 20%;
}

table.shop_table_responsive thead {
  display: none;
}

table.shop_table_responsive tbody th {
  display: none;
}

table.shop_table_responsive tr td {
  display: block;
  text-align: left;
  clear: both;
}

table.shop_table_responsive tr td:before {
  content: attr(data-title) ": ";
  font-weight: 600;
  float: right;
}

table.shop_table_responsive tr td.product-remove a {
  text-align: right;
}

table.shop_table_responsive tr td.product-remove:before {
  display: none;
}

table.shop_table_responsive tr td.actions:before,
table.shop_table_responsive tr td.download-actions:before {
  display: none;
}

table.shop_table_responsive tr td.download-actions .button {
  display: block;
  text-align: center;
}

table.shop_table_responsive.my_account_orders .order-actions {
  text-align: left;
}

table.shop_table_responsive.my_account_orders .order-actions:before {
  display: none;
}

ul.products {
  margin-right: 0;
  margin-bottom: 0;
  clear: both;
}

ul.products:after,
ul.products:before {
  content: "";
  display: table;
}

ul.products:after {
  clear: both;
}

ul.products li.product {
  list-style: none;
  margin-right: 0;
  margin-bottom: 4.235801032em;
  text-align: center;
  position: relative;
}

ul.products li.product .star-rating {
  margin: 0 auto 0.5407911001em;
}

ul.products li.product .woocommerce-LoopProduct-link {
  display: block;
}

ul.products li.product .price {
  display: block;
  color: #43454b;
  font-weight: 400;
  margin-bottom: 1rem;
}

ul.products li.product .price ins {
  margin-right: 0.6180469716em;
  background-color: transparent;
}

ul.products li.product .woocommerce-loop-product__title,
ul.products li.product h2,
ul.products li.product h3 {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.5407911001em;
}

ul.products li.product .star-rating {
  font-size: 0.875em;
}

ul.products li.product img {
  display: block;
  margin: 0 auto 1.618em;
}

ul.products li.product.product-category .woocommerce-loop-category__title,
ul.products li.product.product-category h2,
ul.products li.product.product-category h3 {
  font-size: 1.1em;
}

ul.products li.product.product-category img {
  margin-bottom: 1.618em;
}

ul.products li.product .button {
  margin-bottom: 0.236em;
}

.price del {
  opacity: 0.5;
  font-weight: 400;
}

.price del + ins {
  margin-right: 0.327em;
}

.single-product .pswp__button {
  background-color: transparent;
}

.single-product div.product {
  position: relative;
  overflow: hidden;
}

.single-product div.product:after,
.single-product div.product:before {
  content: "";
  display: table;
}

.single-product div.product:after {
  clear: both;
}

.single-product div.product .images,
.single-product div.product .summary,
.single-product div.product .woocommerce-product-gallery {
  margin-bottom: 2.617924em;
  margin-top: 0;
}

.single-product div.product .woocommerce-product-gallery {
  position: relative;
}

.single-product div.product .woocommerce-product-gallery .zoomImg {
  background-color: #fff;
}

.single-product
  div.product
  .woocommerce-product-gallery
  .woocommerce-product-gallery__trigger {
  position: absolute;
  top: 0.875em;
  left: 0.875em;
  display: block;
  height: 2em;
  width: 2em;
  border-radius: 3px;
  z-index: 99;
  text-align: center;
}

.single-product div.product .woocommerce-product-gallery img {
  margin: 0;
}

.single-product div.product .woocommerce-product-gallery .flex-viewport {
  margin-bottom: 1.618em;
}

.single-product
  div.product
  .woocommerce-product-gallery
  .woocommerce-product-gallery__wrapper
  .woocommerce-product-gallery__image:not(:only-child):not(.flex-active-slide) {
  margin-right: 1px;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs {
  margin: 0;
  padding: 0;
}

.single-product
  div.product
  .woocommerce-product-gallery
  .flex-control-thumbs:after,
.single-product
  div.product
  .woocommerce-product-gallery
  .flex-control-thumbs:before {
  content: "";
  display: table;
}

.single-product
  div.product
  .woocommerce-product-gallery
  .flex-control-thumbs:after {
  clear: both;
}

.single-product
  div.product
  .woocommerce-product-gallery
  .flex-control-thumbs
  li {
  list-style: none;
  margin-bottom: 1.618em;
  cursor: pointer;
}

.single-product
  div.product
  .woocommerce-product-gallery
  .flex-control-thumbs
  li
  img {
  opacity: 0.5;
  transition: all, ease, 0.2s;
}

.single-product
  div.product
  .woocommerce-product-gallery
  .flex-control-thumbs
  li
  img.flex-active {
  opacity: 1;
}

.single-product
  div.product
  .woocommerce-product-gallery
  .flex-control-thumbs
  li:hover
  img {
  opacity: 1;
}

.single-product
  div.product
  .woocommerce-product-gallery.woocommerce-product-gallery--columns-2
  .flex-control-thumbs
  li {
  width: 42.8571428571%;
  float: right;
  margin-left: 14.2857142857%;
}

.single-product
  div.product
  .woocommerce-product-gallery.woocommerce-product-gallery--columns-2
  .flex-control-thumbs
  li:nth-child(2n) {
  margin-left: 0;
}

.single-product
  div.product
  .woocommerce-product-gallery.woocommerce-product-gallery--columns-2
  .flex-control-thumbs
  li:nth-child(2n + 1) {
  clear: both;
}

.single-product
  div.product
  .woocommerce-product-gallery.woocommerce-product-gallery--columns-3
  .flex-control-thumbs
  li {
  width: 23.8095238%;
  float: right;
  margin-left: 14.2857142857%;
}

.single-product
  div.product
  .woocommerce-product-gallery.woocommerce-product-gallery--columns-3
  .flex-control-thumbs
  li:nth-child(3n) {
  margin-left: 0;
}

.single-product
  div.product
  .woocommerce-product-gallery.woocommerce-product-gallery--columns-3
  .flex-control-thumbs
  li:nth-child(3n + 1) {
  clear: both;
}

.single-product
  div.product
  .woocommerce-product-gallery.woocommerce-product-gallery--columns-4
  .flex-control-thumbs
  li {
  width: 14.2857142857%;
  float: right;
  margin-left: 14.2857142857%;
}

.single-product
  div.product
  .woocommerce-product-gallery.woocommerce-product-gallery--columns-4
  .flex-control-thumbs
  li:nth-child(4n) {
  margin-left: 0;
}

.single-product
  div.product
  .woocommerce-product-gallery.woocommerce-product-gallery--columns-4
  .flex-control-thumbs
  li:nth-child(4n + 1) {
  clear: both;
}

.single-product
  div.product
  .woocommerce-product-gallery.woocommerce-product-gallery--columns-5
  .flex-control-thumbs
  li {
  width: 8.5714285714%;
  float: right;
  margin-left: 14.2857142857%;
}

.single-product
  div.product
  .woocommerce-product-gallery.woocommerce-product-gallery--columns-5
  .flex-control-thumbs
  li:nth-child(5n) {
  margin-left: 0;
}

.single-product
  div.product
  .woocommerce-product-gallery.woocommerce-product-gallery--columns-5
  .flex-control-thumbs
  li:nth-child(5n + 1) {
  clear: both;
}

.single-product div.product .images .woocommerce-main-image {
  margin-bottom: 1.618em;
  display: block;
}

.single-product div.product .images .thumbnails a.zoom {
  display: block;
  width: 22.05%;
  margin-left: 3.8%;
  float: right;
  margin-bottom: 1em;
}

.single-product div.product .images .thumbnails a.zoom.last {
  margin-left: 0;
}

.single-product div.product .images .thumbnails a.zoom.first {
  clear: both;
}

.single-product div.product form.cart {
  margin-bottom: 1.618em;
  padding: 1em 0;
}

.single-product div.product form.cart:after,
.single-product div.product form.cart:before {
  content: "";
  display: table;
}

.single-product div.product form.cart:after {
  clear: both;
}

.single-product div.product form.cart .quantity {
  float: right;
  margin-left: 0.875em;
}

.single-product
  div.product
  form.cart
  table.woocommerce-grouped-product-list
  .woocommerce-grouped-product-list-item__quantity {
  float: none;
  margin-left: 0;
}

.single-product
  div.product
  form.cart
  table.woocommerce-grouped-product-list
  .woocommerce-grouped-product-list-item__quantity
  .quantity {
  margin-left: 0;
}

.single-product div.product p.price {
  font-size: 1.41575em;
  margin: 1.41575em 0;
}

.single-product div.product table.variations {
  margin: 0;
}

.single-product div.product table.variations td,
.single-product div.product table.variations th {
  display: list-item;
  padding: 0;
  list-style: none;
  background-color: transparent;
}

.single-product div.product table.variations .value {
  margin-bottom: 1em;
}

.single-product div.product .single_variation .price {
  margin-bottom: 1em;
  display: block;
}

.single-product div.product .variations_button {
  padding-top: 1em;
}

.single-product div.product .variations_button:after,
.single-product div.product .variations_button:before {
  content: "";
  display: table;
}

.single-product div.product .variations_button:after {
  clear: both;
}

.single-product div.product .woocommerce-product-rating {
  margin-bottom: 1.618em;
  margin-top: -0.875em;
}

.single-product div.product .woocommerce-product-rating:after,
.single-product div.product .woocommerce-product-rating:before {
  content: "";
  display: table;
}

.single-product div.product .woocommerce-product-rating:after {
  clear: both;
}

.single-product div.product .woocommerce-product-rating a {
  font-weight: 600;
  text-decoration: underline;
}

.single-product div.product .woocommerce-product-rating a:hover {
  text-decoration: none;
}

.single-product div.product .woocommerce-product-rating .star-rating {
  float: right;
  margin-left: 0.6180469716em;
}

.single-product div.product .product_meta {
  font-size: 0.875em;
  padding-top: 1em;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.single-product div.product .product_meta .posted_in,
.single-product div.product .product_meta .sku_wrapper,
.single-product div.product .product_meta .tagged_as {
  display: block;
}

.single-product div.product .product_meta .posted_in:last-child,
.single-product div.product .product_meta .sku_wrapper:last-child,
.single-product div.product .product_meta .tagged_as:last-child {
  border-bottom: 0;
}

.single-product div.product .product_meta a {
  font-weight: 600;
  text-decoration: underline;
}

.single-product div.product .product_meta a:hover {
  text-decoration: none;
}

.stock:empty:before {
  display: none;
}

.stock.in-stock {
  color: #eb9c3b;
}

.stock.out-of-stock {
  color: #e2401c;
}

a.reset_variations {
  display: inline-block;
  margin-right: 1em;
}

#reviews {
  outline: 0;
}

#reviews #comments {
  padding-top: 0;
}

#reviews .comment-reply-title {
  display: none;
}

#reviews .commentlist {
  list-style: none;
  margin-right: 0;
}

#reviews .commentlist li {
  margin-bottom: 2.617924em;
  list-style: none;
  clear: both;
}

#reviews .commentlist li:after,
#reviews .commentlist li:before {
  content: "";
  display: table;
}

#reviews .commentlist li:after {
  clear: both;
}

#reviews .commentlist li .comment_container {
  border-radius: 3px;
}

#reviews .commentlist li .comment_container:after,
#reviews .commentlist li .comment_container:before {
  content: "";
  display: table;
}

#reviews .commentlist li .comment_container:after {
  clear: both;
}

#reviews .commentlist li .comment_container .comment-text {
  width: 81.8181818182%;
  float: left;
  margin-left: 0;
}

#reviews .commentlist li .comment_container .comment-text .star-rating {
  float: left;
  font-size: 0.875em;
  line-height: 1;
  height: 1em;
}

#reviews .commentlist li:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}

#reviews .commentlist li time {
  opacity: 0.5;
  font-size: 0.875em;
}

#reviews .commentlist li .avatar {
  width: 9.0909090909%;
  float: right;
  margin-left: 9.0909090909%;
  height: auto;
}

#reviews .commentlist li p.meta {
  margin-bottom: 1em;
}

#reviews .commentlist li p.meta strong {
  line-height: 1;
}

#reviews .commentlist li p.meta time {
  display: block;
}

#reviews .commentlist li p.meta .verified {
  font-style: normal;
  font-size: 0.875em;
}

#reviews .commentlist li p.meta .woocommerce-review__dash {
  display: none;
}

#reviews .commentlist li ul.children {
  margin: 0;
  width: 81.8181818182%;
  float: left;
  margin-left: 0;
  padding-top: 1.618em;
}

#reviews .commentlist li ul.children .avatar {
  width: 11.1111111111%;
  float: right;
  margin-left: 11.1111111111%;
}

#reviews .commentlist li ul.children .comment-text {
  width: 77.7777777778%;
  float: left;
  margin-left: 0;
}

#reviews .commentlist li ul.children li {
  margin-bottom: 1.618em;
}

#reviews .commentlist li ul.children li:last-child {
  margin-bottom: 0;
}

#reviews .comment-form-rating {
  clear: both;
}

#reviews .comment-form-rating label {
  display: block;
}

.woocommerce-breadcrumb {
  margin-right: -1.387rem;
  margin-left: -1.387rem;
  margin-bottom: 1.618em;
  font-size: 0.875em;
  padding: 1em 1.387rem;
}

.woocommerce-breadcrumb .breadcrumb-separator {
  display: inline-block;
  padding: 0 0.5407911001em;
}

.product_list_widget {
  list-style: none;
  margin-right: 0;
}

.product_list_widget li {
  padding: 1em 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.product_list_widget li:after,
.product_list_widget li:before {
  content: "";
  display: table;
}

.product_list_widget li:after {
  clear: both;
}

.product_list_widget li img {
  max-width: 2.617924em;
  float: left;
}

.product_list_widget li > a {
  display: block;
}

.product_list_widget a:hover {
  color: #2c2d33;
}

.widget ul.products li.product a {
  text-decoration: none;
}

.widget_products a {
  display: block;
}

.widget_shopping_cart .product_list_widget {
  margin-bottom: 0;
}

.widget_shopping_cart .product_list_widget li {
  padding-right: 2em;
  position: relative;
}

.widget_shopping_cart .product_list_widget li a.remove {
  position: absolute;
  top: 1em;
  right: 0;
  opacity: 1;
}

.widget_shopping_cart p.buttons,
.widget_shopping_cart p.total {
  padding: 1em 0;
  margin: 0;
  text-align: center;
}

.widget_shopping_cart p.total {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.widget_shopping_cart .buttons .button {
  display: block;
}

.widget_shopping_cart .buttons .button:nth-child(odd) {
  margin-bottom: 0.6180469716em;
}

.site-header .widget_shopping_cart li,
.site-header .widget_shopping_cart p.buttons,
.site-header .widget_shopping_cart p.total {
  padding-right: 1.41575em;
  padding-left: 1.41575em;
}

.widget_layered_nav li {
  margin-bottom: 0.6180469716em;
}

.widget.woocommerce li .count {
  font-size: 1em;
  float: left;
}

.widget_price_filter .price_slider {
  margin-bottom: 1em;
}

.widget_price_filter .price_slider_amount {
  text-align: left;
  line-height: 2.4em;
}

.widget_price_filter .price_slider_amount .button {
  float: right;
}

.widget_price_filter .ui-slider {
  position: relative;
  text-align: right;
}

.widget_price_filter .ui-slider .ui-slider-handle {
  position: absolute;
  top: auto;
  z-index: 2;
  width: 1em;
  height: 1em;
  border-top-right-radius: 1em;
  border-top-left-radius: 1em;
  border-bottom-right-radius: 1em;
  border-bottom-left-radius: 1em;
  cursor: ew-resize;
  outline: 0;
  background: #2c2d33;
  box-sizing: border-box;
  margin-top: -0.25em;
  margin-right: auto;
  opacity: 1;
  border: 0;
}

.widget_price_filter .ui-slider .ui-slider-handle:last-child {
  margin-right: -1em;
}

.widget_price_filter .ui-slider .ui-slider-handle.ui-state-active,
.widget_price_filter .ui-slider .ui-slider-handle:hover {
  box-shadow: 0 0 0 0.236em rgba(0, 0, 0, 0.1);
}

.widget_price_filter .ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: 0.7em;
  display: block;
  border: 0;
  background: #2c2d33;
  border-top-right-radius: 1em;
  border-top-left-radius: 1em;
  border-bottom-right-radius: 1em;
  border-bottom-left-radius: 1em;
}

.widget_price_filter .price_slider_wrapper .ui-widget-content {
  border-top-right-radius: 1em;
  border-top-left-radius: 1em;
  border-bottom-right-radius: 1em;
  border-bottom-left-radius: 1em;
  background: rgba(0, 0, 0, 0.1);
  border: 0;
}

.widget_price_filter .ui-slider-horizontal {
  height: 0.5em;
}

.widget_price_filter .ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
}

.widget_price_filter .ui-slider-horizontal .ui-slider-range-min {
  right: -1px;
}

.widget_price_filter .ui-slider-horizontal .ui-slider-range-max {
  left: -1px;
}

table.cart {
  margin-bottom: 3.706325903em;
}

table.cart .product-quantity .minus,
table.cart .product-quantity .plus {
  display: none;
}

table.cart .product-thumbnail img {
  margin: 0 auto;
  max-width: 150px;
  height: auto;
}

table.cart .product-thumbnail:before {
  display: none;
}

table.cart tr:first-child td.product-remove {
  border-top-width: 0;
}

table.cart td.product-remove {
  padding: 0;
  border-top: 1.618em solid;
  position: relative;
}

table.cart td.product-remove:after,
table.cart td.product-remove:before {
  content: "";
  display: table;
}

table.cart td.product-remove:after {
  clear: both;
}

table.cart td.product-remove a.remove {
  position: absolute;
  font-size: 1.41575em;
  top: -0.6180469716em;
  left: -0.6180469716em;
}

table.cart td.product-quantity .qty {
  padding: 0.326em;
  width: 3.706325903em;
}

table.cart td,
table.cart th {
  padding: 0.875em 0.875em 0;
}

table.cart td.product-subtotal {
  padding-bottom: 0.875em;
}

table.cart td.actions {
  border-top: 1em solid;
  background-color: transparent;
  padding: 0;
}

table.cart td.actions label {
  display: none;
}

table.cart td.actions .coupon {
  padding-bottom: 1em;
  margin-bottom: 1em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

table.cart td.actions input {
  display: block;
  width: 100%;
  margin: 0.5407911001em 0;
}

table.cart td.actions input[name="update_cart"]:focus {
  outline: 0;
}

.wc-proceed-to-checkout {
  margin-bottom: 1.618em;
}

.wc-proceed-to-checkout:after,
.wc-proceed-to-checkout:before {
  content: "";
  display: table;
}

.wc-proceed-to-checkout:after {
  clear: both;
}

.wc-proceed-to-checkout .button {
  display: block;
  text-align: center;
  margin-bottom: 1em;
}

.wc-proceed-to-checkout .button.checkout-button {
  font-size: 1.41575em;
}

.woocommerce-shipping-calculator {
  margin: 0;
}

.woocommerce-shipping-calculator > p:first-child {
  margin: 0;
}

.woocommerce-shipping-calculator .shipping-calculator-form {
  padding-top: 1.41575em;
}

ul#shipping_method {
  list-style: none;
  margin-right: 0;
}

ul#shipping_method li {
  margin-bottom: 0.2360828548em;
}

ul#shipping_method li:last-child {
  margin-bottom: 0;
}

ul#shipping_method input {
  margin-left: 0.3342343017em;
}

.woocommerce-checkout ul#shipping_method {
  margin-bottom: 0;
}

.checkout_coupon {
  margin-bottom: 2.617924em;
}

form.checkout {
  position: static !important;
}

form.checkout:after,
form.checkout:before {
  content: "";
  display: table;
}

form.checkout:after {
  clear: both;
}

form.checkout > .blockUI {
  position: fixed !important;
}

#payment:after,
#payment:before {
  content: "";
  display: table;
}

#payment:after {
  clear: both;
}

#payment .create-account {
  clear: both;
}

#payment .payment_methods {
  margin: 0 !important;
  padding: 0 !important;
}

#payment .payment_methods > .wc_payment_method > label,
#payment .payment_methods > .woocommerce-PaymentMethod > label {
  display: block;
  padding: 1.41575em;
  cursor: pointer;
}

#payment .payment_methods li {
  list-style: none !important;
  margin-right: 0;
  position: relative;
}

#payment .payment_methods li img {
  float: left;
  border: 0;
  padding: 0;
  max-height: 1.618em;
}

#payment .payment_methods li:last-child:not(.woocommerce-notice) {
  padding-bottom: 0;
  border-bottom: 0;
}

#payment .payment_methods li p {
  margin: 0;
}

#payment .payment_methods li .payment_box {
  padding: 1.41575em;
}

#payment .payment_methods li .payment_box fieldset {
  border: 0;
  margin: 0;
  padding: 1em 0 0 0;
  font-size: 0.875em;
}

#payment .payment_methods li .payment_box fieldset label {
  width: auto;
  margin-right: 0;
}

#payment .payment_methods li .payment_box fieldset .form-row {
  margin-bottom: 1em;
}

#payment
  .payment_methods
  li
  .payment_box
  fieldset
  .form-row
  input[type="checkbox"] {
  margin-left: 5px;
}

#payment .payment_methods li .payment_box fieldset #cvv {
  width: 22% !important;
}

#payment .payment_methods li .payment_box fieldset .help {
  width: 75%;
  float: left;
}

#payment .payment_methods li .payment_box .woocommerce-SavedPaymentMethods {
  padding-top: 1em;
  margin: 0;
}

#payment .payment_methods li .payment_box .woocommerce-SavedPaymentMethods li {
  margin-top: 0.6180469716em;
}

#payment
  .payment_methods
  li
  .payment_box
  .woocommerce-SavedPaymentMethods
  li
  input[type="radio"] {
  margin-left: 0.236em;
}

#payment .payment_methods li .payment_box ul.wc-saved-payment-methods {
  margin-right: 0;
}

#payment .payment_methods li .payment_box .wc-credit-card-form-card-cvc,
#payment .payment_methods li .payment_box .wc-credit-card-form-card-expiry,
#payment .payment_methods li .payment_box .wc-credit-card-form-card-number {
  font-size: 1.41575em;
}

#payment .payment_methods li .payment_box .wc-credit-card-form-card-number {
  background-repeat: no-repeat;
  background-position: left 0.6180469716em center;
  background-size: 31px 20px;
  background-image: url(../../../assets/images/credit-cards/unknown.svg);
}

#payment
  .payment_methods
  li
  .payment_box
  .wc-credit-card-form-card-number.visa {
  background-image: url(../../../assets/images/credit-cards/visa.svg);
}

#payment
  .payment_methods
  li
  .payment_box
  .wc-credit-card-form-card-number.mastercard {
  background-image: url(../../../assets/images/credit-cards/mastercard.svg);
}

#payment
  .payment_methods
  li
  .payment_box
  .wc-credit-card-form-card-number.laser {
  background-image: url(../../../assets/images/credit-cards/laser.svg);
}

#payment
  .payment_methods
  li
  .payment_box
  .wc-credit-card-form-card-number.dinersclub {
  background-image: url(../../../assets/images/credit-cards/diners.svg);
}

#payment
  .payment_methods
  li
  .payment_box
  .wc-credit-card-form-card-number.maestro {
  background-image: url(../../../assets/images/credit-cards/maestro.svg);
}

#payment .payment_methods li .payment_box .wc-credit-card-form-card-number.jcb {
  background-image: url(../../../assets/images/credit-cards/jcb.svg);
}

#payment
  .payment_methods
  li
  .payment_box
  .wc-credit-card-form-card-number.amex {
  background-image: url(../../../assets/images/credit-cards/amex.svg);
}

#payment
  .payment_methods
  li
  .payment_box
  .wc-credit-card-form-card-number.discover {
  background-image: url(../../../assets/images/credit-cards/discover.svg);
}

#payment .terms {
  width: 100%;
  clear: both;
  float: none;
  margin-bottom: 0;
  margin-bottom: 1em;
}

#payment .terms label {
  display: block;
  cursor: pointer;
}

#payment .woocommerce-terms-and-conditions {
  padding: 1em;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
  margin-bottom: 16px;
  background-color: rgba(0, 0, 0, 0.05);
}

#payment .place-order {
  padding: 1.41575em;
  margin-bottom: 0;
  float: none;
  width: 100%;
  margin-top: 2.617924em;
}

#payment .place-order .button {
  font-size: 1.41575em;
  width: 100%;
  white-space: pre-wrap;
}

table.woocommerce-checkout-review-order-table .product-name {
  width: 300px;
  word-wrap: break-word;
}

.admin-bar .woocommerce-checkout #wc_checkout_add_ons label + br {
  display: none;
}

.woocommerce-password-strength {
  text-align: right;
  font-weight: 600;
  padding: 0.5407911001em 0;
  text-align: left;
  font-size: 0.875em;
}

.woocommerce-password-strength.strong {
  color: #eb9c3b;
}

.woocommerce-password-strength.short {
  color: #e2401c;
}

.woocommerce-password-strength.bad {
  color: #e2401c;
}

.woocommerce-password-strength.good {
  color: #3d9cd2;
}

label.inline {
  display: inline !important;
  margin-right: 1em;
}

.woocommerce-MyAccount-navigation ul {
  margin-right: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.woocommerce-MyAccount-navigation ul li {
  list-style: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.woocommerce-MyAccount-navigation ul li a {
  padding: 0.875em 0;
  display: block;
}

ul.order_details {
  list-style: none;
  position: relative;
  margin: 3.706325903em 0;
}

ul.order_details:after,
ul.order_details:before {
  content: "";
  display: table;
}

ul.order_details:after {
  clear: both;
}

ul.order_details:after,
ul.order_details:before {
  content: "";
  display: block;
  position: absolute;
  top: -16px;
  right: 0;
  width: 100%;
  height: 16px;
  background-size: 0 100%, 16px 16px, 16px 16px;
}

ul.order_details:after {
  top: auto;
  bottom: -16px;
  transform: rotate(-180deg);
}

ul.order_details li {
  padding: 1em 1.618em;
  font-size: 0.8em;
  text-transform: uppercase;
}

ul.order_details li:first-child {
  padding-top: 1.618em;
}

ul.order_details li:last-child {
  border: 0;
  padding-bottom: 1.618em;
}

ul.order_details li strong {
  display: block;
  font-size: 1.41575em;
  text-transform: none;
}

.my_account_orders .button,
.woocommerce-MyAccount-downloads .button {
  padding: 0.6180469716em 0.875em;
  font-size: 0.875em;
  margin-left: 0.236em;
}

.woocommerce-MyAccount-content h2 {
  font-size: 2em;
  font-weight: 600;
}

.woocommerce-MyAccount-content #payment .payment_methods {
  margin-bottom: 1.618em !important;
}

.woocommerce-form__label-for-checkbox {
  cursor: pointer;
  display: block;
}

.woocommerce-form__label-for-checkbox .woocommerce-form__input-checkbox {
  margin-left: 0.3342343017em;
}

.form-row label {
  display: block;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
}

.form-row input[type="checkbox"],
.form-row input[type="radio"] {
  width: auto;
}

.form-row .button {
  width: auto;
}

.form-row.create-account label {
  display: inline-block;
}

.form-row.woocommerce-validated input.input-text {
  box-shadow: inset -2px 0 0 #eb9c3b;
}

.form-row.woocommerce-invalid input.input-text {
  box-shadow: inset -2px 0 0 #e2401c;
}

.form-row-last {
  margin-left: 0 !important;
}

.form-row-wide {
  clear: both;
  width: 100%;
}

.required {
  border-bottom: 0 !important;
  color: red;
}

.demo_store {
  position: fixed;
  right: 0;
  bottom: 69px;
  left: 0;
  margin: 0;
  padding: 1em 1.41575em;
  background-color: #3d9cd2;
  color: #fff;
  z-index: 9999;
}

.demo_store a {
  color: #fff;
  font-weight: 400;
  text-decoration: underline;
}

.demo_store a:hover {
  text-decoration: none;
}

.demo_store a.woocommerce-store-notice__dismiss-link {
  display: block;
}

.star-rating {
  overflow: hidden;
  position: relative;
  height: 1.618em;
  line-height: 1.618;
  font-size: 1em;
  width: 5.3em;
  font-family: star;
  font-weight: 400;
}

.star-rating:before {
  content: "\53\53\53\53\53";
  opacity: 0.25;
  float: right;
  top: 0;
  right: 0;
  position: absolute;
}

.star-rating span {
  overflow: hidden;
  float: right;
  top: 0;
  right: 0;
  position: absolute;
  padding-top: 1.5em;
}

.star-rating span:before {
  content: "\53\53\53\53\53";
  top: 0;
  position: absolute;
  right: 0;
  color: #2c2d33;
}

p.stars {
  display: inline-block;
  margin: 0;
}

p.stars a {
  position: relative;
  height: 1em;
  width: 1em;
  text-indent: -999em;
  display: inline-block;
  text-decoration: none;
  margin-left: 1px;
  font-weight: 400;
}

p.stars a:before {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 1em;
  height: 1em;
  line-height: 1;
  font-family: star;
  content: "\53";
  color: #43454b;
  text-indent: 0;
  opacity: 0.25;
}

p.stars a:hover ~ a:before {
  content: "\53";
  color: #43454b;
  opacity: 0.25;
}

p.stars:hover a:before {
  content: "\53";
  color: #96588a;
  opacity: 1;
}

p.stars.selected a.active:before {
  content: "\53";
  color: #96588a;
  opacity: 1;
}

p.stars.selected a.active ~ a:before {
  content: "\53";
  color: #43454b;
  opacity: 0.25;
}

p.stars.selected a:not(.active):before {
  content: "\53";
  color: #96588a;
  opacity: 1;
}

.onsale {
  border: 1px solid;
  border-color: #43454b;
  color: #43454b;
  padding: 0.202em 0.6180469716em;
  font-size: 0.875em;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1em;
  border-radius: 3px;
}

.quantity .qty {
  width: 4.235801032em;
  text-align: center;
}

.storefront-sorting {
  font-size: 0.875em;
  margin-bottom: 2.617924em;
}

.woocommerce-tabs {
  overflow: hidden;
  padding: 1em 0;
}

.woocommerce-tabs:after,
.woocommerce-tabs:before {
  content: "";
  display: table;
}

.woocommerce-tabs:after {
  clear: both;
}

.woocommerce-tabs ul.tabs {
  list-style: none;
  margin-right: 0;
  text-align: right;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.woocommerce-tabs ul.tabs li {
  display: block;
  margin: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.woocommerce-tabs ul.tabs li a {
  padding: 1em 0;
  display: block;
}

.woocommerce-tabs .panel h2:first-of-type {
  font-size: 1.618em;
  margin-bottom: 1em;
}

.related > h2:first-child,
.upsells > h2:first-child {
  font-size: 1.618em;
  margin-bottom: 1em;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message,
.woocommerce-noreviews,
p.no-comments {
  padding: 1em 1.618em;
  margin-bottom: 2.617924em;
  background-color: #eb9c3b;
  margin-right: 0;
  border-radius: 2px;
  color: #fff;
  clear: both;
  /* border-right: 0.61805em solid rgba(0, 0, 0, 0.15);  */
}

.woocommerce-error:after,
.woocommerce-error:before,
.woocommerce-info:after,
.woocommerce-info:before,
.woocommerce-message:after,
.woocommerce-message:before,
.woocommerce-noreviews:after,
.woocommerce-noreviews:before,
p.no-comments:after,
p.no-comments:before {
  content: "";
  display: table;
}

.woocommerce-error:after,
.woocommerce-info:after,
.woocommerce-message:after,
.woocommerce-noreviews:after,
p.no-comments:after {
  clear: both;
}

.woocommerce-error a,
.woocommerce-info a,
.woocommerce-message a,
.woocommerce-noreviews a,
p.no-comments a {
  color: #fff;
}

.woocommerce-error a:hover,
.woocommerce-info a:hover,
.woocommerce-message a:hover,
.woocommerce-noreviews a:hover,
p.no-comments a:hover {
  color: #fff;
  opacity: 0.7;
}

.woocommerce-error a.button:hover,
.woocommerce-info a.button:hover,
.woocommerce-message a.button:hover,
.woocommerce-noreviews a.button:hover,
p.no-comments a.button:hover {
  opacity: 1;
}

.woocommerce-error .button,
.woocommerce-info .button,
.woocommerce-message .button,
.woocommerce-noreviews .button,
p.no-comments .button {
  float: left;
  padding: 0;
  background: 100% 0;
  color: #fff;
  box-shadow: none;
  line-height: 1.618;
  padding-right: 1em;
  border-width: 0;
  border-right-width: 1px;
  border-right-style: solid;
  border-right-color: rgba(255, 255, 255, 0.25) !important;
  border-radius: 0;
}

.woocommerce-error .button:hover,
.woocommerce-info .button:hover,
.woocommerce-message .button:hover,
.woocommerce-noreviews .button:hover,
p.no-comments .button:hover {
  background: 100% 0;
  color: #fff;
  opacity: 0.7;
}

.woocommerce-error pre,
.woocommerce-info pre,
.woocommerce-message pre,
.woocommerce-noreviews pre,
p.no-comments pre {
  background-color: rgba(0, 0, 0, 0.1);
}

.site-content > .col-full > .woocommerce > .woocommerce-error:first-child,
.site-content > .col-full > .woocommerce > .woocommerce-info:first-child,
.site-content > .col-full > .woocommerce > .woocommerce-message:first-child {
  margin-top: 2.617924em;
}

.woocommerce-error {
  list-style: none;
}

.woocommerce-info,
.woocommerce-noreviews,
p.no-comments {
  background-color: #3d9cd2;
}

.woocommerce-error {
  background-color: #e2401c;
}

dl.variation {
  font-size: 0.875em;
}

dl.variation dd {
  margin: 0 0 1em;
}

.wc-item-meta {
  font-size: 0.875em;
  margin-right: 0;
  list-style: none;
}

.wc-item-meta li:after,
.wc-item-meta li:before {
  content: "";
  display: table;
}

.wc-item-meta li:after {
  clear: both;
}

.wc-item-meta li p,
.wc-item-meta li strong {
  display: inline-block;
}

.woocommerce-MyAccount-content .woocommerce-Pagination {
  text-align: center;
}

.storefront-product-section {
  margin-bottom: 1.618em;
}

.storefront-product-section .section-title {
  text-align: center;
  margin-bottom: 1em;
}

.storefront-product-section:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .demo_store {
    bottom: 0;
  }
  .demo_store a.woocommerce-store-notice__dismiss-link {
    background: rgba(0, 0, 0, 0.1);
    float: left;
    display: inline-block;
    margin: -1em 0 -1em -1.41575em;
    padding: 1em 1.41575em;
  }
  .storefront-handheld-footer-bar {
    display: none;
  }
  .woocommerce-breadcrumb {
    padding: 1.41575em 99em 1.41575em;
    margin-right: -99em;
    margin-left: -99em;
    margin-bottom: 4.235801032em;
  }
  table.shop_table_responsive thead {
    display: table-header-group;
  }
  table.shop_table_responsive tbody th {
    display: table-cell;
  }
  table.shop_table_responsive tr td {
    display: table-cell;
  }
  table.shop_table_responsive tr td:before {
    display: none;
  }
  .site-header-cart {
    position: relative;
  }
  .site-header-cart .cart-contents {
    padding: 1.618em 0;
    display: block;
    position: relative;
    background-color: transparent;
    height: auto;
    width: auto;
    text-indent: 0;
  }
  .site-header-cart .cart-contents .amount {
    margin-left: 0.327em;
  }
  .site-header-cart .cart-contents .count {
    font-weight: 400;
    opacity: 0.5;
    font-size: 0.875em;
  }
  .site-header-cart .cart-contents span {
    display: inline;
  }
  .site-header-cart .widget_shopping_cart {
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: 999999;
    font-size: 0.875em;
    right: -999em;
    display: block;
  }
  .site-header-cart .widget_shopping_cart.sub-menu--is-touch-device {
    display: none;
    right: 0;
  }
  .site-header-cart .widget_shopping_cart h2.widgettitle {
    display: none;
  }
  .site-header-cart .widget_shopping_cart .product_list_widget li a.remove {
    position: relative;
    float: right;
    top: auto;
  }
  .site-header-cart
    .widget_shopping_cart
    .product_list_widget
    li
    a.remove:before {
    text-align: right;
  }
  .site-header-cart.focus .widget_shopping_cart,
  .site-header-cart:hover .widget_shopping_cart {
    right: 0;
    display: block;
  }
  .site-search {
    display: block;
  }
  .site-search form {
    margin: 0;
  }
  ul.products li.product {
    clear: none;
    width: 100%;
    float: right;
    font-size: 0.875em;
  }
  ul.products li.product.first {
    clear: both !important;
  }
  ul.products li.product.last {
    margin-left: 0 !important;
  }
  .page-template-template-fullwidth-php
    .site-main
    .columns-1
    ul.products
    li.product,
  .page-template-template-homepage-php
    .site-main
    .columns-1
    ul.products
    li.product,
  .storefront-full-width-content .site-main .columns-1 ul.products li.product {
    width: 100%;
    margin-left: 0;
    float: none;
  }
  .page-template-template-fullwidth-php
    .site-main
    .columns-2
    ul.products
    li.product,
  .page-template-template-homepage-php
    .site-main
    .columns-2
    ul.products
    li.product,
  .storefront-full-width-content .site-main .columns-2 ul.products li.product {
    width: 47.8260869565%;
    float: right;
    margin-left: 4.347826087%;
  }
  .page-template-template-fullwidth-php
    .site-main
    .columns-3
    ul.products
    li.product,
  .page-template-template-homepage-php
    .site-main
    .columns-3
    ul.products
    li.product,
  .storefront-full-width-content .site-main .columns-3 ul.products li.product {
    width: 30.4347826087%;
    float: right;
    margin-left: 4.347826087%;
  }
  .page-template-template-fullwidth-php
    .site-main
    .columns-4
    ul.products
    li.product,
  .page-template-template-homepage-php
    .site-main
    .columns-4
    ul.products
    li.product,
  .storefront-full-width-content .site-main .columns-4 ul.products li.product {
    width: 21.7391304348%;
    float: right;
    margin-left: 4.347826087%;
  }
  .page-template-template-fullwidth-php
    .site-main
    .columns-5
    ul.products
    li.product,
  .page-template-template-homepage-php
    .site-main
    .columns-5
    ul.products
    li.product,
  .storefront-full-width-content .site-main .columns-5 ul.products li.product {
    width: 16.9%;
    margin-left: 3.8%;
  }
  .page-template-template-fullwidth-php
    .site-main
    .columns-6
    ul.products
    li.product,
  .page-template-template-homepage-php
    .site-main
    .columns-6
    ul.products
    li.product,
  .storefront-full-width-content .site-main .columns-6 ul.products li.product {
    width: 13.0434782609%;
    float: right;
    margin-left: 4.347826087%;
  }
  .site-main .columns-1 ul.products li.product {
    width: 100%;
    margin-left: 0;
    float: none;
  }
  .site-main .columns-2 ul.products li.product {
    width: 48%;
    margin-left: 3.8%;
  }
  .site-main .columns-3 ul.products li.product {
    width: 29.4117647059%;
    float: right;
    margin-left: 5.8823529412%;
  }
  .site-main .columns-4 ul.products li.product {
    width: 22.05%;
    margin-left: 3.8%;
  }
  .site-main .columns-5 ul.products li.product {
    width: 16.9%;
    margin-left: 3.8%;
  }
  .site-main .columns-6 ul.products li.product {
    width: 11.7647058824%;
    float: right;
    margin-left: 5.8823529412%;
  }
  .site-main ul.products li.product {
    width: 29.4117647059%;
    float: right;
    margin-left: 5.8823529412%;
  }
  .single-product div.product .images {
    width: 41.1764705882%;
    float: right;
    margin-left: 5.8823529412%;
    margin-bottom: 3.706325903em;
  }
  .single-product div.product .images .thumbnails:after,
  .single-product div.product .images .thumbnails:before {
    content: "";
    display: table;
  }
  .single-product div.product .images .thumbnails:after {
    clear: both;
  }
  .single-product div.product .images .thumbnails a.zoom {
    width: 14.2857142857%;
    float: right;
    margin-left: 14.2857142857%;
  }
  .single-product div.product .images .thumbnails a.zoom.last {
    float: left;
    margin-left: 0;
  }
  .single-product div.product .woocommerce-product-gallery {
    width: 41.1764705882%;
    float: right;
    margin-left: 5.8823529412%;
    margin-bottom: 3.706325903em;
  }
  .single-product div.product .summary {
    width: 52.9411764706%;
    float: left;
    margin-left: 0;
  }
  .single-product div.product .woocommerce-tabs {
    clear: both;
  }
  #reviews .comment-form-author,
  #reviews .comment-form-email {
    width: 47%;
  }
  #reviews .comment-form-email {
    margin-left: 0;
  }
  .storefront-full-width-content.single-product div.product .images {
    width: 39.1304347826%;
    float: right;
    margin-left: 4.347826087%;
    margin-bottom: 3.706325903em;
  }
  .storefront-full-width-content.single-product
    div.product
    .images
    .thumbnails
    a.zoom {
    width: 11.1111111111%;
    float: right;
    margin-left: 11.1111111111%;
  }
  .storefront-full-width-content.single-product
    div.product
    .images
    .thumbnails
    a.zoom.last {
    margin-left: 0;
  }
  .storefront-full-width-content.single-product
    div.product
    .woocommerce-product-gallery {
    width: 39.1304347826%;
    float: right;
    margin-left: 4.347826087%;
    margin-bottom: 3.706325903em;
  }
  .storefront-full-width-content.single-product
    div.product
    .woocommerce-product-gallery.woocommerce-product-gallery--columns-2
    .flex-control-thumbs
    li {
    width: 44.4444444444%;
    float: right;
    margin-left: 11.1111111111%;
  }
  .storefront-full-width-content.single-product
    div.product
    .woocommerce-product-gallery.woocommerce-product-gallery--columns-2
    .flex-control-thumbs
    li:nth-child(2n) {
    margin-left: 0;
  }
  .storefront-full-width-content.single-product
    div.product
    .woocommerce-product-gallery.woocommerce-product-gallery--columns-3
    .flex-control-thumbs
    li {
    width: 25.9259259333%;
    float: right;
    margin-left: 11.1111111111%;
  }
  .storefront-full-width-content.single-product
    div.product
    .woocommerce-product-gallery.woocommerce-product-gallery--columns-3
    .flex-control-thumbs
    li:nth-child(3n) {
    margin-left: 0;
  }
  .storefront-full-width-content.single-product
    div.product
    .woocommerce-product-gallery.woocommerce-product-gallery--columns-4
    .flex-control-thumbs
    li {
    width: 16.6666666667%;
    float: right;
    margin-left: 11.1111111111%;
  }
  .storefront-full-width-content.single-product
    div.product
    .woocommerce-product-gallery.woocommerce-product-gallery--columns-4
    .flex-control-thumbs
    li:nth-child(4n) {
    margin-left: 0;
  }
  .storefront-full-width-content.single-product
    div.product
    .woocommerce-product-gallery.woocommerce-product-gallery--columns-5
    .flex-control-thumbs
    li {
    width: 11.1111111111%;
    float: right;
    margin-left: 11.1111111111%;
  }
  .storefront-full-width-content.single-product
    div.product
    .woocommerce-product-gallery.woocommerce-product-gallery--columns-5
    .flex-control-thumbs
    li:nth-child(5n) {
    margin-left: 0;
  }
  .storefront-full-width-content.single-product div.product .summary {
    width: 56.5217391304%;
    float: left;
    margin-left: 0;
    margin-bottom: 3.706325903em;
  }
  .storefront-full-width-content.single-product div.product .woocommerce-tabs {
    clear: both;
  }
  .storefront-full-width-content.single-product
    #reviews
    .commentlist
    li
    .avatar {
    width: 6.6666666667%;
    float: right;
    margin-left: 6.6666666667%;
  }
  .storefront-full-width-content.single-product
    #reviews
    .commentlist
    li
    .comment_container
    .comment-text {
    width: 86.6666666667%;
    float: left;
    margin-left: 0;
  }
  .storefront-full-width-content.single-product
    #reviews
    .commentlist
    ul.children {
    width: 86.6666666667%;
    float: left;
    margin-left: 0;
  }
  .storefront-full-width-content.single-product
    #reviews
    .commentlist
    ul.children
    .avatar {
    width: 7.6923076923%;
    float: right;
    margin-left: 7.6923076923%;
  }
  .storefront-full-width-content.single-product
    #reviews
    .commentlist
    ul.children
    .comment-text {
    width: 84.6153846154%;
    float: left;
    margin-left: 0;
  }
  .storefront-full-width-content.single-product .related ul.products li.product,
  .storefront-full-width-content.single-product
    .upsells
    ul.products
    li.product {
    width: 30.4347826087%;
    float: right;
    margin-left: 4.347826087%;
  }
  .storefront-full-width-content .woocommerce-products-header,
  .storefront-full-width-content.woocommerce-account .entry-header,
  .storefront-full-width-content.woocommerce-cart .entry-header,
  .storefront-full-width-content.woocommerce-checkout .entry-header {
    text-align: center;
    padding: 0 0 5.9968353111em;
  }
  .storefront-full-width-content .woocommerce-products-header h1:last-child,
  .storefront-full-width-content.woocommerce-account
    .entry-header
    h1:last-child,
  .storefront-full-width-content.woocommerce-cart .entry-header h1:last-child,
  .storefront-full-width-content.woocommerce-checkout
    .entry-header
    h1:last-child {
    margin-bottom: 0;
  }
  .storefront-full-width-content .related.products > h2:first-child,
  .storefront-full-width-content .up-sells > h2:first-child {
    text-align: center;
  }
  .woocommerce .page-description {
    margin-bottom: 1.618em;
  }
  .storefront-sorting {
    margin-bottom: 2.617924em;
  }
  .storefront-sorting:after,
  .storefront-sorting:before {
    content: "";
    display: table;
  }
  .storefront-sorting:after {
    clear: both;
  }
  .storefront-sorting select {
    width: auto;
  }
  .woocommerce-result-count {
    float: right;
    position: relative;
    margin-bottom: 0;
    padding: 0.327em 0;
  }
  .woocommerce-ordering {
    float: right;
    margin-left: 1em;
    margin-bottom: 0;
    padding: 0.327em 0;
  }
  .woocommerce-pagination {
    float: left;
    border: 0;
    clear: none;
    padding: 0;
    margin-bottom: 0;
  }
  .woocommerce-cart .hentry,
  .woocommerce-checkout .hentry {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .page-template-template-fullwidth-php table.cart .product-thumbnail {
    display: table-cell;
  }
  .page-template-template-fullwidth-php table.cart thead {
    font-size: 1em;
    text-indent: 0;
  }
  table.cart td,
  table.cart th {
    padding: 1.618em;
  }
  table.cart .qty {
    padding: 0.875em;
    max-width: 3.632em;
  }
  table.cart td.product-remove {
    display: table-cell;
    padding: 1.618em;
    border: 0;
  }
  table.cart td.product-remove a.remove {
    float: none;
    position: relative;
    top: auto;
    left: auto;
  }
  table.cart .product-quantity .minus,
  table.cart .product-quantity .plus {
    display: inline-block;
  }
  table.cart .quantity .qty {
    padding: 0.6180469716em;
  }
  table.cart td.actions {
    text-align: left;
  }
  table.cart td.actions label {
    display: none;
  }
  table.cart td.actions .coupon {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
    display: inline-block;
    float: right;
  }
  table.cart td.actions input {
    display: inline-block;
    width: auto;
    margin: 0;
  }
  .cart-collaterals:after,
  .cart-collaterals:before {
    content: "";
    display: table;
  }
  .cart-collaterals:after {
    clear: both;
  }
  .cart-collaterals h2 {
    font-size: 1.618em;
  }
  .cart-collaterals .cross-sells {
    width: 41.1764705882%;
    float: right;
    margin-left: 5.8823529412%;
  }
  .cart-collaterals .cross-sells ul.products li.product {
    width: 42.8571428571%;
    float: right;
    margin-left: 14.2857142857%;
  }
  .cart-collaterals .cross-sells ul.products li.product:nth-child(2n) {
    margin-left: 0 !important;
  }
  .cart-collaterals .cart_totals,
  .cart-collaterals .shipping_calculator {
    width: 52.9411764706%;
    float: left;
    margin-left: 0;
    margin: 0;
    clear: left;
  }
  .cart-collaterals .cart_totals small.includes_tax {
    display: block;
  }
  .cart-collaterals .shipping_calculator {
    clear: left;
  }
  .page-template-template-fullwidth-php .cart-collaterals .cross-sells {
    width: 47.8260869565%;
    float: right;
    margin-left: 4.347826087%;
  }
  .page-template-template-fullwidth-php
    .cart-collaterals
    .cross-sells
    ul.products
    li.product {
    width: 45.4545454545%;
    float: right;
    margin-left: 9.0909090909%;
  }
  .page-template-template-fullwidth-php .cart-collaterals .cart_totals,
  .page-template-template-fullwidth-php .cart-collaterals .shipping_calculator {
    width: 47.8260869565%;
    float: left;
    margin-left: 0;
  }
  #ship-to-different-address {
    position: relative;
  }
  #ship-to-different-address label {
    font-weight: 300;
  }
  #ship-to-different-address .woocommerce-form__input-checkbox {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: 0;
  }
  .col2-set {
    width: 52.9411764706%;
    float: right;
    margin-left: 5.8823529412%;
  }
  .col2-set .form-row-first {
    width: 33.3333333333%;
    float: right;
    margin-left: 11.1111111111%;
  }
  .col2-set .form-row-last {
    width: 55.5555555556%;
    float: left;
    margin-left: 0;
  }
  .col2-set .col-1,
  .col2-set .col-2 {
    margin-bottom: 1.618em;
  }
  .col2-set + #customer_details {
    display: none;
  }
  .col2-set .woocommerce-billing-fields:after,
  .col2-set .woocommerce-billing-fields:before {
    content: "";
    display: table;
  }
  .col2-set .woocommerce-billing-fields:after {
    clear: both;
  }
  .col2-set.addresses {
    width: 100%;
    float: right;
    margin-right: 0;
    margin-left: 0;
  }
  .col2-set.addresses .col-1 {
    width: 47.0588235294%;
    float: right;
    margin-left: 5.8823529412%;
  }
  .col2-set.addresses .col-2 {
    width: 47.0588235294%;
    float: left;
    margin-left: 0;
  }
  #customer_details + #wc_checkout_add_ons {
    width: 41.1764705882%;
    float: left;
    margin-left: 0;
  }
  #wc_checkout_add_ons input[type="radio"] {
    float: right;
    margin-left: 0.5407911001em;
    clear: right;
    margin-top: 0.35em;
  }
  #order_review,
  #order_review_heading {
    width: 41.1764705882%;
    float: left;
    margin-left: 0;
    clear: left;
  }
  #order_review {
    transition: box-shadow ease 0.4s;
  }
  #order_review_heading {
    margin-bottom: 0;
    padding-bottom: 0.6180469716em;
  }
  .page-template-template-fullwidth-php.woocommerce-order-pay #order_review,
  .woocommerce-order-pay #order_review {
    width: 100%;
    float: none;
  }
  .page-template-template-fullwidth-php.woocommerce-order-pay
    #order_review
    #payment
    h3,
  .woocommerce-order-pay #order_review #payment h3 {
    padding-right: 1em;
    padding-top: 1em;
  }
  .page-template-template-fullwidth-php.woocommerce-order-pay
    #order_review
    #payment
    .form-row,
  .woocommerce-order-pay #order_review #payment .form-row {
    padding: 1em;
  }
  .page-template-template-fullwidth-php.woocommerce-order-pay
    #order_review
    .payment_methods
    + .form-row,
  .woocommerce-order-pay #order_review .payment_methods + .form-row {
    padding: 1em;
  }
  .page-template-template-fullwidth-php.woocommerce-order-pay
    #order_review
    .button#place_order,
  .woocommerce-order-pay #order_review .button#place_order {
    display: block;
    width: 100%;
    font-size: 1.41575em;
  }
  .page-template-template-fullwidth-php .col2-set {
    width: 47.8260869565%;
    float: right;
    margin-left: 4.347826087%;
  }
  .page-template-template-fullwidth-php .col2-set .form-row-first {
    width: 45.4545454545%;
    float: right;
    margin-left: 9.0909090909%;
  }
  .page-template-template-fullwidth-php .col2-set .form-row-last {
    width: 45.4545454545%;
    float: left;
    margin-left: 0;
  }
  .page-template-template-fullwidth-php .col2-set.addresses .col-1 {
    width: 47.8260869565%;
    float: right;
    margin-left: 4.347826087%;
  }
  .page-template-template-fullwidth-php .col2-set.addresses .col-2 {
    width: 47.8260869565%;
    float: left;
    margin-left: 0;
  }
  .page-template-template-fullwidth-php #order_review,
  .page-template-template-fullwidth-php #order_review_heading {
    width: 47.8260869565%;
    float: left;
    margin-left: 0;
  }
  .page-template-template-fullwidth-php
    #customer_details
    + #wc_checkout_add_ons {
    width: 47.8260869565%;
    float: left;
    margin-left: 0;
  }
  #order_review .shop_table {
    margin-bottom: 2.617924em;
  }
  table + .addresses {
    margin-top: 1.618em;
  }
  .col2-set#customer_login,
  .col2-set.addresses {
    width: 100%;
    float: right;
    margin-right: 0;
    margin-left: 0;
  }
  .col2-set#customer_login .col-1,
  .col2-set.addresses .col-1 {
    width: 41.1764705882%;
    float: right;
    margin-left: 5.8823529412%;
  }
  .col2-set#customer_login .col-2,
  .col2-set.addresses .col-2 {
    width: 52.9411764706%;
    float: left;
    margin-left: 0;
  }
  .woocommerce-MyAccount-navigation {
    width: 17.6470588235%;
    float: right;
    margin-left: 5.8823529412%;
  }
  .woocommerce-MyAccount-content {
    width: 76.4705882353%;
    float: left;
    margin-left: 0;
  }
  .woocommerce-MyAccount-content .form-row-first {
    width: 38.4615384615%;
    float: right;
    margin-left: 7.6923076923%;
  }
  .woocommerce-MyAccount-content .form-row-last {
    width: 53.8461538462%;
    float: left;
    margin-left: 0;
  }
  .left-sidebar:not(.page-template-template-fullwidth-php)
    .woocommerce-MyAccount-navigation {
    width: 17.6470588235%;
    float: left;
    margin-left: 0;
  }
  .left-sidebar:not(.page-template-template-fullwidth-php)
    .woocommerce-MyAccount-content {
    width: 76.4705882353%;
    float: right;
    margin-left: 5.8823529412%;
  }
  table.my_account_orders {
    font-size: 0.875em;
  }
  .page-template-template-fullwidth-php .col2-set#customer_login .col-1,
  .page-template-template-fullwidth-php .col2-set.addresses .col-1 {
    width: 47.8260869565%;
    float: right;
    margin-left: 4.347826087%;
  }
  .page-template-template-fullwidth-php .col2-set#customer_login .col-2,
  .page-template-template-fullwidth-php .col2-set.addresses .col-2 {
    width: 47.8260869565%;
    float: left;
    margin-left: 0;
  }
  .page-template-template-fullwidth-php .woocommerce-MyAccount-navigation {
    width: 21.7391304348%;
    float: right;
    margin-left: 4.347826087%;
  }
  .page-template-template-fullwidth-php .woocommerce-MyAccount-content {
    width: 73.9130434783%;
    float: left;
    margin-left: 0;
  }
  .page-template-template-fullwidth-php
    .woocommerce-MyAccount-content
    .form-row-first {
    width: 46.6666666667%;
    float: right;
    margin-left: 6.6666666667%;
  }
  .page-template-template-fullwidth-php
    .woocommerce-MyAccount-content
    .form-row-last {
    width: 46.6666666667%;
    float: left;
    margin-left: 0;
  }
  .page-template-template-fullwidth-php
    .woocommerce-MyAccount-content
    .col2-set {
    width: 100%;
  }
  .page-template-template-fullwidth-php
    .woocommerce-MyAccount-content
    .col2-set
    .col-1 {
    width: 46.6666666667%;
    float: right;
    margin-left: 6.6666666667%;
  }
  .page-template-template-fullwidth-php
    .woocommerce-MyAccount-content
    .col2-set
    .col-2 {
    width: 46.6666666667%;
    float: left;
    margin-left: 0;
  }
  .addresses header.title:after,
  .addresses header.title:before {
    content: "";
    display: table;
  }
  .addresses header.title:after {
    clear: both;
  }
  .addresses header.title a {
    float: left;
  }
  .addresses header.title h3 {
    float: right;
  }
  .form-row-first {
    width: 47.0588235294%;
    float: right;
    margin-left: 5.8823529412%;
    clear: both;
  }
  .form-row-last {
    width: 47.0588235294%;
    float: left;
    margin-left: 0;
  }
  .page-template-template-fullwidth-php .form-row-first {
    width: 47.8260869565%;
    float: right;
    margin-left: 4.347826087%;
  }
  .page-template-template-fullwidth-php .form-row-last {
    width: 47.8260869565%;
    float: left;
    margin-left: 0;
  }
  .storefront-full-width-content .woocommerce-tabs ul.tabs {
    width: 30.4347826087%;
    float: right;
    margin-left: 4.347826087%;
  }
  .storefront-full-width-content .woocommerce-tabs .panel {
    width: 65.2173913043%;
    float: left;
    margin-left: 0;
    margin-bottom: 3.706325903em;
  }
  .woocommerce-tabs {
    padding-top: 2.617924em;
    padding-bottom: 2.617924em;
  }
  .woocommerce-tabs ul.tabs {
    width: 29.4117647059%;
    float: right;
    margin-left: 5.8823529412%;
  }
  .woocommerce-tabs ul.tabs li.active:after {
    left: 1em;
  }
  .woocommerce-tabs .panel {
    width: 64.7058823529%;
    float: left;
    margin-left: 0;
    margin-top: 0;
  }
}

@media (min-width: 568px) and (max-width: 66.49894em) {
  .woocommerce-breadcrumb {
    margin-right: -2.618rem;
    margin-left: -2.618rem;
    padding-right: 2.618rem;
    padding-left: 2.618rem;
  }
}

@media (min-width: 768px) and (max-width: 900px) {
  body:not(.page-template-template-fullwidth-php) table.cart td,
  body:not(.page-template-template-fullwidth-php) table.cart th {
    padding: 1em;
  }
}

.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  -webkit-clip-path: none;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* ---------------------- Section woo ---------------------- */
.woocommerce-message {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
}
.woocommerce-message[role="alert"] {
  background: #27282a;
  line-height: 1.6;
}

.woocommerce-notices-wrapper {
  width: 100%;
}
.woocommerce-notices-wrapper ul {
  width: 100%;
}

.woocommerce-error {
  background-color: #a31e23;
  padding: 10px;
  margin-bottom: 10px;
}

.woocommerce-info,
.woocommerce-noreviews,
p.no-comments {
  background-color: #e4e4e4;
}

section.woo {
  background: #fff;
  padding-top: 0;
  padding: 35px 0;
  overflow: visible;
}
section.woo .required {
  color: #a3322e;
}
section.woo .content h1,
section.woo .content h2,
section.woo .content h3,
section.woo .content h4 {
  font-family: "Assistant", sans-serif;
  font-weight: 400;
  font-size: 40px;
  color: #003c22;
  margin-top: 25px;
}
section.woo .content p {
  font-family: "Assistant", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #142231;
  margin-top: 5px;
}
section.woo .content a {
  text-decoration: underline;
}
section.woo .content a:hover {
  text-decoration: none;
}
section.woo .content .variation {
  margin: 0;
  padding-right: 15px;
  margin-top: 5px;
}
section.woo .content .variation dd {
  margin-right: 0;
  margin-bottom: 5px;
}
section.woo .content .variation p {
  font-size: 14px;
  text-align: right;
  margin: 0;
  margin-bottom: 5px;
}
section.woo .content .woocommerce-checkout-payment h1,
section.woo .content .woocommerce-checkout-payment h2,
section.woo .content .woocommerce-checkout-payment h3,
section.woo .content .woocommerce-checkout-payment h4,
section.woo .content .woocommerce-checkout-payment p,
section.woo .content .woocommerce-checkout-payment a {
  color: #142231;
}
section.woo #payment {
  text-align: right;
}
section.woo #payment .wc_payment_method {
  text-align: right;
  font-family: "Assistant", sans-serif;
  font-weight: 400;
  font-size: 17px;
  color: #496d5b;
  margin: 5px 0;
}
section.woo #payment .wc_payment_method input,
section.woo #payment .wc_payment_method label {
  text-align: right;
  color: #003c22;
  display: inline-block;
  padding: 0;
}
section.woo #payment .wc_payment_method .payment_box {
  text-align: right;
  padding: 0;
  margin: 5px 0 15px 0;
}
section.woo #payment .wc_payment_method .payment_box p {
  font-size: 14px;
  color: #496d5b;
  text-align: right;
}
section.woo .cont-flex {
  justify-content: space-between;
  flex-wrap: wrap;
}
section.woo .woocommerce {
  display: flex;
  flex-wrap: wrap;
}
section.woo .woocommerce-cart-form {
  width: 60%;
}
section.woo .cart-collaterals {
  width: 40%;
}
@media only screen and (max-width: 1000px) {
  section.woo .woocommerce-cart-form {
    width: 100%;
  }
  section.woo .cart-collaterals {
    width: 100%;
  }
}
section.woo .shop_table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0 1px;
  margin-bottom: 0;
  font-size: 17px;
  color: #142231;
}
section.woo .shop_table .coupon input {
  padding: 10px;
}
section.woo .shop_table td {
  text-align: right;
  padding: 15px;
  font-family: "Cinzel Decorative", "Assistant";
  font-weight: 700;
  font-size: 17px;
  color: #142231;
}
section.woo .shop_table td a {
  color: #3c3c3c;
}
section.woo .shop_table td .variation dt {
  color: #767676;
}
section.woo .shop_table .product-total {
  text-align: center;
}
section.woo .shop_table td.actions {
  text-align: left;
  padding-bottom: 20px;
}
section.woo .shop_table tr {
  border-bottom: 2px solid #fff;
  background: #fdfdfa;
}
section.woo .shop_table thead tr {
  background: #496d5b;
  text-align: right;
  color: #fff;
  border: none;
}
section.woo .shop_table thead tr th {
  text-align: right;
  padding-right: 10px;
  white-space: nowrap;
}
section.woo label[for="account_password"] {
  font-family: "Cinzel Decorative", "Assistant";
  font-weight: 700;
  font-size: 20px;
  color: #3c3c3c;
}
section.woo .cart-collaterals {
  padding-right: 45px;
}
section.woo .cart-collaterals .cart_totals {
  float: none;
  width: 100%;
  overflow: hidden;
  background: #f1f1f3;
}
/* section.woo .cart-collaterals .cart_totals .shop_table tr {
        background: none; } */
section.woo .cart-collaterals .cart_totals h2 {
  font-family: "Cinzel Decorative", "Assistant";
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  padding: 25px;
  text-align: center;
  background: #496d5b;
  margin-top: 0;
}
@media only screen and (max-width: 1000px) {
  section.woo .cart-collaterals .cart_totals h2 {
    margin-top: 25px;
  }
}
section.woo .cart-collaterals .cross-sells {
  width: 100%;
  float: none;
  margin-left: 0;
}
section.woo .cart-collaterals .cross-sells a {
  color: #fff;
  text-decoration: none;
}
section.woo .cart-collaterals table.shop_table_responsive tbody th {
  text-align: right;
}
section.woo .cart-collaterals table.shop_table_responsive {
  border-radius: 10px;
  overflow: hidden;
}
section.woo .cart-collaterals table.shop_table_responsive td,
section.woo .cart-collaterals table.shop_table_responsive th {
  padding: 15px;
}
section.woo .cart-collaterals .cart-subtotal th {
  padding: 15px;
}
section.woo .cart-collaterals .wc-proceed-to-checkout {
  position: relative;
  height: 55px;
  margin: 0;
}
section.woo .cart-collaterals .checkout-button {
  font-family: "Cinzel Decorative", "Assistant";
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  background: #003c22;
  display: inline-block;
  padding: 15px 55px;
  cursor: pointer;
  transition: 0.5s;
  border: none;
  text-decoration: none;
  border-radius: 0;
  margin: 0;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}
section.woo .cart-collaterals .checkout-button:hover {
  background: #496d5b;
  color: #fff;
}
section.woo .button {
  font-family: "Cinzel Decorative", "Assistant";
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  background: #003c22;
  border-radius: 5px;
  display: inline-block;
  padding: 15px 55px;
  cursor: pointer;
  transition: 0.5s;
  margin-top: 25px;
  border: none;
}
section.woo .button:hover {
  background: #496d5b;
  color: #fff;
}
section.woo .woocommerce-cart-form {
  overflow: hidden;
}
section.woo .woocommerce-cart-form .button {
  font-family: "Cinzel Decorative", "Assistant";
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  background: #003c22;
  border-radius: 0px;
  display: inline-block;
  padding: 15px 55px;
  cursor: pointer;
  transition: 0.5s;
  margin-top: 25px;
  border: none;
}
section.woo .woocommerce-cart-form .button:hover {
  background: #496d5b;
  color: #fff;
}
section.woo .woocommerce-cart-form input {
  border: none;
}
section.woo .woocommerce-cart-form table.cart td.actions {
  border-top: none;
}
section.woo .woocommerce-cart-form table.cart td.product-remove a.remove {
  position: absolute;
  font-size: 1.41575em;
  top: 0.381953em;
  left: 0.381953em;
  text-decoration: none;
}
section.woo .woocommerce-info {
  background: #496d5b;
  width: 100%;
}
section.woo .woocommerce-error {
  background: #e2401c;
  width: 100%;
}
section.woo #ship-to-different-address .woocommerce-form__input-checkbox {
  left: auto;
  right: 0;
}
section.woo .woocommerce-form__label-for-checkbox {
  padding-right: 25px;
}
@media only screen and (max-width: 430px) {
  section.woo .woocommerce-form__label-for-checkbox span {
    font-size: 20px;
  }
}
section.woo .woocommerce-billing-fields input,
section.woo .woocommerce-billing-fields select,
section.woo .woocommerce-billing-fields textarea,
section.woo .woocommerce-billing-fields li,
section.woo .woocommerce-shipping-fields input,
section.woo .woocommerce-shipping-fields select,
section.woo .woocommerce-shipping-fields textarea,
section.woo .woocommerce-shipping-fields li {
  font-family: "Assistant", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #3c3c3c;
  border: 1px solid #969696;
  padding: 5px;
  margin-top: 5px;
}
section.woo .woocommerce-billing-fields label,
section.woo .woocommerce-shipping-fields label {
  display: inline-block;
  margin-top: 10px;
}
section.woo .woocommerce-billing-fields .form-row,
section.woo .woocommerce-shipping-fields .form-row {
  width: 100%;
  margin-left: 0;
}
section.woo .woocommerce-billing-fields .address-field,
section.woo .woocommerce-shipping-fields .address-field {
  display: none;
}
section.woo .form-row input,
section.woo .form-row select,
section.woo .form-row textarea {
  font-family: "Assistant", sans-serif;
  font-weight: 400;
  font-size: 17px;
  color: #496d5b;
  border: 2px solid #dbdbe5;
  border-radius: 5px;
  padding: 5px;
  margin-top: 5px;
  outline: none;
}
section.woo .form-row label {
  font-family: "Cinzel Decorative", "Assistant";
  font-weight: 700;
  font-size: 15px;
  color: #003c22;
}
section.woo .form-row .select2-selection {
  border-radius: 0;
}
section.woo .form-row .select2-container .select2-selection--single {
  height: 39px;
}
section.woo .woocommerce-checkout-review-order th {
  text-align: right;
  line-height: 35px;
  padding: 15px;
}
section.woo .woocommerce-checkout-review-order .button {
  font-family: "Cinzel Decorative", "Assistant";
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  background: #496d5b;
  border-radius: 0px;
  display: inline-block;
  padding: 15px 55px;
  cursor: pointer;
  transition: 0.5s;
  margin-top: 25px;
  border: none;
}
section.woo .woocommerce-checkout-review-order .button:hover {
  background: #003c22;
  color: #fff;
}
section.woo .woocommerce-order .woocommerce-notice {
  font-family: "Cinzel Decorative", "Assistant";
  font-weight: 700;
  font-size: 30px;
  color: #8dd0cd;
}
section.woo .woocommerce-order .woocommerce-order-overview__order {
  font-family: "Assistant", sans-serif;
  font-weight: 400;
  font-size: 25px;
  color: #3c3c3c;
}
section.woo .woocommerce-table--order-details th {
  text-align: right;
}
section.woo .woocommerce-table--order-details .product-quantity {
  padding-left: 15px;
}
section.woo #payment .place-order {
  margin-top: 0;
}
section.woo .woocommerce-billing-fields__field-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  font-size: 0;
  margin: 0 -1%;
  background: #fff;
  padding-bottom: 25px;
}
section.woo .woocommerce-billing-fields__field-wrapper .form-row {
  width: 48%;
  margin: 1%;
}
@media only screen and (max-width: 400px) {
  section.woo .woocommerce-billing-fields__field-wrapper {
    margin: 0;
    padding: 10px;
  }
  section.woo .woocommerce-billing-fields__field-wrapper .form-row {
    width: 100%;
    margin: 0;
  }
}
section.woo .payment_methods .wc_payment_method img {
  margin: 0;
  margin-right: 10px;
}
section.woo .woocommerce-form-coupon {
  width: 100%;
}
section.woo .woocommerce-form-coupon .form-row {
  float: none;
}
section.woo .woocommerce-form-coupon .form-row .button {
  background: #3c3c3c;
}
@media only screen and (max-width: 1000px) {
  section.woo .cont-flex {
    flex-wrap: wrap;
  }
  section.woo .cart-collaterals {
    padding-right: 0;
  }
}
@media only screen and (max-width: 1000px) {
  section.woo {
    margin-top: 35px;
    padding-bottom: 35px;
  }
}

@media only screen and (max-width: 1000px) {
  table.shop_table_responsive tr td::before {
    float: right !important;
  }
}

/* --------------------- /Section woo ---------------------- */
.select2-container li {
  font-family: "Assistant", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #3c3c3c;
}

.address-field {
  position: relative;
  top: -4px;
}

section.woo .woocommerce-MyAccount-navigation {
  position: relative;
  z-index: 999;
}
section.woo .woocommerce-MyAccount-navigation .title-mobile {
  display: none;
}
section.woo .woocommerce-MyAccount-navigation ul li.is-active {
  background: #9cdd46;
  padding-right: 10px;
  text-decoration: none;
}
section.woo .woocommerce-MyAccount-navigation ul li {
  margin: 0;
}
@media only screen and (max-width: 768px) {
  section.woo .woocommerce-MyAccount-navigation {
    width: 100%;
    margin-bottom: 25px;
  }
  section.woo .woocommerce-MyAccount-navigation .title-mobile {
    display: block;
    font-family: "Assistant", sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #000;
    text-align: center;
    padding: 5px;
    padding-left: 30px;
    background: url("../images/icons/arrow-down-black.svg") no-repeat left 10px
      center;
    cursor: pointer;
    background-color: #e7e4e4;
  }
  section.woo .woocommerce-MyAccount-navigation nav {
    position: absolute;
    top: 100%;
    z-index: 999;
    background: #fff;
    width: 100%;
    text-align: center;
    display: none;
  }
  section.woo .woocommerce-MyAccount-navigation nav ul {
    padding: 0;
  }
  section.woo .woocommerce-MyAccount-navigation nav ul li a {
    padding: 5px 0;
  }
}

body.en {
  /* --------------------- /header ---------------------- */
  /* ---------------------- .Section about ---------------------- */
  /* --------------------- /.Section about ---------------------- */
  /* ---------------------- .Section categories ---------------------- */
  /* --------------------- /.Section categories ---------------------- */
  /* ---------------------- .Section section-slider-products ---------------------- */
  /* --------------------- /.Section section-slider-products ---------------------- */
  /* ---------------------- .Section personal ---------------------- */
  /* --------------------- /.Section personal ---------------------- */
  /* ---------------------- .Section lab ---------------------- */
  /* --------------------- /.Section lab ---------------------- */
  /* ---------------------- .Section weddings ---------------------- */
  /* --------------------- /.Section weddings ---------------------- */
  /* ---------------------- Section contact ---------------------- */
  /* --------------------- /Section contact ---------------------- */
  /* ---------------------- footer ---------------------- */
  /* --------------------- /footer ---------------------- */
  /* ---------------------- Section timeline ---------------------- */
  /* --------------------- /Section timeline ---------------------- */
  /* ---------------------- Section category ---------------------- */
  /* --------------------- /Section category ---------------------- */
  /* ---------------------- Section product ---------------------- */
  /* --------------------- /Section product ---------------------- */
  /* ---------------------- Section product-icons ---------------------- */
  /* --------------------- /Section product-icons ---------------------- */
  /* ---------------------- Section post ---------------------- */
  /* --------------------- /Section post ---------------------- */
  /* ---------------------- Section consultation ---------------------- */
  /* --------------------- /Section consultation ---------------------- */
  /* ---------------------- Section personal ---------------------- */
  /* --------------------- /Section personal ---------------------- */
  /* ---------------------- Section contact-page ---------------------- */
  /* --------------------- /Section contact-page ---------------------- */
  /* ---------------------- Section questions ---------------------- */
  /* --------------------- /Section questions ---------------------- */
  /* --------------------- Section tech-info ---------------------- */
  /* ---------------------- Section woo ---------------------- */
  /* --------------------- /Section woo ---------------------- */
}
body.en *,
body.en *::before,
body.en *::after {
  direction: ltr;
}
body.en .section-title.align-right {
  text-align: left;
}
body.en .title-2-lines {
  text-align: left;
}
body.en .title-2-lines.centered {
  text-align: center;
}
body.en .section-subtitle.align-right {
  text-align: left;
}
body.en .sm_menu_outer.accordion .mobile_menu li.hasChild > a::before,
body.en .sm_menu_outer.accordion .mobile_menu li.back a::before {
  left: auto;
  right: 0;
}
body.en header .search-field {
  margin-right: 0;
  margin-left: 20px;
  left: auto;
  right: -60px;
}
body.en header .search-field.open {
  left: auto;
  right: -40px;
}
body.en header .tel {
  margin-left: 0;
  margin-right: 35px;
}
body.en header .icons .icon:after {
  left: auto;
  right: 0;
}
body.en header .icons .icon .wrapper-img .num {
  right: auto;
  left: -8px;
}
body.en header .icons .icon.login .wrapper-img {
  margin-left: 0;
  margin-right: 10px;
}
body.en header .icons .icon.lang-select .title {
  background-position: left center;
}
@media only screen and (max-width: 950px) {
  body.en header .ham-button {
    margin-left: 0;
    margin-right: 5px;
  }
  body.en header .part-left .icons {
    margin-left: 0;
    margin-right: -10px;
  }
  body.en header .icons .icon.login {
    margin-right: 0;
    margin-left: 5px;
  }
}
body.en .section.about .part-top {
  background-position: right center;
}
body.en .section.about .boxes .box .icon:before {
  right: auto;
  left: -5px;
}
body.en .section.about .boxes .box .text {
  margin-right: 0;
  margin-left: 25px;
}
@media only screen and (max-width: 1370px) {
  body.en .section.about .boxes .box .text {
    margin-right: 0;
    margin-left: 25px;
  }
}
@media only screen and (max-width: 1200px) {
  body.en .section.about .part-top {
    background-position: left center;
  }
}
@media only screen and (max-width: 950px) {
  body.en .section.about .boxes .box .text {
    margin-right: 0;
    margin-left: 25px;
  }
}
body.en .section.categories .decor.decor-collection {
  right: auto;
  left: 0;
}
body.en .section.section-slider-products .decor-love {
  left: auto;
  right: 0;
}
body.en
  .section.section-slider-products
  .swiper-container
  .navigation
  .products-prev {
  margin-left: 0;
  margin-right: 55px;
}
body.en
  .section.section-slider-products
  .swiper-container
  .navigation
  .products-prev
  img {
  transform: scaleX(-1);
}
body.en
  .section.section-slider-products
  .swiper-container
  .navigation
  .products-next {
  margin-right: 0;
  margin-left: 55px;
}
body.en
  .section.section-slider-products
  .swiper-container
  .navigation
  .products-next
  img {
  transform: scaleX(-1);
}
body.en
  .section.section-slider-products
  .swiper-container
  .swiper-wrapper
  .swiper-slide {
  transform: translateX(-100px);
}
@media only screen and (max-width: 950px) {
  body.en
    .section.section-slider-products
    .swiper-container
    .navigation
    .products-prev {
    right: auto;
    left: 0;
  }
  body.en
    .section.section-slider-products
    .swiper-container
    .navigation
    .products-next {
    left: auto;
    right: 0;
  }
  body.en
    .section.section-slider-products
    .swiper-container
    .swiper-wrapper
    .swiper-slide {
    transform: translateX(-30px);
  }
}
body.en
  .section.section-slider-products
  .swiper-container
  .navigation
  .swiper-pagination-progressbar {
  left: auto;
  right: 0;
}
body.en .section.personal.inner .decor-unique {
  left: auto;
  left: 0;
}
body.en .section.personal .decor-unique {
  right: auto;
  left: 0;
}
body.en .section.personal .decor-stones {
  left: auto;
  right: 0;
}
body.en .section.personal .halves .half .half-inner {
  margin-right: 0;
  margin-left: auto;
}
body.en .section.personal .items .item .info {
  margin-right: 0;
  margin-left: 20px;
}
@media only screen and (max-width: 1370px) {
  body.en .section.personal .items .item .info {
    margin-right: 0;
    margin-left: 20px;
  }
}
body.en .section.lab .decor-lab {
  right: auto;
  left: 0;
}
body.en .section.weddings .decor-engaged {
  left: auto;
  right: 0;
}
body.en section.contact .wrapper-form .wpcf7 form .newsletter-cb {
  right: auto;
  left: 0;
}
body.en .wpcf7 input[type="url"],
body.en .wpcf7 input[type="email"],
body.en .wpcf7 input[type="tel"] {
  direction: ltr;
}
body.en .wpcf7 input,
body.en .wpcf7 select {
  direction: ltr;
}
body.en .wpcf7 .wrapper-submit {
  float: right;
}
body.en .wpcf7 .wrapper-submit i {
  margin-right: 0;
  margin-left: 5px;
  transform: scaleX(-1);
}
body.en .wpcf7 .newsletter-cb {
  text-align: left;
  float: left;
  padding-right: 0;
  padding-left: 1px;
}
body.en .wpcf7 .newsletter-cb .desc-cb {
  margin-right: 0;
  margin-left: 15px;
}
body.en .wpcf7 .newsletter-cb .wpcf7-list-item-label {
  margin-left: 0;
  margin-right: 15px;
}
body.en .wpcf7 .newsletter-cb .wpcf7-list-item-label:before {
  left: auto;
  right: 6px;
}
body.en .wpcf7 span[role="alert"] {
  left: auto;
  right: 0;
}
body.en footer .part-top .cols {
  text-align: left;
}
body.en footer .part-top .cols .col .content ul {
  padding-right: 0;
  padding-left: 0;
}
body.en .wrapper-social {
  margin-right: 0;
  margin-left: auto;
}
body.en .wrapper-social .social .title {
  margin-left: 0;
  margin-right: 8px;
}
body.en .popup-banner .close {
  right: auto;
  left: 10px;
}
body.en section.timeline .items .item .wrapper-content {
  float: left;
}
@media only screen and (max-width: 950px) {
  body.en section.timeline .items .line {
    left: auto;
    right: 20px;
  }
  body.en section.timeline .items .item .dot {
    left: auto;
    right: 7px;
  }
  body.en section.timeline .items .item:nth-child(odd) .wrapper-content {
    float: left;
  }
}
body.en section.category .sidebar .open-button {
  left: auto;
  right: -35px;
}
@media only screen and (max-width: 950px) {
  body.en section.category .sidebar {
    margin-left: 0px;
    margin-right: 0;
    right: auto;
    left: -350px;
  }
  body.en section.category .sidebar.open {
    right: auto;
    left: 0;
  }
}
body.en section.category .filters .widget label select {
  margin-right: 0;
  margin-left: 5px;
}
@media only screen and (max-width: 950px) {
  body.en section.category .filters .widget.active .widget-title {
    background-position: right 10px center;
  }
  body.en section.category .filters .widget-title {
    background-position: right 10px center;
  }
}
body.en .box-product .like {
  left: auto;
  right: 0;
}
body.en .box-product .colors {
  right: auto;
  left: 15px;
}
body.en .box-product .part-bottom .price del {
  margin-left: 0;
  margin-right: 5px;
}
@media only screen and (max-width: 950px) {
  body.en .box-product .colors {
    right: auto;
    left: 8px;
  }
}
body.en section.product .cart .controls .single_add_to_cart_button {
  padding: 13px 23px;
  padding-left: 35px;
  margin-left: 15px;
}
body.en section.product .cart .controls .single_add_to_cart_button img {
  margin-left: 0;
  margin-right: 5px;
  right: auto;
  left: 20px;
}
body.en section.product .cart .controls .fav,
body.en section.product .cart .controls .no-sell {
  padding: 13px 23px;
  padding-left: 55px;
  margin-left: 15px;
}
body.en section.product .cart .controls .fav .wpulike,
body.en section.product .cart .controls .no-sell .wpulike {
  margin-left: 0;
  margin-right: 5px;
  right: auto;
  left: 14px;
}
body.en section.product .cart .controls .no-sell {
  padding-right: 0;
  padding-left: 23px;
}
body.en section.product .sliders {
  text-align: left;
}
body.en section.product .sliders .gallery-top {
  margin-right: 0;
  margin-left: 0;
}
body.en section.product .sliders .gallery-thumbs-wrapper {
  margin: 0 20px;
  margin-left: 0;
}
@media only screen and (max-width: 1200px) {
  body.en section.product .cart .controls .single_add_to_cart_button {
    margin-left: 0;
  }
}
@media only screen and (max-width: 950px) {
  body.en section.product .sliders .gallery-top {
    margin-right: 0;
  }
  body.en section.product .cart .controls .fav,
  body.en section.product .cart .controls .no-sell {
    margin-left: 0;
  }
}
body.en
  .wrapper-slider-selector
  .slider-selector
  .items
  .item:first-child
  .dot {
  left: auto;
  right: 100px;
}
body.en .wrapper-slider-selector .slider-selector .items .item:last-child .dot {
  left: auto;
  right: 0%;
}
body.en section.product-icons .boxes .box .icon:before {
  right: auto;
  left: -23px;
}
body.en section.product-icons .wrapper-special .image {
  margin-right: 0;
  margin-left: 5%;
}
body.en section.product-icons .wrapper-special .info .items .item {
  text-align: left;
}
body.en section.product-icons .wrapper-special .info .items .item span {
  margin-right: 0;
  margin-left: 5px;
  white-space: normal;
}
@media only screen and (max-width: 950px) {
  body.en section.product-icons .wrapper-special .image {
    margin-right: 0%;
  }
  body.en section.product-icons .wrapper-special .info .items .item {
    text-align: left;
  }
}
body.en section.post .img-main {
  float: right;
  margin-right: 0px;
  margin-left: 50px;
}
@media only screen and (max-width: 950px) {
  body.en section.post .img-main {
    float: none;
    margin-right: 0;
    margin-left: 0;
  }
}
body.en section.consultation .items .item:nth-child(even) .video .decor {
  left: auto;
  right: 0%;
}
body.en section.consultation .items .item .video .decor {
  right: auto;
  left: -20%;
}
body.en section.personal .items .item .info {
  margin-right: 0;
  margin-left: 20px;
}
@media only screen and (max-width: 950px) {
  body.en section.personal .items .item .info {
    margin-right: 0;
    margin-left: 20px;
  }
}
body.en section.contact-page .items .item.waze img {
  margin-right: 0;
  margin-left: 5px;
}
body.en section.questions .accordion h3,
body.en section.questions .accordion .h3 {
  padding-left: 100px;
  padding-right: 55px;
}
body.en section.questions .accordion h3:before,
body.en section.questions .accordion .h3:before {
  left: auto;
  right: 20px;
}
body.en section.questions .accordion h3 .number,
body.en section.questions .accordion .h3 .number {
  right: auto;
  left: 0;
}
@media only screen and (max-width: 950px) {
  body.en section.questions .accordion h3,
  body.en section.questions .accordion .h3 {
    padding-left: 70px;
    padding-right: 45px;
  }
  body.en section.questions .accordion h3:before,
  body.en section.questions .accordion .h3:before {
    left: auto;
    right: 10px;
  }
}
body.en .popup .container .inner {
  background-position: right bottom;
}
body.en .popup .container .inner .close {
  right: auto;
  left: 20px;
}
@media only screen and (max-width: 950px) {
  body.en .popup .container .inner .close {
    right: auto;
    left: 8px;
  }
}
body.en .product-request-form .button-send-form {
  margin-right: 0;
  margin-left: auto;
}
body.en .product-request-form .tabs .tab .tab-title:after {
  left: auto;
  right: 25px;
}
body.en .product-request-form .tabs .tab .tab-content:after {
  left: auto;
  right: 0;
}
body.en .product-request-form .tabs .tab .group:after {
  left: auto;
  right: 0;
}
body.en section.woo .content .variation {
  padding-right: 0;
  padding-left: 15px;
}
body.en section.woo .content .variation dd {
  margin-right: 0;
  margin-left: 0;
}
body.en section.woo .content .variation p {
  text-align: left;
}
body.en section.woo #payment {
  text-align: left;
}
body.en section.woo #payment .wc_payment_method {
  text-align: left;
}
body.en section.woo #payment .wc_payment_method input,
body.en section.woo #payment .wc_payment_method label {
  text-align: left;
}
body.en section.woo #payment .wc_payment_method .payment_box {
  text-align: left;
}
body.en section.woo #payment .wc_payment_method .payment_box p {
  text-align: left;
}
body.en section.woo .shop_table td {
  text-align: left;
}
body.en section.woo .shop_table td.actions {
  text-align: right;
}
body.en section.woo .shop_table thead tr {
  text-align: left;
}
body.en section.woo .shop_table thead tr th {
  text-align: left;
}
body.en section.woo .cart-collaterals {
  padding-right: 0;
  padding-left: 45px;
}
body.en section.woo .cart-collaterals .cross-sells {
  margin-left: 0;
  margin-right: 0;
}
body.en section.woo .cart-collaterals table.shop_table_responsive tbody th {
  text-align: left;
}
body.en
  section.woo
  .woocommerce-cart-form
  table.cart
  td.product-remove
  a.remove {
  left: auto;
  right: 0.381953em;
}
body.en
  section.woo
  #ship-to-different-address
  .woocommerce-form__input-checkbox {
  right: auto;
  left: 0;
}
body.en section.woo .woocommerce-form__label-for-checkbox {
  padding-right: 0;
  padding-left: 25px;
}
body.en section.woo .woocommerce-billing-fields .form-row,
body.en section.woo .woocommerce-shipping-fields .form-row {
  margin-left: 0;
  margin-right: 0;
}
body.en section.woo .woocommerce-checkout-review-order th {
  text-align: left;
}
body.en section.woo .woocommerce-table--order-details th {
  text-align: left;
}
body.en section.woo .woocommerce-table--order-details .product-quantity {
  padding-left: 0;
  padding-right: 15px;
}
body.en section.woo .payment_methods .wc_payment_method img {
  margin: 0;
  margin-right: 0;
  margin-left: 10px;
}
@media only screen and (max-width: 1000px) {
  body.en section.woo .cart-collaterals {
    padding-right: 0;
    padding-left: 0;
  }
}
@media only screen and (max-width: 1000px) {
  body.en table.shop_table_responsive tr td::before {
    float: left !important;
  }
}
body.en section.woo .woocommerce-MyAccount-navigation ul li.is-active {
  padding-right: 0;
  padding-left: 10px;
}
@media only screen and (max-width: 768px) {
  body.en section.woo .woocommerce-MyAccount-navigation .title-mobile {
    padding-left: 0;
    padding-right: 30px;
    background-position: right 10px center;
  }
}
/* 02-05-2025 */
/* .wpulike-default .wp_ulike_put_image:after{
  filter: invert(1);
} */
.sizes-link {
  color: #496d5b;
}

td.label label {
  color: #003c22;
}
.upload-ring {
  background: #fdfdfa;
}
.panel-bottom .button {
  background: #003c22;
  box-shadow: 0 0 50px rgba(126, 126, 126, 0.44);
}

.panel-bottom .button:nth-child(2) {
  background: #fdfdfa;
}
section.blog.inner {
  background: #fdfdfa;
}
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  background: #ffffff;
  color: #003c22;
}

.ui-widget-content {
  color: #496d5b;
}

.ui-accordion-header.ui-corner-top.ui-state-default.ui-accordion-icons.ui-accordion-header-active.ui-state-active {
  background: #496d5b;
  color: #fff;
}
section.questions .accordion h3.ui-state-active:before {
  color: #fff;
}

.button.fav .wp_ulike_btn.wp_ulike_put_image:after {
  filter: invert(1);
}

.single-product section.top-inner:before {
  position: absolute;
  content: " ";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #fdfdfa6b;
  width: 100%;
  height: 100%;
  z-index: 9;
}

section.top-inner .section-inner {
  z-index: 10;
}

section.woo .cart-collaterals table.shop_table_responsive tbody th,
section.woo .shop_table td a,
section.woo .shop_table td .variation dt {
  color: #003c22;
}

section.woo .cart-collaterals table.shop_table_responsive tbody td {
  color: #496d5b;
}

section.woo .content p {
  color: #496d5b;
}

/* .harmonie_swiper {
  margin: 50px;
} */

.harmonie_swiper {
  padding: 75px 50px;
}

section.gemological {
  padding: 75px 50px;
  text-align: center;
  background: #fdfdfa;
}
.gemological_image_wrapper {
  border: 1px solid #fdfdfa;
  margin-top: 20px;
  border-radius: 5px;
}
.gemological_image_wrapper img {
  margin: auto;
  display: flex;
  max-width: 100%;
}

@media (max-width: 1370px) {
  .harmonie_swiper,
  .harmonie_swiper2 {
    padding: 65px 25px;
  }
  section.gemological {
    padding: 45px 15px;
  }
}

.harmonie_swiper .mySwiper-harmonie,
.harmonie_swiper2 .mySwiper-harmonie2 {
  width: 100%;
  height: 100%;
  /* border-radius: 20px; */
  overflow: hidden;
}

.harmonie_swiper .mySwiper-harmonie .swiper-wrapper,
.harmonie_swiper2 .mySwiper-harmonie2 .swiper-wrapper {
  height: 100% !important;
  padding-bottom: 50px;
}

.harmonie_swiper .mySwiper-harmonie .swiper-slide img,
.harmonie_swiper2 .mySwiper-harmonie2 .swiper-slide img {
  width: 100%;
  height: 290px;
  max-width: 100%;
  object-fit: cover;
}

.harmonie_swiper .mySwiper-harmonie .swiper-button-next,
.harmonie_swiper2 .mySwiper-harmonie2 .swiper-button-next {
  left: 50%;
  padding-left: 60px;
}

.harmonie_swiper .mySwiper-harmonie .swiper-button-prev,
.harmonie_swiper2 .mySwiper-harmonie2 .swiper-button-prev {
  right: 50%;
  padding-right: 60px;
}

.harmonie_swiper .mySwiper-harmonie .swiper-button-next,
.harmonie_swiper .mySwiper-harmonie .swiper-button-prev,
.harmonie_swiper2 .mySwiper-harmonie2 .swiper-button-next,
.harmonie_swiper2 .mySwiper-harmonie2 .swiper-button-prev {
  position: absolute;
  bottom: 70px;
  top: auto;
  width: 80px;
}
* {
  -webkit-tap-highlight-color: transparent;
}

.harmonie_swiper .mySwiper-harmonie .swiper-button-next:after,
.harmonie_swiper .mySwiper-harmonie .swiper-button-prev:after,
.harmonie_swiper2 .mySwiper-harmonie2 .swiper-button-next:after,
.harmonie_swiper2 .mySwiper-harmonie2 .swiper-button-prev:after {
  display: none;
}

section.harmonie_swiper,
section.harmonie_swiper2 {
  display: block;
}

@media (min-width: 768px) {
  section.harmonie_swiper,
  section.harmonie_swiper2 {
    display: none;
  }
}

section.harmonie_swiper {
  display: block;
}

@media (min-width: 768px) {
  section.harmonie_swiper {
    display: none;
  }
}

.harmonie_swiper .section-title {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .section.categories .section-inner .boxes.mobile-boxes,
  .section.categories .section-title.mobile-boxes {
    display: none;
  }
  section.category .boxes .box {
    width: 50%;
  }
  .harmonie_swiper2 .centered {
    margin-bottom: -40px;
  }
}
.swiper-pagination {
  display: none;
}

@media (max-width: 576px) {
  section.category .boxes .box {
    width: 100%;
  }
  section.category .boxes {
    padding: 15px;
  }
  .panel-bottom .button {
    font-size: 16px;
  }
}

.google-reviews-slider {
  padding: 40px;
  background: #fdfdfa;
  font-family: "Assistant", sans-serif;
}
.google-reviews-slider .reviews-wrapper .review-item {
  box-shadow: none;
  background: #ffffff;
  border: 1px solid #003c22;
  padding: 30px;
  border-radius: 6px;
}

.google-reviews-slider .reviews-wrapper .img-wrapper img {
  max-width: 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.google-reviews-slider .reviews-wrapper .img-wrapper {
  width: 60px;
  height: 60px;
  text-align: center;
  /* margin: auto; */
  border-radius: 50px;
  overflow: hidden;
}

.google-reviews-slider {
  padding: 75px 40px;
  margin: 75px 0 0;
}

.google-reviews-slider .reviews-wrapper {
  overflow: hidden;
  /* margin: 0; */
  margin: -0;
}

.google-reviews-slider .reviews-wrapper .swiper-button-prev {
  right: 50%;
  padding-right: 60px;
}
.google-reviews-slider .reviews-wrapper .swiper-button-next {
  left: 50%;
  padding-left: 60px;
}

.google-reviews-slider .reviews-wrapper .swiper-button-prev:after,
.google-reviews-slider .reviews-wrapper .swiper-button-next:after {
  display: none;
}

.google-reviews-slider .reviews-wrapper .swiper-button-next,
.google-reviews-slider .reviews-wrapper .swiper-button-prev {
  position: absolute;
  bottom: 20px;
  top: auto;
  width: 80px;
}

.google-reviews-slider .reviews-wrapper .swiper-slide.review-item {
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.google-reviews-slider .reviews-wrapper .review-description {
  text-align: center;
}

.google-reviews-slider .reviews-wrapper .swiper-wrapper {
  align-items: stretch !important;
  height: 100% !important;
}
section.google-reviews-slider h2,
.gemological_title h2 {
  color: #003c22;
  margin-bottom: 20px;
  text-align: center;
}

.google-reviews-slider .reviews-wrapper .review-name {
  color: #003c22;
}

.google-reviews-slider .reviews-wrapper .review-description,
.google-reviews-slider .reviews-wrapper .review-rating {
  color: #496d5b;
}

/* Slider START */
/* .harmonie_swiper .mySwiper-harmonie .swiper-button-prev::after,
.harmonie_swiper .mySwiper-harmonie .swiper-button-next::after {
  display: none;
}

.harmonie_swiper .mySwiper-harmonie .swiper-slide .img-wrapper {
  height: 100%;
}

.harmonie_swiper .mySwiper-harmonie .swiper-button-next,
.harmonie_swiper .mySwiper-harmonie .swiper-button-prev {
  position: absolute;
  bottom: 10px;
  top: auto;
  width: 80px;
}
.harmonie_swiper .mySwiper-harmonie .swiper-button-next img,
.harmonie_swiper .mySwiper-harmonie .swiper-button-prev img {
  max-width: 100%;
}   

.harmonie_swiper .mySwiper-harmonie .swiper-button-prev {
left: 50%;
transform: translateX(-120%);
}

.harmonie_swiper .mySwiper-harmonie .swiper-button-next {
left: 50%;
transform: translateX(20%);
}
.harmonie_swiper .mySwiper-harmonie .swiper-slide .img-wrapper{
overflow: hidden;
}
.harmonie_swiper .mySwiper-harmonie .swiper-slide .img-wrapper img{
transition: all ease-in-out 0.5s;
}

.harmonie_swiper .mySwiper-harmonie .swiper-slide .img-wrapper:hover img{
transform: scale(1.1)
} */
/* Slider END */

/*  */
.diamond-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  /* max-width: 1200px; */
  margin: 0 auto;
  gap: 40px;
}

.diamond-image img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}

.diamond-content {
  /* max-width: 600px; */
}

.diamond-content h2 {
  font-size: 26px;
  color: #003c22;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.diamond-content h1 {
  font-size: 36px;
  font-family: "Georgia", serif;
  font-weight: bold;
  margin-bottom: 20px;
  color: #1c1c1c;
}

.diamond-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #496d5b;
  margin-bottom: 25px;
}

.diamond-content strong {
  color: #003c22;
}

.cta-button,
.learn-more,
.gemological_button {
  font-family: "Assistant", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #003c22;
  display: inline-block;
  position: relative;
  padding: 13px 25px;
  padding-top: 0;
  cursor: pointer;
  transition: 0.5s;
  white-space: nowrap;
}

.gemological_button {
  position: relative;
}

.cta-button:after,
.learn-more:after,
.gemological_button:after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #003c22;
  transition: 0.5s;
  z-index: -1;
}

.cta-button:hover:after,
.learn-more:hover:after,
.gemological_button:hover:after {
  height: 45px;
}

.cta-button:hover,
.learn-more:hover,
.gemological_button:hover {
  color: #ffffff;
}

/* Responsive Design */
@media (min-width: 768px) {
  .diamond-section {
    flex-direction: row;
    justify-content: space-between;
  }
  .cta-button {
    padding: 13px 35px;
    font-size: 18px;
  }
}

section.diamond-section {
  /* background-image: url(https://ion.r2net.com/images/amazingHomepage/GIA.png?v=1), url(https://ion.r2net.com/images/amazingHomepage/twy_BG.png?v=5); */
  background-position: right 70px top 100px, 0px 26px;
  background-repeat: no-repeat;
  padding: 80px 0;
  /* position: relative; */
}

.diamond-section .diamond-content-wrapper {
  display: flex;
  max-width: 100%;
  /* padding: 0 10px; */
  margin: auto;
  flex-direction: row-reverse;
  justify-content: start;
  z-index: 1;
  flex-wrap: wrap;
}
.diamond-content-wrapper .diamond-content,
.diamond-content-wrapper .diamond-image {
  max-width: 100%;
  flex: 0 0 100%;
  padding-left: 15px;
  padding-right: 15px;
}

.diamond-image {
  padding: 0;
}

@media (min-width: 769px) {
  .diamond-content-wrapper .diamond-image {
    top: 0;
    position: absolute;
    left: 0;
    height: 100%;
    width: 50%;
    padding: 0;
  }
  .diamond-section .diamond-content-wrapper {
    max-width: 1200px;
  }
  .diamond-content-wrapper .diamond-content {
    padding-left: 40px;
  }
  .diamond-content-wrapper .diamond-content,
  .diamond-content-wrapper .diamond-image {
    max-width: 50%;
    flex: 0 0 50%;
  }
}

@media (min-width: 992px) {
  section.diamond-section {
    padding: 210px 0;
  }
}

.cutting-section .text-content h2 {
  font-size: 28px;
  color: #003c22;
  font-weight: 600;
  margin-bottom: 20px;
}

.cutting-section .text-content h4 {
  font-weight: 600;
  color: #003c22;
}

.cutting-section .text-content p,
.gemological_content p {
  font-size: 18px;
  color: #496d5b;
  line-height: 1.6;
  margin-bottom: 15px;
}
.gemological_content {
  text-align: start;
  z-index: 1;
}

.cutting-section .image-content,
.cutting-section .text-content,
.gemological .gemological_content,
.gemological .gemological_image_wrapper {
  max-width: 100%;
  flex: 0 0 100%;
  padding-left: 15px;
  padding-right: 15px;
}

.cutting-section .image-content img {
  max-width: 100%;
  height: auto;
  display: block;
  /* margin: 0 auto; */
  width: 100%;
}

.cutting-section .caption-bar {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #444;
  margin-top: 8px;
  padding: 0 10px;
}
.cutting-section .cutting-wrapper,
.gemological .gemological_content_wrapper {
  display: flex;
  max-width: 100%;
  /* padding: 0 10px; */
  margin: auto;
  justify-content: start;
  z-index: 1;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

/* Responsive Styles */
@media (min-width: 768px) {
  .cutting-section {
    flex-direction: row;
    align-items: center;
  }
  .cutting-section .cutting-wrapper,
  .gemological .gemological_content_wrapper {
    max-width: 1200px;
    gap: 0px;
  }
  .cutting-section .image-content,
  .cutting-section .text-content,
  .gemological .gemological_content,
  .gemological .gemological_image_wrapper {
    max-width: 50%;
    flex: 0 0 50%;
  }
}

@media (max-width: 991px) {
  ul.product-categories {
    margin-left: -5px;
    margin-right: -5px;
    flex-wrap: wrap;
  }

  li.cat-item {
    max-width: 31%;
    flex: 0 0 31%;
    padding: 0 15px !important;
  }
}

@media (max-width: 768px) {
  .section.categories {
    display: none;
  }
  .harmonie_swiper2 .section-title2 {
    font-size: 25px;
    margin-bottom: 20px;
    text-align: center;
  }
  .section.personal .halves .half .half-inner {
    max-width: 100%;
  }
  .google-reviews-slider {
    padding-top: 0;
    margin-top: 0;
  }
  .harmonie_swiper2 {
    padding-top: 0;
  }
}

@media (max-width: 576px) {
  li.cat-item {
    max-width: 48%;
    flex: 0 0 48%;
    padding: 0 15px !important;
  }
}

@media (max-width: 375px) {
  li.cat-item {
    max-width: 100%;
    flex: 0 0 100%;
    padding: 0 15px !important;
  }
}
.boxes.mobile-boxes.categories-1 {
  margin-bottom: 30px;
}

.boxes.mobile-boxes.categories-1 .box {
  width: 20%;
  padding: 5px;
}

.boxes.mobile-boxes.categories-1 .box .inner {
  padding: 0px;
}

.section.categories .boxes.categories-1 .box .image {
  height: 100%;
  width: 100%;
}

.section.categories .boxes.categories-1 .box .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.section.categories.categories-main-container .section-inner {
  max-width: 100%;
}

.boxes.mobile-boxes.categories-2 .box {
  width: 33.33%;
  padding: 5px;
}

.boxes.mobile-boxes.categories-2 .box .inner {
  padding: 0px;
}

.section.categories .boxes.categories-2 .box .image {
  height: 100%;
  width: 100%;
}

.section.categories .boxes.categories-2 .box .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.section.categories.categories-main-container .section-inner {
  max-width: 100%;
}

.section.sales .button {
    color: #fdfdfa;
}

.section.lab .button {
    color: #fdfdfa;
}