html, body {
    height: 100%;
    width: 100%;
}
body {
    padding: 0;
    margin: 0;
    background: #fff;
    font-family: Roboto;
    line-height: 22.6px;
    color: #000;
    background: #F4F6FC;
    text-align: center;
}
body > div {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
h1 {
    color: #333;
    font-weight: 500;
    font-size: 24px;
    line-height: 110%;
    margin: 32px 0 16px;
}
h2 {
    color: #4B4F55;
    margin: 16px 0 6px;
    font-weight: 700;
    font-size: 16px;
    line-height: 140%;
}
a {
    border-bottom: 1px solid;
    border-bottom-color: currentcolor;
    text-decoration: none;
    color: #2872B9;
    border-bottom-color: rgba(40,114,185,0.3);
}
a:not(.btn):hover {
    color: #e74946;
    border-bottom-color: rgba(231,73,70,0.5);
}
.info {
    padding: 80px 176px 112px;
    background: #FFFFFF;
    border-radius: 16px;
    filter: drop-shadow(4px 4px 4px rgba(0,0,0,0.04));
}
.info-img {
    height: 220px;
}
.info-content {

}
.info-content div {
    color: #7D8085;
    font-size: 16px;
    line-height: 140%;
    width: 830px;
}
.info-links {
    margin-top: 24px;
    margin-bottom: 56px;
    display: flex;
    column-gap: 32px;
    justify-content: center;
}
.info-links a {
    border-bottom: none;
}
.btn {
    display: block;
    width: fit-content;
    color: #FFF;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;

    padding: 9px 24px;
    margin: 32px auto 0;
    background: #3299D6;
    border: 1px solid #2C80B2;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
}
.btn:hover {
    background: #5C9CE6;
}
.-mt-xs- {
    margin-top: 8px;
}
.-mt-s- {
    margin-top: 16px;
}