* {
  box-sizing: border-box;
}

@font-face {
  font-family: 'SB Sans Display';
  src: url('../fonts/SBSansDisplay-Regular.eot');
  src:
    url('../fonts/SBSansDisplay-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/SBSansDisplay-Regular.woff2') format('woff2'),
    url('../fonts/SBSansDisplay-Regular.woff') format('woff'),
    url('../fonts/SBSansDisplay-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SB Sans Display';
  src: url('./fonts/SBSansDisplay-SemiBold.eot');
  src:
    url('./fonts/SBSansDisplay-SemiBold.eot?#iefix') format('embedded-opentype'),
    url('./fonts/SBSansDisplay-SemiBold.woff2') format('woff2'),
    url('./fonts/SBSansDisplay-SemiBold.woff') format('woff'),
    url('./fonts/SBSansDisplay-SemiBold.ttf') format('truetype'),
    url('./fonts/SBSansDisplay-SemiBold.svg#SBSansDisplay-Semibold') format('svg');

  font-weight: 600;
  font-style: normal;
}

html {
  background: #000 url('../images/background.png') no-repeat center;
  background-size: cover;
}

body {
  margin: 0;
  font-family: 'SB Sans Display', sans-serif;
  color: #FFF;
  min-height: 100vh;
  display: flex;
  flex-direction: column;

  padding: 0;
  overflow: hidden;
}

.header {
  margin: 40px 200px;
}

.logo {
  width: 253px;
  height: 41px;
  object-fit: contain;
  aspect-ratio: 253 / 41;
}

.container {
  margin: 0 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.hero {
  display: flex;
  gap: 200px;
}

.mainHeroContent {
  display: flex;
  flex-direction: column;
  gap: 56px;
  flex: 1;
}

.title {
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: 60px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.72px;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.mainDescription {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.important {
  color: rgba(255, 255, 255, 0.96);
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  margin: 0;
  padding: 0;
}

.description {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
}

.actionBtn {
  all: unset;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 16px;
  background: #3F81FD;
  width: fit-content;
  max-width: 100%;
  padding: 12px clamp(20px, 6vw, 46px);
  text-align: center;
  font-size: 14px;
  /* font-weight: 400; */
  line-height: 120%;
  box-sizing: border-box;
  transition: opacity 0.3s ease-in-out;
}

.actionBtn:hover {
  opacity: 0.8;
}

.followup {
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  margin: 0;
  padding: 0;
}

.videoHero {
  overflow: hidden;
  width: 35vw;
  aspect-ratio: 1 / 1;
  height: 35vw;
  border-radius: 32px;
}

.video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.email {
  all: unset;
  cursor: pointer;
  display: inline;
  color: #2364DE;
}

.followupMobile {
  display: none;
}

@media (max-width: 1600px) {
  .header {
    margin: 35px 110px;
  }

  .logo {
    width: 200px;
    height: 36px;
  }

  .container {
    margin: 0 110px;
  }

  .title {
    font-size: 48px;
  }

  .hero {
    gap: 110px;
  }

  .mainHeroContent {
    gap: 38px;
  }

  .content {
    gap: 36px;
  }

  .mainDescription {
    gap: 16px;
  }

  .important {
    font-size: 18px;
  }

  .description {
    font-size: 14px;
  }

  .actionBtn {
    padding: 12px 32px;
  }

  .actionBtn svg {
    width: 20px;
    height: 16px;
  }

  .followup {
    font-size: 18px;
  }
}

@media (max-width: 1200px) {
  .header {
    margin: 30px 70px;
  }

  .logo {
    width: 140px;
    height: 28px;
  }

  .container {
    margin: 0 70px;
  }

  .title {
    font-size: 38px;
  }

  .hero {
    gap: 60px;
  }

  .mainHeroContent {
    gap: 32px;
  }

  .content {
    gap: 28px;
  }

  .important {
    font-size: 18px;
  }

  .description {
    font-size: 14px;
  }

  .actionBtn {
    padding: 12px 24px;
    font-size: 12px;
  }

  .actionBtn svg {
    width: 16px;
    height: 12px;
  }

  .followup {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .header {
    margin: 20px 20px;
  }

  .logo {
    width: 100px;
    height: 16px;
    object-fit: contain;
    aspect-ratio: 100/16;
  }

  .container {
    margin: 0 20px;
    justify-content: flex-start;
  }

  .hero {
    flex-direction: column;
    gap: 32px;
    align-self: center;
  }

  .mainHeroContent {
    display: flex;
    flex-direction: column;
    gap: 32px;
    flex: 1;
  }

  .title {
    font-size: 27px;
    line-height: 118.5%;
  }

  .content {
    gap: 32px;
  }

  .mainDescription {
    gap: 24px;
  }

  .important {
    font-size: 16px;
    line-height: 132%;
  }

  .description {
    font-size: 14px;
  }

  .actionBtn {
    width: 100%;
    font-size: 14px;
  }

  .followup {
    display: none;
  }

  .videoHero {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .followupMobile {
    display: block;
    font-size: 16px;
    margin-top: -10px;
    font-weight: 400;
    line-height: 100%;
  }

  body {
    overflow-y: auto;
  }
}