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

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

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

.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #8a1144;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn:hover {
  opacity: 0.9;
}

.btn-primary {
  display: inline-block;
  padding: 12px 24px;
  background-color: #8a1144;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-secondary {
  display: inline-block;
  padding: 12px 24px;
  background-color: #333;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  opacity: 0.9;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  -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: 1000;
  padding: 20px;
  text-align: center;
  display: none;
}

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

.cookie-consent .cookie-content {
  max-width: 600px;
  margin: 0 auto;
}

.cookie-consent .cookie-content h2 {
  margin-bottom: 15px;
  color: #333;
}

.cookie-consent .cookie-content p {
  margin-bottom: 20px;
  font-size: 14px;
}

.cookie-consent .cookie-content .cookie-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;
  gap: 10px;
}

.cookie-consent .cookie-content .cookie-buttons button {
  min-width: 150px;
}

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

header .header-content {
  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;
  padding: 15px 0;
}

header .header-content .logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: #8a1144;
  text-transform: uppercase;
}

header .header-content nav ul {
  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;
  gap: 25px;
}

header .header-content nav ul li a {
  color: #333;
  font-weight: 500;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

header .header-content nav ul li a:hover {
  color: #8a1144;
}

.hero {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0.6))), url("./assets/1.png");
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("./assets/1.png");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 120px 0;
  text-align: left;
}

.hero .hero-content {
  max-width: 800px;
}

.hero .hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.hero .hero-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 600px;
}

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

.services .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;
  gap: 20px;
}

.services img {
  width: 100%;
  max-width: 400px;
  margin: auto;
}

.services .service-item {
  margin-bottom: 60px;
}

.services .service-item:last-child {
  margin-bottom: 0;
}

.services .service-item .service-icon {
  margin-bottom: 20px;
}

.services .service-item h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
}

.services .service-item p {
  color: #444;
  max-width: 800px;
}

.team-values {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.team-values h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 1.8rem;
  color: #333;
}

.team-values .values-grid {
  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: wrap;
      flex-wrap: wrap;
  gap: 30px;
}

.team-values .values-grid .value-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 300px;
}

.team-values .values-grid .value-item .value-icon {
  margin-bottom: 20px;
}

.team-values .values-grid .value-item .value-icon img {
  width: 50px;
  height: 50px;
}

.team-values .values-grid .value-item h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #333;
}

.team-values .values-grid .value-item p {
  color: #444;
}

.team {
  padding: 80px 0;
  background-color: #fff;
}

.team h2 {
  margin-bottom: 40px;
  font-size: 1.8rem;
  color: #333;
}

.team .team-content {
  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;
  gap: 40px;
}

.team .team-content .team-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.team .team-content .team-text p {
  margin-bottom: 15px;
}

.team .team-content .team-text p:first-of-type, .team .team-content .team-text p:nth-of-type(3), .team .team-content .team-text p:nth-of-type(5) {
  font-weight: 600;
  color: #333;
}

.team .team-content .team-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.team .team-content .team-image img {
  width: 100%;
  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);
}

.testimonials {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 1.8rem;
  color: #333;
}

.testimonials .testimonials-grid {
  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: wrap;
      flex-wrap: wrap;
  gap: 30px;
}

.testimonials .testimonials-grid .testimonial-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 300px;
  background-color: #fff;
  border-radius: 4px;
  overflow: hidden;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonials .testimonials-grid .testimonial-item .testimonial-quote {
  background-color: #8a1144;
  color: #fff;
  padding: 20px;
}

.testimonials .testimonials-grid .testimonial-item .testimonial-quote p {
  font-style: italic;
  font-weight: 600;
}

.testimonials .testimonials-grid .testimonial-item .testimonial-author {
  padding: 20px;
}

.testimonials .testimonials-grid .testimonial-item .testimonial-author p {
  margin-bottom: 10px;
}

.testimonials .testimonials-grid .testimonial-item .testimonial-author p.author-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
}

.work-process {
  padding: 80px 0;
  background-color: #fff;
}

.work-process h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 1.8rem;
  color: #333;
}

.work-process .process-grid {
  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;
  gap: 40px;
}

.work-process .process-grid .process-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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}

.work-process .process-grid .process-item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.work-process .process-grid .process-item .process-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.work-process .process-grid .process-item .process-image img {
  width: 100%;
  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);
}

.work-process .process-grid .process-item .process-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.work-process .process-grid .process-item .process-text h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #8a1144;
}

.work-process .process-grid .process-item .process-text p {
  color: #444;
}

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

.contact h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.8rem;
  color: #333;
}

.contact form {
  max-width: 600px;
  margin: 0 auto;
}

.contact form .form-group {
  margin-bottom: 20px;
}

.contact form .form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #333;
}

.contact form .form-group input,
.contact form .form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: "Open Sans", sans-serif;
}

.contact form .form-group input:focus,
.contact form .form-group textarea:focus {
  outline: none;
  border-color: #8a1144;
}

.contact form .form-group textarea {
  height: 150px;
  resize: vertical;
}

.contact form button {
  width: 100%;
}

footer {
  background-color: #333;
  color: #fff;
  padding: 40px 0 20px;
}

footer .footer-content {
  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: wrap;
      flex-wrap: wrap;
  margin-bottom: 30px;
}

footer .footer-content .footer-logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}

footer .footer-content .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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

footer .footer-content .footer-links a {
  color: #fff;
  font-size: 0.9rem;
}

footer .footer-content .footer-links a:hover {
  text-decoration: underline;
}

footer .footer-content .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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}

footer .footer-content .footer-social a img {
  width: 24px;
  height: 24px;
}

footer .footer-copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer .footer-copyright p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 992px) {
  .services .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .team-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .process-item,
  .process-item:nth-child(even) {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
}

@media (max-width: 768px) {
  header .header-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
  .hero {
    padding: 80px 0;
  }
  .hero .hero-content h1 {
    font-size: 2rem;
  }
  .hero .hero-content p {
    font-size: 1rem;
  }
  .values-grid,
  .testimonials-grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .footer-content .footer-links,
  .footer-content .footer-social {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 480px) {
  header nav ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 15px;
  }
  .hero {
    padding: 60px 0;
  }
  .hero .hero-content h1 {
    font-size: 1.8rem;
  }
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

.th {
  text-align: center;
}

.th-content {
  min-height: 60vh;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.pr-content {
  padding-top: 50px;
  padding-bottom: 50px;
}

.pr h1 {
  margin-bottom: 32px;
}
/*# sourceMappingURL=style.css.map */