@font-face {
  font-family: "Neue Montreal";
  src: url("../fonts/NeueMontreal-Medium.eot");
  src:
    url("../fonts/NeueMontreal-Medium.eot?#iefix") format("embedded-opentype"),
    url("../fonts/NeueMontreal-Medium.woff2") format("woff2"),
    url("../fonts/NeueMontreal-Medium.woff") format("woff"),
    url("../fonts/NeueMontreal-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Neue Montreal";
  src: url("../fonts/NeueMontreal-Regular.eot");
  src:
    url("../fonts/NeueMontreal-Regular.eot?#iefix") format("embedded-opentype"),
    url("../fonts/NeueMontreal-Regular.woff2") format("woff2"),
    url("../fonts/NeueMontreal-Regular.woff") format("woff"),
    url("../fonts/NeueMontreal-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --white: #ffffff;
  --blue: #40a1d3;
  --storm-blue: #2f3751;
  --error: #ef3e42;

  --h1: max(40px, 90rem);
  --h2: max(32px, 70rem);
  --h3: max(20px, 60rem);
  --h4: max(16px, 32rem);
  --h5: max(16px, 28rem);
  --h6: max(16px, 24rem);

  --text: max(18px, 20rem);
  --link: max(16px, 20rem);
  --button: max(16px, 20rem);
  --caption: max(14px, 18rem);

  --numbers_1: max(48px, 150rem);
  --numbers_2: max(48px, 60rem);

  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}
::selection {
  color: var(--white);
  background-color: var(--blue);
}
.featured-wrap h3::selection,
.featured-text::selection,
.button:not(.button-sec)::selection {
  color: var(--white);
  background-color: var(--storm-blue);
}
/************************* reset *************************/
html {
  height: 100%;
  margin: 0;
  padding: 0;
  width: 100%;
  background: var(--white);
  font-size: 0.052vw;
}
body {
  height: 100%;
  width: 100%;
  position: relative;
  margin: 0;
  padding: 0;
  color: var(--storm-blue);
  font-weight: 400;
  font-size: var(--text);
  line-height: 120%;
  font-family: "Neue Montreal", Arial, Helvetica, sans-serif;
  min-width: 320px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
a,
span,
div,
input,
textarea,
select,
form,
fieldset,
button,
dl,
dd,
dt,
figure,
figcaption,
blockquote,
caption,
aside,
section {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box;
}
img {
  margin: 0;
  padding: 0;
  border-style: none;
  vertical-align: bottom;
}
input,
textarea,
select,
button {
  font-weight: 400;
  font-family: "Neue Montreal", Arial, Helvetica, sans-serif;
  vertical-align: middle;
  border: 0;
  outline: 0;
  background: none;
}
a:hover {
  text-decoration: none;
}
ul li {
  list-style: none;
}
/************************* common styles *************************/
.holder {
  padding: 0 20px;
}
.holder:after {
  display: block;
  content: "";
  clear: both;
}
h1,
.h1 {
  display: block;
  width: 100%;
  font-weight: 500;
  font-size: var(--h1);
  line-height: 100%;
  letter-spacing: -0.02em;
}
h2,
.h2 {
  display: block;
  width: 100%;
  font-weight: 500;
  font-size: var(--h2);
  line-height: 100%;
  letter-spacing: -0.02em;
}
h3,
.h3 {
  display: block;
  font-weight: 400;
  font-size: var(--h3);
  line-height: 110%;
  letter-spacing: -0.02em;
}
h4,
.h4 {
  display: block;
  font-weight: 400;
  font-size: var(--h4);
  line-height: 110%;
}
h5,
.h5 {
  display: block;
  font-weight: 400;
  font-size: var(--h5);
  line-height: 120%;
}
h6,
.h6 {
  display: block;
  font-weight: 400;
  font-size: var(--h6);
  line-height: 120%;
}
a {
  transition: all 0.3s ease-out;
}
p {
  margin: 0 0 max(20px, 24rem);
}
p:last-child {
  margin: 0;
}
p a,
.article li a {
  color: var(--storm-blue);
  text-decoration: underline;
}
p a:hover,
.article li a:hover {
  opacity: 0.5;
  text-decoration: underline;
}
.center {
  text-align: center;
}
.upper {
  text-transform: uppercase;
}
.button-holder {
  text-align: center;
}
.button {
  position: relative;
  display: inline-block;
  padding: max(17px, 19rem) max(44px, 50rem);
  color: var(--white);
  font-weight: 400;
  font-size: var(--button);
  line-height: 120%;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 10px;
  transition: all 0.3s ease-out;
}
.button:hover {
  color: var(--storm-blue);
  background: transparent;
  border: 1px solid var(--storm-blue);
}
.button-white {
  color: var(--storm-blue);
  background: var(--white);
  border: 1px solid var(--white);
}
.button-white:hover {
  color: var(--white);
  background: transparent;
  border: 1px solid var(--white);
}
.button-sec {
  color: var(--storm-blue);
  background: var(--white);
  border: 1px solid rgba(47, 55, 81, 0.12);
}
.button-sec:hover {
  color: var(--white);
  background: var(--storm-blue);
  border: 1px solid var(--storm-blue);
}
/************************* form-block *************************/
.wpcf7-form-control-wrap input {
  display: block;
  width: 100%;
  height: max(56px, 60rem);
  padding: 0 20px;
  margin: 0 0 20px;
  font-size: max(16px, 20rem);
  color: var(--storm-blue);
  background: none;
  border-bottom: 1px solid rgba(47, 55, 81, 0.2);
}
.wpcf7-form-control-wrap textarea {
  display: block;
  width: 100%;
  height: max(120px, 150rem);
  padding: 12px 20px;
  margin: 0 0 20px;
  font-size: max(16px, 20rem);
  color: var(--storm-blue);
  resize: vertical;
  background: none;
  border-bottom: 1px solid rgba(47, 55, 81, 0.2);
}
.wpcf7-form-control-wrap input:focus,
.wpcf7-form-control-wrap textarea:focus {
  border-color: 1px solid var(--storm-blue);
}
.disabled,
:disabled {
  opacity: 0.5;
  pointer-events: none;
}
::-webkit-input-placeholder {
  color: rgba(47, 55, 81, 0.7);
}
:-moz-placeholder {
  color: rgba(47, 55, 81, 0.7);
  opacity: 1;
}
::-moz-placeholder {
  color: rgba(47, 55, 81, 0.7);
  opacity: 1;
}
:-ms-input-placeholder {
  color: rgba(47, 55, 81, 0.7);
}
.error-msg {
  display: none;
  margin: -4px 0 20px;
  font-size: max(14px, 18rem);
  line-height: 110%;
  color: var(--error);
  text-align: left;
}
.error .error-msg {
  display: block;
}
.check-list {
  display: flex;
  flex-direction: column;
  gap: max(24px, 30rem);
}
.check-item {
  position: relative;
  display: flex;
  align-items: center;
  min-height: max(24px, 32rem);
}
.check-input {
  position: absolute;
  left: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.check-label {
  display: block;
  padding: 0 0 0 max(36px, 52rem);
  color: rgba(47, 55, 81, 0.7);
  line-height: 100%;
  cursor: pointer;
}
.check-label::before {
  position: absolute;
  top: 50%;
  margin-top: min(-12px, -16rem);
  left: 0;
  display: block;
  content: "";
  width: max(24px, 32rem);
  height: max(24px, 32rem);
  box-sizing: border-box;
  border: 1px solid rgba(47, 55, 81, 0.4);
  border-radius: 4px;
}
.check-input:checked + .check-label {
  color: var(--storm-blue);
}
.check-input:checked + .check-label::before {
  background: url(../images/check.svg) 50% 50% no-repeat;
  background-size: max(18px, 24rem);
  border-color: var(--storm-blue);
}
.check-label::after {
  width: 1px;
  height: 1px;
  opacity: 0;
  content: "";
  background: url(../images/check.svg) 50% 50% no-repeat;
}
.check-list .wpcf7-checkbox {
  display: flex;
  flex-direction: column;
  gap: max(24px, 30rem);
}
.check-list .wpcf7-list-item {
  display: block;
  margin: 0;
}
.check-list .wpcf7-list-item label {
  display: flex;
  align-items: center;
  min-height: max(24px, 32rem);
  cursor: pointer;
}
.check-list .wpcf7-list-item input[type="checkbox"] {
  position: absolute;
  left: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.check-list .wpcf7-list-item-label {
  position: relative;
  display: block;
  padding: 0 0 0 max(36px, 52rem);
  color: rgba(47, 55, 81, 0.7);
  line-height: 100%;
}
.check-list .wpcf7-list-item-label::before {
  position: absolute;
  top: 50%;
  margin-top: min(-12px, -16rem);
  left: 0;
  display: block;
  content: "";
  width: max(24px, 32rem);
  height: max(24px, 32rem);
  box-sizing: border-box;
  border: 1px solid rgba(47, 55, 81, 0.4);
  border-radius: 4px;
}
.check-list
  .wpcf7-list-item
  input[type="checkbox"]:checked
  + .wpcf7-list-item-label {
  color: var(--storm-blue);
}
.check-list
  .wpcf7-list-item
  input[type="checkbox"]:checked
  + .wpcf7-list-item-label::before {
  background: url(../images/check.svg) 50% 50% no-repeat;
  background-size: max(18px, 24rem);
  border-color: var(--storm-blue);
}
.check-list .wpcf7-list-item-label::after {
  width: 1px;
  height: 1px;
  opacity: 0;
  content: "";
  background: url(../images/check.svg) 50% 50% no-repeat;
}
/************************* wrapper *************************/
#wrapper {
  position: relative;
}
/************************* header *************************/
/************************* header *************************/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: var(--white);
  border-bottom: 1px solid rgba(47, 55, 81, 0.1);
  transition: 0.3s ease-out;
}
.header-up {
  top: min(-85px, -109rem);
}
.header-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  height: max(80px, 104rem);
}
.header-logo {
  position: relative;
  width: max(100px, 148rem);
}
.header-logo img {
  display: block;
  width: 100%;
}
.logo-white {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.header-nav-list {
  display: flex;
  gap: max(20px, 30rem);
}
.header-nav-list li {
  display: flex;
  align-items: center;
  height: max(80px, 104rem);
}
.header-nav-link {
  display: block;
  font-size: max(16px, 20rem);
  color: var(--storm-blue);
  text-decoration: none;
  opacity: 0.5;
}
.header-nav-link:hover,
.header-nav-list li:hover .header-nav-link,
.header-nav-link.active {
  opacity: 1;
}
.nav-parent {
  position: relative;
  margin: 0 max(20px, 26rem) 0 0;
}
.nav-parent::after {
  position: absolute;
  top: 50%;
  margin-top: min(-9px, -12rem);
  right: min(-20px, -26rem);
  content: "";
  width: max(18px, 24rem);
  height: max(18px, 24rem);
  background: url(../images/chevron-down.svg) 50% 50% no-repeat;
  background-size: contain;
  transition: all 0.3s ease-out;
}
.nav-parent.active-sub::after {
  transform: rotate(180deg);
}
.header-right {
  display: flex;
  align-items: center;
}
.header-search-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: max(48px, 64rem);
  height: max(48px, 64rem);
  margin: 0 10px 0 0;
  background: rgba(47, 55, 81, 0.03);
  border-radius: 8px;
}
.header-search-link:hover {
  background: rgba(47, 55, 81, 0.07);
}
.header-search-link svg {
  width: max(24px, 28rem);
  height: max(24px, 28rem);
  transition: all 0.3s ease-out;
}
.header-search-link.active svg {
  opacity: 0;
  visibility: hidden;
}
.header-search-link::before {
  position: absolute;
  inset: 0;
  content: "";
  background: url(../images/close-blue.svg) 50% 50% no-repeat;
  background-size: max(28px, 32rem);
  opacity: 0;
  transition: all 0.3s ease-out;
}
.header-search-link.active::before {
  opacity: 1;
}
.header-blue .header-search-link::before {
  background: url(../images/close.svg) 50% 50% no-repeat;
  background-size: max(28px, 32rem);
}
.header-right .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: max(48px, 64rem);
  padding: 0 max(30px, 50rem);
  margin: 0 max(10px, 20rem) 0 0;
}
.header-flag {
  position: relative;
  width: max(67px, 90rem);
  height: max(48px, 64rem);
}
.header-flag img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.flag-white {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.subnav {
  display: none;
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  padding: max(24px, 30rem) 20px;
  background: var(--white);
  border-top: 1px solid rgba(47, 55, 81, 0.1);
}
.subnav-block {
  display: flex;
  max-width: max(900px, 1120rem);
  margin: 0 auto;
}
.subnav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-right: 1px solid rgba(47, 55, 81, 0.2);
}
.subnav-item:last-child {
  border-right: 0;
}
.subnav-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: max(8px, 12rem);
  padding: 10px;
  color: var(--storm-blue);
  text-decoration: none;
}
.subnav-link svg {
  width: max(28px, 32rem);
  height: max(28px, 32rem);
}
.subnav-link path {
  fill: var(--storm-blue);
  transition: 0.3s ease-out;
}
.subnav-link:hover {
  color: var(--blue);
}
.subnav-link:hover path {
  fill: var(--blue);
}
.subnav-link-text {
  font-weight: 400;
  font-size: max(16px, 24rem);
  line-height: 110%;
  letter-spacing: -0.02em;
  text-align: center;
}
.ui-selectmenu-menu.ui-front {
  z-index: 99999;
}
@media screen and (min-width: 1241px) {
  .li-parent::before {
    position: fixed;
    inset: 0;
    top: max(80px, 104rem);
    content: "";
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.11);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .li-parent.is-open::before {
    opacity: 1;
    visibility: visible;
  }
  .li-parent:hover::before {
    opacity: 1;
    visibility: visible;
  }
  .header li:hover > .subnav {
    display: block;
  }
  .header li:hover > .prod-box {
    display: block;
  }
  .li-parent.is-open > .subnav {
    display: block;
  }
  .li-parent.is-open > .prod-box {
    display: block;
  }
  .prod-nav {
    max-height: 70vh;
    overflow-y: scroll;
    overflow-x: hidden;
  }
}
.prod-box {
  display: none;
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: calc(100dvh - max(80px, 104rem));
  padding: max(24px, 50rem) 20px 0;
  background: var(--white);
  border-top: 1px solid rgba(47, 55, 81, 0.1);
}
.prod-wrap {
  max-width: max(900px, 1464rem);
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.prod-wrap .search {
  width: 100%;
  margin: 0 0 max(24px, 43rem);
}
.prod-block {
  display: flex;
  gap: 20px;
  height: calc(100% - max(80px, 103rem));
}
.prod-side {
  width: max(240px, 287rem);
  min-width: max(240px, 287rem);
}
.prod-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: max(10px, 18rem);
}
.prod-nav-link {
  position: relative;
  color: rgba(47, 55, 81, 0.5);
  text-decoration: none;
}
.prod-nav-link:hover {
  color: var(--storm-blue);
}
.prod-nav-link.active {
  padding: 0 0 0 max(20px, 26rem);
  color: var(--storm-blue);
}
.prod-nav-link.active::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  width: max(18px, 24rem);
  height: max(18px, 24rem);
  margin-top: min(-11px, -13rem);
  background: url(../images/nav-arrow.svg) 50% 50% no-repeat;
  background-size: contain;
}
.prod-content {
  height: 100%;
  flex: 1;
}
.prod-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow-y: auto;
  height: 100%;
  padding: 0 0 1px;
}
@media screen and (max-width: 1600px) {
  .prod-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 1300px) {
  .prod-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.prod-item {
  position: relative;
  padding: 0 max(20px, 30rem) max(20px, 30rem);
  margin: 0 0 max(20px, 30rem);
  border-bottom: 1px solid rgba(47, 55, 81, 0.1);
}
.prod-item::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: max(20px, 30rem);
  content: "";
  border-left: 1px solid rgba(47, 55, 81, 0.1);
}
.prod-img {
  width: 178px;
  height: 172px;
  margin: 0 auto 5px;
}
.prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prod-articul {
  margin: 0 0 9px;
  font-size: max(14px, 18rem);
  line-height: 110%;
  color: rgba(47, 55, 81, 0.5);
}
.prod-name {
  margin: 0 0 20px;
}
.prod-item .button {
  width: 100%;
  padding: 13px 15px;
  font-size: max(16px, 18rem);
}
.header-nav-button {
  display: none;
}
.header-search {
  display: none;
  position: fixed;
  top: max(80px, 104rem);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 300;
  padding: max(8px, 50rem) 16px 0;
  background: #fff;
}
.header-search-mask {
  position: absolute;
  inset: 0;
}
.header-search .search {
  position: relative;
  max-width: max(900px, 1464rem);
  width: 100%;
  margin: 0 auto;
}
.header-search .result {
  top: max(56px, 60rem);
  margin: 0;
  padding: max(4px, 30rem) 0;
  max-height: calc(
    100dvh - (max(56px, 60rem) + max(80px, 104rem) + max(8px, 50rem))
  );
  border: 0;
  border-radius: 0;
}
.header-search .result-item {
  padding: max(6px, 12rem) 0;
  gap: max(14px, 24px);
}
.header-search .result-img {
  width: max(52px, 72px);
  min-width: max(52px, 72px);
  height: max(52px, 72px);
}
.header-search .result-title {
  font-size: max(16px, 24rem);
  line-height: 120%;
}
.header-search .result-text {
  font-size: max(14px, 20rem);
  line-height: 120%;
}
.header-search .result-empty {
  gap: max(16px, 32rem);
  padding-bottom: 15%;
  height: calc(
    100dvh - (max(56px, 60rem) + max(80px, 104rem) + max(8px, 50rem)) - 2px
  );
}
.header-search .result-empty-title {
  font-weight: 500;
  font-size: max(32px, 70rem);
  line-height: 100%;
  letter-spacing: -0.02em;
}
.header-search .result-empty-text {
  max-width: none;
  font-size: max(14px, 20rem);
  line-height: 120%;
  color: var(--storm-blue);
}
.lock {
  overflow: hidden;
}

.header-blue {
  background-color: var(--storm-blue);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header-blue .logo-blue {
  opacity: 0;
}
.header-blue .logo-white {
  opacity: 1;
}
.header-blue .flag-blue {
  opacity: 0;
}
.header-blue .flag-white {
  opacity: 1;
}
.header-blue .header-search-link {
  background: rgba(255, 255, 255, 0.06);
}
.header-blue .header-search-link path {
  stroke: var(--white);
}
.header-blue .header-nav-link {
  color: var(--white);
}
.header-blue .nav-parent::after {
  background: url(../images/chevron-down-white.svg) 50% 50% no-repeat;
}
.header-blue .mob-nav-icon {
  background: rgba(255, 255, 255, 0.06);
}
.header-blue .mob-nav-block::before,
.header-blue .mob-nav-block::after {
  background: var(--white);
}
.header-blue .subnav {
  background: var(--storm-blue);
  border-top-color: rgba(255, 255, 255, 0.1);
}
.header-blue .subnav-item {
  border-right-color: rgba(255, 255, 255, 0.2);
}
.header-blue .subnav-link {
  color: var(--white);
}
.header-blue .subnav-link:hover {
  color: var(--white);
}
.header-blue .subnav-link path {
  fill: var(--white);
}
.header-blue .subnav-link:hover path {
  fill: var(--white);
}
.header-blue .button:hover {
  color: var(--white);
  background: transparent;
  border: 1px solid var(--white);
}
.header-blue .subnav-link:hover {
  color: var(--blue);
}
.header-blue .subnav-link:hover path {
  fill: var(--blue);
}

.mob-nav-icon {
  display: none;
  align-items: center;
  justify-content: center;
  width: max(48px, 64rem);
  height: max(48px, 64rem);
  background: rgba(47, 55, 81, 0.03);
  border-radius: 8px;
}
.mob-nav-block {
  position: relative;
  display: block;
  width: 20px;
  height: 8px;
  transition: all 0.3s linear;
}
.mob-nav-block:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 1px;
  background: var(--storm-blue);
  transition: all 0.3s linear;
}
.mob-nav-block:before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 20px;
  height: 1px;
  background: var(--storm-blue);
  transition: all 0.3s linear;
}
.mob-nav-icon.active .mob-nav-block:before {
  top: 50%;
  transform: rotate(45deg);
}
.mob-nav-icon.active .mob-nav-block:after {
  top: 50%;
  transform: rotate(-45deg);
}
/************************* main-top *************************/
.main-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: max(24px, 30rem);
  margin: 0 0 max(32px, 52rem);
  padding: 20px 0 0;
  text-align: center;
}
.main-top h1 {
  max-width: max(600px, 1170rem);
}
.main-search {
  max-width: max(480px, 550rem);
  margin: 0 auto max(48px, 60rem);
}
.main-search-text {
  margin: 0 0 max(16px, 24rem);
  text-align: center;
}
.main-search .search {
  width: 100%;
  margin: 0 0 20px;
}
.main-search .top-buttons {
  max-width: none;
}
.promo-slider-wrap {
  overflow: hidden;
  margin: 0 -20px;
}
.promo-slider {
  max-width: max(600px, 880rem);
  margin: 0 auto;
  padding: 0 max(60px, 74rem);
}
.promo-slider .slick-list {
  overflow: visible;
}
.promo-slide {
  padding: 0 10px;
}
.promo-item {
  position: relative;
  overflow: hidden;
  display: block;
  color: var(--storm-blue);
  text-decoration: none;
  border: 1px solid rgba(47, 55, 81, 0.12);
  border-radius: 10px;
  transition: 0.3s ease-out;
  transform: scale(0.74);
  opacity: 0.4;
}
.slick-active .promo-item {
  transform: scale(1);
  opacity: 1;
}
.promo-img {
  height: max(360px, 560rem);
}
.promo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.promo-item .catalog-label {
  position: absolute;
  inset: max(16px, 30rem);
  bottom: auto;
}
.promo-title {
  margin: min(-20px, -59rem) 0 0;
  padding: 0 max(16px, 30rem) max(16px, 27rem);
  font-size: max(16px, 24rem);
  line-height: 120%;
  color: rgba(47, 55, 81, 0.5);
}
.promo-title span {
  display: block;
  color: var(--storm-blue);
}
.promo-slider .slick-arrow {
  bottom: auto;
  top: 50%;
  left: auto;
  margin-left: 0;
  margin-top: min(-27px, -32rem);
}
.promo-slider .slick-prev {
  left: 0;
}
.promo-slider .slick-next {
  right: 0;
}

/************************* featured *************************/
.featured {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}
.featured-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.featured .button-holder {
  display: none;
}
.featured-block {
  position: sticky;
  left: 0;
  top: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: max(400px, 680rem);
  padding: max(24px, 40rem) max(24px, 40rem) max(24px, 48rem);
  color: var(--white);
  background: var(--blue);
  border-radius: 10px;
}
.featured-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: auto 0;
}
.featured-wrap h3 {
  max-width: max(200px, 400rem);
}
.featured-text {
  max-width: max(330px, 430rem);
}

/************************* help *************************/
.help-slider {
  background: var(--storm-blue);
}
.help-slide {
  position: relative;
}
.help-bg {
  width: 100%;
  height: max(600px, 960rem);
  max-height: 100dvh;
  object-fit: cover;
}
.help-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 20px max(48px, 80rem);
  color: var(--white);
}
.help-content h2 {
  max-width: max(480px, 960rem);
  margin: 0 0 max(24px, 32rem);
}
.help-text {
  max-width: max(380px, 480rem);
  margin: 0 0 max(36px, 48rem);
}
.help-tabs {
  display: flex;
  overflow-x: auto;
  gap: max(40px, 50rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0 0 max(24px, 30rem);
  margin: 0 0 max(24px, 30rem);
}
.help-tab {
  font-size: max(18px, 24rem);
  line-height: 120%;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  white-space: nowrap;
}
.help-tab:hover,
.help-tab.active {
  color: var(--white);
}

/************************* map *************************/
.map {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}
.map-content {
  position: relative;
}
.map-wrap {
  height: 100%;
  background: #d9d9d9;
  border-radius: 10px;
}
.map-embed {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.map-embed .leaflet-container {
  width: 100%;
  height: 100%;
  background: #ededed;
}
.map-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: max(560px, 870rem);
  padding: max(24px, 30rem);
  color: var(--white);
  background: var(--storm-blue);
  border-radius: 10px;
}
.map-num {
  margin: 0 0 max(50px, 74rem);
  font-size: max(18px, 24rem);
  line-height: 110%;
  letter-spacing: -0.02em;
}
.map-side h3 {
  margin: 0 0 max(24px, 40rem);
}
.map-text {
  font-size: max(18px, 24rem);
  line-height: 120%;
  color: rgba(255, 255, 255, 0.5);
}
.map-text a {
  position: relative;
  color: var(--white);
  text-decoration: none;
}
.map-text a::after {
  position: absolute;
  left: 0;
  bottom: -1px;
  content: "";
  height: 1px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 1s var(--ease-out-expo);
  width: 100%;
}
.map-text a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.map-country {
  margin: auto 0 0;
  font-size: max(18px, 24rem);
  line-height: 120%;
  color: rgba(255, 255, 255, 0.5);
}
.map-buttons {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  gap: 16px;
  z-index: 999;
}
.map-buttons .button-sec {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px max(24px, 30rem);
}
.map-buttons .button-sec path {
  fill: none;
  stroke: var(--storm-blue);
}
.map-buttons .button-sec:hover path {
  fill: none;
  stroke: var(--white);
}
.map-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: max(16px, 32rem);
  margin: 0 -24px 0 -20px;
  padding: 20px 24px 30px 20px;
  border-top: 1px solid rgba(47, 55, 81, 0.1);
  background: var(--white);
  z-index: 999;
}
.map-line .search {
  width: 37%;
}
.map-sorting {
  flex: 1;
  display: flex;
  gap: max(16px, 32rem);
}
.map-sorting .sorting-item {
  flex: 1;
}
.map-page-title {
  margin: 0 0 max(36px, 100rem);
  text-align: center;
}
.map-marker {
  background: transparent;
}
.map-marker-dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2d86c7;
  box-shadow: 0 0 0 2px rgba(45, 134, 199, 0.2);
}
.map-marker.is-active .map-marker-dot {
  width: 10px;
  height: 10px;
  background: var(--storm-blue);
  box-shadow: 0 8px 18px rgba(47, 55, 81, 0.3);
}
.leaflet-popup.map-popup .leaflet-popup-content-wrapper,
.leaflet-popup.map-popup .leaflet-popup-tip {
  background: var(--storm-blue);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(47, 55, 81, 0.25);
}
.leaflet-popup.map-popup .leaflet-popup-content {
  margin: 14px 16px 12px;
}
.map-popup-title {
  font-size: max(16px, 24rem);
  line-height: 120%;
  color: var(--white);
  margin: 0 0 41px;
}
.map-popup-text {
  font-size: max(12px, 18rem);
  line-height: 120%;
  color: rgb(255 255 255 / 80%);
}
.leaflet-control-attribution {
  font-size: 10px;
  opacity: 0.6;
}
.leaflet-control-zoom {
  display: none;
}
.leaflet-container a {
  color: var(--white) !important;
}
.leaflet-popup-tip-container {
  display: none;
}

/************************* main-news *************************/
.main-news {
  position: relative;
}

/************************* main-num *************************/
.main-num .top-text {
  padding: 10px 0 0;
}
.top.main-num {
  gap: max(36px, 40rem);
  margin: 0 0 max(48px, 100rem);
}
.top-buttons {
  display: flex;
  gap: 20px;
  width: 100%;
  max-width: max(420px, 520rem);
}
.top-buttons .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: max(8px, 10rem);
  padding: max(17px, 19rem) 15px;
}
.button svg {
  width: max(28px, 36rem);
  height: max(28px, 36rem);
  margin: -10px 0;
}
.button path,
.button circle {
  transition: 0.3s ease-out;
}
.button path {
  fill: var(--white);
}
.button circle {
  stroke: var(--white);
}
.button:hover path {
  fill: var(--storm-blue);
}
.button:hover circle {
  stroke: var(--storm-blue);
}
.button-sec path {
  fill: var(--storm-blue);
}
.button-sec circle {
  stroke: var(--storm-blue);
}
.button-sec:hover path {
  fill: var(--white);
}
.button-sec:hover circle {
  stroke: var(--white);
}
.main-num-block {
  padding: 0 0 max(80px, 264rem);
  background: url(../images/num-line-1.svg) 50% 100% no-repeat;
  background-size: 100% auto;
}
.main-num-wrap {
  max-width: max(480px, 1344rem);
  margin: 0 auto;
  display: flex;
}
.main-num-item {
  flex: 1;
  text-align: center;
}
.main-num-value {
  font-weight: 500;
  font-size: var(--numbers_1);
  line-height: 110%;
}
.main-num-text {
  font-size: var(--h6);
  line-height: 120%;
  opacity: 0.5;
}

/************************* section *************************/
.section {
  margin: 0 0 max(96px, 220rem);
}

/************************* hero *************************/
.hero {
  padding: max(80px, 104rem) 0 0;
  margin: 0 0 max(96px, 220rem);
  color: var(--white);
  background: var(--storm-blue);
}
.hero .hero-min-links {
  margin: 0 -20px;
  padding: max(28px, 40rem) 20px max(32px, 44rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-block {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
}
.hero .hero-min-link {
  color: var(--white);
}
.hero .hero-min-link::after {
  background: var(--white);
}
.hero .breadcrumbs {
  margin: 12px 0 max(40px, 50rem);
}
.hero .breadcrumbs li {
  color: var(--white);
}
.hero .breadcrumbs li::before {
  color: var(--white);
}
.hero .breadcrumbs li:last-child::before {
  color: var(--white);
}
.hero .breadcrumbs a {
  color: var(--white);
}
.hero .breadcrumbs a::after {
  background: var(--white);
}
.hero-side {
  width: calc(50% - 10px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-media {
  width: calc(50% - 10px);
}
.hero-media-wrap {
  overflow: hidden;
  min-height: 100%;
  height: max(272px, 780rem);
  border-radius: 10px;
}
.hero-img,
.hero-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero h1 {
  margin: 0 0 max(24px, 40rem);
}
.hero h1:last-child {
  margin: 0;
}
.hero-title-1 {
  max-width: max(300px, 660rem);
}
.hero-text {
  max-width: max(510px, 630rem);
  margin: 0 0 max(36px, 40rem);
}
.hero-text:last-child {
  margin: 0;
}
.hero-share {
  margin: auto 0 10px;
}
.hero-share-text {
  margin: 0 0 max(16px, 24rem);
  color: rgba(255, 255, 255, 0.5);
}
.hero-media .hero-share {
  display: none;
}
.hero .brand-slider {
  margin: auto 0 0;
}
.hero .brand-slider::before {
  background: linear-gradient(90deg, #2f3751 0%, rgba(47, 55, 81, 0) 100%);
}
.hero .brand-slider::after {
  background: linear-gradient(270deg, #2f3751 0%, rgba(47, 55, 81, 0) 100%);
}
.hero-center .hero-side {
  display: block;
  width: 100%;
}
.hero-center-wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 0 max(5px, 60rem);
}
.hero-center-wrap .hero-text {
  margin: 0 0 max(24px, 50rem);
}
.hero-center-wrap.hero-center-min {
  align-items: center;
  text-align: center;
  padding: 0 0 max(12px, 110rem);
}
.hero-center-min h1 {
  max-width: max(320px, 600rem);
}

/************************* hero-min *************************/
.hero-min {
  padding: max(80px, 104rem) 0 0;
  margin: 0 0 max(16px, 32rem);
  border-bottom: 1px solid rgba(47, 55, 81, 0.1);
}
.hero-min-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: max(28px, 40rem) 0 max(32px, 44rem);
}
.hero-min-link {
  position: relative;
  color: var(--storm-blue);
  text-decoration: none;
  line-height: 100%;
}
.hero-min-link::after {
  position: absolute;
  left: 0;
  bottom: -3px;
  content: "";
  height: 1px;
  background: var(--storm-blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 1s var(--ease-out-expo);
  width: 100%;
}
.hero-min-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/************************* breadcrumbs *************************/
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0 0 max(40px, 60rem);
}
.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  margin: 0;
  color: var(--storm-blue);
  list-style: none;
}
.breadcrumbs li::before {
  display: block;
  content: "/";
  color: var(--storm-blue);
  opacity: 0.5;
}
.breadcrumbs li:last-child::before {
  color: var(--storm-blue);
}
.breadcrumbs li:first-child::before {
  display: none;
}
.breadcrumbs a {
  position: relative;
  color: var(--storm-blue);
  text-decoration: none;
  opacity: 0.5;
}
.breadcrumbs a::after {
  position: absolute;
  left: 0;
  bottom: -1px;
  content: "";
  height: 1px;
  background: var(--storm-blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 1s var(--ease-out-expo);
  width: 100%;
}
.breadcrumbs a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/************************* top *************************/
.top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: max(24px, 40rem);
  margin: 0 0 max(36px, 60rem);
  text-align: center;
}
.top h2 {
  max-width: max(450px, 990rem);
}
.top-text {
  max-width: max(400px, 490rem);
  color: rgba(47, 55, 81, 0.7);
}
.top-left {
  align-items: flex-start;
  text-align: left;
}
.top-with-button {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.big-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: max(24px, 40rem);
  margin: 0 0 max(64px, 110rem);
  text-align: center;
}
.big-title-text {
  max-width: max(400px, 490rem);
}

/************************* advanced *************************/
.advanced-slider {
  padding: 0 0 max(90px, 104rem);
  margin: 0 -8px;
}
.advanced-slider .slick-track {
  display: flex;
}
.advanced-slider .slick-slide {
  height: auto;
}
.advanced-slide {
  padding: 0 10px 280px;
  text-align: center;
  background: url(../images/num-line-2.svg) 50% 100% no-repeat;
}
.advanced-num {
  max-width: max(240px, 480rem);
  margin: 0 auto 20px;
  font-weight: 500;
  font-size: max(32px, 60rem);
  line-height: 110%;
}
.advanced-text {
  max-width: max(350px, 450rem);
  margin: 0 auto;
  color: rgba(47, 55, 81, 0.5);
}
.advanced-mob {
  display: none;
}

/************************* commitment *************************/
.commitment {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.commitment-item {
  padding: max(16px, 24rem) max(16px, 24rem) max(24px, 32rem);
  border: 1px solid rgba(47, 55, 81, 0.12);
  border-radius: 10px;
}
.commitment-img {
  overflow: hidden;
  height: max(360px, 472rem);
  margin: 0 0 max(24px, 32rem);
  border-radius: 10px;
}
.commitment-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/************************* employment *************************/
.employment {
  padding: max(64px, 130rem) 0;
  color: var(--white);
  background-color: var(--storm-blue);
}
.employment h2 {
  margin: 0 0 max(24px, 50rem);
  text-align: center;
}
.employment-text {
  max-width: max(480px, 600rem);
  margin: 0 auto max(48px, 176rem);
  text-align: center;
}
.employment-line {
  position: relative;
  overflow: hidden;
  margin: 0 -20px;
}
.employment-line::before {
  position: absolute;
  top: max(76px, 182rem);
  left: 0;
  width: 100%;
  height: max(40px, 66rem);
  content: "";
  background: url(../images/line-bg.svg) 0 0 repeat-x;
}
.employment-wrap {
  position: relative;
  display: flex;
  gap: max(70px, 250rem);
  padding-right: max(70px, 250rem);
}
.employment-item {
  overflow: hidden;
  width: max(150px, 280rem);
  min-width: max(150px, 280rem);
  height: max(192px, 340rem);
  border-radius: 10px;
}
.employment-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/************************* follow *************************/
.follow {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.follow-col {
  width: calc(50% - 10px);
}
.follow-col h2 {
  margin: 0 0 max(24px, 50rem);
}
.follow-text {
  max-width: max(390px, 490rem);
  margin: 0 0 max(36px, 40rem);
}
.follow-line {
  overflow: hidden;
  position: relative;
  height: max(350px, 860rem);
}
.follow-line::before,
.follow-line::after {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 10;
  content: "";
  height: max(120px, 240rem);
}
.follow-line::before {
  top: 0;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
}
.follow-line::after {
  bottom: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
}
.follow-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 20px;
}
.follow-wrap img {
  width: 100%;
  height: max(450px, 930rem);
  object-fit: cover;
  border-radius: 10px;
}

/************************* news *************************/
.client-line {
  overflow: hidden;
  margin: 0 -20px;
}
.client-wrap {
  display: flex;
}
.client-wrap img {
  width: max(195px, 506rem);
  height: max(87px, 226rem);
  object-fit: cover;
}

/************************* banner *************************/
.banner {
  position: relative;
  height: max(600px, 960rem);
}
.banner-2 {
  height: max(500px, 960rem);
}
.banner-img {
  width: 100%;
  height: 100%;
  max-height: 100dvh;
  object-fit: cover;
}
.banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: max(64px, 87rem) 20px 50px;
  color: var(--white);
}
.banner-content h2 {
  max-width: max(390px, 830rem);
}
.banner-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: max(36px, 40rem);
  max-width: max(360px, 455rem);
  margin: 0 0 0 auto;
}

/************************* news *************************/
.news-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: max(24px, 40rem);
  margin: 0 0 max(32px, 110rem);
  text-align: center;
}
.news-top-text {
  max-width: max(520px, 640rem);
}
.news-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 max(32px, 62rem);
}
.tabs {
  display: inline-flex;
  padding: 4px;
  background: rgba(47, 55, 81, 0.03);
  border-radius: 10px;
}
.tabs-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max(200px, 250rem);
  height: max(48px, 60rem);
  color: var(--storm-blue);
  text-decoration: none;
  border-radius: 10px;
}
.tabs-item:hover {
  background: rgba(47, 55, 81, 0.04);
}
.tabs-item.active {
  color: var(--white);
  background: var(--blue);
}
.news {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: max(24px, 30rem) 20px;
  margin: 0 0 max(24px, 60rem);
}
.news:last-child {
  margin: 0;
}
.news-item {
  display: flex;
  flex-direction: column;
  padding: max(24px, 30rem);
  color: var(--storm-blue);
  text-decoration: none;
  border: 1px solid rgba(47, 55, 81, 0.12);
  border-radius: 12px;
}
.news-item h4 {
  max-width: max(240px, 390rem);
  margin: 0 0 20px;
  font-size: max(20px, 32rem);
}
.news-text {
  max-width: max(340px, 430rem);
  margin: 0 0 max(16px, 55rem);
  color: rgba(47, 55, 81, 0.5);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: max(44px, 49rem);
}
.news-item .more {
  margin: auto 0 max(36px, 48rem);
}
.news-item:hover .more {
  text-decoration: none;
}
.news-img {
  overflow: hidden;
  border-radius: 8px;
}
.news-img img {
  width: 100%;
  height: max(225px, 306rem);
  object-fit: cover;
  transition: all 0.4s ease-out;
}
.news-item:hover .news-img img {
  transform: scale(1.1);
}
.more {
  color: var(--blue);
  text-decoration: underline;
}
.more:hover {
  text-decoration: none;
}

/************************* article *************************/
.article {
  max-width: max(750px, 850rem);
  margin: 0 auto;
}
.article h2 {
  margin: 0 0 40px;
  max-width: max(300px, 740rem);
  padding-top: max(44px, 136rem);
}
.article h2:first-child {
  padding-top: 0;
}
.article ul {
  margin: 0 0 max(20px, 24rem);
  padding: 0 0 0 20px;
}
.article li {
  margin: 0 0 max(20px, 24rem);
  list-style-type: disc;
}
.article ul:last-child,
.article li:last-child {
  margin: 0;
}
.article-img {
  margin: 0 0 max(20px, 24rem);
  padding: 50px 0 0;
}
.article-img-wrap {
  overflow: hidden;
  height: max(200px, 425rem);
  border-radius: 10px;
}
.article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/************************* sorting *************************/
.sorting {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin: 0 0 max(32px, 40rem);
}
.search {
  position: relative;
  z-index: 120;
  width: max(400px, 480rem);
}
.search form {
  position: relative;
}
.search .wpcf7-form-control-wrap input {
  padding-left: 0 60px 0 24px;
  margin: 0;
  background: rgba(47, 55, 81, 0.03);
  border-bottom: 0;
  border-radius: 10px;
}
.search-button {
  position: absolute;
  top: 50%;
  right: 24px;
  margin-top: -12px;
  width: 24px;
  height: 24px;
  background: url(../images/search.svg) 50% 50% no-repeat;
  background-size: contain;
  cursor: pointer;
}
.sorting-right {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.sorting-right .sorting-item {
  width: 317px;
}
.result {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: max(12px, 16rem) 0 0;
  padding: 4px 0;
  z-index: 70;
  display: flex;
  flex-direction: column;
  max-height: 276px;
  overflow-y: auto;
  background: var(--white);
  border: 1px solid rgba(47, 55, 81, 0.12);
  border-radius: 10px;
}
.result-item {
  display: flex;
  align-items: center;
  padding: max(6px, 12rem) 16px;
  gap: 14px;
  color: var(--storm-blue);
  text-decoration: none;
}
.result-item:hover {
  background: rgba(47, 55, 81, 0.06);
}
.result-img {
  overflow: hidden;
  border-radius: 6px;
  width: 52px;
  height: 52px;
}
.result-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.result-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.result-text {
  font-size: max(14px, 18rem);
  line-height: 110%;
  color: rgba(47, 55, 81, 0.3);
}
.key {
  background: rgba(64, 161, 211, 0.2);
}
.result-empty {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  height: 162px;
  padding: 10px;
  text-align: center;
}
.result-empty-text {
  max-width: max(160px, 230rem);
  font-size: max(14px, 18rem);
  line-height: 110%;
  color: rgba(47, 55, 81, 0.3);
}

/************************* catalog *************************/
.catalog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 0 max(24px, 40rem);
}
.catalog-item {
  position: relative;
  color: var(--storm-blue);
  text-decoration: none;
  border: 1px solid rgba(47, 55, 81, 0.12);
  border-radius: 10px;
}
.catalog-item-top {
  padding: max(24px, 40rem) max(24px, 40rem) 0;
}
.catalog-item h4 {
  margin: 0 0 max(16px, 24rem);
  font-size: max(20px, 32rem);
}
.catalog-label {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.catalog-label-item {
  padding: max(8px, 10rem) max(12px, 15rem);
  font-size: max(14px, 18rem);
  line-height: 110%;
  background: rgba(47, 55, 81, 0.05);
  border-radius: 4px;
}
.catalog-img {
  height: max(258px, 541rem);
}
.catalog-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.catalog-item .res-arrow {
  position: absolute;
  right: max(24px, 40rem);
  bottom: max(24px, 40rem);
}
.catalog-item:hover .res-arrow {
  opacity: 1;
}

/************************* product *************************/
.product {
  display: flex;
  justify-content: space-between;
}
.product-side {
  width: calc(50% - 24px);
  display: flex;
  flex-direction: column;
}
.product-content {
  width: calc(50% - 24px);
}
.product-side .product-top {
  display: none;
}
.product-top {
  display: flex;
  flex-direction: column;
  gap: max(16px, 32rem);
  margin: 0 0 max(24px, 32rem);
}
.product-text {
  max-width: max(520px, 640rem);
  margin: 0 0 max(32px, 50rem);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.product-text em {
  position: relative;
  display: block;
  margin: 1em 0 0;
}
.product-text a {
  display: block;
  margin: 1em 0;
}
.product-buttons {
  display: flex;
  gap: 16px 20px;
}
.product-buttons .button {
  flex: 1;
}
.product-links {
  display: flex;
  flex-direction: column;
  margin: 0 0 32px;
  border-bottom: 1px solid rgba(47, 55, 81, 0.12);
}
.product-link {
  position: relative;
  padding: max(24px, 28rem) 0;
  padding-right: 40px;
  font-size: max(16px, 24rem);
  line-height: 120%;
  color: var(--storm-blue);
  text-decoration: none;
  border-top: 1px solid rgba(47, 55, 81, 0.12);
}
.product-link::after {
  position: absolute;
  right: 0;
  top: 50%;
  content: "";
  width: max(24px, 32rem);
  height: max(24px, 32rem);
  margin-top: min(-12px, -16rem);
  background: url(../images/slider-arrow.svg) 50% 50% no-repeat;
  background-size: contain;
}
.product-share {
  margin: auto 0 0;
}
.product-share-text {
  margin: 0 0 max(16px, 36rem);
  color: rgba(47, 55, 81, 0.5);
}
.product-share .footer-web {
  width: max(36px, 60rem);
  height: max(36px, 60rem);
  border: 1px solid rgba(47, 55, 81, 0.12);
}
.product-share .footer-web path {
  fill: var(--storm-blue);
}
.product-share .footer-web .stroke {
  fill: none;
  stroke: var(--white);
}
.product-share .footer-web:hover {
  background: var(--storm-blue);
  border-color: var(--storm-blue);
}
.product-share .footer-web:hover path {
  fill: var(--white);
}
.product-share .footer-web:hover .stroke {
  fill: none;
  stroke: var(--storm-blue);
}
.product-share .footer-web svg {
  width: max(18px, 32rem);
  height: max(18px, 32rem);
}
.product-share .footer-web .svg-mail {
  width: max(16px, 22rem);
  height: max(11px, 16rem);
}
.product-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: max(320px, 758rem);
  margin: 0 0 50px;
  padding: 0 max(16px, 24rem);
  border: 1px solid rgba(47, 55, 81, 0.12);
  border-radius: 20px;
}
.photo-slider {
  width: 100%;
  padding: 0 max(68px, 150rem);
}
.photo-slide img {
  width: 100%;
  height: max(160px, 408rem);
  object-fit: contain;
}
.photo-slider .slick-arrow {
  top: 50%;
  left: auto;
  margin-top: min(-18px, -32rem);
  width: max(36px, 64rem);
  height: max(36px, 64rem);
  background-size: max(18px, 32rem);
}
.photo-slider .slick-prev {
  left: 0;
  margin-left: 0;
}
.photo-slider .slick-next {
  right: 0;
  margin-left: 0;
}
.thumb-slider-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: max(16px, 24rem);
}
.thumb-slider {
  width: max(272px, 333rem);
  margin: 0 auto;
}
.thumb-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max(80px, 95rem);
  height: max(45px, 63rem);
  margin: 0 auto;
  padding: max(6px, 8rem) 14px;
  border: 1px solid rgba(47, 55, 81, 0.05);
  border-radius: 8px;
  cursor: pointer;
}
.thumb-item img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  opacity: 0.5;
  transition: 0.3s ease-out;
}
.thumb-item:hover img {
  opacity: 1;
}
.slick-current .thumb-item {
  border-color: transparent;
  background: rgba(47, 55, 81, 0.03);
}
.slick-current .thumb-item img {
  opacity: 1;
}

/************************* product-tabs *************************/
.product-tabs {
  display: inline-flex;
  padding: 4px;
  margin: 0 0 max(36px, 50rem);
  background: rgba(47, 55, 81, 0.03);
  border-radius: 10px;
}
.product-tabs-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max(160px, 180rem);
  height: max(48px, 60rem);
  color: var(--storm-blue);
  text-decoration: none;
  border-radius: 10px;
}
.product-tabs-item:hover {
  background: rgba(47, 55, 81, 0.04);
}
.product-tabs-item.active {
  color: var(--white);
  background: var(--blue);
}
.product-tab {
  display: none;
}
.product-tab.vis {
  display: block;
}
.stat-block {
  display: flex;
  justify-content: space-between;
  gap: 48px;
}
.stat-col {
  flex: 1;
}
.product-tab h6 {
  margin: 0 0 32px;
  color: rgba(47, 55, 81, 0.5);
}
.product-tab#tab1 {
  text-align: left;
}
.product-tab#tab1 > * {
  margin: 0 0 max(16px, 22rem);
}
.product-tab#tab1 > *:last-child {
  margin-bottom: 0;
}
.product-tab#tab1 p,
.product-tab#tab1 div {
  font-size: max(16px, 24rem);
  line-height: 150%;
  color: var(--storm-blue);
}
.product-tab#tab1 strong {
  color: var(--storm-blue);
}
.product-tab#tab1 ul {
  margin: 0 0 max(16px, 22rem);
  padding: 0 0 0 max(24px, 34rem);
}
.product-tab#tab1 li {
  margin: 0 0 8px;
  list-style-type: disc;
}
.product-tab#tab1 li:last-child {
  margin-bottom: 0;
}
.product-tab#tab1 [align="center"] {
  text-align: left;
}
.product-tab#tab2 {
  text-align: left;
}
.product-tab#tab2 > * {
  margin: 0 0 max(12px, 18rem);
}
.product-tab#tab2 > *:last-child {
  margin-bottom: 0;
}
.product-tab#tab2 p,
.product-tab#tab2 div {
  font-size: max(16px, 24rem);
  line-height: 150%;
  color: var(--storm-blue);
}
.product-tab#tab2 strong {
  color: var(--storm-blue);
}
.product-tab#tab2 ul {
  margin: 0 0 max(16px, 22rem);
  padding: 0 0 0 max(24px, 34rem);
}
.product-tab#tab2 li {
  margin: 0 0 8px;
  list-style-type: disc;
}
.product-tab#tab2 li:last-child {
  margin-bottom: 0;
}
.product-tab#tab5 {
  text-align: left;
}
.product-tab#tab5 > * {
  margin: 0 0 max(12px, 18rem);
}
.product-tab#tab5 > *:last-child {
  margin-bottom: 0;
}
.product-tab#tab5 p,
.product-tab#tab5 div {
  font-size: max(16px, 24rem);
  line-height: 150%;
  color: var(--storm-blue);
}
.product-tab#tab5 strong {
  color: var(--storm-blue);
}
.product-tab#tab5 h3 {
  margin: 0 0 max(16px, 22rem);
  font-size: max(18px, 28rem);
  line-height: 130%;
  color: var(--storm-blue);
}
.stat-list {
  margin: 0 0 max(36px, 50rem);
  border-bottom: 1px solid rgba(47, 55, 81, 0.12);
}
.stat-list:last-child {
  margin: 0;
}
.stat-item {
  padding: max(24px, 28rem) 0;
  font-size: max(16px, 24rem);
  line-height: 120%;
  border-top: 1px solid rgba(47, 55, 81, 0.12);
}
.stat-item ul {
  padding: 0 0 0 max(24px, 34rem);
}
.stat-item li {
  list-style-type: disc;
}
.stat-download {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: max(24px, 28rem) 0;
  font-size: max(16px, 24rem);
  line-height: 120%;
  border-top: 1px solid rgba(47, 55, 81, 0.12);
}
.stat-download-link {
  color: var(--blue);
}
.video-slider {
  width: calc(100% + 20px);
  padding: 0 0 max(70px, 104rem);
}
.video-slide {
  padding: 0 20px 0 0;
}
.video-item {
  position: relative;
  overflow: hidden;
  width: max(500px, 800rem);
  height: max(367px, 512rem);
  border-radius: 10px;
}
.video-tag {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-play img {
  width: max(72px, 96rem);
  height: max(72px, 96rem);
}
.slick-arrow {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 10;
  width: max(54px, 64rem);
  height: max(54px, 64rem);
  font-size: 0;
  cursor: pointer;
  background: rgba(47, 55, 81, 0.03) url(../images/slider-arrow.svg) 50% 50%
    no-repeat;
  background-size: max(24px, 32rem);
  border-radius: 8px;
  transition: 0.3s ease-out;
}
.slick-prev {
  margin-left: min(-58px, -68rem);
  transform: scale(-1, 1);
}
.slick-next {
  margin-left: 4px;
}
.slick-arrow:hover {
  background-color: rgba(47, 55, 81, 0.07);
}

/************************* brand-slider *************************/
.brand-slider {
  position: relative;
  max-width: max(240px, 482rem);
  width: 100%;
}
.brand-slider::before,
.brand-slider::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 10;
  content: "";
  width: max(94px, 189rem);
}
.brand-slider::before {
  left: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}
.brand-slider::after {
  right: 0;
  background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}
.brand-slide {
  padding: 0 5px;
}
.brand-slide img {
  width: max(84px, 166rem);
  height: max(84px, 166rem);
  transform: scale(0.77);
  transition: all 0.5s ease-in-out;
}
.slick-center.brand-slide img {
  transform: scale(1);
}

/************************* catalog-top *************************/
.catalog-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: max(24px, 40rem);
  margin: 0 0 max(32px, 140rem);
  text-align: center;
}
.catalog-top-text {
  max-width: max(430px, 540rem);
}
.buttons-wrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: max(360px, 548rem);
}
.buttons-wrap .button {
  width: calc(50% - 10px);
}

/************************* innovation *************************/
.innovation {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: max(24px, 50rem);
  text-align: center;
}
.innovation-text {
  max-width: max(490px, 610rem);
}

/************************* res *************************/
.res {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.res-2x {
  grid-template-columns: repeat(2, 1fr);
}
.res-item {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: max(260px, 360rem);
  color: var(--storm-blue);
  text-decoration: none;
  border-radius: 10px;
}
.res-item::before {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid rgba(47, 55, 81, 0.12);
  border-radius: 10px;
}
.res-img {
  position: absolute;
  overflow: hidden;
  top: max(24px, 40rem);
  right: max(24px, 40rem);
  width: max(154px, 220rem);
  height: max(123px, 160rem);
  border-radius: 10px;
  transition: all 0.5s ease-in-out;
}
.res-img::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0;
  background: #000;
  transition: all 0.3s ease-in;
}
.res-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.res-info {
  margin: auto 0 0;
  padding: 0 max(24px, 40rem) max(24px, 40rem);
}
.res-wrap {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: max(16px, 20rem);
}
.res-title {
  font-size: max(20px, 28rem);
  line-height: 120%;
}
.res-text {
  opacity: 0.7;
}
@media screen and (min-width: 1025px) {
  .res-item:hover .res-img {
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
  .res-item:hover .res-img::before {
    opacity: 0.2;
  }
  .res-item:hover {
    color: var(--white);
  }
}
.res-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: max(48px, 64rem);
  height: max(48px, 64rem);
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 4px;
  opacity: 0;
  transition: 0.4s ease-in;
}
.res-arrow img {
  width: max(12px, 16rem);
  transition: 0.4s ease-in;
}
.res-arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  transform: translate(-50%, -50%);
  width: max(12px, 16rem);
  height: max(12px, 16rem);
  background: url(../images/blue-arrow.svg) 50% 50% no-repeat;
  background-size: contain;
  opacity: 0;
  transition: 0.4s ease-in;
}
.res-item:hover .res-arrow {
  background: var(--white);
  border-color: var(--blue);
}
.res-item:hover .res-arrow img {
  opacity: 0;
}
.res-item:hover .res-arrow::before {
  opacity: 1;
}
.res-compact .res-item {
  height: max(240px, 286rem);
}
.res-compact .res-arrow {
  position: absolute;
  top: max(24px, 40rem);
  right: max(24px, 40rem);
  opacity: 1;
}
.res-compact .res-item:hover {
  color: var(--storm-blue);
}

/************************* mid-block *************************/
.mid-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.mid-block h2 {
  max-width: max(360px, 760rem);
  margin: 0 0 max(24px, 50rem);
}
.mid-block-text {
  max-width: max(400px, 490rem);
  margin: 0 0 max(36px, 40rem);
}
.mid-block-text:last-child {
  margin: 0;
}
.mid-form h2 {
  max-width: max(280px, 600rem);
  margin: 0 0 max(24px, 40rem);
}
.mid-form .mid-block-text {
  max-width: max(300px, 360rem);
  margin: 0 0 max(36px, 56rem);
  color: rgba(47, 55, 81, 0.7);
}
.mid-form-wrap {
  max-width: max(480px, 614rem);
  width: 100%;
}
.mid-form-wrap .form-button {
  justify-content: center;
}
.mid-form-wrap .form-button .button {
  flex: none;
}

/************************* footer *************************/
.pros {
  display: flex;
  justify-content: space-between;
}
.pros-col {
  width: calc(50% - 10px);
}
.pros-col .top {
  align-items: flex-start;
  text-align: left;
}
.pros-col h2 {
  max-width: max(400px, 800rem);
}
.pros-list {
  border-bottom: 1px solid rgba(47, 55, 81, 0.12);
}
.pros-item {
  display: flex;
  align-items: center;
  gap: max(24px, 43rem);
  padding: max(32px, 36rem) 0;
  border-top: 1px solid rgba(47, 55, 81, 0.12);
}
.pros-align-top .pros-item {
  align-items: flex-start;
}
.pros-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max(48px, 72rem);
  min-width: max(48px, 72rem);
  height: max(48px, 72rem);
  background: rgba(47, 55, 81, 0.03);
  border-radius: 4px;
}
.pros-item h5 {
  max-width: max(290px, 630rem);
}
.pros-icon img {
  width: max(24px, 32rem);
}

/************************* iso *************************/
.iso-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: max(24px, 40rem);
  margin: 0 0 max(64px, 80rem);
  text-align: center;
}
.iso-top-text {
  max-width: max(440px, 540rem);
  margin: 0 0 10px;
}
.iso {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.iso-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: max(360px, 487rem);
  padding: max(24px, 40rem);
  border: 1px solid rgba(47, 55, 81, 0.12);
  border-radius: 10px;
}
.iso-img img {
  width: max(75px, 112rem);
}
.iso-content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.iso-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: max(380px, 480rem);
}
.iso-title {
  font-weight: 500;
  font-size: max(32px, 36rem);
  line-height: 110%;
}
.iso-text {
  font-size: max(16px, 24rem);
  line-height: 120%;
}
.iso-item .button {
  white-space: nowrap;
}

/************************* faq *************************/
.faq {
  display: flex;
  justify-content: space-between;
}
.faq-col {
  width: calc(50% - 10px);
}
.faq-col h2 {
  max-width: max(400px, 750rem);
}
.faq-list {
  border-bottom: 1px solid rgba(47, 55, 81, 0.12);
}
.faq-item {
  padding: max(24px, 36rem) 0;
  border-top: 1px solid rgba(47, 55, 81, 0.12);
}
.faq-top {
  position: relative;
  display: block;
  padding: 0 30px 0 0;
  font-size: max(16px, 28rem);
  line-height: 120%;
  color: var(--storm-blue);
  text-decoration: none;
}
.faq-top::after {
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: min(-12px, -16rem);
  width: max(24px, 32rem);
  height: max(24px, 32rem);
  content: "";
  background: url(../images/chevron-right.svg) 50% 50% no-repeat;
  background-size: contain;
  transition: all 0.3s linear;
}
.faq-top.active::after {
  transform: rotate(180deg);
}
.faq-hidden {
  display: none;
  padding: max(16px, 32rem) 0 0;
}
.faq-hidden.vis {
  display: block;
}
.faq-text {
  max-width: max(530px, 630rem);
  margin: 0 0 32px;
}
.faq-hidden p {
  margin: 0 0 10px;
}
.faq-hidden ul {
  padding: 0 0 0 20px;
  margin: 0 0 10px;
}
.faq-hidden ul li {
  list-style-type: disc;
}
.faq-hidden p:last-child,
.faq-hidden ul:last-child,
.faq-text:last-child,
.faq-img:last-child {
  margin: 0;
}
.faq-img {
  overflow: hidden;
  max-width: max(500px, 630rem);
  height: max(193px, 317rem);
  margin: 0 0 32px;
  border-radius: 10px;
}
.faq-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.faq-text a {
  color: var(--storm-blue);
}

/************************* link-block *************************/
.link-block {
  display: flex;
  justify-content: space-between;
}
.link-col {
  width: calc(50% - 10px);
}
.link-list {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(47, 55, 81, 0.12);
}
.link-item {
  position: relative;
  padding: max(26px, 36rem) 0;
  padding-right: 40px;
  font-size: max(16px, 28rem);
  line-height: 120%;
  color: var(--storm-blue);
  text-decoration: none;
  border-top: 1px solid rgba(47, 55, 81, 0.12);
}
.link-item::after {
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: min(-12px, -16rem);
  width: max(24px, 32rem);
  height: max(24px, 32rem);
  content: "";
  background: url(../images/arrow-up-right.svg) 50% 50% no-repeat;
  background-size: contain;
  transition: all 0.3s linear;
}
.link-item span {
  position: relative;
}
.link-item span::after {
  position: absolute;
  left: 0;
  bottom: -1px;
  content: "";
  height: 1px;
  background: var(--storm-blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 1s var(--ease-out-expo);
  width: 100%;
}
.link-item:hover span::after {
  transform: scaleX(1);
  transform-origin: left;
}

/************************* success *************************/
.success {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.success-item {
  padding: max(16px, 24rem) max(16px, 24rem) max(24px, 32rem);
  border: 1px solid rgba(47, 55, 81, 0.12);
  border-radius: 10px;
}
.success-img {
  overflow: hidden;
  height: max(200px, 472rem);
  margin: 0 0 max(24px, 32rem);
  border-radius: 10px;
}
.success-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.success h5 {
  margin: 0 0 max(12px, 20rem);
}
.success-text {
  opacity: 0.7;
}

/************************* leading *************************/
.leading h2 {
  max-width: max(700px, 1490rem);
  margin: 0 0 max(24px, 80rem);
}
.leading-block {
  display: flex;
  gap: 40px;
}
.leading-img {
  width: calc(50% - 20px);
  height: max(318px, 610rem);
}
.leading-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.leading-col {
  width: calc(50% - 20px);
}
.leading-text {
  max-width: max(390px, 490rem);
  margin: 0 0 max(36px, 40rem);
}
.leading-text:last-child {
  margin: 0;
}
.leading-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(50% - 20px);
  height: max(170px, 610rem);
  border: 1px solid rgba(47, 55, 81, 0.12);
  border-radius: 10px;
}
.leading-box .brand-slider {
  max-width: max(240px, 640rem);
}
.leading-box .brand-slider::before,
.leading-box .brand-slider::after {
  width: max(94px, 250rem);
}
.leading-box .brand-slide img {
  width: max(84px, 220rem);
  height: max(84px, 220rem);
}

/************************* info *************************/
.info {
  display: flex;
  justify-content: space-between;
}
.info-col {
  width: calc(50% - 10px);
}
.info-col h2 {
  max-width: max(400px, 790rem);
  margin: 0 0 max(24px, 40rem);
}
.info-text {
  max-width: max(390px, 490rem);
  margin: 0 0 max(36px, 40rem);
}
.info-col h2:last-child,
.info-text:last-child {
  margin: 0;
}
.info-col h2 + .info-text {
  opacity: 0.7;
}

/************************* form-block *************************/
.form-block {
  display: flex;
  justify-content: space-between;
}
.form-col {
  width: calc(50% - 10px);
}
.form-col h1,
.form-col h2 {
  margin: 0 0 max(24px, 40rem);
}
.form-text {
  max-width: max(440px, 540rem);
}
.form-col h1:last-child,
.form-col h2:last-child {
  margin: 0;
}
.form-part {
  padding: 0 0 max(16px, 40rem);
}
.form-part + .form-button {
  padding-top: 0;
}
.form-button {
  display: flex;
  gap: 10px;
  padding-top: max(4px, 20rem);
}
.form-button .button {
  flex: 1;
}
.form-title {
  padding: 0 20px max(24px, 30rem);
}
.input-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.input-block .wpcf7-form-control-wrap {
  width: calc(50% - 10px);
}
.input-3x .wpcf7-form-control-wrap {
  width: calc(33.33% - 13px);
}
.form-col .check-list {
  padding: 0 20px 20px;
}
.form-note {
  margin: -4px 0 20px;
  padding: 0 20px;
  font-size: max(14px, 18rem);
  line-height: 110%;
  color: rgba(47, 55, 81, 0.7);
}
.rma-field-error {
  margin: -4px 0 20px;
  padding: 0 20px;
  font-size: max(14px, 18rem);
  line-height: 110%;
  color: #d62828;
}
.form-note a {
  color: var(--blue);
  text-decoration: none;
}
.file {
  position: relative;
  margin: 0 0 max(24px, 30rem);
}
.file-input {
  position: absolute;
  left: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.file-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 117px;
  padding: 20px;
  cursor: pointer;
  border: 1px dashed rgba(47, 55, 81, 0.2);
  border-radius: 10px;
}
.file-icon {
  width: max(24px, 36rem);
  margin: 0 0 24px;
}
.file-icon img {
  display: block;
  width: 100%;
}
.file-title {
  margin: 0 0 max(8px, 12rem);
  line-height: 100%;
}
.file-text {
  font-size: max(14px, 18rem);
  line-height: 110%;
  color: rgba(47, 55, 81, 0.6);
}
.file-drop {
  display: none;
}
.file-label.active {
  background: rgba(64, 161, 211, 0.1);
  border-color: var(--blue);
}
.file-label.active .file-icon,
.file-label.active .file-title,
.file-label.active .file-text {
  display: none;
}
.file-label.active::after {
  content: "Drop your Image Here";
}
.file-text.error {
  color: var(--error);
}
.file-list {
  display: flex;
  gap: 30px;
  width: 100%;
  overflow-x: auto;
  padding: 6px 0 0;
  margin: 32px 0 0;
}
.file-item {
  position: relative;
  width: 75px;
  min-width: 75px;
  height: 118px;
}
.file-list img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.file-delete {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 24px;
  height: 24px;
  background: var(--blue) url(../images/close.svg) 50% 50% no-repeat;
  border-radius: 50%;
}

.form-info {
  max-width: max(520px, 620rem);
  margin: 0 0 max(30px, 50rem);
}
.form-info h5 {
  margin: 0 0 30px;
  font-size: max(20px, 28rem);
}
.form-info ul {
  margin: 0 0 max(20px, 24rem);
  padding: 0 0 0 20px;
}
.form-info li {
  list-style-type: disc;
}
.form-info ul:last-child {
  margin: 0;
}

/************************* contact *************************/
.contact-info {
  display: flex;
  gap: max(40px, 64rem);
}
.contact-info-title {
  margin: 0 0 8px;
  color: rgba(47, 55, 81, 0.5);
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-info-item a {
  position: relative;
  color: var(--storm-blue);
  text-decoration: none;
}
.contact-info-item a::after {
  position: absolute;
  left: 0;
  bottom: -1px;
  content: "";
  height: 1px;
  background: var(--storm-blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 1s var(--ease-out-expo);
  width: 100%;
}
.contact-info-item a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/************************* policy *************************/
.policy {
  max-width: max(700px, 800rem);
  margin: 0 auto;
}
.policy h5 {
  margin: 0 0 30px;
  padding-top: max(28px, 56rem);
  font-size: max(20px, 28rem);
}
.policy h5:first-child {
  padding-top: 0;
}
.policy ul {
  margin: 0 0 max(20px, 24rem);
  padding: 0 0 0 20px;
}
.policy li {
  margin: 0 0 max(20px, 24rem);
  list-style-type: disc;
}
.policy ul:last-child,
.policy li:last-child {
  margin: 0;
}
.article-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  padding: 6px 0 0;
}
.article-links a {
  color: var(--storm-blue);
  text-decoration: underline;
}
.article-links a:hover {
  opacity: 0.5;
  text-decoration: underline;
}

/************************* 404 *************************/
.page404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 16px max(154px, 280rem);
}
.page404-num {
  margin: 0 0 16px;
  font-weight: 500;
  font-size: max(128px, 280rem);
  line-height: 100%;
  letter-spacing: -0.02em;
}
.page404-text {
  margin: 0 0 50px;
}

/************************* footer *************************/
.footer {
  overflow: hidden;
  padding: 50px 0 0;
  color: var(--white);
  background: var(--storm-blue);
}
.footer-main {
  padding: 0 0 max(20px, 146rem);
}
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-side-item {
  margin: 0 0 max(24px, 30rem);
}
.footer-side-item:last-child {
  margin: 0;
}
.footer-content {
  width: 50%;
}
.footer-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: max(20px, 64rem) max(16px, 36rem);
}
.footer-title {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.footer-link {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  color: var(--white);
  text-decoration: none;
  cursor: default;
}
.text-inner {
  position: relative;
  cursor: pointer;
}
.text-inner::after {
  position: absolute;
  left: 0;
  bottom: -1px;
  content: "";
  height: 1px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 1s var(--ease-out-expo);
  width: 100%;
}
.footer-link:hover .text-inner::after {
  transform: scaleX(1);
  transform-origin: left;
}
.footer-bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
.footer-bottom::before {
  position: absolute;
  top: 0;
  left: -20px;
  right: -20px;
  content: "";
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom .footer-side {
  display: flex;
  gap: max(30px, 60rem);
}
.footer-copy {
  color: rgba(255, 255, 255, 0.5);
}
.footer-studio {
  color: rgba(255, 255, 255, 0.5);
}
.footer-studio a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}
.footer-studio a:hover {
  color: var(--white);
}
.footer-webs {
  display: flex;
  gap: max(12px, 20rem);
}
.footer-web {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max(36px, 48rem);
  height: max(36px, 48rem);
  border: 1px solid #434b62;
  border-radius: 5px;
}
.footer-web svg {
  width: max(18px, 24rem);
  height: max(18px, 24rem);
}
.footer-web .svg-mail {
  width: max(16px, 20rem);
  height: max(11px, 14rem);
}
.footer-web path {
  fill: var(--white);
  transition: all 0.3s ease-out;
}
.footer-web .stroke {
  fill: none;
  stroke: var(--storm-blue);
}
.footer-web:hover {
  background: var(--white);
  border-color: var(--white);
}
.footer-web:hover path {
  fill: var(--storm-blue);
}
.footer-web:hover .stroke {
  fill: none;
  stroke: var(--white);
}

/************************* popups *************************/

/************************* media *************************/
@media screen and (max-width: 1400px) {
  .header-flag {
    display: none;
  }
  .header-nav-list {
    gap: max(10px, 20rem);
  }
  .header-right .button {
    padding: 0 max(20px, 40rem);
    margin: 0;
  }
}
@media screen and (max-width: 1240px) {
  .header-right .button {
    display: none;
  }
  .header-search-link {
    margin: 0 16px 0 0;
  }
  .mob-nav-icon {
    display: flex;
  }
  .header-nav {
    position: fixed;
    top: max(80px, 104rem);
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 540;
    overflow-y: auto;
    box-sizing: border-box;
    display: block;
    background: var(--storm-blue);
    box-shadow: none;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .header-nav.vis {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
  body.lock {
    overflow: hidden;
  }
  .lock .header {
    background: var(--storm-blue);
  }
  .lock .logo-blue {
    opacity: 0;
  }
  .lock .logo-white {
    opacity: 1;
  }
  .lock .header-search-link {
    background: rgba(255, 255, 255, 0.06);
  }
  .lock .header-search-link path {
    stroke: var(--white);
  }
  .lock .mob-nav-icon {
    background: rgba(255, 255, 255, 0.06);
  }
  .lock .mob-nav-block::before,
  .lock .mob-nav-block::after {
    background: var(--white);
  }
  .lock .header-nav-link {
    color: var(--white);
  }
  .lock .nav-parent::after {
    background: url(../images/chevron-down-white.svg) 50% 50% no-repeat;
  }
  .header-nav-list {
    max-height: 95%;
    overflow-y: auto;
    flex-direction: column;
    gap: 16px;
    padding: 32px 16px;
  }
  .header-nav-list li {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
  }
  .header-nav-link {
    font-size: 20px;
    line-height: 120%;
    opacity: 1;
  }
  .nav-parent {
    margin: 0 28px 0 0;
  }
  .nav-parent::after {
    margin-top: -12px;
    right: -28px;
    width: 24px;
    height: 24px;
  }
  .header-nav-button {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px 16px 16px;
    background: linear-gradient(180deg, rgba(47, 55, 81, 0) 0%, #2f3751 100%);
  }
  .header-nav-button .button {
    width: 100%;
  }
  .subnav {
    position: static;
    padding: 10px 0 0 12px;
    background: none;
    border-top: 0;
  }
  .subnav-block {
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
    gap: 8px;
  }
  .subnav-item {
    display: block;
    border-right: 0;
  }
  .subnav-link {
    align-items: flex-start;
    gap: 0;
    padding: 0;
    color: var(--white);
  }
  .subnav-link:hover {
    color: var(--white);
  }
  .subnav-link svg {
    display: none;
  }
  .subnav-link-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    text-align: left;
  }
  .subnav-link-text br {
    display: none;
  }
  .prod-box {
    position: static;
    height: auto;
    padding: 10px 0 0 12px;
    background: none;
    border-top: 0;
  }
  .prod-wrap {
    max-width: none;
    margin: 0;
    height: auto;
    display: block;
  }
  .prod-wrap .search {
    display: none;
  }
  .prod-block {
    display: block;
    height: auto;
  }
  .prod-side {
    width: auto;
    min-width: 1px;
  }
  .prod-nav {
    gap: 8px;
  }
  .prod-nav-link {
    color: var(--white);
  }
  .prod-nav-link:hover {
    color: var(--white);
  }
  .prod-nav-link.active {
    padding: 0;
    color: var(--white);
  }
  .prod-nav-link.active::before {
    display: none;
  }
  .prod-content {
    display: none;
  }
  .footer-side {
    width: 30%;
  }
  .footer-content {
    width: 65%;
  }
  .commitment {
    grid-template-columns: repeat(3, 1fr);
  }
  .iso {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
}
@media screen and (max-width: 1024px) {
  .header {
    border-bottom: 0;
  }
  .hero-min {
    border-bottom: 0;
  }
  .hero-min-links {
    display: none;
  }
  .breadcrumbs {
    margin: 0 0 54px;
  }
  .form-block {
    flex-direction: column;
    gap: 32px;
  }
  .form-col {
    width: 100%;
  }
  .form-title {
    padding: 0 0 max(24px, 30rem);
  }
  .form-col .check-list {
    padding: 0 0 20px;
  }
  .form-note {
    padding: 0;
  }
  .form-button {
    gap: 16px;
  }
  .res {
    grid-template-columns: repeat(2, 1fr);
  }
  .news {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-block {
    flex-direction: column;
    gap: 36px;
    padding: 16px 0 24px;
  }
  .hero-side {
    width: 100%;
  }
  .hero-media {
    width: 100%;
  }
  .hero-side .hero-share {
    display: none;
  }
  .hero-media .hero-share {
    display: block;
    margin: 24px 0 0;
  }
  .hero-article .hero-text {
    margin: 0;
  }
  .hero .breadcrumbs {
    margin: 0 0 54px;
  }
  .catalog {
    grid-template-columns: repeat(2, 1fr);
  }
  .catalog-item .res-arrow {
    opacity: 1;
  }
  .pros {
    flex-direction: column;
    gap: 36px;
  }
  .pros-col {
    width: 100%;
  }
  .pros-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .leading-block {
    flex-direction: column-reverse;
  }
  .leading-col,
  .leading-box,
  .leading-img {
    width: 100%;
  }
  .hero-center-wrap {
    align-items: flex-start;
    text-align: left;
  }
  .hero-center-wrap .brand-slider {
    width: 84px;
  }
  .hero .hero-center-wrap .brand-slider::before,
  .hero .hero-center-wrap .brand-slider::after {
    display: none;
  }
  .commitment {
    grid-template-columns: repeat(2, 1fr);
  }
  .commitment-img {
    height: max(200px, 472rem);
  }
  .catalog-top-text {
    margin: 0 0 12px;
  }
  .info {
    flex-direction: column;
    gap: 24px;
  }
  .info-col {
    width: 100%;
  }
  .link-block {
    flex-direction: column;
    gap: 32px;
  }
  .link-col {
    width: 100%;
  }
  .res-info {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .res-wrap {
    flex: 1;
  }
  .res-arrow {
    opacity: 1;
  }
  .success {
    grid-template-columns: repeat(2, 1fr);
  }
  .follow {
    flex-direction: column;
    gap: 48px;
  }
  .follow-col {
    width: 100%;
  }
  .follow-line {
    margin: 0 -20px;
    height: auto;
  }
  .follow-wrap {
    flex-direction: row;
    gap: 8px;
    padding-bottom: 0;
    padding-right: 8px;
  }
  .follow-wrap img {
    width: 422px;
    height: 318px;
  }
  .follow-line::before,
  .follow-line::after {
    display: none;
  }
  .faq {
    flex-direction: column;
    gap: 32px;
  }
  .faq-col {
    width: 100%;
  }
  .pros-col .top {
    margin: 0;
  }
  .news-line {
    flex-direction: column;
  }
  .sorting {
    flex-direction: column;
  }
  .search {
    width: 100%;
  }
  .tabs {
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
    background: none;
    border-radius: 0;
  }
  .tabs-item {
    width: auto;
    padding: 0 16px;
    background: rgba(47, 55, 81, 0.03);
  }
  .product {
    position: relative;
    flex-direction: column;
    gap: 32px;
    padding: 0 0 60px;
  }
  .product-side,
  .product-content {
    width: 100%;
  }
  .product-content .product-top {
    display: none;
  }
  .product-side .product-top {
    display: flex;
    flex-direction: column-reverse;
  }
  .product-photo {
    margin: 0;
  }
  .product-share {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .product-share-text {
    margin: 0;
  }
  .product-content {
    display: flex;
    flex-direction: column;
  }
  .product-buttons {
    order: -1;
    flex-direction: column;
    margin: 0 0 36px;
  }
  .product-text {
    margin: 0;
  }
  .product-tabs {
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
    background: none;
    border-radius: 0;
  }
  .product-tabs-item {
    width: auto;
    padding: 0 16px;
    background: rgba(47, 55, 81, 0.03);
  }
  .stat-block {
    flex-direction: column;
    gap: 36px;
  }
  .featured {
    display: block;
  }
  .featured-side {
    display: none;
  }
  .featured .button-holder {
    display: block;
    padding: max(24px, 50rem) 0 0;
  }
  .map {
    display: block;
  }
  .map-side {
    display: none;
  }
  .map-line {
    margin: 0 -20px;
    padding: 20px 20px 30px;
  }
}
@media screen and (max-width: 767px) {
  .holder {
    padding: 0 16px;
  }
  .button {
    width: 100%;
  }
  .footer {
    padding: 64px 0 0;
  }
  .footer-main {
    flex-direction: column-reverse;
    align-items: flex-start;
    padding: 0 0 20px;
  }
  .footer-block {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-side {
    width: 100%;
  }
  .footer-content {
    width: 100%;
  }
  .footer-bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
    padding: 24px 0;
    gap: 16px;
  }
  .footer-hide {
    display: none;
  }
  .footer-main .footer-side {
    width: auto;
    margin-left: calc(50% + 8px);
    margin-top: -130px;
  }
  .footer-text {
    width: 105%;
  }
  .footer-bottom .footer-side {
    flex-direction: column;
    gap: 12px;
  }
  .input-block .wpcf7-form-control-wrap {
    width: 100%;
  }
  .big-title-left {
    text-align: left;
  }
  .res {
    grid-template-columns: repeat(1, 1fr);
  }
  .res-compact .res-item {
    height: auto;
    padding-top: 144px;
  }
  .news {
    grid-template-columns: repeat(1, 1fr);
  }
  .catalog {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
  .hero-center-wrap {
    padding: 0;
  }
  .commitment {
    grid-template-columns: repeat(1, 1fr);
  }
  .sorting-right {
    width: 100%;
    flex-direction: column;
  }
  .sorting-right .sorting-item {
    width: 100%;
  }
  .success {
    grid-template-columns: repeat(1, 1fr);
  }
  .follow-line {
    margin: 0 -16px;
  }
  .iso-item {
    height: auto;
    gap: 72px;
  }
  .iso-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .banner::before {
    position: absolute;
    inset: 0;
    content: "";
    background: rgba(0, 0, 0, 0.3);
  }
  .banner-content {
    justify-content: flex-start;
    gap: 24px;
  }
  .banner-info {
    margin: 0;
  }
  .video-slide {
    padding: 0 16px 0 0;
  }
  .video-item {
    width: 100%;
  }
  .featured-content {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
  .help-content {
    top: 0;
    bottom: auto;
    padding: 80px 16px 0;
  }
  .help-tabs {
    display: none;
  }
  .help-slider .slick-arrow {
    bottom: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.2) url(../images/slider-arrow-white.svg)
      50% 50% no-repeat;
    background-size: max(24px, 32rem);
  }
  .help-slider .slick-prev {
    margin-left: 0;
  }
  .help-slider .slick-next {
    margin-left: max(62px, 72rem);
  }
  .help-slider .slick-dots {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 30px;
    gap: 16px;
    display: flex;
  }
  .help-slider .slick-dots li {
    flex: 1;
  }
  .help-slider .slick-dots button {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    height: 3px;
    font-size: 0;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0;
    transition: all 0.5s ease-in-out;
    opacity: 1;
  }
  .help-slider .slick-dots button::after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    content: "";
    width: 0%;
    background: var(--white);
  }
  .help-slider .slick-dots button:hover {
    background: rgba(255, 255, 255, 0.2);
  }
  .help-slider .slick-dots .slick-active button:hover {
    background: rgba(255, 255, 255, 0.2);
  }
  .help-slider .slick-trigger button::after {
    width: 100%;
    transition: all 7.7s linear;
  }
  .map-line {
    position: static;
    flex-direction: column;
    margin: 0;
    padding: 0 0 24px;
    border-top: 0;
  }
  .map-line .search {
    width: 100%;
  }
  .map-wrap {
    height: max(360px, 870rem);
    margin: 0 0 24px;
  }
  .map-buttons {
    position: static;
    flex-direction: column;
    gap: 12px;
  }
  .map-buttons .button-sec {
    padding: 17px max(24px, 30rem);
  }
  .main-top {
    padding: 48px 0 0;
  }
  .main-search .search {
    margin: 0 0 16px;
  }
  .main-search .top-buttons {
    gap: 16px;
  }
  .promo-slider-wrap {
    margin: 0 -16px;
    padding: 0 6px;
  }
  .promo-slider {
    max-width: none;
    padding: 0 0 86px;
  }
  .promo-slide {
    padding: 0 10px;
  }
  .promo-item {
    padding: 35px 23px 0;
  }
  .promo-title {
    margin: min(-20px, -59rem) -23px 0;
  }
  .promo-img {
    height: max(234px, 560rem);
  }
  .promo-slider .slick-arrow {
    bottom: 0;
    top: auto;
    left: 50%;
    margin-top: 0;
  }
  .promo-slider .slick-prev {
    margin-left: -58px;
  }
  .promo-slider .slick-next {
    right: auto;
    margin-left: 4px;
  }
  .main-num-block {
    padding: 12px 0 0;
    background: url(../images/num-mob.svg) 100% 0% no-repeat;
    background-size: auto;
  }
  .main-num-wrap {
    max-width: none;
    margin: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .main-num-item {
    height: 100px;
    flex: none;
    text-align: left;
  }
  .advanced-slider-wrap {
    display: none;
  }
  .advanced-mob {
    display: flex;
    flex-direction: column;
    gap: 54px;
    padding: 10px 0 0;
    background: url(../images/num-mob-2.svg) 100% 0% no-repeat;
    background-size: auto;
  }
  .advanced-item {
    max-width: 180px;
  }
  .advanced-num {
    margin: 0 0 8px;
    line-height: 100%;
    letter-spacing: -0.02em;
  }
  .result {
    padding: 10px 0;
  }
  .result-empty {
    height: 150px;
  }
  .main-news {
    padding-bottom: 92px;
  }
  .top-with-button {
    flex-direction: column;
  }
  .top-with-button .button {
    position: absolute;
    inset: 0;
    top: auto;
  }
}
@media screen and (max-width: 576px) {
}
