* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Kumbh Sans", sans-serif;
}

.navbar {
  background: #fff;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  position: sticky;
  top: 0;
  z-index: 999;
  /*border-bottom: 1px solid lightgray;*/
  /*margin-bottom: 20px;*/
}

.navbar__container {
  display: flex;
  justify-content: space-between;
  height: 80px;
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 50px;
}

#navbar__logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
}

/*
.fa-gem {
    margin-right: 0.5rem;
}*/

.navbar__menu {
  display: flex;
  align-items: center;
  list-style: none;
  text-align: center;
}

.navbar__item {
  height: 80px;
}

.navbar__links {
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0 1rem;
  height: 100%;
  white-space: nowrap;
}

.navbar__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
  width: 100%;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  padding: 10px 20px;
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  border-radius: 4px;
  background: #000;
  color: #fff;
}

.button:hover {
  background: #118df0;
  transition: all 0.3s ease;
}

.navbar__links:hover {
  color: #023047;
  transition: all 0.3s ease;
}

@media screen and (max-width: 960px) {
  .navbar__container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0;
  }

  .navbar__menu {
    display: grid;
    grid-template-columns: auto;
    margin: 0;
    width: 100%;
    position: absolute;
    top: -1000px;
    opacity: 0;
    transition: all 0.5s ease;
    height: 50vh;
    z-index: -1;
    background-color: #fff;
  }

  .navbar__menu.active {
    background-color: #fff;
    top: 100%;
    opacity: 1;
    transition: all 0.5s ease;
    z-index: 99;
    height: 50vh;
    font-size: 1.6rem;
  }

  #navbar__logo {
    padding-left: 25px;
  }

  .navbar__toggle .bar {
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background: #000;
  }

  .navbar__item {
    width: 100%;
  }

  .navbar__links {
    text-align: center;
    padding: 2rem;
    width: 100%;
    display: table;
  }

  .navbar__links--selected {
    text-decoration: underline;
  }

  #mobile-menu {
    position: absolute;
    top: 20%;
    right: 5%;
    transform: translate(5%, 20%);
  }

  .navbar__btn {
    padding-bottom: 2rem;
  }

  .button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 80px;
    margin: 0;
  }

  .navbar__toggle .bar {
    display: block;
    cursor: pointer;
  }

  #mobile-menu.is-active .bar:nth-child(2) {
    opacity: 0;
  }

  #mobile-menu.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  #mobile-menu.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* Hero section */

.main__privacy__technologies {
    margin: 0 auto;
    width: 100%;
    max-width: 1300px;
    padding: 0 50px;
}
.main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-self: center;
  margin: 0 auto;
  height: 600px;
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  padding: 0 50px;
}

.main__left {
  padding-right: 1rem;
}

.main__left h1 {
  font-size: 4rem;
}

.main__right {
  background-image: url("images/hero_bg.jpg");
  width: 100%;
  height: 100%;

  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.main__left p {
  margin-top: 3rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.main__button {
  font-size: 1rem;
  background-color: #000;
  border: none;
  border-radius: 4px;
  color: #fff;
  margin-top: 2rem;
  cursor: pointer;
  position: relative;
  transition: all 0.35s;
  outline: none;
}

.main__button a {
  display: block;
  position: relative;
  z-index: 2;
  color: #fff;
  text-decoration: none;
  padding: 14px 32px;
}

.main__button:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #118df0;
  transition: all 0.35s;
  border-radius: 4px;
}

.main__button:hover {
  color: green;
}

.main__button:hover:after {
  width: 100%;
}

/* Mobile Responsive */
@media screen and (max-width: 900px) {
  .main {
    display: grid;
    grid-template-columns: auto;
    align-items: center;
    justify-self: center;
    width: 100%;
    margin: 0 auto;
    height: 100%;
  }

  .main__left {
    text-align: center;
  }

  .main__left h1 {
    font-size: 2.5rem;
    margin-top: 2rem;
  }

  .main__left p {
    margin-top: 1rem;
    font-size: 1rem;
  }

  .main__right {
    height: 40vh;
  }

  .main__button {
    margin-bottom: 20px;
  }
}

.footer__container {
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

label,
input,
textarea button,
select {
  font-size: 1.3rem;
  line-height: 1.2;
}

form {
  max-width: 90%;
  margin: 0 auto;
}

label {
  margin-bottom: 0.4rem;
  display: block;
}

input,
textarea {
  padding: 0.4rem;
  width: 100%;
}

button {
  margin-top: 2rem;
}
fieldset {
  border: 0;
}

#result {
  text-align: center;
  margin-top: 1rem;
}

.equipments__container {
    max-width: 1300px;
     padding: 50px 50px;
     width: 100%;
     margin: 0 auto;
     display: flex;
     flex-direction: row;
     align-items: center;
}

.equipments__image, .equipments__content {
    flex: 1;
}

.equipments__content {
    padding: 50px;  
}

.equipments__image, .equipments__content p {
    margin-top: 10px;
}

.equipments__image img {
    width: 100%;
}

.equipments__container {
    padding-bottom: 25px;
}

.haccp__container, .reports__container {
    padding-top: 25px;
}


@media screen and (max-width: 768px) {
    .equipments__container, .equipments__image, .equipments__content {
        flex-wrap: wrap-reverse;
    }

    .haccp__container {
        flex-wrap: wrap;
    }

    .equipments__image, .equipments__content {
        flex: auto;
    }

    .equipments__content {
      padding: 15px;
    }
}

.section__highlight {
  margin-top: 20px;
}

.section__highlight p {
  display: flex;
  align-items: center;
  color: white;
  background-color: #0077b6;
  padding: 10px;
}

.section__highlight i {
  font-size: 25px;
  margin-right: 10px;
}