:root {
  --color-grey-100: #F8F8F8;
  --color-grey-100-hover: #EEEEEE;
  --color-grey-200: #595959;
  --color-black-100: #000000;
  --color-teal-100: #30BCBC;
  --color-teal-200: #093737;
  --color-yellow-100: #FFF9EA;
  --color-yellow-200: #C8940E;
  --color-blue-100: #E0FFFF;
  --color-dark-100: #031D1D;
}

.s-wrapper {
  overflow: hidden;
}

body {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-family: "Inter Tight", sans-serif;
  container-type: inline-size;
  container-name: page;
  background-color: #fff;
}

/* Animation start*/
.reveal {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  will-change: transform, opacity;
}

.reveal.active {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

/* Specific Animations */
.fade-in {
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
}

input, button, input:active, button:active {
  outline: none;
}

input {
  -webkit-appearance: none;
}

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

a:focus {
  outline: none;
}

.hidden-item {
  display: none;
}

.visible-item {
  display: block;
}

h1, h2, h3, h4 {
  margin-top: 0;
  margin-bottom: 0;
}

p {
  margin-top: 0;
  margin-bottom: 0;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  padding: 0 20px;
  max-width: 1410px;
  margin: 0 auto;
}

@container page (min-width: 768px) {
  .container {
    padding: 0 32px;
    max-width: 768px;
  }
}
@container page (min-width: 1200px) {
  .container {
    padding: 0 32px;
    max-width: 1410px;
  }
}
.b-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 48px;
  border-radius: 8px;
  background-color: var(--color-black-100);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  padding: 0 28px;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #fff;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  cursor: pointer;
  border: 0;
}
.b-btn:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
}
.b-btn.color2 {
  background-color: var(--color-teal-100);
  color: #fff;
}
.b-btn.color1 {
  background-color: var(--color-grey-100);
  color: var(--color-black-100);
}

.s-header {
  padding: 24px 0;
  z-index: 1000;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #fff;
}
.s-header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.s-header .container > .s-header-soc {
  display: none;
}
.s-header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.s-header-more {
  background-color: var(--color-grey-100);
  width: 32px;
  height: 32px;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s all linear;
  transition: 0.3s all linear;
  position: relative;
  z-index: 2;
}
.s-header-more-wrap {
  position: relative;
}
.s-header-more-content {
  position: absolute;
  right: 0;
  top: 20px;
  background-color: var(--color-grey-100);
  border-radius: 8px;
  padding: 24px;
  width: 190px;
  opacity: 0.7;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: 0.3s all linear;
  transition: 0.3s all linear;
}
.s-header-more-content.active {
  top: 40px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.s-header-more-content .s-header-menu li:nth-child(n+2) {
  display: block;
}
.s-header-more-content .s-header-menu li + li {
  margin-top: 10px;
}
.s-header-more:hover {
  background-color: var(--color-grey-100-hover);
}
.s-header-more img {
  pointer-events: none;
}
.s-header-menu {
  position: relative;
  z-index: 2;
}
.s-header-menu-wrap {
  background-color: #fff;
  height: 40px;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.s-header-menu li:nth-child(n+2) {
  display: none;
}
.s-header-menu li a {
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 18px;
  color: var(--color-grey-200);
}
.s-header-menu li a.active {
  color: var(--color-black-100);
}
.s-header-soc {
  background-color: var(--color-teal-100);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 25px;
  padding: 4px;
}

@container page (min-width: 768px) {
  .s-header .container > .s-header-soc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 0;
    padding: 4px 6px;
  }
  .s-header-nav {
    margin-left: auto;
  }
  .s-header-more-content .s-header-soc {
    display: none;
  }
  .s-header .container {
    gap: 49px;
    max-width: 1410px;
  }
  .s-header.active {
    background-color: #fff;
  }
}
@container page (min-width: 1200px) {
  .s-header-logo {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .s-header-soc {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .s-header-nav {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .s-header {
    padding: 40px 0;
    background-color: transparent;
  }
  .s-header-more-wrap {
    display: none;
  }
  .s-header-menu li:nth-child(n+2) {
    display: block;
  }
  .s-header-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
  }
  .s-header .container {
    gap: 44px;
  }
}
.s-hero {
  padding-top: 119px;
  padding-bottom: 110px;
}
.s-hero .container {
  position: relative;
}
.s-hero-bg1 {
  position: absolute;
  left: -100px;
  top: 100px;
}
.s-hero-bg2 {
  position: absolute;
  right: -113px;
  bottom: -105px;
}
.s-hero-bg3 {
  display: none;
}
.s-hero-bg4 {
  display: none;
}
.s-hero-title {
  font-weight: 300;
  font-style: Light;
  font-size: 64px;
  line-height: 70px;
  text-align: center;
  color: var(--color-black-100);
}
.s-hero-title span {
  color: var(--color-teal-100);
}
.s-hero-descr {
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: var(--color-grey-200);
  padding: 0 14px;
  padding-top: 40px;
}
.s-hero-descr p + p {
  padding-top: 24px;
}
.s-hero-descr strong {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-black-100);
}
.s-hero-descr a {
  color: var(--color-black-100);
}
.s-hero-video {
  margin-left: 20px;
}
.s-hero-video video {
  display: block;
  border-radius: 128px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.s-hero-content {
  padding-top: 55px;
}

@container page (min-width: 480px) {
  .s-hero-video {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-left: 0;
  }
}
@container page (min-width: 768px) {
  .s-hero .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .s-hero-title {
    font-size: 118px;
    line-height: 110px;
  }
  .s-hero {
    padding-top: 105px;
  }
  .s-hero .s-hero-descr p {
    display: inline;
  }
  .s-hero-video {
    padding-top: 40px;
    margin-left: 0;
  }
  .s-hero-video video {
    width: 300px;
    height: 80px;
  }
  .s-hero-bg1 {
    left: -108px;
    top: 163px;
  }
  .s-hero-bg2 {
    right: -33px;
    bottom: 56px;
  }
}
@container page (min-width: 1200px) {
  .s-hero-title {
    font-size: 134px;
    line-height: 140px;
  }
  .s-hero {
    padding-top: 205px;
    padding-bottom: 130px;
  }
  .s-hero .s-hero-descr {
    max-width: 690px;
    margin: 0 auto;
  }
  .s-hero-bg1 {
    left: -235px;
    top: 70px;
  }
  .s-hero-bg2 {
    bottom: auto;
    top: -130px;
    right: -271px;
  }
  .s-hero-bg3 {
    position: absolute;
    top: -294px;
    left: 192px;
    display: block;
  }
  .s-hero-bg4 {
    display: block;
    position: absolute;
    right: 34px;
    bottom: 105px;
  }
}
.s-about {
  padding-top: 10px;
  padding-bottom: 56px;
}
.s-about .container {
  position: relative;
}
.s-about-bg1 {
  position: absolute;
  left: -60px;
  top: 73px;
}
.s-about-info {
  font-weight: 400;
  font-style: Regular;
  font-size: 30px;
  line-height: 40px;
  text-align: center;
  color: var(--color-black-100);
  position: relative;
  z-index: 2;
}
.s-about-info-bg1 {
  display: none;
}
.s-about-info span {
  color: var(--color-teal-100);
}
.s-about-descr {
  padding-top: 40px;
}
.s-about-descr-bg1 {
  display: none;
}
.s-about-descr .s-hero-descr {
  padding: 0;
}
.s-about-descr .space1 {
  padding-top: 31px;
}
.s-about-video {
  padding-top: 34px;
}
.s-about-video.active .s-about-video-link {
  visibility: hidden;
  pointer-events: none;
}
.s-about-video.active iframe {
  visibility: visible;
}
.s-about-video-link {
  position: relative;
  z-index: 2;
  border-radius: 12px;
}
.s-about-video-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.s-about-video-wrap iframe {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  z-index: 0;
  visibility: hidden;
}
.s-about-video-bg1 {
  display: none;
}
.s-about-video a {
  display: block;
  border-radius: 12px;
}
.s-about-video img {
  width: 100%;
  border-radius: 12px;
}

@container page (min-width: 768px) {
  .s-about-info {
    font-size: 40px;
    line-height: 48px;
  }
  .s-about {
    padding-top: 74px;
  }
  .s-about-bg1 {
    left: 77px;
    top: -167px;
  }
  .s-about-descr {
    padding-top: 78px;
    max-width: 590px;
    margin: 0 auto;
    position: relative;
  }
  .s-about-descr .s-hero-descr {
    position: relative;
    z-index: 2;
  }
  .s-about-video {
    padding-top: 42px;
    position: relative;
  }
  .s-about-video-bg1 {
    position: absolute;
    left: -228px;
    bottom: 49px;
    display: block;
  }
  .s-about-descr .space1 {
    padding-top: 41px;
  }
  .s-about-descr-bg1 {
    display: block;
    position: absolute;
    top: 23px;
    right: -117px;
  }
  .s-about-bg1 {
    left: 79px;
    top: -471px;
  }
}
@container page (min-width: 1200px) {
  .s-about-info {
    font-size: 50px;
    line-height: 60px;
    max-width: 820px;
    margin: 0 auto;
  }
  .s-about {
    padding-top: 130px;
    padding-bottom: 160px;
  }
  .s-about-descr {
    max-width: inherit;
    margin: 0;
    position: relative;
    padding-left: 54.2%;
    padding-top: 0;
    margin-top: 140px;
  }
  .s-about-video {
    position: absolute;
    width: 49%;
    left: 0;
    top: -42px;
  }
  .s-about-descr .s-hero-descr {
    text-align: left;
    max-width: 387px;
  }
  .s-about-descr .space1 {
    padding-top: 25px;
  }
  .s-about-info-bg1 {
    display: block;
    position: absolute;
    left: -372px;
    top: 105px;
  }
  .s-about-descr-bg1 {
    top: -33px;
    right: -96px;
  }
  .s-about-video-bg1 {
    display: none;
  }
}
.s-for {
  padding-top: 104px;
  position: relative;
}
.s-for-top {
  padding-bottom: 40px;
}
.s-for-bg1 {
  position: absolute;
  right: -50px;
  bottom: -35px;
}
.s-for-bg2 {
  position: absolute;
  right: -93px;
  bottom: -141px;
}
.s-for-bg3 {
  display: none;
}
.s-for-circle {
  width: 398px;
  height: 398px;
  border-radius: 50%;
  position: absolute;
  left: -212px;
  top: 0;
  background-color: var(--color-teal-100);
}
.s-for .container {
  position: relative;
}
.s-for-text {
  font-weight: 400;
  font-style: Regular;
  font-size: 30px;
  line-height: 40px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.s-for-text-bg1 {
  display: none;
}
.s-for-items {
  display: -ms-grid;
  display: grid;
  gap: 24px;
  -ms-grid-columns: (minmax(0, 1fr))[1];
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.s-for-items-bg1 {
  display: none;
}
.s-for-item {
  width: 100%;
  height: 100%;
  padding: 48px 20px;
  border-radius: 12px;
}
.s-for-item.yellow {
  background-color: var(--color-yellow-100);
}
.s-for-item.yellow .s-for-item-text {
  color: var(--color-yellow-200);
}
.s-for-item.blue {
  background-color: var(--color-blue-100);
}
.s-for-item.blue .s-for-item-text {
  color: var(--color-teal-200);
}
.s-for-item-text {
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 24px;
  padding-top: 32px;
}
.s-for-item-img {
  display: none;
}
.s-for-options {
  padding-top: 40px;
  padding-bottom: 145px;
}

@container page (min-width: 768px) {
  .s-for {
    padding-top: 113px;
  }
  .s-for-circle {
    width: 533px;
    height: 533px;
    left: auto;
    right: -246px;
  }
  .s-for-items {
    gap: 17px;
    position: relative;
    z-index: 2;
    -ms-grid-columns: (minmax(0, 1fr))[3];
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .s-for-bg3 {
    position: absolute;
    left: 54px;
    top: -132px;
    display: block;
  }
  .s-for-bg2 {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    bottom: -67px;
    right: -8px;
  }
}
@container page (min-width: 1200px) {
  .s-for-text {
    text-align: left;
    font-size: 44px;
    line-height: 62px;
    max-width: 943px;
  }
  .s-for {
    padding-top: 178px;
  }
  .s-for-item.yellow {
    background-color: #fff;
  }
  .s-for-item.yellow .s-for-item-text {
    color: var(--color-grey-200);
  }
  .s-for-item.blue {
    background-color: #fff;
  }
  .s-for-item.blue .s-for-item-text {
    color: var(--color-grey-200);
  }
  .s-for-items {
    -ms-grid-columns: (minmax(0, 1fr))[3];
    grid-template-columns: repeat(3, minmax(0, 1fr));
    position: relative;
  }
  .s-for-item {
    padding: 0;
    position: relative;
    z-index: 2;
  }
  .s-for-item-text {
    padding-top: 40px;
    max-width: 367px;
  }
  .s-for-circle {
    width: 857px;
    height: 857px;
    right: -66px;
    top: -38px;
    z-index: 1;
  }
  .s-for-bg3 {
    left: auto;
    right: 32.8%;
    top: -294px;
  }
  .s-for-text-bg1 {
    display: block;
    position: absolute;
    left: -81px;
    top: -102px;
  }
  .s-for-item-img {
    display: block;
    padding-top: 39px;
  }
  .s-for-item-img img {
    border-radius: 12px;
  }
  .s-for-bg2 {
    right: auto;
    left: -286px;
    display: block;
    bottom: 163px;
  }
  .s-for-items-bg1 {
    display: block;
    left: 143px;
    bottom: -106px;
    position: absolute;
  }
}
@container page (min-width: 1600px) {
  .s-for-circle {
    top: -193px;
  }
}
.s-info {
  padding-top: 15px;
  padding-bottom: 155px;
}
.s-info .container {
  position: relative;
}
.s-info-bg1 {
  position: absolute;
  left: -44px;
  bottom: -174px;
}

@container page (min-width: 768px) {
  .s-info {
    padding-bottom: 161px;
  }
  .s-info .s-for-text {
    padding: 0 50px;
  }
  .s-info-bg1 {
    left: -112px;
    bottom: -80px;
  }
}
@container page (min-width: 1200px) {
  .s-info .s-for-text {
    font-size: 32px;
    line-height: 44px;
    text-align: center;
    margin: 0 auto;
    padding: 0;
    max-width: 880px;
  }
  .s-info {
    padding-top: 244px;
  }
  .s-info-bg1 {
    left: auto;
    right: 83px;
    bottom: -214px;
  }
}
.s-skills {
  position: relative;
  z-index: 2;
  margin-top: 4px;
}
.s-skills .container {
  position: relative;
  padding-top: 40px;
}
.s-skills-bg1 {
  display: none;
}
.s-skills-bg {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-teal-100);
  border-top-right-radius: 32px;
  border-bottom-right-radius: 32px;
  width: calc(100% - 12px);
  height: calc(100% - 70px);
}
.s-skills-descr {
  position: relative;
  z-index: 2;
}
.s-skills .s-hero-descr {
  color: var(--color-dark-100);
  padding-top: 0;
  padding-left: 0;
  padding-right: 20px;
}
.s-skills-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  position: relative;
  z-index: 2;
  padding-top: 32px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
  padding-right: 12px;
}
.s-skills-item {
  height: 100%;
  border-radius: 24px;
  padding: 48px 32px;
  background-color: #fff;
  -webkit-box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.1);
  width: 100%;
}
.s-skills-item-title {
  font-weight: 400;
  font-style: Regular;
  font-size: 26px;
  line-height: 36px;
  padding-top: 55px;
}
.s-skills-item-descr.s-hero-descr {
  padding: 0;
  color: var(--color-grey-200);
  text-align: left;
  padding-top: 17px;
}

@container page (min-width: 768px) {
  .s-skills {
    margin-top: 0;
    padding-bottom: 90px;
  }
  .s-skills-bg {
    width: calc(100% - 166px);
    height: calc(100% - 148px);
  }
  .s-skills .s-hero-descr {
    text-align: left;
    padding-left: 10px;
    padding-right: 150px;
  }
  .s-skills-items {
    padding: 0 8px;
    padding-top: 48px;
    gap: 9px;
    display: -ms-grid;
    display: grid;
    gap: 24px;
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(0, 1fr);
  }
  .s-skills-item-descr.s-hero-descr {
    padding: 0;
    padding-top: 17px;
  }
  .s-skills-bg1 {
    position: absolute;
    top: -115px;
    right: 116px;
    display: block;
  }
}
@container page (min-width: 1200px) {
  .s-skills {
    padding-top: 230px;
    padding-bottom: 150px;
  }
  .s-skills-bg {
    width: calc(100% - 64px);
    height: calc(100% - 108px);
    margin: 0 32px;
    border-radius: 32px;
  }
  .s-skills .s-hero-descr {
    padding: 0;
    max-width: 674px;
    margin: 0 auto;
    text-align: center;
  }
  .s-skills .container {
    padding-top: 80px;
  }
  .s-skills-bg1 {
    top: -138px;
    left: -41px;
  }
  .s-skills-items {
    padding-top: 80px;
    max-width: 903px;
    margin: 0 auto;
  }
  .s-skills-item {
    padding: 48px;
  }
  .s-skills-item-title {
    font-size: 32px;
    line-height: 44px;
    padding-top: 72px;
  }
  .s-skills-item-descr.s-hero-descr {
    padding: 0;
    padding-top: 32px;
    text-align: left;
  }
  .s-skills-item.order-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .s-skills-item.order-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .s-skills-item.order-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .s-skills-item.order-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}
.s-join {
  padding-top: 162px;
  padding-bottom: 84px;
}
.s-join .container {
  position: relative;
}
.s-join-bg1 {
  position: absolute;
  top: -89px;
  right: -30px;
}
.s-join-title {
  font-weight: 400;
  font-style: Regular;
  font-size: 40px;
  line-height: 48px;
  text-align: center;
  color: var(--color-black-100);
  position: relative;
  z-index: 2;
}
.s-join .s-hero-descr {
  padding: 0;
  padding-top: 40px;
  position: relative;
  z-index: 2;
}
.s-join-line {
  padding-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
  position: relative;
}
.s-join-line-bg1 {
  position: absolute;
  bottom: -227px;
  right: 30px;
}
.s-join-img {
  min-width: 432px;
  position: relative;
  width: 100%;
}
.s-join-img-bg1 {
  position: absolute;
  left: -99px;
  top: -51px;
}
.s-join-img-bg2 {
  display: none;
}
.s-join-img img {
  border-radius: 12px;
  width: 100%;
}
.s-join-details {
  width: 100%;
  background-color: var(--color-grey-100);
  border-radius: 12px;
  padding: 24px;
}
.s-join-details-name {
  font-weight: 400;
  font-style: Regular;
  font-size: 32px;
  line-height: 44px;
  color: var(--color-black-100);
}
.s-join-details-job {
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 16px;
  color: var(--color-grey-200);
}
.s-join-details .s-hero-descr {
  padding: 0;
  padding-top: 33px;
  text-align: left;
}

@container page (min-width: 768px) {
  .s-join-title {
    font-size: 82px;
    line-height: 98px;
  }
  .s-join {
    padding-top: 110px;
  }
  .s-join .s-hero-descr {
    padding-top: 25px;
    max-width: 536px;
    margin: 0 auto;
  }
  .s-join-line {
    max-width: 503px;
    margin: 0 auto;
  }
  .s-join-details {
    padding: 40px;
    position: relative;
    z-index: 2;
  }
  .s-join-details .s-hero-descr {
    padding-top: 33px;
  }
  .s-join-bg1 {
    top: -284px;
    left: 110px;
    right: auto;
  }
  .s-join-img-bg1 {
    left: auto;
    right: -82px;
    top: -45px;
  }
  .s-join-img picture {
    position: relative;
    z-index: 2;
  }
  .s-join-img-bg2 {
    display: block;
    position: absolute;
    left: -93px;
    bottom: -63px;
  }
  .s-join-line-bg1 {
    bottom: -179px;
    right: -38px;
  }
}
@container page (min-width: 1200px) {
  .s-join-line {
    max-width: 890px;
    display: -ms-grid;
    display: grid;
    gap: 24px;
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
    position: relative;
  }
  .s-join-bg1 {
    display: none;
  }
  .s-join-img-bg1 {
    display: none;
  }
  .s-join-img-bg2 {
    left: -240px;
    top: 93px;
    right: auto;
  }
  .s-join-line-bg1 {
    bottom: -228px;
    left: 255px;
    right: auto;
  }
}
.s-contact {
  padding-top: 75px;
  padding-bottom: 125px;
}
.s-contact .container {
  position: relative;
}
.s-contact-circle {
  right: -177px;
  left: auto;
  top: -75px;
  width: 392px;
  height: 392px;
}
.s-contact-title {
  position: relative;
  z-index: 2;
}
.s-contact .s-hero-descr {
  padding: 0;
  color: var(--color-dark-100);
  position: relative;
  z-index: 2;
  padding-top: 26px;
}
.s-contact-button {
  padding-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 2;
}

@container page (min-width: 768px) {
  .s-contact-title {
    font-size: 74px;
    line-height: 90px;
    font-weight: 400;
  }
  .s-contact .s-hero-descr {
    max-width: 600px;
    margin: 0 auto;
  }
  .s-contact-circle {
    width: 615px;
    height: 615px;
    right: -138px;
    top: 36px;
  }
  .s-contact {
    padding-bottom: 215px;
  }
}
@container page (min-width: 1200px) {
  .s-contact {
    padding-top: 343px;
  }
  .s-contact .s-hero-descr {
    max-width: 650px;
    padding-top: 23px;
  }
  .s-contact-button {
    padding-top: 32px;
  }
  .s-contact-circle {
    right: -45px;
    top: -309px;
  }
}
.s-footer {
  padding: 35px 0 42px;
  position: relative;
  z-index: 2;
}
.s-footer .s-hero-descr {
  padding: 0;
}

@container page (min-width: 768px) {
  .s-footer .s-hero-descr {
    max-width: 380px;
    margin: 0 auto;
  }
}
@container page (min-width: 1200px) {
  .s-footer .s-hero-descr {
    max-width: inherit;
  }
  .s-footer {
    padding: 75px 0;
  }
}
.s-modal {
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 1050;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  max-height: 100%;
  height: 100%;
  position: fixed;
  top: 20px;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.s-modal.visible {
  opacity: 1;
  visibility: visible;
  top: 0;
}
.s-modal.visible .s-modal-backdrop {
  top: 0;
}
.s-modal-content {
  background-color: #fff;
  padding: 24px;
  padding-bottom: 32px;
  position: relative;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  width: 100%;
}
.s-modal-form-item + .s-modal-form-item {
  margin-top: 11px;
}
.s-modal-form-item label {
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 18px;
  color: var(--color-black-100);
}
.s-modal-form-item input {
  height: 44px;
  line-height: 44px;
  display: block;
  width: 100%;
  border-radius: 8px;
  padding: 0 12px;
  background-color: var(--color-grey-100);
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-grey-200);
  border: none;
  font-family: inherit;
  margin-top: 5px;
}
.s-modal-form-item input:-moz-placeholder {
  opacity: 1;
  color: var(--color-grey-200);
}
.s-modal-form-item input::-moz-placeholder {
  opacity: 1;
  color: var(--color-grey-200);
}
.s-modal-form-item input:-ms-input-placeholder {
  opacity: 1;
  color: var(--color-grey-200);
}
.s-modal-form-item input::-webkit-input-placeholder {
  opacity: 1;
  color: var(--color-grey-200);
}
.s-modal-form-item textarea {
  height: 120px;
  line-height: 44px;
  display: block;
  width: 100%;
  border-radius: 8px;
  padding: 10px 12px;
  background-color: var(--color-grey-100);
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-grey-200);
  border: none;
  resize: none;
  overflow-y: auto;
  font-family: inherit;
  margin-top: 5px;
}
.s-modal-form-item textarea:-moz-placeholder {
  opacity: 1;
  color: var(--color-grey-200);
}
.s-modal-form-item textarea::-moz-placeholder {
  opacity: 1;
  color: var(--color-grey-200);
}
.s-modal-form-item textarea:-ms-input-placeholder {
  opacity: 1;
  color: var(--color-grey-200);
}
.s-modal-form-item textarea::-webkit-input-placeholder {
  opacity: 1;
  color: var(--color-grey-200);
}
.s-modal-form-item .error {
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 18px;
  color: #ff6969;
  padding-top: 5px;
}
.s-modal-form-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.s-modal-form-button .b-btn {
  width: 100%;
}
.s-modal-form-button .b-btn span {
  pointer-events: none;
}
.s-modal-form-button.w1 {
  width: 31%;
}
.s-modal-form-button.w2 {
  width: 64%;
}
.s-modal-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 40px;
}
.s-modal-title {
  font-weight: 400;
  font-style: Regular;
  font-size: 32px;
  line-height: 44px;
  text-align: center;
  color: var(--color-black-100);
}
.s-modal-descr {
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: var(--color-grey-200);
  padding-top: 12px;
}

@container page (min-width: 768px) {
  .s-modal-content {
    max-width: 420px;
    padding: 40px;
    border-radius: 12px;
    -webkit-box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.57);
            box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.57);
  }
  .s-modal {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 40px 20px;
  }
  .s-modal-form-item input {
    margin-top: 5px;
  }
  .s-modal-form-item textarea {
    margin-top: 8px;
  }
}
.s-modal-backdrop {
  background: rgba(3, 29, 29, 0.9);
  height: 100%;
  width: 100%;
  position: fixed;
  top: -20px;
  backdrop-filter: blur(10px);
}
.s-modal-backdrop-img1 {
  display: block;
  position: absolute;
  left: -43px;
  top: -104px;
}
.s-modal-backdrop-img2 {
  display: block;
  position: absolute;
  right: -64px;
  top: 257px;
}
.s-modal-backdrop-img3 {
  display: none;
}

@container page (min-width: 768px) {
  .s-modal-backdrop-img1 {
    left: 373px;
    top: -109px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
  .s-modal-backdrop-img2 {
    left: 179px;
    top: 536px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
  .s-modal-backdrop-img3 {
    left: -287px;
    top: 123px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    position: absolute;
  }
}