* {
  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;
  /*.texts{
      max-width: 650px;
      background-color: rgba(6, 18, 30, 0.6);
      padding: 5px;
  }*/
}
.hero h1 {
  line-height: 120%;
  max-width: 650px;
  font-size: 46px;
  text-align: left;
}
.hero p {
  margin: 14px 0px;
  max-width: 650px;
  font-size: 18px;
}
.hero div {
  flex: 1;
}

.button-contact {
  padding: 14px 28px;
  color: #fff;
  background-color: #B31312;
  border: 0;
  font-size: 18px;
  font-weight: 600;
  margin: 14px 0;
}

.button-contact:hover {
  animation: scaleButton 0.8s alternate infinite;
}

@keyframes scaleButton {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.07);
  }
}
@media screen and (max-width: 810px) {
  .hero {
    min-height: 60vh;
  }
  .hero h1 {
    font-size: 34px;
    width: 100%;
  }
  .hero p {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .hero h1 {
    font-size: 24px;
  }
}
.about {
  background-color: #EDF2F4;
  overflow: hidden;
  color: #0D1317;
  margin-top: 80vh;
  height: 80vh;
  display: flex;
  align-items: center;
}

.about-content {
  display: flex;
  align-items: center;
  padding: 0px;
  gap: 40px;
}

.divimg {
  display: flex;
  justify-content: center;
  align-items: center;
}
.divimg img {
  width: 600px;
  border-radius: 15px;
}

.about-description h2 {
  text-align: left;
  font-size: 38px;
  margin-bottom: 24px;
  color: #06121e;
}
.about-description p {
  text-align: left;
  margin-bottom: 14px;
  line-height: 150%;
  font-size: 24px;
  color: #353436;
}

@media screen and (max-width: 425px) {
  .divimg img {
    max-width: 340px !important;
  }
  .about-description h2 {
    font-size: 26px;
  }
  .about-description p {
    font-size: 14px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .about-description h2 {
    font-size: 30px;
  }
  .about-description p {
    font-size: 18px;
  }
}
@media screen and (max-width: 810px) {
  .about {
    height: 80vh;
  }
  .about-content {
    flex-direction: column;
  }
  .divimg img {
    max-width: 100%;
  }
}
.services {
  background-color: #fff;
  background-image: url(/res/assets/servicesbg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  color: #0D1317;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 54px 14px;
  overflow: hidden;
}

.services-content h2 {
  text-align: center;
  font-size: 38px;
  margin-bottom: 10px;
  color: #06121e;
}
.services-content p {
  line-height: 150%;
  margin-bottom: 60px;
  text-align: center;
}

.services-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  padding: 0 44px 34px 44px;
}

.service-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  box-shadow: 0px -1px 17px -4px rgba(0, 0, 0, 0.5);
  padding: 40px 20px;
  background-color: #fff;
  /*border-radius: 15px;*/
  border-radius: 30px;
  border-top-width: 24px;
  border-top-style: solid;
}
.service-item i {
  color: #EDF2F4;
  font-size: 50px;
  text-align: center;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bg-item-1 {
  background-color: #2e5f8d;
}

.color-item-1 {
  color: #2e5f8d;
}

.border-color-item-1 {
  border-top-color: #2e5f8d;
}

.bg-item-2 {
  background-color: #b42b2b;
}

.color-item-2 {
  color: #b42b2b;
}

.border-color-item-2 {
  border-top-color: #b42b2b;
}

.bg-item-3 {
  background-color: #bd8920;
}

.color-item-3 {
  color: #bd8920;
}

.border-color-item-3 {
  border-top-color: #bd8920;
}

/*.service-item i:hover {
    transform: scale(1.2);
    z-index: 1;
}*/
.service-item-text {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 14px;
  background-color: #fff;
  z-index: 9999;
}
.service-item-text h4 {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 20px;
}
.service-item-text p {
  text-align: left;
  width: 100%;
  color: #616161;
}
.service-item-text a {
  color: #0c2135;
}

@media screen and (max-width: 428px) {
  .services-list {
    padding: 0 10px 34px 10px;
  }
}
.knowhow {
  background-color: #EDF2F4;
  overflow: hidden;
  color: #0D1317;
  padding: 0px 0px 80px 0px;
}
.knowhow h2 {
  text-align: center;
  font-size: 38px;
  margin-bottom: 24px;
  margin-top: 60px;
}

.knowhow-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0px;
}
.knowhow-content img {
  border-radius: 15px;
}

.knowhow-description p {
  text-align: center;
  margin-bottom: 14px;
  line-height: 150%;
  max-width: 800px;
  font-size: 20px;
}

.numbers {
  background-color: #fff;
  overflow: hidden;
  color: #0D1317;
  display: flex;
  align-items: center;
  padding: 150px 0px;
}

.numbers-content h2 {
  text-align: center;
  font-size: 38px;
  margin-bottom: 60px;
  color: #06121e;
}

.numbers-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 160px;
  padding: 0 44px 34px 44px;
}
.numbers-list .numbers-item {
  max-width: 250px;
}

.numbers-item-text {
  text-align: center;
}
.numbers-item-text h4 {
  font-size: 80px;
}
.numbers-item-text .numbers-item1:after {
  content: counter(count);
  animation: counter 0.7s linear;
  counter-reset: count 0;
  animation-fill-mode: forwards;
}
.numbers-item-text .numbers-item2:after {
  content: counter(count);
  animation: counter2 0.5s linear;
  counter-reset: count 0;
  animation-fill-mode: forwards;
}
.numbers-item-text .numbers-item3:after {
  content: counter(count);
  animation: counter3 0.9s linear;
  counter-reset: count 0;
  animation-fill-mode: forwards;
}
.numbers-item-text p {
  font-size: 24px;
}

@keyframes counter {
  0% {
    counter-increment: count 0;
  }
  10% {
    counter-increment: count 3;
  }
  20% {
    counter-increment: count 5;
  }
  30% {
    counter-increment: count 7;
  }
  40% {
    counter-increment: count 10;
  }
  50% {
    counter-increment: count 12;
  }
  60% {
    counter-increment: count 15;
  }
  70% {
    counter-increment: count 18;
  }
  80% {
    counter-increment: count 20;
  }
  90% {
    counter-increment: count 23;
  }
  100% {
    counter-increment: count 25;
  }
}
@keyframes counter2 {
  0% {
    counter-increment: count 0;
  }
  10% {
    counter-increment: count 2;
  }
  20% {
    counter-increment: count 5;
  }
  30% {
    counter-increment: count 6;
  }
  40% {
    counter-increment: count 8;
  }
  50% {
    counter-increment: count 10;
  }
  60% {
    counter-increment: count 13;
  }
  70% {
    counter-increment: count 15;
  }
  80% {
    counter-increment: count 16;
  }
  90% {
    counter-increment: count 18;
  }
  100% {
    counter-increment: count 20;
  }
}
@keyframes counter3 {
  0% {
    counter-increment: count 0;
  }
  10% {
    counter-increment: count 9;
  }
  20% {
    counter-increment: count 15;
  }
  30% {
    counter-increment: count 26;
  }
  40% {
    counter-increment: count 33;
  }
  50% {
    counter-increment: count 45;
  }
  60% {
    counter-increment: count 54;
  }
  70% {
    counter-increment: count 66;
  }
  80% {
    counter-increment: count 77;
  }
  90% {
    counter-increment: count 85;
  }
  100% {
    counter-increment: count 90;
  }
}
@media screen and (max-width: 810px) {
  .numbers {
    padding: 90px 0px;
  }
  .numbers-list {
    flex-direction: column;
    gap: 30px;
  }
}
.contact {
  overflow: hidden;
  z-index: -1;
  background-image: linear-gradient(to bottom, rgba(6, 18, 30, 0.7), #06121e), url("/res/assets/bg-form.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 0;
  opacity: 0.9;
}

.contact-content {
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px 14px 64px 14px;
}

.contact-content div {
  flex: 1;
}

.contact-description h2 {
  font-size: 38px;
  margin-bottom: 24px;
  color: #fff;
  max-width: 600px;
  text-align: center;
}
.contact-description p {
  margin-bottom: 14px;
  line-height: 150%;
  color: #fff;
  max-width: 600px;
  text-align: center;
}

form {
  max-width: 450px;
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.3);
  padding: 20px;
  border-radius: 20px;
}
form p {
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}
form input {
  padding: 10px;
  margin-bottom: 10px;
}
form textarea {
  padding: 10px;
}
form .btn-send {
  text-align: center;
}
form .btn-send button {
  width: 180px;
}

@media screen and (max-width: 810px) {
  .contact-content {
    height: 700px;
    flex-direction: column;
  }
  .contact-description h2 {
    margin-top: 80px;
  }
  form {
    margin-bottom: 80px;
  }
}
@media (min-width: 425px) and (max-width: 767px) {
  .about-content {
    height: 600px;
    gap: 30px;
  }
  .about-content img {
    max-width: 80%;
    border-radius: 15px;
  }
  .knowhow-content {
    flex-direction: column;
    height: 400px;
  }
  img {
    max-width: 100%;
    border-radius: 15px;
  }
}
@media screen and (max-width: 810px) {
  .about-description {
    max-width: 100vw;
  }
  .about-description h2 {
    width: 90%;
    margin: 0 auto;
  }
  .about-description p {
    width: 90%;
    margin: 0 auto;
  }
  .services-list {
    flex-direction: column;
  }
  .service-item img {
    max-width: 740px;
  }
}
.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=style.css.map */