* {
    padding: 0;
    margin: 0;
    font: inherit;
    outline: none;
    border: 0;
    box-sizing: border-box;
    background: transparent;
    color: inherit;
    -webkit-appearance: none;
}

html {
    width: 100%;
    height: 100%;
}

body {
    display: white;
    width: 100%;
    height: 100%;
    font-family: "Lato";
    margin: 0;
    padding: 0
}

.slogan {
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1.5;
    text-transform: uppercase;
}

h1 {
    color: #95bf22;
    text-transform: uppercase;
    font-size: 2.5rem;
    font-weight: 900;
    margin: 40px 0;
}

p {
    margin-bottom: 10px;
    font-size: 1.2rem;
    line-height: 2;
}

strong {
    font-weight: 600;
}

.yellow {
    color: #95bf22;
}

.modal {
    text-align: center;
    width: 600px;
    padding: 50px;
    border-radius: 20px;
    background: #fff;
}

b {
    font-weight: 600;
}

.modal img {
    max-width: 400px;
    height: auto;
    margin-bottom: 50px;
}

.row {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: row;
    height: 100%;
}

.row .col.left {
    padding: 80px;
    width: 35%;
    min-width: 600px;
    display: flex;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: white;
    color: #000;
}

.row .col.left a {
    text-decoration: none;
}

.row .col.right {
    flex: 1;
    background-image: url('bg.jpg');
    background-size: cover;
    background-position: center center;
}

.row .col.left img {
    max-width: 400px;
    margin-bottom: 50px;
}

@media screen and (max-width: 800px) {
    .row {
        flex-direction: column;
    }

    .slogan {
        font-size: 1.2rem;
    }

    .row .col.left {
        padding: 20px;
        max-width: inherit;
        min-width: 100%;
        height: 100%;
    }
    .row .col.right {
        display: none;
    }

    .row .col.left img {
        max-width: 80%;
        margin-right: 0;
        margin-bottom: 30px;
    }
    h1 {
        font-size: 1.6rem;
        margin-bottom: 20px;
        color: #95bf22;;
        padding: 20px
    }
    p {
        font-size: 1rem;
        line-height: 1.5;
    }
}