/*
Theme Name: FOCA
Author: BFG
Description: A blank WordPress theme
Version: 1.0
*/

/* fonts */

@font-face {
  font-family: "TT Firs Neue";
  src: url("fonts/TTFirsNeue-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "TT Firs Neue";
  src: url("fonts/TTFirsNeue-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("fonts/HelveticaNeueCyr-Roman.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

/* standartization */

:root {
  --font-family: "TT Firs Neue", sans-serif;
  --second-family: "Questrial", sans-serif;
  --third-family: "Inter", sans-serif;

  --main-text-color: #1c1d20;

  --black-color: #000; /* body2 */
  --gray-color: #636468; /* body3 and body4 */
  --white-color: #fff; /* btn text */

  --royal-cobalt: #332bc0;
  --deep-royal-blue: #2816a1;
  --midnight-violet: #170073;
  --electric-indigo: #665dff;
  --deep-indigo: #302cb3;
  --lavender-mist: #d8d8e1;
  --soft-black: #030303;
  --frost-gray: #e4e9ed;

  /* dark theme color */
  --pine-night: #101011;
  --charcoal-mist: #373738;
  --slate-shadow: #2e2e31;
}

/* primary */

.wpcf7-form.invalid .wpcf7-acceptance input:not(:checked) + span::before {
  outline: 2px solid #e60202;
}

@media screen and (min-width: 2000px) {
  .pum-container.popmake {
    max-width: 1920px !important;
  }
}

section {
  position: relative;
}

@media screen and (min-width: 801px) {
  .mobile {
    display: none;
  }
}

@media screen and (max-width: 800px) {
  .desktop {
    display: none;
  }

  .mobile {
    display: block;
  }
}
/* container */

.container {
  max-width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 2000px) {
  .container {
    max-width: 1920px;
  }
}

@media screen and (min-width: 1601px) {
  .container {
    padding-left: 90px;
    padding-right: 90px;
  }
}

@media screen and (min-width: 1201px) and (max-width: 1600px) {
  .container {
    padding-left: 70px;
    padding-right: 70px;
  }
}

@media screen and (min-width: 801px) and (max-width: 1200px) {
  .container {
    padding-left: 45px;
    padding-right: 45px;
  }
}

@media screen and (max-width: 800px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* h1 */

h1,
.h1 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(40px, 5.14vw, 93px);
  line-height: 90%;
  letter-spacing: -0.02em;
}

[data-theme="dark"] h1,
[data-theme="dark"] .h1 {
  color: var(--white-color);
}

/* h2 */

h2,
.h2 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(28px, 2.78vw, 50px);
  line-height: 100%;
}

[data-theme="dark"] h2,
[data-theme="dark"] .h2 {
  color: var(--white-color);
}

/* h3 */

h3,
.h3 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(20px, 1.81vw, 33px);
  line-height: 100%;
  letter-spacing: -0.02em;
}

[data-theme="dark"] h3,
[data-theme="dark"] .h3 {
  color: var(--white-color);
}

/* h4 */

h4,
.h4 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(16px, 1.67vw, 30px);
  line-height: 100%;
  letter-spacing: -0.02em;
}

[data-theme="dark"] h4,
[data-theme="dark"] .h4 {
  color: var(--white-color);
}

/* h5 */

h5,
.h5 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(14px, 1.11vw, 20px);
  line-height: 100%;
  letter-spacing: -0.02em;
}

[data-theme="dark"] h5,
[data-theme="dark"] .h5 {
  color: var(--white-color);
}

/* h6 */

h6,
.h6 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(14px, 1.11vw, 20px);
  line-height: 100%;
  letter-spacing: -0.02em;
}

[data-theme="dark"] h6,
[data-theme="dark"] .h6 {
  color: var(--white-color);
}

/* body (main body1) */

[data-theme="light"] body {
  background: #f8f9fa;
}

body,
body p {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: clamp(18px, 1.67vw, 30px);
  line-height: 120%;
  color: var(--main-text-color);
}

[data-theme="dark"] body {
  background: #0d0d0e;
}

[data-theme="dark"] body,
[data-theme="dark"] body p {
  color: var(--white-color);
}

/* body2 */

.body2,
.body2 p {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: clamp(16px, 1.25vw, 23px);
  line-height: 120%;
  color: var(--black-color);
}

[data-theme="dark"] .body2,
[data-theme="dark"] .body2 p {
  color: #adadad;
}

/* body3 */

.body3,
.body3 p {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: clamp(14px, 1.11vw, 20px);
  line-height: 130%;
  color: var(--gray-color);
}

[data-theme="dark"] .body3,
[data-theme="dark"] .body3 p {
  color: #adadad;
}

/* body4 */

.body4,
.body4 p {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: clamp(12px, 0.97vw, 18px);
  line-height: 130%;
  color: var(--gray-color);
}

[data-theme="dark"] .body4,
[data-theme="dark"] .body4 p {
  color: #adadad;
}

/* btn */

.btn {
  display: flex;
  align-items: center;
  gap: clamp(10px, 0.69vw, 13px);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(14px, 1.11vw, 20px);
  line-height: 100%;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--white-color);
  border-radius: clamp(10px, 0.69vw, 13px);
  padding-top: clamp(15px, 1.25vw, 23px);
  padding-bottom: clamp(14px, 1.11vw, 20px);
  max-width: fit-content;
  max-height: fit-content;
  box-sizing: border-box;
  transition: all 0.3s;
  outline: none;
  cursor: pointer;
}

.btn svg {
  min-width: clamp(8px, 0.69vw, 13px);
  min-height: clamp(8px, 0.69vw, 13px);
}

.btn-size-l {
  padding-left: clamp(25px, 2.92vw, 53px);
  padding-right: clamp(25px, 2.92vw, 53px);
}

.btn-size-m {
  padding-left: clamp(19px, 2.01vw, 37px);
  padding-right: clamp(19px, 2.01vw, 37px);
}

.btn-size-s {
  padding-left: clamp(14px, 1.32vw, 24px);
  padding-right: clamp(14px, 1.32vw, 24px);
}

.btn-color-blue {
  border: 1px solid transparent;
  background: linear-gradient(135deg, #302cb3 0%, #1f008f 100%);
}

.btn-color-blue:active,
.btn-color-blue:focus {
  /* background: var(--midnight-violet); */
  background: linear-gradient(135deg, #2a00a0 0%, #170073 50%, #0f004f 100%);
  border-color: var(--electric-indigo);
}

@media screen and (min-width: 1201px) {
  .btn-color-blue:hover {
    /* background: var(--midnight-violet); */
    background: linear-gradient(135deg, #2a00a0 0%, #170073 50%, #0f004f 100%);
    border-color: var(--electric-indigo);
  }
}

.btn-color-indigo {
  border: 1px solid transparent;
  background: rgba(40, 22, 161, 0.1);
}

.btn-color-indigo:active,
.btn-color-indigo:focus {
  border-color: rgba(51, 43, 192, 0.11);
  background: rgba(35, 13, 183, 0.22);
}

[data-theme="dark"] .btn-color-indigo {
  border-color: rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .btn-color-indigo:active,
[data-theme="dark"] .btn-color-indigo:focus {
  background: rgba(255, 255, 255, 0.05);
}

@media screen and (min-width: 1201px) {
  .btn-color-indigo:hover {
    border-color: rgba(51, 43, 192, 0.11);
    background: rgba(97, 73, 255, 0.1);
  }

  [data-theme="dark"] .btn-color-indigo:hover {
    background: rgba(255, 255, 255, 0.16);
  }
}

.btn-color-misty-indigo {
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18.100000381469727px);
  background: rgba(135, 158, 199, 0.25);
}

.btn-color-misty-indigo:active,
.btn-color-misty-indigo:focus {
  background: rgba(48, 70, 111, 0.6);
}

@media screen and (min-width: 1201px) {
  .btn-color-misty-indigo:hover {
    background: rgba(135, 158, 199, 0.45);
  }
}

/* background */

.background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  background-size: 500px 500px !important;
}

/* header */

.header-section {
  padding-top: clamp(7px, 0.69vw, 13px);
  padding-bottom: clamp(7px, 0.69vw, 13px);
  position: fixed;
  top: 0;
  transition: all 0.3s;
  left: 0;
  width: 100%;
  z-index: 999999;
  background: var(--white-color);
}

.header-section::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: -1px;
  left: 0;
  background: var(--lavender-mist);
}

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

.header-section__call-to-action {
  align-items: center;
  display: flex;
  gap: clamp(20px, 2.08vw, 42.4px);
}

.custom-logo-link img {
  width: clamp(97px, 8.68vw, 157px);
  height: clamp(36px, 3.19vw, 58px);
  display: block;
}

.header-section__wrapper {
  display: flex;
  gap: 20px;
  align-items: center;
}

.primary-header-menu {
  display: flex;
  gap: clamp(20px, 1.39vw, 25px);
  margin: 0;
  list-style-type: none;
}

.primary-header-menu li a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(14px, 1.11vw, 20px);
  line-height: 100%;
  letter-spacing: -0.02em;
  color: var(--main-text-color);
  transition: all 0.3s;
}

.header-section_mobile-menu {
  display: none;
}

.header-section__button {
  color: var(--deep-royal-blue);
  position: relative;
}

/* .header-section__right-content .header-section__button::before {
  position: absolute;
  content: "";
  width: 1px;
  height: clamp(32px, 2.22vw, 40px);
  top: 50%;
  left: calc(-1 * clamp(20px, 1.39vw, 25px));
  transform: translateY(-50%);
  background: #bbbbd0;
} */

.header-section__left-content {
  display: flex;
  flex: 1;
  align-items: center;
  gap: clamp(36px, 2.5vw, 45px);
}

.header-section__right-content {
  display: flex;
  justify-content: flex-end;
  flex: 1;
  position: relative;
}

.header-section__center-content {
  flex: 0 0 auto;
}

.header-section__choose-color {
  display: flex;
  background: #e9e8f6;
  border: clamp(1px, 0.07vw, 1.25px) solid transparent;
  border-radius: 10px;
  position: relative;
}

.indicator {
  position: absolute;
  top: clamp(3px, 0.21vw, 4px);
  left: clamp(3px, 0.21vw, 4px);
  width: calc(50% - clamp(3px, 0.21vw, 4px));
  height: calc(100% - calc(2 * clamp(3px, 0.21vw, 4px)));
  background: var(--white-color);
  border-radius: 6px;
  transition: transform 0.3s ease;
  z-index: 0;
}

.header-section__choose-color-item.light-mode {
  margin: clamp(2px, 0.14vw, 3px);
  margin-right: 0;
}

.header-section__choose-color-item.dark-mode {
  margin: clamp(2px, 0.14vw, 3px);
  margin-left: 0;
}

.header-section__choose-color-item {
  position: relative;
  flex: 1;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(10px, 0.9vw, 16px) clamp(10px, 0.83vw, 15px);
  transition: all 0.3s;
  background: transparent;
  cursor: pointer;
}

.header-section__choose-color-item svg {
  width: clamp(18px, 1.39vw, 25px);
  height: clamp(18px, 1.39vw, 25px);
}

.header-section__choose-color-item:not(.active) svg path {
  stroke: #9a9da1;
}

.header-section__choose-color-item.active svg path {
  stroke: #17171b;
}

@media screen and (max-width: 1100px) {
  .header-overlay {
    display: none;
  }

  .header-section__center-content {
    display: none;
  }

  .header-section.mobile-menu-open .header-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    backdrop-filter: blur(9px);
    background: rgba(14, 14, 14, 0.2);
    display: block;
  }

  .header-section_mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    left: 0;
    top: 0;
    width: 100vw;
    position: absolute;
    background: var(--white-color);
    padding-top: 100px;
    padding-bottom: 20px;
    transform: translateY(-100%);
    transition: all 0.5s;
  }

  .header-section.mobile-menu-open .header-section_mobile-menu {
    transform: none;
  }

  .header-section_mobile-menu .primary-header-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .header-section__mobile-wrap {
    justify-content: flex-end;
    gap: unset;
  }

  .header-section_mobile-menu > div,
  .header-section_mobile-menu > a {
    position: relative;
    z-index: 2;
  }

  .header-section_mobile-menu .header-section__button {
    max-width: unset;
    justify-content: center;
  }

  .header-section__left-content,
  .header-section_burder-menu {
    z-index: 2;
  }

  .header-section_burder-menu {
    display: flex;
    gap: 4px;
    margin-right: -10px;
  }

  .header-section_burder-menu svg * {
    transition: all 0.3s;
  }

  .header-section.mobile-menu-open #line1 {
    transform: rotate(45deg) translate(6px, -6px);
    width: 16px;
  }

  #line2 {
    transform-origin: right;
  }

  .header-section.mobile-menu-open #line2 {
    opacity: 0;
    transform: scaleX(0);
  }

  .header-section.mobile-menu-open #line3 {
    transform: rotate(-47deg) translate(-16px, 1px);
    width: 16px;
  }

  .header-section_burder-menu,
  .header-section__mobile-wrap {
    display: flex;
    align-items: center;
  }

  .header-section__right-content {
    display: none;
  }

  .header-section__left-content .header-section__choose-color {
    display: none;
  }

  .header-section__choose-color {
    margin-top: 50px;
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 1101px) {
  .header-section__mobile-wrap {
    display: none;
  }

  .primary-header-menu li a:hover {
    color: var(--deep-royal-blue);
  }

  .custom-logo-link {
    position: relative;
  }

  .header-section .custom-logo-link::after {
    position: absolute;
    content: "";
    width: 1px;
    height: clamp(32px, 2.22vw, 40px);
    top: 50%;
    right: calc(-1 * clamp(20px, 1.39vw, 25px));
    transform: translateY(-50%);
    background: #e9e8f6;
  }
}

@media screen and (min-width: 801px) and (max-width: 1100px) {
  .header-section_mobile-menu .header-section__button {
    width: calc(100% - 90px);
  }
}

@media screen and (max-width: 800px) {
  .header-section_mobile-menu .header-section__button {
    width: calc(100% - 40px);
  }
}

/* header dark theme */

[data-theme="light"] #light-logo {
  display: block !important;
}

[data-theme="dark"] #light-logo {
  display: none !important;
}

[data-theme="light"] #dark-logo {
  display: none;
}

[data-theme="dark"] #dark-logo {
  display: block !important;
}

[data-theme="dark"] .header-section {
  background: var(--pine-night);
}

[data-theme="dark"] .header-section::after {
  background: var(--charcoal-mist);
}

[data-theme="dark"] .header-section_mobile-menu {
  background: var(--pine-night);
}

[data-theme="dark"] .header-section_burder-menu svg rect {
  fill: var(--white-color);
}

[data-theme="dark"] .primary-header-menu li a,
[data-theme="dark"] .header-section__button {
  color: var(--white-color);
}

[data-theme="dark"] .header-section .custom-logo-link::after,
[data-theme="dark"]
  .header-section__right-content
  .header-section__button::before {
  background: var(--slate-shadow) !important;
}

[data-theme="dark"] .header-section__choose-color-item.active svg path {
  stroke: var(--white-color);
}

[data-theme="dark"] .header-section__choose-color {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.07);
}

[data-theme="dark"] .indicator {
  background: #444;
}

/* footer */

.footer-block__bottom {
  margin-top: clamp(20px, 1.39vw, 30px);
}

.footer-block__column-top {
  display: flex;
}

.footer-block__column-top .footer-block__title {
  margin-bottom: 20px;
}

.footer-block__column-top .footer-block__list--menu,
.footer-block__nav-left {
  min-width: clamp(163px, 30.42vw, 657px);
}

.footer-block__column-bottom {
  display: flex;
}

footer {
  background-color: #f8f9fa;
  padding-top: clamp(30px, 6.94vw, 150px);
}

.footer-block__container {
  display: flex;
  flex-direction: column;
  gap: clamp(30px, 2.08vw, 38px);
}

.footer-block__logo-icon img {
  max-width: clamp(130px, 9.03vw, 163px);
  height: auto;
}

.footer-block__head {
  display: flex;
  gap: clamp(20px, 11.81vw, 255px);
  justify-content: space-between;
}

.footer-block__column {
  display: flex;
  flex-direction: column;
}

.footer-block__social-links {
  display: flex;
  flex-direction: column;
  gap: clamp(30px, 2.08vw, 38px);
}

.footer-block__social-link {
  display: flex;
  gap: clamp(10px, 0.69vw, 13px);
}

.footer-block__social-link a {
  display: flex;
  padding: clamp(15px, 1.04vw, 19px);
  border-radius: 49px;
  background-color: var(--white-color);
  border: 1px solid transparent;
}

.footer-block__social-link a img {
  min-width: clamp(18px, 1.25vw, 23px);
  height: auto;
}

.footer-block__copy {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 0.69vw, 13px);
}

.footer__link-power strong {
  font-weight: 400;
  color: var(--deep-royal-blue);
}

.footer-block__logo-icon {
  display: flex;
}

.footer-block__column--left {
  gap: clamp(10px, 0.69vw, 13px);
  justify-content: space-between;
}

.footer-block__column--right ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 0.69vw, 13px);
}

.footer-block__column--right ul li a {
  color: var(--main-text-color);
}

.footer-block__second-title,
.footer-block__title {
  margin-bottom: clamp(10px, 0.7vw, 15px);
}

.footer-block__list p {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 0.69vw, 13px);
}

.footer-block__list p a,
.footer-block__list p {
  color: #1c1d20;
}

[data-theme="dark"] .footer-block__list p a,
[data-theme="dark"] .footer-block__list p {
  color: #adadad;
}

[data-theme="dark"] .footer-block__column--right svg path {
  stroke: #373738;
}

.footer-block__column--right {
  display: flex;
  flex-direction: column;
  gap: clamp(50px, 4.17vw, 90px);
  position: relative;
}

body .footer__link-copyright,
body .footer__link-power {
  color: #888;
}

.footer-block__column--right svg {
  width: 100%;
}

.footer-block__nav-left {
  display: flex;
  flex-direction: column;
  gap: clamp(30px, 2.08vw, 38px);
}

.footer__image {
  position: relative;
  width: 100%;
  height: clamp(200px, 27.99vw, 605px);
}

.footer-block__social-link a:hover {
  border-color: #665dff;
  background: #332bc0;
}

.footer-block__social-link a:hover img {
  filter: brightness(0) invert(1);
}

.footer {
  position: relative;
}

.footer .background {
  z-index: 0;
}

.footer-block {
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 991px) {
  .footer-block__second-title,
  .footer-block__title {
    margin-bottom: 20px;
  }

  .footer-block__head {
    gap: 40px;
  }

  .footer-block__column--right {
    gap: 50px;
  }

  .footer-block__nav-left,
  .footer-block__column-bottom {
    gap: 30px;
  }

  .footer-block__column-bottom {
    flex-direction: column;
  }

  .footer-block__head {
    flex-direction: column;
  }

  .footer-block__social-links--desktop {
    display: none;
  }

  .footer-block__social-link {
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 992px) {
  .footer-block__bottom-mobile,
  .footer-block__line_mobile {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .footer__image {
    height: 105px;
  }
}

/* footer dark theme */
[data-theme="dark"] footer {
  background: var(--pine-night);
}

[data-theme="dark"] .footer-block__column--right ul li a {
  color: var(--white-color);
}

[data-theme="dark"] .footer__link-power strong {
  color: var(--white-color);
}

[data-theme="dark"] .footer-block__social-link a img {
  filter: brightness(0) invert(1);
}

[data-theme="dark"] .footer-block__social-link a {
  background: #17171a;
  border-color: var(--charcoal-mist);
}

/* safety culture */

#primary section.safety-culture {
  padding-top: clamp(70px, 11.11vw, 200px);
  padding-bottom: clamp(70px, 11.11vw, 200px);
}

.safety-culture__wrapper {
  position: relative;
  z-index: 2;
}

.safety-culture__conteiner {
  display: flex;
  justify-content: space-between;
  gap: clamp(50px, 4.86vw, 88px);
}

.safety-culture__column {
  display: flex;
  flex-direction: column;
}

.safety-culture__column--left {
  gap: 20px;
  justify-content: space-between;
}

.safety-culture__lists {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(20px, 2.08vw, 38px);
}

.safety-culture__item {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 0.56vw, 10px);
  padding-top: clamp(20px, 2.08vw, 38px);
  position: relative;
}

.safety-culture__item:hover::before {
  height: 2px;
}

.safety-culture__item::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  top: 0;
  left: 0;
  background-color: var(--lavender-mist);
  transition: all 0.3s;
}

.safety-culture__item-head {
  display: flex;
  justify-content: space-between;
  gap: clamp(10px, 1.39vw, 25px);
}

.safety-culture__item-title {
  color: var(--main-text-color);
}

.safety-culture__item-arrow {
  display: flex;
  align-items: center;
}

.safety-culture__item-arrow svg {
  width: clamp(44px, 3.47vw, 63px);
  height: clamp(44px, 3.47vw, 63px);
}

.safety-culture__item-arrow svg * {
  transition: all 0.3s;
}

.safety-culture__item:active::before,
.safety-culture__item:focus::before {
  background-color: var(--main-text-color);
}

.safety-culture__item:active svg path,
.safety-culture__item:focus svg path {
  stroke: var(--white-color) !important;
}

.safety-culture__item:active svg rect,
.safety-culture__item:focus svg rect {
  fill: var(--deep-indigo) !important;
}

@media screen and (min-width: 1201px) {
  .safety-culture__item:hover svg rect {
    fill: var(--deep-indigo) !important;
  }

  .safety-culture__item:hover svg path {
    stroke: var(--white-color) !important;
  }

  .safety-culture__item:hover::before {
    background-color: var(--main-text-color);
  }

  .safety-culture__column {
    max-width: calc(50% - calc(clamp(50px, 4.86vw, 88px) / 2));
  }
}

@media screen and (max-width: 1200px) {
  .safety-culture__conteiner {
    flex-direction: column;
  }
}

@media screen and (min-width: 801px) {
  .safety-culture__item-title {
    flex-basis: clamp(190px, 13.19vw, 238px);
  }

  .safety-culture__item-content {
    flex-basis: calc(
      100% - clamp(190px, 13.19vw, 238px) - clamp(10px, 1.39vw, 25px)
    );
  }
}

@media screen and (max-width: 800px) {
  .safety-culture__item-head {
    flex-direction: column;
  }

  .safety-culture__item {
    gap: 20px;
  }

  .safety-culture__item-arrow svg {
    border-radius: 31px;
    border: 1px solid var(--frost-gray);
  }
}

/* .safety-culture dark theme */

[data-theme="dark"] .safety-culture__item::before {
  background: var(--charcoal-mist) !important;
}

[data-theme="dark"] .safety-culture__item-arrow svg rect:first-of-type {
  fill: #101011;
}

[data-theme="dark"] .safety-culture__item-arrow svg rect {
  stroke: var(--charcoal-mist);
}

[data-theme="dark"]
  .safety-culture__item:hover
  .safety-culture__item-arrow
  svg
  rect {
  stroke: var(--deep-indigo);
}

[data-theme="dark"] .safety-culture__item-arrow svg path {
  stroke: white;
}

/* why join */

.why-join-banner__pseudo-item {
  position: absolute;
  z-index: 1;
}

.why-join-banner .background {
  top: 200px;
}

.why-join-banner {
  overflow: hidden;
  position: relative;
}

.mobile {
  display: none;
}

@media screen and (min-width: 701px) {
  .why-join-banner__pseudo-item--1 {
    left: -509px;
    bottom: -515px;
  }

  .why-join-banner__pseudo-item--2 {
    top: -621px;
    right: -555px;
  }
}

@media screen and (max-width: 700px) {
  .desktop {
    display: none;
  }

  .mobile {
    display: block;
  }

  .why-join-banner__pseudo-item--1 {
    left: -387px;
    bottom: -236px;
  }

  .why-join-banner__pseudo-item--2 {
    top: -217px;
    right: -359px;
  }
}

.why-join-banner__background {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: clamp(30px, 6.25vw, 113px) clamp(15px, 4.17vw, 75px);
  background: var(--soft-black);
  border: 1px solid var(--frost-gray);
  border-radius: clamp(10px, 0.69vw, 13px);
}

.why-join-banner__background > div {
  position: relative;
  z-index: 2;
}

.why-join-banner__bottom {
  margin-top: clamp(30px, 5.56vw, 100px);
}

.why-join-banner__header {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  position: relative;
  margin-bottom: clamp(30px, 5.56vw, 100px);
}

.why-join-banner__divider {
  width: 100%;
  height: clamp(20px, 2.08vw, 38px);
  background: center / cover no-repeat
    url("/wp-content/uploads/2025/06/divider.svg");
}

.why-join-banner__column {
  display: flex;
  flex-direction: column;
  gap: clamp(30px, 2.08vw, 38px);
}

.why-join-banner__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(14px, 2.78vw, 50px);
}

.why-join-banner__item {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 2.08vw, 38px);
}

.why-join-banner__item-icon img {
  display: flex;
  max-width: clamp(30px, 4.86vw, 88px);
  height: auto;
}

.why-join-banner__title,
.why-join-banner__item-title,
.why-join-banner__desc p {
  color: var(--white-color);
}

.why-join-banner__btn {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding-left: clamp(17px, 1.88vw, 34px);
  padding-right: clamp(17px, 1.88vw, 34px);
}

@media screen and (min-width: 1201px) {
  .why-join-banner__column--left {
    flex-basis: clamp(295px, 35.97vw, 648px);
  }

  .why-join-banner__btn:hover {
    background: rgba(255, 255, 255, 0.3);
  }

  .why-join-banner__column--right {
    flex-basis: clamp(335px, 28.19vw, 508px);
    margin-top: clamp(0px, 2.92vw, 53px);
    margin-right: clamp(0px, 8.33vw, 150px);
  }

  .why-join-banner__item {
    flex: 1 1 calc(100% / 5 - clamp(14px, 2.78vw, 50px));
  }

  .why-join-banner__background {
    margin: 0 calc(-1 * clamp(60px, 4.17vw, 75px));
  }
}

@media screen and (max-width: 1200px) {
  .why-join-banner__header {
    flex-direction: column;
  }

  .why-join-banner__btn:focus,
  .why-join-banner__btn:active {
    background: rgba(255, 255, 255, 0.3);
  }
}

@media screen and (min-width: 801px) and (max-width: 1200px) {
  .why-join-banner__item {
    flex: 0 0 calc(100% / 3 - clamp(14px, 2.78vw, 50px));
  }

  .why-join-banner__background {
    margin: 0 -40px;
  }
}

@media screen and (max-width: 800px) {
  .why-join-banner__background {
    margin: 0 -15px;
  }

  .why-join-banner__benefits {
    column-gap: 14px;
    row-gap: 30px;
  }

  .why-join-banner__item {
    flex: 0 0 calc(100% / 2 - clamp(14px, 2.78vw, 50px));
  }

  .why-join-banner__divider {
    margin-left: -3px;
    margin-right: -3px;
  }
}

.empty-space-for-why-join-banner {
  background-color: var(--white-color);
}

/* why-join-banner dark theme */

[data-theme="dark"] .empty-space-for-why-join-banner {
  background-color: #17171a;
}

[data-theme="dark"] .why-join-banner__background {
  border-color: var(--charcoal-mist);
}

/* who we are */

#primary section.who-we-are-block {
  padding-top: clamp(70px, 9.72vw, 175px);
}

[data-theme="light"] #primary section.who-we-are-block {
  background: #f8f9fa;
}

.who-we-are-block__wrapper {
  position: relative;
  z-index: 2;
}

.who-we-are-block__top {
  display: flex;
  justify-content: space-between;
}

.who-we-are-block__head {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.39vw, 25px);
}

.who-we-are-block__column {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.who-we-are-block__column--left {
  gap: clamp(20px, 1.39vw, 25px);
  justify-content: space-between;
}

.who-we-are-block__btn {
  margin-bottom: clamp(0px, 1.04vw, 19px);
}

.who-we-are-block__column--right {
  gap: clamp(30px, 3.47vw, 63px);
  justify-content: space-between;
}

.who-we-are-block__list {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 0.63vw, 12px);
}

.who-we-are-block__item {
  display: flex;
  align-items: center;
  gap: clamp(6px, 0.69vw, 13px);
}

.who-we-are-bloc__benefit-wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.39vw, 25px);
}

.who-we-are-block__item-icon {
  display: flex;
  margin-bottom: auto;
}

.who-we-are-block__item-icon img {
  display: flex;
  width: clamp(20px, 1.67vw, 30px);
  height: clamp(20px, 1.67vw, 30px);
  height: auto;
}

.who-we-are-block__image {
  display: flex;
  overflow: visible;
}

.who-we-are-block__image img {
  display: block;
  position: relative;
  width: clamp(335px, 55.56vw, 1000px);
  height: clamp(251px, 41.67vw, 750px);
  margin-left: auto;
  margin-right: auto;
  object-fit: cover;
  z-index: 2;
}

@media screen and (min-width: 1201px) {
  .who-we-are-block__item-text {
    margin-bottom: -4px;
  }
  .who-we-are-block__column--left {
    flex-basis: calc(100% - clamp(335px, 39.38vw, 730px));
  }

  .who-we-are-block__column--right {
    margin-right: clamp(0px, 5.76vw, 104px);
    flex-basis: clamp(335px, 39.38vw, 709px);
  }

  .who-we-are-block__column {
    max-width: calc(50% - clamp(20px, 1.39vw, 25px));
  }
}

@media screen and (min-width: 801px) {
  .who-we-are-block__top {
    gap: clamp(20px, 1.39vw, 25px);
  }

  .who-we-are-block__head {
    max-width: clamp(335px, 36.18vw, 652px);
  }

  .who-we-are-block__image img {
    margin-top: calc(-1 * clamp(0px, 2.78vw, 50px));
    margin-bottom: calc(-1 * clamp(110px, 13.89vw, 250px));
  }
}

@media screen and (max-width: 800px) {
  .who-we-are-block__item-text {
    margin-bottom: -2px;
  }

  .who-we-are-block__top {
    flex-direction: column;
  }

  .who-we-are-block__top {
    gap: 50px;
  }

  .who-we-are-block__btn {
    margin-bottom: 0;
    max-width: unset;
    justify-content: center;
  }

  .who-we-are-block__bottom {
    margin-top: 30px;
  }

  .who-we-are-block__image img {
    margin-bottom: -110px;
  }
}

/* who-we-are-block dark theme */
[data-theme="dark"] .who-we-are-block__item-icon img {
  filter: brightness(0) invert(1);
}

.who-we-are-block__image--dark {
  display: none;
}

[data-theme="dark"] .who-we-are-block__image--dark {
  display: block;
}

[data-theme="dark"] .who-we-are-block__image--light {
  display: none;
}

/* action */

#primary section.action-block {
  padding-top: clamp(80px, 5.56vw, 100px);
}

.action-block .swiper-button-disabled {
  display: none;
}

.action-block {
  overflow: hidden;
  margin-bottom: -295px;
}

.action-block__wrap {
  position: relative;
}

.action-block__divider {
  position: relative;
  top: calc(-1 * clamp(80px, 5.56vw, 100px));
  width: 100%;
  height: clamp(20px, 2.08vw, 38px);
  background: center / cover no-repeat url(/wp-content/uploads/2025/07/svg.svg);
}

.action-block__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.action-block__icons {
  display: flex;
  gap: clamp(20px, 1.39vw, 25px);
  margin-right: calc(-1 * clamp(10px, 0.69vw, 13px));
  margin-bottom: clamp(7px, 0.49vw, 9px);
}

.action-block__icons svg {
  width: clamp(60px, 6.94vw, 125px);
  height: clamp(60px, 6.94vw, 125px);
}

.action-block__conteiner {
  display: flex;
  flex-direction: column;
  gap: clamp(30px, 3.47vw, 63px);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

.swiper-button-next,
.swiper-button-prev {
  margin: unset !important;
  width: unset !important;
  height: unset !important;
}

.action-block__swiper {
  overflow: visible;
}

.action-block__swiper-button-prev {
  top: 50% !important;
  transform: translateY(-50%);
  left: calc(-1 * clamp(30px, 2.08vw, 38px)) !important;
}

.action-block__swiper-button-next {
  top: 50% !important;
  transform: translateY(-50%);
  right: calc(-1 * clamp(30px, 2.08vw, 38px)) !important;
}

.action-block__swiper-button {
  outline: none;
}

.action-block__swiper-button svg {
  width: clamp(45px, 4.17vw, 75px);
  height: clamp(45px, 4.17vw, 75px);
}

.action-block__slide-content img {
  min-height: clamp(254px, 44.44vw, 800px);
  border: 1px solid var(--frost-gray);
  border-radius: clamp(10px, 0.69vw, 13px);
}

@media screen and (max-width: 1200px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

@media screen and (max-width: 800px) {
  .action-block {
    margin-bottom: -120px;
  }

  .action-block__title br {
    display: none;
  }

  .action-block__icons {
    display: none;
  }
}

/* solutions */

#primary section.solutions-block {
  padding-top: clamp(110px, 12.5vw, 225px);
  padding-bottom: clamp(70px, 9.72vw, 175px);
  background-color: var(--white-color);
}

.solutions-block__conteiner {
  display: flex;
  flex-direction: column;
  gap: clamp(30px, 4.17vw, 75px);
}

.solutions-block__lists {
  display: flex;
  flex-wrap: wrap;
  column-gap: clamp(25px, 2.78vw, 50px);
}

.solutions-block__item {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.08vw, 38px);
  position: relative;
  padding-top: clamp(20px, 2.43vw, 44px);
  padding-bottom: clamp(20px, 2.43vw, 44px);
  outline: none;
}

.solutions-block__item::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  top: 0;
  left: 0;
  background-color: var(--lavender-mist);
}

.solutions-block__item-background {
  position: absolute;
  content: "";
  width: calc(100% + clamp(30px, 2.08vw, 38px));
  height: 100%;
  top: 0;
  left: calc(-1 * clamp(15px, 1.39vw, 25px));
  background-color: transparent;
  border-radius: 10px;
  transition: all 0.3s;
  overflow: hidden;
}

.solutions-block__item-pseudo {
  display: none;
  position: absolute;
  z-index: 2;
}

.solutions-block__item-pseudo--1 {
  top: -108px;
  left: -268px;
}

.solutions-block__item-pseudo--2 {
  top: -196px;
  right: -133px;
}

.solutions-block__item-content {
  display: flex;
  align-items: flex-end;
  gap: clamp(8px, 3.47vw, 63px);
  justify-content: space-between;
  width: 100%;
}

.solutions-block__item-body {
  display: flex;
  align-items: flex-end;
  gap: clamp(10px, 0.69vw, 13px);
  justify-content: space-between;
  width: 100%;
  z-index: 3;
}

.solutions-block__item-image {
  z-index: 3;
}

[data-theme="dark"] .solutions-block__item-image img {
  filter: invert(29%) sepia(0%) saturate(0%) hue-rotate(179deg) brightness(95%)
    contrast(95%);
}

.solutions-block__item-image img {
  display: flex;
  min-width: clamp(50px, 5.56vw, 100px);
  max-width: clamp(50px, 5.56vw, 100px);
  height: auto;
  transition: all 0.3s;
}

.solutions-block__item-title {
  transition: all 0.3s;
  color: var(--main-text-color);
}

.solutions-block__item-arrow {
  display: flex;
}

.solutions-block__item-arrow svg * {
  transition: all 0.3s;
}

.solutions-block__item-arrow svg {
  width: clamp(44px, 3.47vw, 63px);
  height: clamp(44px, 3.47vw, 63px);
}

.solutions-block__item:active .solutions-block__item-background,
.solutions-block__item:focus .solutions-block__item-background {
  background-color: var(--soft-black);
}

.solutions-block__item:active .solutions-block__item-image img,
.solutions-block__item:focus .solutions-block__item-image img {
  filter: brightness(0) invert(1);
}

.solutions-block__item:active .solutions-block__item-title,
.solutions-block__item:active .solutions-block__item-desc p,
.solutions-block__item:focus .solutions-block__item-title,
.solutions-block__item:focus .solutions-block__item-desc p {
  color: var(--white-color);
}

.solutions-block__item:active
  .solutions-block__item-arrow
  svg
  rect:first-of-type,
.solutions-block__item:focus
  .solutions-block__item-arrow
  svg
  rect:first-of-type {
  fill: var(--white-color);
}

.solutions-block__item:active .solutions-block__item-pseudo,
.solutions-block__item:focus .solutions-block__item-pseudo {
  display: block !important;
}

@media screen and (min-width: 1201px) {
  .solutions-block__item-title {
    flex-basis: clamp(155px, 10.76vw, 200px);
  }

  .solutions-block__item-desc {
    flex-basis: calc(
      100% - clamp(155px, 10.76vw, 200px) - clamp(8px, 3.47vw, 63px)
    );
  }

  .solutions-block__item:hover .solutions-block__item-background {
    background-color: var(--soft-black);
  }

  .solutions-block__item:hover .solutions-block__item-image img {
    filter: brightness(0) invert(1);
  }

  .solutions-block__item:hover .solutions-block__item-title,
  .solutions-block__item:hover .solutions-block__item-desc p {
    color: var(--white-color);
  }

  .solutions-block__item:hover
    .solutions-block__item-arrow
    svg
    rect:first-of-type {
    fill: var(--white-color);
  }

  .solutions-block__item:hover .solutions-block__item-pseudo {
    display: block !important;
  }
}

@media screen and (max-width: 1200px) {
  .solutions-block__item-title br {
    display: none;
  }

  .solutions-block__item-content {
    align-items: unset;
    flex-direction: column;
  }

  .solutions-block__item-arrow {
    margin-bottom: 20px;
  }

  .solutions-block__item-content {
    gap: 25px;
  }
}

@media screen and (min-width: 801px) {
  .solutions-block__item {
    flex: 1 1 calc(100% / 2 - clamp(25px, 2.78vw, 50px));
  }

  .solutions-block__item:last-child {
    flex: 0 0 calc(100% / 2 - calc(clamp(25px, 2.78vw, 50px) / 2));
  }
}

@media screen and (max-width: 800px) {
  .solutions-block__lists {
    flex-direction: column;
  }

  .solutions-block__item {
    align-items: unset;
    flex-direction: column;
  }

  .solutions-block__item-content {
    gap: 8px;
  }

  .solutions-block__title br {
    display: none;
  }
}

/* future-fiber */

.future-fiber__conteiner {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.future-fiber__content {
  display: flex;
  flex-direction: column;
  gap: clamp(50px, 13.19vw, 238px);
  max-width: clamp(335px, 37.92vw, 683px);
}

.future-fiber__head {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 1.39vw, 25px);
}

.future-fiber__desc {
  max-width: clamp(169px, 24.44vw, 440px);
}

.future-fiber__image {
  display: flex;
  position: absolute;
  bottom: 0;
  left: calc(50%);
  transform: translateX(-50%);
  z-index: 1;
}

.future-fiber__image img {
  max-width: clamp(320px, 46.67vw, 840px);
}

.future-fiber__bg-text p {
  font-family: var(--third-family);
  font-weight: 500;
  font-size: 190px;
  line-height: 100%;
  letter-spacing: -0.02em;
  text-align: right;
  color: #e5e8eb;
}

@media screen and (min-width: 1601px) {
  .future-fiber__conteiner {
    padding-bottom: 140px;
  }
}

@media screen and (max-width: 768px) {
  .future-fiber {
    overflow: hidden;
  }

  .future-fiber__title br {
    display: none;
  }
  .future-fiber__bg-text {
    display: none;
  }

  .future-fiber__conteiner {
    padding-top: 0;
  }

  .future-fiber__image {
    left: unset;
    right: -90px;
    transform: unset;
  }

  .future-fiber__content {
    padding-bottom: 106px;
  }

  .future-fiber__content {
    max-width: 100%;
  }
}

/* first-screen */

.first-screen__wrapper {
  position: relative;
  z-index: 2;
}

.first-screen__conteiner {
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  max-width: calc(100% - 20px);
  margin-left: 10px;
  display: flex;
  background: center / cover no-repeat
    url("/wp-content/uploads/2025/06/hero-bg-image.webp");
}

.first-screen__content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: clamp(335px, 64.79vw, 1167px);
}

.first-screen__title strong {
  font-weight: 500;
  position: relative;
}

.first-screen__title strong::after {
  position: absolute;
  content: "";
  width: clamp(219px, 27.08vw, 488px);
  height: clamp(49px, 6.11vw, 110px);
  top: calc(-1 * clamp(22px, 2.71vw, 49px));
  right: calc(-1 * clamp(29px, 3.61vw, 65px));
  background: center / cover no-repeat
    url("/wp-content/uploads/2025/07/title-decoration.svg");
}

.first-screen__title--first {
  display: flex;
  flex-direction: column;
  gap: clamp(0px, 0.76vw, 14px);
}

.first-screen__title {
  text-transform: uppercase;
}

.first-screen__title,
.first-screen__desc p {
  color: var(--white-color);
}

.first-screen__desc {
  margin-top: clamp(10px, 2.78vw, 50px);
  margin-bottom: clamp(30px, 3.47vw, 63px);
}

.first-screen__button-wrap {
  display: flex;
  gap: clamp(8px, 0.69vw, 13px);
}

@media screen and (min-width: 801px) {
  .first-screen__desc {
    max-width: clamp(335px, 31.94vw, 575px);
  }

  .first-screen__title--mob {
    display: none;
  }

  .first-screen__body {
    margin-top: calc(-1 * clamp(0px, 4.65vw, 84px));
    margin-left: clamp(0px, 19.44vw, 350px);
  }

  .first-screen__content {
    min-height: 700px;
  }
}

@media screen and (max-width: 800px) {
  .first-screen__conteiner {
    margin-left: 5px;
    max-width: calc(100% - 10px);
  }

  .first-screen__title--first,
  .first-screen__title--second {
    display: none;
  }

  .first-screen__content {
    padding: 15px;
    justify-content: flex-end;
  }
}

[data-theme="dark"] .first-screen__desc p {
  color: var(--white-color);
}

/* dark theme */

[data-theme="dark"] .future-fiber__bg-text p {
  color: #17171a;
}

[data-theme="dark"] .future-fiber__desc p {
  color: #adadad;
}

/* solutions-block dark theme */

[data-theme="dark"] #primary section.solutions-block {
  background: #17171a;
}

[data-theme="dark"] .solutions-block__item-arrow svg rect:first-of-type {
  fill: #101011;
}

[data-theme="dark"] .solutions-block__item-arrow svg rect {
  stroke: var(--charcoal-mist);
}

[data-theme="dark"] .solutions-block__item-arrow svg path {
  stroke: white;
}

[data-theme="dark"] .solutions-block__item::before {
  background: var(--charcoal-mist);
}

[data-theme="dark"]
  .solutions-block__item:active
  .solutions-block__item-arrow
  svg
  rect:first-of-type,
[data-theme="dark"]
  .solutions-block__item:focus
  .solutions-block__item-arrow
  svg
  rect:first-of-type {
  fill: var(--white-color);
}

@media screen and (min-width: 1201px) {
  [data-theme="dark"]
    .solutions-block__item:hover
    .solutions-block__item-arrow
    svg
    rect:first-of-type {
    fill: var(--white-color);
  }

  [data-theme="dark"]
    .solutions-block__item:hover
    .solutions-block__item-arrow
    svg
    path {
    stroke: #1c1d20;
  }

  [data-theme="dark"]
    .solutions-block__item:hover
    .solutions-block__item-arrow
    svg
    rect {
    stroke: var(--white-color);
  }
}

/* action-block dark theme */

[data-theme="dark"] .action-block__divider {
  background: center / cover no-repeat
    url(/wp-content/uploads/2025/07/divider-dark.svg);
}

[data-theme="dark"] .action-block__icons svg path {
  fill: #5e5e5e;
}

[data-theme="dark"] .action-block__slide-content img {
  border-color: transparent;
}

[data-theme="dark"] .action-block__swiper-button svg rect {
  fill: var(--charcoal-mist);
}
[data-theme="dark"] .action-block__swiper-button svg path {
  stroke: var(--white-color);
}

/* dark theme who-can-join */

[data-theme="dark"] #primary section.who-can-join {
  background: #17171a;
}

[data-theme="dark"] .who-can-join__card {
  border-color: #373738;
  background: #101011;
}

/* animation */

.products__ellipse--one {
  transform-origin: center;
  animation: ProductFeatureCardRotateOne 20s ease-in-out infinite;
}

@keyframes ProductFeatureCardRotateOne {
  0%,
  100% {
    transform: scale(1.5) rotate(-45deg) translate(0px);
  }

  25% {
    transform: scale(2) rotate(-45deg) translate(20px, 50px);
  }

  50% {
    transform: scale(1.5) rotate(90deg) translate(100px, -100px);
  }

  75% {
    transform: scale(1.5) rotate(-45deg) translate(200px, 100px);
  }
}

.products__ellipse--two {
  transform-origin: center;
  animation: ProductFeatureCardRotateTwo 20s ease-in-out infinite;
}

@keyframes ProductFeatureCardRotateTwo {
  0%,
  100% {
    transform: scale(1.5) rotate(-45deg) translate(150px, 200px);
  }

  25% {
    transform: scale(1.8) rotate(-10deg) translate(100px, 135px);
  }

  50% {
    transform: scale(1.5) rotate(0deg) translate(50px, 150px);
  }

  75% {
    transform: scale(1.8) rotate(15deg) translate(65px, 175px);
  }
}

/* mission-and-core-values */

#primary section.mission-and-core-values {
  padding-top: clamp(90px, 11.81vw, 213px);
  padding-bottom: clamp(70px, 10.42vw, 188px);
  background-color: var(--white-color);
}

.mission-and-core-values__divider {
  position: relative;
  top: calc(-1 * clamp(90px, 11.81vw, 213px));
  width: 100%;
  height: clamp(20px, 2.08vw, 38px);
  background: center / cover no-repeat url(/wp-content/uploads/2025/07/svg.svg);
}

.mission-and-core-values__container {
  display: flex;
  gap: clamp(20px, 1.39vw, 25px);
  justify-content: space-between;
  position: relative;
}

.mission-and-core-values__column {
  display: flex;
  flex-direction: column;
}

.mission-and-core-values__column--left {
  gap: clamp(20px, 1.39vw, 25px);
  justify-content: space-between;
}

.mission-and-core-values__logo img {
  max-width: clamp(130px, 9.03vw, 163px);
  height: auto;
}

.mission-and-core-values__column--right {
  gap: clamp(30px, 4.17vw, 75px);
}

.mission-and-core-values__mission,
.mission-and-core-values__values {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 1.39vw, 25px);
}

.mission-and-core-values__list {
  display: flex;
  column-gap: clamp(30px, 2.08vw, 38px);
  row-gap: clamp(8px, 0.69vw, 13px);
}

.mission-and-core-values__item {
  display: flex;
  align-items: center;
  gap: clamp(6px, 0.69vw, 13px);
}

.mission-and-core-values__item-icon {
  display: flex;
}

.mission-and-core-values__item-icon img {
  max-width: clamp(20px, 1.67vw, 30px);
}

@media screen and (min-width: 1201px) {
  .mission-and-core-values__item-text {
    margin-bottom: -2px;
  }
  .mission-and-core-values__column--left {
    flex-basis: calc(
      100% - clamp(20px, 1.39vw, 25px) - clamp(335px, 36.11vw, 650px) -
        clamp(0px, 6.81vw, 123px)
    );
  }

  .mission-and-core-values__column--right {
    padding-right: clamp(0px, 6.81vw, 123px);
    flex-basis: calc(clamp(335px, 36.11vw, 650px) + clamp(0px, 6.81vw, 123px));
  }

  .mission-and-core-values__list {
    flex-wrap: wrap;
  }

  .mission-and-core-values__item:not(:last-child) {
    flex: 1 1 calc(100% / 2 - clamp(30px, 2.08vw, 38px));
  }

  .mission-and-core-values__item:last-child {
    flex: 0 0 calc(100% / 2 - clamp(30px, 2.08vw, 38px) / 2);
  }
}

@media screen and (max-width: 1200px) {
  .mission-and-core-values__list {
    flex-direction: column;
  }
}

@media screen and (min-width: 801px) and (max-width: 1200px) {
  .mission-and-core-values__column--left,
  .mission-and-core-values__column--right {
    flex-basis: calc(100% - clamp(20px, 1.39vw, 25px));
  }
}

@media screen and (max-width: 800px) {
  .mission-and-core-values__container {
    flex-direction: column;
    gap: 50px;
  }

  .mission-and-core-values__logo {
    display: none;
  }
}

/* mission-and-core-values dark theme */

[data-theme="dark"] #primary section.mission-and-core-values {
  background: #17171a;
}

[data-theme="dark"] .mission-and-core-values__divider {
  background: center / cover no-repeat
    url(/wp-content/uploads/2025/07/divider-dark.svg);
}

[data-theme="dark"] .mission-and-core-values__item-icon img {
  filter: brightness(0) invert(1);
}

/* members */

#primary section.members {
  padding-top: clamp(70px, 11.11vw, 200px);
  padding-bottom: clamp(70px, 11.11vw, 200px);
}

[data-theme="light"] #primary section.members {
  background: #f8f9fa;
}

.members__content {
  display: flex;
}

.members__content--desktop {
  gap: clamp(10px, 2.78vw, 50px);
}

.members__column--left {
  gap: clamp(10px, 2.78vw, 50px);
}

.members__column {
  display: flex;
  flex-direction: column;
  max-width: 50%;
  width: 100%;
}

.members__cards {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 2.78vw, 50px);
  flex: 1;
}

.members__head {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.39vw, 25px);
}

.members__card {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  border: 1px solid #e4e9ed;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.members__card-wrap {
  position: relative;
}

.members__card-wrap > * {
  position: relative;
  z-index: 2;
}

.members__card-wrap::after {
  position: absolute;
  content: "";
  width: calc(100% + clamp(20px, 2.78vw, 50px));
  height: calc(100% + clamp(20px, 2.78vw, 50px));
  top: calc(-1 * clamp(20px, 2.78vw, 50px) / 2);
  left: calc(-1 * clamp(20px, 2.78vw, 50px) / 2);
  background: var(--white-color);
  border-radius: 4px;
  opacity: 0;
  z-index: 1;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.members__card:not(.members__card--button) > * {
  z-index: 2;
}

.members__card:not(.members__card--button)::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background: center / cover no-repeat
    url("/wp-content/uploads/2025/07/customer-card-background.png");
}

.members__card:not(.members__card--button) {
  justify-content: flex-end;
  min-height: clamp(400px, 43.82vw, 789px);
  padding: clamp(20px, 2.08vw, 38px);
}

.members__card--button {
  padding: clamp(20px, 3.47vw, 63px);
}

.members__card-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: clamp(10px, 1.11vw, 20px);
  transition: all 0.3s;
}

.members__card:not(.members__card--button) .members__card-title {
  color: var(--white-color);
}

.members__card:not(.members__card--button) .members__card-desc p {
  transition: all 0.3s;
  color: #cdcdcd;
  max-width: clamp(295px, 34.03vw, 613px);
}

.members__card-title svg {
  width: unset;
  height: unset;
  min-width: clamp(44px, 3.47vw, 63px);
  min-height: clamp(44px, 3.47vw, 63px);
  max-width: clamp(44px, 3.47vw, 63px);
  max-height: clamp(44px, 3.47vw, 63px);
  transition: all 0.3s;
}

.members__card--button {
  background: var(--white-color);
}

.members__card--button .members__card-title,
.members__card--button .members__card-desc {
  max-width: clamp(295px, 31.81vw, 573px);
}

.members__card-btn {
  margin-top: clamp(30px, 4.31vw, 78px);
}

.members__card-pseudo {
  position: absolute;
  z-index: 1;
}

.members__card-pseudo--desktop {
  right: -376px;
  bottom: -314px;
}

.members__card-pseudo--mobile {
  right: -200px;
  bottom: -141px;
}

@media screen and (min-width: 801px) {
  .members__content--mobile {
    display: none;
  }

  .members__card-title svg {
    opacity: 0;
  }

  .members__card:not(.members__card--button):hover .members__card-wrap::after,
  .members__card:not(.members__card--button):hover .members__card-title svg {
    opacity: 1;
  }

  .members__card:not(.members__card--button):hover .members__card-title {
    color: var(--main-text-color);
  }

  [data-theme="dark"]
    .members__card:not(.members__card--button):hover
    .members__card-title {
    color: var(--white-color);
  }

  .members__card:not(.members__card--button):hover .members__card-desc p {
    color: #636468;
  }

  [data-theme="dark"]
    .members__card:not(.members__card--button):hover
    .members__card-desc
    p {
    color: #adadad;
  }
}

@media screen and (max-width: 800px) {
  .members__content--mobile {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .members__content--desktop {
    display: none;
  }
}

[data-theme="dark"] .members__card--button {
  background: #17171a;
}

[data-theme="dark"] .members__card {
  border-color: var(--charcoal-mist);
}

[data-theme="dark"] .members__card-wrap::after {
  background: #17171a;
  border-color: var(--charcoal-mist);
}

[data-theme="dark"] .members__card .members__card-desc p {
  color: #adadad;
}

/* .who-can-join */

.who-can-join__card.sticky + .who-can-join__card {
  z-index: 21;
}

.who-can-join__card.sticky {
  position: sticky;
  z-index: 2;
  transform: translateY(0);
  opacity: 1;
}

.who-can-join__card.unsticking {
  opacity: 0;
  transform: translateY(-20px);
}

.who-can-join__scroll-bottom-spacer {
  height: 0;
}

#primary section.who-can-join {
  padding-top: clamp(70px, 11.11vw, 200px);
  padding-bottom: clamp(100px, 9.72vw, 175px);
  background: var(--white-color);
}

.who-can-join__wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(30px, 3.47vw, 63px);
  max-width: clamp(335px, 48.61vw, 875px);
  margin-left: auto;
  margin-right: auto;
}

.who-can-join__head {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.39vw, 25px);
}

.who-can-join__cards {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.who-can-join__card {
  display: flex;
  transform-origin: top center;
  align-items: center;
  padding: clamp(20px, 1.39vw, 25px) clamp(20px, 3.47vw, 63px);
  border: 1px solid var(--frost-gray);
  border-radius: clamp(10px, 0.69vw, 13px);
  overflow: hidden;
  box-sizing: border-box;
  background: #f8f9fa;
  min-height: clamp(224px, 17.78vw, 320px);
}

.who-can-join__card-content {
  display: flex;
  flex-direction: column;
  z-index: 2;
  position: relative;
  gap: clamp(10px, 0.69vw, 13px);
  flex-basis: clamp(168px, 19.03vw, 343px);
}

.who-can-join__card-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: clamp(280px, 20.83vw, 450px);
  height: 100%;
  z-index: 3;
}

.who-can-join__card.who-can-join__card--banner .who-can-join__card-image {
  width: 700px;
}

.who-can-join__card--banner {
  background: var(--soft-black);
}

.who-can-join__card--banner .who-can-join__card-content {
  gap: clamp(20px, 1.81vw, 33px);
  z-index: 6;
}

.who-can-join__card--banner .who-can-join__card-title {
  color: var(--white-color);
}

.who-can-join__card--banner .who-can-join__card-btn {
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.2);
}

.who-can-join__card--banner .who-can-join__card-pseudo-item {
  position: absolute;
  z-index: 1;
}

.who-can-join__card--banner .who-can-join__card-pseudo-item--1 {
  left: -369px;
  bottom: -375px;
}

.who-can-join__card--banner .who-can-join__card-pseudo-item--2 {
  right: 6px;
  bottom: -229px;
}

@media screen and (min-width: 1201px) {
  .who-can-join__card--banner .who-can-join__card-btn:hover {
    background: rgba(255, 255, 255, 0.3);
  }
}

@media screen and (max-width: 1200px) {
  .who-can-join__card--banner .who-can-join__card-btn:focus,
  .who-can-join__card--banner .who-can-join__card-btn:active {
    background: rgba(255, 255, 255, 0.3);
  }
}

@media screen and (min-width: 801px) and (max-width: 1200px) {
  .who-can-join__card-image {
    right: -75px;
  }
}

@media screen and (max-width: 800px) {
  .who-can-join__card-image {
    right: -90px;
  }

  .who-can-join__card--banner {
    align-items: flex-start;
  }
}

/* have questions */

#primary section.have-questions {
  padding-top: 450px;
  padding-bottom: clamp(70px, 10.42vw, 188px);
  background: var(--white-color);
}

.have-questions__conteiner {
  display: flex;
  gap: clamp(20px, 1.39vw, 25px);
  justify-content: space-between;
}

.have-questions__column {
  display: flex;
  flex-direction: column;
}

.have-questions__column--left {
  gap: clamp(20px, 1.39vw, 25px);
  justify-content: space-between;
}

.have-questions__head {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.39vw, 25px);
}

.have-questions__contacts {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.have-questions__contacts {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.08vw, 38px);
}

.have-questions__item {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 0.69vw, 13px);
}

.have-questions__item-text p a {
  color: var(--gray-color);
}

[data-theme="dark"] .have-questions__item-text p a {
  color: #adadad;
}

@media screen and (min-width: 801px) {
  .have-questions__column--left {
    /* flex-basis: calc(100% - clamp(335px, 40.28vw, 725px) - clamp(20px, 1.39vw, 25px)); */
    flex-basis: clamp(335px, 41.67vw, 750px);
    max-width: 50%;
  }

  .have-questions__column--right {
    /* flex-basis: clamp(335px, 40.28vw, 725px); */
    flex-basis: calc(
      100% - clamp(335px, 41.67vw, 750px) - clamp(20px, 1.39vw, 25px)
    );
    max-width: 50%;
  }

  .have-questions__desc {
    max-width: clamp(335px, 38.89vw, 700px);
  }

  .have-questions__desc p {
    text-wrap-style: balance;
  }
}

@media screen and (max-width: 800px) {
  #primary section.have-questions {
    padding-top: 190px;
  }

  .have-questions__title br {
    display: none;
  }
}

/* form */

input.wpcf7-not-valid {
  border-color: #e60202;
}

.unaccepted .wpcf7-acceptance input + span::before,
input.wpcf7-not-valid {
  outline: 2px solid #e60202 !important;
}

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

body span.wpcf7-not-valid-tip {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(13px, 0.9vw, 20px);
  line-height: 120%;
  letter-spacing: -0.02em;
  text-align: right;
  color: #ff3d2e;
  position: absolute;
  right: 0;
  bottom: calc(-10px + (-1 * clamp(16px, 1.18vw, 22px)));
}

.wpcf7-acceptance input {
  display: none;
}

.wpcf7-list-item-label {
  display: flex;
}

body form.wpcf7-form.unaccepted .wpcf7-acceptance input:checked + span::before {
  border-color: unset;
}

.wpcf7-acceptance input + span::before {
  content: "";
  display: inline-block;
  min-width: clamp(20px, 1.39vw, 25px);
  height: clamp(20px, 1.39vw, 25px);
  outline: 1px solid #dee1e6;
  border-radius: 4px;
  background-color: #fff;
  margin-right: clamp(6px, 0.42vw, 8px);
  transition: all 0.3s ease;
  cursor: pointer;
}

.wpcf7-acceptance input + span {
  position: relative;
}

.wpcf7-acceptance input:checked + span::after {
  content: "";
  background: center / cover no-repeat
    url("/wp-content/uploads/2025/06/check.svg");
  min-width: clamp(7.5px, 0.69vw, 15px);
  min-height: clamp(5px, 0.49vw, 10.5px);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 5.5px;
  cursor: pointer;
}

.wpcf7-acceptance input:checked + span::before {
  background: linear-gradient(135deg, #302cb3 0%, #1f008f 100%);
}

.wpcf7-list-item {
  margin-left: 0;
}

.form__head {
  margin-top: clamp(0px, 0.83vw, 15px);
  margin-bottom: clamp(30px, 2.08vw, 38px);
}

.form__content {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 1.39vw, 25px);
}

.form__agreement {
  display: flex;
  flex-direction: column;
}

.form__wrapper {
  display: flex;
  flex-direction: column;
}

.form__input-name {
  margin-bottom: clamp(8px, 0.56vw, 10px);
}

.form__input-name span {
  color: #e60202;
}

.form__two-columns {
  display: flex;
  gap: clamp(7px, 1.39vw, 25px);
}

.form__two-columns input {
  width: 100%;
}

.form__two-columns {
  width: 100%;
}

.form__two-columns .form__column {
  max-width: 50%;
  width: 100%;
}

textarea,
input {
  transition: all 0.3s;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: clamp(14px, 1.11vw, 20px);
  line-height: 130%;
  color: var(--main-text-color);
  border-radius: 10px;
  outline: 1px solid #dee1e6;
  box-sizing: border-box;
  padding: clamp(12px, 0.97vw, 18px) clamp(13px, 1.11vw, 20px);
  border: 0;
}

textarea:focus,
input:focus {
  outline: 2px solid #2816a1 !important;
}

textarea::placeholder,
input::placeholder {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: clamp(14px, 1.11vw, 20px);
  line-height: 130%;
  color: #c3c5c9;
}

textarea {
  max-height: clamp(110px, 9.03vw, 163px);
  resize: none;
  width: 100%;
}

.form__agreement {
  margin-top: clamp(20px, 2.08vw, 38px);
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.08vw, 38px);
}

.form__agreement p a {
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #2816a1;
}

.form__agreement .form__one-column {
  display: flex;
}

.wpcf7-form-control-wrap {
  display: flex;
}

.response-and-button button {
  max-width: unset;
  width: 100%;
  justify-content: center;
}

.form__agreement-container h5 {
  color: var(--main-text-color);
  margin-bottom: clamp(4px, 0.28vw, 5px);
}

@media screen and (max-width: 800px) {
  textarea,
  input {
    border-radius: 8px;
  }

  .wpcf7-acceptance input + span::before {
    margin-right: 10px;
  }

  .have-questions__conteiner {
    flex-direction: column;
    gap: 50px;
  }

  .wpcf7-acceptance input:checked + span::after {
    left: 7px;
  }

  .form__two-columns:not(:first-child) {
    flex-direction: column;
  }

  .form__two-columns:not(:first-child) .form__column {
    max-width: unset;
  }
}

/* have-questions dark theme */
[data-theme="dark"] #primary section.have-questions {
  background-color: #17171a;
}

[data-theme="dark"] textarea,
[data-theme="dark"] input {
  color: var(--white-color);
  background: var(--pine-night);
}

[data-theme="dark"] textarea,
[data-theme="dark"] input {
  outline: 1px solid #373738;
}

[data-theme="dark"] textarea::placeholder,
[data-theme="dark"] input::placeholder {
  color: #646464;
}

[data-theme="dark"] .form__agreement-container h5 {
  color: var(--white-color);
}

[data-theme="dark"] .form__agreement p a {
  color: var(--white-color);
}

[data-theme="dark"] textarea:focus,
[data-theme="dark"] input:focus {
  outline: 2px solid #322ac2;
}

[data-theme="dark"] .wpcf7-acceptance input + span::before {
  outline: 1px solid #373738;
  background: transparent;
}

[data-theme="dark"] .wpcf7-acceptance input:checked + span::before {
  background: #322ac2;
  border-color: #322ac2;
}
