@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: 'MontserratExtraBold';
    src: url('./fonts/Montserrat-ExtraBold.eot');
    src: url('/fonts/.Montserrat-ExtraBold.eot?#iefix') format('embedded-opentype'),
        url('./fonts/Montserrat-ExtraBold.woff2') format('woff2'),
        url('./fonts/Montserrat-ExtraBold.woff') format('woff'),
        url('./fonts/Montserrat-ExtraBold.ttf') format('truetype'),
        url('./fonts/Montserrat-ExtraBold.svg#Montserrat-ExtraBold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    max-width: 1320px;
    width: 1320px;
    max-height: 950px;
}
.container{
    display: block;
    max-width: 1320px;
    max-height: 950px;
    overflow: hidden;
}

.body{
    width: 1320px;
    height: 950px;
    position: relative;
}

.content-2{
    position: relative;
    height: 100%;
    background: url('../assets/bg.png');
    background-size: cover;
    background-position: center;
}

.title-container{
    position: absolute;
    width: 560px;
    min-height: 144px;
    background-color: #00AFE8;
    bottom: 657px;
    border-top-right-radius: 35px;
    display: flex;
    align-items: center;
    padding-left: 55px;
    padding-right: 30px;
}

h2#title{
    color: #FFFFFF;
    font-family: "MontserratExtraBold";
    font-weight: 800;
    font-style: normal;
    line-height: 1.2em;
    font-size: 42px;
    overflow: hidden;
}

.description-container{
    position: absolute;
    top: 378px;
    left: 54px;
    max-width: 490px;
}

p#description{
    color: #000000;
    font-family: "MontserratMedium";
    font-weight: 500;
    font-style: normal;
    line-height: 1.2em;
    font-size: 36px;
    overflow: hidden;
    max-height: 390px;
}

#img{
    /* width: auto; */
    /* height: 100%; */
}
.invisible {
    display: none;
}
.visible {
    display: block;
}
.kenburns-parent {
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
    height: 820px;
    width: 688px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -2;
  }
  
.kenburns-parent img {
    min-width: 688px;
    height: auto;
    /* 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 */
    }
}

