html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}
.site-wrapper { 
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
.header {
    padding: 20px;
    background-color: #252525;
}
.header__in {
    margin: 0 auto;
    max-width: 1264px;
}
.header .logo {
    width: 157px;
    display: block;
    height: auto;
}
.header .logo img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-width: 100%;
}
.content {
    flex: 1 0 100%;
    margin: 0 auto;
    max-width: 1264px;
    padding: 0 20px;
}
.content__in {
    padding: 60px 0 60px;
}
.tabs-wrapper {
    display: flex;
    flex-direction: column;
}
.tabs-button {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.tabs-button__item {
    cursor: pointer;
    padding: 15px 25px;
    font: 700 16px/1 "PF DinDisplay Pro", sans-serif;
    position: relative;
    cursor: pointer;
    text-transform: uppercase;
}
.tabs-button__item::after {
    content: '';
    left: 15px;
    right: 15px;
    bottom: 0;
    height: 5px;
    background: transparent;
    position: absolute;
    transition: all .3s ease;
}
.tabs-button__item.active::after {
    background: #252525;
}
.tabs-content {
    color: #252525;
    font: 300 16px/1.6 "PF DinDisplay Pro", sans-serif;
}
.tabs-content__item {
    display: none;
}
.tabs-content__item:first-child {
    display: block;
}
.tabs-content__item h2 {
    font-size: 35px;
    margin-bottom: 40px;
}
.tabs-content__item p {
    margin-bottom: 23px;
}
.tabs-content__item ul {
    list-style: none;
    padding: 0;
    margin: 0 0 23px;
}
.tabs-content__item ul li {
    margin-bottom: 10px;
}
.tabs-content__item ul li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 10px;
    border-radius: 50%;
    background-color: #252525;
    vertical-align: middle;
    margin-bottom: 2px;
}
.pay-block {
    display: flex;
    flex-direction: column;
    margin: 30px 0 0;
}
.pay-block_logo {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}
.pay-block_logo__item {
    height: 40px;
    margin: 10px 20px;
}
.pay-block_logo__item:first-child {
    margin-left: 0;
}
.pay-block_logo__item:last-child {
    margin-right: 0;
}
.pay-block_logo__item img {
    height: auto;
    width: auto;
    max-width: 100%;
    max-height: 100%;
}
.pay-block_text {
    color: #252525;
    font: 300 14px/1.6 "PF DinDisplay Pro", sans-serif;
    margin: 30px 0 0;
}
.pay-block_text b {
    font-weight: bold;
}
.footer {
    margin-top: auto;
    flex: 0 0 auto;
    color: #fff;
    background: #252525;
}
.footer__in {
    margin: 0 auto;
    max-width: 1264px;
    padding: 25px 20px;
    text-align: center;
}
.copyright {
    font: 700 16px/1 "PF DinDisplay Pro", sans-serif;
}