/* HEADER */

.header {
  background-color: #1d2730;
}

.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.header__logo img {
  width: 150px;
}

.header__list {
  display: flex;
  gap: 72px;
}

.header__list-link {
  color: #fff;
  position: relative;
}

.action-btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 12px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  margin: 0 2px;
  background: none;
  border: none;
  background-color: #298e52;
}
.main__content p {
    font-size: 16px;
    color: #000;
    padding: 11px 0 22px 0;
    line-height: 150%;
    letter-spacing: 1px;
    max-width: 980px;
    width: 100%;
}

.action-btn:hover {
    background-color: #2ca05b;
}

@media (max-width: 640px) {
.action-btn {
    padding: 8px 12px;
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    font-size: 10px;
    margin: 0 2px;
}
}

.header__list-link::before {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  left: 0;
  bottom: -6px;
  background-color: #87a6bf;
  border-radius: 10px;
}

.header__list-link:hover::before {
  width: 30%;
}

.header__bottom {
  background-color: #3960ac;
  padding: 8px 0;
}

.header__bottom_list {
  position: relative;
}

.header__bottom_list-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: 22px;
  background-color: #1d2730;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100px;
  padding: 12px 0 12px 22px;
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.header__bottom_list-title {
  font-size: 14px;
  font-weight: 300;
  color: #fff;
}

.haeder__bottom-dep {
  color: #fff;
}

.header__bottom_list:hover + .header__bottom_list-dropdown {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
}

.header__bottom .container {
  display: flex;
  justify-content: flex-end;
  gap: 70px;
  align-items: center;
  padding-right: 52px;
}

.header__bottom_list-title {
  font-size: 14px;
  font-weight: 300;
  color: #fff;
}

.header__bottom_list-item {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}

/* hero */

.hero {
  background-color: #1d2730;
  padding: 82px 0;
}

.hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero__content {
  max-width: 820px;
  width: 100%;
}

.hero__content-title {
  font-weight: 700;
  font-size: 51px;
  line-height: 124.69%;
  padding-bottom: 10px;
  position: relative;
  margin: 0 0 20px;
}

.hero__content-subtitle {
  max-width: 420px;
  width: 100%;
}

.hero__bonus {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  position: relative;
  padding: 22px 32px;
}

.hero__bonus .price {
  display: block;
  position: absolute;
  top: -40px;
  background-color: #1d2730;
  padding: 20px;
  border-radius: 100px;
  animation: priceBonus 2s infinite;
}

@keyframes priceBonus {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  10% {
    transform: scale(1);
  }
}

.hero__bonus-bonus {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero__bonus-bonus span {
  font-size: 42px;
}

.hero__bonus button {
  position: relative;
  bottom: 10px;
}

.hero__bonus input {
  font-size: 72px;
  color: #fff;
  font-weight: bold;
  font-family: sans-serif;
  width: 200px;
  text-align: center;
}

.hero__bonus-navigation {
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 170px;
}

.hero__bonus .subtitle-bonus {
  padding: 16px 0 6px 0;
  font-size: 14px;
}

.hero__bonus-navigation img:nth-child(1) {
  display: block;
  width: 130px;
  animation: imgAnimatoonBonus 0.6s infinite;
}

.hero__bonus-navigation img:nth-child(2) {
  display: block;
  width: 200px;
  animation: imgAnimatoonBonusSec 0.6s infinite;
  transform: translateY(-50px);
}

@keyframes imgAnimatoonBonus {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}

@keyframes imgAnimatoonBonusSec {
  0% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.6;
  }
}

.list-anchor ul {
  background: #fff;
  border: 1px solid #1d2730;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.07);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.07);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  padding: 14px 20px;
  margin-top: 30px !important;
  border-radius: var(--border-radius);
  border-radius: 22px;
}

.list-anchor ul li {
  padding-right: 45px;
}

.list-anchor ul a {
  text-decoration: none;
  color: #838383;
  font-size: 12px;
  padding: 4px 0;
}

.list-anchor ul a:hover {
  text-decoration: underline;
  color: #1d2730;
}

.table {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 20px;
  border: 1px solid #dddddd;
  border-collapse: collapse;
  font-weight: bold;
}

.table td {
  color: #1d2730;
  border: 1px solid #3960ac;
  padding: 5px;
}

.main__content ul {
  padding-left: 42px;
}

.main__content li {
  padding: 4px 0;
  list-style: square;
}

.main__content ol {
  padding-left: 22px;
}

.main__content ol li {
  margin: 10px 0;
  list-style: none;
}

.main__content ol li span {
  background-color: #3960ac;
  padding: 6px 10px;
  border-radius: 100px;
  margin: 0 12px 0 0;
}

.main__content ol li p {
  color: #000;
}

.info__block {
  padding: 42px;
  margin: 52px auto;
  border: 1px solid #1d2730;
  border-radius: 22px;
}

.info__block-title {
  font-size: 34px;
  color: #000;
  font-weight: bold;
  text-align: center;
}

.info__block .main__content ol {
  padding-top: 32px;
  border-top: 1px solid #3960ac;
}

.acc-info__box {
  border: 1px solid #000;
  padding: 8px 22px;
  max-height: 65px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  position: relative;
  margin-bottom: 12px;
}

.acc-info__box.active {
  max-height: 800px;
}

.acc-info__box_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.acc-info__box-title {
  font-size: 18px;
  padding: 12px 22px;
  color: #000;
}

.acc-info__box .subtitle {
  padding-left: 22px;
}

.icon-close {
  display: block;
  font-size: 42px;
  position: absolute;
  right: 30px;
  top: 30px;
}

.icon-close {
  display: none;
}

.acc-info__box i {
  font-size: 22px;
  position: relative;
  top: 2px;
}

.form__user input {
  width: 100%;
  padding: 12px 22px;
  border-radius: 22px;
  border: 1px solid #1d2730;
}

.form__user_input {
  display: grid;
  grid-template-columns: 70% 30%;
  gap: 32px;
}

.form__user_input_user {
  display: flex;
  align-items: center;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.form__user_input_user button {
  margin-top: 12px;
}

/* footer */

.footer {
  background-color: #1d2730;
  padding: 72px 0;
  margin-top: 102px;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__center {
  color: #fff;
}

.footer__center-list {
  display: flex;
  align-items: center;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer__center-link {
  color: #fff;
  position: relative;
}

.footer__center-link::before {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  left: 0;
  bottom: -6px;
  background-color: #87a6bf;
  border-radius: 10px;
}

.footer__center-link:hover::before {
  width: 30%;
}

.footer__start-logo {
  width: 150px;
  display: block;
}

.footer__end_soc-link {
  display: block;
}

.footer__end_soc-link i {
  background-color: #fff !important;
  font-size: 32px;
  margin: 8px 0;
  border-radius: 22px;
  padding: 10px;
}

.header__list-close,
.header__btn-open {
  display: none;
}

/* MEDIA */

@media (max-width: 1200px) {
  .form__user_input {
    display: grid;
    grid-template-columns: 50% 40%;
    gap: 32px;
  }
}
@media (max-width: 1200px) {
  .container,
  .container-hero {
    padding: 0 32px;
  }

  .header__bottom .container {
    justify-content: flex-start;
    padding-left: 32px;
  }

  .hero__content {
    max-width: 480px;
    width: 100%;
  }
}

@media (max-width: 860px) {
  .header__list {
    display: flex;
    gap: 22px;
  }

  .hero__content-title {
    font-weight: 700;
    font-size: 38px;
    line-height: 105.69%;
  }
}

@media (max-width: 760px) {
  .hero__inner {
    flex-direction: column-reverse;
  }

  .hero__bonus input {
    font-size: 48px;
  }

  .hero__content-title {
    font-size: 32px;
  }

  .hero__content {
    text-align: center;
  }

  .header__list {
    display: flex;
    gap: 22px;
    position: absolute;
    width: 100%;
    height: 100%;
    background: #1d2730;
    left: -100%;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 100;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero__content {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .header__list.active {
    left: 0;
  }

  .header__list-close {
    display: block;
    position: absolute;
    top: 32px;
    right: 32px;
  }

  .bx-window-close:before {
    font-size: 42px;
    color: #fff;
  }

  .hero__content {
    margin-top: 32px;
  }

  .form__user_input {
    display: flex;
    flex-direction: column;
  }

  .header__btn-open {
    display: block;
  }

  .header__btn-open i::before {
    color: #fff;
    font-size: 62px;
  }
}

@media (max-width: 640px) {
  .container,
  .container-hero {
    padding: 0 12px;
  }

  button {
    padding: 12px 22px;
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    margin: 0 2px;
  }

  .footer__inner {
    flex-direction: column;
    gap: 32px;
  }

  .footer__end_socli {
    display: flex;
    gap: 32px;
  }

  .hero__bonus {
    width: 70%;
  }

  .header__logo {
    width: 100px;
  }

  button {
    padding: 8px 12px;
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    font-size: 10px;
    margin: 0 2px;
  }

  .hero__content-title {
    font-size: 22px;
  }

  .hero__content-subtitle {
    max-width: 420px;
    width: 100%;
    font-size: 14px;
    max-width: 280px;
  }

  .hero__content-title {
    margin: 0 0 8px;
  }

  .hero {
    background-color: #1d2730;
    padding: 58px 0;
  }

  .header__bottom .container {
    display: flex;
    justify-content: flex-end;
    gap: 32px;
    align-items: center;
    padding-right: 52px;
  }

  .hero__bonus button {
    font-size: 16px;
    padding: 12px 22px;
  }

  .info__block {
    padding: 20px;
  }

  .main__content ol li {
    margin: 14px 0;
    list-style: none;
  }

  .info__block .main__content ol {
    padding-top: 22px;
    border-top: 1px solid #3960ac;
  }

  .title {
    margin: 32px 0 52px 0;
    font-size: 42px;
  }

  .hero__bonus {
    width: 85%;
  }

  .header__bottom .container {
    justify-content: flex-start;
  }

  .acc-info__box {
    border: 1px solid #000;
    padding: 8px 32px 0 0;
    max-height: 65px;
    overflow: hidden;
    cursor: pointer;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    position: relative;
    margin-bottom: 12px;
  }

  .header__logo {
    width: 80px;
  }
}
