* {
  box-sizing: border-box;
}

#scroll-btn, .burger {
  padding: 0;
  background-color: transparent;
  border: 0;
}

.contacts__icon, .sponsors__logo, .elite-reward__img, .event-details__img {
  display: block;
  max-width: 100%;
  height: auto;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background-color: #4a454b;
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1100px) {
  .header__wrapper {
    height: 80px;
  }
}
@media (min-width: 1100px) {
  .header__wrapper {
    height: 130px;
  }
}
@media (max-width: 1100px) {
  .header__logo {
    max-width: 100%;
    height: 40px;
  }
}
.header__nav {
  margin: 0 -15px;
}
@media (max-width: 1100px) {
  .header__nav {
    display: none;
  }
}
@media (min-width: 1100px) {
  .header__mobile-menu-btn {
    display: none;
  }
}

.burger {
  padding: 13px;
}
.burger__item {
  display: block;
  width: 20px;
  height: 2px;
  background-color: white;
  transition: all 1s cubic-bezier(0.38, 0.5, 0.32, 1.54);
}
.burger__item:not(:last-child) {
  margin-bottom: 5px;
}
.burger_open .burger__item:nth-child(2) {
  opacity: 0;
}
.burger_open .burger__item:nth-child(1) {
  transform: rotate(-45deg) translate(-5.25px, 5.5px);
}
.burger_open .burger__item:nth-child(3) {
  transform: rotate(45deg) translate(-4.75px, -4.25px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  transition: right 1s cubic-bezier(0.38, 0.5, 0.32, 1.54);
}
.mobile-menu_open {
  right: 0;
}
.mobile-menu__close {
  position: absolute;
  top: 15px;
  left: 15px;
}
.mobile-menu__nav {
  position: relative;
  width: 300px;
  height: 100%;
  padding: 100px 40px 40px;
  margin-left: auto;
  background-color: #4a454b;
}
.mobile-menu__link {
  display: block;
  padding: 10px 0;
  font-family: roboto-bold, sans-serif;
  font-size: 36px;
  color: white;
  text-align: right;
}

.navigation__menu {
  display: flex;
  gap: 15px;
  font-size: 0;
}
.navigation__link {
  display: block;
  padding: 15px;
  font: 15px "roboto-thin";
  color: #fff;
}
.navigation__link:active, .navigation__link:hover {
  color: #90d23d;
}

main {
  flex-grow: 1;
}

.countdown {
  position: relative;
  overflow: hidden;
  background-color: #4a454b;
}
@media (max-width: 1100px) {
  .countdown {
    padding: 20px 0;
  }
}
@media (min-width: 1100px) {
  .countdown::after {
    position: absolute;
    bottom: -330px;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 400px;
    content: "";
    background-color: white;
    transform: skewY(-5deg);
  }
}
@media (min-width: 1100px) {
  .countdown__wrapper {
    position: relative;
    padding: 100px 0 400px;
  }
}
.countdown__timer {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 50px;
  background-color: #4a454b;
  border: 2px solid #90d23d;
  border-radius: 20px;
}
@media (min-width: 600px) {
  .countdown__timer {
    min-height: 200px;
  }
}
.countdown__digits {
  width: 100%;
  padding-bottom: 10px;
  font-size: 0;
}
@media (min-width: 1100px) {
  .countdown__digits {
    gap: 70px;
  }
}
@media (min-width: 600px) {
  .countdown__digits {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 600px) and (max-width: 1100px) {
  .countdown__digits {
    gap: 25px;
  }
}
.countdown__digit {
  text-align: center;
  vertical-align: middle;
}
@media (max-width: 1100px) {
  .countdown__digit {
    font: 80px "roboto-slab-thin";
    color: #fff;
  }
}
@media (min-width: 1100px) {
  .countdown__digit {
    font: 100px "roboto-slab-thin";
    color: #fff;
  }
}
.countdown__caption {
  text-align: center;
  font: 25px "roboto-slab-regular";
  color: white;
}
.countdown__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 600px) {
  .countdown__item:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media (min-width: 600px) and (max-width: 1100px) {
  .countdown__item {
    width: 90px;
  }
}
@media (min-width: 1100px) {
  .countdown__item {
    width: 120px;
  }
}
.countdown__elapsed {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
}
@media (max-width: 600px) {
  .countdown__elapsed {
    font: 40px "roboto-light";
    color: white;
  }
}
@media (min-width: 600px) and (max-width: 1100px) {
  .countdown__elapsed {
    font: 60px "roboto-light";
    color: white;
  }
}
@media (min-width: 1100px) {
  .countdown__elapsed {
    font: 75px "roboto-light";
    color: white;
  }
}
.countdown__icon {
  position: absolute;
  top: 520px;
  left: -82px;
}
@media (max-width: 1100px) {
  .countdown__icon {
    display: none;
  }
}
.countdown__icon:first-child {
  z-index: 6;
}

@media (max-width: 1100px) {
  .main-content {
    padding-bottom: 50px;
  }
}

.description {
  box-sizing: border-box;
}
@media (min-width: 1100px) {
  .description {
    display: flex;
    gap: 50px;
    justify-content: space-between;
    margin: 56px auto 142px;
  }
}
@media (max-width: 1100px) {
  .description {
    margin: 56px auto 60px;
  }
}
@media (min-width: 1100px) {
  .description__form {
    position: relative;
    z-index: 999;
    margin-top: -300px;
  }
}
@media (max-width: 1100px) {
  .description__form {
    margin: 0 auto;
  }
}
@media (max-width: 1100px) {
  .description__text {
    margin-bottom: 40px;
  }
}

.description-text__title {
  margin-bottom: 25px;
  font: 50px "roboto-black";
  color: #242424;
}
.description-text__details {
  margin-bottom: 20px;
  font: 14px "roboto-light";
  color: #242424;
}
.description-text__details:last-child {
  margin-bottom: 0;
}

.signup-form {
  max-width: 430px;
  padding: 21px;
  text-align: center;
  background-color: #fff;
  border: solid 1px #dbdada;
}
.signup-form__title {
  margin: 34px 0 21px;
  font: 30px roboto-bold;
  color: #252525;
}
.signup-form__field {
  box-sizing: border-box;
  width: 100%;
  height: 58px;
  font: 19px roboto-light;
  color: #6c6c6c;
  border: solid 1px #bebebe;
  border-radius: 5px;
  outline: none;
  padding: 0 15px;
  margin-bottom: 20px;
}
.signup-form__field:last-child {
  margin-bottom: 40px;
}
.signup-form__submit {
  background-color: #90d23d;
  border: none;
  outline: none;
  box-sizing: border-box;
  width: 100%;
  height: 58px;
  font: 22px roboto-bold;
  color: #fff;
  border: solid 1px #bebebe;
  border-radius: 5px;
  outline: none;
  margin-bottom: 21px;
}
.signup-form__submit:hover {
  background-color: #4a454b;
}
.signup-form__text {
  font: 15px roboto-light;
  color: #6c6c6c;
}

@media (min-width: 600px) {
  .event-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 94px;
  }
}
@media (min-width: 600px) and (max-width: 1100px) {
  .event-details {
    gap: 30px;
  }
}
@media (min-width: 1100px) {
  .event-details {
    gap: 60px;
  }
}
@media (max-width: 600px) {
  .event-details {
    margin-bottom: 50px;
  }
}
.event-details__item {
  max-width: 300px;
}
@media (max-width: 600px) {
  .event-details__item {
    margin: 0 auto;
  }
  .event-details__item:not(:last-child) {
    margin-bottom: 30px;
  }
}
.event-details__img-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  margin: 0 auto;
}
.event-details__title {
  margin: 20px auto 10px;
  text-align: center;
  font: 35px roboto-black;
  color: #242424;
}
.event-details__text {
  text-align: center;
  font: 14px roboto-light;
  color: #242424;
}

.mobile-schedule {
  overflow: hidden;
  color: white;
  border-radius: 4px;
}
@media (min-width: 1100px) {
  .mobile-schedule {
    display: none;
  }
}
.mobile-schedule__time {
  display: block;
  margin-bottom: 4px;
  font: 16px roboto-bold, sans-serif;
}
.mobile-schedule__event-name {
  font: 14px roboto-light, sans-serif;
}
.mobile-schedule__event {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}
.mobile-schedule__event:nth-child(2n) {
  background-color: #373737;
}
.mobile-schedule__event:nth-child(2n-1) {
  background-color: #4b4d4f;
}

.schedule {
  width: 100%;
  overflow: hidden;
}
@media (max-width: 1100px) {
  .schedule {
    display: none;
  }
}
.schedule__row {
  height: 75px;
}
.schedule__row_heading {
  background-color: #90d23d !important;
}
.schedule__row:nth-child(2n) {
  background-color: #373737;
}
.schedule__row:nth-child(2n-1) {
  background-color: #4b4d4f;
}
.schedule__row:hover {
  background-color: #90d23d;
}
.schedule__cell {
  font: 22px "roboto-regular";
  color: #fff;
  text-align: center;
  vertical-align: middle;
}
.schedule__cell:first-child {
  width: 200px;
}
.schedule__cell:nth-child(2) {
  box-sizing: border-box;
  padding-left: 70px;
  text-align: left;
}
.schedule__cell:last-child {
  width: 130px;
}
.schedule__cell_heading {
  text-align: center;
  font: 30px roboto-black;
  color: #fff;
}
.schedule__note {
  font: 14px roboto-light;
  color: #242424;
  width: 830px;
  margin: 40px auto 80px;
  text-align: center;
  caption-side: bottom;
}

.add-event {
  box-sizing: border-box;
  width: 33px;
  height: 33px;
  font: 22px "roboto-regular";
  color: #4a454b;
  border: solid 1px #bebebe;
  border-radius: 50%;
  outline: none;
  background-color: #fff;
  border: none;
  outline: none;
  font: 22px roboto-black, sans-serif;
}
.add-event:hover {
  background-color: #4a454b;
}
.add-event:hover {
  color: #fff;
}

.elite-reward {
  position: relative;
  overflow: hidden;
  background-color: #4b4d4f;
}
.elite-reward::before, .elite-reward::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 400px;
  content: "";
  background-color: white;
  transform: skewY(-5deg);
}
.elite-reward::after {
  bottom: -330px;
}
.elite-reward::before {
  top: -330px;
}
@media (min-width: 1100px) {
  .elite-reward__wrapper {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    text-align: right;
  }
}
@media (min-width: 1100px) {
  .elite-reward__content {
    width: 700px;
  }
}
.elite-reward__img-container {
  margin-bottom: 40px;
}
.elite-reward__img {
  position: relative;
  z-index: 999;
  margin: 0 auto;
}
.elite-reward__title {
  font: 50px "roboto-black";
  color: #fff;
}
@media (min-width: 1100px) {
  .elite-reward__title {
    padding: 175px 0 40px;
  }
}
@media (max-width: 1100px) {
  .elite-reward__title {
    margin-bottom: 30px;
    text-align: center;
  }
}
.elite-reward__text {
  margin-bottom: 14px;
  font: 14px "roboto-light";
  color: #fff;
}
@media (max-width: 1100px) {
  .elite-reward__text {
    text-align: justify;
  }
}
.elite-reward__text:last-child {
  margin-bottom: 0;
}
.elite-reward__btn {
  display: block;
  box-sizing: border-box;
  width: 200px;
  height: 55px;
  font: 18px "roboto-regular";
  color: #fff;
  border: solid 1px #bebebe;
  border-radius: 15px;
  outline: none;
  background-color: #90d23d;
  border: none;
  outline: none;
}
@media (min-width: 1100px) {
  .elite-reward__btn {
    margin: 40px 0 175px auto;
  }
}
@media (max-width: 1100px) {
  .elite-reward__btn {
    margin: 40px auto 120px;
  }
}
.elite-reward__btn:hover {
  background-color: #4a454b;
}

.speakers {
  padding: 50px 30px 0;
}
.speakers__info {
  margin-bottom: 60px;
}
.speakers__list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media (max-width: 1100px) {
  .speakers__list {
    justify-content: center;
  }
}
@media (min-width: 1100px) {
  .speakers__list {
    justify-content: space-between;
  }
}

.speakers-info__title {
  font: 50px "roboto-black";
  color: #242424;
  margin-bottom: 25px;
}
.speakers-info__text {
  max-width: 520px;
  text-align: justify;
  font: 14px roboto-light;
  color: #242424;
}

.speaker {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  width: 296px;
  height: 296px;
  padding: 30px;
  background-color: #90d23d;
  border-radius: 15px;
}
.speaker:nth-child(2) {
  background-image: url("../img/bg.png");
}
.speaker:nth-child(5) {
  background: transparent url("../img/hand.png") 50% 50% no-repeat;
}
@media (max-width: 1100px) {
  .speaker:nth-child(5) {
    display: none;
  }
}
.speaker__name {
  position: relative;
  margin-bottom: 20px;
  line-height: 1;
}
.speaker__name::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  display: block;
  width: 83px;
  height: 6px;
  content: "";
  background-color: white;
}
@media (max-width: 600px) {
  .speaker__name {
    font: 36px "roboto-black";
    color: #fff;
  }
}
@media (min-width: 600px) {
  .speaker__name {
    font: 45px "roboto-black";
    color: #fff;
  }
}
.speaker__description {
  font: 18px "roboto-medium";
  color: #fff;
}
.speaker__links {
  display: flex;
  gap: 8px;
  margin-top: auto;
}
.speaker__link::before {
  font-size: 35px;
  color: #fff;
}
.speaker__link:hover::before {
  color: #4a454b;
}

.sponsors {
  position: relative;
  overflow: hidden;
  background-color: #4b4d4f;
}
.sponsors::before, .sponsors::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 400px;
  content: "";
  background-color: white;
  transform: skewY(-5deg);
}
.sponsors::after {
  bottom: -330px;
}
.sponsors::before {
  top: -330px;
}
.sponsors__wrapper {
  padding-top: 170px;
  text-align: center;
}
.sponsors__title {
  margin-bottom: 30px;
  font: 50px roboto-black;
  color: #fff;
}
.sponsors__text {
  font: 14px roboto-light;
  color: #fff;
}
@media (max-width: 600px) {
  .sponsors__text {
    text-align: justify;
  }
}
.sponsors__text:last-of-type {
  margin-bottom: 48px;
}
.sponsors__links {
  margin-bottom: 40px;
}
@media (min-width: 600px) {
  .sponsors__links {
    display: flex;
    gap: 85px;
    align-items: flex-end;
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .sponsors__logo {
    margin: 0 auto;
  }
  .sponsors__logo:not(:last-child) {
    margin-bottom: 50px;
  }
}
.sponsors__btn {
  margin-bottom: 120px;
  background-color: #90d23d;
  border: none;
  outline: none;
  box-sizing: border-box;
  width: 200px;
  height: 55px;
  font: 22px roboto-regular;
  color: #fff;
  border: solid 1px #bebebe;
  border-radius: 15px;
  outline: none;
}
.sponsors__btn:hover {
  background-color: #4a454b;
}

@media (max-width: 1100px) {
  .past-events {
    padding: 50px 0;
  }
}
@media (min-width: 1100px) {
  .past-events {
    padding: 117px 0 87px;
  }
}
.past-events__description {
  margin-bottom: 40px;
}
.past-events__title {
  margin-bottom: 25px;
  font: 50px roboto-black;
  color: #242424;
}
.past-events__text {
  font: 14px roboto-light;
  color: #4a454b;
  max-width: 600px;
}
@media (min-width: 1100px) {
  .past-events__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 98px;
  }
}
@media (max-width: 1100px) {
  .past-events__list {
    margin-bottom: 45px;
  }
}
@media (max-width: 600px) {
  .past-events__event {
    height: 200px;
  }
}
@media (max-width: 1100px) {
  .past-events__event:not(:last-child) {
    margin-bottom: 30px;
  }
}
.past-events__event:first-child {
  height: 416px;
  background-color: #3d6ed2;
}
@media (min-width: 1100px) {
  .past-events__event:first-child {
    width: 60%;
  }
}
.past-events__event:nth-child(2) {
  height: 416px;
  background-color: #90d23d;
}
@media (min-width: 1100px) {
  .past-events__event:nth-child(2) {
    width: 40%;
  }
}
.past-events__event:nth-child(3) {
  height: 368px;
  background-color: #ff9d00;
}
@media (min-width: 1100px) {
  .past-events__event:nth-child(3) {
    width: 35%;
  }
}
.past-events__event:nth-child(4) {
  height: 368px;
  background-color: #e0652a;
}
@media (min-width: 1100px) {
  .past-events__event:nth-child(4) {
    width: 65%;
  }
}
.past-events__btn {
  display: block;
  margin: 0 auto;
  background-color: #373737;
  border: none;
  outline: none;
  box-sizing: border-box;
  width: 200px;
  height: 55px;
  font: 22px roboto-regular;
  color: #fff;
  border: solid 1px #bebebe;
  border-radius: 15px;
  outline: none;
}
.past-events__btn:hover {
  background-color: #90d23d;
}

.contacts {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 60px 0;
}
.contacts__map-container {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.contacts__content {
  padding: 60px 20px;
  background-color: #fff;
}
@media (min-width: 1100px) {
  .contacts__content {
    display: flex;
    width: 970px;
  }
}
@media (max-width: 1100px) {
  .contacts__content {
    width: 85%;
  }
}
.contacts__address-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  background-color: #fff;
}
@media (max-width: 1100px) {
  .contacts__address-info {
    margin-bottom: 50px;
  }
}
@media (min-width: 1100px) {
  .contacts__address-info {
    width: 50%;
  }
}
.contacts__icon {
  max-width: 200px;
  margin: auto 0;
}
.contacts__address {
  max-width: 270px;
  font: 18px roboto-light;
  color: #4a454b;
}
.contacts__minimize {
  box-sizing: border-box;
  width: 200px;
  height: 55px;
  font: 22px roboto-regular;
  color: #fff;
  border: solid 1px #bebebe;
  border-radius: 15px;
  outline: none;
  background-color: #90d23d;
  border: none;
  outline: none;
}
.contacts__minimize:hover {
  background-color: #4a454b;
}
.contacts__restore {
  position: absolute;
  top: -55px;
  left: 50%;
  display: none;
  margin-left: -100px;
  box-sizing: border-box;
  width: 200px;
  height: 55px;
  font: 22px roboto-regular;
  color: #fff;
  border: solid 1px #bebebe;
  border-radius: 15px;
  outline: none;
  background-color: #90d23d;
  border: none;
  outline: none;
}
.contacts__restore:hover {
  background-color: #4a454b;
}
@media (min-width: 1100px) {
  .contacts__feedback {
    width: 50%;
  }
}

.feedback-form {
  text-align: center;
  background-color: #fff;
}
.feedback-form__input {
  box-sizing: border-box;
  width: 100%;
  height: 55px;
  font: 19px roboto-light;
  color: #4a454b;
  border: solid 1px #bebebe;
  border-radius: 5px;
  outline: none;
  padding: 0 20px;
  margin: 0 auto 28px;
}
.feedback-form__input_textarea {
  height: 255px;
  padding-top: 15px;
}
.feedback-form__submit {
  box-sizing: border-box;
  width: 100%;
  height: 60px;
  font: 22px roboto-regular;
  color: #fff;
  border: solid 1px #bebebe;
  border-radius: 5px;
  outline: none;
  background-color: #373737;
  border: none;
  outline: none;
}
.feedback-form__submit:hover {
  background-color: #90d23d;
}

.footer {
  padding: 60px 0 15px;
  overflow: hidden;
  text-align: center;
  background-color: #90d23d;
}
.footer__links {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 15px;
}
.footer__link::before {
  font-size: 45px;
  color: #fff;
}
.footer__link:hover::before {
  color: #4a454b;
}
.footer__text {
  display: block;
  margin: 0 auto;
  font: 18px roboto-light;
  color: #fff;
}
.footer__text:last-child {
  padding-bottom: 42px;
}

@media (min-width: 1100px) {
  .wrapper {
    max-width: 1030px;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .wrapper {
    max-width: 100%;
    margin: 0 15px;
  }
}
@media (min-width: 600px) and (max-width: 1100px) {
  .wrapper {
    max-width: 100%;
    margin: 0 30px;
  }
}

.clearfix::after {
  display: table;
  clear: both;
  content: "";
}

a {
  text-decoration: none;
}

#scroll-btn {
  position: fixed;
  display: none;
  font-size: 60px;
  cursor: pointer;
  opacity: 0.4;
}
@media (min-width: 1100px) {
  #scroll-btn {
    right: 165px;
    bottom: 100px;
  }
}
@media (max-width: 1100px) {
  #scroll-btn {
    right: 40px;
    bottom: 40px;
  }
}
#scroll-btn:hover {
  opacity: 1;
}
#scroll-btn::before {
  font-size: 40px;
}

.error {
  border: solid 1px red !important;
}
.error::placeholder {
  color: red;
}

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