.landing{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 55% 40%;
    column-gap: 5%;
    background: #F5F5F6;
    align-items: end;
}

.landing article{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    row-gap: 20px;
    padding-left: 5vw;
    height: 100%;
}

.landing article img{
    width: 30%;
}

.landing figure img{
    object-fit: cover;
    width: 100%;

}

.social{
    display: flex;
    gap: 20px;
}

.social svg{
    color: #E03316;
    font-size: 50px;
    transition: all .2s ease-in;
}

.social a:hover svg{
    color: #BA2314;
    transform: scale(1.1);
}

@media only screen and (max-width: 1280px) {

    .landing{
        grid-template-columns: 50% 55%;
    }

}

@media only screen and (max-width: 1080px) {

    .landing{
        grid-template-columns: 55% 45%;
        gap: 0;
    }

}

@media only screen and (max-width: 768px) {

    .landing{
        grid-template-columns: 100%;
        grid-template-rows: auto 1fr;
        gap: 20px;
    }

    .landing article{
        padding: 0 15px;
        margin-top: 40px;
        align-items: center;
        text-align: center;
    }

    .social svg{
        font-size: 35px;
    }

}