@font-face {
    font-family: "Klaravik Sans";
    src:
            url("../fonts/KlaravikSans/KlaravikSans-Regular.woff") format("woff");
    font-weight: 400;
}

@font-face {
    font-family: "Klaravik Sans";
    src:
            url("../fonts/KlaravikSans/KlaravikSans-SemiBold.woff") format("woff");
    font-weight: 500;
}

@font-face {
    font-family: "Klaravik Sans";
    src:
            url("../fonts/KlaravikSans/KlaravikSans-Bold.woff") format("woff");
    font-weight: 600;
}

@font-face {
    font-family: "Klaravik Sans";
    src:
            url("../fonts/KlaravikSans/KlaravikSans-ExtraBold.woff") format("woff");
    font-weight: 800;
}
.wrapper-desktop {
    display: flex;
    height: calc(100vh - 80px);
}
.wrapper-mobile {
    display: none;
}
.left-column {
    width: 50%;
    height: 100%;
    background-color: #003013;
    padding: 40px;
    display: flex;
    flex-direction: column;
}
.right-column {
    background-color: #fff;
    width: 50%;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.heading {
    text-align: center;
    max-width: 465px;
    align-self: center;
    margin: auto;
}
.klaravik-links {
    align-self: flex-end;
    color: #008540;
}
.klaravik-links a {
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    color: #008540;
    border-bottom: 1px solid #008540;
}
.klaravik-links a:hover {
    color: #00682f;
    border-color: #00682f;
}
video {
    align-self: center;
    margin: auto;
}
h1 {
    font-size: 55px;
    color: #008540;
    font-weight: 800;
    line-height: 65px;
    margin: 0;
}
h1 span {
    color: #fff;
}
h3 {
    font-size: 22px;
    font-weight: 400;
    line-height: 32px;
    color: #fff;
    margin: 20px 0 0;
}
h4 {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: #fff;
    max-width: 440px;
    margin: 0 auto;
    align-self: center;
    text-align: center;
}
h4 span {
    font-weight: 600;
}
img {
    height: 24px;
    align-self: start;
}
body {
    font-family: 'Klaravik Sans', Arial, sans-serif;
    margin: 0;
}
@media screen and (max-width: 768px) {
    body {
        max-height: 100%;
        overflow: hidden;
    }
    .wrapper-desktop {
        display: none;
    }
    .wrapper-mobile {
        display: flex;
        flex-direction: column;
        background-color: #003013;
        height: calc(100vh - 40px);
        padding: 0 15px 40px;
    }
    .klaravik-links {
        align-self: center;
        margin-top: 10px;
    }
    .heading {
        padding: 0;
        margin: 0 auto;
    }
    .mobile-footer {
        margin-top: auto;
        margin-bottom: 80px;
    }
    h1 {
        font-size: 40px;
        line-height: 45px;
    }
    h3 {
        font-size: 18px;
        line-height: 26px;
        margin: 10px 0 0;
    }
    h4 {
        margin: 0 auto 35px;
        display: block;
        font-size: 15px;
    }
    h4 span {
        display: block;
        margin-bottom: 5px;
    }
    .video-wrapper {
        height: 120px;
        width: 120px;
        background-color: #fff;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        margin: auto;
    }
    video {
        margin: auto;
        border-radius: 50%;
    }
    img {
        height: 17px;
        margin: auto;
        display: block;
    }
}
@media (max-width: 768px) and (min-height: 600px) and (max-height: 800px) {
    .video-wrapper {
        margin: 80px auto 20px auto;
    }
}