@charset "UTF-8";
/* COMMON */
@font-face {
  font-family: FontLight;
  src: url(../fonts/Lexend-Light.ttf) format("truetype");
  font-display: block;
}
@font-face {
  font-family: FontRegular;
  src: url(../fonts/Lexend-Regular.ttf) format("truetype");
  font-display: block;
}
@font-face {
  font-family: FontMedium;
  src: url(../fonts/Lexend-Medium.ttf) format("truetype");
  font-display: block;
}
@font-face {
  font-family: FontSemiBold;
  src: url(../fonts/Lexend-SemiBold.ttf) format("truetype");
  font-display: block;
}
@font-face {
  font-family: FontBold;
  src: url(../fonts/Lexend-Bold.ttf) format("truetype");
  font-display: block;
}
@font-face {
  font-family: FontLight;
  src: url(../fonts/OpenSans-Light.ttf) format("truetype");
  font-display: block;
}
@font-face {
  font-family: FontRegular;
  src: url(../fonts/OpenSans-Regular.ttf) format("truetype");
  font-display: block;
}
@font-face {
  font-family: FontMedium;
  src: url(../fonts/OpenSans-Medium.ttf) format("truetype");
  font-display: block;
}
@font-face {
  font-family: FontSemiBold;
  src: url(../fonts/OpenSans-SemiBold.ttf) format("truetype");
  font-display: block;
}
@font-face {
  font-family: FontBold;
  src: url(../fonts/OpenSans-Bold.ttf) format("truetype");
  font-display: block;
}

.font-light {
  font-family: FontLight;
}

.font-regular {
  font-family: FontRegular;
}

.font-medium {
  font-family: FontMedium;
}

.font-semibold {
  font-family: FontSemiBold;
}

.font-bold {
  font-family: FontBold;
}

html {
  height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 10%;
}

a {
  font-family: FontRegular;
  text-decoration: none;
  transition: all 0.2s linear;
}
a > * {
  transition: all 0.2s linear;
}

h1, h2, h3, h4, h5, h6 {
  font-family: FontBold;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 0;
}

h1 {
  font-size: 62px;
}
@media screen and (max-width: 992px) {
  h1 {
    font-size: 50px;
  }
}
@media screen and (max-width: 575px) {
  h1 {
    font-size: 28px;
  }
}

h2 {
  font-family: FontSemiBold;
  font-size: 52px;
  line-height: 105%;
}
@media screen and (max-width: 992px) {
  h2 {
    font-size: 42px;
  }
}
@media screen and (max-width: 575px) {
  h2 {
    font-size: 24px;
  }
}

p {
  margin: 0;
  font-family: FontRegular;
  font-size: 18px;
  line-height: 1.2;
}
@media screen and (max-width: 575px) {
  p {
    font-size: 15px;
  }
}

body {
  margin: 0;
  font-family: FontRegular;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #FFFFFF;
}
body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-track {
  background: transparent;
}
body::-webkit-scrollbar-thumb {
  border-radius: 50px;
  background: #052A22;
}
body:has(.single-page) .header {
  background-color: #052A22;
}

body > main {
  flex: 1 1 auto;
  overflow-x: hidden;
}

.main-container {
  max-width: 1336px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

ul {
  padding-left: 0;
  margin-bottom: 0;
}
ul li {
  list-style-type: none;
}

section {
  padding: 133px 0 151px;
}
@media screen and (max-width: 992px) {
  section {
    padding: 60px 0;
  }
}
@media screen and (max-width: 767px) {
  section {
    padding: 50px 0;
  }
}
@media screen and (max-width: 575px) {
  section {
    padding: 30px 0;
  }
}

@media screen and (max-width: 992px) {
  .mobile-hidden {
    display: none;
  }
}

.mobile-visibility {
  display: none;
}
@media screen and (max-width: 992px) {
  .mobile-visibility {
    display: block;
  }
}

.nav-scroll {
  background-color: #052A22 !important;
  box-shadow: 0px 0 10px 5px rgba(41, 41, 41, 0.16);
}

.on-ajax-btn .arrow-decor {
  margin-left: 0 !important;
}
.on-ajax-btn .arrow-decor svg {
  animation: rotate 1s linear infinite !important;
}

.current-menu-item a {
  color: #E7AB40 !important;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* COMMPONENTS */
.header {
  position: fixed;
  width: 100%;
  height: 80px;
  top: 0;
  left: 0;
  background-color: transparent;
  z-index: 12;
  display: flex;
  align-items: center;
  transition: all 0.1s linear;
}
@media screen and (max-width: 575px) {
  .header {
    height: 68px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.0392156863);
  }
}
.header .header-wrapper .header-content {
  display: grid;
  grid-template-columns: 240px 1fr 240px;
  align-items: center;
  height: 60px;
}
@media screen and (max-width: 1280px) {
  .header .header-wrapper .header-content {
    grid-template-columns: 270px 1fr 42px;
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .header .header-wrapper .header-content {
    grid-template-columns: 1fr 1fr 42px;
    gap: 10px;
  }
}
.header .header-wrapper .header-content .logo-wrapper {
  display: flex;
  align-items: center;
  gap: 5px;
}
.header .header-wrapper .header-content .logo-wrapper img {
  max-width: 43px;
  width: 100%;
  height: 43px;
  object-fit: contain;
}
@media screen and (max-width: 575px) {
  .header .header-wrapper .header-content .logo-wrapper img {
    max-width: 30px;
    height: 30px;
  }
}
.header .header-wrapper .header-content .logo-wrapper .site-title {
  font-family: FontBold;
  font-size: 21px;
  color: #FFFFFF;
  text-transform: uppercase;
}
@media screen and (max-width: 575px) {
  .header .header-wrapper .header-content .logo-wrapper .site-title {
    font-size: 18px;
  }
}
.header .header-wrapper .header-content .logo-wrapper:hover .site-title {
  color: #E7AB40;
}
@media screen and (max-width: 1280px) {
  .header .header-wrapper .header-content .menu-wrapper {
    display: none;
  }
}
.header .header-wrapper .header-content .menu-wrapper .navigation-menu {
  margin-left: auto;
  margin-right: auto;
}
.header .header-wrapper .header-content .menu-wrapper .navigation-menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .header-wrapper .header-content .menu-wrapper .navigation-menu ul li {
  padding: 0 30px;
  position: relative;
}
.header .header-wrapper .header-content .menu-wrapper .navigation-menu ul li a {
  font-family: FontRegular;
  font-size: 16px;
  color: #FFFFFF;
}
.header .header-wrapper .header-content .menu-wrapper .navigation-menu ul li a:hover {
  color: #E7AB40;
}
.header .header-wrapper .header-content .menu-wrapper .navigation-menu ul li:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1215686275);
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
.header .header-wrapper .header-content .menu-wrapper .navigation-menu ul li:first-child {
  padding-left: 0;
}
.header .header-wrapper .header-content .menu-wrapper .navigation-menu ul li:last-child {
  padding-right: 0;
}
.header .header-wrapper .header-content .menu-wrapper .navigation-menu ul li:last-child:before {
  display: none;
}
.header .header-wrapper .header-content .navigation-wrapper {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .header .header-wrapper .header-content .navigation-wrapper .contact-phone {
    display: none;
  }
}
.header .header-wrapper .header-content .contact-phone {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: FontBold;
  font-size: 16px;
  color: #FFFFFF;
}
.header .header-wrapper .header-content .contact-phone svg {
  width: 19px;
  height: 19px;
  object-fit: contain;
}
.header .header-wrapper .header-content .contact-phone svg path {
  stroke: #FFFFFF;
  transition: all 0.2s linear;
}
.header .header-wrapper .header-content .contact-phone:hover {
  color: #E7AB40;
}
.header .header-wrapper .header-content .contact-phone:hover svg path {
  stroke: #E7AB40;
}
.header .header-wrapper .header-content .mobile-menu {
  display: none;
}
.header .header-wrapper .header-content .mobile-menu .btn-menu svg path {
  fill: #000000;
  transition: all 0.2s linear;
}
.header .header-wrapper .header-content .mobile-menu .btn-menu:hover svg path {
  fill: #052A22;
}
.header .header-wrapper .header-content .mobile-menu .offcanvas {
  background-color: #052A22;
}
.header .header-wrapper .header-content .mobile-menu .offcanvas .offcanvas-header .btn-close {
  --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFF'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
}
.header .header-wrapper .header-content .mobile-menu .offcanvas .offcanvas-body {
  text-align: center;
}
.header .header-wrapper .header-content .mobile-menu .offcanvas .offcanvas-body .mobile-nav-list {
  margin-bottom: 40px;
}
.header .header-wrapper .header-content .mobile-menu .offcanvas .offcanvas-body .mobile-nav-list .navigation-menu ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: baseline;
}
.header .header-wrapper .header-content .mobile-menu .offcanvas .offcanvas-body .mobile-nav-list .navigation-menu ul li {
  padding-left: 15px;
  position: relative;
}
.header .header-wrapper .header-content .mobile-menu .offcanvas .offcanvas-body .mobile-nav-list .navigation-menu ul li:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 1px;
  left: 0;
  top: 50%;
  background-color: #E7AB40;
  transform: translate(0, -50%);
}
.header .header-wrapper .header-content .mobile-menu .offcanvas .offcanvas-body .mobile-nav-list .navigation-menu ul li a {
  color: #FFFFFF;
  font-size: 20px;
}
.header .header-wrapper .header-content .mobile-menu .offcanvas .offcanvas-body .mobile-nav-list .navigation-menu ul li a:hover {
  color: #E7AB40;
}
.header .header-wrapper .header-content .mobile-menu .offcanvas .offcanvas-body .contact-phone {
  justify-content: center;
}
@media screen and (max-width: 1280px) {
  .header .header-wrapper .header-content .mobile-menu {
    display: block;
  }
  .header .header-wrapper .header-content .mobile-menu .btn-menu {
    border: none;
    background: none;
  }
  .header .header-wrapper .header-content .mobile-menu .btn-menu svg {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 992px) {
  .header .header-wrapper .header-content .contacts-block-content:has(.map) {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
  }
}
@media screen and (max-width: 992px) {
  .header .header-wrapper .header-content .contacts-block-content {
    order: 1;
  }
}
.header .header-wrapper .header-content .contacts-block-content .content-head-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.header .header-wrapper .header-content .contacts-block-content .content-head-list .contacts-item {
  padding: 20px 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}
@media screen and (max-width: 767px) {
  .header .header-wrapper .header-content .contacts-block-content .content-head-list .contacts-item {
    padding: 20px;
  }
}
.header .header-wrapper .header-content .contacts-block-content .content-head-list .contacts-item .title-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .header .header-wrapper .header-content .contacts-block-content .content-head-list .contacts-item .title-wrapper {
    gap: 20px;
  }
}
.header .header-wrapper .header-content .contacts-block-content .content-head-list .contacts-item .title-wrapper .title {
  font-size: 16px;
  font-family: FontMedium;
  color: #E7AB40;
}
.header .header-wrapper .header-content .contacts-block-content .content-head-list .contacts-item .title-wrapper svg {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.header .header-wrapper .header-content .contacts-block-content .content-head-list .contacts-item .title-wrapper svg path {
  fill: #E7AB40;
}
.header .header-wrapper .header-content .contacts-block-content .content-head-list .contacts-item .title-wrapper svg g {
  mask: none;
}
.header .header-wrapper .header-content .contacts-block-content .content-head-list .contacts-item .description {
  font-size: 14px;
  font-family: FontLight;
  color: #FFFFFF;
  text-align: left;
}
.header .header-wrapper .header-content .contacts-block-content .content-head-list .contacts-item .description a {
  font-size: 14px;
  font-family: FontLight;
  color: #FFFFFF;
}
.header .header-wrapper .header-content .contacts-block-content .content-head-list .contacts-item .description a:hover {
  color: #E7AB40;
}

.language-switcher .dropdown-center .dropdown-toggle {
  background-color: transparent;
  outline: none;
  border: none;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  column-gap: 2px;
  text-transform: uppercase;
  transition: all 0.2s linear;
}
.language-switcher .dropdown-center .dropdown-toggle:after {
  display: none;
}
.language-switcher .dropdown-center .dropdown-toggle svg {
  width: 19px;
  height: 19px;
  transition: all 0.15s linear;
}
.language-switcher .dropdown-center .dropdown-toggle svg path {
  stroke: #FFFFFF;
  transition: all 0.2s linear;
}
.language-switcher .dropdown-center .dropdown-toggle:focus svg {
  transform: rotate(180deg);
}
.language-switcher .dropdown-center .dropdown-toggle:hover {
  color: #E7AB40;
}
.language-switcher .dropdown-center .dropdown-toggle:hover svg path {
  stroke: #E7AB40;
}
.language-switcher .dropdown-center .dropdown-menu {
  min-width: 80px;
  border: none;
  box-shadow: 0 10px 30px rgba(53, 53, 53, 0.25);
  padding: 8px;
}
.language-switcher .dropdown-center .dropdown-menu li a {
  text-align: center;
  border-radius: 6px;
  margin-bottom: 3px;
  transition: all 0.2s linear;
}
.language-switcher .dropdown-center .dropdown-menu li a:hover {
  background-color: #FFFFFF;
  color: #E7AB40;
}
.language-switcher .dropdown-center .dropdown-menu li:last-child a {
  margin-bottom: 0;
}

@media screen and (max-width: 575px) {
  .language-switcher .dropdown-center .dropdown-toggle {
    column-gap: 4px;
  }
}
.button-blob-inner {
  height: 54px;
}

.blob-btn {
  z-index: 1;
  position: relative;
  padding: 15px 40px;
  text-align: center;
  color: #052A22;
  font-size: 16px;
  font-family: FontMedium;
  background-color: transparent;
  outline: none;
  border: none;
  transition: color 0.5s;
  cursor: pointer;
  border-radius: 50px;
  display: block;
  width: fit-content;
  text-decoration: none;
  white-space: nowrap;
}
@media screen and (max-width: 575px) {
  .blob-btn {
    padding: 10px 18px;
  }
}
.blob-btn:before {
  content: "";
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
}
.blob-btn:after {
  content: "";
  z-index: -2;
  position: absolute;
  left: 3px;
  top: 3px;
  width: 100%;
  height: 100%;
  transition: all 0.3s 0.2s;
  border-radius: 30px;
}
.blob-btn:hover {
  color: #052A22;
  border-radius: 50px;
}
.blob-btn:hover:after {
  transition: all 0.3s;
  left: 0;
  top: 0;
  border-radius: 50px;
}
.blob-btn__inner {
  z-index: -1;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: #E7AB40;
}
.blob-btn__blobs {
  position: relative;
  display: block;
  height: 100%;
  filter: url("#goo");
}
.blob-btn__blob {
  position: absolute;
  top: 2px;
  width: 25%;
  height: 100%;
  background: #FFFFFF;
  border-radius: 100%;
  transform: translate3d(0, 150%, 0) scale(1.7);
  transition: transform 0.45s;
}
@supports (filter: url("#goo")) {
  .blob-btn__blob {
    transform: translate3d(0, 150%, 0) scale(1.4);
  }
}
.blob-btn__blob:nth-child(1) {
  left: 0%;
  transition-delay: 0s;
}
.blob-btn__blob:nth-child(2) {
  left: 30%;
  transition-delay: 0.08s;
}
.blob-btn__blob:nth-child(3) {
  left: 60%;
  transition-delay: 0.16s;
}
.blob-btn__blob:nth-child(4) {
  left: 90%;
  transition-delay: 0.24s;
}
.blob-btn:hover .blob-btn__blob {
  transform: translateZ(0) scale(1.7);
}
@supports (filter: url("#goo")) {
  .blob-btn:hover .blob-btn__blob {
    transform: translateZ(0) scale(1.4);
  }
}

.btn-yellow-bg .blob-btn__inner {
  background: #E7AB40;
}

.btn-white-bg .blob-btn__inner {
  background: #FFFFFF;
}

.more-button {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding-left: 8px;
}
.more-button .text {
  font-family: FontMedium;
  line-height: 100%;
  color: #000000;
  white-space: nowrap;
  transition: all 0.2s linear;
}
.more-button .icon-decor svg {
  width: 20px;
  height: 20px;
}
.more-button .icon-decor svg path {
  fill: #052A22;
  transition: all 0.2s linear;
}
.more-button:hover .text {
  color: #000000;
}
.more-button:hover .icon-decor svg path {
  fill: #000000;
}

.main-button {
  font-size: 16px;
  width: fit-content;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.main-button .button {
  padding: 16px 40px;
  border-radius: 5px;
  color: #FFFFFF;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  justify-content: center;
  white-space: nowrap;
  font-family: FontSemiBold;
  line-height: 1.2;
  letter-spacing: -0.2px;
  white-space: nowrap;
  transition: all 0.2s linear;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 575px) {
  .main-button .button {
    padding: 11px 21px;
    font-size: 15px;
  }
}
.main-button .button:after {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #052A22;
  position: absolute;
  z-index: -2;
}
.main-button .button:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: #E7AB40;
  z-index: -1;
  transition: clip-path 400ms ease-out;
  clip-path: ellipse(100% 50% at 50% 200%);
}
.main-button .button:hover::before {
  clip-path: ellipse(100% 250% at 50% 200%);
}
.main-button .button a.liquid:active::before {
  clip-path: ellipse(100% 0% at 50% 0%);
}
.main-button .button .arrow-decor {
  margin-left: 12px;
  position: relative;
}
.main-button .button .arrow-decor svg {
  width: 24px;
  height: 24px;
  object-fit: contain;
  transition: all 0.2s linear;
}
.main-button .button .arrow-decor svg path {
  transition: all 0.2s linear;
}
.main-button .button .arrow-decor:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  background-color: #052A22;
  transition: all 0.2s linear;
  z-index: -1;
}
.main-button .button:hover {
  color: #052A22;
}
.main-button .button:hover .arrow-decor svg {
  margin-left: 8px;
}
.main-button .button:hover .arrow-decor svg path {
  stroke: #E7AB40;
}
.main-button .button:hover .arrow-decor:before {
  margin-left: 4px;
  width: 28px;
  height: 28px;
}

@media screen and (max-width: 575px) {
  .default-button {
    width: 100%;
  }
  .default-button .button {
    padding: 18px 24px;
  }
}
.hero {
  background-color: #052A22;
  padding: 144px 0 144px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .hero {
    padding: 130px 0 130px;
  }
}
@media screen and (max-width: 575px) {
  .hero {
    padding: 198px 0 130px;
  }
}
.hero .hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 530px;
  gap: 120px;
  position: relative;
  z-index: 1;
}
.hero .hero-wrapper:has(.reviews-wrapper) {
  grid-template-columns: 1fr 570px;
  gap: 60px;
}
@media screen and (max-width: 1280px) {
  .hero .hero-wrapper:has(.reviews-wrapper) {
    grid-template-columns: 1fr 551px;
    gap: 40px;
  }
}
@media screen and (max-width: 992px) {
  .hero .hero-wrapper:has(.reviews-wrapper) {
    display: block;
  }
  .hero .hero-wrapper:has(.reviews-wrapper) .hero-content {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 575px) {
  .hero .hero-wrapper:has(.reviews-wrapper) .hero-content {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1170px) {
  .hero .hero-wrapper {
    gap: 60px;
    grid-template-columns: 1fr 460px;
  }
}
@media screen and (max-width: 992px) {
  .hero .hero-wrapper {
    grid-template-columns: 1fr 380px;
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .hero .hero-wrapper {
    grid-template-columns: 1fr;
  }
}
.hero .hero-wrapper .hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero .hero-wrapper .hero-content .hero-title {
  font-size: 51px;
  font-family: FontMedium;
  color: #FFFFFF;
  margin-bottom: 30px;
}
@media screen and (max-width: 992px) {
  .hero .hero-wrapper .hero-content .hero-title {
    font-size: 42px;
  }
}
@media screen and (max-width: 767px) {
  .hero .hero-wrapper .hero-content .hero-title {
    font-size: 32px;
  }
}
@media screen and (max-width: 575px) {
  .hero .hero-wrapper .hero-content .hero-title {
    font-size: 21px;
  }
}
.hero .hero-wrapper .hero-content .hero-title span {
  color: #E7AB40;
}
.hero .hero-wrapper .hero-content .hero-description {
  color: #FFFFFF;
  margin-bottom: 30px;
  padding-right: 70px;
}
@media screen and (max-width: 992px) {
  .hero .hero-wrapper .hero-content .hero-description {
    padding-right: 0;
  }
}
.hero .hero-wrapper .hero-image-wrapper {
  padding-right: 100px;
}
@media screen and (max-width: 1170px) {
  .hero .hero-wrapper .hero-image-wrapper {
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .hero .hero-wrapper .hero-image-wrapper {
    display: none;
  }
}
.hero .hero-wrapper .hero-image-wrapper .hero-image {
  max-height: 532px;
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.hero .hero-wrapper .reviews-wrapper .reviews-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 992px) {
  .hero .hero-wrapper .reviews-wrapper .reviews-list {
    flex-direction: row;
    gap: 0;
  }
}
.hero .hero-wrapper .reviews-wrapper .reviews-list .reviews-item {
  padding: 20px;
  border-radius: 16px;
  background: linear-gradient(109.46deg, rgba(171, 171, 171, 0.16) 1.57%, rgba(196, 196, 196, 0.02) 100%);
  border: 1px solid transparent;
  box-shadow: 0px 12px 32px 0px rgba(6, 28, 61, 0.0392156863);
  position: relative;
  max-width: 400px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 992px) {
  .hero .hero-wrapper .reviews-wrapper .reviews-list .reviews-item {
    max-width: none !important;
  }
}
@media screen and (max-width: 575px) {
  .hero .hero-wrapper .reviews-wrapper .reviews-list .reviews-item {
    padding-right: 40px;
  }
}
.hero .hero-wrapper .reviews-wrapper .reviews-list .reviews-item:before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(116.39% 236.06% at 0% 0%, rgba(255, 255, 255, 0.15) 0%, rgba(211, 211, 211, 0.05) 100%);
  -webkit-mask: linear-gradient(white, white) content-box, linear-gradient(white, white);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.hero .hero-wrapper .reviews-wrapper .reviews-list .reviews-item:nth-child(4n+1) {
  margin-left: 60px;
}
@media screen and (max-width: 992px) {
  .hero .hero-wrapper .reviews-wrapper .reviews-list .reviews-item:nth-child(4n+1) {
    margin-left: 0;
  }
}
.hero .hero-wrapper .reviews-wrapper .reviews-list .reviews-item:nth-child(4n+2) {
  margin-left: 0px;
}
.hero .hero-wrapper .reviews-wrapper .reviews-list .reviews-item:nth-child(4n+3) {
  margin-left: 150px;
}
@media screen and (max-width: 1280px) {
  .hero .hero-wrapper .reviews-wrapper .reviews-list .reviews-item:nth-child(4n+3) {
    margin-left: 50px;
  }
}
@media screen and (max-width: 992px) {
  .hero .hero-wrapper .reviews-wrapper .reviews-list .reviews-item:nth-child(4n+3) {
    margin-left: 0;
  }
}
.hero .hero-wrapper .reviews-wrapper .reviews-list .reviews-item:nth-child(4n+4) {
  margin-left: 30px;
}
@media screen and (max-width: 992px) {
  .hero .hero-wrapper .reviews-wrapper .reviews-list .reviews-item:nth-child(4n+4) {
    margin-left: 0;
  }
}
.hero .hero-wrapper .reviews-wrapper .reviews-list .reviews-item:last-child {
  opacity: 0.5;
}
@media screen and (max-width: 992px) {
  .hero .hero-wrapper .reviews-wrapper .reviews-list .reviews-item:last-child {
    opacity: 1;
  }
}
.hero .hero-wrapper .reviews-wrapper .reviews-list .reviews-item .item-head {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
}
.hero .hero-wrapper .reviews-wrapper .reviews-list .reviews-item .item-head .review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}
.hero .hero-wrapper .reviews-wrapper .reviews-list .reviews-item .item-head .reviews-head-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero .hero-wrapper .reviews-wrapper .reviews-list .reviews-item .item-head .reviews-head-info .name {
  font-family: FontBold;
  font-size: 14px;
  line-height: 24px;
  color: #C6D9B4;
}
.hero .hero-wrapper .reviews-wrapper .reviews-list .reviews-item .item-head .reviews-head-info .position {
  font-family: FontMedium;
  font-size: 13px;
  line-height: 20px;
  color: #E7AB40;
}
.hero .hero-wrapper .reviews-wrapper .reviews-list .reviews-item .candidate-logo-company {
  margin-bottom: 10px;
}
.hero .hero-wrapper .reviews-wrapper .reviews-list .reviews-item .candidate-logo-company .logo {
  max-width: 130px;
  height: 26px;
  object-fit: contain;
}
.hero .hero-wrapper .reviews-wrapper .reviews-list .reviews-item .reviews-excerpt {
  font-size: 14px;
  line-height: 18px;
  color: #FFFFFF;
}
.hero .hero-wrapper .reviews-wrapper .reviews-slider-pagination {
  padding-left: 20px;
  padding-top: 10px;
  display: none;
  align-items: center;
  gap: 4px;
}
@media screen and (max-width: 992px) {
  .hero .hero-wrapper .reviews-wrapper .reviews-slider-pagination {
    display: flex;
  }
}
.hero .hero-wrapper .reviews-wrapper .reviews-slider-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  margin: 0;
  background: linear-gradient(109.46deg, rgba(171, 171, 171, 0.46) 1.57%, rgba(196, 196, 196, 0.3) 100%);
  border: 1px solid transparent;
  box-shadow: 0px 12px 32px 0px rgba(6, 28, 61, 0.0392156863);
  position: relative;
}
.hero .hero-wrapper .reviews-wrapper .reviews-slider-pagination .swiper-pagination-bullet:before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(116.39% 236.06% at 0% 0%, rgba(255, 255, 255, 0.15) 0%, rgba(211, 211, 211, 0.05) 100%);
  -webkit-mask: linear-gradient(white, white) content-box, linear-gradient(white, white);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.hero .hero-wrapper .reviews-wrapper .reviews-slider-pagination .swiper-pagination-bullet-active {
  background: linear-gradient(109.46deg, rgb(189, 133, 33) 1.57%, rgb(189, 133, 33) 100%);
  border: 1px solid transparent;
  box-shadow: 0px 12px 32px 0px rgba(6, 28, 61, 0.0392156863);
  position: relative;
}
.hero .hero-wrapper .reviews-wrapper .reviews-slider-pagination .swiper-pagination-bullet-active:before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(116.39% 236.06% at 0% 0%, rgba(255, 255, 255, 0.15) 0%, rgba(211, 211, 211, 0.05) 100%);
  -webkit-mask: linear-gradient(white, white) content-box, linear-gradient(white, white);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.hero .hero-wrapper .hero-circle-decor {
  position: absolute;
  width: 200px;
  height: 200px;
  top: 25%;
  left: 40%;
  background-color: rgba(231, 171, 64, 0.3294117647);
  filter: blur(200px);
  z-index: -1;
}
.hero .decor-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}
.hero .decor-wrapper .hero-decor svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero .decor-wrapper .hero-decor:nth-child(1) {
  position: absolute;
  width: 200px;
  height: 200px;
  left: 37%;
  top: 56%;
}
@media screen and (max-width: 992px) {
  .hero .decor-wrapper .hero-decor:nth-child(1) {
    width: 100px;
    height: 100px;
    left: auto;
    top: auto;
    right: 5%;
    bottom: 5%;
  }
}
.hero .decor-wrapper .hero-decor:nth-child(2) {
  position: absolute;
  width: 56px;
  height: 56px;
  right: 8%;
  top: 65%;
}
@media screen and (max-width: 992px) {
  .hero .decor-wrapper .hero-decor:nth-child(2) {
    top: 14%;
  }
}
.hero .decor-wrapper .hero-decor:nth-child(3) {
  position: absolute;
  width: 66px;
  height: 66px;
  right: 8%;
  top: 20%;
}
@media screen and (max-width: 992px) {
  .hero .decor-wrapper .hero-decor:nth-child(3) {
    top: 18%;
    right: auto;
    left: 8%;
  }
}

.successes {
  padding: 55px 0;
}
.successes .successes-wrapper {
  display: grid;
  grid-template-columns: 300px 1fr;
  column-gap: 150px;
  align-items: center;
}
@media screen and (max-width: 1170px) {
  .successes .successes-wrapper {
    column-gap: 100px;
  }
}
@media screen and (max-width: 992px) {
  .successes .successes-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.successes .successes-wrapper .title-inner {
  position: relative;
  width: fit-content;
}
.successes .successes-wrapper .title-inner .title {
  z-index: 1;
  position: relative;
}
.successes .successes-wrapper .title-inner:before {
  content: "";
  position: absolute;
  width: 124px;
  height: 26px;
  bottom: 30px;
  right: -60px;
  background-image: url(".././img/successes-title-decor.svg");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
}
@media screen and (max-width: 992px) {
  .successes .successes-wrapper .title-inner:before {
    bottom: auto;
    right: 20px;
    top: -12px;
  }
}
@media screen and (max-width: 575px) {
  .successes .successes-wrapper .title-inner:before {
    width: 72px;
    height: 11px;
  }
}
.successes .successes-wrapper .title-inner span {
  color: #E7AB40;
}
.successes .successes-wrapper .successes-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 575px) {
  .successes .successes-wrapper .successes-list {
    display: flex;
    flex-wrap: nowrap;
    overflow: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-right: 20px;
    margin-right: -20px;
    padding-left: 20px;
    margin-left: -20px;
  }
  .successes .successes-wrapper .successes-list::-webkit-scrollbar {
    display: none;
  }
  .successes .successes-wrapper .successes-list::-webkit-scrollbar-track {
    display: none;
  }
  .successes .successes-wrapper .successes-list::-webkit-scrollbar-thumb {
    display: none;
  }
}
.successes .successes-wrapper .successes-list .successes-item {
  flex: 0 0 48%;
  padding: 0 40px;
  border-left: 1px solid #EFEFEF;
  scroll-snap-align: center;
}
@media screen and (max-width: 1170px) {
  .successes .successes-wrapper .successes-list .successes-item {
    padding: 0 20px;
  }
}
@media screen and (max-width: 992px) {
  .successes .successes-wrapper .successes-list .successes-item {
    padding: 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .successes .successes-wrapper .successes-list .successes-item {
    padding: 0 20px;
  }
}
@media screen and (max-width: 575px) {
  .successes .successes-wrapper .successes-list .successes-item {
    min-width: 155px;
  }
}
.successes .successes-wrapper .successes-list .successes-item:first-child {
  padding-left: 0;
  border-left: none;
}
.successes .successes-wrapper .successes-list .successes-item:last-child {
  padding-right: 0;
  border-right: none;
}
.successes .successes-wrapper .successes-list .successes-item .successes-item-title {
  font-family: FontSemiBold;
  margin-bottom: 5px;
}
@media screen and (max-width: 575px) {
  .successes .successes-wrapper .successes-list .successes-item .successes-item-title {
    font-size: 16px;
  }
}
.successes .successes-wrapper .successes-list .successes-item .successes-item-count {
  font-family: FontSemiBold;
  font-size: 38px;
  margin-bottom: 5px;
}
@media screen and (max-width: 575px) {
  .successes .successes-wrapper .successes-list .successes-item .successes-item-count {
    font-size: 28px;
  }
}
.successes .successes-wrapper .successes-list .successes-item .successes-item-description {
  font-family: FontLight;
  font-size: 16px;
}
@media screen and (max-width: 575px) {
  .successes .successes-wrapper .successes-list .successes-item .successes-item-description {
    font-size: 15px;
  }
}

.solutions .solutions-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}
@media screen and (max-width: 992px) {
  .solutions .solutions-wrapper {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
}
.solutions .solutions-wrapper .solutions-image-inner {
  position: relative;
}
.solutions .solutions-wrapper .solutions-image-inner:before {
  content: "";
  display: block;
  padding-top: 96.4882943144%;
}
.solutions .solutions-wrapper .solutions-image-inner .solutions-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
.solutions .solutions-wrapper .solutions-content {
  padding-left: 100px;
}
@media screen and (max-width: 1170px) {
  .solutions .solutions-wrapper .solutions-content {
    padding-left: 50px;
  }
}
@media screen and (max-width: 992px) {
  .solutions .solutions-wrapper .solutions-content {
    padding-left: 0;
  }
}
.solutions .solutions-wrapper .solutions-content .solutions-subtitle {
  font-family: FontSemiBold;
  font-size: 16px;
  margin-bottom: 10px;
  color: #052A22;
}
.solutions .solutions-wrapper .solutions-content .solutions-title {
  padding-bottom: 20px;
  border-bottom: 1px solid #EFEFEF;
  position: relative;
}
.solutions .solutions-wrapper .solutions-content .solutions-title:before {
  content: "";
  position: absolute;
  width: 177px;
  height: 81px;
  top: -46%;
  right: 0;
  background-image: url(".././img/solutions-decor-title.svg");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
}
@media screen and (max-width: 575px) {
  .solutions .solutions-wrapper .solutions-content .solutions-title:before {
    width: 73px;
    height: 33px;
  }
}
.solutions .solutions-wrapper .solutions-content .solutions-description {
  padding-top: 20px;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 180%;
}

.work {
  background-color: #052A22;
  position: relative;
  overflow: hidden;
}
.work:before {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  bottom: -10px;
  left: -10px;
  background-image: url(".././img/work-bg-decor.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 575px) {
  .work:before {
    width: 66px;
    height: 66px;
    bottom: auto;
    left: auto;
    top: -10px;
    right: -10px;
    transform: rotate(180deg);
  }
}
.work .work-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 100px;
  z-index: 1;
}
@media screen and (max-width: 992px) {
  .work .work-wrapper {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
}
.work .work-wrapper .work-image-inner {
  position: relative;
}
.work .work-wrapper .work-image-inner:before {
  content: "";
  display: block;
  padding-top: 94.983277592%;
}
.work .work-wrapper .work-image-inner .work-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
.work .work-wrapper .work-content .work-title {
  margin-bottom: 70px;
  position: relative;
  color: #FFFFFF;
  width: fit-content;
}
@media screen and (max-width: 992px) {
  .work .work-wrapper .work-content .work-title {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 575px) {
  .work .work-wrapper .work-content .work-title {
    margin-bottom: 36px;
    padding-top: 10px;
  }
}
.work .work-wrapper .work-content .work-title:before {
  content: "";
  position: absolute;
  width: 113px;
  height: 55px;
  bottom: -50%;
  right: -50%;
  background-image: url(".././img/work-decor-title.svg");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
  transform: translate(-50%, 0);
}
@media screen and (max-width: 992px) {
  .work .work-wrapper .work-content .work-title:before {
    width: 60px;
    height: 30px;
    bottom: -30%;
    right: -30%;
  }
}
@media screen and (max-width: 575px) {
  .work .work-wrapper .work-content .work-title:before {
    bottom: -50%;
    right: -55%;
  }
}
.work .work-wrapper .work-content .work-title:after {
  content: "";
  position: absolute;
  width: 32px;
  height: 39px;
  top: -50%;
  left: 30px;
  background-image: url(".././img/work-corona-title.svg");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
}
@media screen and (max-width: 992px) {
  .work .work-wrapper .work-content .work-title:after {
    width: 18px;
    height: 22px;
  }
}
@media screen and (max-width: 575px) {
  .work .work-wrapper .work-content .work-title:after {
    top: -20%;
    left: 12px;
  }
}
.work .work-wrapper .work-content .work-description {
  margin-bottom: 60px;
  font-size: 18px;
  font-family: FontLight;
  color: #FFFFFF;
}
@media screen and (max-width: 575px) {
  .work .work-wrapper .work-content .work-description {
    margin-bottom: 30px;
    font-size: 15px;
  }
}
.work .work-wrapper .work-content .work-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 60px;
  row-gap: 20px;
}
@media screen and (max-width: 575px) {
  .work .work-wrapper .work-content .work-list {
    column-gap: 40px;
  }
}
.work .work-wrapper .work-content .work-list .work-item .work-item-title {
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 575px) {
  .work .work-wrapper .work-content .work-list .work-item .work-item-title {
    font-size: 15px;
  }
}
.work .work-wrapper .work-content .work-list .work-item .work-item-title svg {
  width: 15px;
  height: 17px;
  object-fit: contain;
}
.work .work-decor-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.work .work-decor-wrapper .cyrcle {
  position: absolute;
  width: 255px;
  height: 255px;
  border-radius: 50%;
  background-color: rgba(231, 171, 64, 0.3294117647);
  filter: blur(500px);
}
.work .work-decor-wrapper .cyrcle:first-child {
  top: -5%;
  left: -5%;
}
.work .work-decor-wrapper .cyrcle:nth-child(2) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.work .work-decor-wrapper .cyrcle:last-child {
  bottom: -5%;
  right: -5%;
}

.candidat .solutions-wrapper .solutions-image-inner {
  order: 2;
  margin-left: 50px;
}
@media screen and (max-width: 1170px) {
  .candidat .solutions-wrapper .solutions-image-inner {
    margin-left: 20px;
  }
}
@media screen and (max-width: 992px) {
  .candidat .solutions-wrapper .solutions-image-inner {
    margin-left: 0;
  }
}
.candidat .solutions-wrapper .solutions-content {
  order: 1;
  padding-right: 100px;
  padding-left: 0;
}
@media screen and (max-width: 1170px) {
  .candidat .solutions-wrapper .solutions-content {
    padding-right: 50px;
  }
}
@media screen and (max-width: 992px) {
  .candidat .solutions-wrapper .solutions-content {
    padding-right: 0;
  }
}

.blog-block {
  background-color: #F9F9F9;
  position: relative;
  overflow: hidden;
}
.blog-block .blog-block-wrapper .title-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 78px;
}
@media screen and (max-width: 767px) {
  .blog-block .blog-block-wrapper .title-wrapper {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 575px) {
  .blog-block .blog-block-wrapper .title-wrapper {
    margin-bottom: 27px;
  }
}
.blog-block .blog-block-wrapper .title-wrapper span svg {
  width: 61px;
  height: 61px;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .blog-block .blog-block-wrapper .title-wrapper span svg {
    width: 24px;
    height: 24px;
  }
}
.blog-block .blog-block-wrapper .block-block-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}
@media screen and (max-width: 992px) {
  .blog-block .blog-block-wrapper .block-block-list {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .blog-block .blog-block-wrapper .block-block-list {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 575px) {
  .blog-block .blog-block-wrapper .block-block-list {
    margin-bottom: 20px;
  }
}
.blog-block .blog-block-wrapper .main-button {
  margin-left: auto;
}
.blog-block .blog-block-wrapper .main-button .button {
  padding: 16px 4px;
  color: #000000;
}
.blog-block .blog-block-wrapper .main-button .button .arrow-decor svg path {
  stroke: #000000;
}
.blog-block .blog-block-wrapper .main-button .button:before {
  background: transparent;
}
.blog-block .blog-block-wrapper .main-button .button:after {
  background: transparent;
}
.blog-block .blog-block-wrapper .main-button .button:hover {
  color: #E7AB40;
}
.blog-block .blog-block-wrapper .main-button .button:hover .arrow-decor svg path {
  stroke: #E7AB40;
}
.blog-block .blog-block-decor svg {
  position: absolute;
  width: 47px;
  height: 47px;
  left: 3%;
  bottom: 14%;
}
@media screen and (max-width: 992px) {
  .blog-block .blog-block-decor svg {
    width: 66px;
    height: 66px;
    left: -8px;
    bottom: -10px;
  }
}
@media screen and (max-width: 767px) {
  .blog-block .blog-block-decor svg {
    left: -20px;
    bottom: -20px;
  }
}

.application-form {
  padding: 36px 0 0;
}
.application-form .single-input {
  margin-bottom: 24px;
}
.application-form .single-input:last-child {
  margin-bottom: 26px;
}
.application-form .single-input .common-input-styling .input-title {
  margin-bottom: 13px;
  font-family: FontRegular;
  font-size: 14px;
  line-height: 1;
  transition: all 0.2s linear;
}
.application-form .single-input .common-input-styling input, .application-form .single-input .common-input-styling textarea {
  font-family: FontRegular;
  height: 50px;
  border: 1px solid #D3D3D3;
  border-radius: 5px;
  padding: 8px 24px;
  outline: none;
  transition: all 0.2s linear;
}
.application-form .single-input .common-input-styling input::placeholder, .application-form .single-input .common-input-styling textarea::placeholder {
  font-family: FontLight;
  font-size: 14px;
  color: #D3D3D3;
}
.application-form .single-input .common-input-styling input:focus-visible, .application-form .single-input .common-input-styling textarea:focus-visible {
  outline: none;
  border: 1px solid #052A22;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease-in-out;
}
.application-form .single-input .common-input-styling input:focus-visible::placeholder, .application-form .single-input .common-input-styling textarea:focus-visible::placeholder {
  color: rgba(18, 23, 37, 0.2470588235);
  transition: all 0.2s ease-in-out;
}
.application-form .single-input .common-input-styling textarea {
  min-height: 88px;
  resize: none;
}
.application-form .single-input .common-input-styling textarea::-webkit-scrollbar {
  width: 5px;
}
.application-form .single-input .common-input-styling textarea::-webkit-scrollbar-track {
  background-color: #FFFFFF;
}
.application-form .single-input .common-input-styling textarea::-webkit-scrollbar-thumb {
  border-radius: 0;
  background-color: #052A22;
}
.application-form .send-wrapper .form-checkboxes {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .application-form .send-wrapper .form-checkboxes {
    margin-bottom: 20px;
  }
}
.application-form .send-wrapper .form-checkboxes .input-privacy {
  display: flex;
  align-items: center;
}
.application-form .send-wrapper .form-checkboxes .input-privacy input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.application-form .send-wrapper .form-checkboxes .input-privacy input:checked + label::before {
  content: "";
  width: 18px;
  height: 18px;
  background-color: #052A22;
  border: 1px solid #052A22;
  background-image: url("../img/checkbox-check.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.2s linear;
}
.application-form .send-wrapper .form-checkboxes .input-privacy label {
  margin-bottom: 0;
  padding: 0 0 2px 30px;
  position: relative;
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  cursor: pointer;
}
.application-form .send-wrapper .form-checkboxes .input-privacy label:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 2px;
  background: #FFFFFF;
  border: 1px solid #D3D3D3;
  flex-shrink: 0;
  flex-grow: 0;
  transition: all 0.2s linear;
}
.application-form .send-wrapper .form-checkboxes .input-privacy label a {
  color: #000000;
  text-decoration: underline;
  transition: all 0.2s linear;
}
.application-form .send-wrapper .form-checkboxes .input-privacy label a:hover {
  color: #E7AB40;
}
.application-form .send-wrapper .form-checkboxes .input-privacy label p {
  font-family: FontRegular;
  font-size: 14px;
  line-height: 20px;
  color: #000000;
}
.application-form .send-wrapper .button-wrapper .submit-inner {
  width: 100%;
}
.application-form .send-wrapper .button-wrapper .submit-inner .default-button {
  padding: 18px 22px;
  background-color: #052A22;
  color: #FFFFFF;
  width: 100%;
  border: none;
  border-radius: 5px;
  transition: all 0.2s linear;
}
@media screen and (max-width: 575px) {
  .application-form .send-wrapper .button-wrapper .submit-inner .default-button {
    padding: 11px 22px;
  }
}
.application-form .send-wrapper .button-wrapper .submit-inner .default-button:hover {
  background-color: #E7AB40;
  color: #000000;
}
.application-form .send-wrapper .button-wrapper .lds-facebook {
  visibility: hidden;
  opacity: 0;
  display: inline-block;
  position: relative;
  width: 0;
  height: 0;
}
.application-form .send-wrapper .button-wrapper .lds-facebook div {
  display: inline-block;
  position: absolute;
  left: 6px;
  width: 13px;
  background: #052A22;
  animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}
.application-form .send-wrapper .button-wrapper .lds-facebook div:nth-child(1) {
  left: 6px;
  animation-delay: -0.24s;
}
.application-form .send-wrapper .button-wrapper .lds-facebook div:nth-child(2) {
  left: 26px;
  animation-delay: -0.12s;
}
.application-form .send-wrapper .button-wrapper .lds-facebook div:nth-child(3) {
  left: 45px;
  animation-delay: 0;
}
@keyframes lds-facebook {
  0% {
    top: 6px;
    height: 51px;
  }
  50%, 100% {
    top: 19px;
    height: 26px;
  }
}
.application-form .send-wrapper .button-wrapper .preloader-visible {
  visibility: visible;
  opacity: 1;
  width: 64px;
  height: 64px;
}
.application-form .send-wrapper .button-wrapper .decor-button {
  position: absolute;
  width: 58px;
  height: 66px;
  right: 0;
  top: -10px;
  transform: translate(50%, -100%);
}
@media screen and (max-width: 767px) {
  .application-form .send-wrapper .button-wrapper .decor-button {
    display: none;
  }
}
.application-form .send-wrapper .button-wrapper .decor-button svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.application-form .warning-validation > .input-title {
  color: #b20000 !important;
}
.application-form .warning-validation > input, .application-form .warning-validation > textarea {
  border: 1px solid #b20000 !important;
}
.application-form .warning-validation > input::placeholder, .application-form .warning-validation > textarea::placeholder {
  color: #b20000 !important;
}
.application-form .warning-validation > label {
  color: #b20000 !important;
}
.application-form .warning-validation > label:before {
  border: 1px solid #b20000 !important;
}
.application-form .warning-validation > .common-input-styling > .input-title {
  color: #b20000 !important;
}
.application-form .warning-validation > .common-input-styling > input, .application-form .warning-validation > .common-input-styling > textarea {
  border: 1px solid #b20000 !important;
}
.application-form .warning-validation > .common-input-styling > input::placeholder, .application-form .warning-validation > .common-input-styling > textarea::placeholder {
  color: #b20000 !important;
}
.application-form .warning-validation > .common-input-styling > label {
  color: #b20000 !important;
}
.application-form .warning-validation > .common-input-styling > label:before {
  border: 1px solid #b20000 !important;
}

.application-form-success-submit {
  margin-top: 20px;
}
.application-form-success-submit .success-image {
  margin-bottom: 20px;
}
.application-form-success-submit .success-content .success-title {
  margin-bottom: 25px;
}

@media screen and (max-width: 992px) {
  .application-form .single-input .common-input-styling input {
    height: 50px;
  }
}
.contacts-block .contacts-block-wrapper {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 100px;
}
@media screen and (max-width: 1280px) {
  .contacts-block .contacts-block-wrapper {
    gap: 50px;
  }
}
@media screen and (max-width: 1170px) {
  .contacts-block .contacts-block-wrapper {
    grid-template-columns: 450px 1fr;
  }
}
@media screen and (max-width: 992px) {
  .contacts-block .contacts-block-wrapper {
    grid-template-columns: 1fr;
  }
}
.contacts-block .contacts-block-wrapper .contacts-block-form {
  padding: 45px;
  background-color: #F9F9F9;
}
@media screen and (max-width: 992px) {
  .contacts-block .contacts-block-wrapper .contacts-block-form {
    order: 2;
  }
}
@media screen and (max-width: 767px) {
  .contacts-block .contacts-block-wrapper .contacts-block-form {
    padding: 20px;
  }
}
.contacts-block .contacts-block-wrapper .contacts-block-form .nav-tabs {
  gap: 20px;
  border: none;
}
.contacts-block .contacts-block-wrapper .contacts-block-form .nav-tabs .nav-item .nav-link {
  border: 1px solid #D3D3D3;
  padding: 10px 18px;
  color: #000000;
  border-radius: 5px;
  font-size: 14px;
}
.contacts-block .contacts-block-wrapper .contacts-block-form .nav-tabs .nav-item .nav-link:hover {
  background-color: #E7AB40;
  border: 1px solid #E7AB40;
}
.contacts-block .contacts-block-wrapper .contacts-block-form .nav-tabs .nav-item .active {
  background-color: #052A22;
  color: #FFFFFF;
  border: 1px solid #052A22;
}
.contacts-block .contacts-block-wrapper .contacts-block-form .nav-tabs .nav-item .active:hover {
  background-color: #052A22;
  border: 1px solid #052A22;
}
.contacts-block .contacts-block-wrapper .contacts-block-form .tab-content {
  padding-top: 20px;
}
.contacts-block .contacts-block-wrapper .contacts-block-form .tab-content .tab-pane .form-title-wrapper {
  padding-bottom: 40px;
  border-bottom: 1px solid #D3D3D3;
  position: relative;
}
.contacts-block .contacts-block-wrapper .contacts-block-form .tab-content .tab-pane .form-title-wrapper .title {
  margin-bottom: 8px;
}
.contacts-block .contacts-block-wrapper .contacts-block-form .tab-content .tab-pane .form-title-wrapper .description {
  font-size: 16px;
  font-family: FontLight;
}
.contacts-block .contacts-block-wrapper .contacts-block-form .tab-content .tab-pane .form-title-wrapper .decor {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 35px;
  height: 35px;
  transform: translate(-50%, 50%);
}
@media screen and (max-width: 767px) {
  .contacts-block .contacts-block-wrapper .contacts-block-form .tab-content .tab-pane .form-title-wrapper .decor {
    width: 28px;
    height: 28px;
  }
}
.contacts-block .contacts-block-wrapper .contacts-block-form .tab-content .tab-pane .form-title-wrapper .decor:before {
  content: "";
  position: absolute;
  background-color: #F9F9F9;
  border-radius: 50%;
  width: 35px;
  height: 35px;
}
.contacts-block .contacts-block-wrapper .contacts-block-form .tab-content .tab-pane .form-title-wrapper .decor svg {
  position: absolute;
  width: 26px;
  height: 26px;
  object-fit: contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 992px) {
  .contacts-block .contacts-block-wrapper .contacts-block-content:has(.map) {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
  }
}
@media screen and (max-width: 992px) {
  .contacts-block .contacts-block-wrapper .contacts-block-content {
    order: 1;
  }
}
.contacts-block .contacts-block-wrapper .contacts-block-content .content-head-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1280px) {
  .contacts-block .contacts-block-wrapper .contacts-block-content .content-head-list {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 992px) {
  .contacts-block .contacts-block-wrapper .contacts-block-content .content-head-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .contacts-block .contacts-block-wrapper .contacts-block-content .content-head-list {
    grid-template-columns: 1fr;
  }
}
.contacts-block .contacts-block-wrapper .contacts-block-content .content-head-list .contacts-item {
  padding: 20px 20px 24px;
  border: 1px solid #F9F9F9;
}
@media screen and (max-width: 767px) {
  .contacts-block .contacts-block-wrapper .contacts-block-content .content-head-list .contacts-item {
    padding: 20px;
  }
}
.contacts-block .contacts-block-wrapper .contacts-block-content .content-head-list .contacts-item .title-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}
@media screen and (max-width: 767px) {
  .contacts-block .contacts-block-wrapper .contacts-block-content .content-head-list .contacts-item .title-wrapper {
    gap: 20px;
  }
}
.contacts-block .contacts-block-wrapper .contacts-block-content .content-head-list .contacts-item .title-wrapper .title {
  font-size: 16px;
  font-family: FontMedium;
  color: #052A22;
}
.contacts-block .contacts-block-wrapper .contacts-block-content .content-head-list .contacts-item .title-wrapper svg {
  width: 41px;
  height: 41px;
  object-fit: contain;
}
.contacts-block .contacts-block-wrapper .contacts-block-content .content-head-list .contacts-item .description {
  font-size: 18px;
  font-family: FontLight;
}
@media screen and (max-width: 767px) {
  .contacts-block .contacts-block-wrapper .contacts-block-content .content-head-list .contacts-item .description {
    font-size: 16px;
  }
}
@media screen and (max-width: 575px) {
  .contacts-block .contacts-block-wrapper .contacts-block-content .content-head-list .contacts-item .description {
    font-size: 14px;
  }
}
.contacts-block .contacts-block-wrapper .contacts-block-content .content-head-list .contacts-item .description a {
  font-size: 21px;
  font-family: FontMedium;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .contacts-block .contacts-block-wrapper .contacts-block-content .content-head-list .contacts-item .description a {
    font-size: 16px;
  }
}
@media screen and (max-width: 575px) {
  .contacts-block .contacts-block-wrapper .contacts-block-content .content-head-list .contacts-item .description a {
    font-size: 14px;
  }
}
.contacts-block .contacts-block-wrapper .contacts-block-content .content-head-list .contacts-item .description a:hover {
  color: #E7AB40;
}
@media screen and (max-width: 992px) {
  .contacts-block .contacts-block-wrapper .content-foot {
    order: 3;
  }
}
.contacts-block .contacts-block-wrapper .content-foot .foot-title {
  margin-bottom: 26px;
}
@media screen and (max-width: 575px) {
  .contacts-block .contacts-block-wrapper .content-foot .foot-title {
    font-family: FontMedium;
    font-size: 24px;
  }
}
.contacts-block .contacts-block-wrapper .content-foot .contacts-text-inner {
  position: relative;
  overflow: hidden;
}
.contacts-block .contacts-block-wrapper .content-foot .contacts-text-inner:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  height: 200px;
  width: 100%;
  z-index: 1;
  transition: all 0.2s linear;
  pointer-events: none;
}
.contacts-block .contacts-block-wrapper .content-foot .contacts-text-inner .contacts-text {
  width: 100%;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  resize: none;
  position: relative;
  overflow-y: auto;
  padding-right: 20px;
  max-height: 340px;
  height: 100%;
  transition: max-height 0.3s linear;
}
.contacts-block .contacts-block-wrapper .content-foot .contacts-text-inner .contacts-text::-webkit-scrollbar {
  width: 4px;
}
.contacts-block .contacts-block-wrapper .content-foot .contacts-text-inner .contacts-text::-webkit-scrollbar-track {
  background: transparent;
}
.contacts-block .contacts-block-wrapper .content-foot .contacts-text-inner .contacts-text::-webkit-scrollbar-thumb {
  border-radius: 50px;
  background: #D3D3D3;
}
.contacts-block .contacts-block-wrapper .content-foot .contacts-text-inner .contacts-text:focus {
  outline: none;
}
.contacts-block .contacts-block-wrapper .content-foot .contacts-text-inner:hover:before {
  height: 0px;
}
.contacts-block .contacts-block-wrapper .content-foot .contacts-text-inner:hover .contacts-text {
  max-height: 1000px;
}
.contacts-block .contacts-block-wrapper .map-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
}
@media screen and (max-width: 992px) {
  .contacts-block .contacts-block-wrapper .map-wrapper {
    height: 400px;
  }
}
@media screen and (max-width: 575px) {
  .contacts-block .contacts-block-wrapper .map-wrapper {
    height: 250px;
  }
}
.contacts-block .contacts-block-wrapper .map-wrapper iframe {
  position: absolute;
  width: 100% !important;
  top: 0;
  left: 0;
  object-fit: cover;
  height: 100%;
}

.footer {
  background-color: #052A22;
  position: relative;
  overflow: hidden;
}
.footer .footer-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 40px 0;
}
@media screen and (max-width: 992px) {
  .footer .footer-wrapper {
    flex-direction: column-reverse;
    align-items: baseline;
    gap: 30px;
  }
}
.footer .footer-wrapper .copyright-info {
  font-family: FontRegular;
  font-size: 16px;
  color: #FFFFFF;
}
@media screen and (max-width: 575px) {
  .footer .footer-wrapper .copyright-info {
    font-family: FontLight;
    font-size: 14px;
  }
}
.footer .footer-wrapper .menu-wrapper .navigation-menu {
  margin-left: auto;
  margin-right: auto;
}
.footer .footer-wrapper .menu-wrapper .navigation-menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 992px) {
  .footer .footer-wrapper .menu-wrapper .navigation-menu ul {
    flex-direction: column;
    align-items: baseline;
    gap: 12px;
  }
}
.footer .footer-wrapper .menu-wrapper .navigation-menu ul li {
  padding: 0 30px;
  position: relative;
}
@media screen and (max-width: 992px) {
  .footer .footer-wrapper .menu-wrapper .navigation-menu ul li {
    padding: 0 0 0 13px;
  }
}
.footer .footer-wrapper .menu-wrapper .navigation-menu ul li a {
  font-family: FontRegular;
  font-size: 16px;
  color: #FFFFFF;
}
@media screen and (max-width: 575px) {
  .footer .footer-wrapper .menu-wrapper .navigation-menu ul li a {
    font-family: FontLight;
    font-size: 14px;
  }
}
.footer .footer-wrapper .menu-wrapper .navigation-menu ul li a:hover {
  color: #E7AB40;
}
.footer .footer-wrapper .menu-wrapper .navigation-menu ul li:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1215686275);
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
@media screen and (max-width: 992px) {
  .footer .footer-wrapper .menu-wrapper .navigation-menu ul li:before {
    width: 8px;
    height: 1px;
    background-color: #E7AB40;
    right: auto;
    left: 0;
  }
}
.footer .footer-wrapper .menu-wrapper .navigation-menu ul li:first-child {
  padding-left: 0;
}
@media screen and (max-width: 992px) {
  .footer .footer-wrapper .menu-wrapper .navigation-menu ul li:first-child {
    padding-left: 13px;
  }
}
.footer .footer-wrapper .menu-wrapper .navigation-menu ul li:last-child {
  padding-right: 0;
}
@media screen and (max-width: 992px) {
  .footer .footer-wrapper .menu-wrapper .navigation-menu ul li:last-child {
    padding-left: 13px;
  }
}
.footer .footer-wrapper .menu-wrapper .navigation-menu ul li:last-child:before {
  display: none;
}
@media screen and (max-width: 992px) {
  .footer .footer-wrapper .menu-wrapper .navigation-menu ul li:last-child:before {
    display: block;
  }
}
.footer .footer-wrapper .footer-logo {
  display: none;
  align-items: center;
  gap: 5px;
}
@media screen and (max-width: 992px) {
  .footer .footer-wrapper .footer-logo {
    display: flex;
  }
}
.footer .footer-wrapper .footer-logo img {
  max-width: 43px;
  width: 100%;
  height: 43px;
  object-fit: contain;
}
@media screen and (max-width: 575px) {
  .footer .footer-wrapper .footer-logo img {
    max-width: 30px;
    height: 30px;
  }
}
.footer .footer-wrapper .footer-logo .site-title {
  font-family: FontBold;
  font-size: 21px;
  color: #FFFFFF;
  text-transform: uppercase;
}
@media screen and (max-width: 575px) {
  .footer .footer-wrapper .footer-logo .site-title {
    font-size: 18px;
  }
}
.footer .footer-wrapper .footer-logo:hover .site-title {
  color: #E7AB40;
}
.footer .decor-footer {
  display: none;
}
@media screen and (max-width: 992px) {
  .footer .decor-footer {
    display: block;
    position: absolute;
    width: 50%;
    height: 100%;
    right: 0;
    top: 0;
  }
  .footer .decor-footer svg {
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    height: 100%;
    object-fit: contain;
  }
}

.wysiwyg-styles .wp-caption {
  width: 100% !important;
}
.wysiwyg-styles .wp-caption-text {
  font-size: 18px;
  line-height: 18px;
  margin: 10px 0 0;
  color: #000;
}
.wysiwyg-styles > img, .wysiwyg-styles > p > img, .wysiwyg-styles .wp-caption > img {
  width: 100%;
  max-height: 480px;
  border-radius: 12px;
  object-fit: cover;
}
.wysiwyg-styles > img, .wysiwyg-styles .wp-caption {
  margin-bottom: 50px;
  object-fit: cover;
}
.wysiwyg-styles > p {
  margin-bottom: 24px;
  padding-left: 0 !important;
}
.wysiwyg-styles > p .alignleft, .wysiwyg-styles > p .alignright {
  width: auto !important;
  max-width: 51% !important;
  height: auto !important;
  object-fit: cover !important;
}
.wysiwyg-styles > p .alignleft {
  float: left;
  margin: 0 47px 30px 0;
}
.wysiwyg-styles > p .alignright {
  float: right;
  margin: 0 0 30px 30px;
}
.wysiwyg-styles > p strong {
  font-family: FontMedium;
}
.wysiwyg-styles > ul {
  list-style: none;
  padding: 0;
  margin-bottom: 50px;
  padding-left: 0;
  left: 26px;
  position: relative;
  margin-right: 26px;
}
.wysiwyg-styles > ul li {
  padding-left: 18px;
  position: relative;
  /*&:before {
    content: "";
    position: absolute;
    top: 11px;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 100%;
    background-color: $text_color;
  }*/
}
.wysiwyg-styles > ul li::marker {
  content: "•";
  font-size: 24px;
  font-family: FontRegular;
  line-height: 100%;
  color: #000000;
}
.wysiwyg-styles > p, .wysiwyg-styles > ul li {
  font-family: FontLight;
  font-size: 16px;
  line-height: 120%;
  padding-left: 14px;
  color: #000000;
}
.wysiwyg-styles > p a:not(.default-button), .wysiwyg-styles > ul li a:not(.default-button) {
  position: relative;
  text-decoration: underline;
  color: #000000;
  transition: all 0.2s linear;
}
.wysiwyg-styles > p a:not(.default-button):hover, .wysiwyg-styles > ul li a:not(.default-button):hover {
  color: #052A22;
}
.wysiwyg-styles > h2 {
  font-family: FontBold;
  font-size: 21px;
  color: #000000;
  margin-bottom: 24px;
  line-height: 120%;
}
.wysiwyg-styles > h3 {
  font-family: FontBold;
  font-size: 18px;
  line-height: 120%;
  color: #000000;
  margin-bottom: 40px;
}
.wysiwyg-styles > h4 {
  font-family: FontBold;
  font-size: 16px;
  line-height: 120%;
  color: #000000;
  margin-bottom: 40px;
}
.wysiwyg-styles > a, .wysiwyg-styles p span a {
  color: #052A22 !important;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.2s linear;
  font-family: FontRegular;
  line-height: 120%;
}
.wysiwyg-styles > a > img, .wysiwyg-styles p span a > img {
  margin-right: 8px;
}
.wysiwyg-styles > a:hover, .wysiwyg-styles p span a:hover {
  color: #E7AB40 !important;
}
.wysiwyg-styles .wysiwyg-button {
  margin-bottom: 30px;
}
.wysiwyg-styles > *:first-child {
  margin-top: 0 !important;
}
.wysiwyg-styles > *:last-child {
  margin-bottom: 0 !important;
}
.wysiwyg-styles table {
  width: 100%;
  border: none;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1);
}
.wysiwyg-styles table tbody tr {
  background-color: #EAF6F3;
}
.wysiwyg-styles table tbody tr td {
  font-family: FontBold;
  font-size: 16px;
  color: #566177;
  padding-left: 40px;
  min-width: 50%;
  width: 50%;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-right: 6px;
}
.wysiwyg-styles table tbody tr td:nth-child(2n) {
  font-family: FontBold;
  padding-left: 0;
}
.wysiwyg-styles table tbody tr:nth-child(2n) {
  background-color: #FFFFFF;
}

.wysiwyg-styles-small > p, .wysiwyg-styles-small > ul li {
  font-size: 16px;
  line-height: 21px;
  margin-bottom: 25px;
}

.video-wysiwyg {
  margin: 35px 0;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  width: 100%;
}
.video-wysiwyg:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.video-wysiwyg iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wysiwyg-gallery {
  margin-bottom: 30px;
}
.wysiwyg-gallery .single-gallery-element {
  transform: perspective(1000px);
  -webkit-transform: perspective(1000px);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  perspective: 1000px;
  -webkit-perspective: 1000px;
  width: calc((100% - 105px) / 4.001);
  margin: 10px 35px 10px 0;
  border-radius: 10px;
  transition: all 0.2s linear;
}
.wysiwyg-gallery .single-gallery-element > a > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wysiwyg-gallery .single-gallery-element:nth-of-type(4n), .wysiwyg-gallery .single-gallery-element:nth-last-of-type(1) {
  margin: 10px 0 10px;
}
.wysiwyg-gallery .single-gallery-element:before {
  content: "";
  display: block;
  padding-top: 90.9375%;
}
.wysiwyg-gallery .single-gallery-element .additional-number {
  font-size: 18px;
  line-height: 30px;
  right: 0;
  bottom: 0;
  transform: translate(-20px, -14px);
  -webkit-transform: translate(-20px, -14px);
  font-family: FontBold;
  color: #fff;
}
.wysiwyg-gallery .single-gallery-element .darkness-effect {
  background: rgba(0, 72, 211, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.wysiwyg-gallery .single-gallery-element:hover {
  transform: translateY(-5px) perspective(1000px);
  -webkit-transform: translateY(-5px) perspective(1000px);
}

.wp-video {
  margin-bottom: 30px;
}

@media screen and (max-width: 1024px) {
  .wysiwyg-styles > img, .wysiwyg-styles .wp-caption {
    margin-bottom: 30px;
  }
  .wysiwyg-styles > p {
    margin-bottom: 20px;
  }
  .wysiwyg-styles > p > img {
    margin-bottom: 10px;
  }
  .wysiwyg-styles > p .alignleft {
    margin: 0 20px 20px 0;
  }
  .wysiwyg-styles > p .alignright {
    margin: 0 0 20px 20px;
  }
  .wysiwyg-styles > ul {
    margin-bottom: 20px;
  }
  .wysiwyg-styles > ul li {
    background-position: 0 10px;
  }
  .wysiwyg-styles > p, .wysiwyg-styles > ul li {
    font-size: 16px;
    line-height: 28px;
  }
  .wysiwyg-styles > h2, .wysiwyg-styles > h3, .wysiwyg-styles > h4 {
    margin-bottom: 10px;
  }
  .wysiwyg-styles > h2 {
    font-size: 30px;
    line-height: 36px;
  }
  .wysiwyg-styles > h3 {
    font-size: 18px;
    line-height: 26px;
  }
  .wysiwyg-styles > h4 {
    font-size: 16px;
    line-height: 24px;
  }
  .wysiwyg-styles-small > p, .wysiwyg-styles-small > ul li {
    line-height: 21px;
  }
  .wysiwyg-gallery .single-gallery-element {
    width: calc((100% - 45px) / 4.001);
    margin: 0 15px 15px 0 !important;
  }
  .wysiwyg-gallery .single-gallery-element:nth-of-type(4n), .wysiwyg-gallery .single-gallery-element:nth-last-of-type(1) {
    margin: 0 0 15px !important;
  }
}
@media screen and (max-width: 992px) {
  .wysiwyg-gallery {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .wysiwyg-styles > p .alignleft, .wysiwyg-styles > p .alignright {
    float: none !important;
    max-width: none !important;
    width: 100% !important;
    margin: 0 0 20px !important;
  }
  .wysiwyg-styles > h2 {
    font-size: 28px;
  }
  .wysiwyg-styles > ul {
    margin-left: -10px;
  }
  .wysiwyg-gallery {
    justify-content: center;
    -webkit-justify-content: center;
  }
  .wysiwyg-gallery .single-gallery-element {
    width: calc((100% - 15px) / 2.001);
    margin: 0 15px 15px 0 !important;
  }
  .wysiwyg-gallery .single-gallery-element:nth-of-type(2n), .wysiwyg-gallery .single-gallery-element:nth-last-of-type(1) {
    margin: 0 0 15px !important;
  }
}
@media screen and (max-width: 575px) {
  .wysiwyg-styles > p {
    margin-bottom: 16px;
  }
  .wysiwyg-styles > p, .wysiwyg-styles > ul li {
    font-size: 15px;
    line-height: 21px;
  }
  .wysiwyg-styles > h2 {
    font-size: 16px;
  }
  .wysiwyg-styles table tbody tr td {
    padding-left: 10px;
    padding-right: 10px;
  }
  .wysiwyg-styles table tbody tr td:nth-child(2n) {
    font-family: FontBold;
    padding-left: 0;
    padding-right: 10px;
  }
  .wysiwyg-styles table tbody tr:nth-child(2n) {
    background-color: #FFFFFF;
  }
}
@media screen and (max-width: 500px) {
  .wysiwyg-gallery .single-gallery-element {
    width: 100%;
    margin: 0 0 15px 0 !important;
  }
  .video-wysiwyg:before {
    padding-top: 57%;
  }
}
.image-modal-window .modal {
  padding: 0 !important;
  overflow-y: scroll;
  text-align: center;
}
.image-modal-window .modal.show {
  display: flex !important;
  display: -webkit-flex !important;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
}
.image-modal-window .modal-dialog {
  max-width: 1500px;
  background-color: transparent;
  margin: 0;
  max-height: 100%;
}
.image-modal-window .modal-dialog .modal-content {
  background-color: transparent;
  border: none !important;
  padding: 0;
}
.image-modal-window .modal-dialog .modal-content .align-modal-helper {
  padding: 15px !important;
  height: 100%;
  /* .image {
  width: 100%;
  height: 100%;
  object-fit: contain;
   } */
}
.image-modal-window .modal-dialog .modal-content .slide-image, .image-modal-window .modal-dialog .modal-content .iframe-wrapper {
  max-height: 80vh;
  max-width: 100%;
  object-fit: contain;
  background-color: transparent;
}
.image-modal-window .modal-dialog .modal-content .slide-image {
  width: auto;
  height: auto;
  padding: 0;
}
.image-modal-window .modal-dialog .modal-content .iframe-wrapper {
  width: 1200px;
  position: relative;
  margin: 0 auto;
}
.image-modal-window .modal-dialog .modal-content .iframe-wrapper:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.image-modal-window .modal-dialog .modal-content .iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}
.image-modal-window .modal-dialog .modal-content .carousel-inner, .image-modal-window .modal-dialog .modal-content .carousel-item {
  background-color: transparent !important;
}
.image-modal-window .carousel-control-prev, .image-modal-window .carousel-control-next {
  width: 50px;
  height: 50px;
  font-size: 20px;
  background-color: #E7AB40;
  color: #052A22;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  opacity: 0.75;
  transition: all 0.2s linear;
}
.image-modal-window .carousel-control-prev:hover, .image-modal-window .carousel-control-next:hover {
  opacity: 1;
  transition: all 0.2s linear;
}
.image-modal-window .carousel-control-prev {
  margin-left: 10px;
}
.image-modal-window .carousel-control-next {
  margin-right: 10px;
}
.image-modal-window .modal-cross {
  top: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  font-size: 20px;
  background-color: #E7AB40;
  opacity: 0.75;
  padding: 0;
  border: none;
  cursor: pointer;
  color: #052A22;
}
.image-modal-window .modal-cross img {
  width: 20px !important;
  height: 20px !important;
}
.image-modal-window .modal-cross:hover {
  opacity: 1;
}
.image-modal-window .modal-cross:focus {
  outline: none;
}

.modal-backdrop {
  opacity: 0.8 !important;
}

.darkness-effect {
  background-color: #052A22;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.additional-number {
  font-size: 13px;
  color: #FFFFFF;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: FontBold;
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .image-modal-window .modal {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
@media screen and (max-width: 1024px) {
  .image-modal-window .modal {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .image-modal-window .align-modal-helper {
    padding: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .image-modal-window .modal {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .image-modal-window .carousel-control-prev, .image-modal-window .carousel-control-next {
    opacity: 0.75;
  }
  .image-modal-window .carousel-control-prev:hover, .image-modal-window .carousel-control-next:hover {
    opacity: 0.75;
  }
  .image-modal-window .carousel-control-prev:focus, .image-modal-window .carousel-control-next:focus {
    opacity: 0.75;
  }
  .image-modal-window .modal-cross {
    opacity: 1;
  }
  .image-modal-window .modal-cross:hover {
    opacity: 1;
  }
  .image-modal-window .modal-cross:focus {
    opacity: 1;
  }
}
.references-block {
  background-color: #E7AB40;
  background-image: url(".././img/reference-bg-block-min.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.references-block .references-wrapper .references-head {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}
@media screen and (max-width: 992px) {
  .references-block .references-wrapper .references-head {
    grid-template-columns: 1fr;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 575px) {
  .references-block .references-wrapper .references-head {
    margin-bottom: 25px;
  }
}
.references-block .references-wrapper .references-head .title-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.references-block .references-wrapper .references-head .title-inner .title {
  color: #052A22;
  position: relative;
  width: fit-content;
}
.references-block .references-wrapper .references-head .title-inner .title:before {
  content: "";
  background-image: url(".././img/references-title-decor.svg");
  background-repeat: no-repeat;
  background-size: 145px 30px;
  position: absolute;
  top: 0;
  right: 0;
  width: 145px;
  height: 30px;
  transform: translate(40%, -100%);
}
@media screen and (max-width: 575px) {
  .references-block .references-wrapper .references-head .title-inner .title:before {
    background-size: 60px 30px;
    width: 60px;
    height: 30px;
    transform: translate(100%, -30%) rotate(25deg);
  }
}
.references-block .references-wrapper .references-head .title-inner .slider-buttons-navigation {
  display: flex;
  align-items: center;
  gap: 5px;
}
.references-block .references-wrapper .references-slider .swiper-wrapper .swiper-slide {
  transition: box-shadow 0.2s linear;
}
.references-block .references-wrapper .references-slider .swiper-wrapper .swiper-slide:hover {
  box-shadow: 0px 3px 8px 3px rgba(0, 0, 0, 0.1803921569);
}
.references-block .references-wrapper .references-slider .swiper-wrapper .swiper-slide .slider-image-link {
  position: relative;
  display: block;
}
.references-block .references-wrapper .references-slider .swiper-wrapper .swiper-slide .slider-image-link:before {
  content: "";
  display: block;
  padding-top: 141.9047619048%;
}
.references-block .references-wrapper .references-slider .swiper-wrapper .swiper-slide .slider-image-link .gallery-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefits .benefits-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}
@media screen and (max-width: 992px) {
  .benefits .benefits-wrapper {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
}
.benefits .benefits-wrapper .benefits-image-inner {
  position: relative;
}
.benefits .benefits-wrapper .benefits-image-inner:before {
  content: "";
  display: block;
  padding-top: 96.4882943144%;
}
.benefits .benefits-wrapper .benefits-image-inner .benefits-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
.benefits .benefits-wrapper .benefits-content {
  padding-left: 100px;
}
@media screen and (max-width: 1170px) {
  .benefits .benefits-wrapper .benefits-content {
    padding-left: 50px;
  }
}
@media screen and (max-width: 992px) {
  .benefits .benefits-wrapper .benefits-content {
    padding-left: 0;
  }
}
.benefits .benefits-wrapper .benefits-content .benefits-title {
  padding-bottom: 20px;
  border-bottom: 1px solid #EFEFEF;
  position: relative;
}
.benefits .benefits-wrapper .benefits-content .benefits-title:before {
  content: "";
  position: absolute;
  width: 177px;
  height: 81px;
  top: -46%;
  right: 0;
  background-image: url(".././img/solutions-decor-title.svg");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
}
@media screen and (max-width: 575px) {
  .benefits .benefits-wrapper .benefits-content .benefits-title:before {
    width: 73px;
    height: 33px;
  }
}
.benefits .benefits-wrapper .benefits-content .benefits-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 25px;
  row-gap: 30px;
  padding-top: 20px;
}
@media screen and (max-width: 575px) {
  .benefits .benefits-wrapper .benefits-content .benefits-list {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 0;
  }
}
@media screen and (max-width: 575px) {
  .benefits .benefits-wrapper .benefits-content .benefits-list .benefits-item {
    display: flex;
    gap: 20px;
    border: 1px solid #EFEFEF;
    padding: 20px;
  }
  .benefits .benefits-wrapper .benefits-content .benefits-list .benefits-item:not(:first-child) {
    border-top: none;
  }
}
.benefits .benefits-wrapper .benefits-content .benefits-list .benefits-item .item-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #052A22;
  position: relative;
  margin-bottom: 10px;
}
.benefits .benefits-wrapper .benefits-content .benefits-list .benefits-item .item-icon-wrapper .item-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  object-fit: contain;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 575px) {
  .benefits .benefits-wrapper .benefits-content .benefits-list .benefits-item .item-content {
    width: calc(100% - 52px);
  }
}
.benefits .benefits-wrapper .benefits-content .benefits-list .benefits-item .item-content .item-title {
  font-family: FontMedium;
  font-size: 21px;
  margin-bottom: 10px;
}
.benefits .benefits-wrapper .benefits-content .benefits-list .benefits-item .item-content .item-description {
  font-family: FontLight;
}

.interest-block {
  background-color: #052A22;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1070px) {
  .interest-block {
    padding-bottom: 0;
  }
}
.interest-block:before {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  bottom: -10px;
  left: -10px;
  background-image: url(".././img/work-bg-decor.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 575px) {
  .interest-block:before {
    width: 66px;
    height: 66px;
    bottom: auto;
    left: auto;
    top: -10px;
    right: -10px;
    transform: rotate(180deg);
  }
}
.interest-block .interest-content .interest-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 100px;
  z-index: 1;
}
@media screen and (max-width: 1070px) {
  .interest-block .interest-content .interest-wrapper {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
}
.interest-block .interest-content .interest-wrapper .interest-content-inner {
  padding: 80px 0;
}
@media screen and (max-width: 1170px) {
  .interest-block .interest-content .interest-wrapper .interest-content-inner {
    padding: 60px 0;
  }
}
@media screen and (max-width: 767px) {
  .interest-block .interest-content .interest-wrapper .interest-content-inner {
    padding: 50px 0;
  }
}
@media screen and (max-width: 575px) {
  .interest-block .interest-content .interest-wrapper .interest-content-inner {
    padding: 30px 0;
  }
}
.interest-block .interest-content .interest-wrapper .interest-content-inner .interest-title {
  margin-bottom: 70px;
  position: relative;
  color: #FFFFFF;
  width: fit-content;
  padding-right: 30px;
}
@media screen and (max-width: 992px) {
  .interest-block .interest-content .interest-wrapper .interest-content-inner .interest-title {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 575px) {
  .interest-block .interest-content .interest-wrapper .interest-content-inner .interest-title {
    margin-bottom: 36px;
    padding-top: 10px;
  }
}
.interest-block .interest-content .interest-wrapper .interest-content-inner .interest-title:before {
  content: "";
  position: absolute;
  width: 39px;
  height: 63px;
  bottom: 0;
  right: 0;
  background-image: url(".././img/interest/decor-title.svg");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
  transform: translate(-50%, 0);
}
@media screen and (max-width: 992px) {
  .interest-block .interest-content .interest-wrapper .interest-content-inner .interest-title:before {
    width: 60px;
    height: 30px;
    bottom: -30%;
    right: -30%;
  }
}
@media screen and (max-width: 575px) {
  .interest-block .interest-content .interest-wrapper .interest-content-inner .interest-title:before {
    bottom: -50%;
    right: -55%;
  }
}
.interest-block .interest-content .interest-wrapper .interest-content-inner .interest-description {
  margin-bottom: 60px;
  font-size: 18px;
  font-family: FontLight;
  color: #FFFFFF;
}
@media screen and (max-width: 575px) {
  .interest-block .interest-content .interest-wrapper .interest-content-inner .interest-description {
    margin-bottom: 30px;
    font-size: 15px;
  }
}
.interest-block .interest-content .interest-wrapper .interest-content-inner .interest-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 60px;
  row-gap: 20px;
}
@media screen and (max-width: 575px) {
  .interest-block .interest-content .interest-wrapper .interest-content-inner .interest-list {
    column-gap: 40px;
  }
}
.interest-block .interest-content .interest-wrapper .interest-content-inner .interest-list .interest-item .interest-item-title {
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 575px) {
  .interest-block .interest-content .interest-wrapper .interest-content-inner .interest-list .interest-item .interest-item-title {
    font-size: 15px;
  }
}
.interest-block .interest-content .interest-wrapper .interest-content-inner .interest-list .interest-item .interest-item-title svg {
  width: 15px;
  height: 17px;
  object-fit: contain;
}
.interest-block .interest-content .interest-main-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  z-index: 1;
  background-color: #E7AB40;
  background-image: url(".././img/reference-bg-block-min.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
}
@media screen and (max-width: 1070px) {
  .interest-block .interest-content .interest-main-list {
    position: relative;
    width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .interest-block .interest-content .interest-main-list {
    grid-template-columns: 1fr;
  }
}
.interest-block .interest-content .interest-main-list .interest-item {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 1170px) {
  .interest-block .interest-content .interest-main-list .interest-item {
    padding: 40px;
  }
}
.interest-block .interest-content .interest-main-list .interest-item:nth-child(2) {
  border-left: 1px solid rgba(5, 42, 34, 0.11);
}
.interest-block .interest-content .interest-main-list .interest-item:nth-child(3) {
  border-top: 1px solid rgba(5, 42, 34, 0.11);
}
.interest-block .interest-content .interest-main-list .interest-item:last-child {
  border-left: 1px solid rgba(5, 42, 34, 0.11);
  border-top: 1px solid rgba(5, 42, 34, 0.11);
}
@media screen and (max-width: 575px) {
  .interest-block .interest-content .interest-main-list .interest-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid rgba(5, 42, 34, 0.11);
  }
  .interest-block .interest-content .interest-main-list .interest-item:not(:first-child) {
    border-top: none;
  }
  .interest-block .interest-content .interest-main-list .interest-item:nth-child(2) {
    border-left: none;
  }
  .interest-block .interest-content .interest-main-list .interest-item:nth-child(3) {
    border-top: none;
  }
  .interest-block .interest-content .interest-main-list .interest-item:last-child {
    border-left: none;
    border-top: none;
    border-bottom: none;
  }
}
.interest-block .interest-content .interest-main-list .interest-item .item-icon-wrapper {
  position: relative;
  margin-bottom: 10px;
}
@media screen and (max-width: 575px) {
  .interest-block .interest-content .interest-main-list .interest-item .item-icon-wrapper {
    display: flex;
    gap: 20px;
  }
}
.interest-block .interest-content .interest-main-list .interest-item .item-icon-wrapper .item-icon {
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin-bottom: 10px;
}
@media screen and (max-width: 575px) {
  .interest-block .interest-content .interest-main-list .interest-item .item-icon-wrapper .item-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 0;
  }
}
.interest-block .interest-content .interest-main-list .interest-item .item-icon-wrapper .item-title {
  font-family: FontMedium;
  font-size: 21px;
}
.interest-block .interest-content .interest-main-list .interest-item .item-description {
  font-family: FontLight;
}
.interest-block .interest-decor-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.interest-block .interest-decor-wrapper .cyrcle {
  position: absolute;
  width: 255px;
  height: 255px;
  border-radius: 50%;
  background-color: rgba(231, 171, 64, 0.3294117647);
  filter: blur(500px);
}
.interest-block .interest-decor-wrapper .cyrcle:first-child {
  top: -5%;
  left: -5%;
}
.interest-block .interest-decor-wrapper .cyrcle:nth-child(2) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.interest-block .interest-decor-wrapper .cyrcle:last-child {
  bottom: -5%;
  right: -5%;
}

.faq-block {
  background-color: #F9F9F9;
  position: relative;
}
.faq-block .title-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 78px;
}
@media screen and (max-width: 767px) {
  .faq-block .title-wrapper {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 575px) {
  .faq-block .title-wrapper {
    margin-bottom: 30px;
  }
}
.faq-block .title-wrapper span svg {
  width: 61px;
  height: 61px;
  object-fit: contain;
}
@media screen and (max-width: 992px) {
  .faq-block .title-wrapper span svg {
    display: none;
  }
}
.faq-block .faq-content-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px;
}
@media screen and (max-width: 1170px) {
  .faq-block .faq-content-wrapper {
    gap: 30px;
  }
}
@media screen and (max-width: 992px) {
  .faq-block .faq-content-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.faq-block .faq-content-wrapper .accordion {
  border-radius: 0;
}
.faq-block .faq-content-wrapper .accordion .accordion-item {
  border: none;
  border-radius: 0;
  border-bottom: 2px solid #F9F9F9;
}
.faq-block .faq-content-wrapper .accordion .accordion-item .accordion-header {
  border-bottom: 2px solid #F9F9F9;
}
.faq-block .faq-content-wrapper .accordion .accordion-item .accordion-header .accordion-button {
  font-family: FontRegular;
  font-size: 16px;
  line-height: 120%;
  border: none;
  border-radius: 0;
  padding: 12px 30px;
}
.faq-block .faq-content-wrapper .accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
  box-shadow: none;
  color: #000000;
}
.faq-block .faq-content-wrapper .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-color: transparent;
  outline: none;
  border: none;
  box-shadow: none;
  color: #000000;
}
.faq-block .faq-content-wrapper .accordion .accordion-item .accordion-collapse .accordion-body {
  font-family: FontLight;
  font-size: 14px;
  padding: 20px 30px;
}
.faq-block .faq-content-wrapper .faq-image-wrapper {
  position: relative;
}
.faq-block .faq-content-wrapper .faq-image-wrapper:before {
  content: "";
  display: block;
  padding-top: 75.7929883139%;
}
.faq-block .faq-content-wrapper .faq-image-wrapper .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.faq-block .faq-decor {
  position: absolute;
  bottom: 5%;
  left: 3%;
  width: 47px;
  height: 47px;
}
.faq-block .faq-decor svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 992px) {
  .faq-block .faq-decor {
    bottom: auto;
    left: auto;
    top: 30px;
    right: 0;
    transform: translate(50%, 0);
  }
}

/* ARTICLES */
.blog-post {
  background-color: #FFFFFF;
}
@media screen and (max-width: 992px) {
  .blog-post {
    display: flex;
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .blog-post {
    display: block;
  }
}
.blog-post .image-wrapper {
  display: block;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 992px) {
  .blog-post .image-wrapper {
    min-width: 280px;
  }
}
@media screen and (max-width: 767px) {
  .blog-post .image-wrapper {
    min-width: auto;
  }
}
.blog-post .image-wrapper:before {
  content: "";
  display: block;
  padding-top: 57.2115384615%;
}
@media screen and (max-width: 992px) {
  .blog-post .image-wrapper:before {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .blog-post .image-wrapper:before {
    display: block;
  }
}
.blog-post .image-wrapper .article-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  transition: all 0.2s linear;
}
@media screen and (max-width: 992px) {
  .blog-post .image-wrapper .article-image {
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  .blog-post .image-wrapper .article-image {
    position: absolute;
  }
}
.blog-post .article-content {
  padding: 20px 18px;
}
.blog-post .article-content .article-content-head .title-inner .title {
  font-family: FontMedium;
  font-size: 18px;
  margin-bottom: 14px;
  color: #000000;
}
.blog-post .article-content .article-content-head .description {
  font-family: FontLight;
  font-size: 16px;
  margin-bottom: 14px;
}
.blog-post .article-content .article-foot-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #000000;
  font-family: FontMedium;
  font-size: 16px;
  border-top: 1px solid #EDEDED;
  padding-top: 14px;
}
.blog-post .article-content .article-foot-link .arrow-article svg {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.blog-post .article-content .article-foot-link .arrow-article svg path {
  transition: all 0.2s linear;
}
.blog-post:hover .image-wrapper .article-image {
  transform: scale(1.02);
}
.blog-post:hover .article-content .article-content-head .title-inner .title {
  color: #E7AB40;
}
.blog-post:hover .article-content .article-foot-link {
  color: #E7AB40;
}
.blog-post:hover .article-content .article-foot-link .arrow-article svg path {
  stroke: #E7AB40;
}

/* PAGES */
.blog-page .hero {
  padding: 170px 0 90px;
}
@media screen and (max-width: 992px) {
  .blog-page .hero {
    padding: 155px 0 77px;
  }
}
@media screen and (max-width: 575px) {
  .blog-page .hero {
    padding: 125px 0 57px;
  }
}
.blog-page .hero .hero-wrapper {
  display: block;
}
.blog-page .hero .hero-wrapper .hero-content .hero-title {
  text-align: center;
  margin-bottom: 0;
}
.blog-page .hero .decor-wrapper {
  max-width: 1336px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.blog-page .hero .decor-wrapper .hero-decor:nth-child(1) {
  position: absolute;
  width: 200px;
  height: 200px;
  left: auto;
  right: 0;
  top: auto;
  bottom: -50px;
}
@media screen and (max-width: 992px) {
  .blog-page .hero .decor-wrapper .hero-decor:nth-child(1) {
    width: 100px;
    height: 100px;
    left: auto;
    top: auto;
    right: 5%;
    bottom: 5%;
  }
}
.blog-page .blog-block {
  background-color: transparent;
}
.blog-page .blog-block .blog-block-wrapper .block-block-list .blog-post {
  background-color: #F9F9F9;
}
.blog-page .blog-block .blog-block-wrapper .main-button {
  margin-right: auto;
}
.blog-page .blog-block .blog-block-wrapper .main-button .button {
  padding: 16px 26px;
  color: #FFFFFF;
}
.blog-page .blog-block .blog-block-wrapper .main-button .button .arrow-decor svg path {
  stroke: #FFFFFF;
}
.blog-page .blog-block .blog-block-wrapper .main-button .button:before {
  background: #E7AB40;
}
.blog-page .blog-block .blog-block-wrapper .main-button .button:after {
  background: #052A22;
}
.blog-page .blog-block .blog-block-wrapper .main-button .button:hover {
  color: #FFFFFF;
}
.blog-page .blog-block .blog-block-wrapper .main-button .button:hover .arrow-decor svg path {
  stroke: #FFFFFF;
}

.single-page .single-hero {
  padding: 207px 0 127px;
  position: relative;
}
@media screen and (max-width: 575px) {
  .single-page .single-hero {
    padding: 133px 0 65px;
  }
}
.single-page .single-hero .title-wrapper {
  position: relative;
  z-index: 2;
}
.single-page .single-hero .title-wrapper .title {
  font-size: 51px;
  color: #FFFFFF;
  text-align: center;
  max-width: 1114px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1170px) {
  .single-page .single-hero .title-wrapper .title {
    font-size: 28px;
  }
}
@media screen and (max-width: 992px) {
  .single-page .single-hero .title-wrapper .title {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .single-page .single-hero .title-wrapper .title {
    font-size: 21px;
  }
}
@media screen and (max-width: 575px) {
  .single-page .single-hero .title-wrapper .title {
    font-size: 18px;
  }
}
.single-page .single-hero .single-hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.34) 1.2%, rgba(5, 42, 34, 0.7) 70.2%);
  z-index: 1;
}
.single-page .single-hero .single-hero-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: 0;
}
.single-page .single-content {
  padding: 50px 0;
}
@media screen and (max-width: 767px) {
  .single-page .single-content {
    padding: 40px 0;
  }
}
@media screen and (max-width: 575px) {
  .single-page .single-content {
    padding: 20px 0;
  }
}

@media screen and (max-width: 575px) {
  .contacts-page .hero {
    padding: 112px 0 32px;
  }
}
@media screen and (max-width: 992px) {
  .contacts-page .hero .hero-wrapper .hero-content .hero-title {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .contacts-page .hero .hero-wrapper .hero-image-wrapper {
    display: block;
  }
}

.about-us-page .solutions .solutions-wrapper {
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .about-us-page .solutions .solutions-wrapper {
    gap: 20px;
  }
}
@media screen and (max-width: 575px) {
  .about-us-page .solutions .solutions-wrapper {
    gap: 0;
  }
}
.about-us-page .solutions .solutions-wrapper .solutions-image-inner {
  order: 2;
  margin-right: 127px;
}
@media screen and (max-width: 1280px) {
  .about-us-page .solutions .solutions-wrapper .solutions-image-inner {
    margin-right: 0;
  }
}
.about-us-page .solutions .solutions-wrapper .solutions-image-inner:before {
  padding-top: 122.2457627119%;
}
.about-us-page .solutions .solutions-wrapper .solutions-content {
  order: 1;
  padding-left: 0;
}
.about-us-page .solutions .solutions-wrapper .solutions-content .solutions-title {
  border-bottom: none;
}

@media screen and (max-width: 575px) {
  .employer-page {
    padding: 0 0 30px;
  }
}
.employer-page .partners {
  padding: 55px 0;
}
.employer-page .partners .partners-wrapper {
  display: grid;
  grid-template-columns: 300px 1fr;
  column-gap: 150px;
  align-items: center;
}
@media screen and (max-width: 1170px) {
  .employer-page .partners .partners-wrapper {
    column-gap: 100px;
  }
}
@media screen and (max-width: 992px) {
  .employer-page .partners .partners-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.employer-page .partners .partners-wrapper .title-inner {
  position: relative;
  width: fit-content;
}
.employer-page .partners .partners-wrapper .title-inner .title {
  z-index: 1;
  position: relative;
}
.employer-page .partners .partners-wrapper .title-inner:before {
  content: "";
  position: absolute;
  width: 124px;
  height: 26px;
  bottom: 30px;
  right: -60px;
  background-image: url(".././img/successes-title-decor.svg");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
}
@media screen and (max-width: 992px) {
  .employer-page .partners .partners-wrapper .title-inner:before {
    bottom: auto;
    right: 20px;
    top: -12px;
  }
}
@media screen and (max-width: 575px) {
  .employer-page .partners .partners-wrapper .title-inner:before {
    width: 72px;
    height: 11px;
  }
}
.employer-page .partners .partners-wrapper .title-inner span {
  color: #E7AB40;
}
.employer-page .partners .partners-wrapper .partners-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 1170px) {
  .employer-page .partners .partners-wrapper .partners-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 575px) {
  .employer-page .partners .partners-wrapper .partners-list {
    display: flex;
    flex-wrap: nowrap;
    overflow: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-right: 20px;
    margin-right: -20px;
    padding-left: 20px;
    margin-left: -20px;
  }
  .employer-page .partners .partners-wrapper .partners-list::-webkit-scrollbar {
    display: none;
  }
  .employer-page .partners .partners-wrapper .partners-list::-webkit-scrollbar-track {
    display: none;
  }
  .employer-page .partners .partners-wrapper .partners-list::-webkit-scrollbar-thumb {
    display: none;
  }
}
.employer-page .partners .partners-wrapper .partners-list .partners-item {
  padding: 0 20px;
  scroll-snap-align: center;
  text-align: center;
}
@media screen and (max-width: 1170px) {
  .employer-page .partners .partners-wrapper .partners-list .partners-item {
    padding: 0 20px;
  }
}
@media screen and (max-width: 992px) {
  .employer-page .partners .partners-wrapper .partners-list .partners-item {
    padding: 0 30px;
  }
}
@media screen and (max-width: 767px) {
  .employer-page .partners .partners-wrapper .partners-list .partners-item {
    padding: 0;
  }
}
@media screen and (max-width: 575px) {
  .employer-page .partners .partners-wrapper .partners-list .partners-item {
    min-width: 155px;
  }
}
.employer-page .partners .partners-wrapper .partners-list .partners-item .partners-item-logo {
  max-width: 200px;
  width: 100%;
  height: 45px;
  object-fit: contain;
}
@media screen and (max-width: 575px) {
  .employer-page .business-lines {
    padding-bottom: 0;
  }
}
.employer-page .business-lines .business-lines-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}
@media screen and (max-width: 992px) {
  .employer-page .business-lines .business-lines-wrapper {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
}
.employer-page .business-lines .business-lines-wrapper .business-lines-content {
  padding-right: 100px;
}
@media screen and (max-width: 1170px) {
  .employer-page .business-lines .business-lines-wrapper .business-lines-content {
    padding-right: 50px;
  }
}
@media screen and (max-width: 992px) {
  .employer-page .business-lines .business-lines-wrapper .business-lines-content {
    padding-right: 0;
  }
}
.employer-page .business-lines .business-lines-wrapper .business-lines-content .business-lines-subtitle {
  font-family: FontSemiBold;
  font-size: 16px;
  margin-bottom: 10px;
  color: #052A22;
}
.employer-page .business-lines .business-lines-wrapper .business-lines-content .business-lines-title {
  padding-bottom: 20px;
  border-bottom: 1px solid #EFEFEF;
  position: relative;
}
.employer-page .business-lines .business-lines-wrapper .business-lines-content .business-lines-title:before {
  content: "";
  position: absolute;
  width: 177px;
  height: 81px;
  top: -46%;
  right: 0;
  background-image: url(".././img/solutions-decor-title.svg");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
}
@media screen and (max-width: 575px) {
  .employer-page .business-lines .business-lines-wrapper .business-lines-content .business-lines-title:before {
    width: 73px;
    height: 33px;
  }
}
.employer-page .business-lines .business-lines-wrapper .business-lines-content .business-lines-description {
  padding-top: 20px;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 180%;
}
.employer-page .business-lines .business-lines-wrapper .business-lines-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  z-index: 1;
  background-color: #052A22;
}
@media screen and (max-width: 1070px) {
  .employer-page .business-lines .business-lines-wrapper .business-lines-list {
    position: relative;
    width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .employer-page .business-lines .business-lines-wrapper .business-lines-list {
    grid-template-columns: 1fr;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
  }
}
.employer-page .business-lines .business-lines-wrapper .business-lines-list .business-lines-item {
  padding: 30px;
}
.employer-page .business-lines .business-lines-wrapper .business-lines-list .business-lines-item:nth-child(2) {
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}
.employer-page .business-lines .business-lines-wrapper .business-lines-list .business-lines-item:nth-child(3) {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.employer-page .business-lines .business-lines-wrapper .business-lines-list .business-lines-item:last-child {
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
@media screen and (max-width: 575px) {
  .employer-page .business-lines .business-lines-wrapper .business-lines-list .business-lines-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .employer-page .business-lines .business-lines-wrapper .business-lines-list .business-lines-item:not(:first-child) {
    border-top: none;
  }
  .employer-page .business-lines .business-lines-wrapper .business-lines-list .business-lines-item:nth-child(2) {
    border-left: none;
  }
  .employer-page .business-lines .business-lines-wrapper .business-lines-list .business-lines-item:nth-child(3) {
    border-top: none;
  }
  .employer-page .business-lines .business-lines-wrapper .business-lines-list .business-lines-item:last-child {
    border-left: none;
    border-top: none;
    border-bottom: none;
  }
}
.employer-page .business-lines .business-lines-wrapper .business-lines-list .business-lines-item .item-icon-wrapper {
  position: relative;
  margin-bottom: 20px;
}
.employer-page .business-lines .business-lines-wrapper .business-lines-list .business-lines-item .item-icon-wrapper .item-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-bottom: 20px;
}
.employer-page .business-lines .business-lines-wrapper .business-lines-list .business-lines-item .item-icon-wrapper .item-title {
  font-family: FontMedium;
  font-size: 18px;
  color: #FFFFFF;
  margin-bottom: 20px;
}
.employer-page .business-lines .business-lines-wrapper .business-lines-list .business-lines-item .item-description > p {
  font-family: FontLight;
  color: #FFFFFF;
  font-size: 14px;
  margin-bottom: 20px;
}
.employer-page .customers {
  background-color: #E7AB40;
  position: relative;
}
.employer-page .customers .customers-wrapper {
  margin-bottom: 80px;
}
@media screen and (max-width: 992px) {
  .employer-page .customers .customers-wrapper {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 575px) {
  .employer-page .customers .customers-wrapper {
    margin-bottom: 30px;
  }
}
.employer-page .customers .customers-wrapper .title-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.employer-page .customers .customers-wrapper .title-inner .title {
  color: #052A22;
  position: relative;
  width: fit-content;
}
.employer-page .customers .customers-wrapper .title-inner .title:before {
  content: "";
  background-image: url(".././img/references-title-decor.svg");
  background-repeat: no-repeat;
  background-size: 145px 30px;
  position: absolute;
  top: 0;
  right: 0;
  width: 145px;
  height: 30px;
  transform: translate(40%, -100%);
}
@media screen and (max-width: 575px) {
  .employer-page .customers .customers-wrapper .title-inner .title:before {
    background-size: 60px 30px;
    width: 60px;
    height: 30px;
    transform: translate(100%, -30%) rotate(25deg);
  }
}
.employer-page .customers .customers-wrapper .title-inner .customers-buttons-navigation {
  display: flex;
  align-items: center;
  gap: 5px;
}
.employer-page .customers .customers-wrapper .title-inner .customers-buttons-navigation .swiper-button-arrow svg {
  width: 53px;
  height: 20px;
  object-fit: contain;
  transition: all 0.2s linear;
}
.employer-page .customers .customers-wrapper .title-inner .customers-buttons-navigation .swiper-button-arrow svg:hover {
  transform: scale(1.05);
}
@media screen and (max-width: 575px) {
  .employer-page .customers .customers-wrapper .title-inner .customers-buttons-navigation .swiper-button-arrow svg {
    width: 30px;
    height: 10px;
  }
}
.employer-page .customers .customers-list-wrapper .swiper-wrapper .customers-slide {
  background-color: #052A22;
  padding: 30px;
}
.employer-page .customers .customers-list-wrapper .swiper-wrapper .customers-slide .logo {
  max-width: 125px;
  width: 100%;
  height: 26px;
  margin-bottom: 30px;
}
.employer-page .customers .customers-list-wrapper .swiper-wrapper .customers-slide .logo svg path {
  fill: #FFFFFF;
}
.employer-page .customers .customers-list-wrapper .swiper-wrapper .customers-slide .description {
  font-family: FontLight;
  font-size: 14px;
  color: #FFFFFF;
}
.employer-page .customers .customers-decor {
  position: absolute;
  bottom: 5%;
  left: 3%;
  width: 47px;
  height: 47px;
}
.employer-page .customers .customers-decor svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 992px) {
  .employer-page .customers .customers-decor {
    display: none;
  }
}

.candidate-page .benefits .benefits-wrapper .benefits-image-inner {
  order: 2;
}
@media screen and (max-width: 992px) {
  .candidate-page .benefits .benefits-wrapper .benefits-image-inner {
    order: 1;
  }
}
.candidate-page .benefits .benefits-wrapper .benefits-content {
  order: 1;
  padding-left: 0;
  padding-right: 100px;
}
@media screen and (max-width: 1170px) {
  .candidate-page .benefits .benefits-wrapper .benefits-content {
    padding-right: 50px;
  }
}
@media screen and (max-width: 992px) {
  .candidate-page .benefits .benefits-wrapper .benefits-content {
    padding-right: 0;
    order: 2;
  }
}
.candidate-page .steps {
  background-color: #052A22;
  padding-bottom: 0;
}
.candidate-page .steps .title-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 78px;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .candidate-page .steps .title-wrapper {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 575px) {
  .candidate-page .steps .title-wrapper {
    margin-bottom: 30px;
  }
}
.candidate-page .steps .title-wrapper .title {
  position: relative;
  width: fit-content;
}
.candidate-page .steps .title-wrapper .title svg {
  position: absolute;
  right: 0;
  top: 50%;
  width: 35px;
  height: 38px;
  object-fit: contain;
  transform: translate(calc(100% + 10px), -50%);
}
@media screen and (max-width: 992px) {
  .candidate-page .steps .title-wrapper .title svg {
    width: 21px;
    height: 22px;
  }
}
@media screen and (max-width: 575px) {
  .candidate-page .steps .title-wrapper .title svg {
    display: none;
  }
}
.candidate-page .steps .title-wrapper span svg {
  width: 61px;
  height: 61px;
  object-fit: contain;
}
@media screen and (max-width: 992px) {
  .candidate-page .steps .title-wrapper span svg {
    width: 20px;
    height: 20px;
  }
}
.candidate-page .steps .steps-content {
  counter-reset: resultcount;
}
.candidate-page .steps .steps-content .steps-row {
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}
@media screen and (max-width: 992px) {
  .candidate-page .steps .steps-content .steps-row {
    border-top: none;
  }
}
.candidate-page .steps .steps-content .steps-row .steps-row-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 992px) {
  .candidate-page .steps .steps-content .steps-row .steps-row-list {
    grid-template-columns: 1fr;
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
  }
}
.candidate-page .steps .steps-content .steps-row .steps-row-list .step-item {
  padding: 75px 60px;
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
  counter-increment: resultcount;
}
@media screen and (max-width: 1170px) {
  .candidate-page .steps .steps-content .steps-row .steps-row-list .step-item {
    padding: 75px 30px 30px;
  }
}
@media screen and (max-width: 992px) {
  .candidate-page .steps .steps-content .steps-row .steps-row-list .step-item {
    border-right: none;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    padding: 20px;
  }
  .candidate-page .steps .steps-content .steps-row .steps-row-list .step-item:first-child {
    padding-left: 20px !important;
  }
}
.candidate-page .steps .steps-content .steps-row .steps-row-list .step-item:first-child {
  padding-left: 0;
}
.candidate-page .steps .steps-content .steps-row .steps-row-list .step-item:last-child {
  border-right: none;
}
.candidate-page .steps .steps-content .steps-row .steps-row-list .step-item .count {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.candidate-page .steps .steps-content .steps-row .steps-row-list .step-item .count:before {
  content: counter(resultcount);
  font-family: FontLight;
  font-size: 52px;
  color: rgba(255, 255, 255, 0.11);
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-28px, 15px);
}
@media screen and (max-width: 992px) {
  .candidate-page .steps .steps-content .steps-row .steps-row-list .step-item .count:before {
    font-size: 40px;
  }
}
@media screen and (max-width: 575px) {
  .candidate-page .steps .steps-content .steps-row .steps-row-list .step-item .count:before {
    font-size: 28px;
    transform: translate(-28px, 20px);
  }
}
.candidate-page .steps .steps-content .steps-row .steps-row-list .step-item .step-item-head .step-item-icon {
  margin-bottom: 12px;
}
.candidate-page .steps .steps-content .steps-row .steps-row-list .step-item .step-item-head .step-item-icon svg {
  width: 58px;
  height: 58px;
  object-fit: contain;
}
@media screen and (max-width: 575px) {
  .candidate-page .steps .steps-content .steps-row .steps-row-list .step-item .step-item-head .step-item-icon svg {
    width: 38px;
    height: 38px;
  }
}
.candidate-page .steps .steps-content .steps-row .steps-row-list .step-item .step-item-head .step-item-title {
  font-family: FontMedium;
  font-size: 21px;
  color: #E7AB40;
  margin-bottom: 12px;
}
.candidate-page .steps .steps-content .steps-row .steps-row-list .step-item .step-item-description {
  font-family: FontLight;
  color: #FFFFFF;
}
.candidate-page .feedback {
  position: relative;
}
.candidate-page .feedback .feedback-wrapper {
  display: flex;
  align-items: center;
  gap: 100px;
}
@media screen and (max-width: 992px) {
  .candidate-page .feedback .feedback-wrapper {
    flex-direction: column;
    gap: 30px;
  }
}
@media screen and (max-width: 575px) {
  .candidate-page .feedback .feedback-wrapper {
    gap: 20px;
  }
}
.candidate-page .feedback .feedback-wrapper .feedback-content {
  width: 50%;
  z-index: 3;
}
@media screen and (max-width: 992px) {
  .candidate-page .feedback .feedback-wrapper .feedback-content {
    width: 100%;
  }
}
.candidate-page .feedback .feedback-wrapper .feedback-content .feedback-title {
  padding-bottom: 20px;
  border-bottom: 1px solid #EFEFEF;
  position: relative;
  z-index: 1;
}
.candidate-page .feedback .feedback-wrapper .feedback-content .feedback-title:before {
  content: "";
  position: absolute;
  width: 177px;
  height: 81px;
  top: -46%;
  right: 0;
  background-image: url(".././img/solutions-decor-title.svg");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
}
@media screen and (max-width: 575px) {
  .candidate-page .feedback .feedback-wrapper .feedback-content .feedback-title:before {
    width: 73px;
    height: 33px;
  }
}
.candidate-page .feedback .feedback-wrapper .feedback-content .feedback-description {
  padding-top: 20px;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 180%;
}
.candidate-page .feedback .feedback-wrapper .feedback-slider {
  width: 50%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 992px) {
  .candidate-page .feedback .feedback-wrapper .feedback-slider {
    width: 100%;
  }
}
.candidate-page .feedback .feedback-wrapper .feedback-slider .swiper-wrapper .feedback-item {
  background-color: #F9F9F9;
  transition: all 0.2s linear;
}
.candidate-page .feedback .feedback-wrapper .feedback-slider .swiper-wrapper .feedback-item .image-wrapper {
  position: relative;
  overflow: hidden;
}
.candidate-page .feedback .feedback-wrapper .feedback-slider .swiper-wrapper .feedback-item .image-wrapper:before {
  content: "";
  display: block;
  padding-top: 50%;
}
.candidate-page .feedback .feedback-wrapper .feedback-slider .swiper-wrapper .feedback-item .image-wrapper .image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  transition: all 0.2s linear;
}
.candidate-page .feedback .feedback-wrapper .feedback-slider .swiper-wrapper .feedback-item .feedback-item-text {
  padding: 30px;
}
@media screen and (max-width: 575px) {
  .candidate-page .feedback .feedback-wrapper .feedback-slider .swiper-wrapper .feedback-item .feedback-item-text {
    padding: 20px;
  }
}
.candidate-page .feedback .feedback-wrapper .feedback-slider .swiper-wrapper .feedback-item .feedback-item-text .feedback-title-wrapper {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.candidate-page .feedback .feedback-wrapper .feedback-slider .swiper-wrapper .feedback-item .feedback-item-text .feedback-title-wrapper .feedback-item-title {
  font-family: FontBold;
  font-size: 21px;
  color: #000000;
  transition: all 0.2s linear;
}
.candidate-page .feedback .feedback-wrapper .feedback-slider .swiper-wrapper .feedback-item .feedback-item-text .feedback-title-wrapper .feedback-video-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: FontBold;
  font-size: 14px;
  color: #000000;
  transition: all 0.2s linear;
}
.candidate-page .feedback .feedback-wrapper .feedback-slider .swiper-wrapper .feedback-item .feedback-item-text .feedback-title-wrapper .feedback-video-inner svg {
  width: 19px;
  height: 19px;
  object-fit: contain;
}
.candidate-page .feedback .feedback-wrapper .feedback-slider .swiper-wrapper .feedback-item .feedback-item-text .feedback-title-wrapper .feedback-video-inner svg path {
  transition: all 0.2s linear;
}
.candidate-page .feedback .feedback-wrapper .feedback-slider .swiper-wrapper .feedback-item .feedback-item-text .feedback-item-description {
  font-family: FontLight;
  color: #000000;
}
.candidate-page .feedback .feedback-wrapper .feedback-slider .swiper-wrapper .feedback-item:hover {
  box-shadow: 0px 0px 13px 6px rgba(0, 0, 0, 0.0901960784);
}
.candidate-page .feedback .feedback-wrapper .feedback-slider .swiper-wrapper .feedback-item:hover .image-wrapper .image {
  transform: scale(1.02);
}
.candidate-page .feedback .feedback-wrapper .feedback-slider .swiper-wrapper .feedback-item:hover .feedback-item-text .feedback-item-title {
  color: #E7AB40;
}
.candidate-page .feedback .feedback-wrapper .feedback-slider .swiper-wrapper .feedback-item:hover .feedback-item-text .feedback-video-inner {
  color: #E7AB40;
}
.candidate-page .feedback .feedback-wrapper .feedback-slider .swiper-wrapper .feedback-item:hover .feedback-item-text .feedback-video-inner svg path {
  stroke: #E7AB40;
}
.candidate-page .feedback .clear {
  position: absolute;
  width: 50vw;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 96%, rgba(255, 255, 255, 0) 100%);
  z-index: 2;
}
@media screen and (max-width: 992px) {
  .candidate-page .feedback .clear {
    display: none;
  }
}

.default-page .hero {
  padding: 170px 0 90px;
}
@media screen and (max-width: 992px) {
  .default-page .hero {
    padding: 155px 0 77px;
  }
}
@media screen and (max-width: 575px) {
  .default-page .hero {
    padding: 125px 0 57px;
  }
}
.default-page .hero .hero-wrapper {
  display: block;
}
.default-page .hero .hero-wrapper .hero-content .hero-title {
  text-align: center;
  margin-bottom: 0;
}
.default-page .hero .decor-wrapper {
  max-width: 1336px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.default-page .hero .decor-wrapper .hero-decor:nth-child(1) {
  position: absolute;
  width: 200px;
  height: 200px;
  left: auto;
  right: 0;
  top: auto;
  bottom: -50px;
}
@media screen and (max-width: 992px) {
  .default-page .hero .decor-wrapper .hero-decor:nth-child(1) {
    width: 100px;
    height: 100px;
    left: auto;
    top: auto;
    right: 5%;
    bottom: 5%;
  }
}

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