@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");

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

.html {
  font-size: 62.5%;
}

.navbar input[type="checkbox"],
.navbar .hamburger-lines {
  display: none;
}

.container {
  max-width: 1200px;
  width: 90%;
  margin: auto;
}

.navbar {
  box-shadow: 0px 5px 10px 0px #aaa;
  position: fixed;
  width: 100%;
  background: #fff;
  color: #000;
  opacity: 1;
  z-index: 100;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  height: 64px;
  align-items: center;
}

.menu-items {
  order: 2;
  display: flex;
}
.logo {
  width: 103px;
  height: 53px;
  margin-left: 32px;
  object-fit: cover;
  order: 1;
}

.menu-items {
  margin-right: 35px;
}

.menu-items li {
  list-style: none;
  margin-left: 1.5rem;
  font-size: 1.1rem;
  color: #000000;
  font-family: "Roboto" !important;
  font-weight: 500;
}

.navbar a {
  color: #444;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}

.navbar a:hover {
  color: #117964;
}

@media (max-width: 768px) {
  .navbar {
    opacity: 0.95;
  }

  .navbar-container input[type="checkbox"],
  .navbar-container .hamburger-lines {
    display: block;
  }

  .navbar-container {
    display: block;
    position: relative;
    height: 64px;
  }

  .navbar-container input[type="checkbox"] {
    position: absolute;
    display: block;
    height: 32px;
    width: 30px;
    top: 20px;
    left: 20px;
    z-index: 5;
    opacity: 0;
    cursor: pointer;
  }

  .navbar-container .hamburger-lines {
    display: block;
    height: 28px;
    width: 35px;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .navbar-container .hamburger-lines .line {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: #333;
  }

  .navbar-container .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.3s ease-in-out;
  }

  .navbar-container .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
  }

  .navbar-container .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.3s ease-in-out;
  }

  .navbar .menu-items {
    padding-top: 100px;
    background: #fff;
    height: 100vh;
    max-width: 300px;
    transform: translate(-150%);
    display: flex;
    flex-direction: column;
    margin-left: -40px;
    padding-left: 40px;
    transition: transform 0.5s ease-in-out;
    box-shadow: 5px 0px 10px 0px #aaa;
    overflow: scroll;
  }

  .navbar .menu-items li {
    margin-bottom: 1.8rem;
    font-size: 1.1rem;
    font-weight: 500;
  }

  .logo {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2.5rem;
  }

  .navbar-container input[type="checkbox"]:checked ~ .menu-items {
    transform: translateX(0);
  }

  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
    transform: rotate(45deg);
  }

  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
    transform: scaleY(0);
  }

  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
    transform: rotate(-45deg);
  }
}

@media (max-width: 500px) {
  .navbar-container input[type="checkbox"]:checked ~ .logo {
    display: none;
  }
}

@media (min-width: 768px) {
  #product-details {
    margin-left: 111px;
    margin-right: 111px;
    justify-content: center;
  }
}

hr {
  border: 2.5px solid #d8d8d8;
  margin-left: 111px !important;
  margin-right: 111px !important;
}

@media (max-width: 768px) {
  hr {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }
}

#features {
  margin-bottom: 80px !important;
}

.sub-features {
  margin-left: 111px !important;
  margin-right: 111px !important;
  margin-top: 50px;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .sub-features {
    margin-left: 10px !important;
    margin-right: 10px !important;
    margin-bottom: 10px !important;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
}

.features-title {
  font-family: Roboto;
  font-size: 3rem;
  font-weight: 600;
  line-height: 3.13rem;
  text-align: left;
  letter-spacing: 0px;
  color: #3d3d3d;
}

@media (max-width: 768px) {
  .features-title {
    font-size: 2.75rem;
  }
}

.features-description {
  margin-left: 5.81rem;
  margin-top: 20px;
  font-family: Roboto;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 2rem;
  letter-spacing: 0px;
  color: #3d3d3d;
}

@media (max-width: 768px) {
  .features-description {
    margin-top: 20px;
    margin-left: 0px;
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 30%;
  position: relative;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .modal-content {
    width: 80%;
  }
}

.modal-content-subscribe {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 30%;
  position: relative;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .modal-content-subscribe {
    width: 80%;
  }
}

.close {
  color: #aaaaaa;
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-text {
  margin-top: 30px;
  text-align: center;
}

.modal-text-subscribe {
  color: black;
  margin-top: 30px;
  text-align: center;
}

.close-subscribe {
  color: #aaaaaa;
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
}

.close-subscribe:hover,
.close-subscribe:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.hq {
  margin-top: 30px;
}

.hq-address {
  margin-top: 10px;
  font-family: Roboto;
  font-size: 15px;
  font-weight: normal;
  color: #9ca3af;
}

.branch {
  margin-top: 30px;
}

.branch-address {
  margin-top: 10px;
  font-family: Roboto;
  font-size: 15px;
  font-weight: normal;
  color: #9ca3af;
}
