@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
html, body {
  min-width: 100vw;
  min-height: 100vh;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Roboto", sans-serif;
}

.button__submit {
  width: 45%;
  font-size: 2.5rem;
  border: none;
  border-radius: 70px;
  padding: 0.5rem 0;
  background-color: #06283D;
  color: #FF6C1A;
  border: 1px solid #FF6C1A;
  transition-property: color, background-color;
  transition-duration: 0.4s;
}
.button__submit:hover {
  cursor: pointer;
  background-color: #FF6C1A;
  color: #fff;
}
.button__goBack {
  width: 40%;
  font-size: 2.7rem;
  border: none;
  border-radius: 70px;
  padding: 0.9rem 0;
  background-color: #06283D;
  color: #FF6C1A;
  border: 1px solid #FF6C1A;
  align-self: center;
  text-decoration: none;
  text-align: center;
  margin-top: 0.5rem;
  transition-property: color, background-color;
  transition-duration: 0.4s;
}
.button__goBack:hover {
  cursor: pointer;
  background-color: #FF6C1A;
  color: #fff;
}

.footer {
  background-color: #fff;
}
.footer__h3 {
  color: #FF6C1A;
  font-size: 1.5rem;
  padding: 2rem 0;
  margin: 0 auto;
  text-align: center;
  font-weight: 400;
}
.footer__strong {
  font-weight: 700;
}

.navbar {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
  margin: 0 auto;
  height: 10rem;
  border-bottom: 1px solid #f2f2f2;
  z-index: 2;
}

.nav__logo {
  height: 7.5rem;
}

.nav-btn {
  display: flex;
}

.lang__select {
  display: flex;
  justify-content: center;
  align-items: center;
}
.lang__spacer {
  font-size: 1.3rem;
  color: #009ED9;
}
.lang__opt {
  line-height: 3rem;
  color: #c2c2c2;
  padding: 0 1rem;
  letter-spacing: 0.1rem;
  font-size: 1.3rem;
  transition: 0.5s;
  text-decoration: none;
}
.lang__opt--active {
  color: #FF6C1A;
}
.lang__opt:hover {
  transform: scale(1.1);
}

.logo span {
  font-weight: 300;
}

.nav-links > ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav__item {
  position: relative;
}

.nav__item > a {
  line-height: 3rem;
  color: #009ED9;
  padding: 0 1rem;
  letter-spacing: 0.1rem;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.5s;
  text-decoration: none;
}

.nav__item > a > i {
  margin-left: 0.2rem;
}

.nav__item:hover > a {
  transform: scale(1.1);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 14rem;
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
  z-index: 3;
}
.dropdown__list {
  list-style: none;
}

.dropdown ul {
  position: relative;
}

.dropdown__item > a {
  display: flex;
  background-color: #fff;
  color: #FF6C1A;
  padding: 0.5rem 1rem;
  font-size: 1.8rem;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  text-decoration: none;
  text-align: center;
}

.dropdown__item:hover > a {
  background-color: #FF6C1A;
  color: #fff;
}

.dropdown__item:not(:nth-last-child(1)) {
  border-bottom: 1px solid #efefef;
}

.dropdown__item i {
  transform: rotate(-90deg);
}

.arrow {
  position: absolute;
  width: 11px;
  height: 11px;
  top: -5.5px;
  left: 32px;
  background-color: #fff;
  transform: rotate(45deg);
  cursor: pointer;
  transition: 0.3s;
  z-index: -1;
}

.dropdown__item:first-child:hover ~ .arrow {
  background-color: #FF6C1A;
}

.dropdown__item {
  position: relative;
}

.dropdown.second {
  top: 0;
  left: 100%;
  padding-left: 0.8rem;
  cursor: pointer;
  transform: translateX(10px);
  width: 21rem;
}

.dropdown.second .arrow {
  top: 0.5rem;
  left: -5.5px;
}

.nav__item:hover > .dropdown,
.dropdown__item:hover > .dropdown {
  transform: translate(0, 0);
  opacity: 1;
  pointer-events: auto;
}

.hamburger-menu-container {
  flex: 1;
  display: none;
  align-items: center;
  justify-content: flex-end;
}

.hamburger-menu {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hamburger-menu div {
  width: 1.6rem;
  height: 3px;
  border-radius: 3px;
  background-color: #fff;
  position: relative;
  z-index: 1001;
  transition: 0.5s;
}

.hamburger-menu div:before,
.hamburger-menu div:after {
  content: "";
  position: absolute;
  width: inherit;
  height: inherit;
  background-color: #fff;
  border-radius: 3px;
  transition: 0.5s;
}

.hamburger-menu div:before {
  transform: translateY(-7px);
}

.hamburger-menu div:after {
  transform: translateY(7px);
}

#check {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  z-index: 90000;
  cursor: pointer;
  opacity: 0;
  display: none;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div {
  background-color: transparent;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:before {
  transform: translateY(0) rotate(-45deg);
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:after {
  transform: translateY(0) rotate(45deg);
}

@keyframes animation {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
@media (max-width: 920px) {
  .hamburger-menu-container {
    display: flex;
  }
  #check {
    display: block;
  }
  .nav-btn {
    position: fixed;
    height: calc(100vh - 3rem);
    top: 3rem;
    left: 0;
    width: 100%;
    background-color: #69bde7;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    overflow-x: hidden;
    overflow-y: auto;
    transform: translateX(100%);
    transition: 0.65s;
  }
  #check:checked ~ .nav-btn {
    transform: translateX(0);
  }
  #check:checked ~ .nav-btn .nav__item,
#check:checked ~ .nav-btn .log-sign {
    animation: animation 0.5s ease forwards var(--i);
  }
  .nav-links {
    flex: initial;
    width: 100%;
  }
  .nav-links > ul {
    flex-direction: column;
  }
  .nav__item {
    width: 100%;
    opacity: 0;
    transform: translateY(15px);
  }
  .nav__item > a {
    line-height: 1;
    padding: 1.6rem 2rem;
  }
  .nav__item:hover > a {
    transform: scale(1);
    background-color: #50a9d6;
  }
  .dropdown, .dropdown.second {
    position: initial;
    top: initial;
    left: initial;
    transform: initial;
    opacity: 1;
    pointer-events: auto;
    width: 100%;
    padding: 0;
    background-color: #3183ac;
    display: none;
  }
  .nav__item:hover > .dropdown,
.dropdown__item:hover > .dropdown {
    display: block;
  }
  .nav__item:hover > a > i,
.dropdown__item:hover > a > i {
    transform: rotate(360deg);
  }
  .dropdown__item > a {
    background-color: transparent;
    color: #fff;
    padding: 1.2rem 2rem;
    line-height: 1;
  }
  .dropdown.second .dropdown__item > a {
    padding: 1.2rem 2rem 1.2rem 3rem;
  }
  .dropdown.second .dropdown.second .dropdown__item > a {
    padding: 1.2rem 2rem 1.2rem 4rem;
  }
  .dropdown__item:not(:nth-last-child(2)) {
    border-bottom: none;
  }
  .arrow {
    z-index: 1;
    background-color: #69bde7;
    left: 10%;
    transform: scale(1.1) rotate(45deg);
    transition: 0.5s;
  }
  .nav__item:hover .arrow {
    background-color: #50a9d6;
  }
  .dropdown .dropdown .arrow {
    display: none;
  }
  .dropdown__item:hover > a {
    background-color: #3a91bd;
  }
  .dropdown__item:first-child:hover ~ .arrow {
    background-color: #50a9d6;
  }
  .nav__item > a > i {
    font-size: 1.1rem;
    transform: rotate(-90deg);
    transition: 0.7s;
  }
  .dropdown i {
    font-size: 1rem;
    transition: 0.7s;
  }
  .log-sign {
    flex: initial;
    width: 100%;
    padding: 1.5rem 1.9rem;
    justify-content: flex-start;
    opacity: 0;
    transform: translateY(15px);
  }
}
.rewenHome__carousel {
  z-index: 0;
}

.carousel {
  width: 100vw;
  height: 80vh;
  position: relative;
}

.carousel > ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 200ms opacity ease-in-out;
  transition-delay: 200ms;
}

.slide > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slide[data-active] {
  opacity: 1;
  z-index: 1;
  transition-delay: 0ms;
}

.carousel-button {
  position: absolute;
  z-index: 2;
  background: none;
  border: none;
  font-size: 4rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  border-radius: 0.25rem;
  padding: 0 0.5rem;
  background-color: rgba(0, 0, 0, 0.1);
}

.carousel-button:hover,
.carousel-button:focus {
  color: white;
  background-color: rgba(0, 0, 0, 0.2);
}

.carousel-button:focus {
  outline: 1px solid black;
}

.carousel-button.prev {
  left: 2.5rem;
}

.carousel-button.next {
  right: 2.5rem;
}

.bannerInfo {
  background-color: #06283D;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bannerInfo__content {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
  row-gap: 2.5rem;
  width: 80%;
}
.bannerInfo__h2 {
  font-size: 4rem;
  justify-content: center;
}
.bannerInfo__p {
  font-size: 2.8rem;
  font-weight: 400;
  text-align: center;
}

.bannerCatolog {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bannerCatolog__content {
  color: #06283D;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
  row-gap: 2.5rem;
  width: 80%;
}
.bannerCatolog__h2 {
  font-size: 4rem;
  justify-content: center;
}
.bannerCatolog__p {
  font-size: 2.8rem;
  font-weight: 400;
  text-align: center;
}

.bannerClients {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bannerClients__content {
  color: #06283D;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
  row-gap: 2.5rem;
  width: 80%;
}
.bannerClients__h2 {
  font-size: 4rem;
  justify-content: center;
}

.clients__grid {
  display: grid;
  width: 100%;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: repeat(7, 1fr);
  justify-items: center;
  row-gap: 2rem;
}
.clients__img {
  height: 8rem;
}

.trustInfo {
  background-color: #06283D;
  display: flex;
  justify-content: center;
  align-items: center;
}
.trustInfo__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 82%;
  color: #fff;
  padding: 4.8rem 0;
}
.trustInfo__h2 {
  font-size: 3.2rem;
}
.trustInfo__p {
  font-size: 1.8rem;
  text-align: justify;
}
.trustInfo__subContent {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.trustInfo__superContent {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  width: 100%;
  padding-top: 1.5rem;
}
.trustInfo__h5 {
  font-size: 1.5rem;
}
.trustInfo__list {
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
  padding-top: 0.5rem;
  list-style-type: disc;
}
.trustInfo__details {
  width: 50%;
}

.companyDetails {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.companyDetails__content {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 4.7rem 0;
}
.companyDetails__box {
  width: 30%;
  height: 19rem;
  border: 1px solid #06283D;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.companyDetails__h3 {
  color: #FF6C1A;
  font-size: 2.7rem;
  padding: 2.5rem 2.5rem;
}
.companyDetails__a, .companyDetails__p {
  font-size: 2rem;
  color: #06283D;
  padding: 0 2.5rem 2.5rem 2.5rem;
}

.catalog {
  background-color: #06283D;
  display: flex;
  align-items: center;
  justify-content: center;
}
.catalog__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
  width: 87%;
  column-gap: 2%;
  row-gap: 1%;
  margin: 3% 0 9% 0;
}
.catalog__box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background-color: #fff;
  border-radius: 1.8rem;
  cursor: pointer;
  color: #06283D;
}
.catalog__box:hover h5 {
  color: #FF6C1A;
  transform: scale(1.05);
}
.catalog__img {
  object-fit: cover;
  height: 33rem;
  width: 100%;
  border-radius: 1.8rem 1.8rem 0 0;
}
.catalog__h5 {
  text-align: center;
  font-size: 2rem;
  margin-top: auto;
  margin-bottom: auto;
  padding: 1rem;
  transition-property: color, transform;
  transition-duration: 0.5s;
}

.contactForm {
  background-color: #06283D;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contactForm__form {
  display: flex;
  flex-direction: column;
  width: 55%;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  padding: 2rem 0;
}
.contactForm__label {
  margin-top: 1rem;
}
.contactForm__label:nth-child(1) {
  margin-top: 0;
}
.contactForm__fields {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 2.5rem 0;
}
.contactForm__input {
  font-size: 1.8rem;
  border-radius: 1.3rem;
  color: #FF6C1A;
  padding: 0.5rem 0.9rem;
  font-weight: 400;
  font-family: inherit;
  border: none;
}

.service__presentation {
  background-color: #06283D;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service__content {
  width: 80%;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 5%;
}
.service__img {
  height: 80%;
  border: 1px solid #c2c2c2;
  border-radius: 3rem;
  object-fit: cover;
  max-width: 50%;
}
.service__explanation {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 45%;
  row-gap: 2.3rem;
}
.service__h2 {
  color: #DFF6FF;
  font-size: 4.9rem;
}
.service__p {
  color: #fff;
  font-size: 2rem;
  text-align: justify;
}
.service__p--location {
  font-size: 1.7rem;
}

.aboutUs {
  background-color: #06283D;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80vh;
}
.aboutUs__content {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 3%;
}
.aboutUs__img {
  width: 50%;
  height: 65vh;
  object-fit: cover;
  border-radius: 1rem;
}
.aboutUs__text {
  width: 40%;
  display: flex;
  flex-direction: column;
  row-gap: 1.6rem;
}
.aboutUs__h5 {
  color: #DFF6FF;
  font-size: 1.9rem;
}
.aboutUs__h3 {
  color: #47B5FF;
  font-size: 2.8rem;
}
.aboutUs__p {
  color: #fff;
  font-size: 1.9rem;
  text-align: justify;
}
.aboutUs__p:nth-last-child(2) {
  margin-bottom: 1rem;
}
