@charset "UTF-8";
* {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

html {
  overflow-x: hidden;
}

body.stop-scroll {
  overflow: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
}

.hide {
  display: none !important;
}

.navBtnVerde {
  background-color: #4CAF50; /* Verde */
  color: rgb(255, 255, 255);
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 30px;
}

.navBtnVerde:hover {
  background-color: #ffffff !important; /* Verde más oscuro al pasar el ratón */
  border-color: #4CAF50 !important;
  border-style: solid !important;
  border-width: 1.5px !important;
  color: #4CAF50 !important;
}

.content {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
}

.content video {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: -webkit-fill-available;
}

.content .degradado {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1; /* Debajo del texto, encima del GIF */
  pointer-events: none; /* Importante: para que no bloquee clics */
}

.hero-text {
  position: absolute;
  top: 20%; /* Lo bajamos un poco para que encaje mejor */
  left: 5%; /* Lo acercamos más a la izquierda */
  height: auto;
  margin: 5%;
  color: white;
  z-index: 2;
}

.hero-text h1 {
  font-size: 4vw;
  line-height: 1.1; /* Más cerrado para que coincida */
  margin: 0;
  font-weight: 600;
}

.hero-text h1 span:first-child {
  font-style: italic;
  font-weight: 900;
  font-size: 5vw;
}

.hero-button {
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #5C6CFF;
  color: white;
  border: none;
  border-radius: 15px;
  text-decoration: none;
  cursor: pointer;
  height: 1.8rem;
  width: 6.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1em;
  white-space: nowrap;
  margin-top: 20px;
}

nav {
  background-color: white;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

nav .logo img:first-child {
  width: 170px;
}

.logo {
  margin-left: 2%;
}

nav .logo img:last-child {
  display: none;
}

nav .buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end; /* Opcional: los coloca alineados a la derecha */
  gap: 10%; /* <- Este valor controla la separación entre los botones */
}

nav .buttons a {
  font-size: 1.2em;
  text-decoration: none;
  color: black;
  padding: 10px;
  border: none;
  border-radius: 5px;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
}

nav .buttons .navBtnVerde {
  text-decoration: none;
  color: rgb(255, 255, 255);
  padding: 15px;
  border: none;
  border-radius: 15px;
  text-align: center;
}

nav .buttons a:hover {
  background-color: #f2f2f2;
}

nav .buttons a.active {
  background-color: #f2f2f2;
}

nav .buttons a:last-child {
  display: flex;
  justify-content: center;
  align-items: center;
}

nav .buttons a img {
  width: 30px;
}

.en:hover {
  background-color: transparent !important;
}

.welcome {
  background-color: #01122E;
  display: grid;
  grid-template-rows: 90% 10%;
  padding-bottom: 0;
  height: auto;
  max-height: 100vh;
  position: relative;
}

.welcomeTop img {
  width: 150px;
}

.welcomeContent {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: auto;
  position: relative;
}

.mainBanner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 100%;
  padding-left: 15%;
  padding-right: 15%;
  position: relative;
  justify-content: space-between;
  align-items: center;
}

.welcomeLeft {
  grid-column: 1/2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

.welcomeLeft p:nth-child(1) {
  font-size: 3.5vw;
  color: white;
  margin: 0;
}

.welcomeLeft p:nth-child(2) {
  font-size: 1.1vw;
  color: white;
  margin: 0;
}

.welcomeRight {
  grid-column: 2/3;
  position: relative;
  width: 100%;
  height: 100%;
}

.welcomeBottom .point {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: white;
  margin: 0 5px;
  cursor: pointer;
}

.videoContent {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.videoContent .graficos {
  height: auto;
  width: 100%;
  scale: 130%;
}
.videoContent div {
  color: #ffffff;
  position: absolute;
  z-index: 998;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.videoContent div h2 {
  font-size: 3vw;
  margin: 0;
}
.videoContent div h2 span {
  font-weight: 800;
  font-style: italic;
}
.videoContent div p {
  font-size: 2.5vw;
  text-align: center;
  font-style: italic;
  font-weight: 600;
  margin-top: 0;
}
.videoContent div button {
  background-color: #22C55E; /* Verde */
  color: rgb(255, 255, 255);
  padding: 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1.2em;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 15px;
  border: none;
}

.blue-bg {
  background-color: #00132E;
  width: 100%;
  height: 237px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  margin-top: -3px;
}

.ourServices {
  width: 100%;
  height: auto;
}

.ourServices > p {
  font-size: 2em;
  color: #ffffff;
  text-align: center;
  margin: 0;
  padding: 20px;
  position: sticky;
}
.ourServices > p strong {
  font-weight: 700;
  font-style: italic;
}

.services {
  width: 90%;
  display: flex;
  justify-content: center;
  gap: 2%;
  align-items: center;
  flex-wrap: wrap;
  position: sticky;
  z-index: 1;
  margin: 30px auto 70px;
}

.cardService {
  display: flex;
  flex-direction: column;
  width: 18%;
  height: 22rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  background-color: #ffffff;
  min-width: 200px;
  max-width: 272px;
  margin-bottom: 20px;
}
.cardService img {
  width: 100%;
  height: 8rem;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
}

.card-body {
  padding: 0 10%;
}
.card-body div h4 {
  font-size: 1.25rem;
}
.card-body div p {
  color: #6b6b6b;
  font-size: 1.2rem;
}

.business-solutions {
  text-align: center;
  padding: 40px 20px;
  background: white;
}
.business-solutions h2 {
  font-size: 3.2vw;
  font-weight: 900;
  font-style: italic;
  color: #4BB05F;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.card-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.card-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
}

.card-button {
  position: absolute;
  bottom: 30px;
  left: 25%;
  transform: translateX(-30%);
  background-color: white;
  /* color: #3b3dd8; */
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  width: 53%;
  height: 12%;
  font-size: 1.2em;
  font-weight: 600;
  white-space: nowrap;
  padding: 0 10px;
  text-align: center;
}

.card-button:hover {
  background-color: #2bd889;
  color: white;
}

.tagline {
  margin: 20px auto;
  text-align: center;
  width: 84%;
  font-size: 3em;
  font-weight: 300;
}

.highlight.passion {
  color: #f14d5d;
  font-weight: bold;
  font-style: italic;
}

.highlight.technology {
  color: #2bd889;
  font-weight: bold;
  font-style: italic;
}

.highlight.possibilities {
  color: #6b5be2;
  font-weight: bold;
  font-style: italic;
}

.bglock {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 999;
  display: none; /* Oculto por defecto */
}

.mdl {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.mdl.active {
  display: flex;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.mdl img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
}

/* .scrollAnimation {
    display: grid;
    grid-template-columns: 1fr 6fr 3fr;
    height: 100vh;
}

.scroll {
    display: flex;
    justify-content: center;
    align-items: center;
}

.scrollBar {
    width: 8px;
    height: 30vw;
    background-color: #d9d9d9;
    border-radius: 5px;
    position: relative;
}

.scrollBarHandle {
    width: 8px;
    height: 50px;
    background-color: #01122E;
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: 0;
}

.scrollText {
    font-size: 2em;
    color: #01122E;
    text-align: center;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scrollImages {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: relative;
}

.scrollImages img:nth-child(1) {
    position: absolute;
    width: 70%;
} */
.scrollAnimation {
  scroll-behavior: smooth;
  display: grid;
  grid-template-columns: 1fr 6fr 3fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80vh;
  margin-bottom: 12%;
  margin-top: 3%;
  overflow-y: hidden;
  scroll-behavior: smooth;
}

/* Scroll Bar Container */
.scroll {
  width: 10px;
  height: 60%;
  background: #d9d9d9;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  margin-left: auto;
}

/* Scroll Progress Bar */
.scrollBar {
  position: absolute;
  width: 100%;
  height: 0%; /* Se ajusta dinámicamente por JS */
  background: #01122E;
  transition: transform 0.5s ease-in-out, height 0.3s ease-in-out;
  border-radius: 10px;
}

/* Text Container */
.scrollText {
  text-align: center;
  font-size: 2vw;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Default state of text items */
.scrollText p {
  display: none;
  margin: 40px 0;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  line-height: 1.2;
  color: white;
}

/* Active state of text items */
.scrollText p.active {
  opacity: 1;
  display: flex;
  flex-direction: column;
  transform: translateY(0) scale(1.05);
  color: black;
  font-size: 1.5em;
}

/* Specific styles for each text line */
.scrollText p:nth-child(1) {
  color: #e74c3c; /* Rojo */
  font-style: italic;
}
.scrollText p:nth-child(1) strong {
  font-weight: 900;
  scale: 1.2;
}

.scrollText p:nth-child(1) span {
  color: #000;
  font-weight: 700;
  font-style: normal;
}

.scrollText p:nth-child(2) {
  color: #27ae60; /* Verde */
  font-style: italic;
}
.scrollText p:nth-child(2) strong {
  font-weight: 900;
  scale: 1.2;
}

.scrollText p:nth-child(2) span {
  color: #000;
  font-weight: 700;
  font-style: normal;
}

.scrollText p:nth-child(3) {
  color: #f1c40f; /* Amarillo */
  font-style: italic;
}
.scrollText p:nth-child(3) strong {
  font-weight: 900;
  scale: 1.2;
}

.scrollText p:nth-child(3) span {
  color: #000;
  font-weight: 700 !important;
  font-weight: normal;
}

.scrollText p:nth-child(4) {
  color: #8e44ad; /* Morado */
  font-style: italic;
}
.scrollText p:nth-child(4) strong {
  font-weight: 900;
  scale: 1.2;
}

.scrollText p:nth-child(4) span {
  color: #000;
  font-weight: 700;
  font-style: normal;
}

.scrollText p:nth-child(5) {
  color: #6EC9FB; /* Azul */
  font-style: italic;
  font-weight: 900;
  font-size: 4rem;
  scale: 1.2;
}

/* Phone frame */
.phone-frame {
  position: relative;
  width: 10rem;
  height: 20rem;
  border-radius: 35px;
  background-size: contain;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Phone image */
.phone-frame > img {
  position: absolute;
  width: 96%;
  z-index: 2;
}

/* Video container inside phone */
.video-container {
  position: absolute;
  width: 92%;
  height: 98%;
  overflow: hidden;
  border-radius: 25px;
  z-index: 1;
}

/* Videos inside the phone */
.video-container video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  position: absolute;
}

/* Active video */
.video-container video.active {
  opacity: 1;
  transform: scale(1);
}

.mapAnimation {
  height: auto;
  display: flex;
  width: 100vw;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mapAnimation img {
  width: 100%;
  height: 75%;
  margin-top: 12vh;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  scale: 0.8;
}

.mapAnimation video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.opacity {
  background-color: rgba(0, 0, 0, 0.4);
  width: 100vw;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.words {
  z-index: 1 !important;
}

.white {
  color: rgb(255, 255, 255);
}

.green {
  color: #1ABC9C;
}

.red {
  color: #E74C3C;
}

/* Elementos animados */
.animated-element {
  position: absolute;
  opacity: 0;
  transition: transform 2s ease-in-out, opacity 2s ease-in-out;
}

/* Posiciones finales */
.animated-element.user {
  top: 30%;
  left: 7%;
  width: 90%;
}

.animated-element.pos-computer {
  top: 10%;
  left: 8%;
  width: 50%;
}

.animated-element.card {
  top: 45%;
  left: 41%;
  width: 35%;
}

.animated-element.money1 {
  top: 15%;
  left: 65%;
  width: 7%;
}

.animated-element.money2 {
  top: 25%;
  left: 70%;
  width: 3%;
}

.animated-element.money3 {
  top: 19%;
  left: 74%;
  width: 5%;
}

.animated-element.terminal {
  bottom: 38%;
  left: 53%;
  width: 40%;
}

.intro-video-container {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 10;
}

.intro-video-container video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Botón para saltar el video */
#skip-video {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: rgba(255, 255, 255, 0.7);
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
}

/* Ocultar la animación principal al inicio */
.hidden {
  display: none;
}

/* Efecto de desvanecimiento */
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fade-out {
  animation: fadeOut 1.5s ease-in-out forwards;
}

.ourJourney {
  width: 100%;
  height: auto;
}
.ourJourney .timeline {
  width: 100%;
}
.ourJourney .timeline img {
  width: 100%;
  height: auto;
  opacity: 0;
  transform: translateX(-100px);
  transition: all 1s ease-out;
}
.ourJourney .timeline img.visible {
  opacity: 1;
  transform: translateX(0);
}

.ourJourney > p {
  font-size: 2.5vw;
  color: #4BB05F;
  text-align: start;
  font-weight: 900;
  font-style: italic;
  margin: 0;
  padding: 20px;
  padding-bottom: 0;
}

.ourTeam {
  width: calc(100% - 80px);
  max-width: 1100px;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  padding: 40px;
  margin: 0 auto;
}

.ourTeam > div {
  border-radius: 20px;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  cursor: pointer;
}

.ourTeam > div img {
  margin: 20px;
  width: 90%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.ourTeam > div:nth-child(1) img,
.ourTeam > div:nth-child(5) img,
.ourTeam > div:nth-child(4) img {
  filter: brightness(0);
}

.ourTeam > div:nth-child(1) {
  background-color: #FCD92A;
}

.ourTeam > div:nth-child(2) {
  background-color: #EF1506;
}

.ourTeam > div:nth-child(3) {
  background-color: #05172D;
}

.ourTeam > div:nth-child(4) {
  background-color: #D3603C;
}

.ourTeam > div:nth-child(5) {
  background-color: #03A64A;
}

.ourTeam > div:nth-child(6) {
  background-color: #6662F0;
}

.department1 {
  background-color: #FCD92A;
}

.department2 {
  background-color: #EF1506;
}

.department3 {
  background-color: #05172D;
}

.department4 {
  background-color: #D3603C;
}

.department5 {
  background-color: #03A64A;
}

.department6 {
  background-color: #6662F0;
}

.footer {
  width: calc(100% - 80px);
  height: 200px;
  margin-top: 100px;
  margin-right: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  background-color: #01122E;
  padding: 40px 55px;
  gap: 20px;
  position: relative;
  overflow: hidden;
}
.footer div div a {
  color: white;
  text-decoration: none;
}

.footer p {
  margin: 0;
}

.footerLeft {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 50px;
}

.footerLeft img {
  width: 150px;
}

.footerLeft p {
  font-size: 0.7em;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

.footerCenter {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  padding-bottom: 20px;
}

.footerCenter > p,
.footerRight > p {
  font-size: 1em;
  color: white;
  margin-bottom: 15px;
}

.footerCenter div,
.footerRight div {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.footerRight div {
  margin-top: 10px;
  margin-bottom: 10px;
}

.footerCenter div img,
.footerRight div img {
  width: 20px;
}

.socialMedia img {
  width: 30px !important;
  cursor: pointer;
  aspect-ratio: 1/1;
  margin-top: 20px;
}

.footerCenter div p,
.footerRight div p {
  font-size: 0.7em;
  color: white;
}

.footerShape {
  position: absolute;
  width: 150px;
  height: 150px;
  background-color: white;
  border-radius: 20px;
  top: -70px;
  right: -40px;
  rotate: 55deg;
}

/* Responsive */
@media (max-width: 1200px) {
  .mdl {
    width: 65%;
  }
  .card-button {
    width: 61%;
  }
}
@media (min-width: 800px) and (max-width: 2000px) {
  .phone-frame {
    scale: 140%;
  }
}
@media (min-width: 740px) and (max-width: 980px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 780px) {
  nav {
    height: 15vw;
  }
  nav .buttons {
    scale: 0.8;
  }
  nav .buttons .navBtnVede {
    scale: 0.7;
  }
  nav .logo img:first-child {
    width: 100px;
  }
  nav .buttons a {
    font-size: 0.8em;
    padding: 10px;
  }
  nav .buttons a:last-child img {
    width: 25px;
  }
  .footer {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr 1fr;
    height: auto;
  }
  .footerLeft {
    gap: 20px;
  }
  .timeline {
    overflow-x: auto;
  }
  .business-solutions h2 {
    font-size: 5vw;
  }
}
@media (max-width: 560px) {
  .ourJourney > p {
    font-size: 4.5vw;
  }
  .timeline img {
    width: 300% !important;
    overflow-x: auto;
  }
  .scrollAnimation {
    display: flex;
  }
  .scrollAnimation .scroll {
    display: none;
  }
  .scrollAnimation .phone-frame {
    display: flex;
    width: 100%;
    position: absolute;
    height: 81%;
    z-index: -1;
    margin: 30px 0;
  }
  .scrollAnimation .phone-frame img {
    display: none;
  }
  .scrollAnimation .scrollText {
    font-size: 4vw;
    background-color: rgba(255, 255, 255, 0.6);
    height: 100%;
    width: 100%;
  }
  .scrollAnimation .scrollText p {
    margin: 50px 0;
  }
}
@media (max-width: 560px) {
  nav .logo img:first-child {
    display: none;
  }
  nav .logo img:last-child {
    display: block;
    width: 45px;
  }
  .mdl {
    width: 85%;
  }
  .videoContent div {
    scale: 1.5;
  }
  .videoContent button {
    scale: 0.4;
  }
}
@media (max-width: 500px) {
  .card {
    scale: 0.8;
  }
  nav .buttons a {
    font-size: 0.7em;
    padding: 5px;
  }
  nav .buttons a:last-child img {
    width: 25px;
  }
  .ourTeam > div:nth-child(1) {
    border: 2px solid #FCD92A;
  }
  .ourTeam > div:nth-child(2) {
    border: 2px solid #EF1506;
  }
  .ourTeam > div:nth-child(3) {
    border: 2px solid #05172D;
  }
  .ourTeam > div:nth-child(4) {
    border: 2px solid #D3603C;
  }
  .ourTeam > div:nth-child(5) {
    border: 2px solid #03A64A;
  }
  .ourTeam > div:nth-child(6) {
    border: 2px solid #6662F0;
  }
}
.card {
  display: none;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  width: 100%;
  flex-wrap: wrap;
  position: fixed;
  top: 41%;
  left: 41%;
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1000;
  scale: 0.8 !important;
}

.card.active {
  display: flex;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.close {
  top: 10px;
  right: 10px;
  position: fixed;
  cursor: pointer;
}

.left-panel {
  flex: 1;
  min-width: 300px;
  background-image: url("../src/img/Stylescape10.webp");
  background-size: cover;
  background-position: center;
}

.right-panel {
  flex: 1;
  min-width: 300px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  background-color: white;
}

.right-panel h2 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 24px;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

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

.form-group button {
  background-color: #000;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  transition: background-color 0.3s;
  margin: 0 auto;
}

.form-group button:hover {
  background-color: #444;
}/*# sourceMappingURL=home.css.map */