@import url('');
body{
    
    font-family: "Sitka", sans-serif;
}
section{
    position: relative;
    height: 100vh;
    display: flex;
}
section .screen{
    position: relative;
    flex-grow: 1;
    transition: 1s;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
section .screen:hover{
    flex-grow: 5;
}
section .screen:nth-child(1){
    min-height:100%;
    height:auto;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: linear-gradient(to left, rgba(12, 12, 12, 0.5) 0%, transparent 89%),url('tlo_spg_main.png');
    background-position: left bottom;
}
section .screen:nth-child(1):hover ~ .screen:nth-child(3),
.screen:nth-child(3){
    flex-shrink: 5;
}
section .screen:nth-child(3){
    min-height:100%;
    height:auto;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: linear-gradient(to left, transparent 0%, rgba(12, 12, 12, 0.5) 89%),url('tlo_kpb_main.png');
    background-position: right bottom;
}

section .screen .card{
    max-width: 600px;
    text-align: center;
    transition: 0.5s;
}
section .screen .card .imgBox{
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
}
section .screen .card .imgBox img{
    max-width: 100%;
}

.contDescriptor{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 100px;
    background-color: rgba(240,240,240,0.7);
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
}
section .screen .card p:hover ~ .contDescriptor,
.contDescriptor:hover{
    opacity: 1;
    visibility: visible;
}

.contDescriptor .logoTitle{
    font-size: 39px;
}
section .screen:nth-child(3) .contDescriptor{
    background-color: rgba(240,240,240,0.7);
}

.intersection{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: rgba(12, 12, 12, 0.5);
    text-align: center;
}

.logoTitle{
    font-family: "Sitka", serif;
    font-size: 50px;
    margin-bottom: 20px;
}

.descr{
    background: rgba(12, 12, 12, 1);
    margin-top: 10px;
    padding: 10px 10px 10px 10px;
    box-shadow: -5px -5px 10px 10px rgba(12, 12, 12, 0.32), 5px 5px 10px 10px rgba(12, 12, 12, 0.32);
}