:root {
  --blueDark: #00008d;
  --secondary-color: #666666;
  --dark-color: #151515;
  --grey-bg: #f4f4f4;
  --dmSans: "DM Sans", serif;
  --sora: "Sora", serif;
}

html {
  scroll-behavior: smooth;
}

body,
html {
  height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: uppercase;
}

h2 {
  color: var(--dark-color);
  font-family: var(--sora);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 3rem;
}

h3 {
  color: var(--blueDark);
  font-family: var(--sora);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2.25rem;
}

h4 {
  color: var(--blueDark);
  font-family: var(--sora);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 2.25rem;
}

.logo {
  width: 10%;
}

.logo-web {
  display: none;
}

label {
  font-family: var(--sora);
}

input.form {
  padding: 1rem !important;
}

textarea {
  min-height: 200px !important;
  resize: none;
}

nav {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2;
}

.slick-slide {
  margin: 0 10px;
}
.slick-slider {
  display: table !important;
  table-layout: fixed !important;
  margin: auto;
  width: 90% !important;
}

.slick-initialized .slick-slide {
  display: flex;
}

.menu-web {
  display: none;
}

.active {
  color: #ffffff !important;
  background-color: var(--blueDark);
  border-radius: 900px;
  text-decoration: none;
}

.menu-content {
  background-color: #ffffff;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 1rem;
}

.logoContainer {
  display: flex;
  align-items: center;
}

.menuContainer {
  cursor: pointer;
}

.bar1,
.bar2,
.bar3 {
  width: 35px;
  height: 5px;
  background-color: var(--blueDark);
  margin: 6px 0;
  transition: 0.4s;
}

.change .bar1 {
  transform: translate(0, 11px) rotate(-45deg);
}

.change .bar2 {
  opacity: 0;
}

.change .bar3 {
  transform: translate(0, -11px) rotate(45deg);
}

.mobileMenu {
  position: fixed;
  top: 71px;
  background-color: #ffffff;
  display: none;
  padding: 1rem 1rem;
  transition: 250ms max-height ease;
  width: 100%;
  z-index: 10;
}

.showMobileMenu {
  display: flex;
}

.mobileMenu ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.mobileMenu ul li a {
  color: var(--dark-color);
  display: block;
  font-family: var(--dmSans);
  font-size: 1.125rem;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-banner {
  height: 70%;
  width: 100%;

  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/hero-image.webp");

  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.hero-text {
  font-family: var(--dmSans);
  font-size: 1rem;

  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}

.hero-text h1 {
  font-family: var(--sora);
  font-size: 2.5rem;
  text-transform: uppercase;
}

.hero-text p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2.025rem;
  margin: 2rem 0;
}

.button {
  background-color: var(--blueDark);
  border: none;
  border-radius: 900px;
  color: white;
  cursor: pointer;
  font-family: var(--dmSans);
  font-size: 1.125rem;
  font-weight: 500;
  padding: 0.75rem 1.875rem;
  line-height: 2;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
}

.container {
  display: flex;
  max-width: 1400px;
  margin: auto;
  padding: 3rem 1rem;
}

.fullContainer {
  background-color: var(--grey-bg);
  padding: 3rem 1rem;
  width: 100%;
}

.sub-title {
  color: var(--blueDark);
  font-family: var(--dmSans);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.625rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.text-content {
  color: var(--secondary-color);
  font-family: var(--dmSans);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2rem;
  margin-top: 0.625rem;
}

.responsive-image {
  border-radius: 10px;
  width: 100%;
}

.about-us {
  display: flex;
  flex-direction: column-reverse;
  gap: 1.5rem;
}

.about-us img {
  border-radius: 10px;
  width: 100%;
}

.mv-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 1400px;
  margin: auto;
}

.mission {
  margin-bottom: 3rem;
}

.services-container {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
}

.service-card {
  border: 2px solid #e5e5e5;
  border-radius: 5px;
  max-width: 400px;
  padding: 1rem;
}

.service-card img {
  margin-bottom: 1rem;
}

.img-service {
  width: 20%;
}

.products-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 1400px;
  margin: auto;
}

.products-list {
  align-items: center;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.product-item {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  gap: 0.5rem;
  justify-content: center;
  padding: 1rem;
  min-height: 407px;
  width: 100%;
}

.img-product {
  object-fit: contain;
  width: 100%;
}

.form-map-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.form-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-container form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.input-two-columns {
  display: flex;
  gap: 1rem;
}

.input-two-columns div {
  flex: 50%;
}

.footer-container {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 0;
  width: 100%;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-contact ul {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  padding: 0;
}

.footer-contact ul li {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  justify-content: center;
  list-style: none;
  width: 100%;
}

.footer-contact ul li a {
  color: white;
  font-family: var(--sora);
  font-weight: 500;
}

.footer-contact ul li img {
  width: 10%;
}

@media screen and (min-width: 768px) {
  .logo {
    width: 5%;
  }

  .services-container,
  .products-list {
    align-items: normal;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .products-list {
    justify-content: center;
  }

  .products-header {
    text-align: center;
  }

  .service-card {
    max-width: 360px;
  }

  .product-item {
    min-height: 411px;
    max-width: 400px;
  }

  .product-item {
    min-width: auto;
  }
}

@media screen and (min-width: 1200px) {
  .logo {
    width: 6%;
  }

  .hero-text h1 {
    font-size: 3.875rem;
    line-height: 4.063rem;
  }

  h2 {
    font-size: 3.25rem;
    line-height: 3.75rem;
  }

  .hero-banner {
    height: 78%;
  }

  .container {
    padding: 7.5rem 2rem;
  }

  .fullContainer {
    padding: 7.5rem 1rem;
  }

  .about-us {
    align-items: center;
    flex-direction: row;
  }

  .about-us div,
  .mission div,
  .vision div {
    width: 50%;
  }

  .about-us img,
  .mission img,
  .vision img {
    margin: auto;
    width: 90%;
  }

  .mission,
  .vision {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
  }

  .mission {
    margin-bottom: 6rem;
  }

  .vision {
    flex-direction: row-reverse;
  }

  .mv-container {
    align-items: center;
    padding: 1rem;
    text-align: center;
  }

  .services-header {
    margin: auto;
    max-width: 1112px;
  }

  .form-container {
    flex-direction: row;
    gap: 2rem;
  }
  .form-container form,
  .form-container iframe {
    flex: 50%;
  }

  .footer,
  .footer .container {
    padding: 3rem 1rem !important;
  }

  .product-item {
    min-height: 466px;
    max-width: 350px;
  }
}

@media screen and (min-width: 1440px) {
  .logo {
    display: none;
  }

  .logo-web {
    display: block;
    position: absolute;
    width: 180px;
  }

  .hero-banner {
    height: 100%;
  }

  .hero-text h1 {
    font-size: 4.5rem;
    line-height: 4.75rem;
  }

  .mobileMenu,
  .menu-icon {
    display: none;
  }

  .menu-content {
    align-items: center;
    padding: 3.5rem 1rem;
    position: relative;
    margin: auto;
    width: 80%;
  }

  .menu-web {
    display: flex;
  }

  .menu-web ul {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    padding: 0;
  }

  .menu-web ul li {
    list-style: none;
  }

  .menu-web ul li a {
    color: var(--dark-color);
    font-family: var(--dmSans);
    font-size: 1.125rem;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.5s ease-in-out;
    padding: 0.75rem;
  }

  .menu-web ul li a:hover {
    color: #ffffff;
    background-color: var(--blueDark);
    border-radius: 900px;
    text-decoration: none;
  }
}

@media screen and (min-width: 1536px) {
  .menu-content {
    width: 70%;
  }

  .product-item {
    min-height: 480px;
    max-width: 400px;
  }
}
