/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Quicksand", "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #111;
  background: #f5f5f5;
  overflow-x: hidden;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  color: #fff;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 1rem 2rem;
  z-index: 1000;
  transition: all 0.3s ease;
}

/* Logo pendurada */
.logo {
  position: absolute;
  top: -40px;
  left: 5px;
  transition: all 0.3s ease;
}

.logo img.logo-normal {
  height: 280px;
  width: auto;
  display: block;
  transition: all 0.3s ease;
}

.logo img.logo-scrolled {
  display: none;
  height: 80px;
  width: auto;
  transition: all 0.3s ease;
}

/* Quando rolar */
header.scrolled .logo {
  position: relative;
  top: 0;
  left: 0;
  margin-right: auto;
}

header.scrolled .logo-normal {
  display: none;
}

header.scrolled .logo-scrolled {
  display: block;
}

/* Responsividade */ @media (max-width: 768px) {
  .logo { 
    left: 10px; 
    top: -20px; 
  } 
  .logo img.logo-normal 
  { 
    height: 180px; 
  } 
  .logo img.logo-scrolled 
  { 
    height: 70px; 
  } 
  header.scrolled .logo 
  { 
    left: 0; 
    top: 0; 
  } 
}

/* Navegação Desktop */
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #32a852;
}

.nav-links a {
  position: relative;
  display: inline-block;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #32a852;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}


/* Toggle do menu */
.menu-toggle {
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: 0.3s;
  display: none;
  z-index: 1100;
}

/* Header após rolar */
header.scrolled {
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(1px);
}

header.scrolled .nav-links a {
  color: #fff;
}

header.scrolled .menu-toggle {
  color: #fff;
}

header.scrolled .nav-links a:hover {
  color: #32a852; /* mantém o texto verde no hover, mesmo com fundo escuro */
}

/* Banner */
.banner {
  position: relative;
  text-align: center;
  padding: 17rem 2rem;
  color: white;
  
}

.banner img.banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* preenche sem distorcer */
  z-index: -1; /* fica atrás do texto */
  opacity: 1;
}

.banner-img.fade-out {
  opacity: 0;
}

.banner-content h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 700;
}

.banner-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  font-weight: 600;
  padding: 0.7rem 0.7rem;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Quicksand", sans-serif;
  letter-spacing: 0.5px;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* --- Responsividade --- */
@media (max-width: 768px) {
  .banner-content {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .btn-cta,
  .btn-outline {
    display: flex;
    margin-bottom: 1rem;
  }
}


.info-cards {
  position: relative;
  top: -250px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  padding: 2.5rem 1.5rem;
  max-width: 1100px;
  width: 90%;
  z-index: 10;
  flex-wrap: wrap;
  text-align: center;
}

.info-card {
  flex: 1;
  min-width: 260px;
  margin: 1rem;
}

.info-card .icon {
  background: #000; /* verde Fórccis */
  color: #32a852; /* amarelo destaque */
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1rem;
  transition: transform 0.3s ease;
}

.info-card .icon:hover {
  transform: scale(1.1);
}

.info-card h3 {
  color: #111;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  font-family: "Quicksand", sans-serif;
}

.info-card p {
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
  font-family: "Quicksand", sans-serif;
}

@media (max-width: 768px) {
  .info-cards {
    flex-direction: column;
    top: -260px;
    padding: 2rem 1.5rem;
  }

  .info-card {
    margin-bottom: 1.5rem;
  }
}



/* ================================
   ★ NOVO: BADGE NO TOPO DO BANNER ★
   ================================ */
.banner-badge {
  position: absolute;
  top: 210px;                /* distância do topo */
  left: 50%;
  transform: translateX(-50%);

  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px); 
  padding: 8px 20px;
  border-radius: 25px;

  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
  z-index: 5;
}


.services {
  padding: 2rem;
  background: #f5f5f5;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-content {
  padding: 2rem 1.5rem;
  flex: 1; 
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-content i {
  font-size: 2rem;
  color: #32a852;
  margin-bottom: 1rem;
}

.service-content h3 {
  color: #022b12;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  font-family: "Quicksand", sans-serif;
}

.service-content p {
  color: #444;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  font-family: "Quicksand", sans-serif;
  text-align: justify;
}


.service-link {
  color: #022b12;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 2px solid #32a852;
  transition: color 0.3s ease, border-color 0.3s ease;
  margin-top: auto;
  align-self: flex-start;
  display: inline-block;
  align-content: center;
}

.service-link:hover {
  color: #32a852;
  border-color: #022b12;
}



.cta {
  background: #32a852;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.cta:hover {
  background: #279644;
}

/* Seções */
section {
  padding: 2rem;
  text-align: center;
}

section h2 {
  font-size: 2rem;
  color: #32a852;
  margin-bottom: 1.5rem;
}

.sobre p {
  text-align:justify;
  max-width: 1200px;     /* mesma largura dos serviços */
  margin: 0 auto;        /* centraliza no meio da tela */
  padding: 0 1rem;       /* evita texto colado nas bordas */
}

/* Projetos */

/* Área com margem centralizada */
.forccis-stats {
  max-width: 1200px;   /* Alinhado com o restante do site */
  margin: 0 auto;
  padding: 2rem 1rem;  /* Respiro lateral */
}

/* GRID PRINCIPAL */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
  text-align: justify;
}

.stat-text {
  background: transparent;
  padding: 0;
}

.stat-text h4 {
  color: #2E7D32; /* verde (ajuste para o verde da sua marca) */
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.stat-text p {
  color: #000;
  font-size: 16px;
  line-height: 1.6;
  max-width: 420px;
}

.stat-img img {
  width: 100%;
  height: auto;
  border-radius: 12px; /* opcional */
}


/* Portfólio */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.portfolio-item img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.portfolio-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

/* Serviços */
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.servico {
  background: #000;
  color: #fff;
  padding: 2rem;
  border-radius: 10px;
  font-weight: bold;
  border: 2px solid #32a852;
  transition: 0.3s;
}

.servico:hover {
  background: #32a852;
  color: #000;
}

/* ===== Footer Moderno estilo V17 adaptado ===== */
.footer-modern {
  background: #000; /* verde escuro elegante */
  color: #fff;
  padding: 3rem 1rem;
  font-family: "Quicksand", sans-serif;
}

.footer-top {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-col h4 {
  display: flex;
  justify-content:left;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #32a852;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}


.footer-col i {
  color: #32a852;
  font-size: 1rem;
}

/* Redes sociais */
.footer-social-small {
  display: flex;
  justify-content: left;
  
}

.footer-social-small a {
  color: #fff;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  
}

.footer-social-small a:hover {
  color: #32a852;
  transform: scale(1.1);
}

/* Logo */
.footer-logo {
  display: flex;
  justify-content: left;
}

.footer-logo img {
  width: 70px;
  height: auto;
  margin-top: 0.5rem;
}

/* Responsividade */
@media (max-width: 768px) {
  .footer-modern {
    padding: 2rem 1rem;
  }

  .footer-columns {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }
  
  .footer-social-small {
  display: flex;
  justify-content: center;
}

  .footer-col {
    min-width: 100%;
    
  }

  .footer-col ul li {
    justify-content: center;
  }

  .footer-logo img {
    width: 50px;
  }
  .footer-logo {
  display: flex;
  justify-content: center;
}
}


















































.sobre-galeria {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.sobre-galeria img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 24px;
}




/* Seção principal */
.vision-section {
  background: #f5f5f5;
  padding: 4rem 2rem;
  text-align: center;
  font-family: "Quicksand", sans-serif;
}

.vision-section h2 {
  font-size: 2.2rem;
  color: #32a852;
  font-weight: 700;
  margin-bottom: 2.5rem;
}

.vision-section h4 {
  
  color: #32a852;
  
}

/* Container dos cards */
.vision-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 2rem;
}

/* Card individual */
.vision-card {
  background: #000;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  padding: 2rem 1.5rem;
  flex: 1;
  min-width: 260px;
  max-width: 340px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* Ícone */
.vision-card .icon {
  background: #000;
  color: #32a852; /* verde-limão para destaque */
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1rem;
}

/* Título e texto */
.vision-card h3 {
  color: #32a852;
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.vision-card p {
  color: #fff;
  font-size: 1rem;
  line-height: 1.6;
}


/* Botão WhatsApp */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #32a852;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: transform 0.3s;
}

.whatsapp:hover {
  transform: scale(1.1);
  background: #279644;
}

.whatsapp img {
  width: 30px;
  height: 30px;
}

/* Efeito Pulse */
.whatsapp::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(50, 168, 82, 0.4);
  animation: pulse 2s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* ===========================
   MENU MOBILE MODERNO
   =========================== */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background: rgba(20,20,20,0.95); /* padrão preto translúcido */
    backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.4s ease, background 0.3s ease;
    box-shadow: -4px 0 12px rgba(0,0,0,0.4);
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.4rem;
    font-weight: 600;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    transition: 0.3s;
    color: #fff;
  }

  .nav-links a:hover {
    background: #32a852;
    color: #fff;
  }

  .menu-toggle {
    display: block;
  }

  /* Quando o header estiver scrolled, muda menu lateral para branco */
  header.scrolled .nav-links {
    background: #000; /* branco translúcido */
  }

  header.scrolled .nav-links a {
    color: #fff;
  }

  header.scrolled .nav-links a:hover {
    background: #32a852;
    color: #fff;
  }

  .banner-content h1 {
    font-size: 2.2rem;
  }

  .banner-content p {
    font-size: 1rem;
  }
}











/* GRID */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.project-card {
  cursor: pointer;
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal img {
  max-width: 85%;
  max-height: 85vh;
  border-radius: 16px;
}

/* BOTÕES */
.modal-prev,
.modal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 48px;
  cursor: pointer;
  padding: 20px;
}

.modal-prev { left: 40px; }
.modal-next { right: 40px; }

.modal-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}








.project-card {
  max-width: 550px;
}

/* CARROSSEL */
.carousel {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 320px; /* AUMENTE AQUI */
}

/* IMAGEM */
.carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* SETAS */
.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  border: none;
  color: #fff;
  font-size: 24px;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-prev { left: 12px; }
.carousel-next { right: 12px; }

/* BOLINHAS */
.carousel-dots {
  position: absolute;
  bottom: 12px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel-dots span {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  cursor: pointer;
}

.carousel-dots span.active {
  background: #fff;
}








.modal-success {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-content {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  max-width: 420px;
  width: 90%;
  text-align: center;
}

.modal-content button {
  margin-top: 20px;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  background: #000;
  color: #fff;
  cursor: pointer;
}














@media (max-width: 768px) {
  .carousel {
    height: 240px;
  }
}
























.values-banner {
  background: transparent;
  color: #f5f5f5;
  max-width: 1200px;
  margin: 60px auto;
  text-align: center;
  overflow: hidden;
}

.values-banner h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 25px;
  color: #32a852;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.values-carousel {
  display: flex;
  gap: 20px;
  animation: scroll 30s linear infinite;
}

.value-card {
  flex: 0 0 250px;
  background: #fff;
  border-radius: 16px;
  padding: 25px 18px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.value-icon {
  width: 55px;
  height: 55px;
  background-color: #000;
  color: #32a852;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 22px;
}

.value-card h3 {
  color: #32a852;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.value-card p {
  color: #000;
  font-size: 0.88rem;
  line-height: 1.45;
}

/* Animação de rolagem infinita */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}



/* Fundo do banner */
/* Área geral */
.form-banner {
  background: linear-gradient(135deg, #1b6b55, #26a87b);
  background-image: url("icones/2.png");
  background-size: cover;
  background-position: center;
  padding: 120px 20px;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;

  flex-wrap: wrap; /* PERMITE empilhar no mobile */
}


/* TEXTO À ESQUERDA */
.form-texto {
  max-width: 400px;
  color: white;
}

.form-texto h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.form-texto p {
  font-size: 1.1rem;
  line-height: 1.6;
}


/* FORMULÁRIO */
.form-container {
  background: rgba(255, 255, 255, 0.92);
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  max-width: 380px;
  width: 100%;
  backdrop-filter: blur(5px);
}

.form-container h3 {
  text-align: center;
  color: #0a3a33;
  font-weight: 700;
  margin-bottom: 25px;
}


/* Inputs */
.formulario input,
.formulario textarea {
  width: 100%;
  border: none;
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 15px;
  font-size: 1rem;
  box-shadow: inset 0 0 0 1px #cdd3d6;
  background: #f8f9fa;
  transition: .3s;
}

.formulario input:focus,
.formulario textarea:focus {
  box-shadow: inset 0 0 0 2px #1b6b55;
  background: #fff;
}

/* Botão */
.formulario button {
  background: #32a852;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  margin: 10px auto 0;
  display: block;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.formulario button:hover {
  background: #e86d00;
}


/* RESPONSIVO — texto vai para cima */
@media (max-width: 900px) {
  .form-banner {
    flex-direction: column;
    padding: 80px 20px;
    text-align: center;
  }

  .form-texto {
    order: -1; /* TEXTO SOBE NO MOBILE */
    margin-top: 80px;
  }
}



/*projetos*/

/* Container geral */
.projects-section {
    max-width: 1200px;
    padding: 4rem 1rem;
    margin: 0 auto; 
    
}

/* Filtros */
.projects-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.6rem 1.6rem;
    background: #f5f7f6;
    border: none;
    border-radius: 999px;
    font-weight: 600;
    color: #0b3d2c;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.filter-btn.active {
    background: #0b3d2c;
    color: #fff;
}

.filter-btn:hover {
    background: #e3e8e7;
}

/* Grid dos cards */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}



/* Card */
.project-card {
    padding-bottom: 1rem;
  
}

.project-card img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    border-radius: 25px;
}

/* Título */
.project-card h3 {
    font-size: 1.6rem;
    margin-top: 1rem;
    margin-bottom: .4rem;
    color: #0b3d2c;
}

/* Descrição */
.project-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Responsivo */
@media (max-width: 768px) {
    .project-card img {
        height: 250px;
    }
}













