.fade-in {
  animation: fade-in 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.animate-in {
  animation: modalIn 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
  animation-iteration-count: 1;
}

.animate-away {
  animation: modalAway 1.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  animation-iteration-count: 1;
}

@keyframes reveal {
  0% {
    transform: translate(0, 100%);
  }
  100% {
    transform: translate(0, 0);
  }
}

@-webkit-keyframes modalIn {
  0% {
    transform: translateY(200%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

@keyframes modalIn {
  0% {
    transform: translateY(200%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

@-webkit-keyframes modalAway {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(200%);
  }
}

@keyframes modalAway {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(200%);
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

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

@-webkit-keyframes scaleMarker {
  from {
    opacity: 1;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(5);
    transform: scale(5);
  }
}

@keyframes scaleMarker {
  from {
    opacity: 1;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(5);
    transform: scale(5);
  }
}

.default-icon {
  width: 100%;
}

.default-icon img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center;
}

.--relative {
  position: relative;
}

.preventScrolling {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  display: block;
}

.overlap {
  position: relative;
  z-index: 2;
}

.section-heading {
  margin: 60px 0 40px 0;
  position: relative;
  display: inline-block;
  z-index: 1;
}

.section-heading:before {
  content: '';
  background: rgba(0, 172, 226, 0.7);
  position: absolute;
  height: 6px;
  width: 100%;
  bottom: 1px;
  z-index: -1;
}

.page-title {
  font-size: 36px;
  font-size: -webkit-calc(24px + (36 - 24) * ((100vw - 300px) / (1900 - 300)));
  font-size: -moz-calc(24px + (36 - 24) * ((100vw - 300px) / (1900 - 300)));
  font-size: calc(24px + (36 - 24) * ((100vw - 300px) / (1900 - 300)));
  line-height: 1.13;
  margin-top: 60px;
}

@media (max-width: 991px) {
  .page-title {
    margin-top: 0;
  }
}

.common-text {
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  line-height: 1.50;
}

.full-height, body, html {
  height: 100%;
}

.full-screen {
  height: calc(100vh - 200px);
}

@media (max-width: 991px) {
  .full-screen {
    height: calc(100vh - 260px);
  }
}

.body-padding {
  height: 198px;
}

@media (max-width: 991px) {
  .body-padding {
    height: 20px;
  }
}

.carousel {
  opacity: 0;
}

.carousel.loadSlider {
  opacity: 1;
}

/* Gotham */
@font-face {
  font-family: 'Gotham';
  src: url("../fonts/GothamPro-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url("../fonts/GothamPro-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url("../fonts/GothamPro-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url("../fonts/GothamPro-Italic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url("../fonts/GothamPro.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* icomoon */
@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon.eot?rpy6i7");
  src: url("../fonts/icomoon.eot?rpy6i7#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?rpy6i7") format("truetype"), url("../fonts/icomoon.woff?rpy6i7") format("woff"), url("../fonts/icomoon.svg?rpy6i7#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-size: 16px;
  line-height: 24px;
  font-family: 'Gotham', sans-serif;
  font-weight: 400;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  position: relative;
  font-family: 'Gotham', sans-serif;
  font-weight: 400;
  color: #333333;
  overflow-x: hidden;
  background: #ffffff;
}

ol, ul {
  list-style: none;
  font-size: 0;
}

ol li, ul li {
  font-size: 14px;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

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

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

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

.--light {
  font-weight: 300;
}

.--regular {
  font-weight: 400;
}

.--medium {
  font-weight: 500;
}

.--bold {
  font-weight: 700;
}

.--heavy {
  font-weight: 900;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Gotham', sans-serif;
}

.heading-1 {
  font-size: 64px;
  font-size: -webkit-calc(40px + (64 - 40) * ((100vw - 300px) / (1900 - 300)));
  font-size: -moz-calc(40px + (64 - 40) * ((100vw - 300px) / (1900 - 300)));
  font-size: calc(40px + (64 - 40) * ((100vw - 300px) / (1900 - 300)));
  line-height: 1.05;
}

.heading-2 {
  font-size: 36px;
  font-size: -webkit-calc(24px + (36 - 24) * ((100vw - 300px) / (1900 - 300)));
  font-size: -moz-calc(24px + (36 - 24) * ((100vw - 300px) / (1900 - 300)));
  font-size: calc(24px + (36 - 24) * ((100vw - 300px) / (1900 - 300)));
  line-height: 1.13;
}

.heading-3 {
  font-size: 24px;
  font-size: -webkit-calc(20px + (24 - 20) * ((100vw - 300px) / (1900 - 300)));
  font-size: -moz-calc(20px + (24 - 20) * ((100vw - 300px) / (1900 - 300)));
  font-size: calc(20px + (24 - 20) * ((100vw - 300px) / (1900 - 300)));
  line-height: 1.18;
}

.heading-4 {
  font-size: 18px;
  font-size: -webkit-calc(14px + (18 - 14) * ((100vw - 300px) / (1900 - 300)));
  font-size: -moz-calc(14px + (18 - 14) * ((100vw - 300px) / (1900 - 300)));
  font-size: calc(14px + (18 - 14) * ((100vw - 300px) / (1900 - 300)));
  line-height: 1.2;
}

.heading-5 {
  font-size: 16px;
  font-size: -webkit-calc(12px + (16 - 12) * ((100vw - 300px) / (1900 - 300)));
  font-size: -moz-calc(12px + (16 - 12) * ((100vw - 300px) / (1900 - 300)));
  font-size: calc(12px + (16 - 12) * ((100vw - 300px) / (1900 - 300)));
  line-height: 1.3;
}

.heading-6 {
  font-size: 14px;
  font-size: -webkit-calc(10px + (14 - 10) * ((100vw - 300px) / (1900 - 300)));
  font-size: -moz-calc(10px + (14 - 10) * ((100vw - 300px) / (1900 - 300)));
  font-size: calc(10px + (14 - 10) * ((100vw - 300px) / (1900 - 300)));
}

.icon-quote:before {
  content: "\e900";
  font-size: 79px;
}

.icon-arrow-left-white:before {
  content: "\e901";
  color: #dadada;
}

.icon-arrow-right-white:before {
  content: "\e902";
  color: #dadada;
}

.icon-arrow-blue:before {
  content: "\e903";
  color: #0993be;
}

.icon-clock:before {
  content: "\e904";
  color: #fff;
}

.icon-main-phone:before {
  content: "\e905";
}

.icon-contacts-email:before {
  content: "\e906";
  color: #fff;
}

.icon-cart:before {
  content: "\e907";
}

.icon-close:before {
  content: "\e909";
}

.icon-contacts-phone:before {
  content: "\e90a";
  color: #fff;
}

.icon-instagram:before {
  content: "\e90b";
  color: #fff;
}

.icon-facebook:before {
  content: "\e90c";
  color: #fff;
}

.footer-input:before {
  content: "";
  background-image: url("../../img/footer.input.svg");
  position: absolute;
  display: block;
  width: 50px;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.btn {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  color: #fff;
  font-family: 'Gotham', sans-serif;
  font-size: 16px;
  font-size: 16px;
  font-size: -webkit-calc(14px + (16 - 14) * ((100vw - 300px) / (1900 - 300)));
  font-size: -moz-calc(14px + (16 - 14) * ((100vw - 300px) / (1900 - 300)));
  font-size: calc(14px + (16 - 14) * ((100vw - 300px) / (1900 - 300)));
  display: inline-block;
  padding: 12px 24px;
  min-width: 100px;
  text-align: center;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.btn-primary {
  background: #00ACE2;
}

.btn-primary:hover {
  background: #0993BE;
}

.btn-transparent {
  border: 1px solid #00ACE2;
  border-radius: 5px;
  color: #333333;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.btn-transparent:hover {
  background: #0993BE;
  color: #ffffff;
}

.form-group {
  margin-bottom: 20px;
}

.form-group .wpcf7-not-valid-tip {
  text-align: left;
  font-size: 12px;
  line-height: 16px;
  color: #DA2F2F !important;
}

.form-input, .form-textarea {
  padding: 14px 16px;
  font-size: 14px;
  line-height: 20px;
  color: #333333;
  border-radius: 5px;
  border: 1px solid #DADADA;
  width: 100%;
}

.form-input::placeholder, .form-textarea::placeholder {
  color: #949494;
}

.form-input:focus, .form-textarea:focus {
  border: 1px solid #333333;
  outline: none;
  color: #333333;
}

.form-input.wpcf7-not-valid, .form-textarea.wpcf7-not-valid {
  border: 1px solid #DA2F2F;
}

.form-input.wpcf7-not-valid::placeholder, .form-textarea.wpcf7-not-valid::placeholder {
  color: #DA2F2F;
}

.form-textarea {
  padding: 12px 16px;
  font-family: inherit;
  font-weight: 400;
  font-size: inherit;
  text-align: inherit;
  resize: vertical;
}

.form-submit {
  border-radius: 5px;
}

.filter-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.filter-item label {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
}

.checkbox-filter {
  position: absolute;
  opacity: 1;
  cursor: pointer;
  -webkit-appearance: none;
}

.checkbox-filter:checked ~ .checkmark {
  background-color: #00ACE2;
  border: 1px solid #00ACE2;
}

.checkbox-filter:checked ~ .checkmark:after {
  display: block;
}

.checkmark {
  height: 16px;
  width: 16px;
  background-color: #fff;
  border-radius: 2px;
  border: 1px solid #DADADA;
  margin-right: 8px;
  padding-right: 15px;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 5.5px;
  width: 5.6px;
  height: 11px;
  border: solid white;
  border-width: 0 1.3px 1.3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.quantity {
  display: flex;
  align-items: center;
  margin: 0;
}

.quantity input[type=number] {
  margin: 0 10px;
  padding: 7px;
  width: 38px;
  height: 38px;
  border: 1px solid #00ACE2;
  border-radius: 5px;
  text-align: center;
  outline: none;
}

.quantity input[type=button] {
  border: none;
  background: transparent;
  font-size: 20px;
  line-height: 24px;
  outline: none;
  cursor: pointer;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=search]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

/* clears the 'X' from Chrome */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

.wpcf7-response-output {
  display: none !important;
}

.--percent {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 12px;
  color: #fff;
  background: #DA2F2F;
  border-radius: 100px;
  width: 46px;
  height: 16px;
  padding: 0 !important;
}

.--new-price {
  color: #DA2F2F;
}

.--old-price {
  color: #949494;
  text-decoration: line-through;
  line-height: 26px;
}

.--onsale, .--new, .--popular {
  background: #DA2F2F;
  position: absolute;
  top: 0;
  left: 0;
  width: 75px;
  height: 25px;
  border-radius: 5px 0px 0px 0px;
  color: #ffffff;
  font-size: 10px;
  line-height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.--new {
  background: #05923D;
}

.--popular {
  background: #00ACE2;
}

.nav-sale {
  position: absolute;
  right: -40px;
  top: -3px;
  font-size: 10px;
  line-height: 10px;
  width: 39px;
  height: 13px;
  background: #DA2F2F;
  border-radius: 100px;
  color: #fff;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
}

.filter-item .nav-sale {
  left: 80px;
  top: -2px;
}

.products-component .flickity-prev-next-button {
  margin: 0;
  width: 36px;
  height: 36px;
  top: -32px;
  right: 0;
  background: transparent;
}

.products-component .flickity-prev-next-button:after {
  color: #DADADA;
}

.products-component .flickity-prev-next-button.previous {
  right: 50%;
  border-radius: 5px 0px 0px 5px;
  border: 1px solid #DADADA;
  right: 35.5px;
}

.products-component .flickity-prev-next-button.next {
  border-radius: 0px 5px 5px 0px;
  border: 1px solid #DADADA;
  left: unset;
}

.products-carousel {
  width: 100%;
  padding-top: 40px;
}

.products-carousel__item {
  width: 25%;
  padding: 20px 20px 40px 20px;
  border-radius: 5px;
}

@media (max-width: 1200px) {
  .products-carousel__item {
    width: 33%;
  }
}

@media (max-width: 991px) {
  .products-carousel__item {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .products-carousel__item {
    width: 100%;
  }
}

.product {
  box-shadow: 0px 0px 20px rgba(218, 218, 218, 0.4);
  padding: 30px 20px 40px 20px;
  position: relative;
  height: 100%;
}

.product:hover a:after {
  opacity: 1;
  width: 100%;
}

.product:hover a span {
  opacity: 1;
  padding: 2px 24px 0 0;
}

.product-container {
  position: relative;
  min-height: 360px;
}

.product-photo {
  padding-bottom: 20px;
}

.product-photo img {
  width: 210px;
  height: 210px;
  object-fit: cover;
  margin: 0 auto;
}

.product-title {
  padding-bottom: 6px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-code {
  color: #949494;
  padding-bottom: 10px;
}

.product-price__new {
  font-weight: 500;
  margin-right: 10px;
  font-size: 18px;
}

.product-price__old {
  margin-right: 10px;
  font-size: 16px;
}

.product-button {
  position: absolute;
  bottom: -15px;
  right: 0;
  width: 100%;
}

.product-button a {
  position: relative;
  transition: all .2s ease;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-button a:before {
  content: "+";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  border-radius: 28px;
  background: #fff;
  border: 3px solid #00ACE2;
  width: 48px;
  height: 48px;
  z-index: 29;
  transition: all .3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.product-button a:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  border-radius: 28px;
  background: #00ACE2;
  border: 3px solid #00ACE2;
  width: 48px;
  height: 48px;
  z-index: 19;
  opacity: 0;
  transition: all .3s ease;
  color: #fff;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 43px;
}

.product-button a span {
  opacity: 0;
  position: absolute;
  font-size: 16px;
  top: 14px;
  line-height: 16px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  z-index: 29;
}

@media (max-width: 991px) {
  .product-button a:after {
    width: 100%;
    opacity: 1;
  }
  .product-button a span {
    opacity: 1;
    padding: 2px 24px 0 0;
  }
}

.banners {
  padding-top: 60px;
}

.banners-item {
  padding: 59px 36px;
  background: #F1F1F1;
  position: relative;
  height: 100%;
}

.banners-discount {
  width: 106px;
  height: 56px;
  position: absolute;
  background: #00ACE2;
  top: 0;
  right: 0;
  border-radius: 0px 5px 0px 0px;
  color: #ffffff;
  padding: 5px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.banners-discount__amount {
  font-size: 24px;
  line-height: 22px;
}

.banners-discount__text {
  font-size: 14px;
  line-height: 13px;
}

.banners-title {
  padding-bottom: 24px;
}

.banners-description {
  width: 72%;
  padding-bottom: 24px;
}

.banners-price {
  padding-bottom: 24px;
}

.banners-price__new {
  margin-right: 20px;
}

.banners-select {
  padding-bottom: 24px;
}

.banners-image {
  position: absolute;
  bottom: 0;
  right: 0;
}

.banners-image img {
  width: 250px;
  height: 250px;
  object-fit: cover;
}

@media (max-width: 991px) {
  .banners-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 46px 15px;
  }
  .banners-image {
    position: static;
    padding-bottom: 12px;
  }
  .banners-discount {
    width: 88px;
    height: 44px;
  }
  .banners-title {
    text-align: center;
    padding-bottom: 8px;
  }
  .banners-description {
    width: 100%;
    text-align: center;
    padding-bottom: 12px;
  }
  .banners-select {
    padding-bottom: 12px;
  }
  .banners-select span {
    padding: 4px 16px;
  }
}

.select-one {
  display: inline-block;
  max-width: 56%;
}

.select-one-list {
  display: flex;
  flex-wrap: wrap;
}

.select-one-list__item {
  margin: 0 12px 12px 0;
}

.select-one .form-radio {
  display: none;
}

.select-one .form-radio-number {
  color: #333333;
  border: 1px solid #00ACE2;
  padding: 4px 24px;
  border-radius: 5px;
  cursor: pointer;
  transition: all .2s ease;
  font-size: 16px;
  line-height: 24px;
}

.select-one .form-radio:checked + .form-radio-number {
  background: #009ACE;
  color: #fff;
}

@media (max-width: 991px) {
  .select-one {
    max-width: 100%;
  }
  .form-radio-number {
    padding: 4px 20px;
  }
}

.seo {
  margin: 60px 0;
}

.seo-component__title {
  margin-bottom: 30px;
}

.seo-component .entry-content {
  height: 315px;
  padding-right: 16px;
  overflow-y: scroll;
}

.seo-component .entry-content::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 1px #DDDDDD;
  border-radius: 0;
  background-color: #DDDDDD;
  width: 1px;
}

.seo-component .entry-content::-webkit-scrollbar {
  width: 3px;
  background-color: transparent;
}

.seo-component .entry-content::-webkit-scrollbar-thumb {
  border-radius: 0;
  -webkit-box-shadow: inset 0 0 6px transparent;
  background-color: #00ACE2;
}

.entry-content p {
  font-size: 16px;
  font-size: -webkit-calc(14px + (16 - 14) * ((100vw - 300px) / (1900 - 300)));
  font-size: -moz-calc(14px + (16 - 14) * ((100vw - 300px) / (1900 - 300)));
  font-size: calc(14px + (16 - 14) * ((100vw - 300px) / (1900 - 300)));
  font-weight: 400;
  line-height: 24px;
  color: #333333;
  margin-bottom: 24px;
}

@media (max-width: 991px) {
  .entry-content p {
    margin-bottom: 16px;
  }
}

.entry-content a {
  color: #0993BE;
  position: relative;
  font-size: 16px;
  line-height: 24px;
}

.entry-content a:after {
  content: "";
  position: absolute;
  background: #0993BE;
  height: 1px;
  bottom: -3px;
  left: 0;
  width: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.entry-content a:hover:after {
  width: 100%;
}

.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5, .entry-content h6 {
  font-weight: 500;
  width: 100%;
  text-align: center;
}

.entry-content h1 {
  font-size: 36px;
  font-size: -webkit-calc(24px + (36 - 24) * ((100vw - 300px) / (1900 - 300)));
  font-size: -moz-calc(24px + (36 - 24) * ((100vw - 300px) / (1900 - 300)));
  font-size: calc(24px + (36 - 24) * ((100vw - 300px) / (1900 - 300)));
  line-height: 1.05;
  margin-bottom: 30px;
}

.entry-content h2 {
  font-size: 36px;
  font-size: -webkit-calc(24px + (36 - 24) * ((100vw - 300px) / (1900 - 300)));
  font-size: -moz-calc(24px + (36 - 24) * ((100vw - 300px) / (1900 - 300)));
  font-size: calc(24px + (36 - 24) * ((100vw - 300px) / (1900 - 300)));
  line-height: 38px;
  margin-top: 12px;
  margin-bottom: 24px;
}

.entry-content h3 {
  font-size: 24px;
  font-size: -webkit-calc(20px + (24 - 20) * ((100vw - 300px) / (1900 - 300)));
  font-size: -moz-calc(20px + (24 - 20) * ((100vw - 300px) / (1900 - 300)));
  font-size: calc(20px + (24 - 20) * ((100vw - 300px) / (1900 - 300)));
  line-height: 36px;
  margin-bottom: 16px;
}

.entry-content h4 {
  font-size: 18px;
  font-size: -webkit-calc(14px + (18 - 14) * ((100vw - 300px) / (1900 - 300)));
  font-size: -moz-calc(14px + (18 - 14) * ((100vw - 300px) / (1900 - 300)));
  font-size: calc(14px + (18 - 14) * ((100vw - 300px) / (1900 - 300)));
  line-height: 22px;
}

.entry-content h5 {
  font-size: 16px;
  font-size: -webkit-calc(12px + (16 - 12) * ((100vw - 300px) / (1900 - 300)));
  font-size: -moz-calc(12px + (16 - 12) * ((100vw - 300px) / (1900 - 300)));
  font-size: calc(12px + (16 - 12) * ((100vw - 300px) / (1900 - 300)));
  line-height: 24px;
}

.entry-content h6 {
  font-size: 14px;
  font-size: -webkit-calc(10px + (14 - 10) * ((100vw - 300px) / (1900 - 300)));
  font-size: -moz-calc(10px + (14 - 10) * ((100vw - 300px) / (1900 - 300)));
  font-size: calc(10px + (14 - 10) * ((100vw - 300px) / (1900 - 300)));
}

.entry-content h4, .entry-content h5, .entry-content h6 {
  margin-bottom: 24px;
}

.entry-content img {
  margin-bottom: 30px;
  object-fit: cover;
  max-height: 500px;
}

.entry-content blockquote {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 30px;
}

.entry-content blockquote:before {
  content: '';
  background-image: url("../img/quote.svg");
  background-repeat: no-repeat;
  background-position: center;
  width: 79px;
  height: 79px;
}

.entry-content strong {
  font-weight: 700;
}

.entry-content ul {
  margin-bottom: 24px;
}

.entry-content ul li {
  font-size: -webkit-calc(14px + (16 - 14) * ((100vw - 300px) / (1900 - 300)));
  font-size: -moz-calc(14px + (16 - 14) * ((100vw - 300px) / (1900 - 300)));
  font-size: calc(14px + (16 - 14) * ((100vw - 300px) / (1900 - 300)));
  font-weight: 400;
  line-height: 24px;
  color: #333333;
  position: relative;
  padding-left: 18px;
}

.entry-content ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  background: #00ACE2;
}

.entry-content ol li {
  font-size: -webkit-calc(14px + (16 - 14) * ((100vw - 300px) / (1900 - 300)));
  font-size: -moz-calc(14px + (16 - 14) * ((100vw - 300px) / (1900 - 300)));
  font-size: calc(14px + (16 - 14) * ((100vw - 300px) / (1900 - 300)));
  font-weight: 400;
  line-height: 24px;
  counter-increment: li;
}

.entry-content ol li:before {
  content: counter(li) ".";
  color: #00ACE2;
  display: inline-block;
  padding-right: 5px;
}

#wpadminbar {
	margin-top: 40px;
}

@media (max-width: 767px) {
  .entry-content blockquote:before {
    content: '';
    background-size: cover;
    width: 56px;
    height: 36px;
    margin-bottom: 10px;
  }
}

.pagination {
  margin: 44px 0 60px 0;
}

.pagination .current {
  background: #00ACE2;
  color: #ffffff;
}

.pagination .current:hover {
  background: #00ACE2;
  color: #ffffff;
  border: none;
}

.pagination .next:hover, .pagination .prev:hover {
  border: none;
}

.pagination-mobile {
  display: none;
}

.page-numbers {
  width: 44px;
  height: 44px;
  border-radius: 2px;
  font-size: 24px;
  line-height: 36px;
  background: transparent;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  color: #333333;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.page-numbers:hover {
  background: #ffffff;
  color: #333333;
  border: 1px solid #00ACE2;
}

@media (max-width: 767px) {
  .pagination-desktop {
    display: none;
  }
  .pagination-mobile {
    display: block;
  }
}

.breadcrumbs {
  margin: 40px 0 30px 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
}

.breadcrumb li {
  margin-right: 20px;
  position: relative;
  font-size: 14px;
}

.breadcrumb li:last-child {
  margin: 0;
}

.breadcrumb li a {
  color: #949494;
  font-size: 14px;
}

.breadcrumb li a:before {
  content: '/';
  position: absolute;
  right: -15px;
}

@media (max-width: 767px) {
  .breadcrumbs {
    margin: 0 0 30px 0;
  }
}

.tabs {
  margin-top: 60px;
}

.tabs-list__item_link {
  font-size: 16px;
  line-height: 24px;
  position: relative;
}

.tabs-list__item_link:before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  background: rgba(0, 172, 226, 0.7);
  height: 2px;
  width: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.tabs-list__item_link.active:before, .tabs-list__item_link:hover:before {
  width: 100%;
}

.tabs-list__item:first-child {
  margin-right: 30px;
}

.tabs-wrap .tab-content {
  display: none;
  animation: fadeEffect .5s;
  -webkit-animation: fadeEffect .5s;
}

.tabs-wrap .tab-content.is-show {
  display: block;
}

.tabs-wrap .tab-content.active {
  display: block;
}

.single-product-info .product-tabs-category {
  margin: 6px 15px 6px 6px;
}

.single-product-info .tabs {
  margin-top: 0;
}

.single-product-info .tabs-list__item {
  margin: 6px;
}

.single-product-info .tabs-list__link {
  display: block;
  border: 1px solid #00ACE2;
  padding: 4px 24px;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  font-size: 16px;
  line-height: 24px;
}

.single-product-info .tabs-list__link.active, .single-product-info .tabs-list__link:hover {
  background: #009ACE;
  color: #fff;
}

.single-product-info .tabs-wrap {
  margin-top: 30px;
}

.single-product-info .tabs-wrap .tab-content {
  display: none;
  animation: fadeEffect .5s;
  -webkit-animation: fadeEffect .5s;
}

.single-product-info .tabs-wrap .tab-content.is-show {
  display: block;
}

.single-product-info .tabs-wrap .tab-content.active {
  display: block;
}

.banners .tabs, .banners .tabs-wrap {
  margin: 0;
}

.banners .tabs-list {
  padding-bottom: 24px;
  max-width: 56%;
}

.banners .tabs-list__item {
  margin: 0 12px 12px 0;
}

.banners-tabs-container {
  display: flex;
  align-items: center;
  padding-bottom: 24px;
}

@media (max-width: 991px) {
  .banners .tabs-list {
    max-width: 100%;
  }
  .banners-tabs-container {
    justify-content: center;
  }
}

@media (max-width: 991px) {
  .banners .tabs-list__item:first-child {
    margin: 0 12px 12px 0;
  }
  .banners .tabs-list__link {
    padding: 4px 20px;
  }
}

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

.mob-tab {
  display: none;
}

@media (max-width: 991px) {
  .mob-tab {
    display: block;
  }
}

@media (max-width: 767px) {
  .tabs-list__item:first-child {
    margin-right: 20px;
  }
  .tabs-list__item_link {
    font-size: 14px;
  }
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  right: -17px;
  bottom: 0;
  left: 0;
  z-index: 999;
  outline: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  -webkit-overflow-scrolling: touch;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.modal__body {
  position: absolute;
  display: flex;
  right: 0;
  top: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  overflow-x: hidden;
  padding: 30px 17px 30px 0;
  -webkit-overflow-scrolling: touch;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.modal__body:after, .modal__body:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 1px;
  width: 0;
}

.modal__content {
  display: table;
  position: relative;
  margin: auto;
  width: 100%;
  background-color: #ffffff;
}

.modal__close {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 20px;
  padding: 10px;
  cursor: pointer;
  transition: all 0.3s;
  backface-visibility: hidden;
}

.modal__close:hover {
  transform: rotate(180deg);
}

.animate-in {
  animation: modalIn 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  animation-iteration-count: 1;
}

.animate-away {
  animation: modalAway 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  animation-iteration-count: 1;
}

.callback-modal {
  max-width: 420px;
  text-align: center;
  padding: 40px 40px 20px 40px;
}

.callback-modal__heading {
  margin-bottom: 20px;
}

.callback-modal input[type=submit] {
  width: 100%;
}

.container {
  max-width: 1320px;
  margin: auto;
  padding: 0 15px;
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
}

.d-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
}

.m-auto {
  display: block;
  margin: auto;
}

.m-row {
  margin: 0 -15px;
}

@media (max-width: 575px) {
  .m-row {
    margin: 0 !important;
  }
}

.ml-auto {
  margin-left: auto;
}

.mr-auto {
  margin-right: auto;
}

.p-0 {
  padding: 0 !important;
}

@media (max-width: 575px) {
  .p-0 {
    padding: 0 15px !important;
  }
}

.p-zero {
  padding: 0 !important;
}

.m-0 {
  margin: 0 !important;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-54 {
  margin-bottom: 54px;
}

.column {
  padding: 0 15px;
}

@media (max-width: 575px) {
  .column {
    padding: 0;
  }
}

.align-self-middle {
  -webkit-align-self: center;
  align-self: center;
}

.align-self-end {
  -webkit-align-self: flex-end;
  align-self: flex-end;
}

.align-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.align-spaced {
  -webkit-justify-content: space-around;
  justify-content: space-around;
}

.align-middle {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.align-justify {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.align-right {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.align-left {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.align-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.align-start {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-start;
}

.align-self-bottom {
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
}

.align-content-justify {
  -ms-flex-line-pack: justify;
  align-content: space-between;
}

.flex-column {
  -webkit-flex-direction: column;
  flex-direction: column;
}

.col-xs-1 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 8.33333%;
  -ms-flex: 0 0 8.33333%;
  flex: 0 0 8.33333%;
  max-width: 8.33333%;
}

.col-xs-2 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 16.66667%;
  -ms-flex: 0 0 16.66667%;
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

.col-xs-3 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 25.0%;
  -ms-flex: 0 0 25.0%;
  flex: 0 0 25.0%;
  max-width: 25.0%;
}

.col-xs-4 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 33.33333%;
  -ms-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.col-xs-5 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 41.66666%;
  -ms-flex: 0 0 41.66666%;
  flex: 0 0 41.66666%;
  max-width: 41.66666%;
}

.col-xs-6 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50.0%;
  -ms-flex: 0 0 50.0%;
  flex: 0 0 50.0%;
  max-width: 50.0%;
}

.col-xs-7 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 58.33333%;
  -ms-flex: 0 0 58.33333%;
  flex: 0 0 58.33333%;
  max-width: 58.33333%;
}

.col-xs-8 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 66.66666%;
  -ms-flex: 0 0 66.66666%;
  flex: 0 0 66.66666%;
  max-width: 66.66666%;
}

.col-xs-9 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 75.0%;
  -ms-flex: 0 0 75.0%;
  flex: 0 0 75.0%;
  max-width: 75.0%;
}

.col-xs-10 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 83.33333%;
  -ms-flex: 0 0 83.33333%;
  flex: 0 0 83.33333%;
  max-width: 83.33333%;
}

.col-xs-11 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 91.66666%;
  -ms-flex: 0 0 91.66666%;
  flex: 0 0 91.66666%;
  max-width: 91.66666%;
}

.col-xs-12 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100.0%;
  -ms-flex: 0 0 100.0%;
  flex: 0 0 100.0%;
  max-width: 100.0%;
}

@media (min-width: 576px) {
  .col-sm-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25.0%;
    -ms-flex: 0 0 25.0%;
    flex: 0 0 25.0%;
    max-width: 25.0%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66666%;
    -ms-flex: 0 0 41.66666%;
    flex: 0 0 41.66666%;
    max-width: 41.66666%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50.0%;
    -ms-flex: 0 0 50.0%;
    flex: 0 0 50.0%;
    max-width: 50.0%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66666%;
    -ms-flex: 0 0 66.66666%;
    flex: 0 0 66.66666%;
    max-width: 66.66666%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75.0%;
    -ms-flex: 0 0 75.0%;
    flex: 0 0 75.0%;
    max-width: 75.0%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66666%;
    -ms-flex: 0 0 91.66666%;
    flex: 0 0 91.66666%;
    max-width: 91.66666%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100.0%;
    -ms-flex: 0 0 100.0%;
    flex: 0 0 100.0%;
    max-width: 100.0%;
  }
}

@media (min-width: 768px) {
  .col-md-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25.0%;
    -ms-flex: 0 0 25.0%;
    flex: 0 0 25.0%;
    max-width: 25.0%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66666%;
    -ms-flex: 0 0 41.66666%;
    flex: 0 0 41.66666%;
    max-width: 41.66666%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50.0%;
    -ms-flex: 0 0 50.0%;
    flex: 0 0 50.0%;
    max-width: 50.0%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66666%;
    -ms-flex: 0 0 66.66666%;
    flex: 0 0 66.66666%;
    max-width: 66.66666%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75.0%;
    -ms-flex: 0 0 75.0%;
    flex: 0 0 75.0%;
    max-width: 75.0%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66666%;
    -ms-flex: 0 0 91.66666%;
    flex: 0 0 91.66666%;
    max-width: 91.66666%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100.0%;
    -ms-flex: 0 0 100.0%;
    flex: 0 0 100.0%;
    max-width: 100.0%;
  }
}

@media (min-width: 992px) {
  .col-lg-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25.0%;
    -ms-flex: 0 0 25.0%;
    flex: 0 0 25.0%;
    max-width: 25.0%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66666%;
    -ms-flex: 0 0 41.66666%;
    flex: 0 0 41.66666%;
    max-width: 41.66666%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50.0%;
    -ms-flex: 0 0 50.0%;
    flex: 0 0 50.0%;
    max-width: 50.0%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66666%;
    -ms-flex: 0 0 66.66666%;
    flex: 0 0 66.66666%;
    max-width: 66.66666%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75.0%;
    -ms-flex: 0 0 75.0%;
    flex: 0 0 75.0%;
    max-width: 75.0%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66666%;
    -ms-flex: 0 0 91.66666%;
    flex: 0 0 91.66666%;
    max-width: 91.66666%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100.0%;
    -ms-flex: 0 0 100.0%;
    flex: 0 0 100.0%;
    max-width: 100.0%;
  }
}

@media (min-width: 1200px) {
  .col-xl-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25.0%;
    -ms-flex: 0 0 25.0%;
    flex: 0 0 25.0%;
    max-width: 25.0%;
  }
  .col-xl-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66666%;
    -ms-flex: 0 0 41.66666%;
    flex: 0 0 41.66666%;
    max-width: 41.66666%;
  }
  .col-xl-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50.0%;
    -ms-flex: 0 0 50.0%;
    flex: 0 0 50.0%;
    max-width: 50.0%;
  }
  .col-xl-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66666%;
    -ms-flex: 0 0 66.66666%;
    flex: 0 0 66.66666%;
    max-width: 66.66666%;
  }
  .col-xl-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75.0%;
    -ms-flex: 0 0 75.0%;
    flex: 0 0 75.0%;
    max-width: 75.0%;
  }
  .col-xl-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66666%;
    -ms-flex: 0 0 91.66666%;
    flex: 0 0 91.66666%;
    max-width: 91.66666%;
  }
  .col-xl-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100.0%;
    -ms-flex: 0 0 100.0%;
    flex: 0 0 100.0%;
    max-width: 100.0%;
  }
}

/* small phones grid*/
@media (max-width: 475px) {
  .col-exs-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-exs-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-exs-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25.0%;
    -ms-flex: 0 0 25.0%;
    flex: 0 0 25.0%;
    max-width: 25.0%;
  }
  .col-exs-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-exs-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66666%;
    -ms-flex: 0 0 41.66666%;
    flex: 0 0 41.66666%;
    max-width: 41.66666%;
  }
  .col-exs-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50.0%;
    -ms-flex: 0 0 50.0%;
    flex: 0 0 50.0%;
    max-width: 50.0%;
  }
  .col-exs-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-exs-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66666%;
    -ms-flex: 0 0 66.66666%;
    flex: 0 0 66.66666%;
    max-width: 66.66666%;
  }
  .col-exs-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75.0%;
    -ms-flex: 0 0 75.0%;
    flex: 0 0 75.0%;
    max-width: 75.0%;
  }
  .col-exs-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-exs-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66666%;
    -ms-flex: 0 0 91.66666%;
    flex: 0 0 91.66666%;
    max-width: 91.66666%;
  }
  .col-exs-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100.0%;
    -ms-flex: 0 0 100.0%;
    flex: 0 0 100.0%;
    max-width: 100.0%;
  }
}

.footer {
  padding: 60px 0 0 0;
  background: #333333;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  color: #ffffff;
}

.footer-title {
  padding-bottom: 30px;
}

.footer a {
  font-size: 14px;
  font-size: -webkit-calc(12px + (14 - 12) * ((100vw - 300px) / (1900 - 300)));
  font-size: -moz-calc(12px + (14 - 12) * ((100vw - 300px) / (1900 - 300)));
  font-size: calc(12px + (14 - 12) * ((100vw - 300px) / (1900 - 300)));
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.footer a:hover, .footer a:hover i:before {
  color: #00ACE2;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.footer i:before {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.footer-list__item {
  padding-bottom: 10px;
}

.footer-list__item i:before {
  padding-right: 12px;
}

.footer-list .menu-item {
  padding-bottom: 10px;
}

.footer-schedule {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}

.footer-subscribe {
  max-width: 330px;
}

.footer-subscribe form {
  position: relative;
}

.footer-subscribe__input {
  width: 100%;
  padding: 8px 36px 8px 16px;
  background: transparent;
  border: 1px solid #949494;
  color: #DADADA;
  border-radius: 5px;
}

.footer-subscribe__input::placeholder {
  color: #949494;
}

.footer-subscribe__input:focus {
  border: 1px solid #DADADA;
  outline: none;
  filter: brightness(2);
}

.footer-subscribe__input:focus + .footer-subscribe__submit {
  filter: brightness(2);
}

.footer-subscribe__submit {
  background: url("../img/footer.input.svg");
  border: none;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 34px;
}

.footer-form {
  padding-bottom: 40px;
}

.footer-form .mc4wp-response {
  padding-top: 10px;
}

.footer-subtitle {
  padding-bottom: 16px;
}

.footer-socials-list__item:first-of-type {
  position: relative;
}

/* .footer-socials-list__item:first-of-type:before {
  content: '';
  position: absolute;
  height: 100%;
  width: 1px;
  background: #fff;
  right: 12px;
}
*/
.footer-socials-list__item {
  padding-right: 30px;
}

.footer-socials-list__item i {
  padding-right: 5px;
}

.footer-copyright {
  padding: 60px 0 25px 0;
  width: 100%;
}

.footer-copyright .footer-column {
  font-size: 14px;
}

.footer-copyright a {
  font-size: 14px;
}

.footer-copyright a:hover {
  color: #ffffff;
}

.footer-copyright a:hover span {
  color: #00ACE2;
}

.footer-copyright span {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

@media (max-width: 991px) {
  .footer {
    padding: 30px 0 0 0;
  }
  .footer .row {
    flex-direction: column;
    align-items: center;
  }
  .footer-contacts, .footer-information, .footer-catalog, .footer-subscribe {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
  }
  .footer-list {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-list .menu-item {
    padding-bottom: 8px;
  }
  .footer-title {
    padding-bottom: 15px;
  }
  .footer-subtitle {
    text-align: center;
  }
  .footer-form {
    width: 80%;
  }
  .footer-socials-list__item:last-child {
    padding: 0;
  }
  .footer-copyright {
    flex-direction: column;
    align-items: center;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 0;
  background: #ffffff;
  z-index: 99;
}

.header-top {
  position: relative;
  background: #00ACE2;
  color: #fff;
  padding: 8px 0 9px 0;
}

.header-top-logo {
  display: none;
}

.header-top .menu-item {
  margin-right: 36px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.header-top .menu-item:hover {
  color: #8CE3FF;
}

.header-top .menu-item a {
  font-size: 16px;
  font-size: -webkit-calc(14px + (16 - 14) * ((100vw - 300px) / (1900 - 300)));
  font-size: -moz-calc(14px + (16 - 14) * ((100vw - 300px) / (1900 - 300)));
  font-size: calc(14px + (16 - 14) * ((100vw - 300px) / (1900 - 300)));
}

.header-top .menu-item.current-menu-item {
  color: #8CE3FF;
}

.header-top .menu-mobile {
  display: none;
}

.header-top .header-search {
  display: none;
}

.header-lang {
  width: 100px;
}

.header-lang-list {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-lang-list .lang-item:nth-child(2) {
  padding-left: 40px;
}

.header-lang-list .lang-toggle {
  position: absolute;
  right: 36px;
  width: 25px;
  background: transparent;
  height: 10px;
  border: 1px solid #ffffff;
  border-radius: 100px;
}

.header-lang-list .lang-toggle:before {
  content: '';
  position: absolute;
  right: -1px;
  top: -1px;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: #ffffff;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.header-lang-list .lang-toggle.lang-item-ru:before {
  right: -1px;
}

.header-lang-list .lang-toggle.lang-item-uk:before {
  left: -1px;
}

.header-lang-list__item {
  font-size: 12px;
  line-height: 24px;
}

.header-primary {
  padding: 21px 0;
}

.header-logo__container a, .header-logo__container span {
  font-size: 30px;
  font-size: -webkit-calc(22px + (30 - 22) * ((100vw - 300px) / (1900 - 300)));
  font-size: -moz-calc(22px + (30 - 22) * ((100vw - 300px) / (1900 - 300)));
  font-size: calc(22px + (30 - 22) * ((100vw - 300px) / (1900 - 300)));
  line-height: 42px;
  font-weight: 500;
}

.header-logo__container span {
  color: #00ACE2;
}

.header-logo .company-description span {
  font-size: 10px;
  line-height: 14px;
  display: block;
  width: 230px;
}

.header-logo .company-description h1 {
  font-size: 10px;
  line-height: 14px;
  display: block;
  width: 230px;
}

.header-search {
  position: relative;
  width: 25vw;
}

.header-search form {
  display: flex;
}

.header-search-input {
  padding: 6px 16px;
  border-radius: 5px;
  border: 1px solid #DADADA;
  width: 100%;
}

.header-search-btn {
  border: none;
  background: transparent;
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  outline: none;
}

.header-phone {
  display: flex;
  align-items: center;
}

.header-phone__image {
  padding-right: 18px;
}

.header-phone__image i {
  font-size: 24px;
}

.header-phone .phone-number {
  font-size: 18px;
  line-height: 22px;
}

.header-phone .phone-schedule {
  font-size: 12px;
  line-height: 12px;
  color: #949494;
  padding-top: 2px;
}

.header-contact-us button {
  padding: 6px 19px;
  border-radius: 5px;
  line-height: 24px;
}

.header-cart {
  position: relative;
}

.header-cart a {
  display: block;
}

.header-cart i {
  font-size: 24px;
}

.header-cart .cart-badge {
  width: 16px;
  height: 16px;
  border-radius: 100%;
  background: #00ACE2;
  color: #ffffff;
  position: absolute;
  top: -7px;
  left: -7px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-cart .cart-badge span {
  font-size: 12px;
}

.header.--up {
  top: -43px;
  transition: top 0.2s ease-in-out;
}

@media (max-width: 767px) {
  .header.--up {
    top: 0;
  }
}

.header.--down {
  top: 0;
  transition: top 0.2s ease-in-out;
}

@media (max-width: 767px) {
  .header.--down {
    top: 0;
  }
}

.header .categories-dropdown, .header .categories-dropdown-mobile {
  padding: 11px 0;
  position: relative;
  cursor: pointer;
}

.header .categories-dropdown:after, .header .categories-dropdown-mobile:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: #DADADA;
}

.header .categories-text {
  padding-left: 10px;
}

.header .categories-hamburger {
  position: absolute;
  top: calc(50% - 6px);
  width: 20px;
  right: 16px;
  height: 12px;
}

.header .categories-hamburger span {
  position: absolute;
  width: 20px;
  height: 2px;
  border-radius: 100px;
  background: #00ACE2;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.header .categories-hamburger span:nth-child(1) {
  top: 0;
}

.header .categories-hamburger span:nth-child(2) {
  top: 6px;
}

.header .categories-hamburger span:nth-child(3) {
  top: 12px;
}

.header .categories-hamburger.open span:nth-child(1) {
  top: 6px;
  transform: rotate(135deg);
}

.header .categories-hamburger.open span:nth-child(2) {
  background: transparent;
}

.header .categories-hamburger.open span:nth-child(3) {
  top: 6px;
  transform: rotate(-135deg);
}

.header .categories-nav .categories-hamburger {
  top: 17px;
  right: 17px;
}

.header .categories-nav .categories-nav__item_heading {
  position: absolute;
  top: 11px;
  left: 10px;
}

.header .categories-navigation {
  padding: 11px 0 11px 64px;
}

.--mobile {
  display: none;
}

.hamburger {
  position: absolute;
  top: 16px;
  right: 22px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  display: none;
}

.hamburger span {
  position: absolute;
  display: block;
  height: 2px;
  background: #ffffff;
  width: 20px;
  left: 0;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 5px;
}

.hamburger span:nth-child(3) {
  top: 10px;
}

.hamburger.open span:nth-child(1) {
  top: 4px;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

.hamburger.open span:nth-child(2) {
  background: transparent;
}

.hamburger.open span:nth-child(3) {
  top: 4px;
  -webkit-transform: rotateZ(-45deg);
  transform: rotateZ(-45deg);
}

.header-lines {
  position: relative;
}

.header-lines:before, .header-lines:after {
  content: "";
  position: absolute;
  width: 100%;
  background: #DADADA;
  height: 1px;
}

.header-lines:before {
  top: 0;
}

.header-lines:after {
  bottom: 0;
}

.categories-container {
  position: absolute;
  top: 46px;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  background: #ffffff;
  width: 100%;
  background: #FFFFFF;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
  border-radius: 0px 0px 10px 10px;
  z-index: 20;
  padding: 45px 20px 20px 20px;
}

.categories-container.active {
  visibility: visible;
  opacity: 1;
}

.categories-container .categories-nav__item {
  margin-bottom: 6px;
}

.categories-container .categories-nav__item a {
  position: relative;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.categories-container .categories-nav__item a:before {
  content: '';
  position: absolute;
  width: 0;
  height: 1.3px;
  display: block;
  margin-top: 0px;
  right: 0;
  bottom: -3px;
  background: #00ACE2;
  transition: width .4s ease;
  -webkit-transition: width .4s ease;
}

.categories-container .categories-nav__item:hover a {
  color: #00ACE2;
}

.categories-container .categories-nav__item:hover a:before {
  width: 100%;
  left: 0;
}

.menu-categories ul {
  display: flex;
  justify-content: space-between;
}

.menu-categories ul .menu-item {
  position: relative;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.menu-categories ul .menu-item:hover {
  color: #00ACE2;
}

.menu-categories ul .menu-item a {
  font-size: 16px;
  font-size: -webkit-calc(14px + (16 - 14) * ((100vw - 300px) / (1900 - 300)));
  font-size: -moz-calc(14px + (16 - 14) * ((100vw - 300px) / (1900 - 300)));
  font-size: calc(14px + (16 - 14) * ((100vw - 300px) / (1900 - 300)));
  display: block;
}

.menu-categories ul .menu-item.current-menu-item {
  color: #00ACE2;
}

@media (max-width: 991px) {
  .header {
    position: static;
  }
  .header-top {
    position: fixed;
    width: 100%;
    z-index: 99;
  }
  .header-top-logo {
    display: block;
  }
  .header-top .navbar {
    position: fixed;
    height: calc(100vh - 41px);
    overflow-y: auto;
    background: #00ACE2;
    width: 100%;
    left: -100vw;
    top: 40px;
    z-index: 99;
    padding: 15px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  .header-top .navbar.active {
    left: 0;
  }
  .header-top .menu {
    display: flex;
    flex-direction: column;
  }
  .header-top .menu-item {
    margin: 0 0 16px 0;
  }
  .header-top .menu-mobile {
    display: block;
    padding-top: 8px;
  }
  .header-top .menu-mobile__item {
    margin: 0 0 16px 0;
  }
  .header-top .menu-mobile__item i {
    padding-right: 8px;
  }
  .header-top .menu-mobile__item button {
    margin-top: 8px;
    background: #ffffff;
    color: #00ACE2;
    border-radius: 5px;
  }
  .header-primary {
    padding: 50px 0 20px 0;
  }
  .header-primary .container {
    flex-direction: column;
  }
  .header-logo {
    display: none;
  }
  .header-lang {
    display: none;
    position: absolute;
    right: 120px;
    top: 0;
    height: 100%;
    width: unset;
  }
  .header-cart {
    position: fixed;
    top: 10px;
    right: 64px;
    z-index: 99;
  }
  .header-cart .cart-badge {
    background: #fff;
    color: #00ACE2;
  }
  .header-cart i {
    color: #fff;
  }
  .header-search {
    width: 90vw;
    margin-bottom: 20px;
  }
  .header-phone {
    margin-bottom: 20px;
  }
  .header .categories-navigation {
    padding: 11px;
  }
  .header .categories-navigation .menu {
    display: flex;
    justify-content: center;
  }
  .header .categories-navigation .menu li:not(:first-child) {
    display: none;
  }
  .header .hamburger {
    display: block;
  }
  .menu-primary > ul {
    flex-direction: column;
  }
  .--mobile {
    display: block;
    top: 15px;
    right: 25px;
    width: 100px;
    height: unset;
  }
}

.flickity-enabled {
  position: relative;
  z-index: 1;
}

.flickity-enabled:focus {
  outline: none;
}

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.flickity-prev-next-button {
  position: absolute;
  bottom: 0;
  width: 40px;
  height: 40px;
  margin: 0 10px;
  cursor: pointer;
  border: 0;
  outline: none;
  background: #00ACE2;
  border-radius: 100px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.flickity-prev-next-button:focus {
  outline: none;
}

.flickity-prev-next-button svg {
  display: none;
}

.flickity-prev-next-button:after {
  content: '';
  font-family: 'icomoon' !important;
  color: #ffffff;
  font-size: 10px;
}

.flickity-prev-next-button.previous:after, .flickity-prev-next-button.next:after {
  content: "";
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.flickity-prev-next-button.previous {
  right: 50%;
}

.flickity-prev-next-button.previous:after {
  content: "\e901";
}

.flickity-prev-next-button.next {
  left: 50%;
}

.flickity-prev-next-button.next:after {
  content: "\e902";
}

.flickity-page-dots {
  width: 100%;
  z-index: 10;
  padding: 50px 0 0 0;
  list-style: none;
  text-align: center;
  line-height: 1;
  transition: all 0.3s ease;
  max-width: 1320px;
  margin: auto;
  padding: 0 15px;
  text-align: left;
  margin-top: -30px;
}

@media (min-width: 575px) {
  .flickity-page-dots {
    bottom: 35px;
  }
}

.flickity-page-dots .dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  display: inline-block;
  cursor: pointer;
  background: rgba(47, 78, 116, 0.5);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.flickity-page-dots .dot:hover {
  background-color: #00ACE2;
  transform: scale(1.1);
}

.flickity-page-dots .dot + .dot {
  margin-left: 10px;
}

.flickity-page-dots .dot.is-selected {
  background-color: #00ACE2;
}

.flickity-page-dots .dot.is-selected:before {
  content: '';
  opacity: 1;
}

.woocommerce-NoticeGroup,
.woocommerce-NoticeGroup-updateOrderReview {
  display: none;
}

.input-text {
  padding: 14px 16px;
  font-size: 14px;
  line-height: 20px;
  color: #333333;
  border-radius: 5px;
  border: 1px solid #DADADA;
  width: 100%;
  margin-bottom: 20px;
}

.input-text::placeholder {
  color: #949494;
}

.input-text:focus {
  border: 1px solid #333333;
  outline: none;
}

#place_order {
  background: #00ACE2;
  border: 1px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  color: #fff;
  font-family: 'Gotham', sans-serif;
  font-size: 16px;
  font-size: 16px;
  font-size: -webkit-calc(14px + (16 - 14) * ((100vw - 300px) / (1900 - 300)));
  font-size: -moz-calc(14px + (16 - 14) * ((100vw - 300px) / (1900 - 300)));
  font-size: calc(14px + (16 - 14) * ((100vw - 300px) / (1900 - 300)));
  display: inline-block;
  padding: 12px 24px;
  min-width: 100px;
  text-align: center;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

#place_order:hover {
  background: #0993BE;
}

.woocommerce-invalid-required-field input, .woocommerce-invalid-email input {
  border: 1px solid #DA2F2F;
}

.woocommerce-invalid-required-field input::placeholder, .woocommerce-invalid-email input::placeholder {
  color: #DA2F2F;
}

.woocommerce-invalid-required-field input:focus, .woocommerce-invalid-email input:focus {
  border: 1px solid #DA2F2F;
}

.woocommerce-billing-fields__field-wrapper label {
  display: none;
}

.woocommerce-billing-fields h3 {
  display: none;
}

.woocommerce-Price-amount {
  font-weight: 500;
}

.woocommerce-shipping-fields, .shop_table {
  display: none;
}

#order_review_heading {
  display: none;
}

.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1 {
  float: none !important;
  width: 100% !important;
}

.woocommerce-checkout #payment {
  background: transparent !important;
}

.woocommerce-notices-wrapper {
  display: none;
}

.wp-admin-bar-view-store {
  display: none !important;
}

@keyframes showup {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes slidein {
  0% {
    margin-left: -800px;
  }
  20% {
    margin-left: -800px;
  }
  35% {
    margin-left: 0px;
  }
  100% {
    margin-left: 0px;
  }
}

@keyframes reveal {
  0% {
    opacity: 0;
    width: 0px;
  }
  20% {
    opacity: 1;
    width: 0px;
  }
  30% {
    width: 355px;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    width: 355px;
  }
}

.primary-screen {
  position: relative;
  height: calc(100% - 100px);
  margin-top: 100px;
}

.primary-screen:before {
  content: '';
  background: #00ACE2;
  width: 33%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}

.primary-screen-carousel {
  height: 100%;
}

.primary-screen-carousel__item {
  width: 100%;
  height: 100%;
}

.primary-screen__container {
  height: 100%;
}

.primary-screen__title {
  padding-top: 70px;
}

.primary-screen__description {
  padding-top: 36px;
  width: 80%;
}

.primary-screen__details {
  padding-top: 32px;
}

.primary-screen__details .quantity {
  margin-right: 10px;
}

.primary-screen__new-price {
  margin-right: 20px;
  font-size: 36px;
  line-height: 34px;
}

.primary-screen__old-price {
  margin-right: 20px;
}

.primary-screen__add {
  padding-top: 32px;
}

.primary-screen__add button {
  border-radius: 100px;
}

.primary-screen__icon {
  position: absolute;
  top: 40px;
  left: auto;
  right: 0;
  width: 48%;
  height: 100%;
  display: flex;
  align-items: center;
}

.primary-screen__icon img {
  width: 440px;
  height: 440px;
  object-fit: cover;
}

.primary-screen .flickity-page-dots {
  position: absolute;
  max-width: 1320px;
  padding: 0 15px;
  margin: auto;
  width: 100%;
  left: 0;
  right: 0;
  text-align: left;
  bottom: 12px;
  z-index: 10;
  list-style: none;
  text-align: center;
  line-height: 1;
  transition: all 0.3s ease;
  text-align: left;
}

@media (max-width: 991px) {
  .primary-screen {
    height: auto;
    margin-top: 20px;
  }
  .primary-screen:before {
    display: none;
  }
  .primary-screen-carousel__item {
    height: unset;
    display: flex;
    flex-direction: column-reverse;
  }
  .primary-screen-carousel__item form {
    display: flex;
    flex-direction: column-reverse;
  }
  .primary-screen__title {
    text-align: center;
    font-size: 24px;
    line-height: 28px;
    padding-top: 16px;
  }
  .primary-screen__title h2 {
    font-size: 30px;
  }
  .primary-screen__description {
    text-align: center;
    width: 100%;
    padding: 8px 15px 26px 15px;
    font-size: 16px;
    line-height: 24px;
  }
  .primary-screen__background {
    display: none;
  }
  .primary-screen__icon {
    position: static;
    width: 100%;
  }
  .primary-screen__icon img {
    margin: 0 auto;
    width: 200px;
    height: 200px;
  }
  .primary-screen__details {
    padding-top: 20px;
    justify-content: center;
  }
  .primary-screen__details .quantity {
    margin-right: 10px;
  }
  .primary-screen__new-price {
    margin-right: 10px;
    font-size: 20px;
  }
  .primary-screen__old-price {
    margin-right: 10px;
  }
  .primary-screen__quantity {
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
  }
  .primary-screen__add {
    text-align: center;
    padding-top: 16px;
  }
  .primary-screen .flickity-page-dots {
    position: static;
    bottom: -25px;
    text-align: center;
    padding: 40px 15px 0 15px;
  }
}

.categories-sidenav {
  /* position: sticky; */
  padding-bottom: 40px;
  top: 200px;
}

@media (max-width: 991px) {
  .categories-sidenav {
    top: 30px;
  }
}

.categories-sidenav .section-heading {
  margin-top: 34px;
}

.categories-filter {
  z-index: 99;
  background: #fff;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.categories-filter__subtitle {
  padding: 4px 0 0 10px;
  margin-bottom: 10px;
}

.categories-filter__items .filter-item {
  padding-left: 38px;
  position: relative;
}

.categories-filter__items .filter-item a:before {
  content: '';
  width: 18px;
  height: 18px;
  position: absolute;
  border: 1px solid #DADADA;
  border-radius: 100px;
  left: 10px;
  top: 4px;
}

.categories-filter__items .filter-item.active a:before {
  background-color: #00ACE2;
  background-image: url("../img/checkmark.svg");
  background-repeat: no-repeat;
  background-position: center;
}

.categories-filter__items .count {
  padding-left: 10px;
}

.categories-products {
  padding: 115px 15px 0 15px;
}

@media (max-width: 767px) {
  .categories-products {
    padding: 15px 15px 0 15px;
  }
}

.categories-empty {
  color: #BBBBBB;
}

.single-product .product-code {
  margin-bottom: 20px;
}

.single-product__title h1 {
  margin-bottom: 20px;
  font-weight: 500;
}

.single-product__description {
  margin-bottom: 20px;
  color: #949494;
}

.single-product__select {
  padding-bottom: 30px;
  max-width: 100%;
}

.single-product__select_size {
  padding-right: 15px;
}

.single-product__details {
  padding-bottom: 30px;
}

.single-product__details div {
  margin-right: 10px;
}

.single-product__details .--new-price {
  color: #333333;
  width: 160px;
  text-align: center;
}

.single-product__add button {
  border-radius: 100px;
  font-size: 12px;
  padding: 12px 12px;
}

.single-product-tab-description {
  margin-top: 30px;
}

.single-product .terms-of-delivery {
  margin-top: 30px;
  display: inline-block;
  background: rgba(0, 172, 226, 0.1);
  padding: 11px 20px;
  position: relative;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.single-product .terms-of-delivery:before {
  content: "";
  position: absolute;
  background: #00ACE2;
  height: 100%;
  width: 2px;
  left: 0;
  top: 0;
}

.single-product .terms-of-delivery:hover {
  background: rgba(0, 172, 226, 0.2);
}

.table-wrap {
  margin-top: 40px;
}

.table-wrap table {
  width: 100%;
}

.table-wrap td {
  padding: 8px 20px;
  font-size: 14px;
  line-height: 20px;
  vertical-align: middle;
}

.table-wrap tr:nth-child(odd) {
  background: #F4F4F4;
}

.table-wrap tr:nth-child(odd) td:first-child {
  width: 65%;
}

.table-wrap tr:nth-child(even) {
  background: #ffffff;
}

.single-product__details div:nth-child(3) {
  margin-right: 0;
}

@media (max-width: 767px) {
  .single-product-info .product-tabs-category {
    margin: 0;
  }
  .single-product__details {
    flex-direction: column;
  }
  .single-product__details div {
    margin-bottom: 10px;
  }
  .single-product__details div:nth-child(3) {
    margin-bottom: 0;
  }
  .single-product-image img {
    max-height: 300px;
  }
  .single-product .input-number {
    margin: 0 7px;
    width: 32px;
    height: 32px;
  }
  .single-product .product-code {
    margin: 0;
  }
}

.cart-heading {
  width: 100%;
  position: relative;
  text-align: center;
  margin: 40px 0 30px 0;
  padding: 15px 0;
}

.cart-heading:before {
  content: '';
  background: #DADADA;
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -30px;
  left: 0;
}

.cart-options {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  bottom: 0;
}

.cart-options-item {
  color: #949494;
}

.cart-item {
  width: 100%;
  position: relative;
  padding: 30px 0;
}

.cart-item .row:first-child {
  align-items: center;
}

.cart-item .row:first-child .total-price__text {
  display: none;
  font-size: 12px;
  line-height: 16px;
  color: #949494;
}

.cart-item:before {
  content: '';
  background: #DADADA;
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
}

.cart-item-main {
  display: flex;
}

.cart-item__image img {
  width: 200px;
  height: 200px;
  object-fit: cover;
}

.cart-item__code {
  color: #949494;
  font-size: 12px;
  line-height: 16px;
  margin: 10px 0;
}

.cart-item-total span .total-price__text {
  display: none;
}

.cart-item-total span {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}

.cart-item__price {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.cart-item__price span {
  padding-right: 15px;
}

.cart-item__price .--new-price {
  color: #333333;
}

.cart-item__remove {
  width: 20px;
  height: 20px;
  position: relative;
  display: block;
}

.cart-item__remove:before, .cart-item__remove:after {
  content: '';
  position: absolute;
  top: 10px;
  right: 0;
  background: #333333;
  width: 100%;
  height: 1.5px;
  transform: rotate(45deg);
}

.cart-item__remove:after {
  transform: rotate(-45deg);
}

.cart .quantity {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}

.cart .quantity span {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}

.cart-result {
  padding: 40px 0 60px 0;
}

.cart-result-price {
  padding-right: 40px;
}

.empty-cart {
  height: calc(100vh - 200px);
}

.empty-cart-text {
  color: #BBBBBB;
  font-size: 16px;
  line-height: 24px;
  margin-top: 14px;
  text-align: center;
}

@media (max-width: 991px) {
  .cart-heading {
    margin: 10px 15px 20px 15px;
    padding: 0;
  }
  .cart-options {
    display: none;
  }
  .cart-item__title {
    margin-top: 20px;
  }
  .cart-item .row:first-child {
    flex-direction: column;
    align-items: center;
  }
  .cart-item .row:first-child .cart-item-total {
    display: flex;
    align-items: center;
  }
  .cart-item .row:first-child .total-price__text {
    display: block;
    padding-right: 10px;
  }
  .cart-item .column:nth-child(3) {
    flex-direction: column;
  }
  .cart-item .cart-column {
    text-align: center;
  }
  .cart-item .cart-column:nth-child(2) {
    margin: 0;
  }
  .cart-item-main {
    flex-direction: column;
  }
  .cart-item-control {
    flex-direction: column;
  }
  .cart-item__remove {
    position: absolute;
    top: 30px;
    right: 30px;
  }
  .cart-item__image {
    margin: 0;
  }
  .cart-item__info {
    text-align: center;
  }
  .cart-item__price {
    margin-bottom: 10px;
    justify-content: center;
  }
  .cart-item__price span {
    padding: 0 10px;
  }
  .cart-column {
    margin-bottom: 10px;
  }
  .cart-result {
    padding: 20px 0;
    flex-direction: column;
  }
  .cart-result-price {
    padding: 0 0 20px 0;
  }
}

.checkout {
  margin-bottom: 20px;
}

.checkout-heading {
  margin: 44px 0 40px 0;
}

.checkout-title {
  margin-bottom: 20px;
}

.checkout-form {
  position: -webkit-sticky;
  position: sticky;
  top: 210px;
  margin-bottom: 20px;
}

.checkout-products-item {
  padding: 15px;
  background: #FFFFFF;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  position: relative;
  margin-bottom: 20px;
}

.checkout-products-item__image {
  margin-right: 16px;
}

.checkout-products-item__image img {
  width: 87px;
  height: 87px;
  object-fit: cover;
}

.checkout-products-item__title {
  padding-bottom: 10px;
}

.checkout-products-item__quantity {
  position: absolute;
  bottom: 30px;
  right: 15px;
}

@media (max-width: 991px) {
  .checkout-form {
    top: 60px;
  }
  .checkout-products-item__quantity {
    bottom: 15px;
  }
}

@media (max-width: 767px) {
  .checkout-heading {
    margin: 20px 0 40px 0;
  }
  .checkout form .row {
    flex-direction: column-reverse;
  }
  .checkout-form {
    position: static;
  }
}

.additional {
  text-align: center;
}

.additional-heading {
  margin-bottom: 30px;
}

.additional-text {
  margin-bottom: 30px;
}

.additional-search__heading {
  margin: 30px 0 40px 0;
}

.additional-search__text {
  color: #BBBBBB;
  font-size: 16px;
  line-height: 24px;
  margin-top: 30px;
}

.additional-container {
  margin-top: 80px;
}

.page-not-found-heading {
  font-size: 120px;
  line-height: 120px;
}

@media (max-width: 991px) {
  .additional-container {
    margin-top: 0;
  }
  .additional-heading {
    margin-bottom: 15px;
  }
  .additional-text {
    margin-bottom: 15px;
  }
  .additional-search__heading {
    margin: 10px 0 40px 0;
  }
  .page-not-found-heading {
    font-size: 80px;
    line-height: 80px;
  }
}

.contacts {
  position: relative;
}

.contacts-heading {
  margin: 60px 0 40px 0;
}

.contacts-column__heading {
  color: #949494;
  padding-bottom: 16px;
}

.contacts-content {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}

.contacts-content a {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}

.contacts-helper {
  display: block;
  font-size: 14px;
  line-height: 20px;
  color: #949494;
}

.contacts-form {
  position: absolute;
  top: -70px;
  right: 15px;
  background: #FFFFFF;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  padding: 40px;
}

.contacts-form__heading {
  text-align: center;
  margin-bottom: 20px;
}

.contacts-form .form-submit {
  width: 100%;
}

.contacts-map {
  margin: 40px 0;
  height: 700px;
  width: 100%;
}

.contacts iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 1200px) {
  .contacts-form {
    top: 70px;
  }
}

@media (max-width: 767px) {
  .contacts-heading {
    margin: 0px 0 20px 0;
  }
  .contacts-column__heading {
    padding-bottom: 10px;
  }
  .contacts-form {
    position: static;
    margin-top: 30px;
    padding: 12px;
  }
  .contacts-map {
    height: 400px;
  }
}

.blog {
  margin: 46px 0;
}

.news-content {
  margin-top: 30px;
}

.news-content-item {
  display: block;
  width: 100%;
  background: #F4F4F4;
  border-radius: 5px;
  position: relative;
  padding: 40px 40px 35px 40px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  margin-bottom: 50px;
  cursor: pointer;
}

@media (max-width: 767px) {
  .news-content-item {
    padding: 15px;
  }
}

.news-content-item:hover {
  background: #ffffff;
  box-shadow: 0px 0px 70px rgba(0, 0, 0, 0.15);
}

.news-content-item:hover i {
  padding-left: 15px;
}

.news-content-item__description {
  margin: 30px 0;
}

.news-content-item__more {
  color: #0993BE;
}

.news-content-item__more i {
  padding-left: 5px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.news-content-item__date {
  position: absolute;
  right: 40px;
  bottom: 35px;
}

@media (max-width: 767px) {
  .news-content-item__date {
    position: static;
    margin-top: 10px;
  }
}

.delivery {
  margin-bottom: 60px;
}

.delivery-tabs-nav {
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .delivery-tabs-nav .tabs-list__item_link {
    font-size: 13px;
  }
}

.delivery-tabs-content__heading {
  margin-top: 40px;
  margin-bottom: 8px;
}

.delivery-tabs-content ul {
  list-style: disc;
  padding-left: 15px;
  margin-bottom: 20px;
}

.delivery-tabs-content ul li {
  font-size: 16px;
  font-size: -webkit-calc(14px + (16 - 14) * ((100vw - 300px) / (1900 - 300)));
  font-size: -moz-calc(14px + (16 - 14) * ((100vw - 300px) / (1900 - 300)));
  font-size: calc(14px + (16 - 14) * ((100vw - 300px) / (1900 - 300)));
}

.delivery-tabs-content ol {
  margin-bottom: 20px;
}

.delivery-tabs-content ol li {
  font-size: 16px;
  font-size: -webkit-calc(14px + (16 - 14) * ((100vw - 300px) / (1900 - 300)));
  font-size: -moz-calc(14px + (16 - 14) * ((100vw - 300px) / (1900 - 300)));
  font-size: calc(14px + (16 - 14) * ((100vw - 300px) / (1900 - 300)));
  counter-increment: li;
}

.delivery-tabs-content ol li:before {
  content: counter(li) ".";
  color: #333333;
  display: inline-block;
  padding-right: 5px;
}

.delivery-tabs-content p {
  font-size: 16px;
  font-size: -webkit-calc(14px + (16 - 14) * ((100vw - 300px) / (1900 - 300)));
  font-size: -moz-calc(14px + (16 - 14) * ((100vw - 300px) / (1900 - 300)));
  font-size: calc(14px + (16 - 14) * ((100vw - 300px) / (1900 - 300)));
  font-weight: 400;
  line-height: 24px;
  color: #333333;
  margin-bottom: 24px;
}

@media (max-width: 991px) {
  .delivery-tabs-content p {
    margin-bottom: 16px;
  }
}

.delivery-tabs-content img {
  margin-bottom: 8px;
}

.about {
  margin: 60px 0;
}

@media (max-width: 991px) {
  .about {
    margin: 20px 0;
  }
}

.about-item {
  margin-bottom: 60px;
  position: relative;
}

.about-item:before {
  content: '';
  position: absolute;
  left: 35px;
  width: 1px;
  height: 85%;
  background: transparent;
  border: 0.5px dashed #000000;
  top: 40px;
}

@media (max-width: 991px) {
  .about-item:before {
    display: none;
  }
}

@media (max-width: 991px) {
  .about-item__title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    font-size: -webkit-calc(20px + (24 - 20) * ((100vw - 300px) / (1900 - 300)));
    font-size: -moz-calc(20px + (24 - 20) * ((100vw - 300px) / (1900 - 300)));
    font-size: calc(20px + (24 - 20) * ((100vw - 300px) / (1900 - 300)));
  }
  .about-item__title:before {
    display: none;
  }
}

@media (max-width: 991px) {
  .about-item__description {
    margin-bottom: 20px;
  }
}

.about-item__slider {
  width: 100%;
  height: 100%;
}

.about-item__slider .flickity-page-dots {
  text-align: center;
}

.about-item__slider .slider-item {
  height: 100%;
}

.about-item__slider .slider-item img {
  object-fit: cover;
  border-radius: 5px;
}

@media (max-width: 991px) {
  .about-item__slider .slider-item {
    height: 300px;
  }
}



/*# sourceMappingURL=main.css.map */
