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

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
  color: #1d3557;
}
li.list-s {
  list-style-type: none;
}
p {
  margin-bottom: 15px;
}

a {
  color: #e63946;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: #d21a28;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.section-heading {
  margin-bottom: 40px;
}
.section-heading span {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #e63946;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.section-heading h2 {
  font-size: 36px;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .section-heading h2 {
    font-size: 28px;
  }
}
.section-heading p {
  font-size: 16px;
  color: #6c757d;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  font-weight: 600;
  text-align: center;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.btn-primary {
  background-color: #e63946;
  color: #ffffff;
  border: 2px solid #e63946;
}
.btn-primary:hover {
  background-color: #d21a28;
  border-color: #d21a28;
  color: #ffffff;
}
.btn-outline {
  background-color: transparent;
  color: #e63946;
  border: 2px solid #e63946;
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}
.btn-outline:hover {
  background-color: #e63946;
  color: #ffffff;
}
.btn-light {
  background-color: #ffffff;
  color: #e63946;
  border: 2px solid #ffffff;
}
.btn-light:hover {
  background-color: transparent;
  color: #ffffff;
}
.btn-outline-light {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}
.btn-outline-light:hover {
  background-color: #ffffff;
  color: #e63946;
}

.top-header {
  background-color: #1d3557;
  padding: 10px 0;
  color: #ffffff;
}
.top-header .contact-info {
  display: flex;
  align-items: center;
}
.top-header .contact-info a {
  color: #ffffff;
  margin-right: 20px;
  font-size: 14px;
}
.top-header .contact-info a i {
  margin-right: 5px;
}
.top-header .contact-info a:hover {
  color: #e63946;
}
.top-header .social-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.top-header .social-links a {
  color: #ffffff;
  margin-left: 15px;
  font-size: 14px;
}
.top-header .social-links a:hover {
  color: #e63946;
}
@media (max-width: 767px) {
  .top-header .contact-info, .top-header .social-links {
    justify-content: center;
    margin-bottom: 5px;
  }
}

.navbar {
  background-color: #ffffff;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar .navbar-brand img {
  max-height: 50px;
}
.navbar .navbar-nav .nav-item {
  margin: 0 5px;
}
.navbar .navbar-nav .nav-item .nav-link {
  color: #1d3557;
  font-weight: 600;
  padding: 10px 15px;
  position: relative;
}
.navbar .navbar-nav .nav-item .nav-link:hover, .navbar .navbar-nav .nav-item .nav-link.active {
  color: #e63946;
}
.navbar .navbar-nav .nav-item .nav-link.active:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 15px;
  right: 15px;
  height: 2px;
  background-color: #e63946;
}
.navbar .nav-cta {
  margin-left: 15px;
}
@media (max-width: 991px) {
  .navbar .nav-cta {
    margin: 10px 0 0;
  }
}

.hero-section {
  position: relative;
  overflow: hidden;
}
.hero-section .hero-slider {
  position: relative;
}
.hero-section .hero-slider .hero-slide {
  display: none;
  padding: 80px 0;
  background-color: #f8f9fa;
}
.hero-section .hero-slider .hero-slide.active {
  display: block;
}
.hero-section .hero-slider .hero-slide .hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .hero-section .hero-slider .hero-slide .hero-content h1 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .hero-section .hero-slider .hero-slide .hero-content h1 {
    font-size: 28px;
  }
}
.hero-section .hero-slider .hero-slide .hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #6c757d;
}
.hero-section .hero-slider .hero-slide .hero-content .hero-buttons {
  display: flex;
  gap: 15px;
}
@media (max-width: 575px) {
  .hero-section .hero-slider .hero-slide .hero-content .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
}
.hero-section .hero-slider .hero-slide .hero-image {
  text-align: center;
}
.hero-section .hero-slider .hero-slide .hero-image img {
  max-width: 100%;
  animation: float 3s ease-in-out infinite;
}
.hero-section .slider-controls {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.hero-section .slider-controls button {
  background: none;
  border: none;
  color: #1d3557;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-section .slider-controls button:hover {
  color: #e63946;
}
.hero-section .slider-controls .slider-dots {
  display: flex;
  gap: 10px;
}
.hero-section .slider-controls .slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(29, 53, 87, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-section .slider-controls .slider-dots .dot.active {
  background-color: #e63946;
}

.about-section {
  padding: 80px 0;
}
.about-section .about-image {
  position: relative;
}
.about-section .about-image:before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 80%;
  height: 80%;
  border: 5px solid #e63946;
  z-index: -1;
}
.about-section .about-image img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.about-section .about-content p {
  margin-bottom: 25px;
}
.about-section .about-content .about-features {
  margin-bottom: 30px;
}
.about-section .about-content .about-features .feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}
.about-section .about-content .about-features .feature .feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: rgba(230, 57, 70, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}
.about-section .about-content .about-features .feature .feature-icon i {
  color: #e63946;
  font-size: 20px;
}
.about-section .about-content .about-features .feature .feature-text h4 {
  font-size: 18px;
  margin-bottom: 5px;
}
.about-section .about-content .about-features .feature .feature-text p {
  margin-bottom: 0;
  color: #6c757d;
}

.services-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}
.services-section .service-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}
.services-section .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.services-section .service-card:hover .service-icon {
  background-color: #e63946;
}
.services-section .service-card:hover .service-icon i {
  color: #ffffff;
}
.services-section .service-card .service-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(230, 57, 70, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.services-section .service-card .service-icon i {
  color: #e63946;
  font-size: 30px;
  transition: all 0.3s ease;
}
.services-section .service-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}
.services-section .service-card p {
  color: #6c757d;
  margin-bottom: 15px;
}
.services-section .service-card .read-more {
  font-weight: 600;
  color: #e63946;
}
.services-section .service-card .read-more i {
  margin-left: 5px;
  transition: all 0.3s ease;
}
.services-section .service-card .read-more:hover i {
  transform: translateX(5px);
}

.product-categories {
  padding: 80px 0;
}
.product-categories .category-card {
  text-align: center;
  margin-bottom: 30px;
}
.product-categories .category-card .category-image {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.product-categories .category-card .category-image img {
  max-height: 150px;
  transition: all 0.3s ease;
}
.product-categories .category-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.product-categories .category-card .category-link {
  font-weight: 600;
  color: #e63946;
}
.product-categories .category-card .category-link:hover {
  text-decoration: underline;
}
.product-categories .category-card:hover .category-image {
  background-color: rgba(230, 57, 70, 0.1);
}
.product-categories .category-card:hover .category-image img {
  transform: scale(1.1);
}

.process-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}
.process-section .process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.process-section .process-timeline:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 2px;
  background-color: #e63946;
}
@media (min-width: 768px) {
  .process-section .process-timeline:before {
    left: 50%;
    transform: translateX(-50%);
  }
}
.process-section .process-timeline .process-step {
  position: relative;
  margin-bottom: 50px;
  padding-left: 60px;
}
@media (min-width: 768px) {
  .process-section .process-timeline .process-step {
    padding-left: 0;
  }
  .process-section .process-timeline .process-step:nth-child(odd) {
    text-align: right;
    padding-right: 50%;
    padding-left: 0;
  }
  .process-section .process-timeline .process-step:nth-child(odd) .step-number {
    right: -20px;
    left: auto;
  }
  .process-section .process-timeline .process-step:nth-child(odd) .step-content {
    padding-right: 60px;
    padding-left: 0;
  }
  .process-section .process-timeline .process-step:nth-child(even) {
    text-align: left;
    padding-left: 50%;
  }
  .process-section .process-timeline .process-step:nth-child(even) .step-number {
    left: -20px;
  }
  .process-section .process-timeline .process-step:nth-child(even) .step-content {
    padding-left: 60px;
  }
}
.process-section .process-timeline .process-step .step-number {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background-color: #e63946;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  z-index: 1;
}
@media (min-width: 768px) {
  .process-section .process-timeline .process-step .step-number {
    top: 50%;
    transform: translateY(-50%);
  }
}
.process-section .process-timeline .process-step .step-content {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.process-section .process-timeline .process-step .step-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.process-section .process-timeline .process-step .step-content p {
  color: #6c757d;
  margin-bottom: 0;
}

.cta-section {
  padding: 80px 0;
  background-color: #e63946;
  background-image: linear-gradient(135deg, #e63946, #bb1824);
  position: relative;
  overflow: hidden;
}
.cta-section:before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.cta-section:after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}
.cta-section .cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-section .cta-content h2 {
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cta-section .cta-content h2 {
    font-size: 28px;
  }
}
.cta-section .cta-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  margin-bottom: 30px;
}
.cta-section .cta-content .btn {
  margin: 0 10px;
}
@media (max-width: 575px) {
  .cta-section .cta-content .btn {
    display: block;
    margin: 0 auto 15px;
    max-width: 200px;
  }
}

.testimonials-section {
  padding: 80px 0;
}
.testimonials-section .testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.testimonials-section .testimonial-slider .testimonial-slide {
  display: none;
}
.testimonials-section .testimonial-slider .testimonial-slide.active {
  display: block;
}
.testimonials-section .testimonial-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.testimonials-section .testimonial-card .testimonial-rating {
  margin-bottom: 15px;
}
.testimonials-section .testimonial-card .testimonial-rating i {
  color: #ffc107;
  font-size: 18px;
  margin-right: 2px;
}
.testimonials-section .testimonial-card .testimonial-text {
  font-size: 16px;
  font-style: italic;
  margin-bottom: 20px;
  color: #333333;
}
.testimonials-section .testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
}
.testimonials-section .testimonial-card .testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 15px;
}
.testimonials-section .testimonial-card .testimonial-author .author-info h4 {
  font-size: 18px;
  margin-bottom: 5px;
}
.testimonials-section .testimonial-card .testimonial-author .author-info p {
  color: #6c757d;
  margin-bottom: 0;
}
.testimonials-section .testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  gap: 20px;
}
.testimonials-section .testimonial-controls button {
  background: none;
  border: none;
  color: #1d3557;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.testimonials-section .testimonial-controls button:hover {
  color: #e63946;
}
.testimonials-section .testimonial-controls .testimonial-dots {
  display: flex;
  gap: 10px;
}
.testimonials-section .testimonial-controls .testimonial-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(29, 53, 87, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}
.testimonials-section .testimonial-controls .testimonial-dots .dot.active {
  background-color: #e63946;
}

.blog-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}
.blog-section .blog-card {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}
.blog-section .blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.blog-section .blog-card:hover .blog-image img {
  transform: scale(1.1);
}
.blog-section .blog-card .blog-image {
  position: relative;
  overflow: hidden;
}
.blog-section .blog-card .blog-image img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
.blog-section .blog-card .blog-image .blog-date {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #e63946;
  color: #ffffff;
  padding: 5px 10px;
  border-radius: 5px;
  text-align: center;
}
.blog-section .blog-card .blog-image .blog-date span {
  display: block;
  font-weight: 700;
}
.blog-section .blog-card .blog-image .blog-date span:first-child {
  font-size: 18px;
}
.blog-section .blog-card .blog-image .blog-date span:last-child {
  font-size: 14px;
  text-transform: uppercase;
}
.blog-section .blog-card .blog-content {
  padding: 20px;
}
.blog-section .blog-card .blog-content .blog-category {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #e63946;
  margin-bottom: 10px;
}
.blog-section .blog-card .blog-content h3 {
  font-size: 20px;
  margin-bottom: 15px;
}
.blog-section .blog-card .blog-content h3 a {
  color: #1d3557;
}
.blog-section .blog-card .blog-content h3 a:hover {
  color: #e63946;
}
.blog-section .blog-card .blog-content p {
  color: #6c757d;
  margin-bottom: 15px;
}
.blog-section .blog-card .blog-content .read-more {
  font-weight: 600;
  color: #e63946;
}
.blog-section .blog-card .blog-content .read-more i {
  margin-left: 5px;
  transition: all 0.3s ease;
}
.blog-section .blog-card .blog-content .read-more:hover i {
  transform: translateX(5px);
}

.contact-form-section {
  padding: 80px 0;
}
.contact-form-section .contact-info .contact-details {
  margin-top: 30px;
}
.contact-form-section .contact-info .contact-details .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-form-section .contact-info .contact-details .contact-item .contact-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: rgba(230, 57, 70, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}
.contact-form-section .contact-info .contact-details .contact-item .contact-icon i {
  color: #e63946;
  font-size: 20px;
}
.contact-form-section .contact-info .contact-details .contact-item .contact-text h4 {
  font-size: 18px;
  margin-bottom: 5px;
}
.contact-form-section .contact-info .contact-details .contact-item .contact-text p {
  margin-bottom: 0;
  color: #6c757d;
}
.contact-form-section .contact-form {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.contact-form-section .contact-form h3 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
}
.contact-form-section .contact-form .form-group {
  margin-bottom: 20px;
}
.contact-form-section .contact-form .form-group .form-control {
  height: 50px;
  border-radius: 5px;
  border: 1px solid #dee2e6;
  padding: 10px 15px;
  font-size: 16px;
  transition: all 0.3s ease;
}
.contact-form-section .contact-form .form-group .form-control:focus {
  border-color: #e63946;
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
  outline: none;
}
.contact-form-section .contact-form .form-group textarea.form-control {
  height: auto;
}
.contact-form-section .contact-form button[type=submit] {
  width: 100%;
  padding: 12px;
  font-size: 16px;
}

.footer {
  background-color: #1d3557;
  color: rgba(255, 255, 255, 0.7);
  padding-top: 80px;
}
.footer .footer-top {
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .footer-top .footer-widget {
  margin-bottom: 30px;
}
.footer .footer-top .footer-widget .widget-title {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}
.footer .footer-top .footer-widget .widget-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #e63946;
}
.footer .footer-top .footer-widget.about-widget .footer-logo {
  margin-bottom: 20px;
}
.footer .footer-top .footer-widget.about-widget .footer-logo img {
  max-height: 50px;
}
.footer .footer-top .footer-widget.about-widget p {
  margin-bottom: 20px;
}
.footer .footer-top .footer-widget.about-widget .social-links {
  display: flex;
  gap: 10px;
}
.footer .footer-top .footer-widget.about-widget .social-links a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease;
}
.footer .footer-top .footer-widget.about-widget .social-links a:hover {
  background-color: #e63946;
}
.footer .footer-top .footer-widget .footer-links li {
  margin-bottom: 10px;
}
.footer .footer-top .footer-widget .footer-links li a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}
.footer .footer-top .footer-widget .footer-links li a:hover {
  color: #e63946;
  padding-left: 5px;
}
.footer .footer-top .footer-widget .newsletter-form {
  position: relative;
  margin-top: 20px;
}
.footer .footer-top .footer-widget .newsletter-form input {
  width: 100%;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 5px;
  padding: 10px 60px 10px 15px;
  color: #ffffff;
}
.footer .footer-top .footer-widget .newsletter-form input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.footer .footer-top .footer-widget .newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.footer .footer-top .footer-widget .newsletter-form input:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.15);
}
.footer .footer-top .footer-widget .newsletter-form button {
  position: absolute;
  top: 0;
  right: 0;
  height: 50px;
  width: 50px;
  background-color: #e63946;
  border: none;
  border-radius: 0 5px 5px 0;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}
.footer .footer-top .footer-widget .newsletter-form button:hover {
  background-color: #d21a28;
}
.footer .footer-bottom {
  padding: 20px 0;
}
.footer .footer-bottom .copyright {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .footer .footer-bottom .copyright {
    text-align: center;
    margin-bottom: 10px;
  }
}
.footer .footer-bottom .footer-bottom-links {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}
@media (max-width: 767px) {
  .footer .footer-bottom .footer-bottom-links {
    justify-content: center;
  }
}
.footer .footer-bottom .footer-bottom-links li a {
  color: rgba(255, 255, 255, 0.7);
}
.footer .footer-bottom .footer-bottom-links li a:hover {
  color: #e63946;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  background-color: #e63946;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 99;
}
.back-to-top.active {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background-color: #d21a28;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@media (max-width: 575.98px) {
  .section-heading h2 {
    font-size: 24px;
  }
  .hero-section .hero-slide {
    padding: 50px 0;
  }
  .hero-section .hero-slide .hero-content h1 {
    font-size: 24px;
  }
  .hero-section .hero-slide .hero-content p {
    font-size: 16px;
  }
  .about-section .about-image {
    margin-bottom: 30px;
  }
  .process-section .process-timeline .process-step {
    padding-left: 50px;
  }
  .process-section .process-timeline .process-step .step-number {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
  .cta-section .cta-content h2 {
    font-size: 24px;
  }
  .cta-section .cta-content p {
    font-size: 16px;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .section-heading h2 {
    font-size: 28px;
  }
  .hero-section .hero-slide {
    padding: 60px 0;
  }
  .hero-section .hero-slide .hero-content h1 {
    font-size: 28px;
  }
  .about-section .about-image {
    margin-bottom: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .section-heading h2 {
    font-size: 32px;
  }
  .hero-section .hero-slide .hero-content h1 {
    font-size: 32px;
  }
  .navbar .navbar-nav .nav-item {
    margin: 0 2px;
  }
  .navbar .navbar-nav .nav-item .nav-link {
    padding: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .navbar .navbar-nav .nav-item {
    margin: 0 3px;
  }
  .navbar .navbar-nav .nav-item .nav-link {
    padding: 10px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}/*# sourceMappingURL=styles.css.map */