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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  background-color: #F5F5F5;
  overflow-x: hidden;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input {
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-label {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  color: #E85E00;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #E85E00;
  color: #ffffff;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
  text-transform: uppercase;
}

.btn:hover {
  background-color: #b54900;
}

.btn--outline {
  background-color: transparent;
  border: 2px solid #E85E00;
  color: #E85E00;
}

.btn--outline:hover {
  background-color: #E85E00;
  color: #ffffff;
}

.btn-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #E85E00;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-link svg {
  margin-left: 0.5rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-link:hover {
  color: #b54900;
}

.btn-link:hover svg {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.header {
  background-color: #2D1000;
  padding: 1rem 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

@media (max-width: 992px) {
  .header__btn {
    display: none;
  }
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  color: #E85E00;
}

.logo__img {
  height: 40px;
  width: auto;
  margin-right: 0.5rem;
}

.logo__text {
  font-size: 1.75rem;
  font-weight: 700;
}

@media (max-width: 992px) {
  .nav {
    display: none;
  }
}

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 2rem;
}

.nav__link {
  color: #ffffff;
  font-weight: 500;
}

.nav__link:hover {
  color: #E85E00;
}

.hamburger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

@media (max-width: 992px) {
  .hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.hamburger__line {
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.hamburger.active .hamburger__line:nth-child(1) {
  -webkit-transform: translateY(8.5px) rotate(45deg);
          transform: translateY(8.5px) rotate(45deg);
}

.hamburger.active .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger__line:nth-child(3) {
  -webkit-transform: translateY(-8.5px) rotate(-45deg);
          transform: translateY(-8.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  background-color: #2D1000;
  padding: 1rem 0;
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  z-index: 99;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 1rem;
}

.mobile-menu__link {
  color: #ffffff;
  font-weight: 500;
  display: block;
  padding: 0.5rem 0;
}

.mobile-menu__link:hover {
  color: #E85E00;
}

.mobile-menu__btn {
  background-color: #E85E00;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  margin-top: 0.5rem;
}

.mobile-menu__btn:hover {
  background-color: #b54900;
}

.hero {
  background-image: url("./assets/1.png");
  background-size: cover;
  background-position: center;
  padding: 5rem 0;
  color: #ffffff;
}

@media (max-width: 768px) {
  .hero {
    padding: 3rem 0;
  }
}

.hero__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero__title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .hero__title {
    font-size: 2rem;
  }
}

.hero__text {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.hero__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 1rem;
}

@media (max-width: 768px) {
  .hero__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.hero__btn {
  min-width: 200px;
}

@media (max-width: 768px) {
  .hero__btn {
    width: 100%;
  }
}

.stats {
  background-color: #5C1D05;
  padding: 2rem 0;
  color: #ffffff;
}

.stats__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 992px) {
  .stats__grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .stats__grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
}

.stats__item {
  text-align: center;
  padding: 1.5rem;
}

.stats__number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.stats__plus {
  font-size: 2rem;
  color: #E85E00;
}

.stats__text {
  font-size: 1.1rem;
}

.about {
  padding: 5rem 0;
}

@media (max-width: 768px) {
  .about {
    padding: 3rem 0;
  }
}

.about__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 992px) {
  .about__grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
  }
}

.about__img {
  overflow: hidden;
  border-radius: 4px;
}

@media (max-width: 992px) {
  .about__img {
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}

.about__img-src {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.about__img-src:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

@media (max-width: 992px) {
  .about__content {
    text-align: center;
  }
}

.about__text {
  margin-bottom: 1.5rem;
}

.about__subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.about__list {
  margin-bottom: 2rem;
}

.about__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: 0.75rem;
}

@media (max-width: 992px) {
  .about__list-item {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.about__list-icon {
  color: #E85E00;
  margin-right: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.services {
  padding: 5rem 0;
  background-color: #F5F5F5;
}

@media (max-width: 768px) {
  .services {
    padding: 3rem 0;
  }
}

.services__intro {
  max-width: 900px;
  margin-bottom: 1.5rem;
}

.services__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

@media (max-width: 992px) {
  .services__grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .services__grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
}

.service-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 4px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.service-card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card__icon {
  color: #E85E00;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.service-card__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card__text {
  margin-bottom: 1.5rem;
}

.promo {
  padding: 5rem 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(131, 57, 0, 0.8)), to(rgba(108, 0, 0, 0.8)));
  background-image: linear-gradient(rgba(131, 57, 0, 0.8), rgba(108, 0, 0, 0.8));
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

@media (max-width: 768px) {
  .promo {
    padding: 3rem 0;
  }
}

.promo__content {
  max-width: 700px;
}

@media (max-width: 992px) {
  .promo__content {
    text-align: center;
  }
}

.promo__label {
  display: inline-block;
  background-color: #E85E00;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.promo__title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .promo__title {
    font-size: 2rem;
  }
}

.promo__text {
  margin-bottom: 1rem;
}

.form-section {
  padding: 5rem 0;
  background-color: #ffffff;
  background: url(./assets/6.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media (max-width: 768px) {
  .form-section {
    padding: 3rem 0;
  }
}

.form-section__title {
  text-align: center;
  margin-bottom: 1rem;
}

.form-section__text {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.form {
  max-width: 800px;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 992px) {
  .form {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
}

.form__field {
  position: relative;
}

.form__field input {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.form__field input:focus {
  border-color: #E85E00;
}

.form__field input:focus + label,
.form__field input:not(:placeholder-shown) + label {
  top: -0.5rem;
  left: 0.75rem;
  font-size: 0.75rem;
  background-color: #ffffff;
  padding: 0 0.25rem;
}

.form__field label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #777;
  pointer-events: none;
}

.form__btn {
  grid-column: 1 / -1;
  margin-top: 1rem;
}

.success-section {
  padding: 8rem 0;
  text-align: center;
}

.success-section__title {
  font-size: 3rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .success-section__title {
    font-size: 2.25rem;
  }
}

.success-section__text {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 1rem;
}

.success-section__btn {
  margin-top: 2rem;
}

.footer {
  background-color: #2D1000;
  color: #ffffff;
  padding-top: 4rem;
}

.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding-bottom: 3rem;
}

@media (max-width: 992px) {
  .footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2rem;
    text-align: center;
  }
}

.footer__logo {
  margin-bottom: 1rem;
}

.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 4rem;
}

@media (max-width: 768px) {
  .footer__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
}

.footer__links-title {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.footer__links-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 1rem;
}

@media (max-width: 992px) {
  .footer__links-list {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.footer__links-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.footer__links-item svg {
  margin-right: 0.5rem;
  color: #E85E00;
}

.footer__link:hover {
  color: #E85E00;
}

.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 1rem;
}

.footer__social-link {
  color: #ffffff;
}

.footer__social-link:hover {
  color: #E85E00;
}

.footer__bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer__copyright {
  font-size: 0.9rem;
  opacity: 0.7;
}

.cookie-popup {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 90%;
  max-width: 500px;
  background-color: #ffffff;
  border-radius: 4px;
  padding: 2rem;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 999;
  display: none;
}

.cookie-popup.active {
  display: block;
  -webkit-animation: fadeIn 0.5s ease;
          animation: fadeIn 0.5s ease;
}

.cookie-popup__title {
  margin-bottom: 1rem;
}

.cookie-popup__text {
  margin-bottom: 1.5rem;
}

.cookie-popup__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 1rem;
}

@media (max-width: 768px) {
  .cookie-popup__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cookie-popup__buttons .cookie-popup__btn {
    width: 100%;
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translate(-50%, 20px);
            transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translate(-50%, 20px);
            transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
/*# sourceMappingURL=style.css.map */