:root {
    --headerHeight: 100px;
    --footerHeight: 60px;
}

.bluegradient {
    background: #0046c8; /* Old browsers */
    background: -moz-linear-gradient(left, #0046c8 0%, #0078c8 35%, #0078c8 65%, #0046c8 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #0046c8 0%, #0078c8 35%, #0078c8 65%, #0046c8 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #0046c8 0%, #0078c8 35%, #0078c8 65%, #0046c8 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0046c8', endColorstr='#0046c8', GradientType=1); /* IE6-9 */
    color: #fff;
    border-color: #0078c8;
}

.blackgradient {
    background: #000000; /* Old browsers */
    background: -moz-linear-gradient(left,  #000000 0%, #323232 35%, #323232 65%, #000000 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  #000000 0%,#323232 35%,#323232 65%,#000000 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  #000000 0%,#323232 35%,#323232 65%,#000000 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000',GradientType=1 ); /* IE6-9 */
    color: #fff;
    border-color: #323232;
}

.graygradient {
    background: #ebebeb; /* Old browsers */
    background: -moz-linear-gradient(left, #ebebeb 0%, #ffffff 30%, #ffffff 70%, #ebebeb 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #ebebeb 0%,#ffffff 30%,#ffffff 70%,#ebebeb 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #ebebeb 0%,#ffffff 30%,#ffffff 70%,#ebebeb 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ebebeb', endColorstr='#ebebeb',GradientType=1 ); /* IE6-9 */
    border-color: #ffffff;
}

html {
    height: 100%;
}

body {
    height: inherit;
    font-family: 'Calibri', sans-serif;
    font-size: 18px;
    margin: 0;
}

header {
    z-index: 1;
    height: var(--headerHeight);
    position: fixed;
    box-sizing: border-box;
    width: 100%;
}

header.graygradient {
    border-color: #000000;
    border-bottom: 3px solid;
}

.logo-box {
    width: 20%;
}

.logo-image {
    width: 100%;
    height: 100%;
    background-image: url("/images/Tip-Kings-Logo.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

main {
    height: inherit;
    position: relative;
    box-sizing: border-box;
    padding-top: var(--headerHeight);
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: var(--footerHeight);
    padding: 1rem 0;
    box-sizing: border-box;
}

.header-content, .content-box, .footer-box {
    width: 1140px;
    margin: 0 auto;
    height: 100%;
    box-sizing: border-box;
}

.header-content, .content-box {
    padding: 1rem 0;
}

.header-content {
    display: flex;
}

.header-content > img {
    display: flex;
    max-height: 100%;
}

.header-box {
    padding-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.brand {
    background-image: url("/images/Tip-Kings-Logo-Wort-White.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 60%;
    color: transparent;
}

.flex-box {
    display: flex;
    align-items: center;
    padding-bottom: var(--footerHeight);
    height: inherit;
    box-sizing: border-box;
}

.content-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 2rem;
    color: #ffffff;
    text-align: right;
    padding-top: 4rem;
}

.header-box, .description-box, .button-box {
    padding-right: 5rem;
}

.image-box {
    grid-row-start: 1;
    grid-row-end: 5;
}

.image-box img {
    display: flex;
    width: 100%;
}

.description-box {
    line-height: 1.6rem;
}

h1 {
    font-size: 4rem;
    margin: 0;
}

h2 {
    font-size: 2rem;
    margin: 0;
    text-transform: uppercase;
}

.button-box {
    display: flex;
}

.agent {
    width: 33%;
    display: flex;
    align-items: flex-start;
}

.agent > div {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
}

.agent > div span {
    font-size: 0.8rem;
    width: 100%;
}

.agent > div span.img {
    padding: 0 1rem;
}

.agent img {
    width: 100%;
    object-fit: contain;
}

.action {
    width: 67%;
}

.footer-box {
    text-align: center;
}

.footer-box a {
    color: #ffffff;
    text-decoration: none;
}

.footer-box a:hover {
    color: #ebebeb;
}

input[type="submit"], button {
    background: #ffffff;
    color: #323232;
    border: 1px solid #323232;
    padding: 0.75rem 1.5rem;
    font: inherit;
    cursor: pointer;
    outline: inherit;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    border-radius: 0.5rem;
}

input[type="submit"]:hover, button:hover {
    background: #323232;
    color: #fff;
}

#installApp {
    margin-top: 1rem;
}

.icon {
    height: 0;
    filter: invert(100%);
}

.icon::after {
    content: "";
    top: 0.2rem;
    margin: 0 0.2rem;
    position: relative;
    background-size: contain;
    background-repeat: no-repeat;
    width: 1.2rem;    /* Adjust these values */
    height: 1.2rem;   /* to fit your icon size */
    display: inline-block;
}

.icon.icon-share::after {
    background-image: url('/images/share-ios.png');
}

.icon.icon-add::after {
    background-image: url('/images/add-ios.png');
}