html {
    scroll-behavior: smooth;
}

body {
    background-color: #f7f9fc;
}

* {
    outline: none;
    font-family: 'Raleway', sans-serif;
}

h1 {
    font-size: 38px;
    color: #495369;
    font-weight: 500;
    margin-bottom: 30px;
}

p {
    font-weight: 400;
    color: #6e7b99;
    font-size: 18px;
    line-height: 28px;
}

p a {
    color: #36b5ac;
}

a {
    color: #36b5ac;
    transition: all .3s ease;
}

a:hover {
    color: #495369;
    transition: all .3s ease;
}

img {
    max-width: 100%;
}

.widget-link {
    border-radius: 5px 0 0 5px;
    color: #36b5ac;
    text-decoration: none;
    font-size: 14px;
    background: #fff;
    padding: 8px 15px;
    min-width: 110px;
    text-align: center;
    transition: all .3s ease;
}

.widget-link ~ .widget-link {
    border-radius: 0 5px 5px 0;
}

.widget-link:hover {
    background: #36b5ac;
    color: #fff;
    transition: all .3s ease;
}

.post-image {
    max-width: 250px;
    margin: 60px auto;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-holder {
    text-align: center;
}

.logo-holder img {
    max-width: 100px;
}

.quote {
    border: 1px solid #36b5ac;
    padding: 50px;
    margin: 30px 0;
    border-radius: 5px;
}

.quote p {
    margin: 0;
    color: #36b5ac;
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
    text-align: center;
}

.main {
    max-width: 920px;
    margin: 100px auto 0 auto;
}

.main .top-navigation {
    min-height: 38px;
    max-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-bottom: 20px;
}

.main .post-holder {
    background: #fff;
    border-radius: 5px;
    padding: 40px;
    margin-bottom: 40px;
}

.main .post-holder .post-info {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
}

.main .post-holder .post-info .category {
    background: #36b5ac;
    max-width: 110px;
    text-align: center;
    color: #fff;
    border-radius: 5px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 120%;
    margin-right: 10px;
    font-size: 14px;
}

.main .post-holder .post-info .date {
    font-size: 14px;
    color: #36b5ac;
}

.post-content .d-center {
    display: block;
    margin: 0 auto 20px;
    text-align: center;
}

@media (max-width: 767px) {
    .main {
        margin-top: 0;
    }

    .main .top-navigation {
        flex-wrap: wrap;
        max-height: inherit;
    }

    .main .top-navigation .widget-link {
        width: 50%;
        flex: 1;
        font-size: 12px;
        line-height: 100%;
        min-height: 25px;
        display: flex;
        align-items: center;
        padding: 5px 10px;
        min-width: auto;
    }

    .main .top-navigation > .widget-link {
        order: 2;
    }

    .main .top-navigation .logo-holder {
        order: 1;
        width: 100%;
    }

    .main .top-navigation .logo-holder + .widget-link {
        order: 3;
        text-align: right;
        justify-content: flex-end;
    }

    .main .post-holder {
        padding: 15px;
    }

    .main .post-holder .post-info .category {
        font-size: 12px;
        max-width: fit-content;
        min-height: inherit;
        padding: 5px 10px;
        line-height: 120%;
    }

    .main .post-holder .post-info .date {
        font-size: 12px;
    }

    .main .post-holder h1 {
        font-size: 24px;
    }

    .main .post-holder p {
        font-size: 1rem;
        line-height: 140%;
    }

    .main .post-holder .post-image {
        margin: 30px 0;
    }

    .main .post-holder .quote {
        padding: 20px;
    }
}
