/* Self-host Manrope font */
@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/Manrope-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/Manrope-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Manrope", sans-serif;
  background-color: #10192A;
  color: #E8ECEE;
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 500;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(16, 25, 42, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
  /*
      &.scrolled {
          padding: 1rem 0;
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
      }
  */
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}
@media (max-width: 968px) {
  .header .container {
    padding: 0 20px;
  }
}

.logo {
  display: flex;
  align-items: center;
  margin-left: -10px;
}
.logo img {
  height: 40px;
  width: auto;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 1.8rem;
}
@media (max-width: 768px) {
  .nav-list {
    position: fixed;
    top: 71px;
    left: 0;
    width: 100%;
    background-color: #10192A;
    flex-direction: column;
    align-items: center;
    padding: 3rem 0;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: all 0.3s ease;
    gap: 10;
    background-color: rgba(16, 25, 42, 0.95);
    backdrop-filter: blur(10px);
  }
  .nav-list.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

.nav-link {
  color: #E8ECEE;
  text-decoration: none;
  font-weight: 800;
  transition: all 0.3s ease;
  position: relative;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}
.nav-link:hover {
  color: #40B982;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #40B982;
  transition: all 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
}
@media (max-width: 768px) {
  .nav-link {
    margin: 1.2rem 0;
    font-size: 1.2rem;
    font-weight: 800;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #E8ECEE;
  margin: 2px 0;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}
.hero-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

video::-webkit-media-controls {
  display: none !important;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(16, 25, 42, 0.9), rgba(16, 25, 42, 0) 60%);
}

.hero-content {
  z-index: 1;
  padding-left: 80px;
  max-width: 650px;
}
@media (max-width: 968px) {
  .hero-content {
    padding-left: 40px;
  }
}
@media (max-width: 768px) {
  .hero-content {
    padding: 0 20px;
    text-align: left;
  }
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 2rem;
  font-weight: 800;
  line-height: 1.1;
  color: #E8ECEE;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-title .line1, .hero-title .line2, .hero-title .line3, .hero-title .line4 {
  display: block;
  white-space: nowrap;
}
.hero-title .line1, .hero-title .line2, .hero-title .line3 {
  margin-bottom: 0.3rem;
}
.hero-title .line4 {
  margin-bottom: 0;
}
@media (max-width: 968px) {
  .hero-title {
    font-size: 3rem;
    line-height: 1.15;
  }
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
    letter-spacing: 0.5px;
  }
  .hero-title .line1, .hero-title .line2, .hero-title .line3 {
    margin-bottom: 0.4rem;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
    line-height: 1.25;
  }
  .hero-title .line1, .hero-title .line2, .hero-title .line3 {
    margin-bottom: 0.3rem;
  }
}

@media (min-width: 1400px) {
  .hero-content {
    margin-left: 2rem;
  }
}
@media (min-width: 1600px) {
  .hero-content {
    margin-left: 4rem;
  }
}
@media (min-width: 1800px) {
  .hero-content {
    margin-left: 6rem;
  }
}
@media (min-width: 2000px) {
  .hero-content {
    margin-left: 8rem;
  }
}
@media (min-width: 2400px) {
  .hero-content {
    margin-left: 12rem;
  }
}
.btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 800;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  font-family: "Manrope", sans-serif;
}
.btn-primary {
  background-color: #40B982;
  color: #10192A;
}
.btn-primary:hover {
  background-color: rgb(98.9759036145, 201.0240963855, 154.6385542169);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(64, 185, 130, 0.3);
}
.btn-secondary {
  border: 2px solid #40B982;
  background-color: transparent;
  color: #40B982;
}
.btn-secondary:hover {
  background-color: #40B982;
  color: #10192A;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(64, 185, 130, 0.3);
}

.nav-button {
  border: 2px solid #40B982 !important;
  background-color: transparent !important;
  color: #40B982 !important;
  padding: 8px 20px !important;
  border-radius: 4px !important;
  font-weight: 800 !important;
  transition: all 0.3s ease !important;
}
.nav-button::after {
  display: none !important;
}
.nav-button:hover {
  background-color: #40B982 !important;
  color: #10192A !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 15px rgba(64, 185, 130, 0.3) !important;
}
@media (min-width: 769px) {
  .nav-button {
    margin-left: 1rem !important;
  }
}
@media (max-width: 768px) {
  .nav-button {
    padding: 12px 28px !important;
    font-size: 1.2rem !important;
    margin-top: 1rem !important;
  }
}

.section {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }
}

.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  font-weight: 800;
  font-size: 2.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #40B982;
}
@media (max-width: 968px) {
  .section-title {
    font-size: 2.3rem;
  }
}
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2.5rem;
}
@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

.portfolio-item {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}
.portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.portfolio-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  background: linear-gradient(to top, rgba(16, 25, 42, 0.9), transparent);
  color: #E8ECEE;
}
.portfolio-overlay h3 {
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.portfolio-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.services-container {
  max-width: 768px;
  margin: 0 auto;
}

.service-category {
  margin-bottom: 4rem;
  text-align: left;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(232, 236, 238, 0.1);
  display: flex;
  align-items: flex-start;
}
.service-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
@media (max-width: 968px) {
  .service-category {
    flex-direction: column;
    align-items: flex-start;
  }
}

.service-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: #40B982;
  border-radius: 50%;
  margin-right: 2rem;
  flex-shrink: 0;
}
@media (max-width: 968px) {
  .service-icon-container {
    margin-bottom: 1.5rem;
    margin-right: 0;
  }
}
@media (max-width: 968px) {
  .service-icon-container {
    align-self: center;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 480px) {
  .service-icon-container {
    width: 60px;
    height: 60px;
  }
}

.service-icon {
  width: 1.8rem;
  height: 1.8rem;
  object-fit: contain;
}
@media (max-width: 480px) {
  .service-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.service-content {
  flex: 1;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #E8ECEE;
  margin: 0 0 0rem 0;
}
@media (max-width: 480px) {
  .service-title {
    font-size: 1.5rem;
  }
}

.service-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(232, 236, 238, 0.9);
  margin: 0;
}
@media (max-width: 480px) {
  .service-description {
    font-size: 1.1rem;
  }
}

.about {
  position: relative;
  background: linear-gradient(rgba(16, 25, 42, 0.5), rgba(16, 25, 42, 0.5)), url("https://res.cloudinary.com/dop7kcce0/image/upload/v1757679218/bg-about_jemmjj.avif") center/cover fixed no-repeat, url("https://res.cloudinary.com/dop7kcce0/image/upload/v1757495661/bg-about_v0pzck.webp") center/cover fixed no-repeat;
}
@media (max-width: 768px) {
  .about {
    background-attachment: scroll;
  }
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  position: relative;
  z-index: 2;
}
.about-content p {
  margin-bottom: 1.8rem;
  font-size: 1.2rem;
  line-height: 1.8;
  font-weight: 500;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.contact-info {
  text-align: center;
  margin-bottom: 1rem;
}
.contact-info h3 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 1.5rem;
  text-transform: none;
  letter-spacing: 0;
}

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

.form-group {
  margin-bottom: 1.8rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 18px;
  background-color: rgba(232, 236, 238, 0.05);
  border: 1px solid rgba(232, 236, 238, 0.1);
  border-radius: 4px;
  color: #E8ECEE;
  font-family: "Manrope", sans-serif;
  transition: all 0.3s ease;
  font-size: 1rem;
  font-weight: 500;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #40B982;
  box-shadow: 0 0 0 2px rgba(64, 185, 130, 0.2);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(232, 236, 238, 0.6);
}
.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-group input:required:invalid,
.form-group textarea:required:invalid {
  border-color: rgba(255, 71, 87, 0.3);
}
.form-group input:required:valid,
.form-group textarea:required:valid {
  border-color: rgba(64, 185, 130, 0.3);
}

.form-message {
  padding: 15px;
  margin: 20px 0;
  border-radius: 4px;
  text-align: center;
  font-weight: 500;
}
.form-message.success {
  background-color: rgba(64, 185, 130, 0.1);
  color: #40B982;
  border: 1px solid rgba(64, 185, 130, 0.3);
}
.form-message.error {
  background-color: rgba(255, 71, 87, 0.1);
  color: #ff4757;
  border: 1px solid rgba(255, 71, 87, 0.3);
}

.footer-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 2rem;
}
@media (max-width: 968px) {
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 968px) {
  .footer-left {
    align-items: center;
  }
}

.footer-logo img {
  height: 50px;
  width: auto;
  transition: all 0.3s ease;
}
.footer-logo img:hover {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .footer-logo img {
    height: 45px;
  }
}
@media (max-width: 480px) {
  .footer-logo img {
    height: 40px;
  }
}

.footer-bio .bio-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(232, 236, 238, 0.8);
  margin: 0;
  max-width: 320px;
}
@media (max-width: 968px) {
  .footer-bio .bio-text {
    max-width: 400px;
  }
}
@media (max-width: 480px) {
  .footer-bio .bio-text {
    font-size: 0.9rem;
  }
}

.footer-right {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 968px) {
  .footer-right {
    justify-content: center;
  }
}

.footer-contact {
  text-align: right;
}
@media (max-width: 968px) {
  .footer-contact {
    text-align: center;
  }
}
.footer-contact .contact-title {
  font-weight: 800;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  font-size: 1.1rem;
  color: #40B982;
}

.contact-details {
  margin-bottom: 1.2rem;
}
.contact-details p {
  margin-bottom: 0.3rem;
  font-size: 1rem;
}
.contact-details a {
  color: rgba(232, 236, 238, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
}
.contact-details a:hover {
  color: #40B982;
  text-decoration: underline;
}

.social-icon {
  width: 1.1rem;
  height: 1.1rem;
  object-fit: contain;
  transition: all 0.3s ease;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(232, 236, 238, 0.1);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-link:hover {
  background-color: #40B982;
  transform: translateY(-3px);
}
.social-link:hover .social-icon {
  filter: brightness(0) saturate(100%) invert(9%) sepia(15%) saturate(1713%) hue-rotate(182deg) brightness(95%) contrast(93%);
}

.social-links {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}
@media (max-width: 968px) {
  .social-links {
    justify-content: center;
  }
}

.copyright {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(232, 236, 238, 0.1);
  font-size: 0.9rem;
  color: rgba(232, 236, 238, 0.7);
  text-align: center;
  margin-top: 2rem;
}

.footer {
  background-color: rgb(8.9655172414, 14.0086206897, 23.5344827586);
  padding: 3rem 0 2rem;
}

.project-header {
  padding: 120px 0 60px;
  text-align: center;
}
@media (max-width: 480px) {
  .project-header {
    padding: 100px 0 40px;
  }
}

.project-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  color: #E8ECEE;
}
@media (max-width: 968px) {
  .project-title {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .project-title {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .project-title {
    font-size: 1.8rem;
  }
}

.project-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: rgba(232, 236, 238, 0.8);
}
@media (max-width: 768px) {
  .project-meta {
    flex-direction: column;
    gap: 1rem;
  }
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.meta-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.project-content {
  max-width: 800px;
  margin: 0 auto 4rem;
  font-size: 1.1rem;
  line-height: 1.8;
}
.project-content p {
  margin-bottom: 1.5rem;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin: 4rem 0;
  border-radius: 4px;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.gallery-section {
  padding: 2rem 0 6rem;
}

.gallery-title {
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 800;
  font-size: 2rem;
  text-transform: uppercase;
  position: relative;
  color: #E8ECEE;
}
@media (max-width: 480px) {
  .gallery-title {
    font-size: 1.5rem;
  }
}
.gallery-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #40B982;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-item {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
  transition: all 0.3s ease;
}
.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f8f9fa;
  z-index: 1000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 4px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

.lightbox-close {
  position: fixed;
  top: 30px;
  right: 30px;
  color: #E8ECEE;
  background: rgba(16, 25, 42, 0.7);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1001;
}
.lightbox-close:hover {
  background: #40B982;
  color: #10192A;
}
@media (max-width: 768px) {
  .lightbox-close {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 2rem;
  pointer-events: none;
}

.lightbox-button {
  color: #E8ECEE;
  background: rgba(16, 25, 42, 0.7);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
}
.lightbox-button:hover {
  background: #40B982;
  color: #10192A;
}
@media (max-width: 768px) {
  .lightbox-button {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.error-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.error-title {
  font-size: 8rem;
  font-weight: 800;
  color: #40B982;
  margin-bottom: 1rem;
  line-height: 1;
}
@media (max-width: 768px) {
  .error-title {
    font-size: 6rem;
  }
}
@media (max-width: 480px) {
  .error-title {
    font-size: 4rem;
  }
}

.error-subtitle {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #E8ECEE;
}
@media (max-width: 768px) {
  .error-subtitle {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .error-subtitle {
    font-size: 1.5rem;
  }
}

.error-message {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: rgba(232, 236, 238, 0.8);
  line-height: 1.6;
}

.error-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.thank-you-message {
  text-align: center;
  padding: 4rem 0;
}
.thank-you-message h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #40B982;
}
@media (max-width: 768px) {
  .thank-you-message h2 {
    font-size: 2rem;
  }
}
.thank-you-message p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.lazy-load {
  background-image: url("/assets/images/placeholder.avif");
  background-repeat: no-repeat;
  background-size: cover;
}

.lazy-load::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: pulse 2s infinite;
  background-color: #10192A;
}

@keyframes pulse {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
  }
}
.lazy-load.loaded::before {
  animation: none;
  content: none;
}

.lazy-load img {
  color: transparent;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.lazy-load.loaded img {
  opacity: 1;
}

/*# sourceMappingURL=main.css.map */