*,
:after,
:before {
    box-sizing: border-box
}

blockquote,
body,
dd,
div,
dl,
dt,
fieldset,
form,
h1,
h2,
h3,
h4,
h5,
h6,
input,
p,
pre,
td,
textarea,
th
{
    padding: 0;
    margin: 0;
    outline: 0
}

button,
button:active,
button:focus {
    outline: 0
}

a {
    text-decoration: none;
    font-size: inherit;
    color: inherit
}

table {
    border-spacing: 0
}

fieldset,
img {
    border: 0
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
    font-weight: 400;
    font-style: normal
}

strong {
    font-weight: 700
}

caption,
th {
    text-align: left
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
    font-size: 100%;
    margin: 0;
    padding: 0;
    color: #000
}

q:after,
q:before {
    content: ''
}

abbr,
acronym {
    border: 0
}

.clear {
    display: table;
    content: '';
    clear: both
}

@font-face {
    font-family: Gilroy;
    src: url("../../fonts/Gilroy Light/Gilroy-Light.eot");
    src: url("../../fonts/Gilroy Light/Gilroy-Light.eot") format("embedded-opentype"), url("../../fonts/Gilroy Light/Gilroy-Light.woff2") format("woff2"), url("../../fonts/Gilroy Light/Gilroy-Light.woff") format("woff"), url("../../fonts/Gilroy Light/Gilroy-Light.ttf") format("truetype"), url("../../fonts/Gilroy Light/Gilroy-Light.svg") format("svg");
    font-weight: 300;
    font-style: normal
}

@font-face {
    font-family: Gilroy;
    src: url("../../fonts/Gilroy Extra-Bold/Gilroy-ExtraBold.eot");
    src: url("../../fonts/Gilroy Extra-Bold/Gilroy-ExtraBold.eot") format("embedded-opentype"), url("../../fonts/Gilroy Extra-Bold/Gilroy-ExtraBold.woff2") format("woff2"), url("../../fonts/Gilroy Extra-Bold/Gilroy-ExtraBold.woff") format("woff"), url("../../fonts/Gilroy Extra-Bold/Gilroy-ExtraBold.ttf") format("truetype"), url("../../fonts/Gilroy Extra-Bold/Gilroy-ExtraBold.svg") format("svg");
    font-weight: 800;
    font-style: normal
}

body {
    font: 400 1.125rem/1.45 Gilroy;
    color: #3c3e5b
}

html {
    font-size: 1vw;
    scroll-behavior: smooth
}

.container {
    width: 100%;
    max-width: 73.125rem;
    margin: 0 auto;
    padding: 0 .9375rem
}

.blog-header {
    position: relative;
    width: 100%;
    background-color: #fff
}

.header-box {
    padding: 1.4375rem 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between
}

.header-box__menu {
    text-align: right
}

.header-box__menu a {
    color: #3c3e5b;
    font-size: 1rem;
    -webkit-transition: color .4s ease-in-out;
    transition: color .4s ease-in-out;
    margin-right: 2.5rem
}

.header-box__menu a:last-child {
    margin-right: 0
}

.header-box__menu a.active,
.header-box__menu a:hover {
    color: #22c568
}

.listing .blog-cover {
    height: 10rem
}

.blog-cover {
    position: relative;
    width: 100%;
    height: 35rem;
    overflow: hidden;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center
}

.blog-cover .container {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center
}

.blog-cover__text {
    text-align: center;
    width: 100%;
    max-width: 44.375rem;
    position: relative;
    z-index: 2
}

.blog-cover__text h1 {
    font-weight: 700;
    font-size: 3rem;
    line-height: 3.6875rem;
    color: #fff
}

.blog-cover__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1
}

.blog-cover__background:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(19, 20, 32, .8);
    content: '';
    z-index: 2
}

.blog-cover__background:after {
    position: absolute;
    bottom: 0;
    right: 10%;
    width: 12.3125rem;
    height: 12.3125rem;
    border: 3.75rem solid #22c568;
    content: '';
    z-index: 3;
    border-radius: 50%;
    -webkit-transform: translateY(50%);
    transform: translateY(50%)
}

.blog-cover__background img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1) translateY(50%);
        transform: scale(1) translateY(50%);
        opacity: 1;
        -webkit-filter: blur(1.875rem);
        filter: blur(1.875rem)
    }

    30% {
        -webkit-transform: scale(.8) translateY(50%);
        transform: scale(.8) translateY(50%);
        opacity: .6;
        -webkit-filter: blur(6.25rem);
        filter: blur(6.25rem)
    }

    100% {
        -webkit-transform: scale(1) translateY(50%);
        transform: scale(1) translateY(50%);
        opacity: 1;
        -webkit-filter: blur(1.875rem);
        filter: blur(1.875rem)
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(1) translateY(50%);
        transform: scale(1) translateY(50%);
        opacity: 1;
        -webkit-filter: blur(1.875rem);
        filter: blur(1.875rem)
    }

    30% {
        -webkit-transform: scale(.8) translateY(50%);
        transform: scale(.8) translateY(50%);
        opacity: .6;
        -webkit-filter: blur(6.25rem);
        filter: blur(6.25rem)
    }

    100% {
        -webkit-transform: scale(1) translateY(50%);
        transform: scale(1) translateY(50%);
        opacity: 1;
        -webkit-filter: blur(1.875rem);
        filter: blur(1.875rem)
    }
}

.blog-content {
    padding: 5.5625rem 0 .625rem;
    background-image: url(/media/images/blog/blog-content__bg.png);
    background-repeat: repeat-y
}

.blog-content .blog-content__description {
    width: 100%;
    max-width: 53.1875rem;
    margin-bottom: 8.6875rem
}

.blog-content .blog-content__description p {
    font-weight: 700;
    margin-bottom: 1.875rem
}

.blog-content a {
    -webkit-transition: color .4s ease-in-out;
    transition: color .4s ease-in-out
}

.blog-content a:hover {
    color: #22c568
}

.listing .blog-content__text-box {
    margin: 4rem
}

.blog-content__text-box {
    margin-bottom: 8.75rem
}

.blog-content__text-box .blog-content__title {
    position: relative;
    text-align: center;
    width: 100%;
    max-width: 50rem;
    margin: 0 auto 3.125rem
}

.blog-content__text-box .blog-content__title span {
    position: relative;
    font-weight: 800;
    font-size: 2.25rem;
    line-height: 2.75rem;
    text-align: center;
    color: #3c3e5b
}

.blog-content__text-box .blog-content__title span:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 1.8125rem;
    height: 1.8125rem;
    border: .375rem solid #22c568;
    border-radius: 50%;
    content: '';
    z-index: -1;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.blog-content__text-box .blog-content__text p {
    margin-bottom: 1.875rem
}

.blog-content__text-box .blog-content__text p:last-child {
    margin-bottom: 0
}

.blog-content__text-box .blog-content__text ul {
    margin-bottom: 1.875rem
}

.blog-content__text-box .blog-content__text ul li {
    margin-left: 3.125rem;
    margin-bottom: .9375rem;
    position: relative;
    padding-left: 1.75rem
}

.blog-content__text-box .blog-content__text ul li:before {
    position: absolute;
    top: .5rem;
    left: 0;
    width: .375rem;
    height: .375rem;
    background: #22c568;
    content: '';
    border-radius: 50%
}

.blog-content__text-box .blog-content__text ul li:last-child {
    margin-bottom: 0
}

.blog-content__image {
    position: relative;
    width: 100%;
    max-width: 45.6875rem;
    margin: 0 auto 6.0625rem;
    overflow: hidden;
    height: 25.6875rem
}

.blog-content__image.grey img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%)
}

.blog-content__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.blog-footer {
    background: #131420;
    width: 100%;
    padding: 3.125rem 0;
    font-size: 1rem
}

.blog-footer__links {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    padding-bottom: .9375rem;
    border-bottom: .0625rem solid #22c568
}

.blog-footer__box {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    max-width: 15rem;
    color: #fff;
    margin-right: 3.125rem;
    margin-bottom: 1.875rem
}

.blog-footer__box:last-child {
    margin-right: 0
}

.blog-footer__box a {
    margin-bottom: .3125rem;
    -webkit-transition: color .4s ease-in-out;
    transition: color .4s ease-in-out
}

.blog-footer__box a:hover {
    color: #22c568
}

.blog-footer__box--title {
    font-weight: 700;
    margin-bottom: .625rem;
    font-size: 1.125rem
}

.blog-footer__copyright {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    color: #fff;
    padding-top: .9375rem
}

.blog-footer__copyright a,
.blog-footer__copyright p {
    margin-right: 2.1875rem
}

.blog-footer__copyright a {
    margin-bottom: .3125rem;
    -webkit-transition: color .4s ease-in-out;
    transition: color .4s ease-in-out
}

.blog-footer__copyright a:hover {
    color: #22c568
}

@media only screen and (orientation:portrait) {
    html {
        font-size: 1rem
    }
}

@media only screen and (max-width:90rem) {
    html {
        font-size: 1rem
    }

    .blog-content {
        background-size: 130%;
        background-position: 50% 50%
    }
}

@media only screen and (max-width:73.125rem) {
    .blog-content {
        background-size: 120%;
        background-position: 50% 50%
    }
}

@media only screen and (max-width:48rem) {
    .header-box__menu {
        display: none
    }
}

@media only screen and (max-width:27.5rem) {
    .blog-cover {
        height: 18.75rem
    }

    .blog-content .blog-content__description {
        margin-bottom: 5.625rem
    }

    .blog-cover__text h1 {
        font-size: 1.375rem;
        line-height: initial
    }

    .blog-content__image {
        margin-bottom: 5rem;
        height: 16.875rem
    }

    .blog-content__text-box {
        margin-bottom: 5rem
    }

    .blog-content__text-box .blog-content__title span {
        font-size: 1.375rem;
        line-height: initial
    }
}

p {
    margin-bottom: 20px !important;

}

p>strong {
    margin-bottom: 20px !important;

}

.listing .blog-content__text-box {
    margin: 0 !important;
}

.blog-content__text-box .blog-content__title {

    text-align: left !important;
    margin-bottom: 20px !important;
}

.blog-content__text-box .blog-content__title span {

    font-size: 28px !important;
    line-height: 35px !important;

}

.listing .blog-content__text-box {
    margin: 10px !important;
    background: #f5f5f5;
    display: inline-block;

    padding: 22px;
    width: 30%;
}

.listing .container {
    padding-top: 40px;
    padding-bottom: 40px;
}

@media screen and (max-width:680px) {
    .listing .blog-content__text-box {

        width: 100%;
    }
}

.text-box__text {}

.blog-content__text-box .blog-content__title span:before {

    top: -18px !important;
    z-index: 1 !important;
}

.blog-content__text-box {
    padding-bottom: 95px !important;
}

.blog-content__text-box .btn-theme {
    position: absolute;
    bottom: 25px;
    background: #22c568;
    border: #22c568;
}

.blog_post_grid {
    display: flex;
    flex-wrap: wrap;
}