body {
  background-color: #FFFFFF;
  margin: 0;
  min-height: 100rem;

  #nav-list {
    transition: 0.3s ease-out;
  }

  #header {
    width: 100%;
    position: fixed;
    height: auto;
    background-color: transparent;
    color: white;
    z-index: 1000;

    transition: background-color 0.3s ease, color 0.3s ease;

    nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.5rem 2rem;

      img {
        width: 5rem;
      }

      ul {
        display: flex;
        gap: 5rem;
        list-style: none;
        padding-top: 0rem;
        padding-right: 3rem;


        a {
          text-decoration: none;
          color: inherit;
          font-size: 25px;
          font-family: 'Red Rose';
          text-transform: uppercase;
          transition: all 0.3 ease;
          position: relative;
          text-decoration: none;
          color: inherit;
        }


        a::before {
          content: "";
          position: absolute;
          left: 0;
          width: 100%;
          height: 3px;
          margin: 2rem 0;
          background-color: #DBB53A;
          transform: scaleX(0);
          transition: transform 0.3s ease;
          transform-origin: left;
        }

        a::before {
          top: 0;
        }

        a::after {
          bottom: 0;
        }

        a:hover::before,
        a:hover::after,
        a.active::before,
        a.active::after {
          transform: scaleX(1);
        }

      }
    }
  }

  #header.scrolled {
    background-color: #041A28;
    color: #C3AD95;
  }

  @media (min-width: 1200px) {

    #nav-toggle-container {
      display: none;
    }

    header nav {
      width: 95%;
      display: flex;
      flex-direction: row;
      justify-content: space-between;

      ul {
        padding-left: 5rem;
        align-self: center;
        display: flex !important;
        height: fit-content !important;
      }
    }
  }

  @media (max-width: 1200px) {

    #header {
      background-color: #041A28;
      color: #C3AD95;
    }

    header {
      align-items: normal !important;
      flex-direction: column;

      ul {
        align-items: flex-start;
        margin: 0;
        flex-direction: column;
        overflow: hidden;
        padding: 1rem 6rem 0rem 0rem !important;
        gap: 1.5rem !important;

        li {
          width: 100%;
          padding: 0.5rem 1rem;
          margin-left: 0;
        }
      }

      .top-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 0 1rem;
      }

      #nav-toggle-container {
        display: flex;
        height: 35px;
        width: 35px;
        padding: 0;
        margin-left: auto;
        margin-top: 15px;
        background-color: transparent;
        border: none;
        cursor: pointer;
        align-items: center;

        #nav-toggler span,
        #nav-toggler span:before,
        #nav-toggler span:after {
          border-radius: 1px;
          height: 3px;
          width: 35px;
          background: white;
          position: absolute;
          display: block;
          content: '';
        }

        #nav-toggler {
          span:before {
            margin-top: -10px;
          }

          span:after {
            margin-top: 10px;
          }

          span,
          span:before,
          span:after {
            transition: all 500ms ease-in-out;
          }
        }

        #nav-toggler.active {
          span {
            background-color: transparent;
          }

          span:before,
          span:after {
            margin-top: 0;
          }

          span:before {
            transform: rotate(45deg);
          }

          span:after {
            transform: rotate(-45deg);
          }
        }
      }
    }
  }

  @media (max-width: 500px) {
 
        header ul {
          display: flex;
          gap: 0.5rem !important;
          vertical-align: middle !important;
          li a {
            font-size: 1rem !important;
          }

        }
      }
    
  main {
    overflow: hidden;

    h1,
    h2,
    h3 {
      font-family: 'Red Rose';
      text-transform: uppercase;
      color: black;
    }

    h1 {
      font-size: 3.5rem;
      color: white;
      background-color: #041A28;
      padding: 1rem 2rem;
    }

    h2 {
      font-size: 4rem;
      color: #041A28;
    }

    h3 {
      font-size: 2.5rem;
    }

    p {
      font-family: "Rethink Sans";
      line-height: 1.5;
    }

    .container {
      margin: 2rem 3rem;
    }

    .green-container {
      margin: 0;
      padding: 2rem 3rem;
      background-color: #4A6349;

      p,
      h1,
      h2,
      h3 {
        color: white !important;
      }
    }

  }
}


/**footer**/
.main-footer {
  background-color: #041A28;
  color: white;
  padding: 0.5rem 2rem;
  font-family: "Rethink Sans";
}

.main-footer .footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1rem;
}

.main-footer .footer-column {
  flex: 1;
  min-width: 180px;
}

.main-footer .footer-column h4 {
  color: #C3AD95;
  font-family: "Red Rose";
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.main-footer .footer-column p {
  margin: 0.3rem 0;
}

.main-footer .logo-column {
  flex: 0 0 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

.main-footer .logo-column img {
  width: 120px;
}

.main-footer .footer-divider {
  width: 1px;
  background-color: #C3AD95;
  height: 100px;
  align-self: center;
}

.main-footer .footer-bottom {
  margin-top: 2rem;
  border-top: 1px solid #C3AD95;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.main-footer .footer-bottom img {
  width: 40px;
}

.main-footer .footer-column nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0 0;
  gap: 1rem;
}

.main-footer .footer-column nav ul li {
  display: inline-block;
}

.main-footer .footer-column nav ul li img {
  width: 24px;
  height: auto;
}

.main-footer .footer-column nav ul li:nth-child(2) img {
  position: relative;
  top: 2px;
}

/** MEDIA-footer-header-phone**/
@media only screen and (max-width: 768px) {

  .main-footer {
    padding: 1rem;
    font-size: 0.85rem;
  }

  .main-footer .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .main-footer .footer-column {
    width: 100%;
    max-width: 320px;
  }

  .main-footer .footer-column h4 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
    color: #C3AD95;
    text-transform: uppercase;
  }

  .main-footer .footer-column p,
  .main-footer .footer-column a {
    margin: 0.2rem 0;
    font-size: 0.9rem;
    color: white;
    text-align: center;
  }

  .main-footer .footer-column nav ul {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 0;
    margin: 0.4rem 0 0;
  }

  .main-footer .footer-column nav ul li img {
    width: 20px;
    height: auto;
  }

  .main-footer .footer-bottom {
    text-align: center;
    font-size: 0.75rem;
    padding-top: 0.5rem;
    border-top: 1px solid #C3AD95;
    margin-top: 1rem;
  }

  .main-footer .logo-column,
  .main-footer .footer-divider {
    display: none !important;
  }
}



@media only screen and (max-width: 768px) {

  .hero h1 {

    font-size: 2.5rem;

  }
}