/* Base CSS Start */

/* Fonts */

@import url("https://fonts.googleapis.com/css2?family=Khula:wght@300;400;600;700;800&family=Rajdhani:wght@300;400;500;600;700&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Khula", sans-serif;
  background: #000;
  scroll-behavior: smooth;
}

img {
  width: 100%;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

h1 {
  color: #fff;
}

/* Hero Section HTML Start */

.hero__wrapper {
  padding: 80px 0;
}

.hero__container {
  max-width: 1150px;
  margin: auto;
  padding: 0 15px;
}

.hero__top {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero__top img {
  max-width: 180px;
}

.hero__top h2 {
  font-size: 58px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  line-height: 65px;
  color: #fff;
}

.hero__top h2 a {
  color: #fff;
  font-style: italic;
}

.hero__content p,
.hero__content p a {
  font-size: 20px;
  color: #fff;
  padding-top: 20px;
}

.content__box p {
  font-size: 22px;
  font-weight: 500;
}

.content__box p span {
  font-weight: 700;
}

.content__box a {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.hero__content h6 {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  padding: 20px 0;
}

.hero__content a img {
  max-width: 500px;
}

.copyright p {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: right;
  color: #fff;
  padding-top: 10px;
}

/* Hero Section HTML End */

/* Base CSS End */

/* Responsive CSS */

@media (max-width: 767px) {
  .hero__wrapper {
    padding: 50px 0;
  }

  .hero__top {
    gap: 0;
  }

  .hero__top img {
    max-width: 100px;
  }

  .hero__top h2 {
    font-size: 20px;
    line-height: 130%;
  }

  .hero__content p,
  .hero__content p a {
    font-size: 16px;
  }

  .content__box a,
  .hero__content h6 {
    font-size: 18px;
  }

  .copyright p {
    font-size: 16px;
    text-align: center;
    padding-top: 50px;
  }
}

@media (max-width: 400px) {
  .hero__top img {
    max-width: 90px;
  }

  .hero__top h2 {
    font-size: 18px;
  }

  .content__box a,
  .hero__content h6 {
    font-size: 15px;
  }

  .copyright p {
    font-size: 14px;
  }
}
