/* Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

html,
body {
    height: 100%;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    margin: 0;
    padding: 0;
    background-color: #fff;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*,
*:after,
*:before {
    box-sizing: border-box;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: inherit;
    font-size: inherit;
    margin: 0;
}

img {
    width: fit-content;
    max-width: 100%;
    max-height: 100%;
}

h1 {
    font-size: 1.1em;
    font-weight: 600;
    margin: 15px 0 18px;
    line-height: 1.55;
    color: #222;
}

h2 {
    font-size: 1.4em;
    font-weight: 700;
}

h3 {
    font-size: 1.2em;
    font-weight: 700;
}

p {
    font-size: 1em;
    margin-bottom: 14px;
    line-height: 1.6;
}

.container {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}

.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.main {
    text-align: center;
    flex: 1 1 auto;
    padding-top: 8px;
}

.main .main-title {
    font-weight: 700;
    font-size: 1.7rem;
    color: #333;
    line-height: 1.2;
    margin: 8px auto 12px;
    text-align: center;
}

.main .sub-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
    text-align: center;
    margin-bottom: 12px;
}

.main .sub-title ul li {
    list-style-type: none;
}

.main__inner {
    width: 100%;
    max-width: 380px;
    text-align: center;
    margin: 0 auto 30px;
}

.main__image {
    width: 100%;
    max-width: 100%;
    margin-bottom: 12px;
}

.action-group {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.over-descr .desc-text {
    max-width: 640px;
    margin: 0 auto;
    padding: 15px 16px 28px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 400;
    color: #555;
    line-height: 1.65;
}

footer {
    width: 100%;
    padding: 14px 0;
    background: #2e2e2e;
    color: #fff;
    text-align: center;
    margin-top: 40px;
}

footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

footer ul li {
    padding: 8px 0;
}

footer a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.8rem;
}

footer a:hover {
    color: #fff;
}

footer p {
    color: #888;
    font-size: 0.75rem;
    line-height: 1.5;
    margin-top: 10px;
}