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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

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

.container {
  width: 100%;
  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;
}

p {
  margin-bottom: 1rem;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
}

.btn--primary {
  background-color: #0058b6;
  color: #fff;
}

.btn--primary:hover {
  background-color: #003f83;
}

.btn--secondary {
  background-color: transparent;
  border: 1px solid #0058b6;
  color: #0058b6;
}

.btn--secondary:hover {
  background-color: #0058b6;
  color: #fff;
}

.btn--text {
  padding: 0;
  background-color: transparent;
  color: #0058b6;
  text-decoration: underline;
}

.btn--text:hover {
  color: #003f83;
}

.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
}

.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 80px;
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: #1c313f;
}

.logo img {
  height: 30px;
  margin-right: 10px;
}

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav__item {
  margin: 0 15px;
}

.nav__link {
  font-weight: 500;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #0058b6;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.nav__link:hover::after, .nav__link.active::after {
  width: 100%;
}

.confirmation {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.confirmation__title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #1c313f;
}

.confirmation__text {
  font-size: 1.1rem;
  max-width: 800px;
  margin-bottom: 1.5rem;
}

.hero {
  padding: 80px 0;
}

.hero__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

@media (max-width: 991px) {
  .hero__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.hero__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.hero__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.hero__image img {
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero__subtitle {
  font-size: 1rem;
  color: #0058b6;
  margin-bottom: 1rem;
}

.hero__title {
  font-size: 2.5rem;
  color: #1c313f;
  margin-bottom: 1.5rem;
}

.hero__text {
  margin-bottom: 2rem;
}

.hero__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

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

.about {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.about__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.about__content {
  max-width: 800px;
}

.about__title {
  font-size: 2rem;
  color: #1c313f;
  margin-bottom: 1.5rem;
}

.about__text {
  margin-bottom: 1.5rem;
}

.features {
  padding: 60px 0;
}

.features__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 767px) {
  .features__wrapper {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.feature {
  padding: 20px;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.feature:hover {
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.feature__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.feature__text {
  font-size: 1rem;
}

.services {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.services__title {
  font-size: 2rem;
  color: #1c313f;
  text-align: center;
  margin-bottom: 3rem;
}

.services__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 3rem;
}

@media (max-width: 767px) {
  .services__wrapper {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

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

.service {
  background-color: #fff;
  padding: 30px;
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.service:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.service__title {
  color: #0058b6;
  margin-bottom: 1rem;
}

.service__text {
  margin-bottom: 1.5rem;
}

.testimonials {
  padding: 80px 0;
}

.testimonials__title {
  font-size: 2rem;
  color: #1c313f;
  text-align: center;
  margin-bottom: 1rem;
}

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

.testimonials__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media (max-width: 767px) {
  .testimonials__wrapper {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.testimonial {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 4px;
}

.testimonial__profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.testimonial__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.testimonial__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.testimonial__name {
  margin-bottom: 5px;
}

.testimonial__position {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.testimonial__text {
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial__rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.testimonial__stars {
  color: #ffc107;
  margin-right: 10px;
}

.testimonial__score {
  font-weight: 700;
}

.gallery {
  padding: 40px 0;
}

.gallery__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 767px) {
  .gallery__wrapper {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.gallery__item {
  height: 200px;
  border-radius: 4px;
  overflow: hidden;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.gallery__item img:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.contact {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.contact__title {
  font-size: 2rem;
  color: #1c313f;
  text-align: center;
  margin-bottom: 3rem;
}

.contact__form {
  max-width: 800px;
  margin: 0 auto 3rem;
}

.contact__info {
  text-align: center;
}

.contact__info p {
  margin-bottom: 0.5rem;
}

.form__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .form__row {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.form__group {
  margin-bottom: 20px;
}

.form__input, .form__textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.form__input:focus, .form__textarea:focus {
  border-color: #0058b6;
}

.form__textarea {
  min-height: 150px;
  resize: vertical;
}

.footer {
  padding: 60px 0 30px;
  background-color: #1c313f;
  color: #fff;
}

.footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .footer__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

.footer__wrapper .logo {
  color: #fff;
}

.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__link {
  color: #fff;
  opacity: 0.8;
}

.footer__link:hover {
  opacity: 1;
}

.footer__separator {
  margin: 0 10px;
  opacity: 0.5;
}

.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

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

.footer__copyright p {
  margin-bottom: 0;
}

.social__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.social__link:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.social__link img {
  width: 18px;
  height: 18px;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 1000;
  display: none;
}

.cookie-consent.show {
  display: block;
}

.cookie-consent__content {
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 767px) {
  .cookie-consent__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cookie-consent__content p {
    margin-bottom: 20px;
    text-align: center;
  }
}

.cookie-consent__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

@media (max-width: 575px) {
  .cookie-consent__buttons {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #0058b6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 99;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top img {
  width: 20px;
  height: 20px;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.back-to-top:hover {
  background-color: #003f83;
}
/*# sourceMappingURL=style.css.map */