@import url("./reset.css");
@import url("./header.css");
@import url("./modal.css");
@import url("./hero.css");
@import url("./about.css");
@import url("./courses.css");
@import url("./mentors.css");
@import url("./sign-up.css");
@import url("./reviews.css");
@import url("./footer.css");
html {
  scroll-behavior: smooth;
}
body {
  min-height: 100%;
  line-height: 1;
  font-size: 14px;
  font-family: "DM Sans", sans-serif;
  background-color: rgb(0, 0, 0);
  color: #ffffff;
  /*width: 100%;
    margin: 0 auto;*/
  /* display: flex;
  flex-direction: column;*/
  /* position: relative; */
  overflow-x: hidden;
}
.section {
  padding: 80px 0;
}
.container {
  padding: 0 20px;
  max-width: 375px;
  height: 100%;
  margin: 0 auto;
}
.hero {
  background-image: url("../img/Graphic-mob.png");
}
/* @media (min-resolution: 192dpi) and (max-width: 767px) {
  .hero {
    background-image: url("../img/Graphics@2x.png");
  }
} */
.banner-cont {
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px 0;
  overflow: hidden;
}
.banner {
  text-align: center;
  font-weight: 400;
  font-size: 28px;
  line-height: 114%;
  letter-spacing: -0.02em;
  white-space: nowrap;
  text-transform: uppercase;
  animation-name: circle;
  animation-duration: 9s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.banner span {
  color: #bea69e;
}
@keyframes circle {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/* .banner {
  animation-name: white-cirlcle;
  animation-duration: 500ms 500ms;
} */
@media screen and (min-width: 768px) {
  .section {
    padding: 100px 0;
  }
  .container {
    margin: 0 auto;
    padding: 0 32px;
    max-width: 768px;
    height: 100%;
  }
  .hero {
    background-image: url("../img/Graphic-tab.png");
  }
  .banner-cont {
    padding: 24px 0;
  }
  .banner {
    font-weight: 400;
    font-size: 40px;
    line-height: 125%;
    letter-spacing: -0.02em;
  }
}
@media screen and (min-width: 1280px) {
  .section {
    padding: 150px 0;
  }
  .container {
    margin: 0 auto;
    padding: 0 100px;
    max-width: 1280px;
    height: 100%;
  }
  .hero {
    background-image: url("../img/Graphic-desk.png");
  }
  .banner-cont {
    padding: 24px 0;
  }
  .banner {
    font-size: 59px;
    line-height: 108%;
    letter-spacing: -0.02em;
  }
}
