*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html,
body {
  height: 100%;
}

body {
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

input,
button,
textarea,
select {
  font: inherit;
}

ul,
ol {
  list-style: none;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.body {
    font-family: "Inter Tight";
    color: #423951;
    overflow-x: hidden;
    position: relative;
    padding: 0;
    margin: 0;
}

img {
    width: fit-content;
    height: auto;
}

.container-self {
    width: 100%;
    padding: 0 8.854vw;
    margin-right: auto;
    margin-left: auto;
}

.button {
    color: #F3F3F3;
    font-size: 1.3vw;
    font-style: normal;
    font-weight: 700;
    height: 6.25vw;
    line-height: 6.25vw;
    display: flex;
    max-width: 21.8vw;
    width: 100%;
    padding: 0 2vw;
    justify-content: center;
    text-align: center;
    background: #4A4080;
    outline: none;
    border: none;
    transition: all .3s;
    text-decoration: none;
    cursor: pointer;
}

.button:hover {
    opacity: .8;
    text-decoration: none;
    color: #F3F3F3;
}

.button-second {
    color: #4A4080;
    font-size: 1.3vw;
    font-style: normal;
    font-weight: 700;
    height: 6.25vw;
    line-height: 6.25vw;
    display: flex;
    width: 100%;
    padding: 0 2vw;
    justify-content: center;
    text-align: center;
    background: #fff;
    outline: none;
    border: none;
    transition: all .3s;
    text-decoration: none;
    cursor: pointer;
}

.button-second:hover {
    opacity: .8;
    text-decoration: none;
    color: #4A4080;
}

.main-wrapper {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    min-height: 100vh;
}

.main-wrapper__left {
    width: 39%;
    background: url('img/mian-bg.png') no-repeat top center;
    background-size: cover;
    padding: 2.5vw;
}

.main-wrapper__right {
    width: 61%;
    background: #4A407F;
    padding: 2.5vw;
    color: #fff;
}

.hero__logo {
    width: 25.63vw;
    height: auto;
    display: block;
    margin-bottom: 2vw;
}

.hero__title {
    font-size: 5.68vw;
    color: #4A4080;
    line-height: 1.2;
    margin-bottom: 2vw;
}

.hero__list {
    display: flex;
    flex-direction: column;
    gap: .4vw;
    margin-bottom: 1.5vw;
    width: 30vw;
}

.hero__list-item {
    font-size: 1.82vw;
    color: #423951;
}

.agenda__title {
  font-size: 2.6vw;
  margin-bottom: 2vw;
}

.agenda__list {
  margin-bottom: 5vw;
}

.agenda__list-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.83vw 0;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.agenda__list-item_time {
  font-size: 1.82vw;
  font-weight: 700;
  width: 13.85vw;
}

.agenda__list-item_title {
  width: 33.31vw;
  font-size: 1.04vw;
  font-weight: 700;
}

.agenda__list-item_title span {
  display: block;
  font-size: .982vw;
  font-weight: 400;
}

.agenda__list-item_arrow {
  width: 0.83vw;
  height: auto;
  display: block;
}

.contact__inner-title {
  font-size: 1.82vw;
  position: absolute;
  color: #423951;
  font-weight: 700;
  width: 38.5vw;
  transform: translateX(-106%);
  padding: 0 2.5vw;
}

.contact__inner-form .title {
  font-size: 2.08vw;
  margin-bottom: 1.5vw;
}

.contact__inner-form .form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 55;
}

.contact__inner-form .input-item {
  width: calc(50% - 15px);
  margin-bottom: 1.3vw;
}

.contact__inner-form .input-item.large {
  width: 100%;
}

.contact__inner-form .input {
  display: block;
  padding: 0;
  height: 3.54vw;
  line-height: 3.54vw;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  font-size: 1.15vw;
  font-weight: 700;
  color: #fff;
  width: 100%;
  outline: none;
  border-radius: 0;
}

.contact__inner-form .input::placeholder {
  font-family: 700;
  color: #fff;
}

.contact__inner-form .privacy {
  display: block;
  font-size: .982vw;
  font-weight: 400;
}

.contact__inner-form .privacy a {
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.line-item.privacy {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.line-item.privacy input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.line-item.privacy .checkmark {
  width: 2.19vw;
  height: 2.19vw;
  min-width: 2.19vw;
  border: 1px solid #fff;
  position: relative;
  transition: all 0.2s ease;
  cursor: pointer;
}

.line-item.privacy:hover .checkmark {
  border-color: #fff;
}

.line-item.privacy input[type="checkbox"]:checked ~ .checkmark {
  background-color: #fff;
  border-color: #fff;
}

.line-item.privacy input[type="checkbox"]:checked ~ .checkmark::after {
  content: "";
  position: absolute;
  left: .75vw;
  top: .6vw;
  width: .4vw;
  height: .7vw;
  border: solid #4A407F;
  border-width: 0 .2vw .2vw 0;
  transform: rotate(45deg);
}

.checkbox-label {
  cursor: pointer;
  line-height: 1.4;
}

.checkbox-label a {
  color: #4f46e5;
  text-decoration: underline;
}

.footer {
  padding: 2.5vw;
  position: relative;
  transform: translateY(-100%);
  z-index: 1;
  font-size: 1.15vw;
}

.main-wrapper__right.thx {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.thanks__title {
  font-size: 2.6vw;
  margin-bottom: 2vw;
}

.thanks__text {
  font-size: 1.56vw;
  margin-bottom: 2vw;
}

.copyright-thx {
  font-size: 1.04vw;
}

@media screen and (max-width: 767px) {

  .button, .button-second {
      max-width: 100%;
      font-size: 4.3vw;
      height: 13.25vw;
      line-height: 13.25vw;
  }

  .main-wrapper {
    display: block;
  }

  .main-wrapper__left,
  .main-wrapper__right {
    width: 100%;
    padding: 6vw 15px;
  }

  .hero__logo {
    width: 60vw;
    margin-bottom: 5vw;
  }

  .hero__title {
    font-size: 14.68vw;
    margin-bottom: 2vw;
  }

  .hero__list {
    gap: 2vw;
    margin-bottom: 3.5vw;
    width: 100%;
  }

  .hero__list-item {
    font-size: 3.82vw;
  }

  .agenda__title {
    font-size: 5.6vw;
    margin-bottom: 4vw;
  }

  .agenda__list-item {
    padding: 3vw 0;
  }

  .agenda__list-item_time {
      font-size: 4vw;
      font-weight: 700;
      width: 25vw;
  }

  .agenda__list-item_title {
    width: 55.31vw;
    font-size: 3vw;
    font-weight: 700;
  }

  .agenda__list-item_title span {
    font-size: 3vw;
  }

  .agenda__list-item_arrow {
    width: 2.6vw;
  }

  .contact__inner-title {
    font-size: 4.5vw;
    position: relative;
    color: #fff;
    font-weight: 700;
    width: 100%;
    transform: none;
    padding: 0;
    margin-bottom: 4vw;
    margin-top: 8vw;
  }

  .contact__inner-form .title {
    font-size: 4.5vw;
    margin-bottom: 4vw;
  }

  .contact__inner-form .input-item {
    width: 100%;
    margin-bottom: 2.5vw;
  }

  .contact__inner-form .input {
    height: 9vw;
    line-height: 9vw;
    font-size: 3vw;
  }

  line-item.privacy .checkmark {
  width: 5vw;
  height: 5vw;
  min-width: 5vw;
  border: 1px solid #fff;
  position: relative;
  transition: all 0.2s ease;
  cursor: pointer;
  }

  .line-item.privacy input[type="checkbox"]:checked ~ .checkmark::after {
      left: 1.75vw;
      top: 1.2vw;
      width: 1.15vw;
      height: 1.7vw;
      border-width: 0 .6vw .6vw 0;
  }

  .contact__inner-form .privacy {
    font-size: 3vw;
  }

  .footer {
    padding: 4vw 15px;
    position: relative;
    transform: none;
    font-size: 3vw;
    text-align: center;
  }

  .thanks__title {
      font-size: 5.6vw;
      margin-bottom: 4vw;
  }

  .thanks__text {
    font-size: 4vw;
    margin-bottom: 4vw;
  }

  .copyright-thx {
      font-size: 3vw;
      margin-top: 10vw;
      padding: 6vw 15px;
      margin: 0 -15px -6vh;
      color: #423951;
      background: #fff;
      text-align: center;
  }
}