*{
    box-sizing: border-box;
}


body{

    min-height: 100vh;
    scroll-behavior: smooth;

}

h2 {

    font-weight: 800;

}

.close-popup h2 {

    font-weight: 800;
	font-family:Roboto;
	font-size:30px;
}

.hidden{

    display: none;

}

.screen-overlay{

  
    position: absolute;
    top: 0;
    left: 0;
    background-color: black;
    opacity: 0.6;
    z-index: 3;
    width: 100%;
    min-height: 100%;
    height: 200%;
    

}

.body-container{

    
    margin: 0 auto;
    min-height: 100%;
    overflow: hidden;
    
}


.logos-flex-container{

    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 10px 0;

}

.event-speakers__item img{
	width:200px;
}

.logo-container{


    width: 30%;
    background-color:white;
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    

}

.logo-container img {

    width: 100%;
    margin: 0 auto;
    min-width: 150px;

}

.logo-container:hover .project-caption{

    transform: translateY(0);
    opacity: 1;

}

.flex{
	align-items:center;
}

/*.project-caption{

    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all ease 1s;
    background-color: rgba(231, 20, 20, 0.836);
    color: aliceblue;
    padding:5px 15px;
    transform: translateY(100%);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}*/

.popup-container{

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: baseline;
    justify-content: center;
    opacity: 1;
    z-index: 3;
    transition: all ease 0.5s;

}

.popup-box {

    position: sticky;
    top: 200px;
    background-color: rgb(255, 255, 255);
    min-width: 550px;
    width: 50%;
    max-width: 600px;
    padding: 20px;
    font-size: 19px;
    box-shadow: 0px 0px 25px 0px black;
    z-index: 99;
    transform: translateY(-100%);
    transition: all ease 0.5s;
    text-align: center;

}

.close-popup{

    position: absolute;
    top: 10px;
    right: 5%;
    font-size: 1.5rem;
    cursor: pointer;
    margin: 0px 5px;
    
    z-index: 9999!important;

}

.detail-title{

    text-align: center;

}

.popup-box p {

    text-align: left;
    margin: 10px 0;

}

.detail-img {

    width: 40%;
    margin: 10px auto;

}

.detail-button {

    color: red;
    background-color: white;
    border-style: none;
    border-radius: 5px;
    border: 2px solid red;
    transition: color ease 0.5s;
    transition: background-color ease 0.5s;
    /* transition: transform scale ease 0.5s;
    transition: translateY linear 0.2s; */
    padding: 5px 0px 0px;
    margin: 20px auto;
    margin-bottom: 0px;
    font-size: 20px;
    text-decoration: none!important;
    display: block;
    max-width: 20%;

}

.detail-button:hover{

    color: white;
    background-color: red;
    transform: scale(1.2);

}

.detail-button:active {

    transform: translateY(2px);

}

.event-speakers{
	padding: 0 20px;
}

.event-speakers__list > li  {
	padding:0;
}
.box{
	margin-bottom:50px;
}

.animated-links{
	text-decoration:underline;
}

@media only screen and (max-width:649px) {

    .logo-container {
        width: 40%;
    }

    .logo-container img {

        min-width: 200px;

    }

    .popup-box{

        width: 90%;
        min-width: none;

    }
    
}

@media only screen and (max-width:480px){
    
    .logo-container {
        width: 80%;
    }

    .logo-container img {

        min-width: 300px;

    }

    
    .popup-box{

        width: 90%;
        min-width: 320px;

    }

}
