.header_wrapper {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header_height);
}
.header_wrapper .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.header_wrapper .header_logo {
  display: block;
  width: 415px;
  height: 57px;
}
.header_wrapper .header_logo img {
  display: block;
  width: 415px;
  height: 57px;
}
@media (max-width: 1400px) {
  .header_wrapper .header_logo {
    width: 227px;
    height: 31px;
  }
  .header_wrapper .header_logo img {
    width: 227px;
    height: 31px;
  }
}
.header_wrapper .header_navigation ul {
  display: flex;
  gap: 50px;
}
.header_wrapper .header_navigation ul a {
  font-weight: 300;
  font-size: 20px;
  font-size: 1.25rem;
  color: var(--color-white);
}
.header_wrapper .header_control {
  display: flex;
  gap: 42px;
  margin: 0 0 0 52px;
}
.header_wrapper .header_control > * {
  position: relative;
}
.header_wrapper .header_control > *::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -21px;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background: var(--color-white);
}
.header_wrapper .header_control > *:last-child::before {
  content: initial;
}
.a_switch {
  display: block;
  background: initial;
  border: initial;
  border-radius: 2px;
  padding: 0;
  outline: 2px solid transparent;
  cursor: pointer;
}
.a_switch svg {
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  -ms-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.a_switch:focus-visible {
  outline: 2px solid var(--color-black);
}
.acc_popup {
  min-width: 92px;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  background: rgba(24, 93, 167, 0.9);
  border-radius: 20px;
  padding: 8px 7px;
}
.acc_popup .acc_row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.acc_popup .acc_row button {
  background: transparent;
  border: initial;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 400;
  font-size: 12px;
  font-size: 0.75rem;
  color: var(--color-white);
  padding: 8px 6px 8px 10px;
}
.acc_popup .acc_row button:hover {
  text-decoration: underline;
}
.acc_popup .acc_row button.active {
  font-weight: 700;
}
.language_switcher .wpml-ls-legacy-list-horizontal {
  border: initial;
  padding: 0;
}
.language_switcher .wpml-ls-legacy-list-horizontal ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.language_switcher .wpml-ls-legacy-list-horizontal ul a {
  font-weight: 400;
  font-size: 12px;
  font-size: 0.75rem;
  color: var(--color-white);
  padding: 8px 6px 8px 10px;
}
.language_switcher .wpml-ls-legacy-list-horizontal ul a:hover {
  text-decoration: underline;
}
label.hb_label {
  display: flex;
  flex-direction: column;
  width: 27px;
  cursor: pointer;
  margin-left: auto;
  transition: ease-in-out 0.5s;
}
label.hb_label span {
  background: #fff;
  border-radius: 15px;
  height: 3px;
  margin: 3px auto;
  transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
label.hb_label span:nth-of-type(1) {
  width: 90%;
}
label.hb_label span:nth-of-type(2) {
  width: 100%;
}
label.hb_label span:nth-of-type(3) {
  width: 90%;
}
label.hb_label input[type="checkbox"] {
  display: none;
}
label.hb_label input[type="checkbox"]:checked ~ span:nth-of-type(1) {
  width: 50%;
  transform-origin: bottom;
  transform: rotatez(45deg) translate(-1px, 6px);
}
label.hb_label input[type="checkbox"]:checked ~ span:nth-of-type(2) {
  width: 100%;
  transform-origin: top;
  transform: rotatez(-45deg);
}
label.hb_label input[type="checkbox"]:checked ~ span:nth-of-type(3) {
  transform-origin: bottom;
  width: 50%;
  transform: translate(4px, -5px) rotatez(45deg);
}
.header_menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: #F5F5F5;
  z-index: 10000;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transition: ease-in-out 0.25s;
}
.header_menu .header_menu_upper {
  width: 100%;
  height: 194px;
  min-height: 68px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
}
.header_menu .header_menu_upper img {
  display: block;
  width: 232px;
}
.header_menu .header_menu_upper::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent linear-gradient(167deg, #151515 0%, #111111 9%, #00000000 100%) 0% 0% no-repeat padding-box;
  opacity: 0.5;
}
.header_menu .header_menu_content {
  padding: 60px 40px 32px 40px;
}
.header_menu .mobile_header_navigation ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.header_menu .mobile_header_navigation ul a {
  font-weight: 600;
  font-size: 16px;
  font-size: 1rem;
  color: var(--color-black);
  padding: 6px;
}
.header_menu .mobile_header_navigation ul li.current_page_item.menu-item-home a {
  color: var(--color-main);
}
.header_menu .mobile_header_languages {
  border: 1px solid rgba(112, 112, 112, 0.2);
  border-width: 1px 0 1px 0;
  padding: 34px 0 24px 0;
  margin: 26px 0 0 0;
}
.header_menu .mobile_header_languages .wpml-ls-legacy-list-horizontal {
  padding: 0;
  border: initial;
}
.header_menu .mobile_header_languages .wpml-ls-legacy-list-horizontal ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}
.header_menu .mobile_header_languages .wpml-ls-legacy-list-horizontal ul a {
  background: transparent;
  border: 1px solid #C4C4C4;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 13px 18px;
  font-size: 14px;
  font-size: 0.875rem;
  color: var(--color-black);
}
.header_menu .mobile_header_languages .wpml-ls-legacy-list-horizontal ul li.wpml-ls-current-language a {
  background: var(--color-main);
  border-color: var(--color-main);
  color: var(--color-white);
}
.header_menu .mobile_header_font_size {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 36px 0 0 0;
}
.header_menu .mobile_header_font_size button {
  background: transparent;
  border: 1px solid #C4C4C4;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 15px;
  font-size: 12px;
  font-size: 0.75rem;
  color: var(--color-black);
}
.header_menu .mobile_header_font_size button.active {
  background: var(--color-main);
  border-color: var(--color-main);
  color: var(--color-white);
}
.header_menu .mobile_header_close {
  position: absolute;
  z-index: 50;
  top: 22px;
  right: 18px;
  display: block;
  padding: 0;
  border: initial;
  background: initial;
}
.header_menu .mobile_header_close svg,
.header_menu .mobile_header_close img {
  display: block;
  width: 14px;
  height: 14px;
}
.slide-in-right {
  -webkit-animation: slide-in-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-in-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@-webkit-keyframes slide-in-right {
  0% {
    right: -1500px;
    opacity: 0;
  }
  100% {
    right: 0px;
    opacity: 1;
  }
}
@keyframes slide-in-right {
  0% {
    right: -1500px;
    opacity: 0;
  }
  100% {
    right: 0;
    opacity: 1;
  }
}
.slide-out-right {
  -webkit-animation: slide-out-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-out-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@-webkit-keyframes slide-out-right {
  0% {
    right: 0px;
    opacity: 1;
  }
  100% {
    right: -1500px;
    opacity: 0;
  }
}
@keyframes slide-out-right {
  0% {
    right: 0;
    opacity: 1;
  }
  100% {
    right: -1500px;
    opacity: 0;
  }
}
@media (min-width: calc(1350px + 1px)) {
  #mobile_menu_popup {
    display: none;
  }
  label.hb_label {
    display: none;
  }
}
@media (max-width: 1350px) {
  .header_wrapper .header_navigation,
  .header_wrapper .header_control {
    display: none;
  }
}
#mobile_menu_popup {
  opacity: 0;
}
#mobile_menu_popup.hidden {
  z-index: 2;
  pointer-events: none;
  user-select: none;
}
:root {
  --cc-text: #212529;
  --cc-btn-primary-bg: var(--color-main);
  --cc-btn-primary-hover-bg: var(--color-mainHover);
}
html {
  --header_height: 136px;
  --color-main: #185EA7;
  --color-mainHover: #124984;
  --color-secondary: #9A2633;
  --color-white: #ffffff;
  --color-black: #000000;
  overflow-x: hidden;
  --scrollbar-compensate: 0;
  padding-right: var(--scrollbar-compensate, 0px);
  font-size: 100%;
}
html body {
  margin: 0;
  overflow-x: hidden;
  font-family: 'Geologica', sans-serif;
  background: #F5F5F5;
}
html.font_125 {
  font-size: 125%;
}
@media (max-width: 768px) {
  html.font_125 {
    font-size: 112.5%;
  }
}
html.font_150 {
  font-size: 150%;
}
@media (max-width: 768px) {
  html.font_150 {
    font-size: 125%;
  }
}
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
* {
  box-sizing: border-box;
}
a {
  color: inherit;
  outline: 2px solid transparent;
  text-decoration: none;
  display: inline-block;
  border-radius: 2px;
}
a:focus-visible {
  outline-color: var(--color-black);
}
.container {
  max-width: 1400px;
  width: calc(100% - 80px);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .container {
    width: calc(100% - 50px);
  }
}
.container.narrow {
  max-width: 1290px;
}
p {
  margin: 0;
}
img {
  max-width: 100%;
}
h1,
.h1 {
  font-weight: 700;
  font-size: 44px;
  font-size: 2.75rem;
  line-height: 1.2em;
  color: var(--color-black);
  margin: 0 0 0.6em 0;
}
@media (max-width: 768px) {
  h1,
  .h1 {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
h2,
.h2 {
  font-weight: 600;
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1.2em;
  color: var(--color-black);
  margin: 0 0 0.6em 0;
}
@media (max-width: 768px) {
  h2,
  .h2 {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}
h3,
.h3 {
  font-weight: 700;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.15em;
  color: var(--color-black);
  margin: 0.8em 0 0.5em 0;
}
h3:first-child,
.h3:first-child {
  margin-top: 0;
}
@media (max-width: 768px) {
  h3,
  .h3 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
h4,
.h4 {
  font-weight: 700;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.15em;
  color: var(--color-black);
  margin: 0.8em 0 0.5em 0;
}
h4:first-child,
.h4:first-child {
  margin-top: 0;
}
@media (max-width: 768px) {
  h4,
  .h4 {
    font-size: 19px;
    font-size: 1.1875rem;
  }
}
p {
  font-weight: 200;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.35em;
  color: var(--color-black);
  margin: 0 0 0.6em 0;
}
@media (max-width: 768px) {
  p {
    font-size: 16px;
    font-size: 1rem;
  }
}
header p,
footer p {
  margin: 0;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
html.scroll-locked {
  overflow: hidden;
}
html.scroll-locked body {
  overflow: hidden;
}
.events-none {
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  -ms-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (min-width: 1101px) {
  .hide_above_1100 {
    display: none !important;
  }
}
@media (max-width: 1100px) {
  .hide_below_1100 {
    display: none !important;
  }
}
@media (min-width: 1001px) {
  .hide_above_1000 {
    display: none !important;
  }
}
@media (max-width: 1000px) {
  .hide_below_1000 {
    display: none !important;
  }
}
@media (min-width: 769px) {
  .hide_above_768 {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .hide_below_768 {
    display: none !important;
  }
}
select {
  display: none;
}
.otgs-development-site-front-end {
  display: none !important;
}
.btn {
  position: relative;
  transition: ease-in-out 0.25s;
  font-weight: 400;
  border-radius: 3px;
  cursor: pointer;
  outline: none;
  border: none;
}
.btn_style_1 {
  border: 2px solid #000000;
  border-radius: 28px;
  background: transparent;
  padding: 13px 28px;
  font-size: 18px;
  font-size: 1.125rem;
  color: var(--color-black);
}
.btn_style_1:hover {
  color: var(--color-white);
  background: var(--color-main);
  border-color: var(--color-main);
}
.btn_style_1:focus-visible {
  outline: 2px solid var(--color-main);
}
@media (max-width: 768px) {
  .btn_style_1 {
    padding: 10px 26px;
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
p + .btn_style_1 {
  margin-top: 24px;
}
.font-light {
  font-weight: 300;
}
.font-semibold {
  font-weight: 600;
}
section.home_initial {
  height: 100vh;
  min-height: 800px;
  max-height: 2000px;
  position: relative;
  z-index: 5;
  padding: calc(var(--header_height) + 190px) 0 0 0;
  background-color: #B1E5FF;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 1200px) {
  section.home_initial {
    padding: calc(var(--header_height) + 70px) 0 0 0;
  }
}
@media (max-width: 768px) {
  section.home_initial {
    min-height: 530px;
    height: auto;
  }
}
section.home_initial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent linear-gradient(0deg, #151515 0%, #111111 5%, #05050545 42%, #01010100 76%, #00000038 100%) 0% 0% no-repeat padding-box;
  z-index: -1;
}
section.home_initial video {
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  -ms-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  object-fit: cover;
}
section.home_initial .container {
  display: flex;
  flex-direction: column;
  align-items: baseline;
}
section.home_initial .container > * {
  max-width: 640px;
}
@media (max-width: 768px) {
  section.home_initial .container > * {
    max-width: 312px;
  }
}
@media (max-width: 768px) {
  section.home_initial .container {
    align-items: center;
  }
}
section.home_initial h1,
section.home_initial h2,
section.home_initial p,
section.home_initial li {
  color: var(--color-white);
}
@media (max-width: 768px) {
  section.home_initial h1,
  section.home_initial h2,
  section.home_initial p,
  section.home_initial li {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}
section.home_initial h1 {
  font-weight: 300;
  font-size: 30px;
  font-size: 1.875rem;
  margin: 0 0 19px 0;
}
@media (max-width: 768px) {
  section.home_initial h1 {
    font-size: 16px;
    font-size: 1rem;
    margin: 0 0 13px 0;
  }
}
section.home_initial h2 {
  font-weight: 600;
  font-size: 60px;
  font-size: 3.75rem;
  margin: 0 0 32px 0;
}
@media (max-width: 768px) {
  section.home_initial h2 {
    font-size: 30px;
    font-size: 1.875rem;
    margin: 0 0 19px 0;
  }
}
section.home_initial ul {
  display: flex;
  flex-direction: column;
  gap: 10px 48px;
  flex-wrap: wrap;
  max-height: 128px;
}
section.home_initial ul li {
  font-weight: 400;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.25em;
  padding: 0 0 0 28px;
  position: relative;
}
section.home_initial ul li::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url('../../images/icons/check_shield.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
section.home_initial .i_learn_more {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
section.home_initial .i_learn_more p {
  font-weight: 600;
  font-size: 16px;
  font-size: 1rem;
  color: var(--color-white);
  margin: 0;
  text-align: center;
}
@media (max-width: 768px) {
  section.home_initial .i_learn_more {
    position: initial;
    transform: initial;
    gap: 9px;
  }
  section.home_initial .i_learn_more p {
    font-size: 12px;
    font-size: 0.75rem;
  }
  section.home_initial .i_learn_more img {
    height: 20px;
  }
}
section.aboutus {
  background: #151515;
  padding: 40px 0 420px 0;
  position: relative;
  z-index: 5;
}
@media (max-width: 768px) {
  section.aboutus {
    padding: 26px 0 50px 0;
  }
}
section.aboutus::before,
section.aboutus::after {
  content: '';
  position: absolute;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
section.aboutus::before {
  top: 184px;
  left: 0;
  width: 624px;
  height: 410px;
  background-image: url('../../images/home_bg_figure_2.svg');
}
@media (max-width: 1000px) {
  section.aboutus::before {
    content: initial;
  }
}
section.aboutus::after {
  top: 0;
  right: 142px;
  width: 390px;
  height: 674px;
  background-image: url('../../images/home_bg_figure_3.svg');
}
@media (max-width: 1000px) {
  section.aboutus::after {
    top: initial;
    bottom: 0;
    right: 36px;
    width: 109px;
    height: 188px;
  }
}
section.aboutus .block_upper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
section.aboutus .block_upper .col {
  display: flex;
  flex-direction: column;
  align-items: center;
}
section.aboutus .block_upper .col img {
  display: block;
  margin: 0 auto 18px auto;
}
@media (max-width: 768px) {
  section.aboutus .block_upper .col img {
    margin: 0 auto 11px auto;
  }
}
section.aboutus .block_upper .col p {
  font-weight: 200;
  font-size: 18px;
  font-size: 1.125rem;
  text-align: center;
  margin: 0 auto 16px auto;
  color: var(--color-white);
  max-width: 360px;
}
section.aboutus .block_upper .col p strong {
  font-weight: 700;
}
@media (max-width: 1000px) {
  section.aboutus .block_upper .col p {
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  section.aboutus .block_upper .col p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media (max-width: 1000px) {
  section.aboutus .block_upper .col {
    padding: 0 0 10px 0;
    border-bottom: 3px solid transparent;
  }
  section.aboutus .block_upper .col.active {
    border-color: var(--color-main);
  }
}
@media (max-width: 1000px) {
  section.aboutus .block_upper {
    display: flex;
    justify-content: center;
    gap: 33px;
  }
}
section.aboutus .block_lower {
  margin: 24px auto 0 auto;
  max-width: 400px;
}
section.aboutus .block_lower p {
  font-weight: 200;
  font-size: 16px;
  font-size: 1rem;
  color: var(--color-white);
  text-align: center;
}
section.quote_block {
  position: relative;
  z-index: 6;
  margin: -280px 0 160px 0;
}
section.quote_block::before {
  content: '';
  position: absolute;
  z-index: -1;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 1155px;
  height: 70%;
  background: rgba(0, 0, 0, 0.56);
  border-radius: 3px;
  filter: blur(30px);
}
@media (max-width: 768px) {
  section.quote_block {
    margin: 0 0 55px 0;
  }
}
section.quote_block .container {
  padding: 48px 20px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  section.quote_block .container {
    padding: 60px 20px 70px 20px;
    width: 100%;
  }
}
section.quote_block .container .block_inner {
  padding: 80px 40px 125px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: 1080px;
}
@media (max-width: 768px) {
  section.quote_block .container .block_inner {
    padding: 124px 24px 24px 24px;
    align-items: initial;
  }
}
section.quote_block .container .block_inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(24, 93, 167, 0.81);
  mix-blend-mode: multiply;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
section.quote_block .container .block_inner img {
  display: block;
  width: 64px;
  height: 64px;
  margin: 0 0 25px 0;
}
@media (max-width: 768px) {
  section.quote_block .container .block_inner img {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    margin: 0;
  }
}
section.quote_block .container .block_inner * {
  position: relative;
  z-index: 7;
}
section.quote_block .container .block_inner h2,
section.quote_block .container .block_inner p {
  color: var(--color-white);
  text-align: center;
}
@media (max-width: 768px) {
  section.quote_block .container .block_inner h2,
  section.quote_block .container .block_inner p {
    text-align: left;
  }
}
section.quote_block .container .block_inner h2 {
  max-width: 792px;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  section.quote_block .container .block_inner h2 {
    max-width: 340px;
    margin-bottom: 14px;
  }
}
section.quote_block .container .block_inner p {
  max-width: 572px;
  margin: 0;
}
section.services_row {
  margin: 170px 0 160px 0;
}
@media (max-width: 768px) {
  section.services_row {
    margin: 55px 0 65px 0;
  }
}
section.services_row .container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
section.services_row .block_left {
  max-width: 420px;
}
@media (min-width: 1201px) {
  section.services_row .block_left {
    padding-left: 55px;
    padding-top: 18px;
  }
}
section.services_row .block_right {
  max-width: 760px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px 13px;
}
section.services_row .block_right .serv_box {
  width: 100%;
  height: auto;
  min-height: 210px;
  max-height: 400px;
  aspect-ratio: 1/1;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 2px 2px #00000014;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: center;
  padding: 40px 4px 4px 4px;
  transition: ease-in-out 0.25s;
  position: relative;
  z-index: 5;
  cursor: pointer;
}
section.services_row .block_right .serv_box img {
  display: block;
  width: 50px;
  height: 50px;
  filter: brightness(0) saturate(100%) invert(27%) sepia(9%) saturate(1837%) hue-rotate(192deg) brightness(92%) contrast(93%);
}
section.services_row .block_right .serv_box p {
  font-weight: 500;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3em;
  margin: 0;
  text-align: center;
  min-height: calc(18px * 1.3 * 3);
  display: flex;
  align-items: center;
  transition: inherit;
}
section.services_row .block_right .serv_box::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 135px;
  height: 203px;
  background-image: url('../../images/box_bg_letter_l.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  -ms-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  opacity: 0;
  transition: inherit;
}
section.services_row .block_right .serv_box.active {
  background: var(--color-main);
  transform: translateY(-5%);
}
section.services_row .block_right .serv_box.active::before {
  opacity: 1;
}
section.services_row .block_right .serv_box.active p {
  color: var(--color-white);
}
section.services_row .block_right .serv_box.active img {
  filter: brightness(0) saturate(100%) invert(1);
}
section.services_row .sr_control {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 28px 0;
}
section.services_row .sr_control button {
  display: block;
  border: initial;
  margin: 0;
  background: initial;
  padding: 0;
  cursor: pointer;
  outline: 2px solid transparent;
}
section.services_row .sr_control button:focus-visible {
  outline: 2px solid var(--color-black);
}
section.services_row .sr_control button svg {
  display: block;
}
@media (max-width: 1100px) {
  section.services_row .services_mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  section.services_row .services_mobile > p {
    font-weight: 600;
    font-size: 25px;
    font-size: 1.5625rem;
    text-align: center;
    margin: 0 auto 45px auto;
  }
  section.services_row .serv_mob_box {
    background: #FFFFFF;
    box-shadow: 0px 2px 2px #00000014;
    min-height: 90px;
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
  }
  section.services_row .serv_mob_box p {
    margin: 0;
    color: var(--color-black);
  }
  section.services_row .serv_mob_box .box_upper {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 60px 20px 26px;
    margin: auto 0;
    position: relative;
    height: 74px;
  }
  section.services_row .serv_mob_box .box_upper img {
    position: absolute;
    top: 50%;
    right: 26px;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    filter: brightness(0) saturate(100%);
  }
  section.services_row .serv_mob_box .box_upper p {
    font-weight: 500;
    font-size: 16px;
    font-size: 1rem;
  }
  section.services_row .serv_mob_box .box_upper svg {
    display: block;
    flex-shrink: 0;
    transition: ease-in-out 0.25s;
  }
  section.services_row .serv_mob_box .box_content {
    padding: 4px 26px 20px 26px;
  }
  section.services_row .serv_mob_box .box_content p {
    font-weight: 200;
    font-size: 16px;
    font-size: 1rem;
  }
  section.services_row .serv_mob_box:not(.active) .box_content {
    display: none;
  }
  section.services_row .serv_mob_box.active .box_upper svg {
    opacity: 0;
  }
}
section.consultation_row {
  margin: 120px 0 0 0;
}
@media (max-width: 768px) {
  section.consultation_row {
    margin: 64px 0 0 0;
  }
}
section.consultation_row .container {
  display: flex;
  position: relative;
  z-index: 5;
}
@media (min-width: 1201px) {
  section.consultation_row .container::before {
    content: '';
    position: absolute;
    z-index: -1;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 70%;
    background: rgba(0, 0, 0, 0.56);
    border-radius: 3px;
    filter: blur(30px);
  }
}
@media (max-width: 1400px) {
  section.consultation_row .container {
    width: 100%;
    flex-direction: column;
  }
}
section.consultation_row .block_left {
  width: 100%;
  max-width: 676px;
}
section.consultation_row .block_left img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1400px) {
  section.consultation_row .block_left {
    max-width: initial;
  }
  section.consultation_row .block_left img {
    max-height: 680px;
  }
}
section.consultation_row .block_right {
  background: #151515;
  padding: 90px 90px 90px 110px;
  flex-grow: 1;
}
section.consultation_row .block_right .btn {
  color: var(--color-white);
}
section.consultation_row .block_right .btn:not(:hover) {
  border-color: var(--color-white);
}
section.consultation_row .block_right p {
  max-width: 435px;
}
@media (max-width: 1400px) {
  section.consultation_row .block_right p {
    max-width: 580px;
  }
}
@media (max-width: 768px) {
  section.consultation_row .block_right {
    padding: 58px 20px;
  }
}
section.consultation_row h1,
section.consultation_row h2,
section.consultation_row h3,
section.consultation_row h4,
section.consultation_row p {
  color: var(--color-white);
}
.contact_box {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 22px 0;
}
.contact_box p {
  margin: 0;
}
.contact_box > :nth-child(1) {
  color: var(--color-secondary);
  font-weight: 800;
  font-size: 20px;
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  .contact_box > :nth-child(1) {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.contact_box > :nth-child(2) {
  color: var(--color-white);
  font-weight: 300;
  font-size: 18px;
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .contact_box > :nth-child(2) {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .contact_box {
    margin: 18px 0;
  }
}
section.experience_row {
  margin: 0;
}
@media (min-width: 1401px) {
  section.experience_row {
    min-height: 660px;
  }
}
section.experience_row .container {
  display: flex;
  align-items: center;
  min-height: inherit;
}
@media (max-width: 1400px) {
  section.experience_row .container {
    width: 100%;
    flex-direction: column-reverse;
  }
}
section.experience_row .block_left {
  width: 100%;
  max-width: 676px;
  position: relative;
  z-index: 5;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 1401px) {
  section.experience_row .block_left {
    padding-left: 55px;
  }
}
@media (max-width: 1400px) {
  section.experience_row .block_left {
    padding: 50px 20px 26px 20px;
    max-width: 905px;
  }
}
section.experience_row .block_left h2,
section.experience_row .block_left p {
  max-width: 416px;
}
@media (max-width: 1400px) {
  section.experience_row .block_left h2,
  section.experience_row .block_left p {
    max-width: initial;
  }
}
section.experience_row .block_left::before {
  content: '';
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  width: 490px;
  height: 418px;
  background-image: url('../../images/home_bg_figure_1.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media (max-width: 1400px) {
  section.experience_row .block_left::before {
    width: 238px;
    height: 203px;
    bottom: initial;
    top: 0;
    right: initial;
    left: 0;
    transform: rotate(180deg);
  }
}
section.experience_row .block_right {
  min-height: inherit;
  position: relative;
  width: auto;
  flex-grow: 1;
}
section.experience_row .block_right img {
  display: block;
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  max-width: initial;
}
@media (max-width: 1400px) {
  section.experience_row .block_right img {
    position: initial;
    width: 100%;
  }
}
section.lead_row {
  margin: 0;
  min-height: 832px;
}
@media (max-width: 1400px) {
  section.lead_row {
    min-height: initial;
    margin: 40px 0 0 0;
  }
}
section.lead_row .container {
  display: flex;
  align-items: center;
  min-height: inherit;
}
@media (max-width: 1400px) {
  section.lead_row .container {
    width: 100%;
    flex-direction: column-reverse;
    gap: 60px;
  }
}
section.lead_row .block_left {
  min-height: inherit;
  width: 100%;
  max-width: 676px;
  position: relative;
  flex-shrink: 0;
}
section.lead_row .block_left img {
  position: absolute;
  top: 0;
  right: 0;
  max-width: initial;
}
@media (max-width: 1400px) {
  section.lead_row .block_left {
    max-width: initial;
    display: flex;
    justify-content: center;
  }
  section.lead_row .block_left img {
    position: initial;
    max-width: 100%;
  }
}
section.lead_row .block_right {
  width: auto;
  flex-grow: 1;
  display: flex;
  gap: 56px;
  position: relative;
  left: -210px;
}
@media (max-width: 1400px) {
  section.lead_row .block_right {
    left: initial;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
section.lead_row .lead_box {
  width: 420px;
  height: 610px;
  box-shadow: 0px 3px 6px #00000029;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 36px 50px 36px 32px;
  position: relative;
  z-index: 5;
}
@media (max-width: 768px) {
  section.lead_row .lead_box {
    width: 100%;
    max-width: 335px;
    height: auto;
    min-height: 490px;
    padding: 24px;
  }
}
section.lead_row .lead_box::before {
  content: '';
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: transparent linear-gradient(180deg, #00000000 0%, #000000 100%) 0% 0% no-repeat padding-box;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  -ms-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
section.lead_row .lead_box p {
  font-weight: 200;
  font-size: 18px;
  font-size: 1.125rem;
  color: var(--color-white);
}
@media (max-width: 768px) {
  section.lead_row .lead_box p {
    font-size: 16px;
    font-size: 1rem;
  }
}
section.lead_row .lead_box .person_name {
  font-weight: 600;
  font-size: 25px;
  font-size: 1.5625rem;
  margin: 0 0 7px 0;
}
@media (max-width: 768px) {
  section.lead_row .lead_box .person_name {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
section.lead_row .lead_box .person_role {
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
  margin: 0 0 13px 0;
}
@media (max-width: 768px) {
  section.lead_row .lead_box .person_role {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
section.lead_row .lead_box .mail_box {
  display: flex;
  align-items: center;
  gap: 16px;
}
section.lead_row .lead_box .mail_box p {
  font-weight: 300;
  margin: 0;
}
@media (max-width: 768px) {
  section.lead_row .lead_box .mail_box {
    gap: 13px;
  }
  section.lead_row .lead_box .mail_box img {
    width: 18px;
    height: 18px;
  }
}
section.lead_row .lead_box .person_linkedin {
  position: absolute;
  top: 25px;
  right: 21px;
  width: 29px;
  height: 29px;
  background-image: url('../../images/icons/linkedin_white.svg');
}
.custom_checkmark {
  display: flex;
  align-items: center;
  gap: 19px;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media (max-width: 768px) {
  .custom_checkmark {
    gap: 11px;
  }
}
.custom_checkmark input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.custom_checkmark .checkmark {
  position: relative;
  display: block;
  border: 1px solid #E8E8E8;
  border-radius: 4px;
  height: 32px;
  width: 32px;
  background-color: #FFFFFF;
  flex-shrink: 0;
  margin: 0;
  transition: ease-in-out 0.25s;
}
@media (min-width: 769px) {
  .custom_checkmark .checkmark {
    margin: 0 0 0 auto;
  }
}
@media (max-width: 768px) {
  .custom_checkmark .checkmark {
    width: 26px;
    height: 26px;
  }
}
.custom_checkmark .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  background: var(--color-main);
  transform: translate(-50%, -50%);
  border-radius: 4px;
}
@media (max-width: 768px) {
  .custom_checkmark .checkmark:after {
    width: 10px;
    height: 10px;
  }
}
.custom_checkmark:hover input ~ .checkmark {
  background-color: #f8f8f8;
}
.custom_checkmark input:checked ~ .checkmark:after {
  display: block;
}
.custom_checkmark input.error ~ .checkmark {
  outline: 2px solid red;
}
.custom_checkmark p {
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  color: var(--color-black);
  margin: 0;
}
.custom_checkmark p a {
  text-decoration: underline;
}
.custom_checkmark p a:hover {
  text-decoration: initial;
}
@media (max-width: 768px) {
  .custom_checkmark p {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1 !important;
}
.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--color-main);
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
html.font_125 section.home_initial .container > * {
  max-width: initial;
}
html.font_125 section.services_row .block_left {
  max-width: initial;
}
html.font_150 section.home_initial .container > * {
  max-width: initial;
}
html.font_150 section.services_row .block_left {
  max-width: initial;
}
html.font_150 section.experience_row .block_left h2,
html.font_150 section.experience_row .block_left p {
  max-width: initial;
}
@media (min-width: 1201px) {
  html.font_150 section.experience_row .block_left {
    padding-right: 30px;
    padding-bottom: 24px;
    padding-top: 30px;
  }
}
body:not(.home) .header_wrapper .header_navigation ul a {
  color: var(--color-black);
}
body:not(.home) .a_switch svg {
  filter: invert(1);
}
body:not(.home) .header_wrapper .header_control > *::before {
  background: var(--color-black);
}
main.page_standard {
  min-height: 100vh;
  padding: calc(var(--header_height) + 50px) 0 70px 0;
}
footer.footer_wrapper {
  background: #151515;
  position: relative;
  z-index: 5;
}
footer.footer_wrapper::before {
  content: '';
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  width: 597px;
  height: 733px;
  background-image: url('../../images/footer_bg_figure.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media (max-width: 1000px) {
  footer.footer_wrapper::before {
    width: 266px;
    height: 326px;
    bottom: initial;
    top: 0;
    left: 0;
    right: initial;
    transform: rotate(180deg);
  }
}
footer.footer_wrapper h1,
footer.footer_wrapper h2,
footer.footer_wrapper h3,
footer.footer_wrapper h4,
footer.footer_wrapper p {
  color: var(--color-white);
}
footer.footer_wrapper .contact_form_row {
  padding: 116px 0 130px 0;
}
@media (max-width: 768px) {
  footer.footer_wrapper .contact_form_row {
    padding: 60px 0 22px 0;
  }
}
footer.footer_wrapper .contact_form_row .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 1000px) {
  footer.footer_wrapper .contact_form_row .container {
    flex-direction: column;
    gap: 32px;
    align-items: center;
    text-align: center;
  }
}
footer.footer_wrapper .contact_form_row .block_left {
  max-width: 410px;
}
footer.footer_wrapper .contact_form_row .block_right {
  width: 100%;
  max-width: 608px;
}
footer.footer_wrapper .contact_form_row .footer_cbox {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 22px 0;
}
@media (max-width: 768px) {
  footer.footer_wrapper .contact_form_row .footer_cbox {
    flex-direction: column;
    gap: 16px;
  }
}
footer.footer_wrapper .contact_form_row .footer_cbox img {
  display: block;
}
footer.footer_wrapper .contact_form_row .footer_cbox p {
  font-weight: 300;
  font-size: 18px;
  font-size: 1.125rem;
  margin: 0;
}
@media (max-width: 768px) {
  footer.footer_wrapper .contact_form_row .footer_cbox p {
    font-size: 16px;
    font-size: 1rem;
  }
}
footer.footer_wrapper .contact_form_row .footer_cbox:first-of-type {
  margin-top: 46px;
}
@media (max-width: 768px) {
  footer.footer_wrapper .contact_form_row .footer_cbox:first-of-type {
    margin-top: 36px;
  }
}
footer.footer_wrapper .contact_form_row h3 {
  margin-bottom: 18px;
  margin-top: 46px;
}
footer.footer_wrapper .contact_form_row .block_row {
  display: flex;
  gap: 9px;
  margin: 20px 0 0 0;
}
@media (max-width: 1000px) {
  footer.footer_wrapper .contact_form_row .block_row {
    justify-content: center;
  }
}
@media (max-width: 360px) {
  footer.footer_wrapper .contact_form_row .block_row {
    flex-wrap: wrap;
  }
}
footer.footer_wrapper .maps_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  padding: 11px 16px;
  min-width: 163px;
  transition: ease-in-out 0.25s;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  color: var(--color-white);
}
footer.footer_wrapper .maps_btn:hover {
  background: rgba(255, 255, 255, 0.25);
}
footer.footer_wrapper .maps_btn img {
  display: block;
  width: 23px;
  height: 23px;
}
footer.footer_wrapper .block_mobile {
  display: flex;
  flex-direction: column;
}
footer.footer_wrapper .block_mobile .h4 {
  margin: 16px 0;
}
footer.footer_wrapper .footer_part {
  height: 140px;
}
@media (max-width: 1000px) {
  footer.footer_wrapper .footer_part {
    height: auto;
  }
}
footer.footer_wrapper .footer_part .container {
  height: inherit;
  border-top: 1px solid #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1000px) {
  footer.footer_wrapper .footer_part .container {
    padding: 40px 0 45px 0;
    width: 100%;
    flex-direction: column;
    justify-content: initial;
    gap: 12px;
  }
}
footer.footer_wrapper .footer_part .block_right {
  display: flex;
  align-items: center;
  gap: 80px;
}
footer.footer_wrapper .footer_part .block_right a,
footer.footer_wrapper .footer_part .block_right p {
  font-weight: 300;
  font-size: 16px;
  font-size: 1rem;
  color: var(--color-white);
  margin: 0;
}
footer.footer_wrapper .footer_part .block_right a img,
footer.footer_wrapper .footer_part .block_right p img {
  display: inline-block;
  margin: 0 0 -5px 3px;
}
@media (max-width: 768px) {
  footer.footer_wrapper .footer_part .block_right a img,
  footer.footer_wrapper .footer_part .block_right p img {
    margin: 0px 0 -3px 3px;
    width: 58px;
  }
}
@media (max-width: 768px) {
  footer.footer_wrapper .footer_part .block_right a,
  footer.footer_wrapper .footer_part .block_right p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media (max-width: 1000px) {
  footer.footer_wrapper .footer_part .block_right {
    flex-direction: column-reverse;
    gap: 12px;
    text-align: center;
  }
}
footer.footer_wrapper .footer_part .block_right .bmr {
  display: flex;
  align-items: center;
  gap: 80px;
}
@media (max-width: 1000px) {
  footer.footer_wrapper .footer_part .block_right .bmr {
    gap: 12px;
  }
}
footer.footer_wrapper .footer_logo {
  display: block;
}
footer.footer_wrapper .footer_logo img {
  display: block;
  width: 238px;
  height: 33px;
}
@media (max-width: 1000px) {
  footer.footer_wrapper .footer_logo img {
    margin: 0 0 12px 0;
  }
}
@media (max-width: 768px) {
  footer.footer_wrapper .footer_logo img {
    width: 197px;
    height: 27px;
  }
}
.contact_form_wrap {
  width: 100%;
}
.contact_form_wrap .contact_form_content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
@media (max-width: 768px) {
  .contact_form_wrap .contact_form_content {
    gap: 9px;
  }
}
.contact_form_wrap .contact_form_content .input_2_col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 768px) {
  .contact_form_wrap .contact_form_content .input_2_col {
    grid-template-columns: repeat(1, 1fr);
    gap: 9px;
  }
}
.contact_form_wrap input:not([type="checkbox"]) {
  height: 56px;
}
@media (max-width: 768px) {
  .contact_form_wrap input:not([type="checkbox"]) {
    height: 45px;
  }
}
.contact_form_wrap textarea {
  height: 188px;
  min-height: 60px;
  max-height: 600px;
  resize: vertical;
}
@media (max-width: 768px) {
  .contact_form_wrap textarea {
    height: 154px;
  }
}
.contact_form_wrap input:not([type="checkbox"]),
.contact_form_wrap textarea {
  width: 100%;
  background: #FFFFFF;
  border-radius: 4px;
  border: initial;
  outline: 2px solid transparent;
  padding: 20px 26px;
  font-family: inherit;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  color: var(--color-black);
}
.contact_form_wrap input:not([type="checkbox"]).error,
.contact_form_wrap textarea.error {
  outline: 2px solid red;
}
@media (max-width: 768px) {
  .contact_form_wrap input:not([type="checkbox"]),
  .contact_form_wrap textarea {
    padding: 14px 20px;
  }
}
.contact_form_wrap .nice-select {
  height: 56px;
  background: #FFFFFF;
  border-radius: 4px;
  border: initial;
  padding: 20px 26px;
  display: flex;
  align-items: center;
  font-family: inherit;
  font-size: 16px;
  font-size: 1rem;
  color: var(--color-black);
}
.contact_form_wrap .nice-select .nice-select-dropdown {
  width: 100%;
  max-height: 400px;
  overflow-y: auto;
}
.contact_form_wrap .nice-select .nice-select-dropdown li {
  padding: 0 26px;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .contact_form_wrap .nice-select {
    height: 45px;
    padding: 14px 20px;
  }
}
.contact_form_wrap .contact_form_lower {
  padding: 12px 0 0 0;
  display: flex;
  justify-content: space-between;
  gap: 30px 12px;
}
@media (max-width: 768px) {
  .contact_form_wrap .contact_form_lower {
    flex-direction: column;
    align-items: center;
  }
}
.contact_form_wrap .contact_form_lower button {
  min-width: 216px;
  color: var(--color-white);
  font-family: inherit;
}
.contact_form_wrap .contact_form_lower button:not(:hover) {
  border-color: var(--color-white);
}
.contact_form_wrap:not(.processing_form) .lds-ellipsis {
  display: none;
}
.contact_form_wrap.processing_form .contact_form_content {
  opacity: 0.5;
}
.contact_form_wrap .contact_form_success {
  margin: 20px 0;
  text-align: center;
  font-weight: 500;
}
