* {
  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;
}

.contact {
  background: transparent;
  overflow: hidden;
  color: #0D1317;
  margin-bottom: 80px;
}

.contact-content {
  border-radius: 8px;
}
.contact-content .contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 30px;
  box-shadow: 0px -1px 17px -4px rgba(0, 0, 0, 0.5);
}
.contact-content h1 {
  text-align: center;
  margin-bottom: 10px;
}
.contact-content p {
  text-align: center;
  margin-bottom: 40px;
}
.contact-content img {
  max-width: 400px;
  border-radius: 15px;
}

form {
  width: 500px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: 20px;
}
form p {
  color: #06121e;
  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;
}
form .button-contact {
  padding: 14px 28px;
  color: #fff;
  background-color: #B31312;
  border: 0;
  font-size: 18px;
  font-weight: 600;
  margin: 40px 0;
}
form .button-contact:hover {
  animation: scaleButton 0.8s alternate infinite;
}

@media screen and (max-width: 425px) {
  form {
    width: 100%;
  }
  .contact-content {
    width: 380px;
  }
  .contact-content .contact-form {
    padding: 40px 10px;
  }
}
@media (min-width: 426px) and (max-width: 768px) {
  form {
    width: 100%;
  }
}
/* Contact page*/
.confirm {
  height: 100vh;
}

.confirm-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: -100px;
  color: #fff;
}
.confirm-content h1 {
  font-size: 30px;
}
.confirm-content .icon {
  background-color: #297927;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.confirm-content i {
  font-size: 50px;
}
.confirm-content a {
  color: #fff;
  background: linear-gradient(0.25turn, #2c5177, #06121e);
  padding: 10px 40px;
  margin-top: 20px;
  border-radius: 6px;
}

.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=contact.css.map */