@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --tt: all 200ms ease-out;
}

.container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
body.overflow-hidden {
  overflow: hidden !important;
}
body.woocommerce-checkout .site-main {
  padding: 140px 40px 40px;
  background: #F8F9FA;
}
@media (max-width: 767px) {
  body.woocommerce-checkout .site-main {
    padding: 120px 16px 40px;
  }
}

.site-header {
  position: fixed;
  top: 30px;
  left: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  height: 84px;
  width: calc(100% - 60px);
  background: #fff;
  box-shadow: 0px 2px 22px rgba(0, 0, 0, 0.06);
  z-index: 45;
}
@media (max-width: 767px) {
  .site-header {
    top: 20px;
    left: 16px;
    right: 16px;
    width: calc(100% - 32px);
    height: 74px;
  }
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: none;
  padding: 0 20px;
}
.site-header--logo img {
  display: flex;
  max-width: 107px;
  height: auto;
}
.site-header--nav {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .site-header--nav {
    display: none;
  }
}
.site-header--nav svg {
  cursor: pointer;
}
.site-header--nav ul {
  display: flex;
  margin: 0 0 0 8px;
  padding: 0;
  list-style-type: none;
}
.site-header--nav ul li {
  margin: 0 8px;
}
.site-header--nav ul li.current-menu-item a:before {
  width: 100%;
}
.site-header--nav ul li a {
  position: relative;
  color: #253746;
  font-size: 12px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-decoration: none;
}
.site-header--nav ul li a:hover:before {
  width: 100%;
}
.site-header--nav ul li a:before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 1px;
  background: #253746;
  transition: all 200ms ease-out;
}
.site-header--right {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 767px) {
  .site-header--right {
    gap: 12px;
  }
}
.site-header--right svg {
  cursor: pointer;
}
.site-header--phone a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.site-header--phone span {
  color: #253746;
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
@media (min-width: 1024px) and (max-width: 1330px) {
  .site-header--phone span {
    display: none;
  }
}
@media (max-width: 767px) {
  .site-header--phone {
    display: none;
  }
}
.site-header--cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}
.site-header--cart .site-header--cart-count {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: #FFFFFF;
  background: #253746;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}
.site-header--hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: #253746;
}
@media (max-width: 767px) {
  .site-header--hamburger {
    display: flex;
  }
}
.site-header--hamburger.active span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}
.site-header--hamburger.active span:nth-child(2) {
  opacity: 0;
}
.site-header--hamburger.active span:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}
.site-header--hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--tt);
}
.site-header--hamburger span:nth-child(1) {
  top: 0px;
}
.site-header--hamburger span:nth-child(2) {
  top: 6px;
}
.site-header--hamburger span:nth-child(3) {
  top: 12px;
}
.site-header--ham-inner {
  position: relative;
  width: 17px;
  height: 14px;
}

.mobile-nav {
  position: fixed;
  top: 144px;
  left: 16px;
  right: 16px;
  width: calc(100% - 32px);
  padding: 26px 16px;
  background: #fff;
  box-shadow: 0px 2px 42px rgba(0, 0, 0, 0.1);
  transition: var(--tt);
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
.mobile-nav.opened {
  top: 104px;
  opacity: 1;
  visibility: visible;
  z-index: 45;
}
.mobile-nav .site-footer--col-2 {
  margin: 0 0 50px;
}

.hero {
  display: flex;
  width: 100%;
  height: 100vh;
  padding: 20px 20px 0;
}
@media (max-width: 767px) {
  .hero {
    height: auto;
    padding: 110px 0 60px;
  }
}
.hero .container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  max-width: none;
}
.hero--bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
}
@media (max-width: 767px) {
  .hero--bg {
    position: static;
  }
}
.hero h1 {
  position: relative;
  max-width: 900px;
  margin: 0 auto 20px;
  color: #FFFFFF;
  font-size: 48px;
  font-weight: 700;
  line-height: 110%;
  text-align: center;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  z-index: 5;
}
@media (max-width: 767px) {
  .hero h1 {
    margin: 32px auto 12px;
    color: #253746;
    font-size: 35px;
  }
}
.hero p {
  position: relative;
  max-width: 540px;
  margin: 0 auto 40px;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  text-align: center;
  letter-spacing: -0.04em;
  z-index: 5;
}
@media (max-width: 767px) {
  .hero p {
    margin-bottom: 24px;
    color: #253746;
    font-size: 16px;
  }
}
.hero--btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
  z-index: 5;
}
@media (max-width: 767px) {
  .hero--btn {
    margin-bottom: 0;
  }
}
.hero--btn a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 66px;
  padding: 0 24px;
  background: #fff;
  text-decoration: none;
  overflow: hidden;
}
@media (max-width: 767px) {
  .hero--btn a {
    background: #253746;
    border: 1px solid #253746;
  }
}
.hero--btn a:hover:before {
  left: 0;
}
.hero--btn a:hover svg rect {
  fill: #fff;
  stroke: #253746;
}
@media (max-width: 767px) {
  .hero--btn a:hover svg rect {
    fill: #253746;
    stroke: #fff;
  }
}
.hero--btn a:hover svg path {
  stroke: #253746;
}
@media (max-width: 767px) {
  .hero--btn a:hover svg path {
    stroke: #fff;
  }
}
.hero--btn a:hover span {
  color: #fff;
}
@media (max-width: 767px) {
  .hero--btn a:hover span {
    color: #253746;
  }
}
.hero--btn a:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #253746;
  transition: var(--tt);
}
@media (max-width: 767px) {
  .hero--btn a:before {
    background: #fff;
  }
}
.hero--btn a span {
  position: relative;
  color: #253746;
  font-size: 13px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  transition: var(--tt);
  z-index: 5;
}
@media (max-width: 767px) {
  .hero--btn a span {
    color: #fff;
  }
}
.hero--btn a svg {
  position: relative;
}
@media (max-width: 767px) {
  .hero--btn a svg {
    background: #fff;
  }
  .hero--btn a svg rect {
    fill: #fff;
    stroke: #253746;
  }
  .hero--btn a svg path {
    stroke: #253746;
  }
}
.hero--btn a svg rect {
  transition: var(--tt);
}
.hero--btn a svg path {
  transition: var(--tt);
}

.about {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .about {
    padding: 60px 0;
  }
}
.about--top {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .about--top {
    flex-wrap: wrap;
  }
}
.about--top-mobile {
  display: none;
  width: 100%;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .about--top-mobile {
    display: flex;
  }
}
.about--top-mobile img {
  width: 100%;
  height: auto;
}
.about--top-left {
  display: flex;
  width: 50%;
}
@media (max-width: 767px) {
  .about--top-left {
    flex-direction: column;
    width: 100%;
  }
}
.about--top-left label {
  width: 210px;
  font-weight: 700;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #253746;
  opacity: 0.4;
}
@media (max-width: 767px) {
  .about--top-left label {
    font-size: 10px;
  }
}
.about--top-left-info {
  width: calc(100% - 210px);
  padding-left: 20px;
}
@media (max-width: 767px) {
  .about--top-left-info {
    width: 100%;
    padding-left: 0;
  }
}
.about--top-left-info h2 {
  max-width: 440px;
  margin: 0 0 20px;
  color: #253746;
  font-size: 36px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .about--top-left-info h2 {
    margin: 12px 0;
    font-size: 28px;
  }
}
.about--top-left-info p {
  max-width: 440px;
  margin: 0;
  color: #67737E;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.02em;
}
@media (max-width: 767px) {
  .about--top-left-info p {
    font-size: 14px;
  }
}
.about--top-right {
  width: 50%;
}
@media (max-width: 767px) {
  .about--top-right {
    display: none;
  }
}
.about--top-right img {
  display: flex;
  max-width: 567px;
  height: auto;
}
.about--bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: -135px;
}
@media (max-width: 767px) {
  .about--bottom {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    margin-top: 30px;
  }
}
.about--bottom-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 135px;
  text-align: center;
}
@media (max-width: 767px) {
  .about--bottom-item {
    height: 105px;
  }
}
.about--bottom-item:nth-child(odd) {
  background: url("../img/about-1.svg") center no-repeat;
  background-size: contain;
}
.about--bottom-item:nth-child(even) {
  background: url("../img/about-2.svg") center no-repeat;
  background-size: contain;
}
.about--bottom-item h3 {
  margin: 0 0 8px;
  color: #FFFFFF;
  font-weight: 400;
  font-size: 70px;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .about--bottom-item h3 {
    margin-bottom: 2px;
    font-size: 48px;
  }
}
.about--bottom-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  text-align: center;
  letter-spacing: -0.02em;
}
@media (max-width: 767px) {
  .about--bottom-item p {
    font-size: 14px;
  }
}
.about--works {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .about--works {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
  }
}
.about--works p {
  margin: 0;
  max-width: 202px;
  color: #67737E;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.02em;
}
@media (max-width: 767px) {
  .about--works p {
    width: 100%;
    text-align: center;
  }
}
.about--works-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 96px;
  width: calc(100% - 262px);
}
@media (max-width: 767px) {
  .about--works-list {
    flex-wrap: wrap;
    justify-content: space-evenly;
    width: 100%;
    gap: 30px;
  }
}
.about--works-list img {
  max-height: 52px;
}
@media (max-width: 767px) {
  .about--works-list img:nth-child(1) {
    max-width: 80px;
  }
  .about--works-list img:nth-child(2) {
    max-width: 101px;
  }
  .about--works-list img:nth-child(3) {
    max-width: 40px;
  }
  .about--works-list img:nth-child(4) {
    max-width: 74px;
  }
  .about--works-list img:nth-child(5) {
    max-width: 38px;
  }
  .about--works-list img:nth-child(6) {
    max-width: 135px;
  }
}

.directions {
  padding: 100px 0;
  background: #253746;
}
@media (max-width: 767px) {
  .directions {
    padding: 80px 0;
    overflow: hidden;
  }
}
.directions--text-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .directions--text-row {
    flex-direction: column;
  }
}
.directions--text-1 {
  width: 230px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  opacity: 0.4;
}
@media (max-width: 767px) {
  .directions--text-1 {
    width: 100%;
    font-size: 10px;
  }
}
.directions--text-2 {
  width: calc(100% - 460px);
  margin: 0;
  color: #FFFFFF;
  font-size: 36px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .directions--text-2 {
    width: 100%;
    margin: 12px auto 32px;
    font-size: 28px;
  }
}
.directions--text-3 {
  width: 230px;
  color: #BEC3C8;
  font-size: 16px;
  font-weight: 600;
  line-height: 130%;
  text-align: right;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .directions--text-3 {
    width: 100%;
    font-size: 14px;
  }
}
.directions--item {
  position: relative;
  display: flex;
  margin-bottom: 102px;
  padding-top: 110px;
}
.directions--item:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .directions--item {
    flex-wrap: wrap;
    padding-top: 0;
    margin-bottom: 60px;
  }
}
.directions--top-mobile {
  display: none;
  width: 100%;
  height: 200px;
}
.directions--top-mobile img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .directions--top-mobile {
    display: block;
  }
}
.directions--left {
  position: relative;
  width: 60%;
  padding: 80px 60px 20px;
  background: url("../img/d-overlay.svg") top center no-repeat;
  background: #fff;
}
@media (max-width: 767px) {
  .directions--left {
    width: 100%;
    padding: 60px 20px 20px;
  }
}
.directions--left:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 55px;
  background: url("../img/d-overlay.svg") bottom left no-repeat;
}
@media (max-width: 767px) {
  .directions--left:before {
    height: 40px;
  }
}
.directions--left-title {
  max-width: 380px;
  margin: 40px 0 16px;
  color: #253746;
  font-size: 28px;
  font-weight: 700;
  line-height: 130%;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .directions--left-title {
    margin: 30px auto 12px;
    font-size: 22px;
  }
}
.directions--left-text {
  max-width: 380px;
  margin: 0 0 40px;
  color: #67737E;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.02em;
}
@media (max-width: 767px) {
  .directions--left-text {
    margin-bottom: 30px;
    font-size: 14px;
  }
}
.directions--left-btn {
  display: flex;
  width: 310px;
  margin-bottom: 10px;
}
.directions--left-btn-dark {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  height: 66px;
  padding: 0 24px;
  background: #253746;
  border: 1px solid #253746;
  border-radius: 0;
  text-decoration: none;
  overflow: hidden;
}
@media (max-width: 767px) {
  .directions--left-btn-dark {
    height: 54px;
  }
}
.directions--left-btn-dark:hover:before {
  left: 0;
}
.directions--left-btn-dark:hover svg rect {
  fill: #253746;
  stroke: #fff;
}
.directions--left-btn-dark:hover svg path {
  stroke: #fff;
}
.directions--left-btn-dark:hover span {
  color: #253746;
}
.directions--left-btn-dark:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: var(--tt);
}
.directions--left-btn-dark span {
  position: relative;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  transition: var(--tt);
  z-index: 5;
}
@media (max-width: 767px) {
  .directions--left-btn-dark span {
    font-size: 12px;
  }
}
.directions--left-btn-dark svg {
  position: relative;
}
.directions--left-btn-dark svg rect {
  transition: var(--tt);
}
.directions--left-btn-dark svg path {
  transition: var(--tt);
}
.directions--left-btn-light {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  height: 66px;
  padding: 0 24px;
  background: #fff;
  border: 1px solid #253746;
  border-radius: 0;
  text-decoration: none;
  overflow: hidden;
}
@media (max-width: 767px) {
  .directions--left-btn-light {
    height: 54px;
  }
}
.directions--left-btn-light:hover:before {
  left: 0;
}
.directions--left-btn-light:hover svg rect {
  fill: #fff;
  stroke: #253746;
}
.directions--left-btn-light:hover svg path {
  stroke: #253746;
}
.directions--left-btn-light:hover span {
  color: #fff;
}
.directions--left-btn-light:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #253746;
  transition: var(--tt);
}
.directions--left-btn-light span {
  position: relative;
  color: #253746;
  font-size: 13px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  transition: var(--tt);
  z-index: 5;
}
@media (max-width: 767px) {
  .directions--left-btn-light span {
    font-size: 12px;
  }
}
.directions--left-btn-light svg {
  position: relative;
}
.directions--left-btn-light svg rect {
  transition: var(--tt);
}
.directions--left-btn-light svg path {
  transition: var(--tt);
}
.directions--left-arrows {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 47px;
}
@media (max-width: 767px) {
  .directions--left-arrows {
    margin-top: 36px;
  }
}
.directions--left-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  cursor: pointer;
}
.directions--left-arrow:hover svg {
  transform: scale(0.85);
}
.directions--left-arrow svg {
  display: flex;
  transition: var(--tt);
}
.directions--right {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .directions--right {
    position: static;
    width: 100%;
  }
}
.directions--right-img {
  display: flex;
  height: 689px;
}
@media (max-width: 767px) {
  .directions--right-img {
    display: none;
  }
}
.directions--right-slider {
  position: relative;
  right: -13px;
  width: 100%;
  max-width: 850px;
  margin-top: -280px;
}
@media (max-width: 767px) {
  .directions--right-slider {
    right: auto;
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .directions--right .slick-list {
    overflow: visible;
  }
}
.directions--slide {
  padding: 72px 20px 0;
}
@media (max-width: 767px) {
  .directions--slide {
    padding: 20px 20px 0 0;
  }
}
.directions--slide-inner {
  width: 250px;
  height: 250px;
  padding: 20px;
  background: #fff;
  box-shadow: 0px -4px 15px rgba(37, 55, 70, 0.15);
}
@media (max-width: 767px) {
  .directions--slide-inner {
    height: 330px;
  }
}
.directions--slide-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 180px;
  margin-top: -92px;
}
@media (max-width: 767px) {
  .directions--slide-img {
    margin-top: 0;
  }
}
.directions--slide-img a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.directions--slide-img img {
  display: flex;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.directions--slide-title {
  margin: 20px 0 10px;
  color: #253746;
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.directions--slide-title a {
  text-decoration: none;
  color: inherit;
}
.directions--slide-text {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  /* кількість рядків */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.directions--slide-text p {
  margin: 0 0 10px;
  color: #67737E;
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.02em;
}
.directions--slide-text p:last-child {
  margin-bottom: 0;
}
.directions--slide-text p strong {
  font-weight: 700;
}

.why {
  position: relative;
  padding: 100px 0;
  background: #fff;
}
@media (max-width: 767px) {
  .why {
    padding: 60px 0;
  }
}
.why:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 311px;
  height: 100%;
  background: url("../img/why-overlay.svg") center left no-repeat;
}
@media (max-width: 767px) {
  .why:before {
    display: none;
  }
}
.why .container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  z-index: 5;
}
.why--left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 115px;
  width: 50%;
}
@media (max-width: 767px) {
  .why--left {
    width: 100%;
    padding-left: 0;
  }
}
.why--right {
  width: 50%;
}
@media (max-width: 767px) {
  .why--right {
    width: 100%;
  }
}
.why--subtitle {
  color: #253746;
  font-size: 14px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  opacity: 0.4;
}
@media (max-width: 767px) {
  .why--subtitle {
    font-size: 10px;
  }
}
.why--title {
  margin: 20px 0;
  color: #253746;
  font-size: 36px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .why--title {
    margin: 12px 0 20px;
    font-size: 28px;
  }
}
.why--items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .why--items {
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
  }
}
.why--item {
  position: relative;
  padding: 24px;
  background: #F8F9FA;
}
@media (max-width: 767px) {
  .why--item {
    padding: 20px;
  }
}
.why--item:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 27px;
  height: 73px;
  background: url("../img/why-item-overlay.svg") center no-repeat;
}
.why--item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}
@media (max-width: 767px) {
  .why--item-icon {
    width: 22px;
    height: 22px;
  }
}
.why--item-icon img {
  display: flex;
  width: 100%;
  height: auto;
}
.why--item-title {
  margin: 40px 0 12px;
  color: #253746;
  font-size: 22px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .why--item-title {
    margin: 30px 0 12px;
    font-size: 20px;
  }
}
.why--item-text {
  color: #67737E;
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.02em;
}
@media (max-width: 767px) {
  .why--item-text {
    font-size: 12px;
  }
}

.partners {
  padding: 100px 0;
  background: #fff;
}
@media (max-width: 767px) {
  .partners {
    padding: 60px 0;
  }
}
.partners--subtitle {
  color: #253746;
  font-size: 14px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  opacity: 0.4;
}
@media (max-width: 767px) {
  .partners--subtitle {
    font-size: 10px;
  }
}
.partners--title {
  margin: 20px 0 40px;
  color: #253746;
  font-size: 36px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .partners--title {
    margin: 20px 0;
    font-size: 28px;
  }
}
.partners--list {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 20px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.partners--list::-webkit-scrollbar {
  display: none;
}
@media (max-width: 767px) {
  .partners--list {
    flex-wrap: wrap;
    gap: 12px;
  }
}
.partners--item {
  position: relative;
  flex: 0 0 var(--card-w, 380px);
  min-width: var(--card-w, 440px);
  scroll-snap-align: start;
}
@media (max-width: 767px) {
  .partners--item {
    height: 340px;
    flex: 0 0 var(--card-w, 100%);
    min-width: var(--card-w, 100%);
  }
}
.partners--item-img {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.partners--item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.partners--item-content {
  position: absolute;
  display: flex;
  align-items: center;
  width: calc(100% - 32px);
  height: 110px;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 5;
}
@media (max-width: 767px) {
  .partners--item-content {
    height: 100px;
  }
}
.partners--item-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 100%;
  background: #253746;
  color: #FFFFFF;
  font-size: 70px;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .partners--item-num {
    width: 100px;
    font-size: 48px;
  }
}
.partners--item-info {
  display: flex;
  flex-direction: column;
  width: calc(100% - 120px);
  height: 100%;
  padding: 18px 20px;
  background: #fff;
}
@media (max-width: 767px) {
  .partners--item-info {
    width: calc(100% - 100px);
    padding: 20px 16px;
  }
}
.partners--item-title {
  margin: 0 0 6px;
  color: #253746;
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .partners--item-title {
    font-size: 14px;
  }
}
.partners--item-text {
  color: #67737E;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.02em;
}
@media (max-width: 767px) {
  .partners--item-text {
    font-size: 12px;
  }
}

.contact {
  padding: 80px 0;
  background: #253746;
}
.contact .container {
  position: relative;
}
.contact--label {
  position: absolute;
  top: 0;
  left: 115px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  opacity: 0.4;
}
@media (max-width: 767px) {
  .contact--label {
    position: static;
    margin-bottom: 12px;
    font-size: 10px;
  }
}
.contact--title {
  max-width: 670px;
  margin: 0 auto 16px;
  color: #FFFFFF;
  font-size: 48px;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .contact--title {
    font-size: 35px;
  }
}
.contact--text {
  max-width: 670px;
  margin: 0 auto;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.02em;
}
@media (max-width: 767px) {
  .contact--text {
    font-size: 14px;
  }
}
.contact--form {
  max-width: 670px;
  margin: 90px auto 0;
}
@media (max-width: 767px) {
  .contact--form {
    margin-top: 60px;
  }
}
.contact--form-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
  width: 100%;
}
@media (max-width: 767px) {
  .contact--form-row {
    flex-direction: column;
  }
}
.contact--form-row:last-child {
  margin-bottom: 0;
}
.contact--form-item {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.contact--form label {
  margin: 0;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.contact--form input {
  width: 100%;
  padding: 12px 0;
  border: 0;
  color: #fff;
  background: none;
  border-bottom: 1px solid rgba(214, 219, 225, 0.5019607843);
  font-size: 16px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 150%;
  letter-spacing: -0.02em;
  outline: none;
}
@media (max-width: 767px) {
  .contact--form input {
    font-size: 14px;
  }
}
.contact--form input::-moz-placeholder {
  color: rgba(214, 219, 225, 0.5);
}
.contact--form input::placeholder {
  color: rgba(214, 219, 225, 0.5);
}
.contact--form textarea {
  width: 100%;
  height: 88px;
  padding: 12px 0;
  border: 0;
  color: #fff;
  background: none;
  border-bottom: 1px solid rgba(214, 219, 225, 0.5019607843);
  font-size: 16px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 150%;
  letter-spacing: -0.02em;
  outline: none;
  resize: none;
}
@media (max-width: 767px) {
  .contact--form textarea {
    font-size: 14px;
  }
}
.contact--form textarea::-moz-placeholder {
  color: rgba(214, 219, 225, 0.5);
}
.contact--form textarea::placeholder {
  color: rgba(214, 219, 225, 0.5);
}
.contact--form button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 58px;
  padding: 0 16px 0 24px;
  background: #fff;
  border: 1px solid #fff;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 767px) {
  .contact--form button {
    height: 54px;
    padding: 0 16px 0 20px;
  }
}
.contact--form button:hover:before {
  left: 0;
}
.contact--form button:hover svg rect {
  fill: #fff;
  stroke: #253746;
}
.contact--form button:hover svg path {
  stroke: #253746;
}
.contact--form button:hover span {
  color: #fff;
}
.contact--form button:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #253746;
  transition: var(--tt);
}
.contact--form button span {
  position: relative;
  color: #253746;
  font-size: 13px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  transition: var(--tt);
  z-index: 5;
}
.contact--form button svg {
  position: relative;
}
.contact--form button svg rect {
  transition: var(--tt);
}
.contact--form button svg path {
  transition: var(--tt);
}
.contact .wpcf7-not-valid-tip {
  font-size: 12px;
}
.contact .wpcf7 form .wpcf7-response-output {
  margin: 0;
  padding: 0;
  color: #fff;
  border: 0;
  font-size: 13px;
  text-align: center;
}

.site-footer {
  padding: 80px 0;
  background: #fff;
}
@media (max-width: 767px) {
  .site-footer {
    padding: 60px 0;
  }
}
.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.site-footer--col-1 {
  width: 100%;
  max-width: 440px;
}
@media (max-width: 767px) {
  .site-footer--col-1 {
    max-width: none;
  }
}
.site-footer--col-2 {
  width: 100%;
  max-width: 325px;
}
@media (max-width: 767px) {
  .site-footer--col-2 {
    margin: 50px 0;
    max-width: none;
  }
}
.site-footer--col-3 {
  width: 100%;
  max-width: 325px;
}
@media (max-width: 767px) {
  .site-footer--col-3 {
    max-width: none;
  }
}
.site-footer--logo {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .site-footer--logo {
    margin-bottom: 20px;
  }
}
.site-footer--logo svg {
  width: 210px;
  height: auto;
}
@media (max-width: 767px) {
  .site-footer--logo svg {
    width: 150px;
  }
}
.site-footer--logo-text {
  color: #67737E;
  font-size: 14px;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.02em;
}
@media (max-width: 767px) {
  .site-footer--logo-text {
    font-size: 12px;
  }
}
.site-footer--nav-label {
  margin: 0 0 50px;
  color: #BEC3C8;
  font-size: 14px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .site-footer--nav-label {
    margin-bottom: 30px;
    font-size: 10px;
  }
}
.site-footer--nav ul {
  list-style-type: none;
}
.site-footer--nav ul li {
  margin: 0 0 24px;
}
.site-footer--nav ul li:last-child {
  margin-bottom: 0;
}
.site-footer--nav ul li a {
  color: #253746;
  font-size: 13px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-decoration: none;
}
@media (max-width: 767px) {
  .site-footer--nav ul li a {
    font-size: 12px;
  }
}
.site-footer--link {
  margin-bottom: 24px;
}
.site-footer--link a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.site-footer--link span {
  color: #253746;
  font-size: 13px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.02em;
}
@media (max-width: 767px) {
  .site-footer--link-btn {
    margin-top: 30px;
  }
}
.site-footer--link-btn a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  max-width: 250px;
  height: 62px;
  padding: 0 24px;
  background: #253746;
  border: 1px solid #253746;
  border-radius: 0;
  text-decoration: none;
  overflow: hidden;
}
@media (max-width: 767px) {
  .site-footer--link-btn a {
    height: 54px;
    max-width: none;
  }
}
.site-footer--link-btn a:hover:before {
  left: 0;
}
.site-footer--link-btn a:hover svg rect {
  fill: #253746;
  stroke: #fff;
}
.site-footer--link-btn a:hover svg path {
  stroke: #fff;
}
.site-footer--link-btn a:hover span {
  color: #253746;
}
.site-footer--link-btn a:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: var(--tt);
}
.site-footer--link-btn a span {
  position: relative;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  transition: var(--tt);
  z-index: 5;
}
@media (max-width: 767px) {
  .site-footer--link-btn a span {
    font-size: 12px;
  }
}
.site-footer--link-btn a svg {
  position: relative;
}
.site-footer--link-btn a svg rect {
  transition: var(--tt);
}
.site-footer--link-btn a svg path {
  transition: var(--tt);
}
.site-footer--bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 130px;
  padding-top: 31px;
  border-top: 1px solid #BEC3C8;
}
@media (max-width: 767px) {
  .site-footer--bottom {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
  }
}
.site-footer--copyright {
  color: #67737E;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  text-transform: uppercase;
}
.site-footer--copy-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.site-footer--copy-links a {
  color: #67737E;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  text-transform: uppercase;
  text-decoration: none;
}

.service-hero {
  position: relative;
  display: flex;
  align-items: center;
  height: 100vh;
  background: #F8F9FA;
  overflow: hidden;
}
@media (max-width: 767px) {
  .service-hero {
    flex-direction: column-reverse;
    height: auto;
  }
}
.service-hero--overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}
.service-hero--overlay svg {
  width: 70%;
  height: auto;
}
@media (max-width: 767px) {
  .service-hero--overlay {
    display: none;
  }
}
.service-hero--bg-desktop {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center left;
     object-position: center left;
  z-index: 3;
}
@media (max-width: 767px) {
  .service-hero--bg-desktop {
    display: none;
  }
}
.service-hero--bg-mobile {
  display: none;
}
@media (max-width: 767px) {
  .service-hero--bg-mobile {
    display: block;
    width: 100%;
  }
}
.service-hero--left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 580px;
  padding: 60px 0 0 60px;
}
@media (max-width: 767px) {
  .service-hero--left {
    width: 100%;
    max-width: none;
    padding: 32px 16px 60px;
  }
}
.service-hero--title {
  margin: 0 0 16px;
  color: #253746;
  font-size: 48px;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .service-hero--title {
    margin-bottom: 12px;
    font-size: 32px;
  }
}
.service-hero--text {
  margin: 0 0 40px;
  color: #67737E;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.04em;
}
@media (max-width: 767px) {
  .service-hero--text {
    margin-bottom: 24px;
    font-size: 16px;
  }
}
.service-hero--btns {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 767px) {
  .service-hero--btns {
    flex-direction: column;
    gap: 10px;
  }
}
.service-hero--btn.first {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 66px;
  padding: 0 24px;
  background: #fff;
  border: 1px solid #253746;
  text-decoration: none;
  overflow: hidden;
}
@media (max-width: 767px) {
  .service-hero--btn.first {
    width: 100%;
    justify-content: space-between;
    height: 54px;
    padding: 0 20px;
    background: #253746;
  }
}
.service-hero--btn.first:hover:before {
  left: 0;
}
.service-hero--btn.first:hover svg rect {
  fill: #fff;
  stroke: #253746;
}
@media (max-width: 767px) {
  .service-hero--btn.first:hover svg rect {
    fill: #253746;
    stroke: #fff;
  }
}
.service-hero--btn.first:hover svg path {
  stroke: #253746;
}
@media (max-width: 767px) {
  .service-hero--btn.first:hover svg path {
    stroke: #fff;
  }
}
.service-hero--btn.first:hover span {
  color: #fff;
}
@media (max-width: 767px) {
  .service-hero--btn.first:hover span {
    color: #253746;
  }
}
.service-hero--btn.first:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #253746;
  transition: var(--tt);
}
@media (max-width: 767px) {
  .service-hero--btn.first:before {
    background: #fff;
  }
}
.service-hero--btn.first span {
  position: relative;
  color: #253746;
  font-size: 13px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  transition: var(--tt);
  z-index: 5;
}
@media (max-width: 767px) {
  .service-hero--btn.first span {
    color: #fff;
  }
}
.service-hero--btn.first svg {
  position: relative;
}
@media (max-width: 767px) {
  .service-hero--btn.first svg {
    background: #fff;
  }
  .service-hero--btn.first svg rect {
    fill: #fff;
    stroke: #253746;
  }
  .service-hero--btn.first svg path {
    stroke: #253746;
  }
}
.service-hero--btn.first svg rect {
  transition: var(--tt);
}
.service-hero--btn.first svg path {
  transition: var(--tt);
}
.service-hero--btn.last {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  max-width: 250px;
  height: 66px;
  padding: 0 24px;
  background: #253746;
  border: 1px solid #253746;
  border-radius: 0;
  text-decoration: none;
  overflow: hidden;
}
@media (max-width: 767px) {
  .service-hero--btn.last {
    padding: 0 20px;
    height: 54px;
    max-width: none;
    background: none;
  }
}
.service-hero--btn.last:hover:before {
  left: 0;
}
.service-hero--btn.last:hover svg rect {
  fill: #253746;
  stroke: #fff;
}
.service-hero--btn.last:hover svg path {
  stroke: #fff;
}
.service-hero--btn.last:hover span {
  color: #253746;
}
.service-hero--btn.last:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: var(--tt);
}
.service-hero--btn.last span {
  position: relative;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  transition: var(--tt);
  z-index: 5;
}
@media (max-width: 767px) {
  .service-hero--btn.last span {
    font-size: 12px;
    color: #253746;
  }
}
.service-hero--btn.last svg {
  position: relative;
}
.service-hero--btn.last svg rect {
  transition: var(--tt);
}
@mobile {
  .service-hero--btn.last svg rect {
    fill: #253746;
    stroke: #fff;
  }
}
.service-hero--btn.last svg path {
  transition: var(--tt);
}
@media (max-width: 767px) {
  .service-hero--btn.last svg path {
    stroke: #fff;
  }
}

.service-cats {
  background: #253746;
}
@media (max-width: 767px) {
  .service-cats {
    overflow: hidden;
  }
}
.service-cats--container {
  padding: 100px 40px;
}
@media (max-width: 767px) {
  .service-cats--container {
    padding: 60px 0;
  }
}
.service-cats--subtitle {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .service-cats--subtitle {
    padding: 0 16px;
    font-size: 10px;
  }
}
.service-cats--title {
  margin: 20px 0 40px;
  color: #FFFFFF;
  font-size: 36px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .service-cats--title {
    margin: 12px 0 20px;
    padding: 0 16px;
    font-size: 28px;
  }
}
.service-cats--list {
  display: flex;
  gap: 16px;
}
@media (max-width: 767px) {
  .service-cats--list {
    padding: 0 16px;
    overflow-x: auto;
  }
  .service-cats--list::-webkit-scrollbar {
    display: none;
  }
}
.service-cats--item {
  width: 100%;
  background: #fff;
}
@media (max-width: 767px) {
  .service-cats--item {
    flex: 0 0 80%;
    min-width: 80%;
  }
}
.service-cats--img {
  width: 100%;
  height: 180px;
  overflow: hidden;
}
.service-cats--img a {
  display: flex;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.service-cats--img a:hover img {
  transform: scale(1.05);
}
.service-cats--img a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.01);
  transition: all 200ms ease-out;
}
.service-cats--info {
  padding: 20px 20px 40px;
  height: 180px;
}
.service-cats--info span {
  color: #67737E;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.service-cats--info h3 {
  min-height: 38px;
  margin: 8px 0;
}
.service-cats--info h3 a {
  display: flex;
  color: #253746;
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-decoration: none;
}
.service-cats--info p {
  margin: 0;
  color: #67737E;
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.02em;
}
.service-cats--btn {
  display: flex;
  width: 100%;
}
.service-cats--btn a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 58px;
  padding: 0 20px;
  border: 1px solid #fff;
  border-top: 1px solid #BEC3C8;
  text-decoration: none;
  overflow: hidden;
}
.service-cats--btn a:hover:before {
  left: 0;
}
.service-cats--btn a:hover svg rect {
  fill: #fff;
  stroke: #253746;
}
@media (max-width: 767px) {
  .service-cats--btn a:hover svg rect {
    fill: #253746;
    stroke: #fff;
  }
}
.service-cats--btn a:hover svg path {
  stroke: #253746;
}
@media (max-width: 767px) {
  .service-cats--btn a:hover svg path {
    stroke: #fff;
  }
}
.service-cats--btn a:hover span {
  color: #fff;
}
@media (max-width: 767px) {
  .service-cats--btn a:hover span {
    color: #253746;
  }
}
.service-cats--btn a:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #253746;
  transition: var(--tt);
}
@media (max-width: 767px) {
  .service-cats--btn a:before {
    background: #fff;
  }
}
.service-cats--btn a span {
  position: relative;
  color: #253746;
  font-size: 13px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  z-index: 5;
}
.service-cats--btn a svg {
  position: relative;
  z-index: 5;
}
@media (max-width: 767px) {
  .service-cats--btn a svg {
    background: #fff;
  }
  .service-cats--btn a svg rect {
    fill: #fff;
    stroke: #253746;
  }
  .service-cats--btn a svg path {
    stroke: #253746;
  }
}
.service-cats--btn a svg rect {
  transition: var(--tt);
}
.service-cats--btn a svg path {
  transition: var(--tt);
}

.service-products {
  padding: 100px 0;
  background: #fff;
  overflow: hidden;
}
@media (max-width: 767px) {
  .service-products {
    padding: 60px 0;
  }
}
.service-products.center-view .service-products--heading {
  justify-content: center;
}
.service-products--container {
  padding: 0 40px;
}
@media (max-width: 767px) {
  .service-products--container {
    padding: 0 16px;
  }
}
.service-products--heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .service-products--heading {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .service-products--right {
    display: none;
  }
}
.service-products--subtitle {
  color: #253746;
  font-size: 14px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .service-products--subtitle {
    font-size: 10px;
  }
}
.service-products--title {
  margin: 20px 0 0;
  color: #253746;
  font-size: 36px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .service-products--title {
    margin: 12px 0 20px;
    font-size: 28px;
  }
}
.service-products .slick-list {
  overflow: visible;
}
.service-products .slick-dots {
  position: absolute;
  display: flex;
  gap: 8px;
  bottom: -52px;
  left: 0;
  list-style-type: none;
}
.service-products .slick-dots li.slick-active button {
  background: #253746;
}
.service-products .slick-dots li button {
  display: flex;
  width: 8px;
  height: 8px;
  padding: 0;
  background: #BEC3C8;
  border: 0;
  border-radius: 0;
  font-size: 0;
  cursor: pointer;
  transition: all 200ms ease-out;
}
.service-products .slick-dots li button:hover {
  background: #253746;
}
.service-products--list.grid-view {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .service-products--list.grid-view {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
}
.service-products--item {
  padding: 16px 8px;
}
@media (max-width: 767px) {
  .service-products--item {
    padding: 0;
  }
}
.service-products--item-inner {
  height: 400px;
  background: #fff;
  box-shadow: 0px -4px 60px rgba(37, 55, 70, 0.1);
}
.service-products--item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 180px;
}
.service-products--item-img a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.service-products--item-img a:hover img {
  transform: scale(1.05);
}
.service-products--item-img img {
  display: flex;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.service-products--item-content {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 164px;
  padding: 20px;
}
.service-products--item-title {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 10px;
  color: #253746;
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.service-products--item-title a {
  display: flex;
  color: inherit;
  text-decoration: none;
}
.service-products--item-description {
  margin: 0;
  color: #67737E;
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.02em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.service-products--item-price {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  margin: 0;
  color: #67737E;
  font-size: 14px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-align: center;
}
.service-products--item-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 56px;
  color: #253746;
  background: none;
  border-top: 1px solid #BEC3C8;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 200ms ease-out;
}
.service-products--item-btn a:hover {
  color: #fff;
  background: #253746;
  border-color: #253746;
}
.service-products--item-btn a:hover svg path {
  fill: #fff;
}
.service-products--item-btn svg path {
  transition: all 200ms ease-out;
}
.service-products--arrows {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}
.service-products--arrows button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: none;
  border: 0;
  box-shadow: none;
  cursor: pointer;
  transition: all 200ms ease-out;
}
.service-products--arrows button:disabled {
  opacity: 0.5;
  cursor: default;
}
.service-products--arrows button:hover {
  background: #253746;
}
.service-products--arrows button:hover svg path {
  fill: #fff;
}
.service-products--arrows button svg path {
  transition: all 200ms ease-out;
}

@media (max-width: 767px) {
  .who {
    overflow: hidden;
  }
}
.who--container {
  padding: 100px 40px;
}
@media (max-width: 767px) {
  .who--container {
    padding: 60px 0;
  }
}
.who--subtitle {
  color: rgba(37, 55, 70, 0.4);
  font-size: 14px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .who--subtitle {
    padding: 0 16px;
    font-size: 10px;
  }
}
.who--title {
  margin: 20px 0 40px;
  color: #253746;
  font-size: 36px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .who--title {
    margin: 12px 0 20px;
    padding: 0 16px;
    font-size: 28px;
  }
}
.who--list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .who--list {
    display: flex;
    overflow-x: auto;
    margin-bottom: 0;
    padding: 0 16px;
  }
  .who--list::-webkit-scrollbar {
    display: none;
  }
}
.who--item {
  display: flex;
  height: 230px;
  background: #F8F9FA;
}
@media (max-width: 767px) {
  .who--item {
    flex-direction: column;
    flex: 0 0 80%;
    min-width: 80%;
    height: auto;
  }
}
.who--item-img {
  display: flex;
  width: 209px;
  height: 100%;
}
@media (max-width: 767px) {
  .who--item-img {
    width: 100%;
    height: 200px;
  }
  .who--item-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.who--item-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: calc(100% - 209px);
  padding: 30px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .who--item-content {
    width: 100%;
    padding: 60px 20px 20px;
  }
}
.who--item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  height: 50px;
  transition: all 200ms ease-out;
}
.who--item-title {
  max-width: 325px;
  margin: 0 0 12px;
  color: #253746;
  font-size: 22px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.who--item-text {
  max-width: 325px;
  margin: 0;
  color: #67737E;
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.02em;
}
@media (max-width: 767px) {
  .who .about--works {
    display: none;
  }
}

@media (max-width: 767px) {
  .other-directions {
    overflow: hidden;
  }
}
.other-directions--container {
  padding: 100px 40px;
}
@media (max-width: 767px) {
  .other-directions--container {
    padding: 60px 16px;
  }
}
.other-directions--subtitle {
  color: rgba(37, 55, 70, 0.4);
  font-size: 14px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .other-directions--subtitle {
    font-size: 10px;
  }
}
.other-directions--title {
  margin: 20px 0 40px;
  color: #253746;
  font-size: 36px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .other-directions--title {
    margin: 12px 0 20px;
    font-size: 28px;
  }
}
.other-directions--list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 767px) {
  .other-directions--list {
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
  }
}
.other-directions--item {
  position: relative;
  display: flex;
  height: 440px;
  background: #F8F9FA;
}
@media (max-width: 767px) {
  .other-directions--item {
    flex-direction: column-reverse;
    height: auto;
  }
}
.other-directions--item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: flex-start;
  width: 100%;
  height: 35px;
}
@media (max-width: 767px) {
  .other-directions--item-overlay {
    top: 200px;
  }
}
.other-directions--item-overlay svg {
  display: flex;
}
.other-directions--item-img {
  display: flex;
  width: 270px;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .other-directions--item-img {
    width: 100%;
    height: 200px;
  }
}
.other-directions--item-img a {
  display: flex;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.other-directions--item-img a:hover img {
  transform: scale(1.05);
}
.other-directions--item-img a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.01);
  transition: all 200ms ease-out;
}
.other-directions--item-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: calc(100% - 270px);
  padding: 80px 40px 40px;
}
@media (max-width: 767px) {
  .other-directions--item-content {
    width: 100%;
    padding: 60px 20px 20px;
  }
}
.other-directions--item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}
.other-directions--item-icon svg {
  display: flex;
  width: 100%;
  height: auto;
}
.other-directions--item-icon img {
  display: flex;
  width: 100%;
  height: auto;
}
.other-directions--item-title {
  margin: 24px 0 12px;
  color: #253746;
  font-size: 22px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.other-directions--item-title a {
  display: flex;
  color: inherit;
  text-decoration: none;
}
.other-directions--item-text {
  margin: 0 0 24px;
  color: #67737E;
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.02em;
}
@media (max-width: 767px) {
  .other-directions .directions--left-btn {
    width: 100%;
  }
}

.catalog-page--heading {
  display: flex;
  flex-direction: column;
  padding: 140px 40px 40px;
  background: #253746;
}
@media (max-width: 767px) {
  .catalog-page--heading {
    padding: 120px 16px 20px;
  }
}
.catalog-page--breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .catalog-page--breadcrumbs {
    margin-bottom: 12px;
  }
}
.catalog-page--breadcrumbs a {
  color: #BEC3C8;
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: all 200ms ease-out;
}
.catalog-page--breadcrumbs a:hover {
  color: #fff;
  text-decoration: underline;
}
.catalog-page--breadcrumbs span {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.02em;
}
.catalog-page--title {
  display: flex;
}
.catalog-page--title h1 {
  margin: 0;
  color: #FFFFFF;
  font-size: 48px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .catalog-page--title h1 {
    font-size: 28px;
  }
}
.catalog-page--title .product-count {
  margin-left: 16px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.02em;
}
@media (max-width: 767px) {
  .catalog-page--title .product-count {
    font-size: 12px;
  }
}
.catalog-page--layout {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  padding: 60px 40px;
  background: #fff;
}
@media (max-width: 767px) {
  .catalog-page--layout {
    padding: 40px 16px;
    gap: 20px;
  }
}
.catalog-page--layout-sidebar {
  width: 100%;
  max-width: 288px;
}
@media (max-width: 767px) {
  .catalog-page--layout-sidebar {
    max-width: none;
  }
}
.catalog-page--layout-sidebar button {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  background: none;
  border: 0;
  cursor: default;
}
@media (max-width: 767px) {
  .catalog-page--layout-sidebar button {
    justify-content: center;
    width: 100%;
    height: 48px;
    margin-bottom: 0;
    background: #253746;
  }
  .catalog-page--layout-sidebar button svg path {
    fill: #fff;
  }
}
.catalog-page--layout-sidebar button.active svg {
  transform: rotate(180deg);
}
.catalog-page--layout-sidebar h3 {
  margin: 0;
  color: #253746;
  font-size: 22px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .catalog-page--layout-sidebar h3 {
    color: #fff;
    font-size: 12px;
  }
  .catalog-page--layout-sidebar h3 svg path {
    fill: #fff;
  }
}
.catalog-page--layout-sidebar svg {
  transition: all 200ms ease-out;
}
.catalog-page--layout-sidebar ul {
  list-style-type: none;
}
@media (max-width: 767px) {
  .catalog-page--layout-sidebar ul {
    display: none;
  }
  .catalog-page--layout-sidebar ul.opened {
    display: block;
    margin-top: 20px;
  }
}
.catalog-page--layout-sidebar ul li {
  font-size: 0;
}
.catalog-page--layout-sidebar ul li a {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 15px 0;
  color: #253746;
  border-bottom: 1px solid #BEC3C8;
  font-size: 14px;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: all 200ms ease-out;
}
.catalog-page--layout-sidebar ul li a:hover {
  text-decoration: underline;
}
.catalog-page--layout-content {
  width: calc(100% - 338px);
}
@media (max-width: 767px) {
  .catalog-page--layout-content {
    width: 100%;
  }
}

.single-product--wrap {
  padding: 170px 40px 60px;
  background: #fff;
}
@media (max-width: 767px) {
  .single-product--wrap {
    padding: 120px 16px 40px;
  }
}
.single-product--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
@media (max-width: 767px) {
  .single-product--grid {
    grid-template-columns: 1fr;
  }
}
.single-product--image {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 555px;
  background: #F8F9FA;
}
.single-product .woocommerce-product-gallery__trigger {
  display: none;
}
.single-product--breadcrumbs {
  margin-bottom: 20px;
}
.single-product--breadcrumbs > p > span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.single-product--breadcrumbs a {
  color: #67737E;
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: all 200ms ease-out;
}
.single-product--breadcrumbs a:hover {
  text-decoration: underline;
}
.single-product--breadcrumbs span {
  color: #253746;
  font-size: 12px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: -0.02em;
}
.single-product--title {
  margin: 24px 0;
  color: #253746;
  font-size: 28px;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 0;
  text-transform: uppercase;
}
.single-product--price {
  display: flex;
  gap: 8px;
  margin: 0 0 24px;
  color: #253746;
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: -0.04em;
}
.single-product--add-to-cart {
  margin-bottom: 32px;
}
.single-product--add-to-cart form {
  display: flex;
  max-width: 555px;
  gap: 20px;
}
.single-product--add-to-cart form:not(.variations_form) {
  align-items: center;
  justify-content: space-between;
}
.single-product--add-to-cart form.variations_form {
  flex-direction: column;
  align-items: flex-start;
}
.single-product--add-to-cart .single_variation_wrap {
  width: 100%;
}
.single-product--add-to-cart .woocommerce-variation-add-to-cart {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}
.single-product--add-to-cart .quantity {
  display: flex;
  align-items: center;
  width: 105px;
  height: 60px;
  border: 1px solid #BEC3C8;
  border-radius: 5px;
}
.single-product--add-to-cart .quantity .input-text {
  order: 2;
  width: 40%;
  color: #253746;
  background: none;
  border: 0;
  font-size: 16px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  -moz-appearance: textfield;
}
.single-product--add-to-cart .quantity .input-text::-webkit-inner-spin-button, .single-product--add-to-cart .quantity .input-text::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.single-product--add-to-cart .quantity .qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30%;
  height: 100%;
  padding: 0;
  background: none;
  border: 0;
  color: #253746;
  cursor: pointer;
}
.single-product--add-to-cart .quantity .qty-btn svg {
  display: flex;
}
.single-product--add-to-cart .quantity .qty-btn.qty-minus {
  order: 1;
}
.single-product--add-to-cart .quantity .qty-btn.qty-plus {
  order: 3;
}
.single-product--add-to-cart .custom-add-to-cart {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 60px;
  padding: 0 20px;
  color: #fff;
  background: #253746;
  border: none;
  border-radius: 0;
  font-size: 13px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  letter-spacing: -0.02em;
  line-height: 120%;
  text-transform: uppercase;
  cursor: pointer;
}
.single-product--add-to-cart .custom-add-to-cart[disabled] {
  opacity: 0.5;
  cursor: default;
}
.single-product--add-to-cart .custom-add-to-cart .btn-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.single-product--add-to-cart .single-product .quantity {
  display: none !important;
  /* Якщо хочеш сховати каунтер */
}
.single-product--description h3 {
  margin: 0 0 8px;
  color: #253746;
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: -0.04em;
}
.single-product--description p {
  margin: 0 0 8px;
  color: #253746;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.02em;
}
.single-product--description p strong {
  font-weight: 600;
}
.single-product--description *:last-child {
  margin-bottom: 0;
}

.delivery-page--heading {
  display: flex;
  flex-direction: column;
  padding: 140px 40px 40px;
  background: #253746;
}
.delivery-page--breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.delivery-page--breadcrumbs a {
  color: #BEC3C8;
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: all 200ms ease-out;
}
.delivery-page--breadcrumbs a:hover {
  color: #fff;
  text-decoration: underline;
}
.delivery-page--breadcrumbs span {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.02em;
}
.delivery-page--title {
  display: flex;
}
.delivery-page--title h1 {
  margin: 0;
  color: #FFFFFF;
  font-size: 48px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .delivery-page--title h1 {
    font-size: 28px;
  }
}
.delivery-page--content {
  display: flex;
  justify-content: flex-end;
  padding: 80px 40px;
  background: url("../img/delivery-overlay.svg") repeat-y left top;
  background-size: 25vw;
  background-color: #fff;
}
.delivery-page--content-inner {
  width: 75%;
  padding-left: 60px;
}
.delivery-page--content h2 {
  margin: 32px 0 16px;
  color: #253746;
  font-weight: 700;
  font-size: 28px;
  line-height: 130%;
  text-transform: uppercase;
}
.delivery-page--content h3 {
  margin: 0 0 10px;
  color: #253746;
  font-size: 22px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.delivery-page--content p {
  margin: 0 0 16px;
  color: #67737E;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.02em;
}
.delivery-page--content ul {
  margin: 0 0 32px;
  padding: 0 0 0 20px;
}
.delivery-page--content ul li {
  margin: 0;
  color: #67737E;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.02em;
}
.delivery-page .delivery-row {
  margin-bottom: 32px;
}
.delivery-page .delivery-row .wp-block-media-text__content {
  padding: 0 0 0 40px;
}
.delivery-page .delivery-row .wp-block-media-text__media {
  align-self: flex-start;
}

.xoo-wsc-header {
  padding: 15px 27px 15px 40px;
}
.xoo-wsc-header .xoo-wsch-text {
  color: #253746;
  font-size: 28px;
  font-weight: 700;
  line-height: 130%;
  text-transform: uppercase;
}

.xoo-wsc-body {
  background-color: #F8F9FA;
}

.xoo-wsc-products:not(.xoo-wsc-pattern-card) .xoo-wsc-product {
  margin: 20px 40px;
  padding: 0 0 20px;
  background: none;
  border-bottom: 1px solid #BEC3C8;
  border-radius: 0;
  box-shadow: none;
}

.xoo-wsc-products:not(.xoo-wsc-pattern-card) .xoo-wsc-img-col {
  width: 80px;
  height: 60px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}
.xoo-wsc-products:not(.xoo-wsc-pattern-card) .xoo-wsc-img-col a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.xoo-wsc-products:not(.xoo-wsc-pattern-card) .xoo-wsc-img-col a img {
  width: auto;
  height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}

.xoo-wsc-ft-amt-subtotal {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.xoo-wsc-ft-amt-subtotal span.xoo-wsc-ft-amt-label {
  color: #253746;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.02em;
}
.xoo-wsc-ft-amt-subtotal .xoo-wsc-ft-amt-value .amount {
  color: #253746;
  font-size: 28px;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 0;
  text-transform: uppercase;
}

.xoo-wsc-footer {
  padding: 20px 40px;
  border-top: 1px solid #BEC3C8;
  box-shadow: none;
}

.wp-block-woocommerce-checkout {
  padding: 0 !important;
  background: #F8F9FA;
}

.variations {
  width: 100%;
}
.variations label {
  display: flex;
  margin: 0 0 12px;
  color: #253746;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: -0.02em;
}
.variations select {
  width: 100%;
  height: 48px;
  padding: 0 12px;
  color: #253746;
  background: none;
  border: 1px solid #BEC3C8;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.02em;
  outline: none;
  cursor: pointer;
}
.variations .reset_variations {
  display: none !important;
  margin-top: 12px;
  color: #67737E;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.02em;
  text-decoration: underline;
  background: none;
  border: 0;
  cursor: pointer;
}
.variations .reset_variations:hover {
  color: #253746;
}
.variations--row {
  margin-bottom: 24px;
}
.variations--row:last-child {
  margin-bottom: 0;
}

.catalog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 60px;
}
.catalog-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #fff;
  background: #253746;
  border: 1px solid #253746;
  border-radius: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.catalog-pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #253746;
  background: none;
  border: 1px solid #253746;
  font-size: 13px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-decoration: none;
}
.catalog-pagination a:hover {
  opacity: 0.8;
}
.catalog-pagination a.prev, .catalog-pagination a.next {
  display: none;
}

.woocommerce-product-gallery .flex-control-thumbs {
  display: flex;
  gap: 8px;
  padding: 0 15px;
}
.woocommerce-product-gallery .flex-control-thumbs li {
  border: 1px solid #BEC3C8;
}
.woocommerce-product-gallery .flex-control-thumbs li::marker {
  display: none !important;
  font-size: 0 !important;
}

.catalog-sorting {
  margin-bottom: 8px;
  padding: 0 8px;
}
@media (max-width: 767px) {
  .catalog-sorting {
    padding: 0;
    margin-bottom: 24px;
  }
}
.catalog-sorting .woocommerce-ordering {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.catalog-sorting select {
  width: 100%;
  height: 48px;
  max-width: 31%;
  padding: 0 12px;
  color: #253746;
  background: none;
  border: 1px solid #BEC3C8;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.02em;
  outline: none;
  cursor: pointer;
}
@media (max-width: 767px) {
  .catalog-sorting select {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .service-products--list-slider .service-products--item {
    padding-right: 16px;
  }
}

.xoo-wsc-ft-buttons-cont {
  gap: 10px;
}
.xoo-wsc-ft-buttons-cont .xoo-wsc-ft-btn {
  height: 56px;
  border-radius: 0;
  box-shadow: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  transition: all 200ms ease-out;
}
.xoo-wsc-ft-buttons-cont .xoo-wsc-ft-btn.xoo-wsc-ft-btn-continue {
  color: #253746;
  background: none;
  border: 1px solid #253746;
}
.xoo-wsc-ft-buttons-cont .xoo-wsc-ft-btn.xoo-wsc-ft-btn-continue:hover {
  color: #fff;
  background: #253746;
}
.xoo-wsc-ft-buttons-cont .xoo-wsc-ft-btn.xoo-wsc-ft-btn-checkout {
  color: #fff;
  background: #253746;
  border: 1px solid #253746 !important;
}
.xoo-wsc-ft-buttons-cont .xoo-wsc-ft-btn.xoo-wsc-ft-btn-checkout:hover {
  opacity: 0.8;
}

dt.variation-kolir,
.wc-block-checkout__use-address-for-billing,
.wc-block-components-product-details__name {
  display: none !important;
}

#contact-fields {
  margin-bottom: 28px;
}

.wc-block-components-checkout-place-order-button {
  width: 100%;
  height: 60px !important;
  color: #fff;
  background: #253746;
  border: none;
  border-radius: 0;
  font-size: 13px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  letter-spacing: -0.02em;
  line-height: 120%;
  text-transform: uppercase;
  cursor: pointer;
}
.wc-block-components-checkout-place-order-button:hover {
  opacity: 0.8;
}
.wc-block-components-checkout-place-order-button[disabled] {
  opacity: 0.5;
  cursor: default;
}/*# sourceMappingURL=style.css.map */