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

body,
html {
  font-family: 'Montserrat', sans-serif;
  height: 100%;
  color: white;
  max-height: 100vh;
  overflow: hidden;
}

.hero {
  background-image: url("assets/BG.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  height: 100vh;
}

.vector-top-left {
  position: absolute;
  width: 24%;
  top: 0;
  left: 0;
  overflow: hidden;
}

.line-top-left {
  position: absolute;
  width: 16%;
  top: -130px;
  left: -160px;
  transform: rotate(1.5deg);
  overflow: hidden;
}

.vector-bottom-right {
  position: absolute;
  width: 24%;
  transform: rotate(180deg);
  bottom: 0;
  right: 0;
  overflow: hidden;
}

.line-bottom-right {
  position: absolute;
  width: 16%;
  transform: rotate(181.5deg);
  bottom: -130px;
  right: -160px;
  overflow: hidden;
}

.overlay {
  background-image: url("assets/overlay.png");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  min-height: 100vh;

}

.hero .header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 5rem 0 5rem;
  margin-top: 15px;
}

.logo {
  width: 192px;
  height: auto;
  margin-bottom: 2rem;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  padding: 6rem;
}

.main-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.first-call {
  font-weight: 100;
  letter-spacing: 3px;
  font-size: 30px;
  ;
}

.main-call {
  font-weight: 600;
  font-size: 80px;
  letter-spacing: 13px;
}

.thin-p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 160%;
  font-size: 16px;
}

.thin-p .op1 {
  font-weight: 600;
}

.thin-p p {
  font-weight: 100;
}

.cta {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}

.cta p {
  font-weight: 600;
  font-size: 18px;
}

.icons {
  margin-top: 1rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.icon-wrapper {
  position: relative;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrapper .ellipse {
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  transition: transform 0.3s ease;
}

.icon-wrapper .icon {
  width: 26px;
  height: 26px;
  z-index: 1;
}

.icon-wrapper:hover .ellipse {
  transform: rotate(180deg);
}

footer {
  font-size: 0.8rem;
  text-align: center;
  height: 10vh;

}

.footer-text {
  color: #ccc;
  font-weight: 275;
}

footer a {
  color: #ccc;
  text-decoration: none;
}

.footer {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 1.5rem 4rem;
}

/* ==============================
   MOBILE/TABLET
   ============================== */
@media (max-width: 767px) {
  .content {
    padding: 2rem;
  }

  .first-call {
    font-size: 18px;
    text-align: center;
    letter-spacing: 1px;
  }

  .main-call {
    font-size: 42px;
    letter-spacing: 4px;
    text-align: center;
  }

  .thin-p {
    font-size: 14px;
    line-height: 150%;
    padding: 0 1rem;
  }

  .cta p {
    font-size: 14px;
    text-align: center;
  }

  .logo {
    width: 140px;
    margin-bottom: 1rem;
  }

  .icon-wrapper {
    width: 48px;
    height: 48px;
  }

  .icon-wrapper .icon {
    width: 20px;
    height: 20px;
  }

  .footer {
    flex-direction: column;
    gap: 10px;
    font-size: 12px;
  }


  .vector-top-left,
  .vector-bottom-right {
    display: none;
  }
}


@media (min-width: 768px) and (max-width: 1024px) {
  .main-call {
    font-size: 60px;
    letter-spacing: 8px;
  }

  .first-call {
    font-size: 24px;
  }

  .logo {
    width: 160px;
  }

  .content {
    padding: 3rem;
  }
}