body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: white;
    color: #282c34;
}

a {
    color: inherit;
    text-decoration: none;
}

header {
    display: flex;
    padding: 10px 20px;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 120px;
}

.phone {
    display: flex;
    align-items: center;
    gap: 7px;
}

.phone_icon {
    width: 20px;
}

.main {
    padding: 50px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1,
h2 {
    padding: 0;
    margin: 0;
    text-align: center;
}

section {
    margin-top: 50px;
}

.main p {
    text-align: center;
}

.header_text {
    font-size: 48px;
    font-weight: 1000;
    display: block;
}

ol {
    list-style: none;
    padding-inline-start: 0;
}

ol li {
    border: 1px solid lightgray;
    padding: 5px 10px;
    border-radius: 50px;
    width: 150px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.ol_li {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.wa_icon {
    width: 30px;
}

ul {
    padding-inline-start: 20px;
}

ul li {
    line-height: 1.5;
    margin-top: 10px;
}

footer {
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: bold;
    margin: 30px 0;
}

.header_text_mobile {
    display: none;
}

.description {
    margin-top: 30px;
    line-height: 1.5;
}

address {
    text-align: center;
}

/* Mobile */
@media (max-width: 700px) {

    .logo {
        width: 100px;
    }

    .main {
        padding: 50px 20px;
    }

    .header_text_mobile {
        display: block;
        font-size: 48px;
        width: 100%;
        font-weight: 900;
        text-align: left;
    }

    .header_text_mobile_big {
        font-size: 70px;
        color: gray;
    }

    .main p {
        text-align: left;
    }

    .header_text {
        display: none;
    }

    h1,
    h2 {
        text-align: left;
    }

    section {
        width: 100%;
    }

    .ol_li {
        flex-wrap: wrap;
    }

    ol {
        width: 100%;
    }

    ol li {
        width: 160px;
        height: 50px;
        font-size: 16px;
        font-weight: bold;
    }
}