@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;600;700&display=swap");
html {
  box-sizing: border-box;
  font-size: 62.5%;
  font-family: "Comfortaa", cursive;
  background: url(../img/bg.jpg) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

body {
  color: #002f61;
}

a {
  text-decoration: none;
  color: #002f61;
}

header .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
}
header .header img {
  max-width: 100%;
  height: 5rem;
  margin-left: 5rem;
}
header .header__list {
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
}
header .header__list #close {
  position: absolute;
  top: 2%;
  right: 5%;
  color: white;
  font-size: 3rem;
  display: none;
  cursor: pointer;
}
header .header__item {
  padding: 0 1rem;
  font-size: 1.6rem;
  font-weight: 700;
}
header .header__item a {
  display: inline-block;
}
header .header__item a::after {
  content: "";
  display: block;
  width: 0;
  height: 0.2rem;
  background: #002f61;
  transition: width 0.3s;
}
header .header__item a:hover::after {
  width: 100%;
  transition: width 0.3s;
}
header .header #toggle-icon {
  font-size: 3rem;
  display: none;
  margin-right: 5rem;
  cursor: pointer;
}

.content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.content .intro {
  width: 50%;
  text-align: center;
  animation: animate infinite;
  animation-duration: 6s;
}
.content .intro img {
  max-width: 100%;
}
.content__info {
  width: 50%;
}
.content__info p {
  font-size: 2rem;
  font-weight: 600;
  line-height: 3rem;
}
.content__info p .name {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 2.3rem;
}
.content__list {
  padding-left: 2rem;
}
.content__item {
  font-size: 2rem;
  line-height: 3rem;
}
.content__item__list {
  display: flex;
  justify-content: flex-start;
  padding-top: 1rem;
}
.content__item__item {
  margin-right: 0.8rem;
  background-color: #015f78;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s;
}
.content__item__item:hover {
  transform: scale(1.15);
}
.content__item__item ion-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: white;
}

@keyframes animate {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5rem);
  }
  100% {
    transform: translateY(0);
  }
}
@media screen and (max-width: 1024px) {
  header {
    padding-bottom: 28rem;
    padding-top: 2rem;
  }
  header .header__item {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  header {
    padding-bottom: 10rem;
    padding-top: 0;
  }
  header .header__list {
    position: fixed;
    display: block;
    width: 100%;
    height: 100vh;
    top: 0;
    left: -100%;
    text-align: center;
    background: #182b3f;
    transition: all 0.5s;
    z-index: 9999;
  }
  header .header__list.show {
    left: 0;
  }
  header .header__list #close {
    display: block;
  }
  header .header__item {
    font-size: 3rem;
    margin: 5rem;
  }
  header .header__item a {
    color: white;
  }
  header .header #toggle-icon {
    display: block;
  }

  .content {
    flex-direction: column-reverse;
  }
  .content .intro {
    width: 100%;
  }
  .content__info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .content__item__list {
    justify-content: center;
  }
}
@media screen and (max-width: 414px) {
  header {
    padding-bottom: 6rem;
  }
  header .header__item {
    font-size: 2rem;
  }

  .content__info p {
    font-size: 1.3rem;
  }
  .content__info p .name {
    font-size: 1.6rem;
  }
  .content__item {
    font-size: 1.3rem;
  }
  .content__item__list {
    justify-content: center;
  }
  .content__item__item {
    width: 2rem;
    height: 2rem;
  }
  .content__item__item ion-icon {
    font-size: 1rem;
  }
}
@media screen and (max-width: 375px) {
  header {
    padding-bottom: 6rem;
  }

  .content__info p {
    font-size: 1.3rem;
  }
  .content__info p .name {
    font-size: 1.6rem;
  }
  .content__item__list {
    justify-content: center;
  }
}
@media screen and (max-width: 320px) {
  .content__info p {
    font-size: 1.3rem;
  }
  .content__info p .name {
    font-size: 1.4rem;
  }
  .content__item__list {
    justify-content: center;
  }
}

/*# sourceMappingURL=style.css.map */
