@import "../css/font.css";

html {
    font-size: 62.5%;
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}
body {
    background-image: url('../img/fondo.png');
    background-position: center center;
    background-size: cover;
    background-color: #002e2c;
    font-family: 'Kanit', sans-serif;
    font-size: 1.6rem;
    line-height: 1.8;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}
p {
    color: #000000;
    font-size: 2rem;
}
.contenedor {
    width: 95%;
    max-width: 105rem;
    margin: 0 auto;
}

a {
    text-decoration: none;
}

img,
picture {
    width: 100%;
    display: block;
}

h1, h2, h3 {
    font-family: 'Kanit', sans-serif;
    font-weight: 500;
    font-style: normal;
    margin: 5rem;
    color: white;
}

h1 {
    font-size: 3.8rem;
}
h2 {
    font-size: 3.4rem;
}
h3 {
    font-size: 3rem;
}
h4 {
    font-size: 2.6rem;
}
.separador{
    background-color: #033130;
    border-radius: 4rem;
    height: 68rem;
}
.lado-izquierdo{
    background: rgb(0,105,68);
    background: linear-gradient(95deg, rgba(0,105,68,1) 0%, rgba(113,200,20,1) 100%); 
    border-radius: 4rem;
    grid-column: 1;
    display: none; 
    h1{
        margin-top: 8rem;
        max-width: 25rem;
        font-size: 5rem;
        font-family: 'Chillax';
        font-weight: 600;
    }
}
@media (min-width: 768px) {
    .lado-izquierdo {
      display: block;
    }
    .separador{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}
.lado-derecho{
    grid-column: 2;
    h3{
        text-align: center;
        color: white;
        font-size: 2.5rem;
        margin: 0;
        font-family: 'Chillax';
        font-weight: 600;
    }
    .logo{
        margin-top: 7rem;
    }
    @media (min-width: 768px) {
        .logo {
            display: none;
        }
        h3{
            margin: 5rem;
        }
    }
}
.listas{
    margin-top: 2rem;
    margin-right: 4rem;
    @media (min-width: 768px) {
        margin-top: 6rem;
    }
    li{
        margin-bottom: 4rem;
        list-style:none;
        background-color: white;
        height: 7rem;
        border-radius: 4rem;
        padding-left: 4rem;
        font-size: 1.7rem;
        color: #002e2c;
        display: flex;
        align-items: center;
        font-family: 'Chillax';
        font-weight: 600;
        margin-top: 60px;
        margin-right: 20px;
        @media (min-width: 768px) {
            height: 9rem;
            font-size: 2rem;
        }
        a{
            text-decoration: none;
        }
        img{
            width: 3rem;
            margin-right: 30px
        }
        .arrow{
            margin-left: auto;
            width: 3rem;
            @media (min-width: 768px) {
                width: 5rem;
            }
        }
        &:hover {
            background-color: greenyellow;
            transform: scale(1.03);
        }
    }
    .info-wrapper {
        position: relative;
        width: 50px; 
        height: 50px;
        margin-left: 215px; 
        margin-top: -110px;
    }
    
    .tooltip {
        visibility: hidden;
        width: 300px; 
        background-color: white;
        color: black;
        text-align: center;
        font-family: 'Chillax';
        font-size: small;
        padding: 5px;
        border-radius: 6px;
        position: absolute;
        z-index: 1;
        bottom: 50%; 
        left: 50%;
        margin-left: 20px; 
        margin-bottom: 30px;
        opacity: 0;
        transition: opacity 0.3s;
    }
    
    .info-wrapper:hover .tooltip {
        visibility: visible;
        opacity: 1;
    }
}
.quienes-somos{
    margin-bottom: 45rem;
    list-style:none;
    background-color: white;
    height: 5rem;
    border-radius: 20rem;
    padding-top: 1rem;
    padding-left: 1.5rem;
    font-size: 1.7rem;
    color: #002e2c;
    display: flex;
    align-items: center;
    margin-left: auto;
    width: 7rem;
    font-family: 'Chillax';
    font-weight: 600;
    &:hover {
        background-color: greenyellow;
        transform: scale(1.03);
    }
}
/* postulante */ 
.separador1{
    height: 60rem;
}
.lado-izquierdo1{
    border-radius: 4rem;
    grid-column: 1;
    display: none; 
    h1{
        margin-top: 8rem;
        font-size: 5rem;
        max-width: 25rem;
        color: white;
        font-family: 'Chillax';
        font-weight: 600;
    }
    h2{
        max-width: 25rem;
        color: #000000;
        font-family: 'Chillax';
        font-weight: 600;
    }
    .arrow{
        width: 5rem;
        margin-left: 5rem
    }
}
@media (min-width: 768px) {
    .lado-izquierdo1 {
      display: block;
    }
    .separador1{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}
.lado-derecho1{
    grid-column: 2;
    border-radius: 4rem;
    background-color: #033130;
    padding-top: 1rem;
    position: relative;
    form{
        display: block;
        text-align: center;
    }
    h3{
        text-align: center;
        color: white;
        font-size: 2.5rem;
        display: none;
        font-family: 'Chillax';
        font-weight: 600;  
    }
    .form-group{
        position: relative;
        margin-bottom: 1rem;
        color: white !important;
        img{
            position: absolute;
            display: block;
            bottom: .5rem;
            right: 1rem;
            width: 3rem;
            height: 3rem;
            left: 83%;
            top: 43%;
            transform: translateY(-50%);
        }
    }
    .form-control{
        height: 8rem;
        width: 83%;
        margin-bottom: 2rem;
        color: white !important;
        border: 3px solid transparent;
        background: rgba(248, 248, 248, 0.397);
        border-radius: 4rem;
        padding-left: 4rem;
        font-size: 2rem;
        padding-right: 4rem;
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
    }
    .form-control:hover, .form-control:focus {
        background: transparent;
        outline: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        border-color: rgba(255, 255, 255, 0.4);
    }
    .btn.btn-primary {
        background: white;
        color: #000 !important;
        cursor: pointer;
        text-align: left;
        &:hover {
            background-color: greenyellow;
        }
    }
    a{
        color: white;
        text-decoration-line: underline;
        margin-right: 5rem;
        &:last-of-type{
            margin-right: 0;
        }
    }
    .etiquetas{
        text-align: center;
        padding-bottom: 3rem;
    }
    .logo{
        display: block;  
    }
    @media (min-width: 768px) {
        .logo {
            display: none;
        }
        h3{
            display: block;
        }
    }
}
#icon{
    position: absolute;
    display: block;
    bottom: .5rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    left: 84%;
    top: 43%;
    transform: translateY(-50%);

    user-select: none;
    cursor: pointer;
}
.logo{
    height: 4rem;
    width: 21rem;
    margin: 5rem;
}
.modal {
    display: none; 
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4); 
  }
  
  .modal-content {
    background-color: #fefefe;
    margin: 2% auto;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 40px;
    border: 1px solid #888;
    width: 60%; 
    border-radius: 10px;
    font-family: 'Chillax';
    font-weight: 600;
  }
  
  .close {
    color: #aaa;
    float: right;
    font-size: 40px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }
  .modal-paragraph {
    text-align: justify;
    font-size: 17px;
    font-weight: 550;
    font-family: Arial, sans-serif;
    color: #333333;
    font-family: 'Chillax';
    font-weight: 600;
  }
  .modal-tittle{
    text-align: center;
    font-size: 40px;
    font-family: 'Chillax';
    font-weight: 600;
  }

  

  @media (max-width: 768px) {
    .modal-content {
        width: 90%;
        padding: 20px;
    }

    .close {
        font-size: 30px;
    }

    .modal-paragraph {
        font-size: 15px;
    }

    .modal-tittle {
        font-size: 30px;
    }
}
 .container{
    padding-right:15px;
    padding-left:15px;
    margin-right:auto;
    margin-left:auto
    .col-sm-6-col-sm-offset-3{
        margin-left: 25%;
        width: 50%;
    }
 }