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

body {
  font-family: "Exo", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  overflow-x: hidden;
}

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

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

a:hover {
  color: #e63e6d;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
}

h1 {
  font-size: 2.5rem;
}

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

h2 {
  font-size: 2rem;
}

@media (max-width: 768px) {
  h2 {
    font-size: 1.75rem;
  }
}

h3 {
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  h3 {
    font-size: 1.25rem;
  }
}

p {
  margin-bottom: 15px;
}

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

.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: none;
  font-family: "Exo", sans-serif;
  font-size: 14px;
}

.btn.btn-primary {
  background-color: #e63e6d;
  color: #ffffff;
}

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

.btn.btn-secondary {
  background-color: transparent;
  color: #e63e6d;
  border: 2px solid #e63e6d;
}

.btn.btn-secondary:hover {
  background-color: #e63e6d;
  color: #ffffff;
}

.btn.btn-full {
  width: 100%;
  text-align: center;
}

form {
  width: 100%;
}

.form-group {
  margin-bottom: 15px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: "Exo", sans-serif;
  font-size: 16px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #e63e6d;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

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

header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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 nav .logo img {
  height: 40px;
}

header nav .nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}

@media (max-width: 991px) {
  header nav .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: #ffffff;
    -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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  header nav .nav-menu.active {
    left: 0;
  }
}

header nav .nav-menu li {
  margin-left: 25px;
}

@media (max-width: 991px) {
  header nav .nav-menu li {
    margin: 15px 0;
  }
}

header nav .nav-menu li a {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
}

header nav .nav-menu li a:hover {
  color: #e63e6d;
}

header nav .nav-toggle {
  display: none;
  cursor: pointer;
}

@media (max-width: 991px) {
  header nav .nav-toggle {
    display: block;
  }
}

header nav .nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #333333;
  margin: 5px 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

header nav .nav-toggle.active span:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(45deg);
          transform: translateY(8px) rotate(45deg);
}

header nav .nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

header nav .nav-toggle.active span:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(-45deg);
          transform: translateY(-8px) rotate(-45deg);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  -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 0;
  z-index: 999;
  display: none;
}

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

.cookie-banner .cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cookie-banner .cookie-content h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.cookie-banner .cookie-content p {
  margin-bottom: 15px;
}

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

@media (max-width: 480px) {
  .cookie-banner .cookie-content .cookie-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cookie-banner .cookie-content .cookie-buttons .btn {
    width: 100%;
    text-align: center;
  }
}

.hero {
  padding: 80px 0;
  background-color: #f5f5f5;
  background-size: cover;
  background-position: center;
}

.hero .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr ;
      grid-template-columns: 1fr ;
  gap: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
          text-align: center;
}

@media (max-width: 991px) {
  .hero .container {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.hero .hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

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

.hero .hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero .registration-form {
  background-color: #ffffff;
  padding: 30px;
  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);
}

.hero .registration-form h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.hero .registration-form p {
  margin-bottom: 20px;
}

section {
  padding: 80px 0;
}

section h2 {
  text-align: center;
  margin-bottom: 10px;
}

section p {
  text-align: center;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.benefits {
  background-color: #ffffff;
}

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

.benefits .section-intro p {
  margin-bottom: 0;
}

.solutions {
  background-color: #f5f5f5;
}

.solutions .solutions-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(300px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.solutions .solutions-grid .solution-card {
  background-color: #ffffff;
  padding: 30px;
  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;
}

.solutions .solutions-grid .solution-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.solutions .solutions-grid .solution-card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.solutions .solutions-grid .solution-card p {
  text-align: left;
  margin-bottom: 0;
}

.stats {
  background-color: #333333;
  color: #ffffff;
}

.stats h2,
.stats p {
  color: #ffffff;
}

.stats .stats-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(250px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.stats .stats-grid .stat-card {
  text-align: center;
}

.stats .stats-grid .stat-card h3 {
  font-size: 2.5rem;
  color: #e63e6d;
  margin-bottom: 10px;
}

.stats .stats-grid .stat-card p {
  margin-bottom: 0;
}

.testimonials {
  background-color: #ffffff;
}

.testimonials .testimonials-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(300px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonials .testimonials-grid .testimonial-card {
  background-color: #f5f5f5;
  padding: 30px;
  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 .testimonials-grid .testimonial-card p {
  text-align: left;
  font-style: italic;
  margin-bottom: 15px;
}

.testimonials .testimonials-grid .testimonial-card .testimonial-author {
  display: block;
  text-align: right;
  font-weight: 600;
}

.blog {
  background-color: #f5f5f5;
}

.blog .blog-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(300px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.blog .blog-grid .blog-card {
  background-color: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  -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;
}

.blog .blog-grid .blog-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.blog .blog-grid .blog-card .blog-image {
  height: 200px;
  overflow: hidden;
}

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

.blog .blog-grid .blog-card .blog-image img:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.blog .blog-grid .blog-card h3 {
  padding: 20px;
  font-size: 1.1rem;
  margin-bottom: 0;
}

.contact {
  background-color: #ffffff;
}

.contact .contact-info {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(250px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.contact .contact-info .contact-detail {
  text-align: center;
}

.contact .contact-info .contact-detail h3 {
  font-size: 1.2rem;
  color: #e63e6d;
}

.contact .contact-info .contact-detail p {
  margin-bottom: 0;
}

.success-message {
  padding: 100px 0;
  min-height: calc(100vh - 300px);
}

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

.success-message .success-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .success-message .success-content h1 {
    font-size: 2rem;
  }
}

.success-message .success-content .main-message {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.success-message .success-content .sub-message {
  margin-bottom: 30px;
}

.success-message .success-content .btn {
  margin-top: 20px;
}

footer {
  background-color: #333333;
  color: #ffffff;
  padding: 40px 0;
}

footer .footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 20px;
}

footer .footer-links a {
  color: #ffffff;
  margin: 0 15px;
  font-size: 14px;
}

footer .footer-links a:hover {
  color: #e63e6d;
}

@media (max-width: 767px) {
  footer .footer-links a {
    margin: 5px 10px;
  }
}

footer .copyright {
  text-align: center;
  font-size: 14px;
  opacity: 0.7;
}

.privacy {
  margin-top: 60px;
  margin-bottom: 60px;
}

.privacy p {
  text-align: left;
}

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