
body {
    background: #f4f4f4;
}

header{
    position: relative;
    width: 100%; 
    height: 50vh;
    max-height: 540px;
    overflow: hidden;
    background: #202023;
    flex-direction: column;
}

header h1{
    position: relative;
    font-size: 34px; 
    font-family: 'b';
    color: #fff;
    padding: 0;
    line-height: 1;
    width: 400px;
}

header h1 span{
    font-family: 'b';
    display: block;
    font-size: 14px;
    padding-bottom: 5px;
}

.headline img{
    position: relative;
    width: 95px;
    opacity: 1;
    margin-right: 25px;
}

.tabs {
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.tabs label {
    position: relative;
    display: block;
    order: 1;
    margin: 50px 0 50px 50px;
    cursor: pointer;
    background: #fafafa;
    font-family: 'b';
    font-size: 20px;
    color: #202023;
    transition: background ease 0.2s
}

.tabs .tab {
    position: relative;
    order: 99;
    flex-grow: 1;
    width: 100%;
    display: none;
    background: #fff;
}

.tabs input[type="radio"] {
    display: none
}

.tabs input[type="radio"]:checked + label {
    color: #df3c2b;
    border-bottom: 2px solid #df3c2b;
}

.tabs input[type="radio"]:checked + label + .tab {
    display: block;
}

@media (max-width:45em) {
    .tabs .tab, .tabs label {
        order: initial
    }

    .tabs label {
        width: 100%;
        margin-right: 0;
        margin-top: 0.2rem
    }
}

main{
    position: relative;
    background: #fff;
    width: 100%;
    margin: 0 auto;
    padding: 100px 0;
    background: #f4f4f4;
}

main section {
    position: relative;
    display: block;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 10px 20px rgba(20, 20, 24, 0.1);
}

table{
    position: relative;
    width: 100%;
    text-align: left;
    margin: 10px auto;
    border-collapse: collapse;
} 

table tr td{
    padding: 25px;
}

table tr td:first-child{
    font-family: 'r';
    font-size: 16px; 
    line-height: 1.4;
    color: #303033;
}

table tr:nth-child(even) {
    background:#f4f4f4;
}

table tr td a{
    position: relative;
    display: block;
    font-family: 'r';
    font-size: 10px;
    text-align: center;
}

table tr td a img{
    position: relative;
    width: 50px;
    margin: 0 25px;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

table tr td a:hover img{
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.htabs {
    position: relative;
    padding: 0 50px 50px 50px;
    width: 100%;
    margin: 0 auto;
}

.f {
    background: #fff;
    color: #2a313a;
    font-family: 'b';
    padding: 25px 0;
    font-size: 16px;
    cursor: pointer;
    border-bottom: 2px solid #ddd;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.f:hover {
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    border-bottom: 2px solid #aaa;
}

.htabs > div:nth-child(even) {
    display: none;
    background: #fff;
    padding: 1.5rem;
    color: #4a5666;
}