@charset "UTF-8";
:root {
  --yellow: #FBF503;
  --orange: linear-gradient(130deg, #FF7B4E 15.57%, #FF584E 95.03%);
  --orange2: linear-gradient(20deg, #e38566 15.57%, #df231a 95.03%);
}

* {
  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: "Poppins", sans-serif;
  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;
  color: #333;
}

h1 {
  font-size: 45px;
  font-weight: 700;
  line-height: 140%;
}
@media (max-width: 767px) {
  h1 {
    font-size: 40px;
  }
}
@media (max-width: 650px) {
  h1 {
    font-size: 35px;
  }
}
@media (max-width: 479px) {
  h1 {
    font-size: 23px;
    line-height: 1.2;
  }
}

h2 {
  color: var(--Grayscale-Black, #000);
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}
@media (max-width: 767px) {
  h2 {
    font-size: 40px;
  }
}
@media (max-width: 479px) {
  h2 {
    font-size: 30px;
  }
}

.subtitle {
  color: var(--Grayscale-Black, #000);
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 160%;
  /* 28.8px */
}

h3 {
  font-size: 36px;
  font-weight: 600;
  line-height: 170%;
}
@media (max-width: 767px) {
  h3 {
    font-size: 30px;
  }
}
@media (max-width: 479px) {
  h3 {
    font-size: 20px;
    line-height: 1.1;
  }
}
@media (max-width: 380px) {
  h3 {
    font-size: 16px;
  }
}

h5 {
  max-width: 300px;
  color: var(--Grayscale-50, #333);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}
@media (max-width: 767px) {
  h5 {
    font-size: 20px;
  }
}
@media (max-width: 479px) {
  h5 {
    font-size: 15px;
    line-height: 1.1;
  }
}

p {
  color: #5b5b5b;
  font-size: 18px;
  font-weight: 400;
}

.form-group-detail-msg {
  margin-top: 15px;
  text-align: center;
  font-size: 22px;
  color: rgb(5, 90, 26);
  display: block;
}
@media (max-width: 600px) {
  .form-group-detail-msg {
    font-size: 16px;
  }
}
@media (max-width: 429px) {
  .form-group-detail-msg {
    font-size: 12px;
  }
}

@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: 30px 0;
  width: 100%;
  position: relative;
  z-index: 20;
}
.header__row {
  display: flex;
  align-items: center;
  position: relative;
  align-items: center;
  gap: 150px;
}
@media (max-width: 1300px) {
  .header__row {
    gap: 10px;
  }
}
@media (max-width: 600px) {
  .header__row {
    gap: 50px;
  }
}
@media (max-width: 479px) {
  .header__row {
    gap: 10px;
  }
}
@media (max-width: 1140px) {
  .header__row {
    justify-content: space-between;
  }
}
.header__logo-wrapper {
  width: -moz-max-content;
  width: max-content;
  margin-right: 20px;
}
@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__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1%;
  position: relative;
  width: 100%;
  z-index: 2;
}
@media (max-width: 1350px) {
  .header__nav {
    gap: 2%;
  }
}
@media (max-width: 1200px) {
  .header__nav {
    gap: 20px;
    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: flex-start;
  gap: 15px;
  width: 100%;
  height: 100dvh;
  background: linear-gradient(to bottom right, #2C3878, #011107);
  z-index: 1000;
  margin-left: 0px;
  padding-left: 40px;
  padding-top: 30px;
}
.header__nav.active::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 700px;
  height: 100%;
  background: url("../../img/main/regnum_picture_17186193771041_big-Photoroom.webp") no-repeat;
  background-size: cover;
  z-index: -1;
}
@media (max-width: 800px) {
  .header__nav.active::before {
    width: 400px;
  }
}
@media (max-width: 600px) {
  .header__nav.active::before {
    width: 300px;
    filter: blur(2px);
  }
}
@media (max-width: 479px) {
  .header__nav.active::before {
    width: 350px;
  }
}
@media (max-width: 767px) {
  .header__nav.active {
    padding-left: 20px;
  }
}
.header__nav-close {
  display: none;
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
  color: #ffffff;
  font-size: 22px;
}
@media (max-width: 1140px) {
  .header__nav-close {
    display: block;
  }
}
.header__nav-list {
  display: flex;
  gap: 40px;
  list-style: none;
}
.header__nav-list.active {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
@media (max-width: 1140px) {
  .header__nav-list.active {
    gap: 50px;
    margin-bottom: 40px;
  }
}
@media (max-width: 1250px) {
  .header__nav-list {
    gap: 30px;
  }
}
@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: #333;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
  padding-bottom: 2px;
  color: #333;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.header__nav-link.active {
  position: relative;
}
@media (min-width: 1140px) {
  .header__nav-link.active {
    font-weight: 600;
  }
}
.header__nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1px;
  width: 0;
  height: 2px;
  background-color: #2C3878;
  transition: width 0.3s ease;
}
@media (min-width: 940px) {
  .header__nav-link:hover::after {
    width: 95%;
  }
}
@media (max-width: 1140px) {
  .header__nav-link {
    color: #ffffff;
    font-size: 28px;
  }
}
@media (max-width: 992px) {
  .header__nav-link {
    font-size: 24px;
    color: #ffffff;
  }
}
.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;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease;
  background: #2C3878;
  display: flex;
  justify-content: center;
  color: #FFF;
  font-size: 14px;
}
@media (max-width: 1140px) {
  .header__nav-button {
    border: none;
    background: none;
    box-shadow: none;
    padding: 0;
    justify-content: flex-start;
    border-radius: 0;
  }
}
.header__nav-button:hover::before {
  left: 100%;
}
@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 */
}

.header__logo-text1 {
  color: var(--Grayscale-Black, #000);
  font-feature-settings: "liga" off, "clig" off;
  font-size: 29px;
  font-style: normal;
  font-weight: 700;
}
@media (max-width: 600px) {
  .header__logo-text1 {
    font-size: 20px;
  }
}

.header__logo-text2 {
  color: var(--Grayscale-Black, #000);
  font-feature-settings: "liga" off, "clig" off;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  margin-top: 10px;
}
@media (max-width: 600px) {
  .header__logo-text2 {
    font-size: 15px;
  }
}

.header__nav--form {
  justify-content: center;
}

.header__nav-list--form {
  gap: 80px;
}
@media (max-width: 1220px) {
  .header__nav-list--form {
    gap: 40px;
  }
}

.promo__wrapper {
  position: relative;
  width: 100%;
}
.promo__decor-text {
  color: var(--Grayscale-50, #333);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  position: absolute;
  right: -90px;
  top: 130px;
  transform: rotate(-90deg);
}
@media (max-width: 1250px) {
  .promo__decor-text {
    font-size: 14px;
    right: -70px;
  }
}
@media (max-width: 767px) {
  .promo__decor-text {
    display: none;
  }
}
.promo__heading-span {
  display: inline-block;
  position: relative;
  width: 100%;
}
.promo__heading-span::after {
  content: "";
  position: absolute;
  top: 30px;
  right: 0;
  width: 65%;
  height: 1px;
  background-color: #000;
}
@media (max-width: 1250px) {
  .promo__heading-span::after {
    width: 50%;
  }
}
@media (max-width: 900px) {
  .promo__heading-span::after {
    width: 30%;
  }
}
@media (max-width: 600px) {
  .promo__heading-span::after {
    display: none;
  }
}
.promo__heading-wrapper {
  position: relative;
  width: 100%;
}
.promo h1 {
  margin-top: 30px;
  position: relative;
}
.promo__img-wrapper {
  position: relative;
  margin-top: 130px;
}
@media (max-width: 992px) {
  .promo__img-wrapper {
    margin-top: 80px;
  }
}
@media (max-width: 600px) {
  .promo__img-wrapper {
    margin-top: 50px;
  }
}
@media (max-width: 479px) {
  .promo__img-wrapper {
    margin-top: 30px;
  }
}
.promo__img-wrapper img {
  width: 100%;
}
.promo .decor {
  background: #2C3878;
  color: #fff;
  padding: 44px 33px;
  display: flex;
  gap: 60px;
  flex-direction: column;
  max-width: 252px;
  max-height: 525px;
  text-align: center;
  position: absolute;
  top: -200px;
  right: 120px;
}
@media (max-width: 1200px) {
  .promo .decor {
    padding: 34px 14px;
    gap: 40px;
    right: 50px;
  }
}
@media (max-width: 900px) {
  .promo .decor {
    position: static;
    max-width: 100%;
    flex-direction: row;
    justify-content: space-around;
    gap: 30px;
  }
}
@media (max-width: 479px) {
  .promo .decor {
    flex-direction: column;
    gap: 10px;
    padding: 15px;
  }
}
.promo .decor .number {
  font-size: 52px;
  font-style: normal;
  font-weight: 400;
}
@media (max-width: 1200px) {
  .promo .decor .number {
    font-size: 35px;
  }
}
@media (max-width: 600px) {
  .promo .decor .number {
    font-size: 25px;
  }
}
.promo .decor .text {
  margin-top: 15px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
}
@media (max-width: 1200px) {
  .promo .decor .text {
    font-size: 12px;
  }
}
@media (max-width: 600px) {
  .promo .decor .text {
    font-size: 10px;
  }
}
@media (max-width: 479px) {
  .promo .decor .text {
    margin-top: 5px;
  }
}

.second {
  margin-top: 140px;
}
@media (max-width: 600px) {
  .second {
    margin-top: 80px;
  }
}
@media (max-width: 479px) {
  .second {
    margin-top: 40px;
  }
}
.second__wrapper {
  display: flex;
  flex-direction: column;
}
.second h3 {
  margin-top: 20px;
  line-height: 1.4;
}
@media (max-width: 479px) {
  .second h3 {
    margin-top: 0;
  }
}
.second__decor-text {
  color: var(--Grayscale-Black, #000);
  width: -moz-fit-content;
  width: fit-content;
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
  position: relative;
  display: inline-block;
}
@media (max-width: 479px) {
  .second__decor-text {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.second__decor-text::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -420px;
  width: 400px;
  height: 1px;
  background-color: #000;
}
@media (max-width: 600px) {
  .second__decor-text::after {
    width: 100%;
    right: -100px;
  }
}
@media (max-width: 479px) {
  .second__decor-text::after {
    right: -85px;
    width: 120%;
  }
}
.second__item {
  display: flex;
  align-items: flex-end;
  gap: 80px;
}
@media (max-width: 767px) {
  .second__item {
    flex-direction: column;
    gap: 20px;
  }
}
.second__item--first {
  margin-bottom: 80px;
}
@media (max-width: 479px) {
  .second__item--first {
    margin-bottom: 20px;
  }
}
.second__item-img-wrapper {
  margin-top: 50px;
  position: relative;
}
@media (max-width: 479px) {
  .second__item-img-wrapper {
    margin-top: 20px;
  }
}
.second__item-text-wrapper {
  max-width: 220px;
  color: var(--Grayscale-10, #5b5b5b);
  font-size: 18px;
  font-weight: 400;
  line-height: 160%;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .second__item-text-wrapper {
    max-width: 100%;
    padding-bottom: 40px;
  }
}
.second__item-text {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .second__item-text {
    font-size: 15px;
  }
}
.second a {
  color: var(--Grayscale-White, #FFF);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 21px */
}

.person__box {
  padding: 15px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 20px;
  position: absolute;
  top: 25px;
  right: -210px;
}
@media (max-width: 1100px) {
  .person__box {
    position: static;
  }
}
@media (max-width: 479px) {
  .person__box {
    padding: 10px;
  }
}
.person__img img {
  width: 51px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 56px;
}
@media (max-width: 479px) {
  .person__img img {
    width: 43px;
    height: 43px;
  }
}
.person__name {
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
}
@media (max-width: 479px) {
  .person__name {
    font-size: 15px;
  }
}
.person__date {
  color: #5b5b5b;
  font-size: 18px;
  font-weight: 400;
  line-height: 160%;
}
@media (max-width: 479px) {
  .person__date {
    font-size: 15px;
  }
}

.last {
  padding-top: 350px;
  padding-bottom: 100px;
}
@media (max-width: 992px) {
  .last {
    padding-top: 50px;
  }
}
@media (max-width: 479px) {
  .last {
    padding: 0px 0;
  }
}
.last-box {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 20px;
  max-width: 700px;
  background: #FFF;
  padding: 24px;
  padding-left: 0;
  position: absolute;
  top: -250px;
}
@media (max-width: 992px) {
  .last-box {
    position: static;
    padding: 14px;
    padding-left: 0;
  }
}
@media (max-width: 479px) {
  .last-box {
    gap: 15px;
    margin-top: 0;
  }
}
.last-box p {
  color: var(--Grayscale-10, #5b5b5b);
  /* Poppins/Regular/18 */
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
@media (max-width: 600px) {
  .last-box p {
    font-size: 15px !important;
  }
}
@media (max-width: 479px) {
  .last-box p {
    font-size: 12px !important;
    margin-bottom: 5px;
  }
}
.last__wrapper {
  position: relative;
}
.last__title {
  color: var(--Grayscale-50, #333);
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
}
@media (max-width: 600px) {
  .last__title {
    font-size: 25px;
  }
}
@media (max-width: 479px) {
  .last__title {
    font-size: 18px;
    line-height: 1.2;
  }
}
.last__text {
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .last__text {
    font-size: 15px !important;
  }
}
@media (max-width: 479px) {
  .last__text {
    font-size: 12px !important;
    margin-bottom: 5px;
  }
}
.last__img-wrapper {
  display: flex;
  max-width: 1050px;
  margin-left: auto;
  justify-content: flex-end;
}

.about__promo {
  margin: 0 auto;
}
.about__promo h2 {
  text-align: center;
  margin-top: 50px;
}
@media (max-width: 479px) {
  .about__promo h2 {
    margin-top: 20px;
  }
}
.about__promo-text {
  text-align: center;
  color: var(--Grayscale-Black, #000);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  max-width: 900px;
  margin: 0 auto;
  margin-top: 33px;
}
@media (max-width: 767px) {
  .about__promo-text {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.25;
  }
}
@media (max-width: 479px) {
  .about__promo-text {
    font-size: 13px;
    line-height: 1.25;
    margin-top: 10px;
  }
}
.about__promo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about__promo-img-wrapper {
  margin-top: 45px;
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 479px) {
  .about__promo-img-wrapper {
    margin-top: 27px;
    width: 100%;
    margin-bottom: 30px;
  }
}
.about__promo-img-wrapper img {
  width: 100%;
}
.about__content {
  width: 100%;
  margin-bottom: 90px;
}
.about__content-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 40px;
  width: 100%;
  gap: 40px;
}
.about__content-list li {
  display: flex;
  gap: 80px;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .about__content-list li {
    flex-direction: column;
    gap: 20px;
  }
}
.about__content-img {
  max-width: 800px;
}
.about__content-text {
  max-width: 400px;
}
@media (max-width: 767px) {
  .about__content-text {
    max-width: 100%;
  }
}
.about__content-text p {
  color: var(--Grayscale-10, #5b5b5b);
  margin-top: 30px;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
@media (max-width: 767px) {
  .about__content-text p {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.25;
  }
}
@media (max-width: 479px) {
  .about__content-text p {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.25;
  }
}

@media (max-width: 992px) {
  .about__decor-text {
    display: none;
  }
}

.team {
  text-align: center;
  padding: 30px 0;
}
@media (max-width: 479px) {
  .team {
    padding-top: 0;
  }
}
.team__wrapper {
  max-width: 1000px;
  margin: 0 auto;
}
.team__img {
  max-width: 800px;
  margin: 0 auto;
}
.team__stars {
  margin-top: 45px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 479px) {
  .team__stars {
    margin-top: 25px;
  }
}
@media (max-width: 600px) {
  .team__stars img {
    width: 30px;
  }
}
.team__text {
  margin-top: 25px;
}
.team__text h3 {
  color: #0F1F1C;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media (max-width: 600px) {
  .team__text h3 {
    font-size: 25px;
  }
}
@media (max-width: 479px) {
  .team__text h3 {
    font-size: 18px;
  }
}
.team__text p {
  margin-top: 36px;
  color: rgba(15, 31, 28, 0.5960784314);
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media (max-width: 600px) {
  .team__text p {
    font-size: 18px;
  }
}
@media (max-width: 479px) {
  .team__text p {
    font-size: 14px;
  }
}

.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: 35px;
  color: #000;
  font-family: "Roboto";
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .number-one__item {
    font-size: 16px;
  }
}
.number-one__item::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: url("../img/auto_awesome.webp") no-repeat;
  background-size: cover;
  width: 22px;
  height: 22px;
}
.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 {
  padding-top: 50px;
  padding-bottom: 40px;
}
.areas__title {
  color: #0F1F1C;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 55px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 479px) {
  .areas__title {
    font-size: 30px;
  }
}
.areas__row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  gap: 30px;
}
@media (max-width: 600px) {
  .areas__row {
    flex-direction: column;
  }
}
.areas__img {
  max-width: 380px;
  max-height: 380px;
}
.areas__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.areas__item {
  position: relative;
  padding-left: 20px;
  max-width: 350px;
  color: #0F1F1C;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
@media (max-width: 767px) {
  .areas__item {
    font-size: 16px;
  }
}
.areas__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #0F1F1C;
}

.always__wrapper {
  border-radius: 60px;
  background: linear-gradient(270deg, #112120 0%, #316949 100%);
  color: #fff;
  padding: 30px 80px;
  padding-bottom: 40px;
}
@media (max-width: 600px) {
  .always__wrapper {
    padding: 30px 20px;
    border-radius: 18px;
  }
}
.always__title {
  color: #FFF;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 55px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 767px) {
  .always__title {
    font-size: 30px;
  }
}
@media (max-width: 479px) {
  .always__title {
    font-size: 25px;
  }
}
.always__text {
  color: #FFF;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.4;
  max-width: 445px;
  margin-top: 30px;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .always__text {
    font-size: 16px;
  }
}

.contact-form {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.form__promo-wrapper h2 {
  text-align: center;
  margin-bottom: 15px;
  margin-top: 20px;
}
.form__promo-wrapper p {
  color: var(--Grayscale-Black, #000);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  max-width: 520px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.section-form__form {
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 90px;
}

.section-form__1 {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 14px;
}
@media (max-width: 479px) {
  .section-form__1 {
    flex-direction: column;
    gap: 0;
  }
}

.section-form__input-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.section-form__input-wrapper input {
  display: inline-block;
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

label {
  margin-bottom: 10px;
  margin-top: 25px;
  color: var(--Grayscale-50, #333);
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 479px) {
  label {
    font-size: 12px;
    margin-top: 15px;
    margin-bottom: 5px;
  }
}

input {
  padding: 10px;
  padding-left: 30px;
  border: 1px solid #ccc;
  font-size: 16px;
  width: 100%;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
}
@media (max-width: 479px) {
  input {
    font-size: 12px;
    padding-left: 15px;
  }
}
input::-moz-placeholder {
  color: var(--Grayscale-10, #5b5b5b);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
}
input::placeholder {
  color: var(--Grayscale-10, #5b5b5b);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
}

button {
  color: #fff;
  padding: 10px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
  margin: 0 auto;
  margin-top: 40px;
}

/* Адаптивные стили */
@media (min-width: 600px) {
  .form-group {
    flex-direction: row;
    justify-content: space-between;
  }
  .form-group > input {
    flex: 1;
    margin-right: 10px;
  }
  .form-group > input:last-child {
    margin-right: 0;
  }
}
.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__top {
  background: var(--Primary-Blue-100, #2C3878);
  color: #FFF;
  color: var(--Grayscale-White, #FFF);
  padding: 0 10px;
}
.footer__top div {
  text-align: center;
  max-width: 950px;
  margin: 0 auto;
  padding: 35px 0;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 170%;
}
@media (max-width: 767px) {
  .footer__top div {
    font-size: 24px;
    padding: 15px 0;
  }
}
@media (max-width: 479px) {
  .footer__top div {
    font-size: 16px;
  }
}
.footer__bot {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 55px;
  margin-bottom: 50px;
}
@media (max-width: 479px) {
  .footer__bot {
    margin-top: 30px;
  }
}
.footer__bot-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 992px) {
  .footer__bot-row {
    flex-direction: column-reverse;
    gap: 20px;
    text-align: center;
  }
}
.footer__bot-logo-text-wrapper {
  display: flex;
  flex-direction: column;
}
.footer__bot-logo-text1 {
  color: var(--Grayscale-Black, #000);
  font-size: 31.93px;
  font-style: normal;
  font-weight: 900;
  line-height: 170%;
}
@media (max-width: 767px) {
  .footer__bot-logo-text1 {
    font-size: 24px;
  }
}
.footer__bot-logo-text2 {
  color: var(--Grayscale-Black, #000);
  font-feature-settings: "liga" off, "clig" off;
  font-size: 23px;
  font-style: normal;
  font-weight: 300;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .footer__bot-logo-text2 {
    font-size: 18px;
  }
}
.footer__bot-text {
  color: var(--Grayscale-50, #333);
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.4;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .footer__bot-text {
    font-size: 24px;
    margin-top: 20px;
  }
}
.footer__bot-right-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer__bot-right-text {
  margin-bottom: 20px;
  position: relative;
  color: var(--Grayscale-50, #333);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
}
@media (max-width: 767px) {
  .footer__bot-right-text {
    font-size: 14px;
  }
}
.footer__bot-right-text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  width: 14px;
  height: 14.018px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: #333;
}

.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;
  background-color: #000000;
}
.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;
}

.search__content {
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
  width: 100%;
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .search__content {
    margin-bottom: 50px;
    gap: 30px;
  }
}
.search__content span {
  width: 258px;
  height: 96px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 20px;
  color: var(--Grayscale-50, #333);
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
}
@media (max-width: 479px) {
  .search__content span {
    font-size: 16px;
    padding: 10px;
    text-align: center;
    width: 210px;
    height: 80px;
  }
}
.search__content h5 {
  max-width: 100%;
}
@media (max-width: 479px) {
  .search__content h5 {
    font-size: 18px;
  }
}
.search__content p {
  line-height: 1.4;
}
@media (max-width: 479px) {
  .search__content p {
    font-size: 16px;
  }
}
.search__item {
  display: flex;
  gap: 80px;
  align-items: center;
  justify-content: center;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #6F6F6F;
  width: 100%;
  max-width: 1100px;
}
@media (max-width: 992px) {
  .search__item {
    flex-direction: column;
  }
}
@media (max-width: 479px) {
  .search__item {
    gap: 20px;
    padding: 15px;
  }
}
.search__item-img {
  max-width: 290px;
  position: relative;
}
.search__item-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 400px;
}
@media (max-width: 992px) {
  .search__item-text {
    max-width: 100%;
    text-align: center;
  }
}

.about__promo-text--search {
  margin-bottom: 40px;
  max-width: 715px;
}

.about__promo-text--info {
  text-align: left;
  color: var(--Grayscale-10, #5b5b5b);
  margin-left: 0;
  margin-top: 20px;
}

.second__decor-text--info {
  text-align: left;
  margin-top: 70px;
}
@media (max-width: 992px) {
  .second__decor-text--info::after {
    right: -203px;
    width: 175px;
  }
}
@media (max-width: 519px) {
  .second__decor-text--info::after {
    display: none;
  }
}
@media (max-width: 479px) {
  .second__decor-text--info {
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 12px !important;
  }
}

.info__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 80px;
}
@media (max-width: 1100px) {
  .info__items {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    margin-bottom: 80px;
    margin-top: 40px;
  }
}
@media (max-width: 800px) {
  .info__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
}

.card {
  text-align: center;
  max-width: 400px;
  height: 450px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 33px;
  background: var(--Grayscale-White, #FFF);
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1100px) {
  .card {
    max-width: 100%;
  }
}
@media (max-width: 800px) {
  .card {
    max-width: 400px;
    margin: 0 auto;
  }
}
@media (max-width: 479px) {
  .card {
    padding: 18px;
    height: 100%;
  }
}
.card__avatar {
  width: 63px;
  height: 63px;
  flex-shrink: 0;
  background: #D9D9D9;
  text-align: center;
  border-radius: 50%;
  margin: 0 auto;
}
.card__title {
  text-align: center;
  width: 100%;
  max-width: 100%;
}
@media (max-width: 600px) {
  .card__title {
    line-height: 1.3;
    font-size: 20px;
  }
}
.card__text {
  line-height: 1.5;
}
@media (max-width: 600px) {
  .card__text {
    font-size: 16px;
    line-height: 1.3;
  }
}

.info__promo-title {
  text-align: left !important;
  width: 100%;
  font-size: 36px;
  margin-top: 20px !important;
}
@media (max-width: 479px) {
  .info__promo-title {
    line-height: 1.1 !important;
  }
}

.about__promo-wrapper--info {
  align-items: flex-start;
}

.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0px 20px;
}
@media (max-width: 600px) {
  .container {
    padding: 0px 10px;
  }
}

.container--header {
  max-width: 1360px;
}

.btn-main-blue, .header__nav-button-link {
  border: 1px solid #3C3C3C;
  background: #2C3878;
  padding: 14px 32px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  width: 180px;
  z-index: 10;
}
.btn-main-blue::before, .header__nav-button-link::before {
  content: "";
  position: absolute;
  top: 0%;
  left: -100%;
  width: 100%;
  height: 300%;
  background: #4351a2;
  transition: left 0.5s ease;
  z-index: -1;
}
@media (max-width: 1140px) {
  .btn-main-blue::before, .header__nav-button-link::before {
    display: none;
  }
}
.btn-main-blue:hover::before, .header__nav-button-link:hover::before {
  left: 100%;
}

@media (max-width: 1140px) {
  .header__nav-button-link {
    border: none;
    font-size: 25px;
    width: -moz-fit-content;
    width: fit-content;
    font-weight: 700;
    padding: 20px 30px;
  }
}