@import url('//fonts.googleapis.com/css?family=Open+Sans&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
}


/****preloader*

.hidden_preloader {
    overflow: hidden;
}

.centrado {
    height: 100vh;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lds-ripple {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-ripple div {
    position: absolute;
    border: 4px solid #153617e3;
    opacity: 1;
    border-radius: 50%;
    animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.lds-ripple div:nth-child(2) {
    animation-delay: -0.5s;
}

****/

.loader_bg {
    position: fixed;
    z-index: 9999999;
    background: #fff;
    width: 100%;
    height: 100vh;
}

.loader {
    border: 0 solid transparent;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    position: absolute;
    top: calc(50vh - 75px);
    left: calc(50vw - 75px);
}

.loader:before,
.loader:after {
    content: '';
    border: 7px solid #1D4920;
    border-radius: 50%;
    width: inherit;
    height: inherit;
    position: absolute;
    top: 0;
    left: 0;
    animation: loader 2s linear infinite;
    opacity: 0;
}

.loader:before {
    animation-delay: .5s;
}

@keyframes loader {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes lds-ripple {
    0% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        top: 0px;
        left: 0px;
        width: 72px;
        height: 72px;
        opacity: 0;
    }
}


/****************/

.banner {
    position: relative;
    background: url('https://olt.geovisorumsa.com/img/LAGOT2.jpg');
    background-position: center;
    background-size: cover;
    width: 100%;
    margin: auto;
    height: 660px;
    color: #fff;
}

.banner .bg-details {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
}

.banner .bg-details .details {
    font-size: 50px;
    font-weight: normal;
    margin-bottom: 20px;
}

.banner .bg-details .details h1 {
    font-size: 65px;
}

.banner .bg-details .details h2 {
    font-size: 50px;
}

.banner .bg-details .details a {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    border: 2px solid #fff;
    padding: 10px 25px;
    border-radius: 15px;
    transition: .3s;
}

.banner .bg-details .details a:hover {
    background: rgba(174, 213, 129, 0.8);
}


/*Contenido*/

.container {
    padding: 30px 0;
    width: 95%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}

.titulo {
    color: #1D4920;
    font-size: 35px;
    text-align: center;
    margin-bottom: 60px;
    margin-top: 60px;
    font-weight: bold;
}


/*Inicio*/

.container-uno {
    display: flex;
    justify-content: space-evenly;
    width: 90%;
    margin: auto;
    background: #C5E1A5;
    border-radius: 5px;
    margin-top: 15px;
}

.container-dos {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    margin: auto;
    margin-top: 15px;
}

.container-uno-center {
    justify-content: space-evenly;
    align-items: center;
    margin: auto;
    width: 98%;
}


/*****/

.img-center {
    text-align: center;
    margin: auto;
    width: 60%;
}

.img-center img {
    width: 100%;
}

.img-center p {
    text-align: center;
    font-style: italic;
    font-size: 13px;
}


/******/

.img-lado {
    text-align: center;
    margin: auto;
    width: 50%;
    padding-left: 5px;
}

.img-lado img {
    margin-top: 15px;
    margin-bottom: 15px;
    width: 100%;
    border-radius: 10px;
}

.img-lado p {
    text-align: center;
    font-style: italic;
    font-size: 13px;
    margin-bottom: 15px;
}


/****/

.uno .container-text {
    width: 48%;
    padding-top: 20px;
}

.container-text h3 {
    width: 48%;
}

.container-text h2 {
    padding: 0px 0px 0px 15px;
    text-align: justify;
    background: #1E5E20;
    color: #fff;
}

.container-text p {
    padding: 30px;
    font-weight: 300;
    text-align: justify;
}

.container-text-center h2 {
    padding: 0px 0px 0px 15px;
    text-align: justify;
    background: #1E5E20;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 15px;
}

.container-text-center p {
    padding: 0px 0px 30px 15px;
    font-weight: 300;
    text-align: justify;
}


/*Sitios WEB*/

.dos {
    background: #e2e2e2;
    padding-bottom: 30px;
}


/*Galeria*/

.galeria {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.sitios {
    width: 40%;
}

.img-galeria {
    width: 100%;
    margin-bottom: 50px;
    height: 290px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}

.img-galeria img {
    width: 120%;
    height: 100%;
    align-items: center;
}

.hover-galeria p {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    transform: scale(0);
    background: rgba(0, 0, 0, 0.8);
    transition: transform .5s;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 51px;
    text-align: justify;
}


/*
.hover-galeria .icon-eye{
	font-size: 40px;
	color: #fff;
	}*/

.hover-galeria p {
    color: #fff;
    font-size: 15px;
}

.hover-galeria a {
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-size: 17px;
    margin-top: 15px;
    padding: 3px 7px 3px 7px;
    border-radius: 15px;
    border: 1px solid #fff;
}

.hover-galeria a:hover {
    transition: 0.2s;
    font-size: 19px;
    border: 2px solid #fff;
}

.img-galeria:hover .hover-galeria p {
    transform: scale(1);
}

.detail-sitio {
    width: 100%;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    font-family: calibri;
    margin-bottom: 15px;
}

.type-sitio a {
    text-decoration: none;
    color: #1E5E20;
    font-weight: bold;
    text-align: center;
    align-items: center;
    font-size: 25px;
}


/*Campañas Periódicas*/

.box {
    width: 300px;
    box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin: 25px;
}

.slide-img {
    height: 300px;
    position: relative;
}

.slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-sizing: border-box;
}

.detail-box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    box-sizing: border-box;
    font-family: calibri;
    background: #1E5E20;
}

.type {
    display: flex;
    flex-direction: column;
}

.type a {
    text-decoration: none;
    color: #fff;
    margin: 5px 0px;
    font-weight: bold;
    letter-spacing: 0.5px;
    padding-right: 8px;
}

.type span {
    color: rgba(255, 255, 255, 0.6);
}

.overlay {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay a {
    text-decoration: none;
}

.btn-cam {
    width: 160px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    color: #252525;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: calibri;
    border-radius: 20px;
    box-shadow: 2px 2px 30px rgba(255, 255, 255, 0.2);
}

.btn-cam:hover {
    color: #ffffff;
    background: rgba(174, 213, 129, 0.8);
    transition: all ease 0.3s;
}

.overlay {
    visibility: hidden;
}

.slide-img:hover .overlay {
    visibility: visible;
    animation: fade 0.5s;
}

@keyframes fade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.slider {
    width: 100%;
    display: flex;
}


/*Socios Investigadores*/

.cuatro {
    background: #fff;
}

.titulo_card {
    margin-top: 25px;
    font-weight: bold;
}

.cards {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.cards .card {
    background: #2E7D32;
    display: flex;
    width: 49%;
    height: 200px;
    align-items: center;
    justify-content: space-evenly;
    border-radius: 5px;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.6);
}

.cards .card img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border: 3px solid #fff;
    border-radius: 50%;
    display: block;
}

.cards .card .contenido-texto-card {
    width: 60%;
    color: #fff;
}

.cards .card .contenido-texto-card p {
    font-weight: 300;
    padding-top: 5px;
}

.cards-socios .socios {
    margin-top: 20px;
    margin-right: 20px;
    margin-left: 20px;
    text-align: left;
    background: #C5E1A5;
    padding: 10px;
    border-radius: 5px;
}


/*Videos*/

.cuatro {
    background: #e2e2e2;
    padding-bottom: 30px;
}


/*Galeria*/

.videos {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.video_container {
    width: 35%;
}

.img-video {
    width: 100%;
    margin-bottom: 50px;
    height: auto;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.5);
}


/*************Logos******************/

.contenedor_logos_f {
    display: flex;
    height: 60%;
    width: 80%;
    justify-content: space-evenly;
    margin: auto;
    margin-bottom: 40px;
    margin-top: 60px;
}

.contenedor_logos_f img {
    width: auto;
    height: 120px;
    margin: auto;
}


/****************/

.contenedor_logos_c {
    display: flex;
    height: 50%;
    width: 90%;
    justify-content: space-evenly;
    margin: auto;
    margin-bottom: 40px;
}

.contenedor_logos_c img {
    width: auto;
    height: 100px;
}


/*Responsive*/

@media screen and (max-width: 900px) {
    .banner .bg-details .details h1 {
        font-size: 50px;
    }
    .banner .bg-details .details h2 {
        font-size: 40px;
    }
    /***titulo***/
    .titulo {
        font-size: 25px;
    }
    /*Sitios*/
    .sitios {
        width: 40%;
    }
    /***Socios/ Investigadores***/
    .cards {
        display: flex;
        justify-content: space-between;
        margin-top: 5px;
    }
    .cards .card .contenido-texto-card p {
        font-weight: 300;
        padding-top: 5px;
        font-size: 13px;
    }
    /***Videos**/
    .video_container {
        width: 48%;
        text-align: center;
        margin: auto;
    }
    /***contenido texto***/
    .container-text-center p {
        font-size: 14px;
    }
    .container-uno .container-text {
        font-size: 14px;
    }
    .img-lado p {
        font-size: 12px;
    }
    /*.container-dos .img-lado img{
			width: 80%;
			}*/
    .container-dos {
        display: block;
        width: 100%;
    }
    .container-dos .container-text {
        width: 100%;
        font-size: 14px;
    }
    /********logos********/
    .contenedor_logos_f {
        height: 50%;
        width: 80%;
        margin-bottom: 20px;
        margin-top: 20px;
    }
    .contenedor_logos_f img {
        width: auto;
        height: 80px;
    }
    .contenedor_logos_c {
        display: flex;
        height: 50%;
        width: auto;
        margin: auto;
        margin-bottom: 20px;
    }
    .contenedor_logos_c img {
        width: auto;
        height: 60px;
    }
}

@media screen and (max-width: 750px) {
    .banner .bg-details .details h1 {
        font-size: 45px;
    }
    .banner .bg-details .details h2 {
        font-size: 35px;
    }
    .banner .bg-details .details a {
        font-size: 25px;
        padding: 8px 15px;
    }
    /*Galeria*/
    .sitios {
        width: 70%;
    }
    /*Sitios WEB*/
    .container-web {
        justify-content: center;
        flex-direction: column;
    }
    .container-pag {
        width: 100%;
        text-align: center;
    }
    .container-pag:nth-child(1),
    .container-pag:nth-child(2),
    .container-pag:nth-child(3),
    .container-pag:nth-child(4) {
        margin-bottom: 60px;
    }
    .container-pag img {
        width: 80%;
    }
    /***************/
    .container-text-center {
        font-size: 13px;
        padding-right: 15px;
    }
    /*contenido Inicio*/
    .container-uno {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .container-uno .container-text {
        width: 100%;
    }
    .container-text {
        font-size: 13px;
    }
    .img-lado {
        width: 80%;
    }
    .img-lado p {
        font-size: 11px;
    }
    /*****/
    .img-center {
        width: 80%;
    }
    .img-center p {
        font-size: 11px;
    }
    .container .titulo_card {
        font-size: 12px;
    }
    /*Socios/Investigadores*/
    .cards .card {
        width: 49%;
    }
    .cards .card img {
        width: 100px;
        height: 100px;
    }
    .cards .card .contenido-texto-card p {
        font-weight: 200;
        padding-top: 5px;
        font-size: 15px;
    }
    .cards .card .contenido-texto-card h4 {
        font-size: 12px;
    }
    .cards .card:first-child {
        margin-bottom: 8px;
    }
}

@media screen and (max-width: 550px) {
    .banner .bg-details .details h1 {
        font-size: 30px;
    }
    .banner .bg-details .details h2 {
        font-size: 25px;
    }
    .banner .bg-details .details a {
        font-size: 20px;
        padding: 8px 15px;
    }
    /***titulo***/
    .titulo {
        font-size: 18px;
        text-align: left;
    }
    /***contenido inicio**/
    .uno .container-text {
        width: 92%;
    }
    .img-uno {
        width: 90%;
        margin-bottom: 30px;
    }
    .container-dos .container-text {
        width: 100%;
        padding-top: 5px;
    }
    /****/
    /*Galeria*/
    .img-galeria {
        width: 250px;
        height: 230px;
    }
    .hover-galeria p {
        font-size: 13px;
    }
    /*Socios/Investigadores*/
    .cards {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .cards .card {
        width: 90%;
    }
    .cards .card img {
        width: 100px;
        height: 100px;
    }
    .cards .card .contenido-texto-card p {
        font-weight: 200;
        padding-top: 5px;
    }
    .cards .card:first-child {
        margin-bottom: 10px;
    }
    /*Video*/
    .videos {
        display: block;
    }
    .video_container {
        width: 90%;
        text-align: center;
        margin: auto;
    }
    /**************logos**************/
    .contenedor_logos_f {
        display: flex;
        height: 50%;
        width: 100%;
    }
    .contenedor_logos_f img {
        height: 45px;
    }
    .contenedor_logos_c {
        display: flex;
        height: 100%;
        width: 100%;
    }
    .contenedor_logos_c img {
        width: auto;
        height: 30px;
    }
}

@media screen and (max-width: 300px) {
    /*contenido Inicio*/
    .main .container-uno {
        padding: 30px 0 60px 0;
    }
    .uno .container-text {
        width: 96%;
    }
    /*S/I*/
    .cards .card {
        height: 350px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .cards .card img {
        width: 90px;
        height: 90px;
    }
    /*Galeria*/
    .img-galeria {
        width: 95%;
        height: 200px;
    }
}