* {
  margin: 0;
  padding: 0;
  border: none;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #f5f5f5;
  min-width: 100vh;
}
body.height main {
  min-height: 100vh;
  align-items: center;
}

html,
body {
  width: 100%;
  max-width: 100vw;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1368px) {
  .container {
    padding: 1rem !important;
  }
}

p {
  font-size: 1rem;
  line-height: 1.5;
  width: 100%;
  color: #101014;
}

a {
  text-decoration: none;
  color: #101014;
}
a:hover {
  text-decoration: none;
  color: #04107e;
}

h1 {
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  font-size: 2.5rem;
  font-weight: 800;
  color: #04107e;
}

h2 {
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #04107e;
}

h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
}

h4 {
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
}

h5 {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: bold;
}

.fa-brands {
  font-weight: bold;
}

.display-title {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.display-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0.2rem;
  height: 100%;
  width: 8px;
  background-color: #04107e;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: 1rem;
  font-weight: bold;
}
.form-group input,
.form-group textarea {
  padding: 0.8rem 1.5rem;
  border-radius: 2px;
  font-size: 1rem;
  outline: none;
  border: 2px solid #c9c9c9;
  transition: all 0.3s ease-in-out;
}
.form-group input:focus,
.form-group textarea:focus {
  border: 2px solid #04107e;
}
.form-group input::-moz-placeholder, .form-group textarea::-moz-placeholder {
  font-weight: 500;
  color: #242323;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  font-weight: 500;
  color: #242323;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .row {
    flex-direction: column;
    gap: 1rem;
  }
  .row > div {
    flex: 1 0 100%;
    max-width: 100%;
    align-items: center;
    justify-content: center !important;
  }
}

.col-1 {
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

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

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

::-webkit-scrollbar-thumb {
  background-color: #a1a1a1;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
}
.btn.btn-primary {
  background-color: #04107e;
  color: #fff;
}
.btn.btn-primary:hover {
  background-color: #020a4d;
}

header {
  position: static;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: #f5f5f5;
  width: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease-in-out;
}
header .main-header {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo img{
  max-width: 200px;
}

@media screen and (max-width: 768px) {
  header .main-header {
    gap: 1rem;
    margin: 1rem 0;
  }
  header .main-header .contact-info span {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  header .main-header .logo img {
    width: 125px;
  }
}
header .menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: #04107e;
}
@media screen and (max-width: 768px) {
  header .menu-toggle {
    display: block;
  }
}
header .contact-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .contact-info .contact-info-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-left: 2rem;
}
@media screen and (max-width: 768px) {
  header .contact-info .contact-info-item {
    margin-left: 1.5rem;
  }
  header .contact-info .contact-info-item i {
    margin: 0 !important;
  }
}
header .contact-info .contact-info-item a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
header .contact-info .contact-info-item i {
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border-radius: 50%;
  margin-right: 1rem;
  color: rgb(88, 86, 86);
  background-color: rgb(214, 214, 214);
}
header .menu-container {
  display: flex;
  min-height: 0.5rem;
  background-color: #383838;
  transition: all 0.3s ease-in-out;
}
header .menu-container a {
  color: #fff;
}
@media screen and (max-width: 768px) {
  header .menu-container .container {
    padding: 0 !important;
  }
}
header .menu-container .menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  font-weight: bold;
}
header .menu-container .menu li {
  padding: 0.8rem 3rem;
  transition: all 0.3s ease-in-out;
}
header .menu-container .menu li:hover {
  background-color: #1f1f1f;
}
@media screen and (max-width: 768px) {
  header .menu-container .menu {
    flex-direction: column;
    gap: 1rem;
  }
  header .menu-container .menu li {
    padding: 1rem 0;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease-in-out;
    display: none;
  }
  header .menu-container .menu.active li {
    display: block;
  }
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

section.carroussel {
  flex: 1;
  position: relative;
  width: 100%;
  height: 100%;
  position: relative;
  max-height: 75vh;
  max-width: 100%;
}
section.carroussel .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: rgb(207, 206, 214);
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  min-height: 75vh;
}
section.carroussel .swiper-slide .slide-content {
  margin-top: -3rem;
  flex: 1;
  z-index: 3333;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}
section.carroussel .swiper-slide .slide-content p {
  max-width: 100ch;
  color: rgb(255, 255, 255);
  text-shadow: 0 0 10px rgb(8, 0, 0);
  margin-bottom: 2rem;
}
section.carroussel .swiper-slide .slide-content h1 {
  z-index: 3333;
  font-size: clamp(2rem, 5vw, 4rem);
  text-transform: none !important;
  max-width: 20ch;
  color: rgb(253, 253, 253);
  text-shadow: 0 0 10px rgb(2, 0, 15);
}
section.carroussel .swiper-slide .slide-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
section.carroussel .swiper-slide .slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.carroussel .swiper-slide .slide-img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(5, 0, 19, 0.541) 0%, rgba(0, 0, 0, 0.575) 10%, rgba(0, 0, 0, 0.08) 100%);
  mix-blend-mode: hard-light;
}
section.carroussel .swiper-button-next,
section.carroussel .swiper-button-prev {
  background-color: rgba(225, 225, 225, 0.4196078431);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  color: #1e004e;
}
section.carroussel .swiper-button-next:after,
section.carroussel .swiper-button-prev:after {
  font-size: 10pt !important;
}

section#differentials {
  margin-top: -5rem;
  z-index: 10;
}
section#differentials .differentials-wrapper {
  background-color: #f5f5f5;
  padding: 1rem;
  display: flex;
  gap: 1rem;
  border-radius: 0.5rem;
}
@media screen and (max-width: 768px) {
  section#differentials .differentials-wrapper {
    flex-direction: column;
  }
  section#differentials .differentials-wrapper .differential {
    max-width: 100%;
  }
}
section#differentials .differential {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 350px;
  padding: 2rem 1rem;
  border: 2px solid #e1e1e1;
  transition: all 0.3s ease-in-out;
}
section#differentials .differential img {
  max-width: 64px;
  margin-bottom: 2rem;
}
section#differentials .differential h3 {
  font-size: 1.5rem;
  font-weight: bolder;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: #020a4d;
}
section#differentials .differential:hover {
  border: 2px solid #04107e;
  transform: scale(1.05);
}

section#about {
  margin-top: 2rem;
  padding: 3rem 0;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}
section#about .about-image {
  display: flex;
  justify-content: flex-end;
}
section#about .about-image img {
  width: 90%;
  height: 100%;
  max-height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  section#about .about-image img {
    max-width: 100%;
    width: 100%;
  }
}

section#services {
  margin-top: 5rem;
  padding: 4rem 0;
  background-color: #edeff1;
}
section#services h2 {
  padding-left: 0.8rem;
  margin-bottom: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 3rem;
}
section#services .services-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}
section#services .services-wrapper .service {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  background-color: #f5f5f5;
  border: 2px solid #e1e1e1;
  border-radius: 0.5rem;
  transition: all 0.3s ease-in-out;
}
section#services .services-wrapper .service:hover {
  transform: scale(1.05);
}
section#services .services-wrapper .service:hover:after {
  background-color: #04107e;
}
section#services .services-wrapper .service:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #8d8d8d;
}
section#services .services-wrapper .service .service-text {
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
section#services .services-wrapper .service .service-text h3 {
  font-size: 1.4rem;
  font-weight: bolder;
  margin-bottom: 1rem;
  color: #020a4d;
}
section#services .services-wrapper .service .service-text p {
  font-size: 1rem;
  color: rgb(88, 86, 86);
}
section#services .services-wrapper .service img {
  width: 100%;
  height: 100%;
  max-height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}

section.our-clients {
  width: 100%;
  height: 10rem;
  margin-top: 5rem;
  position: relative;
}
section.our-clients .container {
  height: 100%;
}
section.our-clients .clients-carrousel {
  width: 100%;
  height: 100%;
}
section.our-clients .swiper-slide {
  height: 100%;
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f5f5f5;
}
section.our-clients .swiper-slide img {
  display: block;
  height: 100%;
  min-width: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(100%) brightness(110%) opacity(0.8);
  mix-blend-mode: multiply;
}

footer {
  position: static;
  bottom: 0;
  padding: 2rem 0;
  background-color: #383838;
  color: rgb(230, 230, 230);
}

footer img{
  max-width: 200px;
}

footer p {
  color: rgb(240, 240, 240);
  font-size: 0.9rem;
}
footer .row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
footer .row:nth-child(1) {
  padding: 3rem 0;
}
footer .row > div {
  flex: 1;
}
@media screen and (max-width: 768px) {
  footer .row {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}
footer .display-title::before {
  background-color: white;
}
footer hr {
  border: 1px solid rgb(107, 107, 107);
  margin: 1rem 0;
  margin-top: 2rem;
}
footer .text-center {
  text-align: center;
  color: #fff;
}

.top-button {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  color: #fff;
  background-color: #04107e;
  border: none;
  border-radius: 50%;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  display: none;
}
.top-button:hover {
  background-color: #020a4d;
}
.top-button.active {
  display: block;
}

section#contact {
  padding: 4rem 0;
}
@media screen and (max-width: 1200px) {
  section#contact .row {
    background-color: #f5f5f5 !important;
  }
  section#contact aside {
    display: none;
  }
  section#contact form {
    padding: 2rem 0rem !important;
  }
}
section#contact .row {
  background-color: white;
  flex-direction: row;
  align-items: stretch;
  border-radius: 0.5rem;
}
section#contact .row section {
  flex: 1;
}
section#contact .row section form {
  display: flex;
  flex-direction: column;
  padding: 2rem 6rem;
}
section#contact .display-title.mobile {
  display: none;
}
@media screen and (max-width: 1200px) {
  section#contact .display-title.mobile {
    display: block;
  }
}
section#contact aside {
  border-radius: 0.5rem 0 0 0.5rem;
  min-height: 100%;
  max-width: 400px;
  color: rgb(207, 206, 214) !important;
  background-color: rgba(15, 1, 39, 0.9176470588);
}
section#contact aside p {
  color: rgb(207, 206, 214);
}
section#contact aside .display-title {
  color: white;
}
section#contact aside .display-title:before {
  background-color: white;
}
section#contact aside div {
  min-height: 100%;
  height: 100%;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
section#contact aside div ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
section#contact aside div ul li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
section#contact aside div ul li i {
  font-size: 1.2rem;
}
section#contact aside div ul li a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
section#contact aside div ul li a:hover {
  color: #04107e;
}

section#login .container {
  margin-top: 7rem;
  display: flex;
  background-color: white;
  gap: 2rem;
  border: 2px solid #d8d8d8;
}
@media screen and (max-width: 768px) {
  section#login .container {
    flex-direction: column;
    align-items: center;
  }
  section#login .container .image {
    display: none;
  }
}
section#login aside {
  max-width: 550px;
  flex: 1;
  padding: 3rem;
}
section#login aside .display-title {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  section#login aside {
    padding: 2rem 1rem;
  }
}
section#login aside p {
  margin-bottom: 1rem;
}
section#login aside form {
  display: flex;
  flex-direction: column;
}
section#login aside form input {
  padding: 0.8rem;
}
section#login .image img {
  max-height: 500px;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.error-message {
  width: 100%;
  background-color: hsl(359, 100%, 99.4%);
  border: 1px hsl(358, 65%, 48.7%) solid;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  margin-bottom: 0.5rem;
}
.error-message span {
  color: hsl(358, 65%, 48.7%);
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal.active {
  display: flex;
}
.modal .modal-content {
  width: 100%;
  max-width: 550px;
  background-color: white;
  padding: 4rem 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  text-align: center;
}
.modal .modal-content .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.modal .modal-content .close i {
  color: rgb(146, 146, 146);
}
.modal .modal-content .close i:hover {
  color: #04107e;
}
.modal .modal-content .modal-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.modal .modal-content .modal-header i {
  font-size: 5rem;
  color: #04107e;
}
.modal .modal-content .modal-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}/*# sourceMappingURL=styles.css.map */