* {
  box-sizing: border-box;
  margin: 0;
  font-family: "Cairo", sans-serif;
}

:root {
  --mainBackground: #1a213b;
  --subBackground: #1c2d47;
  --headColor: #275e618e;
  --textColor: White;

  --ui-size: 7rem;

  --ltt-left: 72%;
  --ltt-top: 11%;

  --libyana-left: 67%;
  --libyana-top: 75%;

  --pos-left: 10%;
  --pos-top: 49%;
  --pos-width: 24rem;

  --inside-left: 33%;
  --inside-top: 33%;
}

body {
  background: url("/assets/main.svg") no-repeat top center;
  background-size: cover;
  background-attachment: fixed;
}

.container {
  width: 100%;
  position: relative;
  color: var(--textColor);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

header {
  z-index: 9999;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 2rem;
  margin-bottom: 5rem;
  background-color: transparent;
}

.logo {
  width: clamp(180px, 280px, 380px);
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: transparent;
}

article {
  position: relative;
  padding: 4rem 0 1rem 12rem;
  background-color: var(--subBackground);
  margin: 0 auto;
  margin-bottom: 8rem;
}
article:first-of-type {
  padding-left: 3rem;
  padding-top: 6rem;
}
article:last-of-type > h1 {
  top: -3rem;
}

h1 {
  position: absolute;
  background-color: var(--headColor);
  padding: clamp(0.75rem, 2vw, 1.5rem);
  border-radius: 50px;
  font-size: 2rem;
  line-height: 2.5rem;
  text-align: center;
  top: -5rem;
  left: 50%;
  transform: translateX(-50%);
}

ol,
ul {
  list-style: none;
  font-size: clamp(0.9rem, 1.5vw, 1.3rem);
}

.main-list > li {
  counter-increment: count;
  position: relative;
  padding-right: 2rem;
  margin-bottom: 1rem;
}

.main-list > li > ul {
  padding-right: 0;
}

.main-list > li::before {
  content: counter(count);
  position: absolute;
  right: 0;
  top: -1rem;
  font-weight: bold;
  font-size: 2rem;
}

footer {
  position: relative;
  background-color: transparent;
  width: 100%;
  min-height: 150px;
  background: url("/assets/footer.svg") no-repeat;
  background-size: 100% auto;
  height: clamp(120px, 12vw, 220px);
  background-position: center calc(100% + 4rem);
}

/* .wave_background {
  display: block;
  z-index: 0;
  width: 100%;
  height: fit-content;
  position: relative;
  bottom: 0;
  background-color: transparent;
} */

.website,
.whatsapp {
  z-index: 1;
  position: absolute;
  color: var(--mainBackground);
  width: fit-content;
  background-color: transparent;
  bottom: 0;
  font-weight: bold;
  font-size: 1.5rem;
}

.website {
  left: 10%;
}

.website > a,
.whatsapp > a {
  text-decoration: none;
  color: var(--mainBackground);
}

.website > a:hover,
.whatsapp > a:hover {
  text-decoration: underline;
  color: var(--mainBackground);
}

.website > img,
.whatsapp > img {
  width: 1.5rem;
  float: left;
  margin: 10px;
}

.whatsapp {
  left: 70%;
}

a[href^="tel"] {
  color: var(--mainBackground);
  text-decoration: none;
}

.ui {
  z-index: 2;
  position: absolute;
  width: var(--ui-size);
  opacity: 90%;
}

.ltt {
  left: var(--ltt-left);
  top: var(--ltt-top);
  transform: rotate(130deg);
  animation: float-ltt 4s ease-in-out infinite 1s;
}

.madar {
  left: var(--inside-left);
  top: var(--inside-top);
  transform: rotate(40deg);
  animation: float-mad 4s ease-in-out infinite 2s;
}

.libyana {
  left: var(--libyana-left);
  top: var(--libyana-top);
  transform: rotate(-30deg);
  animation: float-lib 4s ease-in-out infinite;
}

.pos {
  left: var(--pos-left);
  top: var(--pos-top);
  width: var(--pos-width);
  transform: rotate(-20deg);
  animation: float-pos 4s ease-in-out infinite 1.5s;
}

@keyframes float-lib {
  0%,
  100% {
    transform: translateY(0) rotate(-30deg);
  }
  50% {
    transform: translateY(-5px) rotate(-30deg);
  }
}

@keyframes float-mad {
  0%,
  100% {
    transform: translateY(0) rotate(40deg);
  }
  50% {
    transform: translateY(-5px) rotate(40deg);
  }
}

@keyframes float-ltt {
  0%,
  100% {
    transform: translateY(0) rotate(130deg);
  }
  50% {
    transform: translateY(-5px) rotate(130deg);
  }
}

@keyframes float-pos {
  0%,
  100% {
    transform: translateY(0) rotate(-20deg);
  }
  50% {
    transform: translateY(-5px) rotate(-20deg);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
