body {
  font-family: "Lato", sans-serif;
}

.navbar {
  margin-bottom: 0;
  border-radius: 0;
  background-color: #333;
}

.navbar .nav-link {
  color: white !important;
}

.navbar .navbar-brand img {
  max-height: 40px;
}

.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: white;
  text-align: center;
}

.hero-section img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
  display: none;
}

.hero-section img.default {
  display: block;
}

.hero-section h1 {
  font-size: 4em;
  font-weight: 700;
  margin: 0;
}

.hero-section p {
  font-size: 1.5em;
  font-weight: 300;
}

.brands {
  padding: 40px 20px;
  background-color: #fff;
  text-align: center;
}

.brands img {
  max-height: 50px;
  margin: 10px;
}

.footer {
  background-color: #333;
  color: white;
  padding: 20px 0;
  text-align: center;
}

.footer a {
  color: white;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer p,
.footer address {
  display: block;
  margin: 5px 0;
}

.contact-icons {
  margin-top: 10px;
}

.contact-icons a {
  color: white;
  margin: 0 10px;
  font-size: 1.1em;
}

.contact-numbers {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.9em;
}

.contact-numbers p {
  margin: 0 15px;
}

.category ul {
  list-style: none;
  padding: 0;
}

.category ul li {
  margin-bottom: 5px;
  white-space: nowrap;
}

.categories {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  overflow-x: auto;
  padding: 0 300px;
}

.category {
  flex: 0 0 18%;
  margin: 0 10px;
  text-align: left;
}

.categories h2 {
  font-size: 1.5em;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 5px;
}

.container h2 {
  font-size: 1.5em;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 5px;
}

.category h3 {
  font-size: 1em;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 5px;
}

.category h3 i {
  font-size: 0.6em;
  transition: transform 0.3s;
}

.category.collapsed h3 i {
  transform: rotate(-90deg);
}

.category ul {
  display: none;
}

.category.collapsed ul {
  display: block;
}

.brand-row {
  border-bottom: 1px solid rgba(128, 128, 128, 0.6);
  padding: 10px 0;
}

.brand-row:last-child {
  border-bottom: none;
}

@media (min-width: 1024px) and (orientation: landscape) {
  .hero-section img.ipad-landscape {
    display: block;
  }
}

@media (min-width: 768px) and (orientation: portrait) {
  .hero-section img.ipad-portrait {
    display: block;
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  .hero-section img.phone-landscape {
    display: block;
  }
}

@media (max-width: 768px) and (orientation: portrait) {
  .hero-section img.phone-portrait {
    display: block;
  }
}

@media (min-width: 375px) and (max-width: 667px) and (orientation: landscape) {
  .hero-section img.iphone-landscape {
    display: block;
  }
}

@media (min-width: 375px) and (max-width: 667px) and (orientation: portrait) {
  .hero-section img.iphone-portrait {
    display: block;
  }
}
