* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 12px;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #e4f3ff;
}
header {
  margin: auto;
  margin-top: 10px;
  text-align: center;
}
.logo {
  width: 250px;
}
#hero {
  background-image: url("/assets/images/hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.content {
  display: grid;
  grid-template-columns: 5fr 4fr;
  color: #fff;
  min-height: 80vh;
  margin: 0 10%;
}
.content2 {
  display: grid;
  grid-template-columns: 1fr;
  color: #fff;
  min-height: 80vh;
  margin: 0 20%;
  position: relative;
}

.left {
  align-self: center;
  position: relative;
  z-index: 999;
  /* padding-top: 150px; */
}

.left2 {
  align-self: center;
  position: relative;
  z-index: 999;
}
.right {
  align-self: end;
  text-align: center;
  position: relative;
}

.hero-img {
  width: 90%;
  z-index: 999;
  position: relative;
}

.tri {
  position: absolute;
  width: 120%;
}
.tri-1 {
  bottom: 50px;
  left: -170px;
  z-index: 1;
}
.tri-2 {
  bottom: 20px;
  left: 0;
  z-index: 1;
}
.tri-3 {
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 80%;
}

.title {
  color: rgba(0, 38, 4, 0.9);
  font-size: 5rem;
  font-family: "Alatsi", sans-serif;
  font-weight: 400;
  margin-top: 20px;
}

.title span {
  color: #0068c3;
  font-size: 6.5rem;
  font-weight: 400;
  display: block;
}

#hero .description {
  color: #636363;
  font-size: 1.8rem;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  margin-top: 55px;
}

.buttons {
  display: flex;
  gap: 30px;
  margin-top: 80px;
}

.buttons2 {
  display: flex;
  gap: 100px;
  margin-top: 50px;
}

.btn {
  padding: 25px 35px;
  border-radius: 50px;
  font-size: 1.5rem;
  text-decoration: none;
  color: #fff;
  border: none;
  font-weight: bold;
  text-align: center;
  display: inline-block;
  transition: all 0.3s ease;
}
.buttons2 .btn {
  padding: 25px 60px;
}

.btn-primary {
  background: linear-gradient(90deg, rgb(55, 150, 233) 0%, rgb(116, 156, 232) 100%);
  box-shadow: 0px 4px 15px rgba(55, 150, 233, 0.5);
}
.btn-primary:hover {
  background: linear-gradient(90deg, rgb(116, 156, 232) 0%, rgb(55, 150, 233) 100%);
  transform: translateY(-5px);
  box-shadow: 0px 6px 20px rgba(55, 150, 233, 0.9);
}

.btn-secondary {
  background: linear-gradient(90deg, rgba(252, 29, 83, 1) 0%, rgba(255, 108, 108, 1) 100%);
  box-shadow: 0px 4px 15px rgba(255, 85, 85, 0.5);
}
.btn-secondary:hover {
  background: linear-gradient(90deg, rgba(255, 108, 108, 1) 0%, rgba(252, 29, 83, 1) 100%);
  transform: translateY(-5px);
  box-shadow: 0px 6px 20px rgba(255, 85, 85, 0.9);
}

.btn-back {
  display: inline-flex;
  border: 1px solid #0068c3;
  border-radius: 10px;
  color: #0068c3;
  font-size: 1.5rem;
  padding: 10px 25px;
  align-items: center;
}

/* mobile styles */
@media (max-width: 768px) {
  header {
    margin-top: 20px;
  }
  .content {
    grid-template-columns: 1fr;
    margin: 0 5%;
    text-align: center;
  }
  .content2 {
    grid-template-columns: 1fr;
    margin: 0 5%;
  }
  .left {
    padding-top: 10px;
    order: 2;
  }
  .left2 {
    padding-top: 10px;
  }
  .right {
    text-align: center;
    order: 1;
  }
  .title {
    font-size: 2.5rem;
    line-height: 2.7rem;
  }
  .title span {
    line-height: 3.9rem;
    font-size: 4rem;
  }
  #hero .description{
    font-size: 1.3rem;
    margin-top: 15px;
  }
  .hero-img {
    width: 100%;
  }
  .buttons {
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }
  .buttons2 {
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }
  .btn {
    font-size: 1.2rem;
  }
  .btn-back {
    padding: 10px 20px;
    font-size: 1.2rem;
  }
}
