@font-face {
  font-family: AmazonLight;
  src: url(./assets/fonts/amazon_ember/AmazonEmber_Lt.ttf);
}
@font-face {
  font-family: AmazonBold;
  src: url(./assets/fonts/amazon_ember/AmazonEmber_Bd.ttf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

body {
  background: #fff;
  color: #fff;
}

.background-blue {
  background: #232f3e;
}

.text-white {
  font-family: AmazonLight, Arial, sans-serif;
  color: #fff;
  size: 14px;
}
.text-blue {
  font-family: AmazonLight, Arial, sans-serif;
  color: #232f3e;
  size: 14px;
}

.title-white {
  font-family: AmazonBold, Arial, sans-serif;
  color: #fff;
  font-size: 24px;
  margin-bottom: 10px;
}
.title-blue {
  font-family: AmazonBold, Arial, sans-serif;
  color: #232f3e;
  font-size: 24px;
  margin-bottom: 10px;
}

.container {
  max-width: 720px;
  width: 100%;
}

.divisor {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  margin: 10px 0;
}

a.btnRegister {
  font-family: AmazonBold, Arial, sans-serif;
  color: #fff;
  font-size: 20px;
  border: 2px solid #fff;
  border-radius: 30px;
  padding: 5px 20px;
  background: none;
  transition: all ease 0.5s;
  text-decoration: none;
}
a.btnRegister:hover {
  transition: all ease 0.5s;
  background: #fff;
  color: #232f3e;
}

/* HEADER */
header {
  background-image: url(./assets/aws_lp_gradient_header.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0;
}
header img#aws {
  margin-bottom: 30px;
}

/* SECTION */
section {
  padding: 60px 0;
}

/* SWIPER */
.swiper {
  max-width: 720px;
  width: 100%;
  margin-top: 30px;
}
.swiper img {
  width: 100%;
}
.swiper-button-next,
.swiper-button-prev {
  background: rgba(255, 255, 255, 0.5);
  color: #232f3e !important;
  border-radius: 500px;
  padding: 40px;
}
.swiper-pagination {
}
.swiper-pagination-bullet {
  background: #fff !important;
}
.swiper-scrollbar {
  display: none;
}

/* SPONSORS */
.sponsors-area {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
}
.sponsors-item {
  display: flex;
  align-items: center;
  gap: 30px;
}
.sponsors-item img {
  /* max-width: 200px; */
  /* width: 100%; */
  width: 146px;
  height: 146px;
}

/* FOOTER */
footer {
  background-image: url(./assets/aws_lp_gradient_footer.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0;
}
.footer-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.footer-area p {
  font-size: 0.9rem;
  margin-top: 15px;
}

@media screen and (max-width: 500px) {
  .sponsors-item {
    flex-wrap: wrap;
  }
}
