@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');
html, body {
    padding: 0; margin: 0;
}
html {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    color: white;
}
.container {
    min-height: 100vh;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 17% 0rem 17%;
    background: rgb(59,74,100);
    background: linear-gradient(180deg, rgba(59,74,100,1) 0%, rgba(59,74,100,1) 46%, rgba(50,115,99,1) 90%);
}
.logo {
    width: fit-content;
    margin-bottom: -3rem;
    align-self: flex-end;
}
h1 { 
    position: relative;
    margin-bottom: 2rem;
    margin-top: 1rem;
    align-self: flex-start;
    font-size: 1.8rem;
    letter-spacing: 8px;
    color: rgb(36, 177, 97);
}
h1::after {
    content: "";
    position: absolute;
    bottom: -12px; left: 2px;
    width: 2rem;
    height: 5px;
    background: rgb(36, 177, 97);
}
h1.small {
    font-size: 1.35rem;
}
.content {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 0rem;
}
.content .image {
    width: 40%;
    overflow: hidden;
    border-radius: 20px;
    align-self: center;
}
.content .image img { 
    width: 100%;
    height: auto;
    transform: scale(1.15);
    transition: transform 250ms ease-in-out; 
}
.content .image img:hover {
    transform: scale(1);
}
.content .image-superpose {
    position: relative;
    width: 40%;
}
.content .image-superpose .image {
    position: relative;
    width: 65%;
}
.content .image-superpose .image:last-child{
    transform: translate(70%, -75%);
}
.content p {
    width: 60%;
    padding: 0; margin: 0;
    padding-left: 2rem;
    line-height: 1.4rem;
}
.content p a {
    position: relative;
    color: rgb(36, 177, 97);
    text-decoration: none;
}
.content p a::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    left:0; bottom: -5px;
    transform: scale(0);
    transition: transform 250ms ease-in-out;
    background: rgb(36, 177, 97);
}
.content p a:hover::after {
    transform: scale(1);
}
.content p.MCS {
    position: absolute;
    top: 0%;
    left: 49%;
    font-size: 1.1rem;
    font-weight: bold;
}
.content p i .next {
    position: relative;
    top: 3px;
    width: 1rem;
    animation: next-animation 850ms infinite;
}
@keyframes next-animation {
    0% {
        left: 0;
    }
    80% {
        left: -12px;
    }
    100% {
        left: 0;
    }
}
.break {
    width: 35%;
    height: 2px;
    background: rgb(36, 177, 97);
    margin-top: 2.5rem;
    margin-bottom: 2rem;
}

/* RESPONSIVE */
@media screen and (max-width: 1500px){
    html {
        font-size: 18px;
    }
}
@media screen and (max-width: 1250px){
    html {
        font-size: 16px;
    }
    .container {
        padding-left: 12%;
        padding-right: 12%;
    }
}
@media screen and (max-width: 1000px){
    .logo {
        margin-bottom: 1rem;
        align-self: center;
    }
}
@media screen and (max-width: 900px){
    html {
        font-size: 14px;
    }
    .container {
        padding-left: 8%;
        padding-right: 8%;
    }
}
@media screen and (max-width: 700px){
    h1 {
        margin-right: auto;
        margin-left: auto;
    }
    .content {
        flex-direction: column;
        align-items: center;
    }
    .content .image {
        margin-bottom: 2rem;
        margin-top: 2rem;
    }
    .content p {
        text-align: center;
    }
    .content .image-superpose {
        align-self: flex-start;
        width: 55%;
    }
}