@font-face {
    font-family: 'MontserratMedium';
    src: url('./fonts/Montserrat-Medium.eot');
    src: url('./fonts/Montserrat-Medium.eot?#iefix') format('embedded-opentype'),
        url('./fonts/Montserrat-Medium.woff2') format('woff2'),
        url('./fonts/Montserrat-Medium.woff') format('woff'),
        url('./fonts/Montserrat-Medium.ttf') format('truetype'),
        url('./fonts/Montserrat-Medium.svg#Montserrat-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'MontserratBold';
    src: url('./fonts/Montserrat-Bold.eot');
    src: url('./fonts/Montserrat-Bold.eot?#iefix') format('embedded-opentype'),
        url('./fonts/Montserrat-Bold.woff2') format('woff2'),
        url('./fonts/Montserrat-Bold.woff') format('woff'),
        url('./fonts/Montserrat-Bold.ttf') format('truetype'),
        url('./fonts/Montserrat-Bold.svg#Montserrat-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.container{
    display: block;
    max-width: 1320px;
    max-height: 1080px;
    overflow: hidden;
}

.invisible {
    display: none;
}
.visible {
    display: block;
}

.body{
    width: 1320px;
    height: 950px;
    position: relative;
}

.content-2{
    position: relative;
    height: 100%;
    background: url('../assets/bg.png');
    background-size: cover;
    background-position: center;
}

.name{
    background-color: #FFFFFF;
    width: 505px;
    height: 90px;
    border-radius: 45px;
    position: absolute;
    top: 180px;
    left: 68px;
    z-index: 1;
    display: flex;
    align-items: center;
}

.noticia {
    width: 615px;
    position: absolute;
    top: 240px;
    left: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h2#title{
    color: #12284C;
    font-family: "MontserratBold";
    font-size: 68px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    max-height: 175px;
}

p#description{
    color: #12284C;
    font-family: "MontserratMedium";
    font-size: 42px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: 20px;
    max-height: 425px;
    overflow: hidden;
}

.kenburns-parent {
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
    height: 878px;
    width: 610px;
    margin: auto;
    z-index: -2;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
.kenburns-parent img {
    width: auto;
    height: 100%;
    /* Add infinite to loop. */
    -ms-animation: move 40s ease;
    -webkit-animation: move 40s ease;
    -o-animation: move 40s ease;
    -moz-animation: move 40s ease;
}
  
@-webkit-keyframes move {
    0% {
        -webkit-transform-origin: center;
        -moz-transform-origin: center;
        -ms-transform-origin: center;
        -o-transform-origin: center;
        transform-origin: center;
        transform: scale(1.0);
        -ms-transform: scale(1.0);
        /* IE 9 */
        
        -webkit-transform: scale(1.0);
        /* Safari and Chrome */
        
        -o-transform: scale(1.0);
        /* Opera */
        
        -moz-transform: scale(1.0);
        /* Firefox */
    }
    100% {
        transform: scale(1.3);
        -ms-transform: scale(1.3);
        /* IE 9 */
        
        -webkit-transform: scale(1.3);
        /* Safari and Chrome */
        
        -o-transform: scale(1.3);
        /* Opera */
        
        -moz-transform: scale(1.3);
        /* Firefox */
    }
}
