@charset "UTF-8";
:root {
  --yellow: #FBF503;
}

* {
  padding: 0;
  margin: 0;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a, a:hover {
  text-decoration: none;
}

/* Common */
nav,
footer,
header,
section,
ul,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
div,
p,
span {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

/* Form */
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

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

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

html,
body {
  height: 100%;
  margin: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Code-Pro-LC";
  font-family: "Code-Pro-Bold";
  font-family: "Roboto";
  font-weight: 400;
  font-size: 16px;
  display: flex;
  line-height: 1;
  flex-direction: column;
  color: #000;
}

main {
  flex: 1;
}

footer {
  flex: 0;
}

a,
button {
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
}

@font-face {
  font-family: "Code-Pro-Bold";
  src: url("../fonts/Code-Pro-Bold.woff");
  font-weight: 500;
}
@font-face {
  font-family: "Code-Pro-LC";
  src: url("../fonts/Code-Pro-LC.woff");
  font-weight: 600;
}
.header {
  padding: 10px 0;
  width: 100%;
}
.header__row {
  display: flex;
  align-items: center;
  position: relative;
}
@media (max-width: 1140px) {
  .header__row {
    justify-content: space-between;
  }
}
.header__logo-wrapper {
  margin-left: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 80px;
}
@media (max-width: 1200px) {
  .header__logo-wrapper {
    margin-right: 50px;
  }
}
@media (max-width: 479px) {
  .header__logo-wrapper {
    margin-left: 0px;
    margin-right: 30px;
    gap: 6px;
  }
}
.header__logo {
  max-width: 110px;
}
.header__logo-text-wrapper {
  display: flex;
  flex-direction: column;
}
.header__logo-text {
  color: #000;
  font-family: Garamond;
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 992px) {
  .header__logo-text {
    font-size: 20px;
  }
}
.header__logo-text span {
  color: #000;
  font-family: Garamond;
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 992px) {
  .header__logo-text span {
    font-size: 16px;
  }
}
@media (max-width: 479px) {
  .header__logo-text {
    font-size: 16px;
  }
}
.header__logo-text--last {
  margin-top: 2px;
  color: #F9D6BD;
  font-size: 11px;
}
@media (max-width: 479px) {
  .header__logo-text--last {
    font-size: 8px;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 10%;
  position: relative;
  width: 100%;
  z-index: 2;
}
@media (max-width: 1350px) {
  .header__nav {
    gap: 6%;
  }
}
@media (max-width: 1200px) {
  .header__nav {
    gap: 50px;
    justify-content: space-between;
  }
}
@media (max-width: 1140px) {
  .header__nav {
    display: none;
  }
}
.header__nav.active {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 15px;
  width: 100%;
  height: 100dvh;
  background: var(--yellow);
  z-index: 1000;
  margin-left: 0px;
  padding-left: 40px;
}
.header__nav.active::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 700px;
  height: 100%;
  background: url("../img/court-lady.webp") no-repeat;
  background-size: cover;
  z-index: -1;
}
@media (max-width: 800px) {
  .header__nav.active::before {
    width: 500px;
  }
}
@media (max-width: 600px) {
  .header__nav.active::before {
    width: 500px;
    filter: blur(12px);
  }
}
@media (max-width: 479px) {
  .header__nav.active::before {
    width: 400px;
    filter: blur(12px);
  }
}
@media (max-width: 767px) {
  .header__nav.active {
    padding-left: 20px;
  }
}
.header__nav-close {
  display: none;
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
  color: #000000;
  font-size: 22px;
}
@media (max-width: 940px) {
  .header__nav-close {
    display: block;
  }
}
.header__nav-list {
  display: flex;
  gap: 80px;
  list-style: none;
}
.header__nav-list.active {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1140px) {
  .header__nav-list.active {
    gap: 50px;
    margin-bottom: 40px;
  }
}
@media (max-width: 1250px) {
  .header__nav-list {
    gap: 50px;
  }
}
@media (max-width: 1100px) {
  .header__nav-list {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .header__nav-list {
    gap: 20px;
  }
}
@media (max-width: 479px) {
  .header__nav-list {
    gap: 10px;
    justify-content: space-between;
  }
}
.header__nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  transition: 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0);
}
.header__nav-link {
  position: relative;
  color: #252323;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
  padding-bottom: 2px;
}
.header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #000;
  transition: width 0.3s ease;
}
@media (min-width: 940px) {
  .header__nav-link:hover {
    color: #000;
  }
  .header__nav-link:hover::after {
    width: 100%;
  }
}
@media (max-width: 1140px) {
  .header__nav-link {
    color: #252323;
    font-size: 28px;
  }
}
@media (max-width: 992px) {
  .header__nav-link {
    font-size: 24px;
    color: #000000;
  }
}
.header__nav-button-wrapper {
  display: flex;
  gap: 50px;
}
@media (max-width: 1140px) {
  .header__nav-button-wrapper {
    flex-direction: column;
    gap: 50px;
  }
}
.header__nav-button {
  position: relative;
  border-radius: 20px;
  border: 1px solid #000000;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease;
  background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
}
@media (max-width: 1140px) {
  .header__nav-button {
    border: none;
    background: none;
    box-shadow: none;
    padding: 0;
    justify-content: flex-start;
    border-radius: 0;
  }
}
@media (min-width: 940px) {
  .header__nav-button:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: var(--yellow);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  }
}
.header__nav-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -100%;
  width: 100%;
  height: 300%;
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(45deg);
  transition: left 0.5s ease;
  z-index: 0;
}
@media (max-width: 1140px) {
  .header__nav-button::before {
    display: none;
  }
}
.header__nav-button:hover::before {
  left: 100%;
}
.header__nav-button p {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.3s ease;
  z-index: 1;
}
@media (min-width: 1140px) {
  .header__nav-button p:hover {
    transform: scale(1.02);
  }
}
@media (max-width: 1140px) {
  .header__nav-button p {
    color: #252323;
    padding: 0;
    font-family: "Roboto", sans-serif;
    font-size: 26px;
    border-radius: 0;
  }
}
@media (max-width: 992px) {
  .header__nav-button p {
    font-size: 24px;
    color: #000000;
  }
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  20%, 60% {
    transform: translateX(-3px);
  }
  40%, 80% {
    transform: translateX(3px);
  }
}
@keyframes shake {
  0% {
    transform: rotate(0deg) translateX(0);
  }
  25% {
    transform: rotate(1deg) translateX(2px);
  }
  50% {
    transform: rotate(0deg) translateX(0);
  }
  75% {
    transform: rotate(-1deg) translateX(-2px);
  }
  100% {
    transform: rotate(0deg) translateX(0);
  }
}

.header__logo-wrapper {
  /* existing styles */
  transform: translateY(-100px);
  /* add this */
  opacity: 0;
  /* add this */
  animation: arrive 1s forwards;
  /* add this */
  animation-delay: 0.5s;
  /* add this */
}

@keyframes arrive {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.header__nav {
  /* existing styles */
  transform: translateY(-100px);
  /* add this */
  opacity: 0;
  /* add this */
  animation: arrive 1s forwards;
  /* add this */
  animation-delay: 0.5s;
  /* add this */
}

.header__nav-button {
  /* existing styles */
  transform: translateY(-100px);
  /* add this */
  opacity: 0;
  /* add this */
  animation: arrive 1s forwards;
  /* add this */
  animation-delay: 0.5s;
  /* add this */
}

.promo {
  position: relative;
  background: url("../img/promo-bg.webp") center/cover no-repeat;
  min-height: 100vh;
}
@media (max-width: 767px) {
  .promo {
    min-height: 100vh;
  }
}
.promo__decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 104px;
  background: rgba(231, 224, 224, 0.6588235294);
}
.promo__box {
  position: absolute;
  bottom: -1px;
  right: 0;
  background: url(../img/white-figure.webp) center/cover no-repeat;
  max-width: 675px;
  width: 100%;
  max-height: 358px;
  height: 100%;
  z-index: 1;
  padding: 55px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .promo__box {
    padding: 30px;
    max-width: 100%;
    max-width: 475px;
    max-height: 250px;
  }
}
@media (max-width: 500px) {
  .promo__box {
    padding: 20px;
    max-width: 100%;
    max-width: 375px;
    max-height: 200px;
  }
}
@media (max-width: 479px) {
  .promo__box {
    padding-top: 0;
  }
}
.promo__text-wrapper h2 {
  color: #000;
  font-family: "Code-Pro-Bold";
  font-size: 46px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .promo__text-wrapper h2 {
    font-size: 28px;
  }
}
@media (max-width: 500px) {
  .promo__text-wrapper h2 {
    font-size: 24px;
  }
}
@media (max-width: 479px) {
  .promo__text-wrapper h2 {
    font-size: 20px;
    text-align: center;
  }
}
.promo__button {
  margin-top: 50px;
}
@media (max-width: 500px) {
  .promo__button {
    margin-top: 30px;
  }
}
.promo__button a {
  background: #FBF503;
  color: #040506;
  text-align: center;
  font-family: "Roboto";
  font-size: 24px;
  font-weight: 700;
  line-height: 40px;
  padding: 20px 50px;
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .promo__button a {
    font-size: 18px;
    padding: 15px 30px;
  }
}
@media (min-width: 767px) {
  .promo__button a:hover {
    background: rgba(255, 247, 0, 0.758);
  }
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  z-index: 9999;
}
.loading-overlay .loading-spinner {
  color: #fff;
  font-size: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeInUp 1s infinite alternate;
  display: flex;
  align-items: center;
  gap: 10px;
}
.loading-overlay .loading-spinner span {
  margin-top: 10px;
  display: block;
}
.loading-overlay .loading-spinner::after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  margin: 15px auto 0;
  border: 4px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0.5;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.loading-overlay.show {
  opacity: 1;
  visibility: visible;
}

.team {
  padding: 50px 0 80px 0;
  position: relative;
}
@media (max-width: 479px) {
  .team {
    padding-top: 30px;
  }
}
.team::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 70px;
  background: url("../img/black-noise.png") no-repeat;
  background-size: cover;
  z-index: 1;
}
.team__heading-wrapper {
  max-width: 950px;
}
.team__heading-wrapper h1 {
  color: #000;
  font-family: "Code-Pro-Bold";
  font-size: 40px;
  font-weight: 400;
}
@media (max-width: 992px) {
  .team__heading-wrapper h1 {
    font-size: 30px;
  }
}
@media (max-width: 600px) {
  .team__heading-wrapper h1 {
    font-size: 28px;
  }
}
.team__text-wrapper {
  margin-top: 35px;
}
@media (max-width: 992px) {
  .team__text-wrapper {
    margin-top: 20px;
  }
}
.team__text {
  color: #000;
  font-family: "Roboto";
  font-size: 18px;
  font-weight: 700;
  line-height: 34px;
}
@media (max-width: 992px) {
  .team__text {
    font-size: 16px;
    line-height: 1.3;
  }
}
.team__title {
  color: #000;
  font-family: "Roboto";
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-top: 40px;
}
@media (max-width: 500px) {
  .team__title {
    font-size: 20px;
  }
}
@media (max-width: 479px) {
  .team__title {
    font-size: 18px;
  }
}
.team__list {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 30px;
}
@media (max-width: 992px) {
  .team__list {
    justify-content: center;
    gap: 7%;
  }
}
@media (max-width: 600px) {
  .team__list {
    gap: 30px;
  }
}
@media (max-width: 520px) {
  .team__list {
    gap: 15px;
  }
}
@media (max-width: 380px) {
  .team__list {
    flex-direction: column;
  }
}
.team__list p {
  color: #000;
  font-family: "Roboto";
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-top: 15px;
}
@media (max-width: 600px) {
  .team__list p {
    font-size: 14px;
  }
}
@media (max-width: 479px) {
  .team__list p {
    font-size: 12px;
  }
}
@media (max-width: 420px) {
  .team__list p {
    font-size: 10px;
  }
}
@media (max-width: 380px) {
  .team__list p {
    font-size: 14px;
  }
}
.team__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 992px) {
  .team__img-wrapper {
    width: 150px;
    height: 266px;
  }
}
@media (max-width: 600px) {
  .team__img-wrapper {
    width: 100%;
    height: 100%;
    max-width: 120px;
  }
}
@media (max-width: 420px) {
  .team__img-wrapper {
    max-width: 100px;
  }
}
@media (max-width: 380px) {
  .team__img-wrapper {
    max-width: 160px;
  }
}
.team__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease;
}

.phone {
  background: #000;
  position: relative !important;
}
.phone__wrapper {
  padding: 0px 0 80px 0;
  background: #000;
}
@media (max-width: 600px) {
  .phone__wrapper {
    padding: 0px 0 30px 0;
  }
}
@media (max-width: 479px) {
  .phone__wrapper {
    padding: 20px 0;
  }
}

.swiper-phone-wrapper {
  margin: 0 30px;
  padding: 0 120px;
  padding-top: 60px;
  padding-bottom: 50px;
  padding-top: 30px;
  background: #000;
  position: relative !important;
  /* Тень */
  box-shadow: 2px 8px 16px 0px rgba(194, 198, 208, 0.06);
}
@media (max-width: 1200px) {
  .swiper-phone-wrapper {
    padding: 0 30px;
    padding-top: 30px;
    padding-bottom: 50px;
  }
}
@media (max-width: 992px) {
  .swiper-phone-wrapper {
    padding: 0 10px;
    padding-top: 30px;
    padding-bottom: 40px;
  }
}
@media (max-width: 400px) {
  .swiper-phone-wrapper {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .swiper-phone-wrapper {
    margin: 0 10px;
    padding-bottom: 30px;
  }
}

.phone__heading-wrapper {
  text-align: center;
  margin-bottom: 33px;
  color: #FFF;
}
@media (max-width: 479px) {
  .phone__heading-wrapper {
    margin-bottom: 25px;
  }
}
.phone__heading-wrapper h2 {
  color: #ffffff;
  font-size: 50px;
  text-align: center;
  font-family: "Montserrat";
  font-size: 48px;
  font-weight: 500;
  line-height: 60px;
}
@media (max-width: 992px) {
  .phone__heading-wrapper h2 {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .phone__heading-wrapper h2 {
    font-size: 25px;
    line-height: 1.5;
  }
}
@media (max-width: 479px) {
  .phone__heading-wrapper h2 {
    font-size: 22px;
  }
}

.swiper-wrapper-phone {
  background: #000;
}

.swiper-slide {
  padding: 0 15px;
}

.swiper-slide-phone {
  background: #FFF;
  padding-top: 50px;
  padding-bottom: 45px;
  border-radius: 5px;
  border: 2px solid #E2EAF2;
  background: #FFF;
}
@media (max-width: 1200px) {
  .swiper-slide-phone {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .swiper-slide-phone {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.swiper-button-next-phone {
  width: 100px !important;
  bottom: 0 !important;
}
.swiper-button-next-phone::after {
  background: url("../img/Arrow-right.svg") no-repeat;
  background-size: cover;
  width: 67px !important;
  height: 66px !important;
  font-family: "Courier New" !important;
  content: "" !important;
}
@media (max-width: 767px) {
  .swiper-button-next-phone::after {
    width: 50px !important;
    height: 50px !important;
  }
}

.swiper-button-next {
  bottom: 0 !important;
  left: 49% !important;
  position: absolute !important;
  top: 100% !important;
}
@media (min-width: 1700px) {
  .swiper-button-next {
    left: 55% !important;
  }
}
@media (max-width: 767px) {
  .swiper-button-next {
    top: 104% !important;
  }
}
@media (max-width: 660px) {
  .swiper-button-next {
    display: none !important;
  }
}

.swiper-button-prev {
  left: 40% !important;
  position: absolute !important;
  bottom: 0 !important;
  top: 100% !important;
  bottom: 0 !important;
}
@media (max-width: 767px) {
  .swiper-button-prev {
    top: 104% !important;
  }
}
@media (max-width: 660px) {
  .swiper-button-prev {
    display: none !important;
  }
}

.swiper-button-prev-phone {
  width: 100px !important;
}
.swiper-button-prev-phone::after {
  background: url("../img/Arrow-left.svg") no-repeat;
  background-size: cover;
  width: 66px !important;
  height: 66px !important;
  font-family: "Courier New" !important;
  content: "" !important;
}
@media (max-width: 767px) {
  .swiper-button-prev-phone::after {
    width: 50px !important;
    height: 50px !important;
  }
}

.swiper-phone-item-inner {
  display: flex;
  justify-content: center;
  gap: 50px;
}
@media (max-width: 600px) {
  .swiper-phone-item-inner {
    flex-direction: column-reverse;
    gap: 0;
    text-align: center;
  }
}

.swiper-phone-item-image-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .swiper-phone-item-image-wrapper img {
    max-width: 200px;
  }
}

.swiper-phone-item-image-name {
  margin-top: 30px;
  color: #2E363E;
  text-align: center;
  font-family: "Montserrat";
  font-size: 21px;
  font-style: normal;
  font-weight: 500;
  line-height: 143%;
}
@media (max-width: 767px) {
  .swiper-phone-item-image-name {
    font-size: 18px;
    margin-top: 15px;
  }
}

.swiper-phone-item-image-city {
  color: #A6AEB6;
  text-align: center;
  font-family: "Montserrat";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  /* 27.2px */
}

.swiper-phone-tittle {
  color: #2E363E;
  font-size: 20px;
  font-family: "Montserrat";
  font-size: 30px;
  font-weight: 500;
  line-height: 143%;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .swiper-phone-tittle {
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  .swiper-phone-tittle {
    font-size: 15px;
  }
}

.swiper-phone-text {
  color: #000;
  max-width: 340px;
  line-height: 170%;
  /* 25.5px */
  color: #000;
  margin-top: 25px;
  font-family: "Montserrat";
  font-size: 15px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .swiper-phone-text {
    font-size: 12px;
    line-height: 1.5;
    margin-top: 15px;
  }
}
@media (max-width: 600px) {
  .swiper-phone-text {
    max-width: 100%;
  }
}

.swiper-wpapper-phone {
  max-width: 800px !important;
}

.number-one {
  padding: 132px 0 0px 0;
  background: var(--yellow);
  position: relative;
}
@media (max-width: 972px) {
  .number-one {
    padding: 100px 0 0px 0;
  }
}
.number-one::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 70px;
  background: url("../img/yellow-noise.webp") no-repeat;
  background-size: cover;
}
.number-one__wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
@media (max-width: 1000px) {
  .number-one__wrapper {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
@media (max-width: 1000px) {
  .number-one__img-wrapper {
    width: 100%;
    max-width: 300px;
    height: 100%;
  }
}
@media (max-width: 600px) {
  .number-one__img-wrapper {
    max-width: 200px;
  }
}
.number-one__text-wrapper {
  max-width: 625px;
  padding-bottom: 80px;
}
@media (max-width: 1000px) {
  .number-one__text-wrapper {
    padding-bottom: 40px;
  }
}
.number-one__title {
  color: #000;
  font-family: "Code-Pro-Bold";
  font-size: 40px;
  font-weight: 400;
  max-width: 560px;
}
@media (max-width: 767px) {
  .number-one__title {
    font-size: 30px;
  }
}
.number-one__text {
  color: #000;
  font-family: "Roboto";
  font-size: 18px;
  font-weight: 400;
  line-height: 34px;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .number-one__text {
    font-size: 16px;
    line-height: 1.4;
  }
}
.number-one__list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.number-one__item {
  position: relative;
  padding-left: 40px;
  color: #000;
  font-family: "Roboto";
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .number-one__item {
    font-size: 16px;
  }
}
.number-one__item:nth-child(1)::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: url("../img/color_lens.png") no-repeat;
  background-size: cover;
  width: 32px;
  height: 32px;
}
.number-one__item:nth-child(2)::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: url("../img/auto_awesome.png") no-repeat;
  background-size: cover;
  width: 32px;
  height: 32px;
}
.number-one__item:nth-child(3)::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: url("../img/auto_awesome_motion.png") no-repeat;
  background-size: cover;
  width: 32px;
  height: 32px;
}
.number-one__button-wrapper {
  margin-top: 50px;
}
.number-one__button-wrapper a {
  display: inline-flex;
  height: 59px;
  padding: 15px 50px;
  align-items: center;
  gap: 10px;
  background: #000;
  color: var(--yellow);
}
@media (max-width: 380px) {
  .number-one__button-wrapper a {
    padding: 15px 30px;
  }
}

.areas {
  display: flex;
  background: #000;
  color: #fff;
  margin-top: -1px;
}
@media (max-width: 600px) {
  .areas {
    flex-direction: column;
  }
}
.areas__img-wrapper {
  max-height: 1500px;
  width: 50%;
}
.areas__img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1200px) {
  .areas__img-wrapper {
    width: 50%;
  }
}
@media (max-width: 600px) {
  .areas__img-wrapper {
    width: 100%;
    max-height: 500px;
  }
}
.areas__text-wrapper {
  width: 50%;
  display: flex;
  flex-direction: column;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-right: 12px;
  padding-left: 32px;
  justify-content: center;
}
@media (max-width: 600px) {
  .areas__text-wrapper {
    padding-left: 20px;
  }
}
@media (max-width: 600px) {
  .areas__text-wrapper {
    width: 100%;
    margin-top: 15px;
  }
}
.areas__heading-wrapper {
  color: #FFF;
  font-family: "Code-Pro-Bold";
  font-size: 40px;
  font-weight: 400;
  max-width: 350px;
}
@media (max-width: 992px) {
  .areas__heading-wrapper {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .areas__heading-wrapper {
    font-size: 22px;
  }
}
@media (max-width: 479px) {
  .areas__heading-wrapper {
    font-size: 17px;
  }
}
.areas__list {
  margin-top: 45px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media (max-width: 767px) {
  .areas__list {
    margin-top: 25px;
    gap: 15px;
  }
}
.areas__item {
  position: relative;
  padding-left: 40px;
}
@media (max-width: 992px) {
  .areas__item {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .areas__item {
    padding-left: 25px;
    line-height: 1.2;
    font-size: 12px;
  }
}
.areas__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: url("../img/disk-yellow.png ") no-repeat center;
  background-size: cover;
}
@media (max-width: 767px) {
  .areas__item::before {
    width: 20px;
    height: 20px;
  }
}
.areas__button-wrapper {
  margin-top: 45px;
}
@media (max-width: 767px) {
  .areas__button-wrapper {
    margin-top: 25px;
  }
}
.areas__button-wrapper a {
  background: #F8F200;
  display: inline-flex;
  height: 59px;
  padding: 15px 51px 15px 50px;
  align-items: center;
  gap: 10px;
  color: #000;
  font-family: "Roboto";
  font-size: 18px;
  font-weight: 700;
  transition: 0.3s ease;
}
@media (min-width: 767px) {
  .areas__button-wrapper a:hover {
    background: rgba(255, 247, 0, 0.758);
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.5);
  }
}
@media (max-width: 767px) {
  .areas__button-wrapper a {
    height: 50px;
    padding: 15px 40px 15px 40px;
    font-size: 16px;
  }
}
@media (max-width: 479px) {
  .areas__button-wrapper a {
    height: 45px;
    padding: 15px 30px 15px 30px;
    font-size: 14px;
  }
}
@media (max-width: 380px) {
  .areas__button-wrapper a {
    height: 40px;
    padding: 15px 20px 15px 20px;
    font-size: 12px;
  }
}

.section-form {
  background: #000;
  color: #FFF;
  padding: 40px 0 50px 0;
}
.section-form__row {
  display: flex;
  gap: 100px;
}
@media (max-width: 992px) {
  .section-form__row {
    flex-direction: column-reverse;
    gap: 10px;
  }
}
.section-form__heading-wrapper {
  color: #FFF;
  font-family: "Code-Pro-Bold";
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 37px;
}
@media (max-width: 992px) {
  .section-form__heading-wrapper img {
    width: 60px;
  }
}
@media (max-width: 992px) {
  .section-form__heading-wrapper {
    font-size: 30px;
    gap: 22px;
  }
}
@media (max-width: 479px) {
  .section-form__heading-wrapper {
    font-size: 22px;
    gap: 15px;
  }
}
@media (max-width: 380px) {
  .section-form__heading-wrapper {
    font-size: 17px;
  }
}
.section-form__heading-wrapper h2 {
  max-width: 920px;
}
.section-form__text {
  color: #FFF;
  font-family: "Roboto";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px;
  max-width: 950px;
}
@media (max-width: 992px) {
  .section-form__text {
    font-size: 16px;
    line-height: 1.3;
    max-width: 700px;
    margin-top: 15px;
  }
}
@media (max-width: 479px) {
  .section-form__text {
    font-size: 14px;
    line-height: 1.2;
    max-width: 100%;
  }
}
.section-form__form-wrapper {
  max-width: 460px;
  width: 100%;
  padding-top: 80px;
}
@media (max-width: 992px) {
  .section-form__form-wrapper {
    padding-top: 10px;
  }
}
.section-form__input-wrapper input, .section-form__input-wrapper textarea {
  background: none;
  width: 100%;
  height: 60px;
  border: none;
  border-bottom: 1px solid #777;
  resize: none;
  color: #FFF;
}
@media (max-width: 479px) {
  .section-form__input-wrapper input, .section-form__input-wrapper textarea {
    height: 50px;
  }
}
.section-form__input-wrapper textarea {
  margin-top: 20px;
  outline: none;
  height: 40px;
}
.section-form__input-wrapper input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  /* Прозрачный фон */
  background-color: transparent !important;
  /* Прозрачный фон */
  color: #fff !important;
  /* Наследуем цвет текста */
  -webkit-text-fill-color: #ffffff !important;
  /* Наследуем цвет заполненного текста */
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  /* Убираем анимацию заливки */
}
.section-form__button-wrapper {
  margin-top: 35px;
}
.section-form__button-wrapper button {
  display: inline-flex;
  height: 59px;
  padding: 15px 50px;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  background: #F8F200;
  color: #000;
  font-family: "Roboto";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (min-width: 767px) {
  .section-form__button-wrapper button:hover {
    background: rgba(255, 247, 0, 0.758);
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.5);
  }
}
@media (max-width: 380px) {
  .section-form__button-wrapper button {
    height: 50px;
    padding: 15px 40px;
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  .section-form__img-wrapper {
    max-width: 450px;
  }
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  color: #FFF;
  font-family: "Roboto";
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 600px) {
  .checkbox-wrapper {
    font-size: 16px;
    display: flex;
    align-items: center;
  }
}
@media (max-width: 479px) {
  .checkbox-wrapper {
    font-size: 14px;
  }
}
@media (max-width: 380px) {
  .checkbox-wrapper {
    font-size: 11px;
  }
}
.checkbox-wrapper input[type=checkbox] {
  display: none;
}
.checkbox-wrapper input[type=checkbox] + label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
}
.checkbox-wrapper input[type=checkbox] + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: -3px;
  width: 20px;
  height: 20px;
  border: 1px solid #FFF;
  background: none;
}
@media (max-width: 380px) {
  .checkbox-wrapper input[type=checkbox] + label:before {
    top: -5px;
  }
}
.checkbox-wrapper input[type=checkbox]:checked + label:before {
  background: url("../img/Check.png") no-repeat center center;
  width: 20px;
  height: 20px;
}

.form-group-detail-msg {
  display: block;
  margin-left: 4px;
  font-size: 12px;
  color: #F8F200;
  line-height: 12px;
  margin-top: 12px;
}

.footer-map {
  width: 100%;
  padding: 40px 0;
  background-color: #000000;
  overflow: hidden;
}

.footer-map__wrapper {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-map__left, .footer-map__map {
  width: 50%;
}

.footer-map__title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
  font-family: "Code-Pro-Bold";
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 600px) {
  .footer-map__title img {
    width: 60px;
  }
}
@media (max-width: 479px) {
  .footer-map__title img {
    width: 40px;
  }
}
@media (max-width: 767px) {
  .footer-map__title {
    font-size: 30px;
  }
}
@media (max-width: 600px) {
  .footer-map__title {
    font-size: 22px;
  }
}
@media (max-width: 479px) {
  .footer-map__title {
    font-size: 17px;
  }
}

.footer-map__text {
  font-size: 16px;
  line-height: 1.5;
  color: #ffffff;
  font-family: "Code-Pro-LC";
  position: relative;
  padding-left: 40px;
}
@media (max-width: 767px) {
  .footer-map__text {
    font-size: 14px;
  }
}
@media (max-width: 600px) {
  .footer-map__text {
    font-size: 12px;
  }
}
@media (max-width: 1024px) {
  .footer-map__text {
    padding-left: 0;
  }
}

.footer-map__map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

/* Адаптив для планшетов и мобильных */
@media (max-width: 1024px) {
  .footer-map__wrapper {
    flex-direction: column;
  }
  .footer-map__left, .footer-map__map {
    width: 100%;
  }
  .footer-map__map iframe {
    min-height: 300px;
  }
}
.footer__wrapper {
  background: #fff;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .footer__wrapper {
    flex-direction: column;
    gap: 20px;
    justify-content: center;
  }
}
.footer__adress {
  color: #000;
  font-family: "Roboto";
  font-size: 18px;
  font-weight: 400;
  padding-left: 40px;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .footer__adress {
    padding-left: 0;
  }
}
@media (max-width: 479px) {
  .footer__adress {
    font-size: 13px;
    text-align: center;
  }
}
.footer__links {
  padding-right: 40px;
}
@media (max-width: 767px) {
  .footer__links {
    padding-right: 0;
  }
}
.footer__link {
  color: #000;
  font-family: "Roboto";
  font-size: 18px;
  font-weight: 400;
  border-bottom: transparent 1px solid;
  transition: 0.3s ease;
}
@media (max-width: 479px) {
  .footer__link {
    font-size: 13px;
  }
}
.footer__link:hover {
  border-bottom: #000 1px solid;
}
.footer__copyright {
  background: #000;
  color: #fff;
  text-align: center;
  width: 100%;
  margin-bottom: -1px;
  color: #FFF;
  font-family: "Roboto";
  font-size: 12px;
  font-weight: 400;
  padding: 13px 0;
}

.burger {
  display: none;
  position: relative;
  cursor: pointer;
  padding: 5px;
  justify-content: flex-end;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 1140px) {
  .burger {
    display: flex;
  }
}
.burger span {
  display: block;
  height: 3px;
  margin-bottom: 5px;
  background-color: #000000;
  border-radius: 2px;
  transition: 0.3s ease;
  width: 20px;
}
.burger span:nth-child(2) {
  margin-bottom: 0px;
  width: 35px;
}
.burger span.active {
  background-color: #000;
}
.burger p {
  margin-top: 1px;
  color: #000;
  font-family: Garamond;
  font-size: 13px;
  font-weight: 300;
}

.active {
  display: flex;
}

.lock {
  display: none;
}

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

.container--team {
  max-width: 1150px;
}
@media (max-width: 600px) {
  .container--team {
    padding: 0 10px;
  }
}