* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  min-height: 100vh;
  height: 100%;
}

button:not([disabled]) {
  cursor: pointer;
}

.container {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
  max-width: 1500px;
}
@media (min-width: 768px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
    z-index: 1;
    position: relative;
  }
}

body {
  font-family: "Manrope", sans-serif;
  background-color: rgb(238, 241, 251);
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #EEF1FB;
}

.review {
  margin-bottom: 47px;
}
@media (min-width: 768px) {
  .review {
    margin-bottom: 82px;
  }
}
@media (min-width: 768px) {
  .review__title {
    margin-bottom: 82px;
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .review__title {
    flex-direction: column;
    margin-bottom: 0;
    gap: 120px;
  }
}
@media (min-width: 1200px) {
  .review__title {
    white-space: nowrap;
  }
}
.review__title img {
  display: none;
}
@media (min-width: 992px) {
  .review__title img {
    max-width: 320px;
    min-width: 320px;
    display: inline-block;
    margin-bottom: auto;
    margin-top: 120px;
  }
}
@media (min-width: 992px) {
  .review .container {
    display: flex;
    justify-content: space-between;
    gap: 80px;
  }
}
@media (min-width: 992px) {
  .review .faq__wrap {
    max-width: 844px;
  }
}
.review .faq__wrap .faq__card {
  border-radius: 10px;
}

.faq__wrap {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}
.faq__wrap .faq__card {
  background: #FFFFFF;
  border-radius: 42px;
  transition: background-color 0.3s;
}
.faq__wrap .faq__card:hover {
  background: #fafbff;
}
.faq__wrap .faq__card .card__button {
  font-weight: 800;
  font-size: 16px;
  line-height: 21px;
  color: #000000;
  background-color: transparent;
  width: 100%;
  text-align: left;
  border: none;
  position: relative;
  padding: 16px 65px 16px 24px;
}
@media (min-width: 768px) {
  .faq__wrap .faq__card .card__button {
    font-size: 24px;
    line-height: 30px;
    padding: 30px 65px 30px 24px;
  }
}
.faq__wrap .faq__card .card__button:after {
  content: "";
  background: rgb(228, 233, 246) url("../img/plus.svg") no-repeat;
  background-position: center;
  background-size: 13px;
  display: inline-block;
  width: 13px;
  height: 13px;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  padding: 6px;
}
.faq__wrap .faq__card .card__content {
  display: none;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  padding: 0 24px 24px;
  margin-bottom: 0;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.01em;
  color: #2E2E41;
}
@media (min-width: 768px) {
  .faq__wrap .faq__card .card__content {
    font-size: 16px;
    line-height: 24px;
  }
}
.faq__wrap .faq__card .card__content a {
  color: rgb(23, 135, 255);
  text-decoration: none;
}
.faq__wrap .faq__card.active .card__button:after {
  background: rgb(23, 135, 255) url("../img/minus.svg") no-repeat;
  background-position: center;
  background-size: 13px;
}
.faq__wrap .faq__card.active .card__content {
  display: block;
}

.sale-form {
  padding: 20px 24px 68px;
  background: #E4E9F6;
  border-radius: 24px;
  position: relative;
}
@media (min-width: 768px) {
  .sale-form {
    padding: 56px 42px 152px;
  }
}
@media (min-width: 1200px) {
  .sale-form {
    max-width: 680px;
    width: 100%;
  }
}
.sale-form__title {
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  color: #2E2E41;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .sale-form__title {
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 64px;
  }
}
.sale-form__desc {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #2E2E41;
  margin-bottom: 54px;
}
@media (min-width: 768px) {
  .sale-form__desc {
    margin-bottom: 36px;
    max-width: 233px;
  }
}
.sale-form .btn-send {
  width: calc(100% - 48px);
  position: absolute;
  bottom: -24px;
}
@media (min-width: 768px) {
  .sale-form .btn-send {
    width: auto;
    left: 50%;
    transform: translateX(-50%);
    padding: 9px 8px 8px 32px;
  }
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: baseline;
}

.form-group {
  width: 100%;
}

.form-control {
  padding: 20px 24px;
  background: #EEF1FB;
  border-radius: 12px;
  width: 100%;
  border: none;
  border-bottom: 2px solid #ADB6CC;
  font-size: 16px;
  line-height: 22px;
}
@media (min-width: 768px) {
  .form-control {
    font-size: 18px;
    line-height: 26px;
  }
}
.form-control:focus {
  outline: none;
  box-shadow: none;
}

.btn-send {
  padding: 7px 7px 7px 20px;
  gap: 10px;
  border-radius: 333px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #8790A7;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgb(238, 241, 251);
  white-space: nowrap;
  width: 100%;
}
@media (min-width: 768px) {
  .btn-send {
    font-size: 21px;
    line-height: 24px;
    gap: 54px;
    padding: 9px 8px 9px 32px;
    width: auto;
  }
}
.btn-send span {
  background: #CDD4E6;
  border-radius: 32px;
  padding: 12px;
  display: inline-flex;
}
@media (min-width: 768px) {
  .btn-send span {
    padding: 17px;
  }
}
@media (min-width: 768px) {
  .btn-send img {
    width: 24px;
    height: 24px;
  }
}

.convenient-method__inner {
  margin-top: 64px;
  width: 100%;
}
@media (min-width: 768px) {
  .convenient-method__inner {
    display: flex;
    flex-wrap: wrap;
  }
}
.convenient-method__title {
  display: block;
  margin-bottom: 23px;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .convenient-method__title {
    margin-right: 23px;
    max-width: 182px;
  }
}
.convenient-method__btns {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  margin-bottom: 44px;
  overflow-x: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin-left: -16px;
  margin-right: -16px;
  padding: 0 16px 10px;
}
.convenient-method__btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 13px 15px;
  gap: 8px;
  background: #DE80FF;
  color: rgb(246, 215, 255);
  border-radius: 123px;
  border: none;
  min-width: 136px;
}
.convenient-method__btn:nth-child(2n).active svg path {
  fill: #000;
}
.convenient-method__btn:last-child.active svg path:last-child {
  stroke: #000;
}
.convenient-method__btn:last-child.active svg path:first-child {
  stroke: #000;
}
.convenient-method__btn.active {
  color: rgb(46, 46, 65);
  background: #ffffff;
  position: relative;
}
.convenient-method__btn.active:after {
  content: "";
  background: url("../img/icons/circle-arrow.svg") no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.convenient-method__items {
  margin-bottom: 24px;
  width: 100%;
}
@media (min-width: 768px) {
  .convenient-method__items .form-group {
    width: 360px;
  }
}
.convenient-method__item {
  display: none;
}
.convenient-method__item.active {
  display: flex;
  gap: 8px;
  flex-direction: column;
}
@media (min-width: 768px) {
  .convenient-method__item.active {
    flex-direction: row;
  }
}

.iti.iti--show-flags {
  width: 100%;
}

.iti__country-container {
  left: 0;
  right: auto;
}

input.form-control.phone-input.iti__tel-input {
  padding-left: 36px;
}

.call-me {
  min-width: 100%;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #FFFFFF;
  display: block;
  position: relative;
  padding-left: 51px;
  margin-bottom: 64px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.call-me input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.call-me .checkmark {
  position: absolute;
  top: -6px;
  left: 0;
  height: 34px;
  width: 34px;
  border: 1px solid #F6D7FF;
  border-radius: 12px;
}

.call-me input:checked ~ .checkmark {
  background-color: #fff;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.call-me input:checked ~ .checkmark:after {
  display: block;
}

.call-me .checkmark:after {
  left: 12px;
  top: 6px;
  width: 6px;
  height: 13px;
  border: solid #e31df4;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.fake-scrollbar {
  height: 4px;
  background: #CDD4E6;
  border-radius: 4px;
  width: 80%;
  margin: 10px auto;
  position: relative;
}

.fake-scrollbar-thumb {
  width: 20%;
  height: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 16px;
  background: #CDD4E5;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: background 0.3s ease, border-radius 0.3s ease;
}

.delimiter {
  width: 4px;
  height: 10px;
  background: #EEF1FB;
  border-radius: 4px;
}

.webinar .container {
  padding: 0;
}
@media (min-width: 1200px) {
  .webinar .container {
    padding: 0 16px;
  }
}
.webinar__content {
  position: relative;
  z-index: 1;
}
.webinar__header {
  background-image: url("../img/webinar-bg.png");
  background-repeat: no-repeat;
  background-size: 1450px;
  background-color: #1787FF;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 37px 16px 42px;
  color: #fff;
  margin-bottom: 13px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .webinar__header {
    margin-top: 30px;
    border-radius: 50px;
    padding: 90px 50px 90px;
  }
}
.webinar__header:after {
  content: "";
  background: url("../img/webinar-object.svg");
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 10px;
  width: 140px;
  height: 140px;
}
@media (min-width: 567px) {
  .webinar__header:after {
    width: 284px;
    height: 284px;
    top: 200px;
  }
}
@media (min-width: 992px) {
  .webinar__header:after {
    width: 490px;
    height: 410px;
    right: -76px;
    top: 50px;
    background-size: contain;
  }
}
@media (min-width: 1200px) {
  .webinar__header:after {
    width: 530px;
    height: 396px;
    right: -130px;
    top: 90px;
  }
}
.webinar__header .webinar__title {
  font-weight: 800;
  font-size: 22px;
  line-height: 32px;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 16px;
  display: block;
  max-width: 262px;
}
@media (min-width: 567px) {
  .webinar__header .webinar__title {
    font-size: 50px;
    line-height: 75px;
    max-width: 634px;
  }
}
@media (min-width: 1200px) {
  .webinar__header .webinar__title {
    font-weight: 700;
    font-size: 60px;
    line-height: 78px;
    max-width: 955px;
  }
}
.webinar__header .webinar__details {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  margin-bottom: 16px;
  gap: 8px;
}
@media (min-width: 768px) {
  .webinar__header .webinar__details {
    margin-bottom: 26px;
  }
}
@media (min-width: 1200px) {
  .webinar__header .webinar__details {
    margin-bottom: 33px;
    flex-direction: row;
    align-items: center;
    gap: 25px;
  }
}
.webinar__header .webinar__details .sale-hint {
  display: flex;
}
.webinar__header .webinar__details .sale-hint__icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background: #FFFFFF;
  border-radius: 50%;
}
@media (min-width: 567px) {
  .webinar__header .webinar__details .sale-hint__icon {
    padding: 22px;
  }
}
.webinar__header .webinar__details .sale-hint__content {
  font-weight: 700;
  font-size: 13px;
  line-height: 14px;
  color: #FFFFFF;
  padding: 13px 26px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(17.5px);
  border-radius: 444px;
}
@media (min-width: 567px) {
  .webinar__header .webinar__details .sale-hint__content {
    font-size: 20px;
    line-height: 18px;
    padding: 23px 30px;
  }
}
.webinar__header .webinar__details .webinar__button {
  text-decoration: none;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 5px 8px 5px 20px;
  background: #FFFFFF;
  border-radius: 50px;
  font-weight: 500;
  font-size: 13px;
  line-height: 20px;
  color: #2E2E41;
}
@media (min-width: 567px) {
  .webinar__header .webinar__details .webinar__button {
    padding: 11px 7px 11px 20px;
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .webinar__header .webinar__details .webinar__button {
    order: -1;
  }
}
.webinar__header .webinar__details .webinar__button-icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 5px;
  background: #1787FF;
  border-radius: 32px;
  margin-left: 10px;
}
@media (min-width: 567px) {
  .webinar__header .webinar__details .webinar__button-icon {
    padding: 11px;
    margin-left: 7px;
  }
}
.webinar__header .webinar__info {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
@media (min-width: 1025px) {
  .webinar__header .webinar__info {
    gap: 16px;
    filter: drop-shadow(12px 12px 0px rgba(0, 0, 0, 0.1));
  }
}
.webinar__header .webinar__info-item {
  display: flex;
  align-items: center;
  border-radius: 10px;
  background: #3C9BFF;
  border: 2px solid #C7E2FF;
  position: relative;
  padding: 7px 15px 7px 10px;
  gap: 10px;
  font-weight: 700;
  font-size: 10px;
  line-height: 22px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #FFFFFF;
}
@media (min-width: 567px) {
  .webinar__header .webinar__info-item {
    padding: 17px 28px 17px 20px;
    font-size: 16px;
    gap: 16px;
  }
}
@media (min-width: 992px) {
  .webinar__header .webinar__info-item--language {
    order: 1;
  }
}
.webinar__audience {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 10px;
  padding: 0 16px;
}
@media (min-width: 1025px) {
  .webinar__audience {
    flex-wrap: nowrap;
    gap: 10px;
    padding: 0;
  }
}
.webinar__audience-item {
  padding: 31px 50px 32px 22px;
  border-radius: 10px;
  position: relative;
  width: 100%;
}
@media (min-width: 567px) {
  .webinar__audience-item {
    padding: 53px 40px 46px 30px;
    border-radius: 24px;
  }
}
.webinar__audience-item span {
  z-index: 1;
  position: relative;
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
  color: #FFFFFF;
  display: block;
  max-width: 200px;
}
@media (min-width: 567px) {
  .webinar__audience-item span {
    max-width: 320px;
    font-size: 24px;
    line-height: 32px;
  }
}
.webinar__audience-item--blue {
  background: linear-gradient(180deg, #007BFF 0%, #007BFF 0.01%, #469BFF 100%);
}
.webinar__audience-item--blue:after {
  content: "";
  background: url("../img/advantages-students-bg.png");
  position: absolute;
  top: 0;
  right: 0;
  width: 96px;
  height: 86px;
  background-size: cover;
}
@media (min-width: 567px) {
  .webinar__audience-item--blue:after {
    width: 176px;
    height: 157px;
    border-top-right-radius: 24px;
  }
}
.webinar__audience-item--violet {
  background: linear-gradient(180deg, #952CFF 0%, #AD6DFF 100%);
}
.webinar__audience-item--violet:after {
  content: "";
  background: url("../img/advantages-new-bg.png");
  position: absolute;
  top: 0;
  right: 0;
  width: 103px;
  height: 73px;
  background-size: cover;
}
@media (min-width: 567px) {
  .webinar__audience-item--violet:after {
    width: 199px;
    height: 162px;
    border-top-right-radius: 24px;
  }
}
.webinar__audience-item--rose {
  background: linear-gradient(180deg, #D239FF 0%, #D273FF 100%);
}
.webinar__audience-item--rose:after {
  content: "";
  background: url("../img/advantages-interesting-bg.png");
  position: absolute;
  top: 0;
  right: 0;
  width: 96px;
  height: 86px;
  background-size: cover;
}
@media (min-width: 567px) {
  .webinar__audience-item--rose:after {
    width: 188px;
    height: 195px;
    border-top-right-radius: 24px;
  }
}
.webinar__agenda {
  background: linear-gradient(121.07deg, #FFFFFF 39.26%, rgba(255, 255, 255, 0) 100%);
  border-radius: 10px;
  padding: 20px 22px 18px;
  margin: 0 16px;
}
@media (min-width: 1200px) {
  .webinar__agenda {
    margin: 0;
    flex: 1 1 66.6%;
    border-radius: 24px;
    padding: 22px 31px;
  }
}
@media (min-width: 1200px) {
  .webinar__agenda-inner {
    display: flex;
    gap: 10px;
  }
}
.webinar__agenda-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 19px;
  color: #2E2E41;
  display: block;
  margin-bottom: 19px;
}
@media (min-width: 567px) {
  .webinar__agenda-title {
    font-size: 32px;
    line-height: 48px;
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .webinar__agenda-title {
    margin-bottom: 48px;
  }
}
.webinar__agenda-list {
  list-style-type: none;
  padding: 0;
  display: flex;
  gap: 5px;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .webinar__agenda-list {
    gap: 25px;
  }
}
.webinar__agenda-list .webinar__agenda-item {
  position: relative;
  padding-left: 32px;
  font-weight: 500;
  font-size: 14px;
  line-height: 30px;
  color: #2E2E41;
}
@media (min-width: 768px) {
  .webinar__agenda-list .webinar__agenda-item {
    font-size: 18px;
    line-height: 36px;
  }
}
@media (min-width: 1200px) {
  .webinar__agenda-list .webinar__agenda-item {
    font-size: 24px;
    line-height: 32px;
    padding-left: 38px;
  }
}
.webinar__agenda-list .webinar__agenda-item:before {
  content: "";
  position: absolute;
  left: -10px;
  top: 1px;
  background-image: url("../img/rocket-icon.svg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 37px;
  height: 37px;
}
@media (min-width: 1200px) {
  .webinar__agenda-list .webinar__agenda-item:before {
    left: -24px;
    top: -7px;
    width: 60px;
    height: 60px;
  }
}
.webinar__registration {
  background-color: #3B96FF;
  padding: 20px 22px;
  border-radius: 10px;
  margin: 10px 16px 0;
}
@media (min-width: 1200px) {
  .webinar__registration {
    margin: 0;
    flex: 1 1 33.3%;
    border-radius: 24px;
    padding: 22px 25px 24px;
  }
}
.webinar__registration-title {
  display: block;
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  color: #FFFFFF;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .webinar__registration-title {
    font-size: 32px;
    line-height: 38px;
    text-align: center;
  }
}
@media (min-width: 1200px) {
  .webinar__registration-title {
    margin-bottom: 7px;
    font-size: 23px;
    line-height: 38px;
  }
}
.webinar__registration .webinar__timer {
  margin-bottom: 20px;
  background: #51A5FF;
  border: 1px solid #FFFFFF;
  border-radius: 15px;
  font-weight: 600;
  font-size: 35px;
  line-height: 38px;
  color: #FFFFFF;
  padding: 16px;
  text-align: center;
}
@media (min-width: 768px) {
  .webinar__registration .webinar__timer {
    font-size: 55px;
    line-height: 38px;
    margin-bottom: 25px;
  }
}
.webinar__registration #webinar-timer {
  display: flex;
  justify-content: center;
}
.webinar__registration #webinar-timer span {
  width: 50px;
}
@media (min-width: 768px) {
  .webinar__registration #webinar-timer span {
    width: 70px;
  }
}
.speaker {
  margin: 20px 0 24px;
}
@media (min-width: 1200px) {
  .speaker {
    margin: 10px 0 50px;
  }
}
.speaker-inner {
  background: linear-gradient(280.7deg, #FFFFFF 73.96%, rgba(255, 255, 255, 0.5) 84.11%);
  border-radius: 10px;
  padding: 0 21px 26px 18px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .speaker-inner {
    padding: 0 25px 30px 25px;
  }
}
@media (min-width: 1200px) {
  .speaker-inner {
    display: flex;
    gap: 40px;
    padding: 0;
    align-items: center;
    border-radius: 24px;
  }
}
@media (min-width: 1400px) {
  .speaker-inner {
    gap: 80px;
  }
}
.speaker__image {
  margin-bottom: 10px;
  transition: transform 0.2s;
}
@media (min-width: 768px) {
  .speaker__image {
    margin-bottom: 35px;
  }
}
@media (min-width: 1200px) {
  .speaker__image {
    margin-bottom: 0;
    width: 50%;
    margin-top: auto;
    max-width: 678px;
  }
}
.speaker__image img {
  width: 100%;
  margin-top: -10px;
  display: block;
}
@media (min-width: 768px) {
  .speaker__image img {
    margin-top: -31px;
  }
}
@media (min-width: 1200px) {
  .speaker__image img {
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  .speaker__info {
    padding: 44px 27px 44px 0;
    width: 50%;
  }
}
@media (min-width: 1400px) {
  .speaker__info {
    padding: 64px 27px 64px 0;
  }
}
.speaker__title {
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  color: #2E2E41;
  margin-bottom: 14px;
  display: block;
}
@media (min-width: 768px) {
  .speaker__title {
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 35px;
    color: #2E2E41;
  }
}
@media (min-width: 768px) {
  .speaker__title span {
    color: #000;
  }
}
.speaker__list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
@media (min-width: 768px) {
  .speaker__list {
    gap: 15px;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media (min-width: 1400px) {
  .speaker__list {
    gap: 15px 40px;
  }
}
.speaker__item {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.01em;
  color: #2E2E41;
  position: relative;
  padding-left: 25px;
}
@media (min-width: 768px) {
  .speaker__item {
    font-size: 16px;
    padding-left: 31px;
    flex: 0 1 calc(50% - 15px);
    color: #000;
  }
}
@media (min-width: 1400px) {
  .speaker__item {
    flex: 0 1 calc(50% - 20px);
  }
}
.speaker__item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  background-image: url(../img/star.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 15px;
  height: 15px;
}
@media (min-width: 768px) {
  .speaker__item:before {
    width: 21px;
    height: 21px;
    top: 0;
  }
}

.review__title {
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  color: #2E2E41;
}
@media (min-width: 768px) {
  .review__title {
    margin-bottom: 20px;
    font-size: 32px;
    line-height: 38px;
  }
}
@media (min-width: 1200px) {
  .review__title {
    font-weight: 600;
    font-size: 64px;
    line-height: 68px;
    letter-spacing: -0.01em;
    color: #2E2E41;
  }
}

.horizontal-shake {
  animation: horizontal-shaking 0.55s infinite;
}

@keyframes horizontal-shaking {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(2px);
  }
  50% {
    transform: translateX(-2px);
  }
  75% {
    transform: translateX(2px);
  }
  100% {
    transform: translateX(0);
  }
}
.webinar__form .sp-form {
  background: transparent !important;
  border: none !important;
  width: 100% !important;
  max-width: none !important;
  padding: 0 !important;
}
.webinar__form .sp-field.sp-field-full-width, .webinar__form label.sp-control-label {
  display: none !important;
}
.webinar__form .sp-form .sp-form-fields-wrapper {
  width: 100% !important;
}
.webinar__form .sp-form .sp-field {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.webinar__form input.sp-form-control {
  background: #63AFFF !important;
  border-bottom: 2px solid rgba(255, 255, 255, 0.25) !important;
  border-radius: 12px !important;
  height: 58px !important;
  color: #fff !important;
}
.webinar__form input.sp-form-control:focus {
  outline: none !important;
  border-color: #ffffff !important;
}
.webinar__form input::-webkit-input-placeholder {
  color: #fff !important;
}
.webinar__form .iti__selected-dial-code {
  color: #fff;
}
.webinar__form .sp-field.sp-button-container {
  text-align: right !important;
}
.webinar__form .sp-field.sp-button-container button {
  padding: 7px 7px 7px 20px !important;
  gap: 10px !important;
  background: #FFFFFF !important;
  border-radius: 333px !important;
  font-weight: 500 !important;
  font-size: 16px !important;
  line-height: 20px !important;
  color: #2E2E41 !important;
  margin-left: auto !important;
  margin-right: 0 !important;
  border: none !important;
  display: flex;
  align-items: center;
  height: 40px !important;
}
@media (min-width: 1200px) {
  .webinar__form .sp-field.sp-button-container button {
    height: 56px !important;
  }
}
.webinar__form .sp-field.sp-button-container button:before {
  content: "";
  position: absolute !important;
  right: 12px;
  top: 50%;
  transform: translate(0, -50%);
  background-image: url(../img/arrow-icon.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 20px;
  height: 20px;
  left: auto;
  background-color: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 1200px) {
  .webinar__form .sp-field.sp-button-container button:before {
    right: 18px;
    top: 50%;
    transform: translate(0, -50%);
  }
}
.webinar__form .sp-field.sp-button-container button:after {
  content: "";
  display: flex;
  position: inherit !important;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 5px;
  background: #1787FF;
  border-radius: 32px;
  width: 20px;
  height: 20px;
}
@media (min-width: 1200px) {
  .webinar__form .sp-field.sp-button-container button:after {
    width: 32px;
    height: 32px;
  }
}
.webinar__form .sp-field.sp-button-container button:hover {
  top: 0 !important;
  position: initial !important;
}

.footer {
  padding: 54px 0;
  background-color: rgb(46, 46, 65);
}
@media (min-width: 768px) {
  .footer {
    padding: 60px 0;
  }
}
@media (min-width: 1200px) {
  .footer__top {
    display: flex;
    gap: 82px;
  }
}
.footer__top-logo {
  margin-bottom: 82px;
}
@media (min-width: 1200px) {
  .footer__top-logo {
    margin-bottom: 51px;
    width: 42%;
  }
}
.footer__top-desc {
  font-weight: 500;
  font-size: 21px;
  line-height: 28px;
  color: #FFFFFF;
  margin-bottom: 42px;
}
@media (min-width: 768px) {
  .footer__top-desc {
    font-size: 24px;
    line-height: 32px;
    max-width: 454px;
  }
}
.footer__center {
  display: flex;
  flex-direction: column-reverse;
  gap: 82px;
  margin-bottom: 82px;
}
@media (min-width: 1200px) {
  .footer__center {
    flex-direction: row;
  }
}
.footer__center-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
}
@media (min-width: 1200px) {
  .footer__center-links {
    width: 42%;
  }
}
.footer__center-link {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.01em;
  text-decoration-line: underline;
  color: #8790A7;
  cursor: pointer;
}
.footer__center-link:first-child {
  width: 100%;
}
@media (min-width: 768px) {
  .footer__center-link:first-child {
    width: auto;
  }
}
.footer__center-link:last-child {
  max-width: 200px;
}
@media (min-width: 768px) {
  .footer__center-link:last-child {
    max-width: 100%;
    min-width: 100%;
  }
}
.footer .social {
  gap: 16px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .footer .social {
    flex-direction: row;
  }
}
.footer .social__link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 10px 24px;
  background: #434359;
  border-radius: 32px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #FFFFFF;
  transition: opacity 0.3s;
}
.footer .social__link:hover {
  opacity: 0.7;
}
.footer__copyright {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.01em;
  color: #8790A7;
}

.success {
  padding-top: 20px;
  padding-bottom: 100px;
  background-image: url(../img/webinar-bg.png);
  background-repeat: repeat-y;
  background-size: contain;
  background-color: #1787FF;
}
@media (min-width: 768px) {
  .success {
    padding-top: 60px;
    padding-bottom: 150px;
  }
}
@media (min-width: 768px) {
  .success-section .container {
    padding-left: 44px;
    padding-right: 44px;
  }
}
.success-section__top img {
  max-width: 100px;
  display: block;
  margin: 0 auto 42px;
}
@media (min-width: 768px) {
  .success-section__top img {
    max-width: 130px;
    margin-bottom: 70px;
  }
}
.success-section__body {
  max-width: 842px;
  margin: 0 auto;
}
.success-section__image {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: #C7E2FF;
  border-radius: 24px 24px 0px 0px;
}
.success-section__image img {
  display: block;
  margin: 0 auto;
  width: 100%;
  padding: 0 37px;
  max-width: 300px;
}
.success-section__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 16px 50px;
  background: #EEF1FB;
  border-radius: 0px 0px 24px 24px;
}
.success-section__content h1 {
  font-weight: 600;
  font-size: 35px;
  line-height: 39px;
  text-align: center;
  letter-spacing: -0.01em;
  color: #2E2E41;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .success-section__content h1 {
    font-size: 52px;
    line-height: 60px;
    max-width: 506px;
  }
}
@media (min-width: 1200px) {
  .success-section__content h1 {
    max-width: 100%;
  }
}
.success-section__content p {
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  color: #2E2E41;
}
@media (min-width: 768px) {
  .success-section__content p {
    font-size: 18px;
    line-height: 26px;
    max-width: 382px;
  }
}
@media (min-width: 1200px) {
  .success-section__content p {
    max-width: 580px;
  }
}

/*# sourceMappingURL=style.css.map */
