html {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  color: #292929;
  font-size: 16px;
  overflow-x: hidden !important;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden !important;
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
}
@media (max-width: 800px) {
  body {
    height:auto;
  }
}
.header {
  position: absolute;
  z-index: 9;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 45px;
  padding-bottom: 25px;
  top: 0;
  left: 0;
}
@media (max-width: 1600px) {
  .header {
    padding-top: 35px;
  }
  .header img {
    width: 130px;
  }
}
@media (max-width: 800px) {
  .header {
    padding-top: 25px;
  }
  .header img {
    width: 100px;
  }
}

.footer {
  position: absolute;
  z-index: 99;
  padding-bottom: 20px;
  top: calc(100vh - 40px);
  left: 0;
  width: 100%;
  text-align: center;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 101.4%;
  color: #504F4F;
}
@media (max-width: 1600px) {
  .footer {
    font-size: 13px;
    top:unset;
  }
}
@media (max-width: 800px) {
  .footer {
    font-size: 12px;
    position: relative;
  }
}

.wrapper .brands {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  gap: 0;
  box-sizing: border-box;
}
@media (max-width: 800px) {
  .wrapper .brands {
    padding-top: 40px;
    padding-bottom: 40px;
    flex-wrap: wrap;
    height: auto;
  }
}
.wrapper .brands .brand {
  width: 25%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 15px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

@media (max-width: 800px) {
  .wrapper .brands .brand {
    width: 50%;
    padding: 15px;
  }
  .wrapper .brands .brand .logo {
    max-width: 90% !important;
  }
}
.wrapper .brands .brand::after {
  background-color: rgba(255, 255, 255, 0.9);
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
}
.wrapper .brands .brand * {
  z-index: 5;
  position: relative;
}
.wrapper .brands .brand .logoc {
  height: 150px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 0;
}
.wrapper .brands .brand .logoc .logo {
  max-width: 100%;
}
.wrapper .brands .brand .gosite {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 23px;
  color: #292929;
  text-decoration: none;
  margin-top: 50px;
  opacity: 0;
  transition: all ease-in-out 0.3s;
  white-space: nowrap;
}
.wrapper .brands .brand .gosite::after {
  content: "";
  margin-left: 8px;
  height: 18px;
  width: 12px;
  background-image: url("/img/arrow.svg");
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 1600px) {
  .wrapper .brands .brand .gosite {
    font-size: 18px;
    line-height: 20px;
  }
  .wrapper .brands .brand .gosite::after {
    height: 15px;
    width: 10px;
  }
}
@media (max-width: 1200px) {
  .wrapper .brands .brand .gosite {
    font-size: 16px;
    line-height: 18px;
  }
  .wrapper .brands .brand .gosite::after {
    height: 14px;
    width: 9px;
  }
}
@media (max-width: 800px) {
  .wrapper .brands .brand .gosite {
    opacity: 1;
    font-size: 13px;
    line-height: 15px;
  }
  .wrapper .brands .brand .gosite::after {
    height: 10px;
    width: 7px;
  }
}
.wrapper .brands .brand:hover::after {
  background-color: white;
  transition: all ease-in-out 0.3s;
}
.wrapper .brands .brand:hover .gosite {
  opacity: 1;
  transition: all ease-in-out 0.5s;
}/*# sourceMappingURL=style.css.map */