@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body > div section.mi-grid-1-2 .grid-box__content {
    overflow: unset;
}
body h1,
body h2{
    font-family: "Poppins", sans-serif;

}
body h1 {
    font-weight: 700;
}

.loading-background .site-branding .custom-logo-link img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}

#page .parallax-scroller > div {
    padding-top: 5em;
    padding-bottom: 5em;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    position: relative;
}
#page .parallax-scroller > div .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    background-color: rgba(37, 41, 38, 1);
    opacity: 0.7;
}

#page .parallax-scroller > div .content-50 {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    z-index: 11;
    position: relative;
    padding: 1em;
}
#page .parallax-scroller > div .content-50 * {
    color: inherit;
}
#page .parallax-scroller > div .content-50 > *:last-child {
    margin-bottom: 0;
}
#page .parallax-scroller > div .buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    z-index: 11;
    position: relative;    
    margin-top: 4rem;
}
#page .parallax-scroller > div .buttons a {
    width: 30%;
    border-radius: 999px;
    border: 1px solid #fff;
    color: #fff;
    text-align: center;
    padding: 0.75rem 0;
}
@media only screen and (max-width: 1024px) {
    #page .parallax-scroller > div .buttons a {
        width: calc(50% - 1rem);
    }
    #page .parallax-scroller > div .content-50 {
        width: 100%;
    }    
}
@media only screen and (max-width: 600px) {
    #page .parallax-scroller > div .buttons a {
        width: calc(100% - 1rem);
    }
}

.inner {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    flex-flow: row wrap;
}
.inner .cl {
    padding-left: 15px;
    padding-right: 15px;
}
.inner .cl-50{
    width: 50%;
}


.blog-archive > div {
    padding-top: 3em;
    padding-bottom: 3em;
}
.blog-archive > div .inner {
    max-width: 1275px;
    row-gap: 30px;
}
@media only screen and (max-width: 991px) {
    .blog-archive > div .inner {
        flex-flow: column;
        align-items: center;
    }  
}
.blog-archive > div .inner .cl .img {
    background-position: 50%;
    background-size: cover;
    height: 27vw;
    position: relative;
}
.blog-archive > div .inner .cl .img.no-featured-img {
    background-color: #ccc;
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
}
@media only screen and (max-width: 991px) {
    .blog-archive > div .inner .cl .img {
        height: 350px;
    } 
}
@media only screen and (max-width: 600px) {
    .blog-archive > div .inner .cl .img {
        height: 58.3333vw;
    } 
}
@media only screen and (max-width: 991px) {
    .blog-archive > div .inner .cl-50 {
        width: 100%;
        max-width: 600px;
    } 
}
.blog-archive > div .inner .cl .img .details {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;    
}

.blog-archive > div .inner .cl .img .details .overlay {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: all .3s ease-in-out;    
}
.blog-archive > div .inner .cl .img .details .text {
    bottom: 0;
    color: #fff;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    left: 0;
    padding: 2vw;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;    
}
.blog-archive > div .inner .cl .img .details .text h2 {
    color: inherit;
}
.blog-archive > div .inner .cl .img .details .text .button {
    text-align: right;
}
.blog-archive > div .inner .cl .img .details .text .button .btn {
    background-color: #00a9b9 !important;
    color: #ffffff !important;
}
