@import url("https://fonts.googleapis.com/css2?family=Bungee&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

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

body {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
}

/* header banner*/
.banner-wrapper {
  display: flex;
  justify-content: space-between;
  background-color: #00449c;
  width: 100%;
  height: 7.438rem;
  position: relative;
}

.logo-big {
  display: flex;
  align-items: center;
  margin: 25px;
}

.navigation {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding-right: 25px;
}

header ul,
footer ul {
  list-style-type: none;
}

header li,
footer li {
  display: inline;
  padding-left: 20px;
}

.nav-li {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 1.375rem;
  text-decoration: none;
}

.nav-li:hover {
  text-shadow: 0 0 10px #ff42d5, 0 0 10px #ff42d5, 0 0 10px #ff42d5;
}

.active a {
  text-shadow: 0 0 10px #ff42d5, 0 0 10px #ff42d5, 0 0 10px #ff42d5;
}

.hidden {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  width: 100%;
  z-index: 2;
}

.text-box-info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: #00449c;
  padding: 20px 25px;
  z-index: 2;
}

.textbox-text {
  width: 270px;
}

.p-text-box,
.p-text-box a {
  color: #fff;
  font-size: 1.125rem;
  padding: 4px;
}

.textbox-hover:hover + .hidden {
  display: block;
}

/* MAIN */
main {
  padding-bottom: 100px;
  padding-top: 30px;
}

.h1-blue {
  color: #00449c;
  font-family: "Bungee", sans-serif;
  font-size: 2.5rem;
}

.h1-pink {
  color: #ff42d5;
  font-family: "Bungee", sans-serif;
  font-size: 2.5rem;
  margin: 0 auto;
}

.h1-lightblue {
  color: #9edffe;
  font-family: "Bungee", sans-serif;
  font-size: 2.5rem;
  margin: 0 auto;
}

.h1-headline {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  margin: 0 auto;
}

p {
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.h2-lightblue {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.875rem;
  color: #9edffe;
}

.h2-blue1 {
  font-family: "Bungee", sans-serif;
  color: #00449c;
  font-size: 1.875rem;
}

.h2-pink1 {
  font-family: "Bungee", sans-serif;
  color: #ff42d5;
  font-size: 1.875rem;
}

.h2-center {
  display: flex;
  justify-content: center;
  text-align: center;
}

.img-radius {
  border-radius: 25px;
}

/* FOOTER */

.footer-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: #00449c;
  padding: 25px;
}

.img-footer {
  display: flex;
  justify-content: center;
}

.footer-links a {
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-size: 1.563rem;
  display: block;
}

.newsletter-some {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 35px;
}

.label-news {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.375rem;
  color: #fff;
  display: flex;
  justify-content: center;
}

.input-email {
  width: 374px;
  background-color: #00449c;
  border: 2px solid #fff;
  border-radius: 25px;
  height: 44px;
  outline: none;
}

.input-btn {
  position: relative;
  display: flex;
  margin-top: 10px;
}

.input-email::placeholder {
  color: #7da0cc;
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  padding-left: 20px;
}

.btn-news {
  background-color: #9edffe;
  color: #00449c;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  cursor: pointer;
  border: none;
  border-radius: 25px;
  width: 153px;
  height: 44px;
  margin-left: -153px;
}

.logo-big-footer {
  display: none;
}

/* MEDIA QUERIES */
/* mobile to small tablet */
@media screen and (min-width: 300px) and (max-width: 600px) {
  /* NAVIGATION AND HAMBURGER */
  .navigation,
  #menu-check {
    display: none;
  }

  #menu-check:checked ~ .navigation {
    display: block;
  }

  header {
    position: relative;
  }

  label i {
    position: absolute;
    top: 60px;
    right: 15px;
  }

  .navigation {
    position: absolute;
    background-color: #00449c;
    right: 0;
    top: 119px;
    width: 100%;
    text-align: center;
    padding-bottom: 15px;
    z-index: 1;
  }

  .navigation a {
    display: block;
  }

  .textbox-hover:hover + .hidden {
    display: none;
  }
  /* ----- */

  .logo-big {
    width: 70%;
  }

  .h1-blue,
  .h1-pink,
  .h1-lightblue {
    font-size: 1.563rem;
    width: 300px;
    text-align: center;
  }

  .h1-headline {
    padding-bottom: 10px;
  }

  .h2-blue1,
  .h2-pink1 {
    font-size: 1.4rem;
  }

  /* FOOTER */
  .footer-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 45px;
  }

  .media-center {
    text-align: center;
  }

  .img-footer {
    display: none;
  }

  .logo-big-footer {
    display: block;
  }

  .input-email {
    width: 280px;
  }

  .btn-news {
    font-size: 1rem;
    width: 125px;
    margin-left: -125px;
  }

  .label-news {
    font-size: 1.115rem;
  }

  .input-email::placeholder {
    font-size: 0.875rem;
  }

  .some {
    display: flex;
    flex-direction: row;
  }

  .some img {
    height: 38px;
    width: auto;
  }
}

/* tablet and small laptops */
@media screen and (min-width: 601px) and (max-width: 900px) {
  .navigation,
  #menu-check {
    display: none;
  }

  #menu-check:checked ~ .navigation {
    display: block;
  }

  header {
    position: relative;
  }

  label i {
    position: absolute;
    top: 60px;
    right: 15px;
  }

  .navigation {
    position: absolute;
    background-color: #00449c;
    right: 0;
    top: 119px;
    width: 100%;
    text-align: center;
    padding-bottom: 15px;
    z-index: 1;
  }

  .navigation a {
    display: block;
  }

  .textbox-hover:hover + .hidden {
    display: none;
  }

  /* FOOTER */
  .footer-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 45px;
  }

  .media-center {
    text-align: center;
  }

  .img-footer {
    display: none;
  }

  .logo-big-footer {
    display: block;
  }

  .input-email {
    width: 280px;
  }

  .btn-news {
    font-size: 1rem;
    width: 125px;
    margin-left: -125px;
  }

  .label-news {
    font-size: 1.115rem;
  }

  .input-email::placeholder {
    font-size: 0.875rem;
  }

  .some {
    display: flex;
    flex-direction: row;
  }

  .some img {
    height: 38px;
    width: auto;
  }
}

/* laptop to larger desktops */
@media screen and (min-width: 901px) and (max-width: 1300px) {
  #menu-check,
  .hidden-check {
    display: none;
  }

  /* FOOTER */
  .footer-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 45px;
  }

  .media-center {
    text-align: center;
  }

  .img-footer {
    display: none;
  }

  .logo-big-footer {
    display: block;
  }

  .input-email {
    width: 280px;
  }

  .btn-news {
    font-size: 1rem;
    width: 125px;
    margin-left: -125px;
  }

  .label-news {
    font-size: 1.115rem;
  }

  .input-email::placeholder {
    font-size: 0.875rem;
  }

  .some {
    display: flex;
    flex-direction: row;
  }

  .some img {
    height: 50px;
    width: auto;
  }
}

/* larger monitors */
@media screen and (min-width: 1301px) {
  #menu-check,
  .hidden-check {
    display: none;
  }
}

@media screen and (min-width: 1601px) {
  #menu-check,
  .hidden-check {
    display: none;
  }

  main {
    padding: 2% 8%;
  }
}
