:root {
  --primary-color: #000b29;
  --secondary-color: #231254;
  --light-blue: #3cacd9;
  --light-voilet: #b37ddc;
  --black: #0c0c0c;
  --light: #f5f4f3;
  --bright: #c1872b;
}

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

body {
  background: var(--primary-color);
  width: 100%;
  height: 100v;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--light);
}

p {
  line-height: 2;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
}

a{
  color: var(--light-blue);
}

.primary-btn {
  background-color: var(--bright);
  padding: 10px 15px;
  border-radius: 5px;
  border: none;
  font-size: 1rem;
  color: var(--light);
  cursor: pointer;
}

header {
  width: 100%;
  max-width: 1440px;
  display: flex;
  align-self: center;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  border-bottom: 1px solid #777;

  .logo {
    cursor: pointer;

    img {
      width: 150px;
    }
  }

  .header-btns {
    display: flex;
    gap: 20px;
  }

  .mob-menu,
  .mob-hamburger {
    display: none;
  }

  .mob-hamburger {
    ion-icon {
      color: var(--light);
      width: 40px;
      height: 35px;
      cursor: pointer;
    }
  }
}

.hero {
  width: 100%;
  height: 60vh;

  .slider {
    width: 100%;
    height: 100%;
    position: relative;

    .slide {
      position: absolute;
      width: 100%;
      height: 100%;
      inset: 0;
      transition: opacity 1.2s ease-in-out;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      opacity: 0;
    }

    .slide.active {
      opacity: 1;
    }

    .slide:nth-child(1) {
      background-image: url("/assets/Images/Banner1.jpeg");
    }
    .slide:nth-child(2) {
      background-image: url("/assets/Images/Banner2.png");
    }
    .slide:nth-child(3) {
      background-image: url("/assets/Images/Banner3.jpeg");
    }
    .slide:nth-child(4) {
      background-image: url("/assets/Images/Banner4.jpeg");
    }
    .slide:nth-child(5) {
      background-image: url("/assets/Images/Banner5.jpeg");
    }
  }
}

.info {
  max-width: 1440px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-self: center;
  padding: 20px 15px;
  gap: 20px;

  h1 {
    font-size: 3rem;
  }

  p {
    a {
      color: var(--light-blue);
      text-decoration: none;
    }
  }
}

.table {
  width: 100%;
  max-width: 1440px;
  padding: 20px 15px;
  display: flex;
  align-self: center;

  table {
    display: table;
    width: 100%;
    text-align: center;

    td {
      border: 1px solid #777;
      padding: 20px;
    }
  }
}

.usp {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  align-self: center;
  padding: 20px 15px;
  gap: 30px;

  strong {
    font-size: 1.3rem;
    line-height: 2;
  }

  h2 {
    font-size: 2rem;
  }

  ul {
    list-style-position: inside;
    line-height: 2;
  }

  ol {
    list-style-position: inside;
    line-height: 2;
  }
}

footer {
  width: 100%;
  background-color: var(--light-voilet);
  padding: 20px 15px;
  display: flex;
  justify-content: center;

  .footer-details {
    width: 100%;
    max-width: 1440px;
    color: var(--light);
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .logo img {
    width: 100px !important;
  }

  .primary-btn {
    padding: 8px 10px !important;
  }

  .hero {
    height: 40vh !important;
  }

  .info h1 {
    font-size: 2rem !important  ;
  }
}

@media screen and (max-width: 500px) {
  .hero {
    height: 20vh !important;
  }
}
