@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

:root {
  --color--yelow: #FEDE33;
  --color--green-cold: #24F07D;
  --color--green-warm: #BFF252;
  --color-coral: #F28D8D;

  --color--bg: #333333;
  --color--bg-small: rgba(30, 30, 29, 1);
  --color--text: #FCFBFB;

  --max-width-xs: 1024px;

  --max-width-sm: 412px;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;

  background-color: #1b1b1bfb;
  /* overflow: hidden; */

}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

button{
  cursor: pointer;
}

h3 {
  color: rgba(252, 251, 251, 1);

  font-family: Manrope;
  font-size: 40px;
  font-weight: 300;
  line-height: 50px;
  letter-spacing: 5%;
  text-align: left;
}

/* HEADER */
header {
  max-width: var(--max-width-xs);
  width: 100%;
  margin: 24px auto 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

header .logo {
  width: 100%;
  /* max-width: 820px; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background-color: rgba(19, 18, 18, 1);
  border-radius: 40px;
}

header .logo img {
  display: block;
}

header .logo select {
  border: none;
  background-color: transparent;
  color: white;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  border: none;
}

header .logo select option {
  /* color: white; */
  background: #000;
  border: none;
  outline: none;
}

header a.link {
  max-width: 188px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 29px 8px;

  border-radius: 40px;
  background: linear-gradient(179.43deg, rgba(254, 225, 97, 1), rgba(254, 222, 51, 1) 100%);

  color: rgba(36, 36, 36, 1);
  font-family: Manrope;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: left;
  text-transform: uppercase;
}


/* intro */

section.intro {
  background: linear-gradient(270.00deg, rgba(0, 0, 0, 0), rgba(36, 36, 36, 1) 100%), linear-gradient(86.01deg, rgba(0, 0, 0, 0), rgba(36, 36, 36, 1) 100%), linear-gradient(180.00deg, rgba(0, 0, 0, 0), rgba(36, 36, 36, 1) 100%);
}

section.intro .l-intro {
  max-width: var(--max-width-xs);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;

  padding: 58px 96px;

  background: var(--color--yelow);

  position: relative;

  border-radius: 40px;
  overflow: hidden;
}

section.intro .intro--info {
  max-width: 500px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  justify-content: space-between;

}

section.intro .intro--info-mobile {
  max-width: 348px;
  width: 100%;
  display: none;
  align-items: center;
  gap: 10px;
}

section.intro .intro--info h2,
section.intro .intro--info-mobile h2 {
  color: rgba(30, 30, 29, 1);

  font-family: Manrope;
  font-size: 40px;
  font-weight: 800;
  line-height: 44px;
  letter-spacing: 2%;
  text-align: left;
  text-transform: uppercase;
}

section.intro .intro--info-mobile h2 {
  font-weight: 800;
  font-size: 24px;
  line-height: 142%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
  color: #fcfbfb;
  margin-bottom: 16px;
  margin-top: 16px;
}

section.intro .intro--info p,
section.intro .intro--info-mobile p {
  color: rgba(49, 49, 49, 1);

  font-family: Manrope;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 2%;
  text-align: left;
}

section.intro .intro--info-mobile p {
  font-weight: 400;
  font-size: 15px;
  line-height: 167%;
  letter-spacing: 0.02em;
  text-align: center;
  color: #fcfbfb;
  margin-bottom: 32px;
}

section.intro .intro--info button,
section.intro .intro--info-mobile button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 16px;
  background-color: var(--color--bg-small);
  border-radius: 50px;

  color: rgba(255, 223, 132, 1);
  font-family: Manrope;
  font-size: 24px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: left;
  text-transform: uppercase;
}

section.intro .intro--info-mobile button {
  width: 100%;
  font-weight: 500;
  font-size: 24px;
  text-transform: uppercase;
  color: #1e1e1d;
  background: linear-gradient(180deg, #fee161 0%, #fede33 100%);
}

section.intro .intro--bg {
  max-width: var(--max-width-sm);
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: absolute;
  right: 20px;
  top: 15px;


}

section.intro .intro--bg .is_ok--img {
  width: 95px;
  height: 95px;
  background-color: rgba(19, 18, 18, 1);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  rotate: -25deg;
  top: 40px;
  left: 10px;
}

section.intro .intro--bg .is_ok--img img {
  width: 100%;
}

section.intro .intro--bg .person--img {
  width: 100%;
}

section.intro .intro--bg .card--img {
  position: absolute;
  top: 120px;
  right: 0;
}

section.intro .intro--bg .dollar--img {
  position: absolute;
  bottom: 140px;
  right: 0;
}

/* start */

section.start {



  padding: 96px 0;
  background: linear-gradient(270.00deg, rgba(0, 0, 0, 0), rgba(36, 36, 36, 1) 100%), linear-gradient(86.01deg, rgba(0, 0, 0, 0), rgba(36, 36, 36, 1) 100%), linear-gradient(180.00deg, rgba(0, 0, 0, 0), rgba(36, 36, 36, 1) 100%);
  position: relative;
}

section.start .l-start {
  max-width: var(--max-width-xs);
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

section.start .bg_start {
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

section.start .bg_start img {
  width: 100%;
}

section.start .start--info {
  max-width: 250px;
  width: 100%;

  color: rgba(252, 251, 251, 1);

}

section.start .start--info {}

section.start .cards {
  max-width: 705px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;


}

section.start .card {
  max-width: 341px;
  height: 341px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 16px;
  background-color: var(--color--bg-small);
  border-radius: 40px;
}

section.start .card .number {
  color: rgba(13, 13, 13, 1);
  background: var(--color--yelow);
  width: 51px;
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: Manrope;
  font-size: 32px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 2%;
  text-align: left;
}

section.start .card .logo {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

section.start .card .logo img {
  width: 150px;
  height: 150px;
}

section.start .card .text {
  max-width: 172px;
  width: 100%;
  color: var(--color--text);
  font-family: Manrope;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 2%;
  text-align: left;
  text-align: center;
}

/* agents */

section.agents {

  background: radial-gradient(413.99% 140.09% at 100% 0%, #333 0%, #131212 100%);

  padding: 48px 0;

}

section.agents .l-agents {
  max-width: var(--max-width-xs);
  width: 100%;
  margin: 0 auto;
  display: flex;
  position: relative;
}

section.agents .link_bar {

  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: flex;
  flex-direction: column;
  border-radius: 40px;
  position: absolute;
  bottom: 0;
  right: 44px;
}

section.agents .link_bar a {
  width: 100%;
  color: rgba(30, 30, 29, 1);
  border-radius: 40px;
  background: linear-gradient(179.43deg, rgba(254, 225, 97, 1), rgba(254, 222, 51, 1) 100%);
  padding: 4px 36px;
  font-family: Manrope;
  font-size: 24px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: left;
  text-transform: uppercase;
}

section.agents .info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}



section.agents .info .navigation {
  height: 100%;
  display: flex;

  flex-direction: column;
  justify-content: flex-end;
  gap: 15px;
}

section.agents .info .navigation .navigation--item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.prev,
.next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color--yelow);
  background-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

.next {
  rotate: 180deg;
}

.prev:hover,
.next:hover {
  background-color: rgba(52, 52, 52, 0.305);

}

.prev:disabled,
.next:disabled {
  background-color: rgba(150, 150, 150, 0.305);
  cursor: not-allowed;
}

.progress_bar {
  max-width: 250px;
  width: 100%;
  height: 11px;
  /* background-color: #e0e0e0; */
  outline: 1px solid var(--color--yelow);
  border-radius: 6px;
  overflow: hidden;
}

.progress_bar--item {
  height: 100%;
  background-color: var(--color--yelow);
  width: 33.33%;
  transition: width 0.3s ease;
}

section.agents .slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

section.agents .slider .slider--container {
  display: flex;
  transition: transform 0.5s ease;
  position: relative;
  user-select: none;
}

section.agents .slider .slider--container .slide {
  min-width: calc(50% - 30px);
  width: calc(50% - 30px);
  height: 200px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px;
  border-radius: 30px;
  border: 2px solid rgb(61, 61, 61);
  margin-right: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background: radial-gradient(50.00% 50.00% at 50% 50%, rgba(51, 51, 51, 1), rgba(19, 18, 18, 1) 100%)
}

section.agents .slider .slider--container .slide:nth-child(1) {
  height: 300px;
  background-image: url("./assets//img/person_and_comp.png");
  background-size: cover;
  background-position: center;
}

section.agents .slider .slider--container .slide:last-child {
  margin-right: 0;
}

section.agents .slider .slider--container .slide p.slide-number {
  color: rgba(254, 222, 51, 1);
  font-family: Manrope;
  font-size: 14px;
  font-weight: 600;
  line-height: 14px;
  letter-spacing: 2%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 30px;
  height: 30px;

  border: 1px solid rgba(254, 222, 51, 1);
}

section.agents .slider .slider--container .slide .slide-info h5 {
  color: rgba(252, 251, 251, 1);
  font-family: Manrope;
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 2%;
}

section.agents .slider .slider--container .slide .slide-info p.slide-text {
  color: rgba(252, 251, 251, 1);
  font-family: Manrope;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 2%;
}

/* team_cash */

section.team_cash {
  padding: 48px 0;
  background: radial-gradient(414.25% 140.01% at 100% 0%, rgba(19.125, 18.089061737060547, 18.089061737060547, 1), rgba(51, 51, 51, 1) 100%)
}

section.team_cash .l-team_cash {
  max-width: var(--max-width-xs);
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

section.team_cash .team_cash--info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

section.team_cash .team_cash--info h3.team_cash--title {
  font-family: Manrope;
  font-weight: 600;
  font-size: 40px;
  letter-spacing: 0.02em;
  color: #fcfbfb;
}

section.team_cash .team_cash--info h3.team_cash-mobile--title {
  display: none;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}

section.team_cash .team_cash--info h3 span {
  text-transform: uppercase;
  color: #fede33;
}

section.team_cash .team_cash--info img {
  max-width: 226px;
  width: 100%;
}

section.team_cash .team_cash--cards {
  max-width: 720px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

section.team_cash .team_cash--cards .team_cash--card {
  border-radius: 30px;
  padding: 16px 24px;
  width: 347px;
  height: 347px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;

  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  border: 1px solid rgba(252, 251, 251, 0.472);


}

section.team_cash .team_cash--cards .team_cash--card:nth-child(1) {
  background-image: url("./assets/img/team_cash/1.png");
  -webkit-box-shadow: 0px -150px 27px -13px rgba(0, 0, 0, 0.84) inset;
  -moz-box-shadow: 0px -150px 27px -13px rgba(0, 0, 0, 0.84) inset;
  box-shadow: 0px -150px 27px -13px rgba(0, 0, 0, 0.84) inset;
}

section.team_cash .team_cash--cards .team_cash--card:nth-child(2) {
  background-image: url("./assets/img/team_cash/2.png");
  -webkit-box-shadow: 0px -100px 27px -13px rgba(0, 0, 0, 0.64) inset;
  -moz-box-shadow: 0px -100px 27px -13px rgba(0, 0, 0, 0.64) inset;
  box-shadow: 0px -100px 27px -13px rgba(0, 0, 0, 0.64) inset;
}

section.team_cash .team_cash--cards .team_cash--card:nth-child(3) {
  background-image: url("./assets/img/team_cash/3.png");
  -webkit-box-shadow: 0px -100px 27px -13px rgba(0, 0, 0, 0.64) inset;
  -moz-box-shadow: 0px -100px 27px -13px rgba(0, 0, 0, 0.64) inset;
  box-shadow: 0px -100px 27px -13px rgba(0, 0, 0, 0.64) inset;
}

section.team_cash .team_cash--cards .team_cash--card:nth-child(4) {
  background-image: url("./assets/img/team_cash/4.png");
  -webkit-box-shadow: 0px -150px 27px -13px rgba(0, 0, 0, 0.84) inset;
  -moz-box-shadow: 0px -150px 27px -13px rgba(0, 0, 0, 0.84) inset;
  box-shadow: 0px -150px 27px -13px rgba(0, 0, 0, 0.84) inset;
}

section.team_cash .team_cash--cards .team_cash--card h5 {
  color: rgba(252, 251, 251, 1);
  font-family: Manrope;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 2%;
}

section.team_cash .team_cash--cards .team_cash--card p {
  color: rgba(252, 251, 251, 1);
  font-family: Manrope;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 2%;
}

/* form */

section.form {

  background: rgba(36, 36, 36, 1);
  padding: 96px 0;
}

section.form .l-form {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  background-image: url("./assets/img/form-bg.png");
  background-size: cover;
  background-position: center;



  padding: 32px;
  border-radius: 30px;
}

section.form form {
  max-width: 500px;
  width: 100%;
  background: radial-gradient(413.99% 140.09% at 100% 0%, #131212 100%);
  border-radius: 24px;
  padding: 32px;
}

section.form form .form--info {
  display: flex;
  flex-direction: column;
  gap: 16px;

}



section.form form .form--info h3 {
  color: rgba(255, 223, 132, 1);

  font-family: Manrope;
  font-size: 32px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 2%;
  text-align: center;
  text-transform: uppercase;
}

section.form form .form--info p {
  color: rgba(252, 251, 251, 1);

  font-family: Manrope;
  font-size: 14px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 2%;
  text-align: center;
}

section.form form .form--inputs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}



section.form .form--inputs .form--input {
  display: flex;
  flex-direction: column;
  /* gap: 10px; */
}

section.form .form--inputs .form--input label {
  color: rgba(255, 223, 132, 1);

  font-family: Manrope;
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0%;
}

section.form .form--inputs .form--input input {
  width: 100%;
  height: 50px;
  border-radius: 40px;
  padding: 0 16px;
  background: rgba(51, 51, 51, 1);
  font-family: Manrope;
  color: rgba(252, 251, 251, 1);
  font-family: Manrope;
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0%;

  border: none;
  outline: none;
}

section.form .form--inputs .form--input input:focus {
  outline: 1px solid var(--color--yelow);
}

section.form .form--inputs .form--input input::placeholder {
  color: #999;
}


section.form .form--inputs .form--input select {
  width: 100%;
  height: 50px;
  border-radius: 40px;
  padding: 0 16px;
  color: rgba(252, 251, 251, 1);
  background: rgba(51, 51, 51, 1);
  font-family: Manrope;
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0%;

  border: none;
  outline: none;
}

section.form .form--inputs .form--input select:focus {
  outline: 1px solid var(--color--yelow);
}

section.form .form--inputs .form--input select option:disabled {
  color: #999;
  /* серый цвет для "Выберите язык" */
}


section.form .form--inputs .form--button {
  display: flex;
  justify-content: center;
}

section.form .form--inputs .form--button button {
  /* width: 80%; */
  border-radius: 40px;
  background: linear-gradient(179.43deg, rgba(254, 225, 97, 1), rgba(254, 222, 51, 1) 100%);
  color: rgba(36, 36, 36, 1);
  font-family: Manrope;
  font-size: 24px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: left;
  text-transform: uppercase;
  border: none;
  padding: 16px;
  text-align: center;
}

footer {
  padding: 32px 0;
}

footer .l-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

footer .l-footer .logo_footer--container {
  width: 100%;
  /* max-width: 147px; */
  max-width: 147px;
  margin: 0 auto;
}

footer .l-footer .title-servises {
  width: 100%;
  /* max-width: 147px; */
  max-width: 147px;
  margin: 0 auto;

}

footer .l-footer .footer--info {
  max-width: 297px;
  width: 100%;
  font-family: Manrope;
  text-align: center;
  font-weight: 400;
  font-size: 15px;
  line-height: 133%;
  text-align: center;
  color: rgba(255, 255, 255, 0.66);
}


/* media */
@media screen and (max-width: 768px) {
  body {
    background-color: #000;
  }

  h3 {
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
  }

  header a.link {
    display: none;
  }

  section.intro {

    padding-bottom: 10px;
    border-radius: 0 0 40px 40px;
  }

  section.intro .l-intro {
    height: 240px;
  }

  section.intro .intro--info {
    display: none;
  }

  section.intro .intro--bg .person--img {
    width: 250px;
  }

  section.intro .intro--bg {
    right: auto;
    transform: translate(-50%, -50%);
    top: calc(50% + 80px);
    left: 50%;
  }

  section.intro .intro--bg .is_ok--img {
    width: 70px;
    height: 70px;
  }

  section.intro .intro--bg .dollar--img {
    bottom: 70px;
    left: 0;
  }

  section.intro .intro--info-mobile {
    display: block;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    padding: 0 20px;
  }

  section.start {
    padding: 32px 0;
    /* background: #000; */
  }

  section.start .l-start {
    flex-direction: column;
  }

  section.start .start--info {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;

  }

  section.start .cards {}

  section.start .card .number {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  section.start .card .logo img {
    width: 80px;
    height: 80px;
  }

  section.start {
    background: linear-gradient(270.00deg, rgba(0, 0, 0, 0), rgb(0, 0, 0) 100%), linear-gradient(86.01deg, rgba(0, 0, 0, 0), rgb(0, 0, 0) 100%), linear-gradient(180.00deg, rgba(0, 0, 0, 0), rgb(0, 0, 0) 100%);
  }

  section.start .card {
    height: 260px;
  }

  section.start .card .text {
    font-weight: 400;
    font-size: 16px;
    line-height: 187%;
    letter-spacing: 0.02em;
    text-align: center;
    color: #fcfbfb;
  }

  section.agents {
    padding: 32px 0;
    background: #000;
  }

  section.agents .l-agents {
    flex-direction: column;
  }

  section.agents .info .navigation {
    display: none;
  }

  section.agents .link_bar {
    position: static;
    padding-top: 32px;
    gap: 32px;

  }

  section.agents .link_bar a {
    width: 100%;
    padding: 16px 0;
    font-weight: 600;
    font-size: 24px;
    text-transform: uppercase;
    color: #242424;
    text-align: center;
  }

  section.agents .slider .slider--container .slide {
    min-width: calc(100% - 50px);
    width: 100%;
  }

  section.team_cash {
    padding: 100px 0 32px;
    background: #000
  }

  section.team_cash .l-team_cash {
    flex-direction: column;
    align-items: center;
  }

  section.team_cash .team_cash--info {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    align-items: center;

  }

  section.team_cash .team_cash--info h3.team_cash--title {
    display: none;
  }

  section.team_cash .team_cash--info h3.team_cash-mobile--title {
    display: block;
  }

  section.team_cash .team_cash--info img {
    max-width: 200px;
  }

  section.team_cash .team_cash--cards {
    flex-direction: column;
  }

  section.team_cash .team_cash--cards .team_cash--card {
    width: 100%;
    /* margin-bottom: 16px; */
  }

  section.team_cash .team_cash--cards .team_cash--card h5 {
    font-weight: 700;
    font-size: 24px;
    line-height: 117%;
    letter-spacing: 0.02em;
    color: #fcfbfb;
    text-align: left;
  }

  section.team_cash .team_cash--cards .team_cash--card p {
    font-weight: 400;
    font-size: 14px;
    line-height: 114%;
    letter-spacing: 0.02em;
    color: #fcfbfb;

    text-align: left;
  }

  section.form {
    padding: 0;
  }

  section.form .l-form {
    padding: 0;
  }

  section.form form {
    max-width: 100%;
  }

  section.form form .form--info {
    padding-bottom: 32px;
  }

  section.form form .form--info h3 {
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-align: center;
    color: #fede33;
  }

  section.form form .form--info p {
    font-weight: 400;
    font-size: 14px;
    line-height: 107%;
    letter-spacing: 0.02em;
    color: #fcfbfb;
  }

  section.form .form--inputs .form--input label {
    font-weight: 400;
    font-size: 15px;
    line-height: 200%;
    color: #fede33;
  }
}