@charset "UTF-8";
.header__bonus-wrap {
  display: flex;
  width: 380px;
  padding: 16px 20px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-radius: 0px 0px 8px 8px;
  background: var(--Main-Back, #000);
  position: absolute;
  top: 61px;
  right: -3px;
  display: none;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  position: absolute; /* Для удобного позиционирования */
  z-index: 100;
}
@media (max-width: 768px) {
  .header__bonus-wrap {
    width: 320px;
  }
}

.header__bonus-wrap.show {
  display: block;
  opacity: 1;
}

.header__bonus-title {
  color: var(--Main-White, #FFF);
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}

.header__bonus-item-info {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  border-radius: 4px;
  align-items: center;
}
.header__bonus-item-info img {
  width: 64px;
  height: 64px;
}

.header__bonus-item {
  padding: 16px;
  background: var(--Main-White, #FFF);
  margin-bottom: 16px;
}

.header__bonus-item-text {
  color: var(--Main-Back, #000);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.header__bonus-item-button {
  color: var(--Main-Back, #000);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  max-height: 40px;
  font-family: Montserrat;
}

.header {
  padding: 16px;
  background: #21468B;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}
.header__container {
  max-width: 1920px;
  padding: 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .header__container {
    padding: 0;
  }
}
.header__bonus-item-img img {
  object-fit: contain;
}
.header__mobile-text {
  display: none;
}
@media (max-width: 768px) {
  .header__mobile-text {
    display: flex;
    color: white;
  }
}
.header__logo img {
  height: 44px;
}
@media (max-width: 768px) {
  .header__logo img {
    width: 106px;
    height: 32px;
  }
}
.header__menu, .header #menu-header_menu-1 {
  display: flex;
  gap: 60px;
  list-style: none;
  align-items: center;
}
.header__menu li, .header #menu-header_menu-1 li {
  color: var(--Main-White, #FFF);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
}
.header__icons {
  gap: 8px;
}
@media (max-width: 768px) {
  .header__icons {
    display: flex;
  }
}
.header__bonus {
  height: 40px;
  width: 40px;
  border-radius: 4px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media (max-width: 768px) {
  .header__bonus {
    height: 32px;
    width: 32px;
  }
}

.pulsing-circle {
  width: 10px;
  height: 10px;
  background-color: #FFC400;
  border-radius: 50%;
  animation: pulse 1s infinite;
  position: absolute;
  right: -4px;
  top: -4px;
}

@keyframes pulse {
  0%, 100% {
    width: 10px;
    height: 10px;
  }
  50% {
    width: 14px;
    height: 14px;
  }
}
.header__menu {
  display: none;
}
@media (max-width: 768px) {
  .header__menu {
    display: none;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
  }
}

/* Класс для отображения меню */
.header__menu.open {
  display: block;
  opacity: 1;
  max-height: 300px; /* Максимальная высота меню (измените по необходимости) */
}
.header__menu.open .menu {
  display: flex;
  gap: 0px !important;
  list-style: none;
  align-items: flex-start !important;
  position: fixed;
  height: 100vh;
  width: 100%;
  top: 0;
  left: 0;
  flex-direction: column;
  background: black;
  bottom: 0;
  z-index: 11;
}
.header__menu.open .menu li {
  padding: 20px;
}

/* Анимация для иконки меню */
.mobile-btn-wrap img.rotate {
  transform: rotate(90deg);
  transition: transform 0.3s ease-out;
}

@media (max-width: 768px) {
  .mobile-btn-wrap {
    display: block;
  }
}

.menu-close-btn {
  display: none;
  font-size: 24px;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
}

/* Класс для отображения крестика */
.header__menu.open .menu-close-btn {
  display: block;
}

.footer {
  background: #ECEAEA;
  margin-top: 48px;
  padding: 48px;
}
@media (max-width: 768px) {
  .footer {
    padding: 24px;
  }
}
.footer__logo-img {
  height: 48px;
}
.footer__logo {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 168px;
  height: 48px;
}
.footer__top-text {
  color: var(--Main-Back, #000);
  /* Mountserrat/Regular/14 */
  font-family: Montserrat;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  text-align: justify;
}
@media (max-width: 768px) {
  .footer__top-text {
    text-align: initial;
  }
}
.footer__soclinks {
  display: flex;
  gap: 8px;
}
.footer__soclinks-item {
  display: flex;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  border: 1px solid var(--Main-Back, #000);
}
.footer__soclinks-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer__wrap {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--Main-Back, #000);
  padding: 0 0 32px 0;
  gap: 60px;
}
@media (max-width: 768px) {
  .footer__wrap {
    flex-direction: column;
    gap: 16px;
  }
}
.footer__list ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}
.footer__list li {
  margin: 12px 0;
}
.footer__list a {
  color: var(--Main-Back, #000);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
}
.footer__list-1 {
  position: relative;
}
.footer__title {
  position: absolute;
  color: var(--Main-Back, #000);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.footer__imgs {
  display: flex;
  gap: 24px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.footer__partners-title {
  color: var(--Main-Back, #000);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.footer__partners {
  padding: 24px 0;
  border-bottom: 1px solid var(--Main-Back, #000);
}
.footer__submenu {
  padding: 32px 0;
}
.footer__submenu ul {
  display: flex;
  list-style: none;
  padding: 0;
  gap: 24px;
}
@media (max-width: 768px) {
  .footer__submenu ul {
    flex-wrap: wrap;
  }
}
.footer__submenu ul li {
  color: var(--Main-Back, #000);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration-line: underline;
}
.footer__copyright {
  padding: 0;
  color: var(--Main-Back, #000);
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 20px;
  align-items: flex-end;
}

.page-wrap {
  margin-top: 30px;
}
.page-wrap h1 {
  margin-bottom: 30px;
}

.page .banner {
  margin-top: 76px;
  padding: 60px 0;
  background: linear-gradient(84deg, #2263E1 33.95%, #12367B 85.95%);
  overflow: hidden;
}
.page .banner__coin-1 {
  position: absolute;
  bottom: -91px;
  left: -5%;
}
@media (max-width: 768px) {
  .page .banner__coin-1 {
    display: none;
  }
}
.page .banner__coin-2 {
  position: absolute;
  bottom: -91px;
  right: -13%;
}
@media (max-width: 768px) {
  .page .banner__coin-2 {
    display: none;
  }
}
.page .banner__coin-3 {
  position: absolute;
  top: -92px;
  right: 10%;
}
@media (max-width: 768px) {
  .page .banner__coin-3 {
    display: none;
  }
}
.page .banner__coin-4 {
  position: absolute;
  top: -92px;
  left: -8%;
}
@media (max-width: 768px) {
  .page .banner__coin-4 {
    display: none;
  }
}
@media (max-width: 768px) {
  .page .banner {
    margin-top: 64px;
  }
}
.page .banner__page-title {
  color: #FFF;
  font-family: Montserrat;
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  margin-bottom: 30px;
  text-align: center;
  font-size: 28px !important;
  z-index: 10;
  position: relative;
}
.page .banner__page-content {
  color: var(--Main-White, #FFF);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.team {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  gap: 20px;
}
.team__item {
  display: flex;
  gap: 40px;
  padding: 15px;
  border-radius: 10px;
  background: white;
}
@media (max-width: 768px) {
  .team__item {
    flex-direction: column;
    align-items: center;
  }
}
.team__item-photo img {
  min-width: 120px;
  min-height: 120px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .team__item-photo img {
    min-width: 100px;
    min-height: 100px;
    width: 100px;
    height: 100px;
  }
}

.wpcf7 form label {
  color: #000;
  font-size: 16px;
  line-height: 1.2em;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wpcf7 form .wpcf7-form-control {
  width: 100%;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 25px;
  padding: 12px 20px;
}
.wpcf7 form .wpcf7-form-control.wpcf7-not-valid {
  border: 1px solid #dda4a4;
}
.wpcf7 form textarea {
  resize: none;
}
.wpcf7 form .wpcf7-submit {
  cursor: pointer;
  position: relative;
  color: #fff;
  background: #FFC400;
  border: none;
  font-size: 20px;
  font-weight: 400;
}
.wpcf7 form .ajax-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.wpcf7 form .wpcf7-not-valid-tip {
  display: none;
}
.wpcf7 form .wpcf7-response-output {
  margin: 10px;
  font-size: 12px;
  padding: 5px;
}

.page-contact-title {
  margin-top: 110px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 3px solid #FFC400;
}

.form-wrap {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  border-radius: 15px;
}
@media (max-width: 768px) {
  .form-wrap {
    flex-direction: column;
  }
}

.form {
  width: 50%;
  background: #fff;
  -webkit-box-shadow: 0 23px 58px rgba(0, 0, 0, 0.18);
  box-shadow: 0 23px 58px rgba(0, 0, 0, 0.18);
  padding: 30px;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .form {
    width: 100%;
  }
}

.form__text {
  width: 50%;
  padding: 30px 0;
}
@media (max-width: 768px) {
  .form__text {
    width: 100%;
  }
}

.banner__contact-info {
  width: 100%;
  margin-top: 30px;
}