html, body {
    width: 100%;
    overflow-x: hidden;
    margin: 0px;
    padding: 0px;
}

header {
    width: 100%;
    border-bottom: 1px solid #999;
    position: relative;
    z-index: 999;
}

navx, .footer-wrapperx {
    display: flex;
    width: 90%;
    margin: 0 auto;
    max-width: 1300px;
    height: 100px;
}

.logo_holder {
    width: 150px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.menu-inner {
    width: calc(100% - 150px);
    display: flex;
}

.main-menu {
    width: 70%;
    display: flex;
}

    .main-menu ul {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: space-evenly;
        align-items: center;
        margin: 0px;
        padding: 0px;
        width: 100%;
    }

        .main-menu ul li, .secondary-menu ul li {
            list-style: none;
            padding: 0px;
            margin: 0px;
        }

.secondary-menu {
    width: 30%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

    .secondary-menu ul {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: space-evenly;
        align-items: center;
        margin: 0px;
        padding: 0px;
        width: 100%;
    }

.banner.banner-slides {
    width: 100%;
    height: 90vh;
    text-align: center;
    position: relative;
    border-bottom: 1px solid #999;
    background-color: #ccc;
}

.banner-holder {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.banner-inner-content {
    padding: 20px;
    margin: 0 auto;
    max-width: 1000px;
    width: 90%;
}

.banner-small-horizontal {
    border-bottom: 1px solid #999;
}

    .banner-small-horizontal .banner-inner-content {
        max-width: 1300px;
        display: flex;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: space-around;
        align-items: center;
    }

.section-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 50px;
    padding-bottom: 50px;
}

.section-inner-container.max-width-1 {
    padding: 20px;
}

.cta-holder {
    min-height: 400px;
    height: 60vh;
    max-height: 700px;
    background: #ccc;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: stretch;
    justify-content: center;
    align-items: stretch;
}

    .cta-holder .inner-width-holder {
        max-width: 1300px;
        margin: 0 auto;
        width: 90%;
        text-align: center;
    }

    .cta-holder .inner-content-holder {
        padding: 20px;
    }

    .cta-holder .inner-width-holder {
        position: relative;
        max-width: 1300px;
        margin: 0 auto;
        width: 90%;
        text-align: center;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: center;
        align-items: center;
    }


.copyright-holder .inner-wrapper {
    display: block;
    margin: 0px;
    padding: 20px;
    text-align: center;
}

.copyright-holder {
    width: 100%;
    background: #999;
    display: block;
}

.blogArvhiveContentHolder {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding: 20px;
}


.blogInnerContainer, .blogContentHolder {
    max-width: 900px;
    width: 90%;
    margin: 0 auto;
    padding: 20px;
}

.firstEntry .blogCover {
    width: 100%;
    margin-right: 20px;
    max-height: 400px;
    height: 400px;
    fill: cover;
    max-width: 55%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.blogArvhiveContentHolder .firstEntry {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    align-content: stretch;
    width: 100%;
    margin-bottom: 50px;
}

.firstEntry .blogTopDetails {
    width: 50%;
}

.firstEntry .blogCover img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    height: 100%;
}

.blogAuth, .BlogAuthor {
    width: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    justify-content: flex-start;
    margin-top: 10px;
}


    .blogAuth img, .BlogAuthor img {
        width: 50px;
        border-radius: 100%;
        overflow: hidden;
        margin-right: 10px;
    }

.firstEntry .blogTopDetails h2 {
    font-size: 2em;
}

ul.blogEntriesList {
    margin: 0px;
    width: 100%;
    padding: 0px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-row-gap: 20px;
    grid-column-gap: 40px;
    align-content: center;
    justify-content: center;
    align-items: stretch;
    justify-items: stretch;
}


.blogEntriesList .blogCover {
    width: 100%;
    height: 250px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    min-height: 250px;
}

    .blogEntriesList .blogCover img {
        width: 100%;
        object-fit: cover;
        object-position: center;
        position: absolute;
        height: 100%;
    }

ul.blogEntriesList li {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 30px;
}

.blogTopDetails h2 {
    min-height: 85px;
}

.blogDesc {
    min-height: 115px;
}


.blogArvhiveContentHolder {
    margin-bottom: 100px;
}

.blogHeroImg img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    height: 100%;
}

.blogHeroImg {
    display: block;
    width: 120%;
    height: 550px;
    overflow: hidden;
    position: relative;
    margin-bottom: 50px;
    margin-left: -10%;
}


.blogHead h1 {
    font-size: 2.5em;
}

.blogHead .blogDate {
    margin-bottom: 20px;
}

ul.blogEntriesList li a:link, ul.blogEntriesList li a:hover, ul.blogEntriesList li a:visited, .firstEntry a:link, .firstEntry a:hover, .firstEntry a:visited {
    text-decoration: none !important;
    color: inherit !important;
}

.firstEntry .blogDesc {
    height: auto !important;
    min-height: auto;
}

.blogBanner .blogArvhiveContentHolder {
    margin-bottom: 0px;
}

.pagination ul {
    margin: 10px;
    padding: 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

    .pagination ul li {
        border-radius: 3px;
        min-width: 30px;
        list-style: none;
        text-align: center;
        background: #ccc;
        margin-right: 3px;
        border: 1px solid #ccc;
    }

        .pagination ul li:hover {
            background-color: #999;
        }


        .pagination ul li a, .pagination ul li a:active, .pagination ul li a:hover, .pagination ul li a:visited {
            padding: 5px;
            text-decoration: none;
            display: block;
            color: #222 !important
        }

li.pagesnumber.pageNow {
    background: #f0f0f0;
}

.section-container .section-head h2, .section-container .section-head p {
    text-align: center;
    margin: 0 auto;
    width: 90%;
}

.section-container .section-head h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    margin-top: 20px;
    max-width: 1300px;
}

.section-container .section-head p {
    margin-top: 10px;
    margin-bottom: 10px;
    display: block;
    max-width: 900px;
}

.align-center {
    display: table;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

.grid-holder {
    display: grid;
    margin: 0 auto;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
    width: 95%;
}

.grid-col-2 {
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 20px;
    grid-column-gap: 20px;
}


.bordered {
    padding: 20px;
    border: 1px solid #ccc;
}

.flex-holder ul, .flex-holder {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    list-style: none;
    width: 100%;
    margin: 0 auto;
}

.flex-col-4 li {
    min-width: 20%;
    text-align: center;
    margin: 20px;
    border: 1px solid #ccc;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.flex-col-3 {
    /* min-width: 33.3%; */
    text-align: center;
    margin: 20px;
    /* border: 1px solid #ccc; */
    min-height: 200px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

    .flex-col-3 .content-item {
        width: calc(33.3% - 90px);
        padding: 20px;
        border: 1px solid #ccc;
        margin: 20px;
    }

ul.resourcesList li .list-entry-thumb img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    height: 100%;
}


ul.resourcesList li {
    list-style: none;
    margin: 0px;
    padding: 0px;
    width: 20%;
    background: #fff;
}

    ul.resourcesList li .list-entry-thumb {
        width: 100%;
        height: 200px;
        position: relative;
        border: 1px solid #ccc;
    }

ul.resourcesList {
    display: flex;
    gap: 20px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: stretch;
    margin: 0px;
    padding: 0px;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
}

.resourcesList .list-author-holder {
    display: none;
}

.list-info-wrapper h4 {
    margin-top: 5px;
}

.list-info-wrapper h3 {
    margin-bottom: 5px !important;
}

.infoBlog-holder, .list-desc {
    min-height: 90px;
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 5px;
    margin-bottom: 20px;
}

.list-categ-holder {
    padding: 5px;
    background: #ff0037;
    color: #fff;
    display: table;
    margin-left: 10px;
    font-size: 13px;
    position: absolute;
    bottom: 0;
    right: 0;
}
