:root {
  --clr-primary: #001d6e;
  --clr-primary-light: #334a8b;
  --clr-primary-lighter: #808eb7;
  --clr-primary-lightest: #b3bbd4;
  --clr-primary-dark: #001758;
  --clr-primary-darker: #00144d;
  --clr-primary-darkest: #000f37;

  --clr-accent: #00b491;
  --clr-accent-light: #4dcbb2;
  --clr-accent-lighter: #80dac8;
  --clr-accent-lightest: #b3e9de;
  --clr-accent-dark: #009074;
  --clr-accent-darker: #006c57;

  --clr-offset: #5463ff;

  --clr-gray-100: #f3f3f3;
  --clr-gray-200: #e7e7e7;
  --clr-gray-300: #dbdbdb;
  --clr-gray-400: #cfcfcf;
  --clr-gray-500: #c4c4c4;
  --clr-gray-600: #b8b8b8;
  --clr-gray-700: #acacac;
  --clr-gray-800: #a0a0a0;
  --clr-gray-900: #949494;
  --clr-gray-d100: #888888;
  --clr-gray-d200: #7a7a7a;
  --clr-gray-d300: #6d6d6d;
  --clr-gray-d400: #525252;
  --clr-gray-d500: #292929;

  --radius-100: 0.3rem;
  --radius-200: 0.5rem;
  --radius-400: 0.7rem;
  --radius-600: 0.9rem;
  --radius-800: 1.2rem;
  --radius-c100: 2rem;
  --radius-half: 50%;

  --font-primary: "Raleway", cursive;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

input,
button {
  font: inherit;
  display: inline-block;
}

a {
  display: inline-block;
  text-decoration: none;
  font-size: 1.5rem;
  width: max-content;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

h1,
h2,
h3,
h4 {
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: var(--clr-accent);
  text-align: center;
}

h1 {
  margin: 2rem 0;
  color: var(--clr-primary);
  font-size: 3rem;
  position: relative;
  padding: 0.6rem 0;
}

p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.7;
}

li {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.7;
}

div {
  font-size: 1.6rem;
  font-weight: 400;
}

.cta {
  padding: 0.7rem 2rem;
  background-color: var(--clr-accent-light);
  font-weight: 500;
  color: white;
  transition: all 300ms ease-in-out;
  position: relative;
  z-index: 1;
  border-radius: var(--radius-c100);
}

.cta:hover {
  background-color: var(--clr-accent);
}

.wrapper {
  width: 100%;
  display: flex;
  align-items: center;
}

section {
  width: 90%;
  margin: 0 auto;
  min-height: 40vh;
  display: flex;
  align-items: center;
  padding: 4rem;
  overflow: hidden;
}

body {
  height: 100vh;
  font-family: var(--font-primary);
  background-color: #faf4eb;
  font-size: 1.6rem;
  font-weight: 500;
  overflow-x: hidden;
}

header {
  width: 100%;
  height: 5rem;
  position: fixed;
  left: 0;
  top: -100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-image: linear-gradient(to right, #02aab0, #00cdac);
  z-index: 999;
  padding: 0 2rem;
  opacity: 0;
  transition: all 600ms ease-in-out;
}

header.show {
  top: 0;
  opacity: 1;
}

header .contact-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

header .contact-info a {
  color: var(--clr-primary);
}

header .contact-info a:hover {
  animation-name: headShake;
  animation-duration: 1.5s;
}

header .socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}

header .socials a {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--clr-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: var(--radius-400);
}

header .socials a:hover {
  animation-name: jello;
  animation-duration: 2s;
}

nav {
  width: 100%;
  height: 8rem;
  background-color: var(--clr-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  position: relative;
}

nav .logo-img {
  width: 10rem;
  height: 100%;
}

.nav-list {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 1.4rem;
  list-style: none;
}

.nav-list .list-link {
  color: white;
  padding: 0.5rem 1rem;
  position: relative;
  transition: all 300ms ease-in-out;
}

.nav-list .list-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.3rem;
  background-color: var(--clr-primary-dark);
  transition: all 300ms ease-in-out;
}

.nav-list .list-link:hover::after {
  background-color: var(--clr-accent);
  bottom: -0.3rem;
}

nav .burger {
  width: 4.5rem;
  height: 4.5rem;
  background-color: var(--clr-accent);
  color: white;
  border-radius: var(--radius-400);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.3rem;
  cursor: pointer;
  display: none;
}

nav .burger:hover {
  animation-name: jello;
  animation-duration: 1.5s;
}

footer {
  width: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  margin-top: 10rem;
  background-color: var(--clr-primary);
}

footer .wrapper {
  justify-content: center;
  align-items: flex-start;
}

footer .company-info {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

footer .company-profile,
footer .liability {
  width: 100%;
  color: white;
}
footer .company-profile h3,
footer .liability h3 {
  width: 100%;
  text-align: left;
}

footer .quick-links {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

footer .quick-links a {
  color: var(--clr-accent);
  border-bottom: 0.2rem solid var(--clr-accent);
}

footer .location {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: white;
}

footer .socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}

footer .socials a {
  width: 4rem;
  height: 4rem;
  background-color: var(--clr-accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: var(--radius-400);
}

footer .socials a:hover {
  animation-name: jello;
  animation-duration: 1s;
}

footer .copyright {
  width: 100%;
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

footer .copyright a{
    
    color: white;
}

/* PAGE BANNERS */
.page-banner {
  width: 100%;
  height: 40rem;
  position: relative;
}

.page-banner .banner-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.page-banner .banner-img::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.911),
    rgba(0, 0, 0, 0)
  );
}

.page-banner .banner-text {
  z-index: 1;
  position: absolute;
  bottom: 5%;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: clamp(2.5rem, 4vw, 4rem);
  text-transform: uppercase;
  color: var(--clr-accent);
}

@media (max-width: 800px) {
  section {
    padding: 2rem;
    width: 100%;
    flex-direction: column;
  }

  .wrapper {
    flex-direction: column;
  }

  header {
    min-height: 7rem;
    flex-direction: column;
    padding: 0.5rem 1rem;
  }

  nav .burger {
    display: flex;
  }
  .nav-list {
    position: absolute;
    top: 10rem;
    left: 2%;
    width: 65%;
    height: 70vh;
    background-color: var(--clr-primary);
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
    border-radius: var(--radius-400);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transform: translateX(-102%);
    opacity: 0;
    transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10;
  }

  .nav-list .list-link {
    transform: translateY(-50%);
    opacity: 0;
    transition: 300ms all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }

  .nav-list.open {
    transform: translateX(0);
    opacity: 1;
    animation-name: jello;
    animation-delay: -500ms;
    animation-duration: 1.5s;
  }

  .nav-list.open .list-link {
    transform: translateY(0%);
    opacity: 1;
  }

  footer .wrapper {
    align-items: center;
    gap: 2rem;
  }

  footer .company-info {
    width: 100%;
  }

  footer .location {
    width: 100%;
  }
}
