/* banner */

.banner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
}

h1,
h2,
h3,
.banner img,
p {
    margin-bottom: 20px;
    font-weight: 400;
}

.banner .left {
    max-width: 620px;
}

h1 {
    font-size: 57px;
}

h2 {
    font-size: 48px;
}

h3 {
    font-size: 18px;
}

p {
    font-size: 18px;
    color: #d3d3d3;
}

.right {
    animation: showElement .5s ease-in-out forwards;

}

@keyframes showElement {
    start {
        display: block;
    }

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes hideElement {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        display: none;
    }
}

@media (max-width: 850px) {

    img.right {
        animation: hideElement .5s ease-in-out forwards;
    }
}