* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #dddddd;
}

::-webkit-scrollbar-thumb {
  background: #888;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.header-container {
  padding: 20px;
  width: 100%;
  height: 900px;
  position: relative;
  background: rgba(0, 0, 0, 0.6);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.nav-container a {
  color: white;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
}

.nav-container a.nav:hover {
  color: #dddddd;
  border-bottom: 4px solid #169d55;
}

.nav-container button.btn-mobile {
  display: none;
}

.nav-container a.logo img {
  width: 156px;
}

.menu-items {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.hero-video {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.hero-container {
  width: 100%;
  max-width: 1440px;
  margin-top: 200px;
  margin-left: auto;
  margin-right: auto;
}

.hero-container .hero-text {
  display: flex;
  align-items: center;
  justify-items: center;
  flex-direction: column;
}

.hero-container .hero-text p {
  display: block;
  font-weight: 600;
  font-size: 64px;
  color: white;
  margin-bottom: 36px;
}

.hero-container .hero-text button {
  display: flex;
  color: white;
  justify-content: center;
  align-items: center;
  padding: 15px 20px;

  width: 168px;
  height: 48px;
  font-size: 20px;
  font-weight: 600;

  cursor: pointer;

  background-color: #169d55;
  border-radius: 4px;
  border: 1px solid #169d55;
}

.about-container {
  padding: 20px;
  width: 100%;
  height: auto;
  position: relative;
  padding-top: 60px;
  background-color: #f9f9f9;
}

.corporate-video {
  display: flex;
  margin-top: 80px;
  width: auto;
}

.about-container .about-title {
  display: flex;
  justify-content: center;
  color: black;
  font-size: 24px;
  font-weight: 600;
}

.card-list {
  display: flex;
  justify-content: center;
  margin-top: 80px;
  gap: 20px;
}

.card {
  width: 360px;
  height: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.card img {
  width: 266px;
  height: 266px;
  left: 334px;
  top: 1286px;
  margin-bottom: 24px;
}

.card span {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}

.card p {
  width: 300px;
  height: 140px;
  text-align: justify;
  text-justify: inter-character;
  font-weight: 400;
  font-size: 18px;
}

.products-container {
  padding: 20px;
  width: 100%;
  height: 800px;
  position: relative;
  padding-top: 60px;
  background-color: white;
}

.products-container .products-title {
  display: flex;
  justify-content: center;
  color: black;
  font-size: 24px;
  font-weight: 600;
}

.product-card-list {
  display: flex;
  justify-content: center;
  margin-top: 80px;
  gap: 80px;
}

.product-card {
  width: 350px;
  height: 400px;
  background-color: #f9f9f9;
  border: 1px solid #dddddd;
  box-shadow: 4px 4px 30px rgba(0, 0, 0, 0.14);
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.product-card img {
  margin-bottom: 24px;
  margin-top: 24px;
}

.product-card span {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 16px;
}

.product-card button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 276px;
  height: 52px;
  color: white;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  background: #ec8221;
  border: 1px solid #ec8221;
  border-radius: 4px;
}


.products-overview {
  background-color: #f9f9f9;
  width: 100%;
  height: 700px;
  padding: 20px;
  padding-left: 250px;
  padding-right: 250px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.products-overview .slides-container {
  height: fit-content;
  width: 100%;
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
  list-style: none;
  margin: 0;
  padding: 0;
}

.products-overview .slides-container .slide {
  width: 100%;
  height: 100%;
  flex: 1 0 100%;
}

.products-overview .overview-container {
  display: flex;
  justify-content: center;
}

.products-overview .overview-container .products {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
}

.products-overview .overview-container .products img {
  width: 100%;
}

.products-overview .overview-container .details {
  height: 526px;
  width: 50%;
  margin: auto 0;
  margin-right: 40px;
}

.products-overview .overview-container .details .title {
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
  padding: 8px;
  display: block;
}

.products-overview .overview-container .details .tabs {
  height: 300px;
  padding: 8px;
}

.btn {
  background-color: transparent;
  border: none;
  color: rgb(0, 0, 0);
  padding: 12px 16px;
  font-size: 16px;
  cursor: pointer;
}

.products-overview .overview-container .details .tabs .tabs-set,
.products-overview .overview-container .details .tabs_1 .tabs-set_1,
.products-overview .overview-container .details .tabs_2 .tabs-set_2,
.products-overview .overview-container .details .tabs_3 .tabs-set_3,
.products-overview .overview-container .details .tabs_4 .tabs-set_4,
.products-overview .overview-container .details .tabs_5 .tabs-set_5,
.products-overview .overview-container .details .tabs_6 .tabs-set_6,
.products-overview .overview-container .details .tabs_7 .tabs-set_7,
.products-overview .overview-container .details .tabs_8 .tabs-set_8,
.products-overview .overview-container .details .tabs_9 .tabs-set_9 {
  list-style: none;
  display: flex;
  -webkit-box-pack: start;
  -webkit-box-align: center;
  justify-content: flex-start;
  align-items: center;
  z-index: 0;
}

#content1,
#content2,
#content3,
#content1_1,
#content1_2,
#content1_3,
#content2_1,
#content2_2,
#content2_3,
#content3_1,
#content3_2,
#content3_3,
#content4_1,
#content4_2,
#content4_3,
#content5_1,
#content5_2,
#content5_3,
#content6_1,
#content6_2,
#content6_3,
#content7_1,
#content7_2,
#content7_3,
#content8_1,
#content8_2,
#content8_3,
#content9_1,
#content9_2,
#content9_3 {
  margin-top: 32px;
  padding-bottom: 32px;
  text-align: justify;
}

.tabs .tabs-panel section {
  display: none;
  padding: 19px 0 0;
}

input.tab-item {
  display: none;
}

#tab1_1.tab-item_1,
#tab1_2.tab-item_1,
#tab1_3.tab-item_1 {
  display: none;
}

#tab2_1.tab-item_2,
#tab2_2.tab-item_2,
#tab2_3.tab-item_2 {
  display: none;
}

#tab3_1.tab-item_3,
#tab3_2.tab-item_3,
#tab3_3.tab-item_3 {
  display: none;
}

#tab4_1.tab-item_4,
#tab4_2.tab-item_4,
#tab4_3.tab-item_4 {
  display: none;
}

#tab5_1.tab-item_5,
#tab5_2.tab-item_5,
#tab5_3.tab-item_5 {
  display: none;
}

#tab6_1.tab-item_6,
#tab6_2.tab-item_6,
#tab6_3.tab-item_6 {
  display: none;
}

#tab7_1.tab-item_7,
#tab7_2.tab-item_7,
#tab7_3.tab-item_7 {
  display: none;
}

#tab8_1.tab-item_8,
#tab8_2.tab-item_8,
#tab8_3.tab-item_8 {
  display: none;
}

#tab9_1.tab-item_9,
#tab9_2.tab-item_9,
#tab9_3.tab-item_9 {
  display: none;
}

label.tab-item,
.tab-item_1,
.tab-item_2,
.tab-item_3,
.tab-item_4,
.tab-item_5,
.tab-item_6,
.tab-item_7,
.tab-item_8,
.tab-item_9 {
  order: 1;
  width: 99%;
  display: inline-block;
  margin: -1 0 -1px;
  padding: 14px 25px;
  font-weight: 599;
  text-align: center;
  color: rgb(149, 150, 150);
  border-bottom: 2px solid;
  border-color: #ec8220;
}

label.tab-item:hover,
label.tab-item_1:hover,
label.tab-item_2:hover,
label.tab-item_3:hover,
label.tab-item_4:hover,
label.tab-item_5:hover,
label.tab-item_6:hover,
label.tab-item_7:hover,
label.tab-item_8:hover,
label.tab-item_9:hover {
  color: rgb(99, 100, 100);
  cursor: pointer;
}

input.tab-item:checked+label,
input.tab-item_1:checked+label,
input.tab-item_2:checked+label,
input.tab-item_3:checked+label,
input.tab-item_4:checked+label,
input.tab-item_5:checked+label,
input.tab-item_6:checked+label,
input.tab-item_7:checked+label,
input.tab-item_8:checked+label,
input.tab-item_9:checked+label {
  color: #fff;
  background-color: #ec8220;
  border-color: #ec8220;
}

#tab1:checked~.tab.content1,
#tab2:checked~.tab.content2,
#tab3:checked~.tab.content3 {
  display: block;
}

.buy-button-container {
  display: flex;
  width: 100%;
  justify-content: center;
}

.buy-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 260px;
  height: 40px;
  color: white;
  font-weight: 600;
  font-size: 20px;
  cursor: pointer;
  background: #169d55;
  border: 1px solid #169d55;
  border-radius: 4px;
  margin-top: 24px;
}

.location {
  background-color: #fff;
  width: 100%;
  height: 700px;
  padding: 20px;
  padding-top: 60px;
}

.location .location-title {
  display: flex;
  justify-content: center;
  color: black;
  font-size: 24px;
  font-weight: 600;
}

.location .location-container {
  margin: 0 auto;
  display: flex;
  width: 1300px;
  height: 620px;
  justify-content: center;
}

.location .location-container .contacts {
  width: 50%;
  display: flex;
  margin: auto 0;
  padding: 8px;
}

.location .location-container .contacts p.header-title {
  margin-bottom: 40px;
  width: 100%;
}

.location .location-container .contacts p {
  margin-bottom: 20px;
}

.location .location-container .contacts .contacts-container {
  margin: 0 auto;
}

.location .location-container .map {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
}

.location .location-container .map img {
  width: 85%;
}

.consumers {
  background-color: #f3b479;
  width: 100%;
  height: 515px;
  padding: 20px;
  padding-top: 60px;
}

.consumers .consumers-title {
  display: flex;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
}

.consumers-card-list {
  display: flex;
  justify-content: center;
  margin-top: 80px;
  gap: 80px;
}

.consumers-card {
  width: 350px;
  height: 200px;
  padding: 8px;
  background-color: #f9f9f9;
  border: 1px solid #dddddd;
  box-shadow: 4px 4px 30px rgba(0, 0, 0, 0.14);
  border-radius: 5px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.consumers-card p {
  padding: 8px;
  font-size: small;
  text-align: justify;
}

.consumers-card .card-header {
  padding: 8px;
  font-weight: 600;
}

.footer {
  background-color: #5bba88;
  width: 100%;
  height: 800px;
  padding: 20px;
  padding-top: 60px;
}

.footer .footer-container {
  margin: 0 auto;
  display: flex;
  width: 1300px;
  height: 100%;
  justify-content: center;
}

.footer .footer-container .left-side {
  width: 50%;
  padding: 8px;
}

.footer .footer-container .right-side {
  width: 50%;
  padding: 8px;
}

.footer-content .content-header {
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  color: #ffffff;
  margin-bottom: 32px;
}

.footer-content .links img {
  margin-right: 16px;
  cursor: pointer;
}

.footer-content {
  margin-bottom: 48px;
}

.footer-content span {
  display: block;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-content form>label {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
}

.footer-content form>input {
  width: 370px;
  height: 30px;
  margin-bottom: 16px;
  background-color: #5bba88;
  border: 2px solid #fff;
  color: #ffffff;
  border-radius: 4px;
}

.footer-content form>input:focus {
  outline: none;
  color: #ffffff;
}

.footer-content form>textarea.message {
  outline: none;
  color: #ffffff;
  width: 370px;
  height: 120px;
  margin-bottom: 16px;
  background-color: #5bba88;
  border: 2px solid #fff;
  resize: none;
}

.footer-content form>button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 20px;
  gap: 10px;
  color: #ffffff;
  cursor: pointer;
  width: 370px;
  height: 30px;
  background-color: #ef9b4d;
  border: 1px solid #ef9b4d;
  border-radius: 4px;
  font-weight: 400;
  font-size: 16px;
  line-height: 15px;
}

#click:hover {
  color: #555;
}

/* Mobile Styles */
@media only screen and (max-width: 400px) {
  .nav-container button.btn-mobile {
    display: block;
  }

  .menu-items {
    display: none;
  }

  .nav-container.active {
    background: rgba(0, 0, 0, 0.95);
    padding: 20px;
  }

  .nav-container.active .menu-items {
    background: rgba(0, 0, 0, 0.95);
    position: absolute;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    top: 102px;
    left: 0;
    gap: 20px;
    height: 100vh;
    z-index: 1000;
  }

  .nav-container.active .menu-items li {
    padding: 1rem 0;
    margin: 0 1rem;
  }

  .nav-container a.logo img {
    width: 100px;
  }

  .header-container.active {
    padding: 0;
    width: 100%;
  }

  #btn-mobile {
    display: flex;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border: none;
    background: none;
    color: white;
    cursor: pointer;
    gap: 0.5rem;
  }

  #hamburger {
    width: 20px;
    border-top: 2px solid;
  }

  #hamburger::after,
  #hamburger::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    margin-top: 5px;
    transition: 0.3s;
    position: relative;
  }

  .nav-container.active #hamburger {
    border-top-color: transparent;
  }

  .nav-container.active #hamburger::before {
    transform: rotate(135deg);
  }

  .nav-container.active #hamburger::after {
    transform: rotate(-135deg);
    top: -7px;
  }

  .header-container {
    padding: 20px;
    width: 100%;
    height: 600px;
    position: relative;
    background: rgba(0, 0, 0, 0.6);
  }

  .hero-container.active {
    margin-top: 0;
  }

  .hero-container {
    margin-top: 120px;
  }

  .hero-container .hero-text {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
  }

  .header-container .hero-video {
    background-size: auto;
  }

  .hero-container .hero-text p {
    display: block;
    text-align: center;
    font-weight: 600;
    font-size: 32px;
    color: white;
  }

  .hero-container .hero-text button {
    display: flex;
    color: white;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;

    width: 140px;
    height: 32px;
    font-size: 16px;
    font-weight: 600;

    cursor: pointer;

    background-color: #169d55;
    border-radius: 4px;
    border: 1px solid #169d55;
    margin: 0 auto;
  }

  .about-container {
    height: fit-content;
  }

  .about-container .about-title {
    display: flex;
    justify-content: center;
    color: black;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
  }

  .card-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 80px;
    gap: 20px;
  }

  .corporate-video {
    display: flex;
    margin-top: 80px;
    width: auto;
  }

  .card-list .card {
    margin-bottom: 48px;
    width: 335px;
  }

  .products-container {
    height: fit-content;
  }

  .products-container .product-card-list {
    flex-direction: column;
  }

  .products-container .product-card-list .product-card {
    margin-bottom: 48px;
  }

  .products-overview {
    /* height: fit-content; */
    padding-left: 0;
    padding-right: 0;
    height: fit-content;
  }

  .products-overview .overview-container {
    flex-direction: column;
    width: 100%;
    padding: 0;
  }

  .products-overview .overview-container .products {
    width: 100%;
  }

  .products-overview .overview-container .products img {
    width: 100%;
  }

  .products-overview .overview-container .details {
    height: fit-content;
    width: 100%;
    text-align: center;
    font-size: 18px;
  }

  .products-overview .overview-container .details .title {
    font-size: small;
  }

  .products-overview .overview-container .details .tabs .tabs-set,
  .products-overview .overview-container .details .tabs_1 .tabs-set_1,
  .products-overview .overview-container .details .tabs_2 .tabs-set_2,
  .products-overview .overview-container .details .tabs_3 .tabs-set_3,
  .products-overview .overview-container .details .tabs_4 .tabs-set_4,
  .products-overview .overview-container .details .tabs_5 .tabs-set_5,
  .products-overview .overview-container .details .tabs_6 .tabs-set_6,
  .products-overview .overview-container .details .tabs_7 .tabs-set_7,
  .products-overview .overview-container .details .tabs_8 .tabs-set_8,
  .products-overview .overview-container .details .tabs_9 .tabs-set_9 {
    width: 100%;
    display: block;
  }

  .overview-container {
    flex-direction: column;
  }

  .location {
    height: fit-content;
  }

  .location .location-container {
    height: fit-content;
    width: 100%;
    margin-top: 16px;
  }

  .location-container {
    height: fit-content;
    flex-direction: column;
    width: 100%;
  }

  .location .location-container .contacts {
    width: 100%;
  }

  .location .location-container .contacts p.header-title {
    text-align: justify;
  }

  #location>div>div.map {
    width: 100%;
  }

  .location-container img {
    display: block;
    width: 75%;
  }

  .consumers {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: fit-content;
  }

  .consumers .consumers-title {
    text-align: center;
  }

  .consumers-container .consumers-card-list {
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
  }

  .consumers-container .consumers-card-list p {
    font-size: 12px;
  }

  .consumers-container .consumers-card-list .consumers-card {
    margin-bottom: 24px;
    width: 335px;
  }

  .footer {
    height: fit-content;
  }

  .footer .footer-container {
    flex-direction: column;
    width: 100%;
  }

  .footer .footer-container .left-side {
    width: 100%;
  }

  .footer .footer-container .right-side {
    width: 100%;
  }

  .footer .footer-container .right-side input {
    width: 100%;
  }

  .footer .footer-container .right-side textarea {
    width: 100%;
  }

  .footer .footer-container .right-side button {
    width: 100%;
  }
}

/* Tablet Styles */
@media only screen and (min-width: 401px) and (max-width: 960px) {
  .nav-container button.btn-mobile {
    display: block;
  }

  .menu-items {
    display: none;
  }

  .nav-container.active {
    background: rgba(0, 0, 0, 0.95);
    padding: 20px;
  }

  .nav-container.active .menu-items {
    background: rgba(0, 0, 0, 0.95);
    position: absolute;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    top: 102px;
    left: 0;
    gap: 20px;
    height: 100vh;
    z-index: 1000;
  }

  .nav-container.active .menu-items li {
    padding: 1rem 0;
    margin: 0 1rem;
  }

  .nav-container a.logo img {
    width: 100px;
  }

  .header-container.active {
    padding: 0;
    width: 100%;
  }

  #btn-mobile {
    display: flex;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border: none;
    background: none;
    color: white;
    cursor: pointer;
    gap: 0.5rem;
  }

  #hamburger {
    width: 20px;
    border-top: 2px solid;
  }

  #hamburger::after,
  #hamburger::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    margin-top: 5px;
    transition: 0.3s;
    position: relative;
  }

  .nav-container.active #hamburger {
    border-top-color: transparent;
  }

  .nav-container.active #hamburger::before {
    transform: rotate(135deg);
  }

  .nav-container.active #hamburger::after {
    transform: rotate(-135deg);
    top: -7px;
  }

  .header-container {
    padding: 20px;
    width: 100%;
    height: 600px;
    position: relative;
    background: rgba(0, 0, 0, 0.6);
  }

  .hero-container.active {
    margin-top: 0;
  }

  .hero-container {
    margin-top: 120px;
  }

  .hero-container .hero-text {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
  }

  .header-container .hero-video {
    background-size: auto;
  }

  .hero-container .hero-text p {
    display: block;
    text-align: center;
    font-weight: 600;
    font-size: 32px;
    color: white;
  }

  .hero-container .hero-text button {
    display: flex;
    color: white;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;

    width: 140px;
    height: 32px;
    font-size: 16px;
    font-weight: 600;

    cursor: pointer;

    background-color: #169d55;
    border-radius: 4px;
    border: 1px solid #169d55;
    margin: 0 auto;
  }

  .about-container {
    height: fit-content;
  }

  .about-container .about-title {
    display: flex;
    justify-content: center;
    color: black;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
  }

  .corporate-video {
    display: flex;
    margin-top: 80px;
    width: auto;
  }

  .card-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 80px;
    gap: 20px;
  }

  .card-list .card {
    margin-bottom: 48px;
    width: 335px;
  }

  .products-container {
    height: fit-content;
  }

  .products-container .product-card-list {
    gap: 8px;
    flex-direction: column;
    align-items: center;
  }

  .products-container .product-card-list .product-card {
    margin-bottom: 48px;
  }

  .products-overview {
    padding-left: 0;
    padding-right: 0;
    height: fit-content;
  }

  .products-overview .overview-container {
    flex-direction: column;
    width: 100%;
    padding: 0;
  }

  .products-overview .overview-container .products {
    width: 100%;
  }

  .products-overview .overview-container .products img {
    width: 100%;
  }

  .products-overview .overview-container .details {
    height: fit-content;
    width: 100%;
    text-align: center;
    font-size: 18px;
  }

  .products-overview .overview-container .details .title {
    font-size: x-large;
    text-align: center;
  }

  .products-overview .overview-container .details .tabs .tabs-set,
  .products-overview .overview-container .details .tabs_1 .tabs-set_1,
  .products-overview .overview-container .details .tabs_2 .tabs-set_2,
  .products-overview .overview-container .details .tabs_3 .tabs-set_3,
  .products-overview .overview-container .details .tabs_4 .tabs-set_4,
  .products-overview .overview-container .details .tabs_5 .tabs-set_5,
  .products-overview .overview-container .details .tabs_6 .tabs-set_6,
  .products-overview .overview-container .details .tabs_7 .tabs-set_7,
  .products-overview .overview-container .details .tabs_8 .tabs-set_8,
  .products-overview .overview-container .details .tabs_9 .tabs-set_9 {
    width: 100%;
    display: block;
  }

  .overview-container {
    flex-direction: column;
  }

  .location {
    height: fit-content;
  }

  .location .location-container {
    height: fit-content;
    width: 100%;
    margin-top: 16px;
  }

  .location-container {
    height: fit-content;
    flex-direction: column;
    width: 100%;
  }

  .location .location-container .contacts {
    width: 100%;
  }

  .location .location-container .contacts p.header-title {
    text-align: justify;
  }

  #location>div>div.map {
    width: 100%;
  }

  .location-container img {
    width: 100%;
  }

  #consumers>div {
    width: 100%;
  }

  .consumers {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: fit-content;
  }

  .consumers .consumers-title {
    text-align: center;
  }

  .consumers-container .consumers-card-list {
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
  }

  .consumers-container .consumers-card-list .card-header {
    font-size: 12px;
  }

  .consumers-container .consumers-card-list p {
    font-size: 14px;
    font-size: 10px;
  }

  .consumers-container .consumers-card-list .consumers-card {
    margin-bottom: 24px;
    width: 335px;
  }

  .footer {
    height: fit-content;
  }

  .footer .footer-container {
    flex-direction: column;
    width: 100%;
  }

  .footer .footer-container .left-side {
    width: 100%;
  }

  .footer .footer-container .right-side {
    width: 100%;
  }

  .footer .footer-container .right-side input {
    width: 100%;
  }

  .footer .footer-container .right-side textarea {
    width: 100%;
  }

  .footer .footer-container .right-side button {
    width: 100%;
  }
}

/* Desktop Styles */
@media only screen and (min-width: 1366px) and (max-width: 1600px) {
  .hero-video {
    width: 100%;
    height: auto;
    top: 0;
  }

  .header-container {
    height: 100vh;
  }

  .products-container {
    height: 100%;
  }

  .products-overview {
    padding-left: 150px;
    padding-right: 150px;
  }

  .footer .footer-container {
    width: 1000px;
  }
}

@media (min-aspect-ratio: 16/9) {
  .hero-video {
    width: 100%;
    height: auto;
  }
}

@media (max-aspect-ratio: 16/9) {
  .hero-video {
    width: auto;
    height: 100%;
  }
}
