.animation {
  transition: transform 0.5s;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #0a0a0f;
  font-family: "Inter", sans-serif;
  color: #e8e8ea;
  line-height: 1.625;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.wrapper--footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
  padding-bottom: 0;
}

@media (min-width: 768px) {
  .wrapper {
    padding: 4rem 4rem;
  }
  .wrapper--footer {
    padding-top: 2rem;
    padding-bottom: 0;
  }
}
.section-light {
  background-color: #18181b;
}

.section-heading {
  margin-bottom: 2.5rem;
}
.section-heading__text {
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #c41717;
  letter-spacing: 2px;
}
.section-heading__heading {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@media (min-width: 1200px) {
  .section-heading__text {
    font-size: 0.875rem;
  }
  .section-heading__heading {
    font-size: 3.875rem;
  }
}
.shadow {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.shadow--light {
  background-color: rgba(0, 0, 0, 0.6);
}
.shadow--dark {
  background-color: rgba(0, 0, 0, 0.9);
}

.cta {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: none;
  font-size: 0.75rem;
  text-decoration: none;
  color: #e8e8ea;
  text-transform: uppercase;
  letter-spacing: 2px;
  background-color: #c41717;
  transition: background-color 0.3s;
}
.cta--secondary {
  background: #18181b;
}
.cta--secondary:hover {
  background-color: #0a0a0f;
}
.cta:hover {
  background-color: #680a0a;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 2rem;
  z-index: 3;
}
.nav__logo {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  text-transform: uppercase;
}
.nav__logo a {
  text-decoration: none;
  color: #e8e8ea;
}
.nav__logo span {
  color: #c41717;
}
.nav__btn {
  border: none;
  background: none;
  text-decoration: none;
}
.nav__list {
  display: none;
  gap: 2rem;
  list-style: none;
}
.nav__list__item {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  text-decoration: none;
  color: #e8e8ea;
  transition: color 0.3s;
}
.nav__list__item:hover {
  color: #c41717;
}
.nav__list__item:last-child {
  border: 1px solid #c41717;
}
.nav--scrolled {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.99);
  transition: background 0.3s;
}

.nav__mobile {
  position: fixed;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  transform: translateY(-100%);
  transition: 0.5s;
  background-color: rgba(0, 0, 0, 0.99);
  z-index: 10;
}
.nav__mobile__close-btn {
  position: absolute;
  top: 25px;
  right: 25px;
}
.nav__mobile__list {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.nav__mobile__list__item {
  padding: 2rem 4rem;
  font-size: 1.5rem;
  text-transform: uppercase;
  text-decoration: none;
  color: #e8e8ea;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.nav__mobile__list .nav__mobile__list__item + .nav__mobile__list__item {
  border-top: none;
}
.nav__mobile--active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .nav__logo {
    font-size: 1.5rem;
  }
}
@media (min-width: 992px) {
  .nav__btn {
    display: none;
  }
  .nav__list {
    display: flex;
  }
}
.header {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-image: url("../img/hero.webp");
  background-size: cover;
  background-position: center;
}
.header__wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 2;
}
.header__info {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.625rem;
  text-transform: uppercase;
  color: #b0b0b8;
  letter-spacing: 2px;
}
.header__heading {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3.875rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #e8e8ea;
  letter-spacing: 2px;
  line-height: 0.8;
}
.header__heading span {
  color: #c41717;
}
.header__text {
  display: flex;
  flex-direction: column;
  font-size: 0.875rem;
  color: #b0b0b8;
}
.header__buttons {
  display: flex;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .header__info {
    font-size: 0.75rem;
  }
  .header__heading {
    font-size: 5.875rem;
  }
  .header__text {
    font-size: 0.875rem;
  }
}
@media (min-width: 1200px) {
  .header__info {
    font-size: 0.875rem;
  }
  .header__heading {
    font-size: 8rem;
  }
  .header__text {
    font-size: 1.25rem;
  }
}
.about-us__text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  font-size: 0.875rem;
  color: #b0b0b8;
}

.values {
  display: flex;
  flex-direction: column;
  padding-top: 1.25rem;
}

.value {
  display: flex;
  align-items: center;
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #b0b0b8;
}
.value__number {
  margin-right: 0.5rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.875rem;
  color: #c41717;
}
.value__title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #e8e8ea;
}
.value__text {
  font-size: 0.75rem;
}
.value:hover .animation {
  transform: translateX(50px);
}

.value + .value {
  border-top: none;
}

@media (min-width: 1200px) {
  .about-us__text {
    font-size: 1.25rem;
  }
  .value__number {
    margin-right: 1rem;
    font-size: 1.25rem;
  }
  .value__title {
    font-size: 1.5rem;
  }
  .value__text {
    font-size: 0.875rem;
  }
}
.step {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.step__number {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3.875rem;
  color: #c41717;
}
.step__title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.step__text {
  font-size: 0.875rem;
  color: #b0b0b8;
}
.step:hover .animation {
  transform: translateY(20px);
}

.step + .step {
  border-top: none;
}

@media (min-width: 992px) {
  .steps {
    display: flex;
  }
  .steps .step {
    width: 25%;
    border-top: none;
    border-bottom: none;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
  .step + .step {
    border-left: none;
  }
}
@media (min-width: 1200px) {
  .step__number {
    font-size: 5.875rem;
  }
  .step__title {
    font-size: 1.5rem;
  }
}
.bundles .bundle {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 2.5rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.bundles .bundle__number {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3rem;
  color: #c41717;
}
.bundles .bundle__title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.bundles .bundle__text {
  font-size: 0.875rem;
  color: #b0b0b8;
}
.bundles .bundle__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1rem;
  font-size: 0.75rem;
  color: #b0b0b8;
  list-style: none;
  line-height: 1;
}
.bundles .bundle__list__item {
  position: relative;
}
.bundles .bundle__list__item::before {
  content: "";
  position: absolute;
  top: 5px;
  left: -10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #c41717;
}
.bundles .bundle:hover .animation {
  transform: translateY(20px);
}

.bundle + .bundle {
  border-top: none;
}

@media (min-width: 992px) {
  .bundles {
    display: flex;
  }
  .bundles .bundle {
    width: 33%;
    border-top: none;
    border-bottom: none;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
  .bundle + .bundle {
    border-left: none;
  }
}
@media (min-width: 1200px) {
  .bundles .bundle__number {
    font-size: 3.875rem;
  }
  .bundles .bundle__title {
    font-size: 1.5rem;
  }
  .bundles .bundle__text {
    font-size: 1.25rem;
  }
  .bundles .bundle__list {
    font-size: 0.875rem;
  }
}
.cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.cards .card {
  overflow: hidden;
  background-color: #0a0a0f;
  border: 1px solid rgba(156, 163, 175, 0.15);
}
.cards .card__image-section {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.cards .card__image-section__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.cards .card__image-section__label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem 0.5rem;
  background-color: #c41717;
  font-size: 0.625rem;
  text-transform: uppercase;
  color: #e8e8ea;
  letter-spacing: 2px;
  z-index: 3;
}
.cards .card__text-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.25rem;
  text-align: left;
}
.cards .card__text-section__heading {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cards .card__text-section__title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.cards .card__text-section__labels {
  display: flex;
  gap: 1.25rem;
  font-size: 0.75rem;
  color: #b0b0b8;
}
.cards .card__text-section__label {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.cards .card__text-section__text {
  font-size: 0.875rem;
  color: #b0b0b8;
}
.cards .card:hover .card__image-section__image {
  transform: scale(1.1);
}

@media (min-width: 992px) {
  .cards {
    flex-direction: row;
    gap: 1rem;
  }
  .cards .card {
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .cards .card__image-section__label {
    font-size: 0.75rem;
  }
  .cards .card__text-section__title {
    font-size: 1.5rem;
  }
  .cards .card__text-section__labels {
    font-size: 0.875rem;
  }
  .cards .card__text-section__learn-more {
    font-size: 0.875rem;
  }
}
.contact {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact__text {
  font-size: 0.875rem;
  color: #b0b0b8;
}
.contact__data {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #b0b0b8;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form__field {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.form__field label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #b0b0b8;
}
.form__field input {
  height: 44px;
  border: none;
  border-bottom: 1px solid rgba(156, 163, 175, 0.15);
  background: transparent;
  color: #e8e8ea;
}

@media (min-width: 992px) {
  .form button {
    width: 30%;
  }
}
@media (min-width: 1200px) {
  .contact__text {
    font-size: 1.25rem;
  }
  .form__field label {
    font-size: 0.875rem;
  }
}
.footer {
  background-color: #18181b;
}
.footer__heading {
  display: flex;
  justify-content: space-between;
}
.footer__heading__logo {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #e8e8ea;
}
.footer__heading__logo span {
  color: #c41717;
}
.footer__heading__socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer__heading__socials__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
  border: 1px solid rgba(156, 163, 175, 0.15);
  transition: border 0.3s;
}
.footer__heading__socials__logo:hover {
  border: 1px solid #c41717;
}
.footer__data {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.75rem;
}
.footer__data__phone, .footer__data__mail, .footer__data__adress {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #b0b0b8;
}
.footer__copy {
  padding: 0.75rem 0;
  border-top: 1px solid rgba(156, 163, 175, 0.15);
  font-size: 0.625rem;
  text-align: center;
  color: #b0b0b8;
}
.footer__privacy-policy {
  text-decoration: none;
  color: #e8e8ea;
}

@media (min-width: 1200px) {
  .footer__heading__logo {
    font-size: 1.5rem;
  }
  .footer__data {
    font-size: 0.875rem;
  }
  .footer__copy {
    font-size: 0.75rem;
  }
}
.privacy-policy {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 0 2.5rem;
}
.privacy-policy__point {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.privacy-policy__heading {
  color: #c41717;
}
.privacy-policy__list {
  font-size: 0.75rem;
  list-style-position: inside;
}/*# sourceMappingURL=main.css.map */