/* Effra Font
font-family: effra, sans-serif;
*/
@import url("https://use.typekit.net/wud1enb.css");

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: #215732;
    margin: 0;
}

.container {
    width: 100vw;
    height: 100vh;
    min-width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: 0;
    padding: 0;
    margin: 0;
}

.container>div {
    position: relative;
    width: 50%;
    box-sizing: border-box;
    margin: 0;
}

.left {
    background-image: url(https://portal.horseware.com/images/background_left.jpg);
    background-size: cover;
    background-position: center;
}

.left .logo {
    position: absolute;
    top: 5%;
    left: 10%;
    width: 25%;
    min-width: 150px;
    height: auto;
}

.left .title {
    position: absolute;
    bottom: 5%;
    left: 10%;
}

.left .title h1 {
    font-size: 4.5rem;
    line-height: 3rem;
    margin: 0;
    color: #054922;
    font-family: effra, sans-serif;
    letter-spacing: 2px;
}

.left .title .red-line {
    display: inline-block;
    margin-top: 15px;
    margin-left: 3px;
    width: 100px;
    height: 5px;
    background-color: rgb(186, 12, 47);
}

.right {
    background-image: url(https://portal.horseware.com/images/background_right.jpg);
    background-size: cover;
    background-position: center;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    overflow-y: scroll;
    min-width: 400px;
}

.right article {
    width: 90%;
    max-width: 500px;
}
.right article:not(:last-child) {
    margin-bottom: 40px;
}

.right article a.button {
    display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    border-radius: 50vh;
    height: 80px;
    padding: 0 10px;
    text-decoration: none;
    background: rgb(164,163,163);
    background: -moz-linear-gradient(0deg, rgba(164,163,163,1) 0%, rgba(214,212,212,1) 55%);
    background: -webkit-linear-gradient(0deg, rgba(164,163,163,1) 0%, rgba(214,212,212,1) 55%);
    background: linear-gradient(0deg, rgba(164,163,163,1) 0%, rgba(214,212,212,1) 55%);
    box-sizing: border-box;
    line-height: 80px;
    text-align: left;
}

.right article a.button:hover {
    background: rgb(214,212,212);
}

.right article a.button img {
    width: 60px;
    height: 60px;
}

.right article a.button .separator {
    display: block;
    width: 5px;
    height: 55px;
    margin: 0 15px;
    background: rgb(149,147,147);
    background: -moz-linear-gradient(0deg, rgba(149,147,147,1) 0%, rgba(196,194,194,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(149,147,147,1) 0%, rgba(196,194,194,1) 100%);
    background: linear-gradient(0deg, rgba(149,147,147,1) 0%, rgba(196,194,194,1) 100%);
}

.right article a.button span {
    font-family: effra, sans-serif;
    font-size: 25px;
    line-height: 25px;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: .7px;
    margin-top: 9px;
}

.right article p {
    color: #fff;
    font-family: effra, sans-serif;
    font-weight: 300;
    font-size: 16px;
    width: 100%;
    padding: 0 25px;
    box-sizing: border-box;
}

@media (max-width: 900px) {
    .right {
        padding: 1rem;
    }
    .right article:not(:last-child) {
        margin-bottom: 30px;
    }
    .right article a.button {
        height: 70px;
        line-height: 80px;
    }
    .right article a.button img {
        width: 50px;
        height: 50px;
    }
    .right article a.button .separator {
        width: 3px;
        height: 45px;
        margin: 0 15px;
    }
    .right article a.button span {
        font-size: 20px;
        line-height: 22px;
        margin-top: 6px;
    }
    .right article p {
        padding: 0 15px;
    }
    .left .title h1 {
        font-size: 3.5rem;
    }
}
@media (max-width: 768px) {
    .container {
        height: auto;
        flex-direction: column;
        align-items: stretch;
    }
    .container>div {
        width: 100%;
    }
    .left {
        background-image: url(https://portal.horseware.com/images/background_top.jpg);
        height: 40vh;
    }
    .left .logo {
        left: 50%;
        transform: translateX(-50%);
    }
    .left .title {
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
    }
    .left .title h1 {
        font-size: 2.2rem;
        font-weight: 500;
        letter-spacing: .8px;
        line-height: 1rem;
        text-shadow: 0px -1px 4px #eee9d4;
    }
    .left .title .red-line {
        margin-top: 8px;
        margin-bottom: 4px;
        margin-left: 0;
        width: 80px;
        height: 3px;
    }
    .right {
        padding: 2rem 1rem;
        align-items: center;
        overflow-x: hidden;
        overflow-y: visible;
        justify-content: flex-start;
        min-width: 100%;
    }
    .right article a.button {
        height: 60px;
        line-height: 60px;
        padding: 0 5px;
    }
}