/* Fullscreen Front Page */
html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
html body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    background: url('../images/image-front-bg.png') no-repeat center center;
    background-size: cover;
    z-index: -1;
}
.split-screen {
    display: flex;
    flex-wrap: wrap
    width: 100%;
    height: 100%;
    margin-left: 0;
}
.split-screen a {
  text-decoration: none;
  display: block;
}
.split-screen span {
  font-family: Montserrat, Roboto, Sans-serif, serif;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}
.split {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    transition: all 0.3s ease
}
/* Content styling */
.split.left .content {
  text-align: right;
  left: 0;
  text-align: right;
  border-radius: 0 10px 10px 0;
}
.split.right .content {
    text-align: left;
    right: 0;
    text-align: left;
    border-radius: 10px 0 0 10px;
}
.split .content {
      
}
@media screen and (max-width:768px) {
  .split {
    width: 100%;
    height: auto;
  }
}
.split .content {
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    transform: translateY(-50%);
    padding: 20px;
    width: 90%;
    height: 200px;
    color: white;
}


.flag {
    width: 120px;
    height: auto;
    margin: 5px;
}

@media (max-width: 768px) {

    .split.left .content,
    .split.right .content {
        width: 90%; /* Ajusta el ancho en pantallas pequeñas */
        padding: 15px; /* Reducir padding para adaptarse mejor */
    }
}
/* Franja blanca divisoria */
html.fullscreen body .split-screen .divider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px; /* Puedes ajustar el grosor */
    height: 50%; /* Solo llega hasta la mitad superior */
    background-color: white;
    z-index: 1; /* Aseguramos que esté sobre las secciones */
}



/* Footer styling */
html.fullscreen body .footer {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    /*background-image: url('../images/app-home.png');*/
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    max-width: 856px;
    width: 100%;
    height: auto;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    box-sizing: border-box;
}

.footer .footer-links {
    position: absolute;
    bottom: 6px;
    right: 32px;
    display: flex;
    gap: 15px;
}

.footer .footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}
.footer .footer-links a img {
  width: 150px;
  height: auto;
}
/* End of Fullscreen Front Page */