:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    color: #535b67;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 22px;
}

#wrapper {
    margin: 16px auto;
    border: 1px #ccc solid;
    max-width: 980px;
    background-color: #fff;
    position: relative;
}

.logo {
    padding: 16px;
}

article {
    padding: 0 16px;
}

.socical .right-div {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 5px;
}

.right {
    text-align: right;
}

.background {
    margin: 0 -16px;
    padding: 16px;
    background: #eeeff0;
}

.background:first-of-type {
    margin-bottom: 16px;
}

.title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.title p {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin: 0;
}

.margin {
    margin: 0 0 6px;
}

.gird {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(345px, 1fr));
    grid-gap: 16px 6px;
}

.box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    gap: 2px;
}

.box span {
    display: flex;
    justify-content: center;
    width: 48px;
}

.box p {
    flex: 1 1 0;
    margin: 0;
    font-weight: 700;
}

.box i {
    font-size: 22px;
    line-height: 1;
}

.iframe-wrapper {
    max-width: 300px;
    position: relative;
    padding: 0 0 34%;
    height: 0;
    overflow: hidden;
    margin: 32px 0 0;
}

.iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

footer {
    padding: 16px;
}

.button {
    display: flex;
    justify-content: flex-start;
    margin: 16px 0 0;
}

.button a {
    display: inline-block;
    padding: 10px 24px;
    background: #197e50;
    color: #fff !important;
    border: 1px solid transparent;
    transition: .3s;
    font-weight: 700;
    width: 171px;
    text-align: center;
}

.button a:hover {
    background: #115335;
    border: 1px solid #0b3622;
}

p {
    margin: 0 0 16px;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

ul {
    margin: 0 0 16px;
    list-style: none;
}

ul li {
    padding-left: 20px;
}

li:before {
    content: '\2022';
    float: left;
    font-size: 26px;
    text-indent: -20px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #535b67;
    text-decoration: none;
}

h1 {
    margin: 16px 0;
    font-size: 52px;
    line-height: 54px;
    font-weight: 700;
}

h1 small {
    display: block;
    font-weight: 400;
    font-size: 36px;
    line-height: 1.15;
    margin: 11px 0 0;
}

h2 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
}

h3 {
    margin: 14px 0;
    font-size: 16px;
    font-weight: 700;
}

.flex {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top {
    margin-top: 25px;
}

.indent span {
    text-indent: -20px;
    margin-left: 20px;
    display: block;
}

@media all and (max-width: 979px) {
    body {
        font-size: 15px;
    }

    #wrapper {
        margin: 0;
        hyphens: auto;
        border: none;
    }

    :is(h1, h2, p, ul li) {
        hyphens: auto;
    }

    h1 {
        font-size: 34px;
        line-height: 40px;
    }

    ul {
        padding-bottom: 8px;
    }

    ul li {
        padding-left: 15px;
    }

    li:before {
        text-indent: -15px;
    }

    br:not(.margin br, footer br, br.mobile-block) {
        display: none;
    }

    .iframe-wrapper {
        max-width: 100%;
        padding-bottom: 56.25%;
    }

    span {
        white-space: nowrap;
    }
}

@media all and (max-width: 700px) {
    .box {
        width: 100% !important;
    }

    h1 {
        font-size: 28px;
    }

    h1 small {
        font-size: 22px;
        line-height: 1.4;
    }

    .gird {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

@media all and (max-width: 374px) {
    .flex {
        flex-direction: column;
        align-items: flex-start;
    }
}