body {
    font-family: "Gotham", "Verdana", sans-serif;
    font-size: 18px;
    line-height: 1.5;
    color: #575756;
    margin: 0;
    background: #e9e9e9;
    font-weight: 300;
}
html {
    font-size: 18px;
}
* {
    box-sizing: border-box;
}

/* fonts */
h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    text-align: center;
}
h2 {
    text-align: center;
    font-size: 1.4rem;
    margin: 30px 0 0;
}
p {
    margin: 30px 0 0;
}
a {
    color: unset;
}
a:hover {
    color: #BBBB25;
}
.kwMargin {
    margin-top: 30px;
}
.kwSmallText {
    font-size: 0.888888em;
}
.kwBigText {
    font-size: 1.222222em;
}

/* header */
.kwHeaderAbs {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    column-gap: 15px;
}
.kwFlagLang {
    transition: ease-out 0.1s;
    transform: scale(1);
}
.kwFlagLang:hover {
    transform: scale(1.1);
}
.kwLinkLang.kwActiveLang::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: #d6d700;
}
.kwLogoHead {
    margin: 0 auto;
    display: block;
    max-width: 100%;
    height: auto;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    filter: drop-shadow(0 0 20px rgba(255,255,255,.1));
    width: 60%;
}
.kwTextCenter {
    text-align: center;
}
@keyframes floating {
    0% { transform: translate(0,  0px); }
    50%  { transform: translate(0, 15px); }
    100%   { transform: translate(0, -0px); }   
}

/* body */
.kwBody {
    min-height: 100vh;
    display: grid;
    align-content: center;
    grid-template-columns: repeat(2,1fr);
    background-color: #c5c5c5;
}
.kwMarginSection {
    margin-top: 70px;
}
.kw2ColRow {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}
:first-child {
    margin-top: 0;
}
.kwCellLogo {
    min-height: 50vw;
    background: #fff;
    align-content: center;
}
.kwCellText {
    min-height: 50vw;
    padding: 70px;
    align-content: center;
    background-color: #e9e9e9;
}
.kwLogoCdrAdvisory {
    background: #fff;
    padding: 23px;
    width: 250px;
    border-radius: 7px;
}
.kwLogoCdrAdvisory:hover {
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, .05), 0 0 0 4px #00a3e0;
}

@media screen and (max-width: 991px) {
    body, html {
        font-size: 16px;
    }
    .kwBody {
        grid-template-columns: auto;
    }
    .kwCellLogo,
    .kwCellText {
        min-height: 100vw;
    }
    .kwCellText {
        padding: 40px;
    }
}

@media screen and (max-width: 767px) {
    .kwBody {
        padding: 70px 15px;
    }
}

@media screen and (max-width: 480px) {
    .kw2ColRow {
        flex-wrap: wrap;
    }
    .kwCell {
        width: 100%;
    }
}

/*@media (prefers-color-scheme: dark) {
body {
background: #111;
color: #fff;
}
}*/