*,
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Nawar;
  font-weight: 100;
}

html {
  overflow-x: hidden;
}

@font-face {
  font-family: Nawar;
  src: url(./assets/fonts/AraESNawar-Regular.otf);
}

@font-face {
  font-family: Bein;
  src: url(./assets/fonts/beIN-Black.ttf);
}

body {
  background: radial-gradient(
    ellipse at center,
    rgba(255, 254, 234, 1) 0%,
    rgba(255, 254, 234, 1) 35%,
    #b7d5eb 100%
  );
  position: relative;
  overflow-x: hidden;
}

a {
  text-decoration: unset;
  color: inherit;
}

.ocean {
  height: 20%;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #015871;
  z-index: -1;
}

.wave {
  background: url(./assets/icons/wave.svg) repeat-x;
  position: absolute;
  top: -198px;
  width: 6400px;
  height: 198px;
  animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
  transform: translate3d(0, 0, 0);
}

.wave:nth-of-type(2) {
  top: -175px;
  animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) -0.125s infinite,
    swell 7s ease -1.25s infinite;
  opacity: 1;
}

.wave:nth-of-type(3) {
  top: -150px;
  animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) -0.125s infinite,
    swell 7s ease -1.25s infinite;
  opacity: 1;
}

.wave:nth-of-type(4) {
  top: -125px;
  animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) -0.125s infinite,
    swell 7s ease -1.25s infinite;
  opacity: 1;
}

.wave:nth-of-type(5) {
  top: -100px;
  animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) -0.125s infinite,
    swell 7s ease -1.25s infinite;
  opacity: 1;
}

@keyframes wave {
  0% {
    margin-left: 0;
  }
  100% {
    margin-left: -1600px;
  }
}

@keyframes swell {
  0%,
  100% {
    transform: translate3d(0, -25px, 0);
  }
  50% {
    transform: translate3d(0, 5px, 0);
  }
}

.hero {
  text-align: center;
  height: 50vh;
  display: flex;
  align-items: end;
  justify-content: center;
  margin-bottom: 40px;
}

.hero h2 {
  font-family: Bein;
  opacity: 0.8;
  line-height: 1.4;
  font-size: 20px;
}

.hero img {
  margin: auto;
}

.hero .company {
  background-color: #e5e6ebb9;
  width: fit-content;
  margin: auto;
  border-radius: 50px;
  padding: 20px 25px;
  margin-top: 40px;
  letter-spacing: 2px;
}

.hero .company img {
  width: 100%;
}

.contact {
  text-align: center;
}

.contact h2 {
  margin-bottom: 30px;
}

.contact .row {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.contact .row .icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.3s all ease-in-out;
  cursor: pointer;
}

.contact .row .icon:hover {
  transform: scale(1.1, 1.1);
}

.contact .row span {
  font-size: 12px;
  font-weight: 100;
  opacity: 0.7;
}

.contact .row .icon img {
  width: 80px;
  height: 80px;
}

.footer {
  margin-top: 50px;
  text-align: end;
  padding: 0 40px 50px 0;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px !important;
  color: white;
}

.footer .phone a {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.footer .address a {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
