* {
    position: relative;
    outline: none;
    margin: 0;
    padding: 0;
}

html {
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: #fff;
    color: #333;
    font-family: var(--inter-font-family);
    overflow-y: scroll;
}

.policy-block {
    padding: 72px 0 120px;
}

.policy-block .container-policy {
    width: 800px;
    margin: 0 auto;
}

.policy-block .title-small {
    margin-bottom: 48px;
}

.title-small {
    font-family: var(--inter-font-family);
    font-size: 36px;
    font-weight: 500;
    line-height: 1.17;
    letter-spacing: -.2px;
    text-transform: none;
}

.simple-text, .small-text {
    font-family: var(--inter-font-family);
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
}

.simple-text {
    font-size: 16px;
    line-height: 1.5;
}

.policy-block .simple-btn {
    margin-top: 48px;
}

.simple-btn.orange:before {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#ffd000), to(#ffb120));
    background-image: linear-gradient(180deg, #ffd000, #ffb120);
}
.simple-btn:after, .simple-btn:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border-radius: 4px;
}
.simple-btn {
    font-family: var(--inter-font-family);
    font-size: 16px;
    font-weight: 500;
    line-height: .5;
    letter-spacing: 0;
    text-transform: none;
    padding: 28px 40px;
    border-radius: 4px;
    display: inline-block;
    cursor: pointer;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
}

.simple-btn.orange {
    color: #333;
}
.policy-block a {
    color: #4f98ff;
}
.simple-btn {
    font-family: var(--inter-font-family);
    font-size: 16px;
    font-weight: 500;
    line-height: .5;
    letter-spacing: 0;
    text-transform: none;
    padding: 28px 40px;
    border-radius: 4px;
    display: inline-block;
    cursor: pointer;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
}

.simple-btn.orange:after {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#fe0), to(#ffd200));
    background-image: linear-gradient(180deg, #fe0, #ffd200);
}
.simple-btn:after {
    z-index: 1;
    opacity: 0;
    -webkit-transition: .3s;
    transition: .3s;
}

.simple-btn span {
    position: relative;
    z-index: 2;
}

* a {
    text-decoration: none;
}

.policy-block ul li {
    padding-left: 36px;
    position: relative;
    margin-bottom: 16px;
}

ul li {
    list-style: none;
}

.policy-block ul li:before {
    content: "";
    width: 6px;
    height: 6px;
    background-color: #333;
    border-radius: 100%;
    position: absolute;
    left: 18px;
    top: 8px;
}

.policy-block h3, .policy-block p {
    margin: 48px 0 32px;
}

@media (max-width: 1000px) {
    .policy-block .container-policy {
        width: 100%;
    }
    .simple-btn {
        padding: 28px 30px;
    }
}