@font-face {
  font-family: "Museo Sans Cyrl";
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Museo-Sans-Cyr/MuseoSansCyrl-500.woff2") format("woff2"), url("../fonts/Museo-Sans-Cyr/MuseoSansCyrl-500.woff") format("woff");
}
* {
  font-family: "Museo Sans Cyrl", sans-serif;
}
*:focus {
  outline: -webkit-focus-ring-color auto 0px;
}

html,
body {
  width: 100%;
  min-height: 100%;
  font-family: "Museo Sans Cyrl", sans-serif;
  font-size: 0.8rem;
}
@media screen and (max-width: 992px) {
  html,
  body {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 768px) {
  html,
  body {
    font-size: 0.7rem;
  }
}
@media screen and (max-width: 576px) {
  html,
  body {
    font-size: 0.5rem;
  }
}
@media screen and (max-width: 360px) {
  html,
  body {
    font-size: 0.4rem;
  }
}

body {
  height: 100%;
  width: 100%;
  white-space: wrap;
  overflow-x: hidden;
  scroll-behavior: smooth;
  cursor: default;
  overflow-y: auto;
  font-size: 16px;
  font-weight: normal;
  padding: 0;
  margin: 0;
}

main {
  margin-top: 50px;
}

#scr-by {
  font-family: Avenir, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
  display: flex;
  justify-content: center;
  flex-direction: column;
  min-height: 100vh;
}

[theme=dark] #scr-by {
  color: #fff;
  background-color: #333;
}

a {
  text-decoration: none !important;
}

.link-blog {
  font-size: 1.06rem;
  cursor: pointer;
  padding: 0;
  margin: 0;
  color: #37515f;
}
.link-blog:hover {
  color: #00a4e6;
}

.row {
  display: flex;
  justify-content: center;
}

.btn__top {
  color: #00a4e6;
  font-size: 3rem;
  z-index: 999;
}
.btn__top:hover {
  color: #00a4e6;
}
@media screen and (max-width: 992px) {
  .btn__top {
    font-size: 1.43rem;
  }
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  text-align: center;
}

.page-item .page-link {
  border: none;
  color: #333;
}

.page-item.active .page-link {
  background-color: #00a4e6;
  border: none;
}

.img-border {
  overflow: hidden;
  border-radius: 2.5rem;
}

#cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background-color: #f5f7fa;
  color: #1e96c8;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
  font-size: 16px;
  z-index: 9999;
}

.cookie-notice-container {
  padding: 0;
  padding-bottom: 0.625rem;
}

#cookie-notice .cn-text-container {
  padding: 1rem;
}

#cookie-notice a {
  color: #fff;
  text-decoration: none;
}

#cookie-notice a:hover {
  color: #000000;
}

#cookie-notice .cn-buttons-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-direction: row-reverse;
}

#cookie-notice .cn-button:not(.cn-button-custom) {
  background-color: #00a4e6;
  border: 1px solid #fff;
  color: #fff;
  min-width: 100px;
  outline: none;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
  border-radius: 0;
}

#cookie-notice .cn-button:hover {
  background-color: #1e96c8 !important;
  color: #fff !important;
}

#cookie-notice .cn-accept {
  background-color: #f5f7fa !important;
}

#cn-close-notice {
  display: none;
}

.container {
  width: 90%;
  padding-right: 10px;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 610px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 100%;
    max-width: 95%;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 100%;
    max-width: 95%;
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 1520px;
  }
}
.header {
  position: fixed;
  margin: auto;
  width: 100%;
  border-bottom: 1px solid #fff;
  background-color: #fff;
  box-shadow: 0.1rem 0.2rem 0.4rem rgba(165, 186, 199, 0.5490196078), -0.3rem -0.3rem 0.5rem rgba(255, 255, 255, 0.6);
  z-index: 999;
}
.header ul,
.header ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.header a {
  color: #333;
  text-decoration: none !important;
  transition: 0.3s linear;
  cursor: pointer;
}
.header a:hover, .header a:focus {
  color: #00a4e6;
}
.header .active {
  color: #00a4e6;
}
.header__logo__img {
  max-height: 40px;
  max-width: 100%;
  height: auto;
}
.header__menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}
.header__menu ul {
  display: flex;
}
.header__menu ul li {
  padding: 0.625rem 1.25rem;
}
@media screen and (max-width: 992px) {
  .header__menu {
    display: none;
  }
}
.header__menu-mobile {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-top: 1px solid #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}
.header__menu-mobile nav {
  width: 100%;
}
.header__menu-mobile nav ul {
  width: 100%;
}
.header__menu-mobile.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media screen and (min-width: 993px) {
  .header__menu-mobile {
    display: none;
  }
}
.header__burger {
  display: none;
  cursor: pointer;
  height: 100%;
  justify-content: flex-end;
  align-items: center;
}
.header__burger img {
  transition: all 0.3s ease;
  width: 30px;
  height: 30px;
}
.header__burger img:hover {
  transform: scale(1.1);
}
@media screen and (max-width: 992px) {
  .header__burger {
    display: flex;
  }
}
.header .burger-open,
.header .burger-close {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.header .burger-open {
  opacity: 1;
  transform: rotate(0);
}
.header .burger-close {
  opacity: 1;
  transform: rotate(90deg);
}

.language-switcher {
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
}

.lang-icon {
  width: 24px;
  height: 24px;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.lang-icon:hover {
  opacity: 0.8;
  transform: scale(1.1);
}

.active .lang-icon {
  border-color: #00a4e6;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.header__menu-mobile.open li {
  animation: slideIn 0.4s ease forwards;
  opacity: 0;
}
.header__menu-mobile.open li:nth-child(1) {
  animation-delay: 0.1s;
}
.header__menu-mobile.open li:nth-child(2) {
  animation-delay: 0.2s;
}
.header__menu-mobile.open li:nth-child(3) {
  animation-delay: 0.3s;
}
.header__menu-mobile.open li:nth-child(4) {
  animation-delay: 0.4s;
}
.header__menu-mobile.open li:nth-child(5) {
  animation-delay: 0.5s;
}
.header__menu-mobile.open li:nth-child(6) {
  animation-delay: 0.6s;
}
.header__menu-mobile.open li:nth-child(7) {
  animation-delay: 0.7s;
}
.header__menu-mobile.open li:nth-child(8) {
  animation-delay: 0.8s;
}
.header__menu-mobile.open li:nth-child(9) {
  animation-delay: 0.9s;
}
.header__menu-mobile.open li:nth-child(10) {
  animation-delay: 1s;
}

.footer {
  background-color: #333;
  padding: 1.875rem 0;
  color: #fff;
}
.footer__logo {
  max-width: 100%;
  width: 100px;
}
.footer__links {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .footer__links {
    flex-direction: column;
  }
}
.footer .active {
  color: #00a4e6;
}
.footer .border-t {
  border-top: 1px solid rgba(219, 222, 230, 0.1);
}
.footer a {
  color: #fff;
  text-decoration: none !important;
  transition: 0.3s linear;
  cursor: pointer;
}
.footer a:hover {
  color: #00a4e6;
}
.footer a:focus {
  color: #00a4e6;
}
.footer ul,
.footer ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__social {
  gap: 16px;
}
.footer__social .footer__social-item {
  margin-left: 0;
}
.footer__social img {
  width: 28px;
  height: 28px;
  display: block;
  filter: brightness(0) invert(1);
  transition: 0.2s;
}
.footer__social img:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .footer__info {
    flex-direction: column-reverse;
  }
}
#particles-js {
  width: 100%;
  height: 100%;
  position: absolute;
}

.home-page .title {
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}
.home-page .about-section {
  overflow: hidden;
  padding-top: 6.25rem;
}
.home-page .about-section .title {
  margin-right: 25rem;
  margin-bottom: 5rem;
  font-size: 5.25rem;
}
.home-page .about-section .title span {
  font-size: 8.75rem;
  color: #00a4e6;
}
@media screen and (max-width: 1200px) {
  .home-page .about-section .title {
    margin-right: 12.5rem;
  }
}
@media screen and (max-width: 992px) {
  .home-page .about-section .title {
    margin-right: 5.625rem;
  }
}
.home-page .about-section li {
  list-style-type: none;
}
.home-page .about-additional-section {
  margin-top: 11.25rem;
  background: url("../img/more.jpg") no-repeat top center;
  background-size: auto;
  display: block;
}
.home-page .about-additional-section .title h2 {
  font-size: 3.56rem;
  margin-bottom: 7.5rem;
  font-weight: 700;
  color: #37515f;
  width: 100%;
}
.home-page .about-additional-section .cards__item {
  padding: 2rem;
  transition: opacity 0.3s;
  scroll-behavior: auto;
}
.home-page .about-additional-section .cards__item .img-wrap {
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-page .about-additional-section .cards__item .img-wrap img {
  margin: 0 auto;
  max-height: 4.375rem;
}
.home-page .about-additional-section .cards__item p {
  margin-top: 2.1875rem;
  margin-bottom: 0;
  text-align: center;
  font-weight: 500;
  font-size: 1.06rem;
  line-height: 1.13;
  text-transform: uppercase;
}
.home-page .about-additional-section .cards__item:hover {
  transition: all 0.5s ease;
}
.home-page .about-additional-section .cards__item:hover img {
  transition: all 0.75s ease;
  height: 140%;
  max-height: 8.75rem;
}
.home-page .video-section-bg {
  background: url("../img/video-bg.3a024f3.png") no-repeat top center;
  background-size: auto;
  background-size: cover;
  width: 100%;
  height: 100%;
}
.home-page .video-section {
  margin-top: 12.5rem;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
.home-page .video-section .title {
  font-size: 3.56rem;
  font-weight: 700;
  color: #37515f;
  width: 100%;
  margin-bottom: 6.25rem;
}
.home-page .video-section p {
  margin-top: 2.1875rem;
  margin-bottom: 0;
  text-align: left;
  font-weight: 500;
  font-size: 1.06rem;
  line-height: 1.13;
  text-transform: uppercase;
}
.home-page .video-section ul li {
  margin-top: 0.9375rem;
  margin-bottom: 0;
  text-align: left;
  font-weight: 500;
  font-size: 1.06rem;
  line-height: 1.13;
  text-transform: uppercase;
}
.home-page .technology-bg {
  background: url("../img/waves.jpg") no-repeat top center;
  background-size: auto;
  background-size: cover;
  width: 100%;
  height: 100%;
}
.home-page .technology-section {
  max-width: 1520px;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
  position: relative;
  margin-top: 12.5rem;
}
.home-page .technology-section .tablet-design {
  display: flex;
}
.home-page .technology-section .title {
  font-size: 3.56rem;
  font-weight: 700;
  color: #37515f;
  width: 100%;
  margin-bottom: 6.25rem;
}
.home-page .technology-section .item {
  padding-left: 2rem;
  text-align: center;
  margin-bottom: 9.375rem;
  display: flex;
  align-items: center;
  height: 12.5rem;
}
.home-page .technology-section .item img {
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(100%);
  transition: all 0.25s ease;
  max-width: 100%;
  max-height: 6.25rem;
}
.home-page .technology-section .item:hover img {
  filter: grayscale(0);
  height: 120%;
  max-height: 8.75rem;
}
.home-page .technology-section .mobile-dising {
  display: none;
}
.home-page .technology-section .carousel {
  display: flex;
  overflow: scroll;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
}
.home-page .technology-section .carousel div {
  background-color: #fff;
  border-radius: 7px;
  margin: 7px;
  box-shadow: 0 5px 10px rgba(9, 60, 155, 0.12);
}
@media screen and (max-width: 768px) {
  .home-page .technology-section .title {
    font-size: 2.848rem;
  }
  .home-page .technology-section .carousel > * {
    flex: 1 0 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
  .home-page .technology-section .item {
    height: 15.625rem;
    margin-bottom: 0;
    max-width: 60%;
  }
  .home-page .technology-section .item img {
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    filter: none;
    max-height: 9.375rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 576px) {
  .home-page .technology-section .item img {
    max-height: 6.25rem;
  }
}
.home-page .vacancies-section {
  margin-top: 9.375rem;
}
.home-page .vacancies-section .title {
  font-size: 3.56rem;
  width: 100%;
  margin-bottom: 2.5rem;
  color: #37515f;
}
.home-page .vacancies-section .vacancies-cards {
  display: flex;
  justify-content: center;
}
.home-page .vacancies-section .vacancies-cards__item {
  background-color: #eff1f6;
  box-shadow: 0.1rem 0.2rem 0.4rem rgba(165, 186, 199, 0.5490196078), -0.3rem -0.3rem 0.5rem rgba(255, 255, 255, 0.6);
  padding: 2.5rem 2.9375rem;
  max-width: 33.75rem;
  margin: 3.125rem 0.9375rem;
  width: 40rem;
  border-radius: 1.875rem;
  position: relative;
  transition: all 0.25s ease;
  cursor: pointer;
}
.home-page .vacancies-section .vacancies-cards__item:hover {
  transform: translate(0, -10px);
}
.home-page .vacancies-section .vacancies-cards__item::before {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 10px;
  top: 7px;
  border-radius: 30px;
  background: #dbdbdb;
  z-index: -2;
}
.home-page .vacancies-section .vacancies-cards__item::after {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 30px;
  border: 3px solid #494947;
  z-index: -1;
}
.home-page .vacancies-section .vacancies-cards__item-title {
  text-transform: uppercase;
  color: #37515f;
  font-size: 2.06rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}
.home-page .vacancies-section .vacancies-cards__item-team {
  text-transform: uppercase;
  color: #00a4e6;
  text-align: center;
  margin-bottom: 2.5rem;
  font-weight: 43.75rem;
  font-size: 1.43rem;
}
.home-page .vacancies-section .vacancies-cards__item-cities {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.home-page .vacancies-section span {
  padding: 0 5px;
  margin-bottom: 5px;
  font-size: 1.43rem;
  font-weight: 300;
  text-transform: uppercase;
  border-right: 1px solid #494947;
  line-height: 1;
  transition: all 0.25s ease;
  cursor: pointer;
}
.home-page .vacancies-section span:hover {
  color: #00a4e6;
}
.home-page .vacancies-section span:last-child {
  border-right: none;
}
.home-page .vacancies-section .link {
  margin-top: 10px;
  display: block;
  text-align: center;
  text-transform: uppercase;
  color: #333;
  font-size: 1.43rem;
  font-weight: 300;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.25s ease;
  padding: 1rem 2rem;
  border-radius: 5rem;
  box-shadow: 0.1rem 0.2rem 0.4rem rgba(165, 186, 199, 0.5490196078), -0.3rem -0.3rem 0.5rem rgba(255, 255, 255, 0.6);
}
.home-page .vacancies-section .link:hover {
  box-shadow: 0.1rem 0.2rem 0.4rem rgba(165, 186, 199, 0.5490196078), -0.3rem -0.3rem 0.5rem rgba(255, 255, 255, 0.6);
}
.home-page span.choose,
.home-page span.msg {
  color: #494947;
  padding: 5px 0 10px;
  display: inherit;
}
.home-page .curson_pointer {
  cursor: pointer;
}

.main-photo #particles-js {
  width: 100%;
  height: 100%;
  position: absolute;
}
.main-photo .home-page-main-image {
  background: url("../img/home-big.png");
}
.main-photo .start-career-page-main-image {
  background: url("../img/career-big.png");
  max-height: 400px !important;
}
.main-photo .benefits-page-main-image {
  background: url("../img/benefit-big.png");
  max-height: 400px !important;
}
.main-photo .faq-page-main-image {
  background: url("../img/faq-big.png");
  max-height: 400px !important;
}
@media screen and (max-width: 576px) {
  .main-photo .home-page-main-image {
    background: url("../img/home-small.png");
  }
  .main-photo .start-career-page-main-image {
    background: url("../img/career-small.png");
  }
  .main-photo .benefits-page-main-image {
    background: url("../img/benefits-small.png");
  }
  .main-photo .faq-page-main-image {
    background: url("../img/faq-small.png");
  }
}
.main-photo .main-section {
  position: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  max-height: 70vh;
  top: 0px;
  height: calc(200vh - 200px);
  background-color: #494947;
  background-attachment: fixed;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-photo .main-section .img-main {
  max-width: 100%;
  animation: imageAnimation infinite 30s ease-in-out;
  width: 70%;
}
@keyframes imageAnimation {
  from {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}
@keyframes imageBgAnimation {
  from {
    background-size: 100%;
  }
  50% {
    background-size: 110%;
  }
  to {
    background-size: 100%;
  }
}
.main-photo .main-section .title {
  opacity: 1;
  color: #fff;
  bottom: 20%;
  right: 5%;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-shadow: 0.1rem 0.2rem 1.5rem rgba(0, 0, 0, 0.15);
}
.main-photo .main-section .title h1 {
  font-size: 5.43rem;
  letter-spacing: 0px;
  color: #fff;
  font-weight: 700;
}
.main-photo .main-section .title p {
  font-size: 1.442rem;
  text-align: right;
  letter-spacing: 0px;
  color: #fff;
  font-family: "Museo Sans Cyrl";
  text-align: right;
}
@media screen and (max-width: 1200px) {
  .main-photo .main-section {
    background-attachment: fixed;
  }
  .main-photo .main-section .title h1 {
    font-size: 3.258rem;
    text-align: center;
  }
  .main-photo .main-section .title p {
    font-size: 1.236rem;
    text-align: center;
  }
}
@media screen and (max-width: 992px) {
  .main-photo .main-section .img-main {
    max-width: 90%;
  }
  .main-photo .main-section .title h1 {
    font-size: 4.344rem;
  }
  .main-photo .main-section .title p {
    font-size: 1.648rem;
  }
}
@media screen and (max-width: 576px) {
  .main-photo .main-section {
    background-attachment: scroll;
    max-height: 350px;
  }
  .main-photo .main-section .img-main {
    max-width: 90%;
  }
}
@media screen and (max-width: 360px) {
  .main-photo .main-section {
    max-height: 250px;
  }
}
.main-photo .iPad {
  max-height: 400px;
  height: 400px;
  background-position: bottom;
  background-attachment: scroll;
}

.reverse-template ul {
  padding: 0;
}
.reverse-template .row .col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.reverse-template .row .col img {
  width: 100%;
  min-width: 200px;
  max-width: 425px;
}
@media screen and (max-width: 768px) {
  .reverse-template .row .col img {
    max-width: 100%;
    min-width: auto;
  }
}
.reverse-template .row .col .text-right li {
  direction: rtl;
}
.reverse-template .row .col .text-left ul {
  padding-inline-start: 0px !important;
}
.reverse-template .row .img-left {
  align-items: flex-start;
}
.reverse-template .row .img-right {
  align-items: flex-end;
}
.reverse-template .card-content__title {
  font-size: 2.06rem;
  color: #00a4e6;
  text-transform: uppercase;
  line-height: 1;
}
.reverse-template .card-content__descr {
  margin-top: 20px;
  font-size: 1.43rem;
  text-transform: uppercase;
  margin-bottom: 0;
}
@media screen and (max-width: 1200px) {
  .reverse-template .card-content__title {
    font-size: 1.648rem !important;
  }
  .reverse-template .card-content__descr {
    font-size: 1.144rem !important;
  }
}

.form-summary {
  align-items: center;
  margin-top: 260px;
  margin-bottom: 12.5rem;
}
.form-summary * {
  transition: all 0.25s ease;
}
.form-summary form {
  width: 100%;
}
.form-summary .block_visible {
  display: flex !important;
}
.form-summary .block_none {
  display: none !important;
}
.form-summary .field {
  position: relative;
  display: block;
  min-height: 20px;
  font-weight: 300;
  color: #626a76;
  font-size: 1.06rem;
  background: none;
  border: none;
}
.form-summary .field:focus {
  outline: none;
}
.form-summary .field_padding {
  padding: 0.8125rem 0.8125rem;
  margin: 0.625rem 0.9375rem;
}
.form-summary .custom_border {
  border: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  box-shadow: inset 0.1rem 0.2rem 0.4rem rgba(165, 186, 199, 0.5490196078), -0.3rem -0.3rem 0.5rem rgba(255, 255, 255, 0.6);
  border-radius: 0.625rem;
}
.form-summary .custom_border:hover {
  border-radius: 0.625rem;
}
.form-summary .custom_border:active {
  border-color: #00a4e6;
  border-radius: 1.125rem;
}
.form-summary .text_uppercase {
  text-transform: uppercase;
}
.form-summary .form-wrapper {
  max-width: 970px;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 6.875rem 1.875rem 1.5625rem;
  position: relative;
  background-color: #eff1f6;
  box-shadow: 0.1rem 0.2rem 0.4rem rgba(165, 186, 199, 0.5490196078), -0.3rem -0.3rem 0.5rem rgba(255, 255, 255, 0.6);
  border-radius: 2.375rem;
}
.form-summary .form-wrapper::before {
  position: absolute;
  content: "";
  display: block;
  background: url(../img/form-icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  top: -171px;
  width: 316px;
  height: 230px;
  left: 50%;
  transform: translate(-50%, 0);
}
@media screen and (max-width: 360px) {
  .form-summary .form-wrapper::before {
    height: 160px;
    width: 200px;
    top: -108px;
  }
}
.form-summary .form-wrpper_row {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.form-summary .form-wrpper_row * {
  flex: 1;
}
@media screen and (max-width: 992px) {
  .form-summary .form-wrpper_row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .form-summary .form-wrpper_row .input-field-wrapper,
  .form-summary .form-wrpper_row .input-area,
  .form-summary .form-wrpper_row .field {
    border: none;
    width: 80%;
  }
}
.form-summary .form-wrapper-controls {
  justify-content: center;
  padding-bottom: 0.75rem;
}
.form-summary .form-wrapper-controls__btn {
  white-space: nowrap;
  border: none;
  border-bottom: 3px solid transparent;
  font-size: 2.06rem;
  font-weight: 700;
  color: #37515f;
  padding-bottom: 0.125rem;
}
.form-summary .form-wrapper-controls .btn-active,
.form-summary .form-wrapper-controls .form-wrapper-controls__btn:hover {
  color: #00a4e6;
  border-bottom: 3px solid #00a4e6;
}
.form-summary .input-field-wrapper {
  width: 45%;
  transition: all 2.25s ease;
}
.form-summary .input-field-wrapper input {
  width: 93%;
}
.form-summary .input-field-wrapper .notice-label {
  position: absolute;
  visibility: hidden;
  top: -15px;
  left: 20%;
  border: 1px solid #37515f;
  background-color: #dbdbdb;
  font-size: 1.06rem;
  padding: 5px;
  border-radius: 10px;
}
.form-summary .input-field-wrapper:hover .notice-label {
  transition: all 2.25s ease;
  visibility: visible;
}
.form-summary .input-file-wrapper {
  position: relative;
  width: 80%;
}
.form-summary .input-file-wrapper .input-file {
  width: 100%;
  top: 0px;
  left: 0px;
  opacity: 0;
  z-index: -1;
  position: absolute;
}
.form-summary .input-file-wrapper .file-checkbox_hidden {
  opacity: 0;
  position: absolute;
  top: 15px;
  left: 30px;
  width: 1px;
}
.form-summary .input-file-wrapper .input-file-label, .form-summary .input-file-wrapper .input-file-label_warning {
  width: 100%;
  color: #333;
  background: transparent;
  vertical-align: center;
  border-radius: 10px;
  font-size: 1.06rem;
  cursor: pointer;
  box-shadow: inset 0.1rem 0.2rem 0.4rem rgba(165, 186, 199, 0.5490196078), -0.3rem -0.3rem 0.5rem rgba(255, 255, 255, 0.6);
}
.form-summary .input-file-wrapper .input-file-label:hover, .form-summary .input-file-wrapper .input-file-label_warning:hover {
  background-color: #fff;
}
.form-summary .input-file-wrapper .input-file-label_warning {
  background-color: #b51515;
}
@media screen and (max-width: 992px) {
  .form-summary .input-file-wrapper .input-file-label, .form-summary .input-file-wrapper .input-file-label_warning {
    margin: 0;
  }
}
.form-summary .input-file-wrapper .loaded {
  background-color: #fff;
  color: #333;
  box-shadow: inset 0.1rem 0.2rem 0.4rem rgba(165, 186, 199, 0.5490196078), -0.3rem -0.3rem 0.5rem rgba(255, 255, 255, 0.6);
}
.form-summary .request-note {
  position: fixed;
  top: 30%;
  left: 20%;
  width: 60%;
  font-size: 2.06rem;
  padding: 5.43rem;
  box-shadow: 0.1rem 0.2rem 0.4rem rgba(165, 186, 199, 0.5490196078), -0.3rem -0.3rem 0.5rem rgba(255, 255, 255, 0.6);
  border-radius: 30px;
  color: #00a4e6;
  opacity: 1;
  background-color: #fff;
  transition-delay: 0.5s;
}
.form-summary .request-note .success__title {
  font-size: 4rem;
  font-weight: 700;
}
.form-summary .request-note .success__span {
  color: #494947;
}
.form-summary .request-note .error {
  color: #b51515;
}
.form-summary .input-area {
  width: 100%;
  min-height: 9.375rem;
}
.form-summary .captcha {
  position: relative;
}
.form-summary .captcha .checkbox_hidden {
  top: 50px;
  left: 55px;
  position: absolute;
  opacity: 0;
}
@media screen and (max-width: 992px) {
  .form-summary .captcha {
    transform: scale(0.7);
  }
}
@media screen and (max-width: 576px) {
  .form-summary .captcha {
    transform: scale(0.5);
  }
}
@media screen and (max-width: 360px) {
  .form-summary .captcha {
    transform: scale(0.5);
  }
}
.form-summary .submit-btn {
  white-space: nowrap;
  background: #fff;
  border: none;
  border-radius: 60px;
  font-size: 1.06rem;
  font-weight: 500;
  color: #333;
  max-width: 250px;
  height: 50px;
  box-shadow: 0.1rem 0.2rem 0.4rem rgba(165, 186, 199, 0.5490196078), -0.3rem -0.3rem 0.5rem rgba(255, 255, 255, 0.6);
}
.form-summary .submit-btn:hover {
  box-shadow: 0.1rem 0.2rem 0.4rem rgba(165, 186, 199, 0.5490196078), -0.3rem -0.3rem 0.5rem rgba(255, 255, 255, 0.6);
}
.form-summary .option {
  display: block;
  margin-bottom: 0.5rem;
}
.form-summary .check {
  display: flex;
  padding-left: 60px;
  padding-top: 15px;
  position: relative;
  font-size: 0.858rem;
  margin-bottom: 15px;
}
.form-summary .check span {
  margin: auto 0;
}
.form-summary .check__input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.form-summary .check__box {
  position: absolute;
  top: 9px;
  left: 25px;
  width: 30px;
  height: 30px;
  overflow: hidden;
  border-radius: 100%;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  box-shadow: inset 0.1rem 0.2rem 0.4rem rgba(165, 186, 199, 0.5490196078), -0.3rem -0.3rem 0.5rem rgba(255, 255, 255, 0.6);
  cursor: pointer;
}
.form-summary .check__box::after {
  content: "";
  top: 10px;
  border-radius: 100%;
  left: 10px;
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #494947;
  opacity: 0.5;
}
.form-summary .check__input:checked + .check__box::after {
  display: none;
}
.form-summary .check__input:checked + .check__box {
  background-color: #00a4e6;
  background-size: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='3' d='M1.079 4.999 5 9l5.837-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.form-summary .add-job {
  text-align: left;
}
.form-summary .add-job .check__box {
  top: 9px;
}
.form-summary .add-job.check {
  padding-left: 65px;
}
.form-summary .select {
  height: auto;
  background: 0 0, url(../img/ar.svg) right 1rem center/1.25rem 0.625rem no-repeat !important;
}
.form-summary .select option {
  font-size: 1.06rem;
  text-transform: uppercase;
}
.form-summary .select option:hover {
  background-color: #00a4e6 !important;
}
.form-summary .select option:focus {
  background-color: #00a4e6;
}
@media screen and (max-width: 992px) {
  .form-summary .select {
    width: 85%;
    height: 30px;
    font-size: 1.06rem;
  }
  .form-summary .check {
    padding-top: 14px;
    padding-left: 30px;
  }
  .form-summary .check__box {
    top: 12px;
    left: 5px;
  }
  .form-summary .check__box::after {
    content: "";
    top: 6px;
    left: 6px;
    width: 8px;
    height: 8px;
  }
  .form-summary .check__box {
    width: 20px;
    height: 20px;
  }
  .form-summary .add-job .check__box {
    top: 12px;
  }
  .form-summary .add-job.check {
    padding-left: 35px;
  }
}
@media screen and (max-width: 576px) {
  .form-summary .check__box {
    top: 11px;
  }
  .form-summary .add-job .check__box {
    top: 10px;
  }
  .form-summary .add-job.check {
    padding-left: 35px;
  }
}

.start-career {
  display: block;
}
.start-career .sc-lab {
  padding-top: 6.25rem;
}
.start-career .sc-lab .card-wrap {
  width: 100%;
  display: flex;
}
.start-career .sc-lab .card-wrap .card-body {
  width: 60%;
  padding-right: 3.125rem;
  overflow: hidden;
}
.start-career .sc-lab .card-wrap .card-body .title {
  display: flex;
  justify-content: flex-end;
  font-size: 5.43rem;
  white-space: nowrap;
  text-transform: uppercase;
  text-align: right;
  margin-bottom: 2.25rem;
  color: #00a4e6;
}
.start-career .sc-lab .card-wrap .card-body .descr {
  font-size: 1.43rem;
  font-weight: 300;
  text-align: right;
  text-transform: uppercase;
  line-height: 1.4;
  margin-bottom: 0;
}
.start-career .sc-lab .card-wrap .card-body .descr a.link-section {
  text-transform: uppercase;
  color: #00a4e6;
  text-decoration: none;
}
.start-career .sc-lab .card-wrap .card-img {
  width: 30%;
  padding-left: 3.125rem;
  padding-top: 0.9375rem;
}
.start-career .sc-lab .card-wrap .card-img img {
  max-width: 20rem;
}
@media screen and (max-width: 1200px) {
  .start-career .sc-lab .card-wrap {
    flex-direction: column;
    width: 100%;
  }
  .start-career .sc-lab .card-wrap .card-body {
    width: 100%;
    order: 1;
  }
  .start-career .sc-lab .card-wrap .card-body .title,
  .start-career .sc-lab .card-wrap .card-body .descr {
    text-align: left;
  }
  .start-career .sc-lab .card-wrap .card-body .title {
    justify-content: flex-start;
    font-size: 3.56rem;
  }
}
@media screen and (max-width: 576px) {
  .start-career .sc-lab .title {
    font-size: 2.715rem !important;
  }
}
.start-career .salesforce-section {
  padding-top: 6.25rem;
}
.start-career .salesforce-section .content-wrapper {
  border-radius: 1.875rem;
  background-color: #eff1f6;
  box-shadow: 0.1rem 0.2rem 0.4rem rgba(165, 186, 199, 0.5490196078), -0.3rem -0.3rem 0.5rem rgba(255, 255, 255, 0.6);
  width: 100%;
  padding: 1.875rem 2.5rem;
  max-width: 1250px;
  margin: 0 auto;
}
.start-career .salesforce-section .content-wrapper img {
  max-width: 10.9375rem;
  margin: 0 auto 1.25rem;
}
.start-career .salesforce-section .content-wrapper .text {
  font-size: 1.06rem;
  font-weight: 300;
  color: #333;
  text-transform: uppercase;
  text-align: center;
}
.start-career .advantages-education {
  background: url("../img/waves.jpg") no-repeat top center;
  background-size: auto;
  background-size: cover;
  padding-top: 12.5rem;
}
.start-career .advantages-education .subtitle,
.start-career .advantages-education .title {
  font-size: 2.06rem;
  font-weight: 700;
  color: #37515f;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
}
.start-career .advantages-education .title {
  margin-bottom: 2.5rem;
}
.start-career .advantages-education .subtitle {
  margin-bottom: 0;
}
.start-career .advantages-education .advantages-items {
  margin-top: 5.625rem;
  display: flex;
  justify-content: space-evenly;
  width: 100%;
}
.start-career .advantages-education .advantages-items .advantages-item {
  width: 25rem;
}
.start-career .advantages-education .advantages-items .advantages-item__img-wrap {
  height: 70px;
  width: 100%;
  margin-bottom: 30px;
}
.start-career .advantages-education .advantages-items .advantages-item__img-wrap img {
  margin: 0 auto;
  height: 100%;
}
.start-career .advantages-education .advantages-items .advantages-item__title {
  text-align: center;
  color: #00a4e6;
  font-size: 5.43rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}
.start-career .advantages-education .advantages-items .advantages-item__descr {
  color: #37515f;
  font-weight: 300;
  text-align: center;
  font-size: 1.43rem;
  text-transform: uppercase;
}
@media screen and (max-width: 992px) {
  .start-career .advantages-education .subtitle,
  .start-career .advantages-education .title {
    font-size: 1.854rem;
  }
  .start-career .advantages-education .advantages-items {
    flex-direction: column;
    align-items: center;
  }
}
.start-career .education-section {
  padding-top: 6.25rem;
  overflow: hidden;
}
.start-career .education-section .title {
  font-size: 3.56rem;
  font-weight: 700;
  color: #37515f;
  margin-bottom: 4.375rem;
}
.start-career .education-section .row {
  margin-bottom: 2.5rem;
}
.start-career .education-section .row .card-content__descr ul {
  margin-bottom: 0rem;
}
.start-career .education-section .row .card-content__descr ul li {
  font-size: 2.06rem;
  list-style-type: none;
}
@media screen and (max-width: 992px) {
  .start-career .education-section .row .card-content__descr ul li {
    font-size: 1.43rem;
  }
}
.start-career .education-section .row .col img {
  max-width: 300px;
}
@media screen and (max-width: 576px) {
  .start-career .education-section .mobile-screen .carousel div {
    max-width: 250px;
  }
  .start-career .education-section .mobile-screen .carousel div img {
    height: 30%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.start-career .roadmap-dev {
  padding-top: 14.375rem;
  background: url("../img/salesforce.jpg") no-repeat top center;
  background-size: auto;
}
.start-career .roadmap-dev .title {
  font-size: 3.56rem;
  font-weight: 700;
  color: #37515f;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
}
.start-career .roadmap-dev .list {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 5rem;
  list-style-type: none;
}
.start-career .roadmap-dev .list__item {
  list-style-type: none;
  text-transform: uppercase;
  font-size: 2.06rem;
  color: #37515f;
  text-align: center;
  padding-bottom: 2.8125rem;
  position: relative;
  font-weight: 300;
}
.start-career .roadmap-dev .list__item::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0.625rem;
  left: 50%;
  transform: translate(-50%, 0);
  background: url("../img/ar.svg");
  background-size: cover;
  width: 1.875rem;
  height: 1.875rem;
  background-size: contain;
  background-repeat: no-repeat;
}
.start-career .roadmap-dev .list__item:last-child {
  padding-bottom: 0;
}
.start-career .roadmap-dev .list__item:last-child::before {
  display: none;
}
@media screen and (max-width: 576px) {
  .start-career .roadmap-dev .list__item {
    font-size: 1.854rem;
  }
}
.start-career .salesforce-advantages {
  padding-top: 12.5rem;
}
.start-career .salesforce-advantages .title {
  font-size: 3.56rem;
  text-align: center;
  width: 100%;
  margin-bottom: 5rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #37515f;
}
.start-career .salesforce-advantages .advantages {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0;
}
.start-career .salesforce-advantages .advantages-item {
  min-width: 335px;
  margin: 15px 15px;
}
.start-career .salesforce-advantages .advantages-item .advantages-item-img-wrap {
  height: 100px;
}
.start-career .salesforce-advantages .advantages-item .advantages-item-img-wrap img {
  margin: 0 auto;
  max-height: 70px;
}
.start-career .salesforce-advantages .advantages-item .advantages-item-content {
  font-size: 1.43rem;
  line-height: 1.5;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .start-career .salesforce-advantages .advantages-item {
    min-width: 0px;
  }
}
.start-career .technology-stack {
  padding-top: 10.625rem;
  background: url("../img/keyboard.jpg") no-repeat top center;
  background-size: auto;
}
.start-career .technology-stack .title {
  font-size: 3.56rem;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  font-weight: 700;
  color: #37515f;
  margin-bottom: 5rem;
}
.start-career .technology-stack .stack-list {
  list-style-type: none;
  margin: 0 auto;
  padding: 0;
}
.start-career .technology-stack .stack-list__item {
  list-style-type: none;
  color: #37515f;
  text-transform: uppercase;
  font-size: 2.06rem;
  font-weight: 500;
  text-align: center;
  text-indent: -5px;
}
.start-career .technology-stack .stack-list__item span {
  position: relative;
}
.start-career .technology-stack .stack-list__item span::before {
  content: " - ";
  font-weight: 700;
}
.start-career .directions {
  padding-top: 11.875rem;
}
.start-career .directions .title {
  font-size: 3.56rem;
  width: 100%;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  color: #37515f;
  margin-bottom: 80px;
}
.start-career .directions .descr {
  font-size: 2.06rem;
  text-align: center;
  font-weight: 500;
  text-transform: uppercase;
  color: #37515f;
  width: 100%;
  margin-bottom: 2px;
}
.start-career .lab-reviews {
  margin-top: 6.25rem;
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
  background-color: #eff1f6;
}
.start-career .lab-reviews .title {
  font-size: 3.56rem;
  width: 100%;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  color: #37515f;
  margin-bottom: 40px;
}
.start-career .lab-reviews .carousel-navigation {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
.start-career .lab-reviews .nav-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 25px;
  font-size: 14px;
  color: #495057;
  cursor: pointer;
  transition: all 0.3s ease;
}
.start-career .lab-reviews .nav-btn:hover {
  background: #e9ecef;
  border-color: #adb5bd;
}
.start-career .lab-reviews .nav-icon {
  font-size: 16px;
}
.start-career .lab-reviews .swiper-button-next {
  color: black;
}
.start-career .lab-reviews .swiper-button-next::after {
  font-family: auto;
  font-size: none;
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
  content: none;
}
.start-career .lab-reviews .swiper-button-prev {
  color: black;
}
.start-career .lab-reviews .swiper-button-prev::after {
  font-family: auto;
  font-size: none;
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
  content: none;
}
.start-career .lab-reviews .lab-reviews-carousel__item {
  padding: 1.25rem;
  margin: 0.625rem;
  background-color: #fff;
  border-radius: 2.375rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.start-career .lab-reviews .lab-reviews-carousel__item__text {
  font-size: 1.43rem;
  position: relative;
  padding: 3rem 0;
}
.start-career .lab-reviews .lab-reviews-carousel__item__text::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0;
  background: url("../img/quote.png");
  background-size: cover;
  width: 2rem;
  height: 2rem;
}
.start-career .lab-reviews .lab-reviews-carousel__item__text::after {
  content: "";
  position: absolute;
  bottom: 0.5rem;
  right: 0;
  background: url("../img/quote.png");
  background-size: cover;
  width: 2rem;
  height: 2rem;
}
.start-career .lab-reviews .lab-reviews-carousel__item__user {
  border-top: 1px solid #eff1f6;
  display: flex;
  padding-top: 1.875rem;
  justify-content: flex-start;
  align-items: center;
}
.start-career .lab-reviews .lab-reviews-carousel__item__user__photo {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  margin-right: 1.25rem;
}
.start-career .lab-reviews .lab-reviews-carousel__item__user__name {
  font-weight: 700;
}
.start-career .lab-reviews .lab-reviews-carousel__item__user__description {
  font-size: 1.43rem;
}

.benefits {
  display: block;
}
.benefits .work-section {
  padding-top: 6.25rem;
  overflow: hidden;
  position: relative;
}
.benefits .work-section::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background: url("../img/work.jpg") no-repeat top center;
  background-size: auto;
  width: 100%;
  height: 100%;
}
.benefits .work-section .title {
  position: relative;
  z-index: 2;
  font-size: 5.43rem;
  padding: 3.125rem;
  margin-bottom: 5.625rem;
  color: #37515f;
}
.benefits .work-section .reverse-template {
  position: relative;
}
.benefits .work-section ul li {
  list-style-type: none;
  text-indent: -5px;
}
.benefits .work-section ul li::before {
  font-weight: 700;
}

.faq-page .faq {
  margin: 6.25rem 0;
  background: url("../img/faq.jpg") no-repeat top center;
  background-size: auto;
}
.faq-page .faq .title {
  font-weight: 700;
  color: #37515f;
  padding: 0.625rem;
}
.faq-page .faq .faq-item {
  max-width: 60%;
  margin: 0.625rem;
  text-align: left;
  background-color: #eff1f6;
  border-radius: 1.875rem;
  box-shadow: 0.1rem 0.2rem 0.4rem rgba(165, 186, 199, 0.5490196078), -0.3rem -0.3rem 0.5rem rgba(255, 255, 255, 0.6);
  padding: 10px 0;
  padding-left: 1.875rem;
}
@media screen and (max-width: 1200px) {
  .faq-page .faq .faq-item {
    max-width: 100%;
  }
}
.faq-page .faq .faq-item__title {
  font-size: 1.43rem;
  padding: 0.5rem;
  color: #37515f;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.2s linear;
}
.faq-page .faq .faq-item__title:hover {
  color: #00a4e6;
}
.faq-page .faq .faq-item__icon {
  box-shadow: inset 0.1rem 0.2rem 0.4rem rgba(165, 186, 199, 0.5490196078), -0.3rem -0.3rem 0.5rem rgba(255, 255, 255, 0.6);
  border-radius: 100%;
  margin-right: 1.875rem;
}
.faq-page .faq .faq-item .fade-enter-active,
.faq-page .faq .faq-item .fade-leave-active {
  transition: opacity 0.5s;
}
.faq-page .faq .faq-item .fade-enter,
.faq-page .faq .faq-item .fade-leave-to {
  opacity: 0;
}
.faq-page .faq .faq-item__description {
  font-size: 1.06rem;
  height: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 500ms ease 0s;
}

.description-open {
  padding: 1rem;
  padding-right: 2rem;
  max-height: 200px !important;
  height: auto !important;
}

.contacts {
  display: block;
}
.contacts .contacts-section {
  background: url("../img/contact.jpg") no-repeat top center;
  background-size: auto;
}
.contacts .contacts-section .title {
  font-size: 3.56rem;
  margin: 4.375rem;
  font-weight: 700;
  color: #37515f;
}
.contacts .contacts-section .content-wrap,
.contacts .contacts-section .content-wrap h2,
.contacts .contacts-section .additional-text {
  font-size: 2.06rem;
}
.contacts .contacts-section .content-wrap a,
.contacts .contacts-section .additional-text {
  font-weight: 700;
}
.contacts .contacts-section .content-wrap {
  display: flex;
  flex-direction: column;
  width: auto;
}
.contacts .contacts-section .content-wrap a {
  color: #00a4e6;
}
.contacts .contacts-section .additional-text {
  margin-top: 3.75rem;
}
@media screen and (max-width: 576px) {
  .contacts .contacts-section .title {
    font-size: 4.344rem;
  }
  .contacts .contacts-section .content-wrap,
  .contacts .contacts-section .content-wrap h2,
  .contacts .contacts-section .additional-text {
    font-size: 1.648rem;
  }
}
.contacts__social {
  padding: 0;
  margin: 0 auto;
  margin-top: 10px;
  display: flex;
  gap: 16px;
  list-style-type: none;
}
.contacts__social img {
  width: 40px;
  height: 40px;
  display: block;
  transition: 0.2s;
}
.contacts__social img:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .contacts__social {
    margin-top: 20px;
  }
  .contacts__social img {
    width: 28px;
    height: 28px;
  }
}
.quiz-page {
  padding-bottom: 3.125rem;
}
.quiz-page .quiz {
  margin: 3.125rem 0;
  background: url("../img/faq.jpg") no-repeat top center;
  background-size: auto;
}
.quiz-page .quiz .title {
  font-weight: 700;
  color: #00a4e6;
  padding: 0.625rem;
}
.quiz-page .quiz .quiz-form {
  width: 60%;
  max-width: 60%;
  margin: 0.625rem;
  text-align: left;
  background-color: #fff;
  border-radius: 1.875rem;
  box-shadow: 0.1rem 0.2rem 0.4rem rgba(165, 186, 199, 0.5490196078), -0.3rem -0.3rem 0.5rem rgba(255, 255, 255, 0.6);
  padding: 1.25rem;
  font-size: 16px;
  min-height: 40rem;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 992px) {
  .quiz-page .quiz .quiz-form {
    max-width: 100%;
    width: 100%;
  }
}
.quiz-page .quiz .quiz-form .card,
.quiz-page .quiz .quiz-form .card-q {
  background-color: transparent;
  border: none;
  width: 100%;
  position: relative;
}
.quiz-page .quiz .quiz-form .final {
  display: flex;
  justify-content: center;
  align-items: center;
}
.quiz-page .quiz .quiz-form .form-section {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}
.quiz-page .quiz .quiz-form .form-section__input {
  border: none;
  box-shadow: inset 0.1rem 0.2rem 0.4rem rgba(165, 186, 199, 0.5490196078), -0.3rem -0.3rem 0.5rem rgba(255, 255, 255, 0.6);
  background: none;
  width: 100%;
  color: #2c3e50;
  vertical-align: center;
  border-radius: 10px;
  font-size: 16px;
  padding: 0.625rem;
  margin: 0.625rem;
  border: 1px solid #c4c4c4;
}
.quiz-page .quiz .quiz-form .form-section__input:hover, .quiz-page .quiz .quiz-form .form-section__input:focus, .quiz-page .quiz .quiz-form .form-section__input:active {
  border: 1px solid #00a4e6;
  outline: none;
}
.quiz-page .quiz .quiz-form .answer-section {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}
.quiz-page .quiz .quiz-form .btn-start {
  border: none;
  margin-top: 20px;
  background-color: #00a4e6;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.25s ease;
  padding: 1rem 2rem;
  border-radius: 5rem;
  font-size: 16px;
  box-shadow: 0.1rem 0.2rem 0.4rem rgba(165, 186, 199, 0.5490196078), -0.3rem -0.3rem 0.5rem rgba(255, 255, 255, 0.6);
}
.quiz-page .quiz .quiz-form .btn-start:hover {
  box-shadow: 0.1rem 0.1rem 0.4rem rgba(165, 186, 199, 0.5490196078), -0.3rem -0.3rem 0.5rem rgba(255, 255, 255, 0.6);
}
.quiz-page .quiz .quiz-form .btn-answer {
  background-color: #eff1f6;
  margin: 0.6rem 0;
  padding: 0.8rem;
  box-shadow: inset 0.1rem 0.2rem 0.4rem rgba(165, 186, 199, 0.5490196078), -0.3rem -0.3rem 0.5rem rgba(255, 255, 255, 0.6);
  color: #2c3e50;
  border: 1px solid #c4c4c4;
  outline: none;
}

.error-page {
  background-color: #fff;
}
@media screen and (max-width: 992px) {
  .error-page {
    padding: 3.125rem;
  }
}
.error-page .error {
  min-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.contact-form .select-wrapper {
  padding: 0;
}
.contact-form .select {
  color: #333;
  background: transparent;
  vertical-align: center;
  border-radius: 0.625rem;
  border: none;
  font-size: 1.06rem;
  cursor: pointer;
  box-shadow: inset 0.1rem 0.2rem 0.4rem rgba(165, 186, 199, 0.5490196078), -0.3rem -0.3rem 0.5rem rgba(255, 255, 255, 0.6);
  font-weight: 300;
  margin-top: 0;
  height: 40px;
}
.contact-form .select option {
  font-size: 1.43rem;
}
@media screen and (max-width: 992px) {
  .contact-form .select {
    width: 83%;
    height: 30px;
    font-size: 1.06rem;
  }
}

.grecaptcha-badge {
    bottom: 215px !important; 
}