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

.strong {
  font-weight: bold;
}

.text-red-normal {
  color: #B31312;
}

.text-red-dark {
  color: #b42b2b;
}

.text-red-light {
  color: #d34040;
}

header {
  width: 100%;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  margin-right: 40px;
}
.header-logo img {
  width: 200px;
}

.header-options {
  display: flex;
  gap: 14px;
}

.header-options a {
  color: #fff;
  transition: color 0.4s;
}

.header-options a:hover {
  color: #B31312;
}

.languages {
  display: flex;
  gap: 5px;
}

.header-mobile {
  display: none;
}

@keyframes translateY {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(-8px) scale(1.1);
  }
}
.header-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 810px) {
  .header-menu {
    display: none;
  }
  .languages {
    display: none;
  }
  .burger {
    position: relative;
  }
  .header-mobile {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
  }
  .header-mobile i {
    color: #fff;
    font-size: 30px;
  }
  .header-mobile:hover {
    cursor: pointer;
  }
  .header-options-mobile {
    position: absolute;
    right: 0px;
    top: 40px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    width: 150px;
    background-color: #fff;
    padding: 10px;
    opacity: 0;
  }
  @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(300px);
    }
    to {
      opacity: 1;
    }
  }
  @keyframes fadeOutRight {
    from {
      opacity: 1;
      transform: translateX(0px);
    }
    to {
      opacity: 0;
      transform: translateX(300px);
    }
  }
  .header-options-mobile a {
    color: #06121e;
  }
  .languages-mobile {
    display: flex;
    gap: 5px;
  }
}
.hero {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px;
  z-index: -1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 0;
  opacity: 0.9;
}
.hero h1 {
  line-height: 120%;
  max-width: 600px;
  font-size: 46px;
  text-align: left;
}
.hero p {
  margin: 14px 0px;
  max-width: 600px;
  font-size: 18px;
}
.hero div {
  flex: 1;
}

.group {
  background-color: #EDF2F4;
  overflow: hidden;
  color: #0D1317;
  margin-top: 80vh;
  padding: 80px 0px 80px 0px;
}
.group .group-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.group .group-content h2 {
  text-align: center;
  font-size: 38px;
  margin-bottom: 5px;
}
.group .group-content div {
  display: flex;
  justify-content: center;
  align-items: center;
}
.group .group-content .group-img {
  width: 400px;
}
.group .group-content .group-item {
  width: 300px;
  display: flex;
  flex-direction: column;
}
.group .group-content .group-item img {
  max-width: 100px;
}
.group .group-content .group-item p {
  margin-top: 5px;
  text-align: center;
  font-weight: bold;
  color: #06121e;
}

.group-image-mobile {
  display: none;
  max-width: 400px;
}

@media screen and (max-width: 768px) {
  .group-text {
    max-width: 400px;
    text-align: center;
  }
  .group-img {
    display: none;
  }
  .group-item {
    display: none !important;
  }
  .group-image-mobile {
    display: block;
    margin-top: 40px;
  }
}
@media (min-width: 769px) and (max-width: 810px) {
  .group-img {
    width: 250px !important;
  }
  .group-item {
    width: 200px !important;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .group-text {
    max-width: 700px;
    text-align: center;
  }
}
.about {
  background-color: #EDF2F4;
  overflow: hidden;
  color: #0D1317;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-image: linear-gradient(to bottom, rgba(6, 18, 30, 0.5), #06121e), url("/res/assets/aboutusbbg2.jpg");
  padding: 40px 80px;
}

.about-content {
  display: flex;
  justify-content: center;
  padding: 0px;
  gap: 40px;
  color: #fff;
}
.about-content .history {
  max-width: 300px;
  background-color: rgba(255, 255, 255, 0.6);
  padding-left: 10px;
  padding-top: 10px;
  padding-right: 10px;
  color: #06121e;
}
.about-content .history h2 {
  margin-bottom: 20px;
  font-weight: bold;
}
.about-content .history .year {
  font-size: 12px;
}
.about-content .history h3 {
  margin-bottom: 5px;
}
.about-content .history .history-item {
  margin-bottom: 30px;
}
.about-content .about-description {
  flex: 1;
}
.about-content .about-description h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 35px;
}
.about-content .about-description p {
  text-align: justify;
  margin-bottom: 20px;
  font-size: 22px;
}

@media screen and (max-width: 599px) {
  .hero h1 {
    font-size: 24px;
  }
  .about {
    padding: 20px 40px;
  }
  .about-content {
    gap: 30px;
  }
  .about-content img {
    max-width: 80%;
    border-radius: 15px;
  }
}
@media screen and (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }
  .history {
    display: none;
  }
}
.clients {
  background-color: #fff;
  color: #0D1317;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 54px 14px;
  overflow: hidden;
}

.clients-content h2 {
  text-align: center;
  font-size: 38px;
  margin-bottom: 60px;
}
.clients-content p {
  line-height: 150%;
  margin-bottom: 14px;
  text-align: center;
  max-width: 780px;
}

.cards {
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}
.cards .card {
  color: #000;
  width: 200px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px -1px 17px -4px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  overflow: hidden;
  padding: 15px;
}
.cards .card img {
  max-width: 100px;
  max-height: 100px;
  transition: transform 0.25s;
}

.card:hover img {
  transform: scale(1.2);
  z-index: 1;
}

@media (min-width: 600px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .cards {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (max-width: 599px) {
  .card {
    width: 100% !important;
  }
}
.footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 100px 0px 0px 0px;
  gap: 24px;
  color: #06121e;
  background-color: #fff;
  overflow: hidden;
}
.footer .copy {
  text-align: center;
  background-color: #edeaef;
  padding: 10px;
  color: #0c2135;
  margin-top: 80px;
}

.footer-content {
  width: 80%;
  display: flex;
  justify-content: space-between;
}

.footer-address {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}
.footer-address .item {
  display: flex;
  align-items: flex-start;
}
.footer-address .item img {
  width: 75px;
  margin-right: 16px;
}

.footer-icons {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.footer-icons a {
  color: #0c2135;
}

.footer-logo img {
  width: 150px;
}

.languages-footer {
  margin-top: 10px;
  display: flex;
  gap: 5px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .languages-footer {
    justify-content: center;
  }
}
@media screen and (max-width: 425px) {
  .copy {
    font-size: 14px;
  }
}
body {
  font-family: "Sora", sans-serif;
  width: 100%;
  height: 100vh;
  position: relative;
  background-color: #06121e;
}

button {
  font-family: "Sora", sans-serif;
  cursor: pointer;
}

svg {
  width: 100%;
}

img {
  width: 100%;
}

a {
  cursor: pointer;
  text-decoration: none;
}

.bg-home {
  position: relative;
  padding: 20px 40px 40px 40px;
}

.bg-home::before {
  content: "";
  display: block;
}

.container {
  max-width: 1368px;
  margin: 0 auto;
  padding: 0 8px;
}/*# sourceMappingURL=about.css.map */