:root {
  --black: #000;
  --white: #fff;
  --blue: #004AAD;
  --gold: #D4AF37;
  --dark-gold: #B99C3E;
  --alt-gold: #977d2b;
  --light-gold: #ffd447;
  --light-blue: #418df0;
  --highlight-blue: #1e71dd;
  --dark-blue: #054394;
  --darkest-blue: #001738;
}

*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
}

.uniform_page {
  background-color: var(--white);
}

.theme_uniform_styles {

    header {
      background-color: var(--white);
      position: sticky;
      top: 0;
      left: 0;
      z-index: 100;
      
    };
    
    .ul_space {
      padding-top: 13px;
    }

    .li_space {
      padding-bottom: 10px;
    }

    li {
      list-style: none;
    };

    a {
      text-decoration: none;
    };

    .navbar {
      min-height: 100px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 24px;
    }

    .nav-menu {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 35px;

      .nav-link {
        color: var(--blue);
        font-weight: 700;
      };
      
    }

    .logo {
      max-width: 180px;
    }

    .nav-link {
      transition: 0.2s ease;
    }

    .nav-link:hover {
      color: var(--gold);
    }

    .hamburger {
      display: none;
      cursor: pointer;
    }

    .bar {
      display: block;
      width: 25px;
      height: 3px;
      margin: 5px auto;
      -webkit-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out;
      background-color: var(--blue);
    }

    .nav-item {
      font-family: "Michroma";
    }

    .menu-group-item {
      font-family: "Michroma";
      color: var(--blue);
      font-weight: 700;
      font-size: 14px;
      transition: 0.2s ease;
    }

    .menu-group-item:hover {
      cursor: pointer;
      color: var(--gold);
    }

    .blue_arrow {
      border-color: var(--blue);
    };

    .gold_arrow {
      border-color: var(--gold);
    };

    .arrow-down {
      position: relative;
      top: 15px;
      left: 2px;
      width: 0; 
      height: 0; 
      border-left: 6px solid transparent;
      border-right: 6px solid transparent;
      border-top: 6px solid;
      border-bottom: 0;
    }

    .arrow-up {
      position: relative;
      bottom: 12px;
      left: 2px;
      width: 0; 
      height: 0; 
      border-left: 6px solid transparent;
      border-right: 6px solid transparent;
      border-bottom: 6px solid;
      border-top: 0;
    }

    .dropdown-content {
      display: none;
      min-width: 160px;
      overflow: auto;
      z-index: 1;
    }

    .dropdown-content a {
      text-decoration: none;
      display: block;
    }

    .dropdown a:hover {
      background-color: #ddd;
    };

    .show {
      display: block;
    };

    .page_hero {
      background-image: url(../assets/images/default-hero.webp);
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      background-color: rgba(0, 0, 0, 0.35);
      background-blend-mode: darken;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      padding-right: 20px;
      padding-left: 20px;

      .hero_heading {
        color: var(--white);
        text-align: center;
      };

    };

    #footer {
      background-color: var(--darkest-blue);

      .section_content {
        background-color: var(--darkest-blue);
      };


      .grid_container {
        display: grid;
        justify-content: center;

        .footer_item_container {
          text-align: center;

        .footer_item_heading {
          padding-bottom: 25px;
          color: var(--white);
          font-weight: 700;
          text-transform: uppercase;
          font-size: 18px;
      };

        .footer_item {
          padding-bottom: 25px;
          color: var(--white);

          .footer_link {
            font-size: 16px;
            color: var(--white);
            text-decoration: none;
          };

          .footer_contact_info {
            font-size: 16px;
          };

          .footer_link:hover {
            color: var(--light-gold);
          }
        };

        .images_container {
          display: flex;
          justify-content: center;
          gap: 10px;

          .img_container {
            width: 37px;
            height: 37px;
            padding: 3px;
            display: flex;
            justify-content: center;
              text-align: center;

              svg {
                fill: #fff;
                width: 29px;
                height: 29px;
            }
          };

          .facebook_container {
            background-color: #1877F2;
          };

          .youtube_container {
            background-color: #FF0302;
          };

          .linkedin_container {
            background-color: #2867B2;
          };

        };
      };

      };
      
    };

    .heading {
      font-family: "Michroma";
      font-weight: 700;
    }

    .hero_heading {
        font-family: "Michroma";
        font-weight: 700;
    }

    .paragraph {
      padding-bottom: 18px;
      line-height: 21px;
      color: var(--black);
      font-size: 16px;
    }

    .subheading {
      font-family: "Michroma";
      padding-bottom: 25px;
      font-size: 18px;
      padding-top: 10px;
      font-weight: 700;
    }


    .section_content {
      max-width: 1300px;
      background-color: var(--white);
      margin: 0 auto;
    }

    button {
      text-transform: uppercase;
      border: none;
      background-color: var(--dark-blue);
      letter-spacing: 2px;
      cursor: pointer;
      padding: 15px 20px;
      color: var(--white);
      font-weight: 700;
      border-radius: 5px;
      margin-top: 5px;
      line-height: 18px;
    }

     button:hover {
      background-color: var(--dark-gold);       
    };

    .submit {
        text-transform: uppercase;
        border: none;
        background-color: var(--blue);
        letter-spacing: 2px;
        cursor: pointer;
        padding: 15px 20px;
        color: var(--white);
        font-weight: 700;
        border-radius: 5px;
    };

    .gold {
      color: var(--gold);
    }
    
    .last_item {
            padding-bottom: 0;
    };

    #collection-modal {
      position: fixed;
      right: 0px;
      z-index: 200;
      background: transparent;

      button {
        width: 150px;
        background: #aa8f3a;
      }

      button:hover {
        background: var(--dark-gold);
      }
    };

    form {
      input {
        font-family: 'Roboto';
      };

      textarea {
        font-family: 'Roboto';
      };
    };

  @media screen and (min-width: 320px) {

    .page_hero {
      height: 180px;
    };

    .hero_heading {
        font-size: 28px;
        padding-left: 10px;
        padding-right: 10px;
        line-height: 32px;
    };

    #collection-modal {
      bottom: 90px;

      .button_container {
        button {
          padding: 8px 15px;
        }
      }
    }

    .section_content {
      padding: 40px 30px;
    };

    .heading {
      font-size: 25px;
      line-height: 35px;
      padding-bottom: 35px;
    };

    .image_normal {
      max-width: 100%;
    }

    .nav-link {
      font-size: 14px
    }

    .menu-group-item {
      font-size: 14px;
    }

    #footer {
      .grid_container {
        grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
        gap: 35px;

        .image_normal {
          max-width: 150px;
        }
      };
    };

    button {
      font-size: 12px;
    };

    .recaptcha_group{
      max-width: 50%;
      transform-origin:0 0;
      transform:scale(0.8);
      -webkit-transform-origin:0 0;
      -webkit-transform:scale(0.8);
      text-align: center;
      max-width: 250px;
    };

    .submit {
      font-size: 12px;
      margin: 0px 0 5px 0;
    };

};

@media screen and (min-width: 425px) {

    #collection-modal {
      bottom: 35px;
    }


    .image_normal {
      max-width: 320px;
    };

    .hero_heading {
      font-size: 32px;
      line-height: 45px;
    };

    .heading {
        font-size: 30px;
    };

    button {
      font-size: 14px;
    };

    .recaptcha_group{
      transform-origin:0 0;
      transform:scale(1);
      -webkit-transform-origin:0 0;
      -webkit-transform:scale(1);
      max-width: 300px;
    };

    .submit {
      font-size: 14px;
      margin: 20px 0 5px 0;
    };

};

@media screen and (min-width: 500px) {

  .image_normal {
      max-width: 420px;
    }
}

@media screen and (min-width: 767px) {

  #collection-modal {
      bottom: 150px;

      .button_container {
        button {
          padding: 15px 20px;
        };
      };

    }

  .section_content {
      padding: 60px 50px;
    };

    .page_hero {
        height: 250px;
    };

    .hero_heading {
        font-size: 36px;
    };

    .heading {
      padding-bottom: 45px;
    };

    .image_normal {
      max-width: 400px;
    };

    #footer {
      .grid_container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      };
    };

};

@media screen and (min-width: 850px) {
  #footer {
      .grid_container {
        .reduce_footer_item_space {
          padding-bottom: 0 !important;
        };
      };
    };
};

@media screen and (min-width: 1024px) {

    .hero_heading {
        font-size: 40px;
    };

    .heading {
        font-size: 29px;
        line-height: 40px;
        padding-bottom: 55px;
    };

    .image_normal {
      max-width: 400px;
    };

};

@media screen and (max-width: 1100px) {
  .hamburger {
    display: block;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 85px;
    gap: 0;
    align-items: flex-start;
    flex-direction: column;
    background-color: #f5f5f5;
    width: 100%;
    transition: 0.3s;
  }

  .nav-item {
    margin: 16px 24px;
  }

  .nav-menu.active {
    left: 0;
    z-index: 21;
  }

  .dropdown-content {
    position: relative;
    background-color: #f5f5f5;
    margin-top: 15px;
  }

  .dropdown-content a {
      padding: 18px 0px;
  }

  .dropdown-content .last_menu_group_item_link {
    padding-bottom: 0;
  }

};

@media screen and (min-width: 1050px) {
    .nav-link {
      font-size: 12px;
  }

  .menu-group-item {
    font-size: 12px;
  }
}

@media screen and (min-width: 1101px) {
  .dropdown-content {
    position: absolute;
    margin-top: 15px;
    background-color: #f5f5f5;
  }

  .dropdown-content a {
      padding: 12px 16px;
  }

  .menu_group_nav_link:hover {
      background-color: var(--white);
  }
}

@media screen and (min-width: 1115px) {
  #footer {
      .grid_container {
        gap: 50px;
      };
  };

};

@media screen and (min-width: 1130px) {

  .nav-link {
      font-size: 13px;
  }

  .menu-group-item {
    font-size: 13px;
  }
}


@media screen and (min-width: 1200px) {

    .hero_heading {
          font-size: 48px;
          margin-top: -20px;
    };

    .nav-link {
      font-size: 14px;
    };

    .menu-group-item {
      font-size: 14px;
    }

    #footer {
      .grid_container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      };
  };
};

};