/* ========================================
   LASODA CUSTOM THEME STYLES
   Main Brand Colors & Custom Styling
   ======================================== */

:root {
  --lasoda-primary: #3b8549;
  --lasoda-secondary: #418fd9;
  --lasoda-accent: #ff6b6b;
  --lasoda-dark: #2c3e50;
  --lasoda-light: #ecf0f1;
  --lasoda-text: #333333;
  --lasoda-muted: #95a5a6;
}

/* ========================================
   HEADER STYLES
   ======================================== */

.tp-header-height {
  min-height: 100px;
}

.tp-header-area {
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.tp-header-wrapp {
  width: 100%;
}

.black-bg {
  background-color: var(--lasoda-primary) !important;
}

.white-bg {
  background-color: white !important;
}

.tp-header-top-area {
  background-color: var(--lasoda-primary);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tp-header-top-wrapp {
  width: 100%;
}

.tp-header-info {
  gap: 25px;
  align-items: center;
  justify-content: flex-start;
}

.tp-header-info-social {
  display: flex;
  gap: 0;
  align-items: center;
}

.tp-header-info-social a {
  color: white !important;
  font-size: 16px;
  padding: 8px 10px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tp-header-info-social a:hover {
  color: var(--lasoda-secondary);
  transform: translateY(-2px);
}

.tp-header-info-social i {
  color: white !important;
}

.tp-header-info-bg {
  gap: 40px;
  align-items: center;
  justify-content: flex-end;
}

.tp-header-info-text {
  margin: 0;
  font-size: 14px;
}

.tp-header-info-text a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tp-header-info-text a:hover {
  color: var(--lasoda-secondary);
}

.tp-header-info-text i {
  color: white !important;
  font-size: 14px;
}

.tp-header-info-center {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding-right: 40px;
}

.tp-header-bottom-area {
  background: white;
  padding: 12px 0;
}

.tp-header-bottom-area.header-3 {
  padding: 15px 0;
}

#header-sticky {
  width: 100%;
  transition: all 0.3s ease;
}

.tp-main-logo {
  display: flex;
  align-items: center;
}

.tp-main-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.tp-main-logo img {
  max-width: 80px;
  height: auto;
  display: block;
}

.tp-main-menu {
  width: 100%;
  justify-content: flex-end;
}

.tp-main-menu-content {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tp-main-menu-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tp-main-menu-content > ul > li {
  position: relative;
  margin: 0 20px;
}

.tp-main-menu-content > ul > li > a {
  color: var(--lasoda-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  padding: 10px 0;
  display: block;
}

.tp-main-menu-content > ul > li > a:hover {
  color: var(--lasoda-primary);
}

.tp-main-menu-content > ul > li.has-dropdown > a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--lasoda-primary);
  border-radius: 50%;
  margin-left: 8px;
  transition: all 0.3s ease;
}

.tp-main-menu-content .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  margin-top: 10px;
}

.tp-main-menu-content > ul > li.has-dropdown:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.tp-main-menu-content .sub-menu li {
  padding: 0;
}

.tp-main-menu-content .sub-menu li a {
  color: var(--lasoda-dark);
  padding: 10px 20px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: block;
}

.tp-main-menu-content .sub-menu li a:hover {
  background: #f0f0f0;
  color: var(--lasoda-primary);
}

.tp-header-bottom-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}

.tp-header-info-btn {
  margin-right: 15px;
}

.tp-main-menu-bars {
  display: flex;
  align-items: center;
}

.tp-offcanvas-toogle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
  color: var(--lasoda-dark);
  padding: 5px;
  transition: all 0.3s ease;
}

.tp-offcanvas-toogle:hover {
  color: var(--lasoda-primary);
}

.tp-theme-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 0;
  border: 2px solid var(--lasoda-primary);
  background: transparent;
  color: var(--lasoda-primary);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.tp-theme-btn:hover {
  background: var(--lasoda-primary);
  color: white;
}

.tp-theme-btn.btn-black {
  background: var(--lasoda-secondary);
  border-color: var(--lasoda-secondary);
  color: white;
}

.tp-theme-btn.btn-black:hover {
  background: #2e6ba8;
  border-color: #2e6ba8;
}

/* ========================================
   FOOTER STYLES
   ======================================== */

footer {
  background-color: var(--lasoda-primary);
  color: white;
}

.tp-footer-area {
  background-color: var(--lasoda-primary);
  padding: 60px 0;
}

.tp-footer-style-1 {
  background-color: var(--lasoda-primary);
}

.tp-footer-widget {
  text-align: center;
}

.tp-footer-widget-newslater {
  margin-bottom: 30px;
}

.tp-footer-widget-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
}

.tp-footer-widget-title-2 {
  line-height: 1.4;
  color: white;
}

.tp-footer-widget-newslater > span {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  font-size: 14px;
}

.tp-footer-widget-content {
  width: 100%;
}

.tp-footer-input {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.tp-footer-input input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 15px;
  color: white;
  font-size: 14px;
  outline: none;
}

.tp-footer-input input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.tp-footer-input-icon {
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.6);
}

.tp-footer-input-action {
  background: var(--lasoda-secondary);
  border: none;
  color: white;
  padding: 12px 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
}

.tp-footer-input-action:hover {
  background: #2e6ba8;
}

.tp-footer-widget-social {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tp-footer-widget-social ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.tp-footer-widget-social li {
  display: inline-block;
}

.tp-footer-widget-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
}

.tp-footer-widget-social a:hover {
  background: var(--lasoda-secondary);
  transform: translateY(-3px);
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tp-footer-bottom-content {
  text-align: center;
}

.tp-footer-bottom-text {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 14px;
}

.tp-footer-bottom-text strong {
  color: white;
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */

.back-to-top-wrapper {
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.back-to-top-btn {
  width: 50px;
  height: 50px;
  border: none;
  background: var(--lasoda-primary);
  color: white;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.back-to-top-btn:hover {
  background: var(--lasoda-secondary);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ========================================
   WHATSAPP BUTTON
   ======================================== */

.whatsapp_float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp_float:hover {
  background-color: #20ba5d;
  transform: scale(1.1);
}

/* ========================================
   HERO SLIDER STYLES
   ======================================== */

.tp-slider-1-area {
  background: linear-gradient(
    135deg,
    var(--lasoda-primary) 0%,
    var(--lasoda-secondary) 100%
  );
  position: relative;
  overflow: hidden;
}

.tp-slider-1 {
  min-height: 600px;
  position: relative;
}

.tp-slider-1 .swiper-wrapper {
  height: 600px;
}

.tp-slider-1 .swiper-slide {
  position: relative;
  overflow: hidden;
}

.tp-slider-1-wrapp {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

.tp-slider-1-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.tp-slider-1-content-wrapp {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.tp-slider-1-title-box {
  margin-bottom: 30px;
}

.tp-section-subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--lasoda-accent);
}

.tp-slider-1-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 15px 0;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tp-slider-1-title-black {
  color: #fff;
}

.tp-slider-1-content-wrapp p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 25px;
}

.tp-slider-1-action-box {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.tp-theme-btn {
  display: inline-block;
  padding: 14px 35px;
  border-radius: 0;
  border: 2px solid white;
  background: transparent;
  color: white;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.tp-theme-btn:hover {
  background: white;
  color: var(--lasoda-primary);
}

.tp-theme-btn.btn-black {
  background: var(--lasoda-primary);
  border-color: var(--lasoda-primary);
  color: white;
}

.tp-theme-btn.btn-black:hover {
  background: white;
  color: var(--lasoda-primary);
  border-color: white;
}

/* Navigation Arrows */
.tp-slider-1 .swiper-button-prev,
.tp-slider-1 .swiper-button-next {
  width: 55px;
  height: 55px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tp-slider-1 .swiper-button-prev:hover,
.tp-slider-1 .swiper-button-next:hover {
  background: rgba(255, 255, 255, 0.4);
}

.tp-slider-1 .swiper-button-next::after,
.tp-slider-1 .swiper-button-prev::after {
  font-size: 24px;
  color: white;
}

.tp-slider-1 .swiper-pagination {
  bottom: 30px;
  display: flex;
  justify-content: flex-start;
  padding-left: 60px;
}

.tp-slider-1 .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4);
  width: 12px;
  height: 12px;
  margin: 0 8px;
  opacity: 1;
  transition: all 0.3s ease;
}

.tp-slider-1 .swiper-pagination-bullet-active {
  background: white;
  width: 30px;
  border-radius: 10px;
}

/* ========================================
   FEATURED SERVICES SECTION
   ======================================== */

.featured-services-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 50px;
}

.section-subtitle {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--lasoda-primary);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 15px 0;
  color: var(--lasoda-dark);
}

.service-box {
  background: white;
  padding: 35px 25px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  color: white;
  transition: all 0.3s ease;
}

.service-box:hover .service-icon {
  transform: scale(1.1);
}

.service-box.red .service-icon {
  background: #e74c3c;
}

.service-box.blue .service-icon {
  background: #3498db;
}

.service-box.yellow .service-icon {
  background: #f1c40f;
  color: #333;
}

.service-box.green .service-icon {
  background: #27ae60;
}

.service-box.dark .service-icon {
  background: #2c3e50;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--lasoda-dark);
}

.service-description {
  font-size: 14px;
  line-height: 1.6;
  color: var(--lasoda-muted);
}

/* ========================================
   RECENT PROJECTS SECTION
   ======================================== */

.recent-projects-section {
  padding: 60px 0;
  background: white;
}

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

.project-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.project-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.project-image {
  width: 100%;
  height: 250px;
  background: #f0f0f0;
  overflow: hidden;
  position: relative;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-content {
  padding: 25px;
}

.project-category {
  display: inline-block;
  background: var(--lasoda-primary);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.project-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 10px 0;
  color: var(--lasoda-dark);
}

.project-date {
  font-size: 14px;
  color: var(--lasoda-muted);
}

.view-all-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 30px;
  background: var(--lasoda-primary);
  color: white;
  border: none;
  border-radius: 0;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.view-all-btn:hover {
  background: var(--lasoda-secondary);
  transform: translateX(5px);
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.faq-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.faq-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--lasoda-dark);
}

.faq-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--lasoda-muted);
  margin-bottom: 25px;
}

.faq-services-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.faq-service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--lasoda-text);
}

.faq-service-item::before {
  content: "✓";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--lasoda-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}

.faq-cta-btn {
  display: inline-block;
  padding: 14px 35px;
  background: var(--lasoda-primary);
  color: white;
  border: none;
  border-radius: 0;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-cta-btn:hover {
  background: var(--lasoda-secondary);
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.accordion-item {
  border: 1px solid #e0e0e0;
  border-radius: 0;
  overflow: hidden;
}

.accordion-button {
  background: white;
  color: var(--lasoda-dark);
  border: none;
  padding: 18px 25px;
  font-weight: 600;
  font-size: 15px;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accordion-button:hover {
  background: #f8f9fa;
}

.accordion-button:not(.collapsed) {
  background: var(--lasoda-primary);
  color: white;
  box-shadow: none;
}

.accordion-body {
  padding: 25px;
  background: white;
  color: var(--lasoda-text);
  line-height: 1.8;
  font-size: 15px;
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */

@media (max-width: 1200px) {
  .tp-slider-1-title {
    font-size: 2.2rem;
  }

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

  .faq-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .tp-slider-1-area {
    min-height: 400px;
  }

  .tp-slider-1 .swiper-wrapper {
    height: 400px;
  }

  .tp-slider-1-title {
    font-size: 1.8rem;
  }

  .tp-slider-1-content-wrapp p {
    font-size: 14px;
  }

  .tp-theme-btn {
    padding: 12px 25px;
    font-size: 12px;
  }

  .tp-slider-1 .swiper-button-prev,
  .tp-slider-1 .swiper-button-next {
    width: 45px;
    height: 45px;
  }

  .featured-services-section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 12px;
  }

  .service-box {
    padding: 25px 15px;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .service-title {
    font-size: 1.1rem;
  }

  .recent-projects-section,
  .faq-section {
    padding: 40px 0;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .project-image {
    height: 200px;
  }

  .faq-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .faq-content h3 {
    font-size: 1.5rem;
  }

  .accordion-button {
    padding: 15px 20px;
    font-size: 14px;
  }

  .accordion-body {
    padding: 20px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .tp-slider-1-area {
    min-height: 300px;
  }

  .tp-slider-1 .swiper-wrapper {
    height: 300px;
  }

  .tp-slider-1-plr {
    padding: 0 20px;
  }

  .tp-slider-1-title {
    font-size: 1.5rem;
  }

  .tp-slider-1-content-wrapp {
    max-width: 100%;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .service-box {
    padding: 20px 12px;
  }

  .service-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
    margin-bottom: 15px;
  }

  .service-title {
    font-size: 1rem;
  }

  .service-description {
    font-size: 13px;
  }

  .projects-grid {
    gap: 15px;
  }

  .project-image {
    height: 180px;
  }

  .project-content {
    padding: 20px;
  }

  .faq-services-list {
    gap: 10px;
    margin-bottom: 20px;
  }

  .faq-cta-btn {
    padding: 12px 25px;
    font-size: 14px;
  }

  .accordion-button {
    padding: 12px 15px;
    font-size: 13px;
  }

  .accordion-body {
    padding: 15px;
    font-size: 13px;
  }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.p-relative {
  position: relative;
}

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

.text-center {
  text-align: center;
}

.text-white {
  color: white;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-50 {
  margin-bottom: 50px;
}

.gap-3 {
  gap: 15px;
}

.gap-4 {
  gap: 20px;
}

.tp-slider-1-plr {
  padding: 0 80px;
}

h3.mt-5 {
  margin-top: 3rem;
}

/* ========================================
   ACCESSIBILITY
   ======================================== */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-on-scroll {
  animation: slideInUp 0.6s ease-out;
}
