ul {
  list-style-type: none;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
}

body {
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
  font-size: 1.5rem;
}

.wrapper {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
  display: flex;
  flex-direction: column;
  background-image: url(./assets/photos/Landing/img2.jpeg);
  background-size: cover;
  background-position: bottom;
  transition: all 1.5s ease;
}

header {
  position: absolute;
  top: 0;
  width: 100%;
  height: 15rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
  background-color: rgba(41, 50, 65, 0.9);
  font-size: 6rem;
  font-weight: 300;
}
header .us {
  color: #ea481f;
}
header span {
  color: #e0fbfc;
}
header nav a:link,
header nav a:visited {
  color: #fdfffc;
  text-decoration: none;
  transition: all 0.5s;
}
header nav a:hover {
  color: #ea481f;
  text-decoration: underline;
  transition: all 0.5s;
}
header nav {
  display: flex;
  gap: 2rem;
  font-size: 2rem;
  position: relative;
  align-items: center;
  width: 100%;
  flex-direction: column;
}
header nav .flex-container {
  flex-direction: row;
  font-size: 2rem;
  text-align: center;
  width: 100%;
  z-index: 2;
  background-color: #fdfffc;
  height: 25rem;
}
header nav .flex-container .flex-item {
  flex: 33%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
header nav .flex-container .flex-item a:link,
header nav .flex-container .flex-item a:visited {
  color: #293241;
  text-decoration: none;
  transition: all 0.5s;
}
header nav .flex-container .flex-item a:hover {
  color: #ea481f;
  text-decoration: underline;
  transition: all 0.5s;
}
header nav .flex-container .flex-item img {
  width: 50%;
  transition: all 0.5s;
  box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.75);
}
header nav .flex-container .flex-item img:hover {
  scale: 1.15;
  transition: all 0.5s;
  box-shadow: 17px 18px 5px 3px rgba(0, 0, 0, 0.75);
}
header .menu {
  display: flex;
  gap: 2rem;
  font-size: 2rem;
}

section.main {
  position: absolute;
  z-index: 1;
  flex: 1;
  top: 10rem;
  display: flex;
  height: 100%;
}

footer {
  position: absolute;
  bottom: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-content: center;
  width: 100%;
  height: 4rem;
  color: #fdfffc;
  background-color: rgba(41, 50, 65, 0.9);
  padding: 2rem;
}
footer a:link,
footer a:visited {
  color: #fdfffc;
}

@media (max-width: 1150px) {
  header nav .flex-container .flex-item img {
    width: 60%;
  }
}
@media (max-width: 1000px) {
  header nav .flex-container .flex-item {
    gap: 2rem;
    justify-content: start;
  }
}
@media (max-width: 800px) {
  header nav .flex-container {
    flex-direction: column;
    font-size: 2rem;
    text-align: center;
    z-index: 2;
    background-color: #fdfffc;
    height: 50rem;
  }
  header nav .flex-container .flex-item img {
    width: 25%;
  }
}
@media (max-width: 625px) {
  .title {
    font-size: 2.5rem;
  }
  header .menu {
    font-size: 1.5rem;
  }
}
@keyframes slide-right {
  from {
    width: 0px;
  }
  to {
    width: 20rem;
  }
}
@keyframes slide-left {
  from {
    width: 20rem;
  }
  to {
    width: 0;
  }
}
.right {
  animation-name: slide-right;
  animation-duration: 1s;
  transition: all 3s ease;
}

.left {
  animation-name: slide-left;
  animation-duration: 1s;
  transition: all 3s ease;
}

.flex {
  display: flex;
  transition: all 0.5s;
}

.none {
  display: none;
  transition: all 0.5s;
}

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