* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* FONT STYLES */
.poppins-thin {
  font-family: 'Poppins', sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: 'Poppins', sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: 'Poppins', sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: 'Poppins', sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-style: italic;
}

body {
  font-family: 'Poppins', sans-serif;
}

.official {
  position: fixed;
  top: 0;
  left: 0;
}

.official button {
  border: none;
  background: white;
  color: black;
  border-radius: 10px;
  font-size: 15px;
  padding: 10px 20px;
  margin: 10px;
  transition-duration: 0.3s;
  cursor: pointer;
  box-shadow: 0 0 10px gray;
}

.official button:hover {
  transform: scale(1.04);
}

#hero {
  padding: 5em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3em;
  background: linear-gradient(180deg, black, grey);
}

.hero-img img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  padding: 8px;
}

.hero-img {
  overflow: hidden;
  border-radius: 100%;
  border: 5px solid gray;
  height: 40em;
  width: 40em;
  display: flex;
  justify-items: center;
  align-items: center;
}

.hero-text {
  color: white;
  width: 50%;
}

.hero-text h1 {
  font-size: 4em;
}

.hero-text p {
  font-size: 2em;
}

.section {
  margin: 5em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3em;
}

.section-image {
  overflow: hidden;
  width: 30em;
  height: 30em;
  border-radius: 100%;
  padding: 8px;
  border: 5px solid gray;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-image img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
}

.section-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1em;
  font-size: 1.3em;
  text-align: justify;
}

/* ABOUT SECTION */

.about {
  flex-direction: row-reverse;
}

/* MORE SECTION */
.more {
  flex-direction: row;
}

.more a {
  margin: 0 auto;
}

/* EVEN MORE SECTION */

.even-more h1 {
  text-align: center;
  margin-bottom: 0.5em;
}

.even-more img {
  display: block;
  margin: 0 auto 0.5em auto;
  width: 500px;
  height: 500px;
}

.even-more p {
  text-align: justify;
}

.button {
  border: none;
  padding: 15px;
  width: 300px;
  margin: 0 auto;
  border-radius: 10px;
  background: black;
  color: white;
  font-size: 1em;
  cursor: pointer;
  transition: all;
  transition-duration: 0.2s;
}
.button:hover {
  transform: scale(1.05);
}
.button:active {
  background-color: gray;
  color: black;
}

/* OFFICAL PAGE */
.official-hero {
  height: 700px;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.official-hero .hero-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 12;
}

.official-hero .hero-header h1 {
  width: 80%;
  text-align: center;
  color: white;
  font-size: 4rem;
}

.official-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.4;
  z-index: 8;
}

.official-hero img {
  width: 100%;
  height: 100%;
}

.official-statement {
  display: flex;
  flex-direction: column;
  gap: 2em;
  padding: 3em;
  font-size: 1.3em;
}

/* STYLING FOR THE MODALS */

.modal {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: none;
}

.modal aside {
  display: flex;
  flex-direction: column;
  gap: 1em;
  justify-content: center;
  align-items: center;
  background: white;
  padding: 40px 60px 20px 60px;
  border-radius: 20px;
  z-index: 100;
  position: relative;
  width: 350px;
}

.modal aside .control {
  display: flex;
  justify-content: end;
  position: absolute;
  top: 15px;
  left: 310px;
  cursor: pointer;
}

.modal aside .control img {
  width: 20px;
}

.modal aside div {
  display: flex;
  gap: 20px;
}

.modal aside div a {
  text-decoration: none;
}

.modal aside div a button {
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: white;
  cursor: pointer;
  transition-duration: 0.3s;
}

.modal aside div a button:hover {
  transform: scale(1.05);
}

.modal aside div .whatsapp button {
  background: #25d366;
}

.modal aside div .telegram button {
  background: #24a1de;
}

.modal aside div button img {
  width: 25px;
}

.modal .gray-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: black;
  width: 100vw;
  height: 100vh;
  opacity: 0.5;
}

/* RESPONSIVENESS STARTS HERE */

@media screen and (max-width: 1300px) {
  .hero-img {
    width: 30em;
    height: 30em;
  }

  .hero-text h1 {
    font-size: 3em;
  }

  .hero-text p {
    font-size: 1.5em;
  }

  /* ABOUT SECTION */
  .section-image {
    height: 25em;
    width: 25em;
  }
}

@media screen and (max-width: 1070px) {
  .section-text {
    font-size: 1.2em;
  }
}

@media screen and (max-width: 950px) {
  #hero {
    flex-direction: column-reverse;
    padding: 3em;
  }

  .hero-text {
    text-align: center;
    width: 100%;
  }

  .section {
    flex-direction: column-reverse;
    margin-left: 3em;
    margin-right: 3em;
  }

  .section-text {
    width: 100%;
  }

  .official-hero {
    height: 500px;
  }

  .official-hero .hero-header h1 {
    font-size: 3rem;
  }
}

@media screen and (max-width: 640px) {
  #hero {
    display: flex;
    flex-direction: column-reverse;
    gap: 2em;
  }

  .hero-img {
    width: 20em;
    height: 20em;
  }

  .hero-text {
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.2em;
  }
  .hero-text p {
    font-size: 1em;
  }

  .section-image {
    width: 20em;
    height: 20em;
  }

  .section-text {
    font-size: 1em;
  }

  .section {
    margin-left: 2em;
    margin-right: 2em;
  }

  /* OFFICIAL STATEMENT PAGE */
  .official-hero {
    height: 350px;
  }

  .official-hero .hero-header h1 {
    font-size: 2rem;
  }
}
