/*
Theme Name: HZNG
Description: Webdesign & design systems
Version: 2.1
Author: P. Huizinga at HZNG - hzng.nl
*/

/* Reset */
/* Handled by reset.css from https://github.com/murtaugh/HTML5-Reset */

@font-face {
    font-family: "Bodoni";
    src: url("fonts/Bodoni_72_os.ttf");
}
@font-face {
    font-family: "Fixel Regular";
    src: url("fonts/FixelText-Regular.ttf");
    font-weight: 400;
}
@font-face {
    font-family: "Fixel Medium";
    src: url("fonts/FixelText-Medium.ttf");
    font-weight: 500;
}
@font-face {
    font-family: "Fixel Semibold";
    src: url("fonts/FixelText-SemiBold.ttf");
    font-weight: 600;
}
@font-face {
    font-family: "Fixel Bold";
    src: url("fonts/FixelText-Regular.ttf");
    font-weight: 700;
}



/* GENERAL */

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
*:focus {
    outline: none;
}
*,html,body {
    font-family: "Fixel Regular", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    -moz-appearance: none;
    -webkit-appearance: none;
    font-size: 19px;
    color: #1c1c1c;
    font-weight: 400;

}
input {
    font-family: inherit;
}
html, body {
    line-height: 30px;
    overflow-x: hidden;
}
hr {
    border-style: solid none none;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid #999;
}

/* FONTS */

.serif {
    font-family: "Bodoni", serif;
}
h1, h2, h3, h4, h5, h6 {
    font-family: "Fixel Medium";
}
h1 span,
h1 em,
h1 {
    font-size: 84px;
    line-height: 110%;
    margin: 0 0 10px;
}

h2{
    font-size: 22px;
    line-height: 125%;
    margin: 23px 0 10px;
}
    h1 + h2 {
        margin: 0 0 20px;
    }

h3{
    font-size: 32px;
    line-height: 125%;
    margin: 15px 0 5px;
}

h4{
    font-size: 28px;
    line-height: 125%;
    margin: 12px 0 4px;
}
h5 {
    font-size: 24px;
    line-height: 125%;
    margin: 10px 0 3px;
}
li a,
li,
p *,
p {
    font-size: inherit;
}
p {
    margin-bottom: 15px;
}
strong{    
    font-family: "Fixel Semibold";
    position: relative;
}
.intro p,
p.intro {
    font-family: "Fixel Medium";
}
.text-center,
.text-center * {
    text-align: center;
}

img {
    max-width: 100%;
}


/* GRID */

article,
section {
    display: flex;
    justify-content: center;
    position: relative;
    flex-direction: column;
    padding: 60px;
}
.row {
    width: 100%;
    display: flex;
    position: relative;
    flex-wrap: wrap;
    overflow: hidden;
    justify-content: center;
}
    .usps .row {
        padding-top: 0;
    }
.container {
    width: 100%;
    max-width: 1350px;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    position: relative;
}
    .container.all-posts,
    .container.chosen-posts,
    .container.more-pages {
        max-width: 1218px;
    }
    .container.padding-top {
        padding-top: 60px;
    }
    .vh-100  {
    height: 100vh;
}
.vh-75  {
    height: 75vh;
}
.vh-50  {
    height: 50vh;
}
.min-height  {
    min-height: 400px;
}
.vw-100  {
    width: 100vw;
}
.flex {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}
.center,
.flex-center {
    justify-content: center;
}
.flex-stretch{
    align-content: stretch;
}
.space-between,
.flex-space-between{
    justify-content: space-between;
}
.flex-end{
    justify-content: flex-end;
}
.flex-self-end{
    align-self: flex-end;
}
.flex-space-around{
    justify-content: space-around;
}
.flex-space-evenly{
    justify-content: space-evenly;
}
.flex-v-align-center{
    align-items: center;
}
.flex-v-align-bottom{
    align-items: flex-end;
}
.flex-stretch {
    align-items: stretch;
}
.flex-v-align-top{
    align-items: flex-start;
}
.flex-h-align-left{
    justify-content: left;
}
.flex-h-align-center{
    justify-content: center;
}

.flex-h-align-right {
    justify-content: right;
}
.flex-column-reverse {
    flex-direction: column-reverse;
}
.flex-wrap {
    flex-wrap: wrap;
}
.flex-row {
    flex-direction: row;
}
.flex-column {
    flex-direction: column;
}
.flex-no-wrap  {
    flex-wrap: nowrap;
}
.flex-grow-1 {
    flex-grow: 1;
}
.flex-grow-2 {
    flex-grow: 2;
}
.flex-grow-3 {
    flex-grow: 3;
}
.flex-grow-4 {
    flex-grow: 4;
}
.flex-grow-5 {
    flex-grow: 5;
}
.flex-grow-6 {
    flex-grow: 6;
}

/* PADDING ON THE COLUMNS */

div[class*="col-"] {
    padding: 0px 25px;
    position: relative;
}
.no-padding > div[class*="col-"] {
    padding: 0;
}
.extra-padding div[class*="col-"] {
    padding: 0 40px;
}
.no-self-padding {
    padding: 0!important;
}
*.padding {
    padding: 25px 30px;
}
.border-radius  {
    border-radius: 10px;
    border-bottom-right-radius: 60px;
    overflow: hidden;
}

/* COLUMNS */

.col-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
}
.col-2 {
    flex: 0 0 16.6666%;
    max-width: 16.6666%;
}
.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}
.col-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
}
.col-45 {
    flex: 0 0 37.5%;
    max-width: 37.5%;
}
.col-5 {
    flex: 0 0 41.66666%;
    max-width: 41.66666%;
}
.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}
.col-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
}
.col-8 {
    flex: 0 0 66.6666%;
    max-width: 66.6666%;
}
.col-9 {
    flex: 0 0 75%;
    max-width: 75%;
}
.col-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
}
.col-11 {
    flex: 0 0 91.66666%;
    max-width: 91.66666%;
}
.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}
.small-screen-only {
    display: none;
}
.large-screen-only {
    display: block;
}
.pull-right {
    float: right;
}
.sticky {
    position: sticky!important;
    top: 90px;
}
.order-1 {
 order: -1;
}

/* GENERAL */

.whole-link {
    position: absolute!important;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    cursor: pointer;
    z-index: 200;
}

/* CSS FOR TOGGLE BUTTON */

.toggle-menu {
    display: none;
    width: 80px;
    height: 80px;
    cursor: pointer;
    padding: 0!important;
    right: -20px;
    top: 0;
    margin: 0!important;
    margin-left: 20px!important;
    position: absolute;
    transition: all .2s ease-in-out;
}

    .toggle-menu .bar{
        width: 25px;
        height: 2px;
        position: absolute;
        background: #202223;
        border-radius: 4px;
        transition: all .2s ease-in-out;

    }
        .toggle-menu .bar.top-bar{
            top: 32px;
            left: 27px;
        }
        .toggle-menu .bar.middle-bar{
            top: 50%;
            margin-top: -1px /*height of bar / 2*/ ;
            left: 27px;
            width: 14px;
        }
        .toggle-menu .bar.bottom-bar{
            bottom: 32px;
            left: 27px;
        }

        .menu-active .toggle-menu .bar.top-bar{
            transform: rotate(45deg);
            transform-origin: 0 0;
        }
        .menu-active .toggle-menu .bar.middle-bar{
            opacity: 0;
        }
        .menu-active .toggle-menu .bar.bottom-bar{
            transform: rotate(-45deg);
            transform-origin: 0 100%;
        }
        .menu-active .toggle-menu .bar.top-bar,
        .menu-active .toggle-menu .bar.bottom-bar {
            width: 21px;
            left: 32px;
        }

/* MENU */

    .main-menu {
        position: fixed;
        width: 100%;
        z-index: 100;
        top: 0;
    }
    .main-menu .row {
        overflow: visible;
    }
    .menu {
        position: relative;
    }
    .menu li {
        list-style: none;
        padding: 20px 0;
    }    
        .menu > li > a {
            text-decoration: none;
            font-size: 17px;
            font-weight: 500;
            line-height: 24px;
            position: relative;
            padding: 10px 20px;
            text-transform: lowercase;
        }
            .page-homepage header .menu li a {
                text-shadow: 0 5px 15px rgba(0,0,0,1);
                color: #FFF;   
            }
            .page-homepage header .menu li.has-submenu > a:after {
                border-color: #FFF;
            }
            .menu li.cta a {
                text-shadow: none;
            }
            .menu li.has-submenu > a {
                padding-right: 30px;
            }

        .menu li.has-submenu > a:after {
            display: block;
            content: "";
            width: 7px;
            height: 7px;
            position: absolute;
            right: 15px;
            top: 15px;
            transform: rotate(135deg);
            border-top: 2px solid #222;
            border-right: 2px solid #222;
            transition: top 0.2s ease-in-out;
        }
            .menu li.has-submenu:hover > a:after {
                top: 12px;
            }

        .menu li .submenu {
            position: absolute;
            left: -99999px;
            margin-top: 0px;
            background: #FFFFFFE6;
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            width: 600px;
            display: flex;
            padding: 20px;
            flex-wrap: wrap;
            transition: margin 0.2s ease-in-out, opacity 0.2s ease-in-out;
            z-index: 1000;
            opacity:0;
            top: 75px;
            border-bottom-right-radius: 60px;
        }
            .menu li .submenu li {
                width: 100%;
                position: relative;
                transition: border 0.2s ease-in-out;
                margin-bottom: 10px;
                padding: 0;
            }
                .menu li .submenu li:last-child {
                    margin-bottom: 0px;
                }
                .menu li .submenu li:hover {
                    transition: border 0.2s ease-in-out;
                }

                .menu li .submenu li:after { 
                    position: absolute;
                    content: "";
                    display: block;
                    right: 15px;
                    top: 5px;
                    width: 25px;
                    height: 25px;
                    background-image: url('images/arrow.svg');
                    background-repeat: no-repeat;
                    background-size: 25px;
                    transition: right 0.2s ease-in-out;
                }
                .menu li .submenu li:hover:after { 
                    right: 10px;
                    transition: right 0.2s ease-in-out;
                }



        .menu li:hover > .submenu {
            left: -200px;
            margin-top: -5px;
            transition: margin 0.2s easy-in-out;
            opacity: 1;
        }
            .menu li .submenu h3 {
                font-size: 22px;
                margin: 0;
            }
            .menu li .submenu p.label {
                font-size: 15px;
                margin: 0 0 10px;
                font-weight: 500;
            }
            .menu li .submenu p {
                font-size: 17px;
                margin: 0 0 10px;
            }
/* SVG LOGO */

.logo {
    line-height: 20px;
}
.logo svg {
    width: 80px;
    margin: 15px 0;
    height: 80px;
    line-height: 20px;
}
    .page-homepage .logo svg path{
        fill: #FFF;
    }



/* BUTTONS */

.btn {
    background: #222;
    padding: 9px 50px 10px 20px!important;
    color: #FFF;
    display: inline-block;
    border-radius: 5px;
    border-bottom-right-radius: 15px;
    text-decoration: none;
    text-transform: lowercase;
    font-weight: 500;
    position: relative;
    line-height: 30px!important;
    font-size: 17px!important;
}

    .btn:after {
        position: absolute;
        content: "";
        display: block;
        right: 15px;
        top: 15px;
        width: 25px;
        height: 25px;
        background-image: url('images/arrow-white.svg');
        background-repeat: no-repeat;
        background-size: 25px;
        transition: right 0.2s ease-in-out;
    }
    .btn.ghost {
        background: transparent;
        border: 1.5px solid #222;
        color: #222;
    }
       .btn.ghost:after {
        background-image: url('images/arrow.svg');
    } 
    .btn.small {
        padding: 4px 40px 5px 14px!important;
        font-size: 15px!important;
    }
        .btn.small:after {
            background-size: 20px;
            top: 12px;
            right: 7px;
        }
    .has-subnunu .submenu li:hover .btn:after,
    .btn:hover:after,
    .grid-item:hover .btn:after {
        transition: right 0.2s ease-in-out;
        right: 11px;
    }
        .has-submenu .submenu li:hover .btn.small:after,
        .btn.small:hover:after,
        .grid-item:hover .btn.small:after {
            transition: right 0.2s ease-in-out;
            right: 4px;
        }
    .main-menu .btn {
        margin-left: 10px;f
    }

/* BREADCRUMBS */

.breadcrumbs .row {
   padding: 30px 0 20px;
}

.breadcrumbs .offset-crumbs {
    margin-left: -20px;
}
.breadcrumbs * {
   font-size: 14px;
   margin: 0 5px;
}

.breadcrumbs span span {
   font-size: 14px;
   margin: 0 5px;
}
    .breadcrumbs span span {
       opacity: 0.75;
    }
    .breadcrumbs span span:hover {
       opacity: 1;
    }


.form {
    background: #FFF;
    border-radius: 30px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.15);
    padding: 20px 30px;
    margin-top: 40px;
}
    .form label {
        width: 100%;
        font-size: 14px;
        font-weight: 500;
    }

    .form input {
        width: 100%;
        line-height: 34px;
        padding: 10px;
        font-size: 18px;
        border: 1px solid #DDD;
        border-radius: 4px;
        margin-bottom: 10px;
    }

    .form p.disclaimer {
        width: 100%;
        margin: 10px 0 20px;
        font-size: 14px;
        line-height: 22px;
        color: #666;
    }

/* GRID ITEMS */

.grid-item {
    background: #FFFFFF80;
    overflow: visible;
    padding: 10px 30px 20px 30px;
    transition: border 0.2s ease-in-out;
    border: 1px solid transparent;
}
    .grid-item:hover {
        border: 1px solid #222;
        transition: border 0.2s ease-in-out;
    }

/* CHECKS */

ul.icons {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}
    ul.icons li {
        position: relative;
        line-height: 28px;
        padding: 7px 0 7px 40px;
    }
.checks {
    position: absolute;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    display: inline-block;
    border-radius: 2px;
    left: 0;
    top: 5px;
    border: 2px solid #222222;
    background: #FFF;
}
.checks.positive{
    border-radius: 20px;
}
    .checked.checks.negative::before,
    .checked.checks.negative::after {
        content: "";
        width: 22px;
        height: 3px;
        background: #222222;
        display: block;
        position: absolute;
        transform: rotate(45deg);
        left: 2px;
        top: 12px;
    }
    .checked.checks.negative::before {
        transform: rotate(135deg);
    }
    .checked.checks.positive::before,
    .checked.checks.positive::after {
        content: "";
        width: 9px;
        height: 3px;
        background: #222222;
        display: block;
        position: absolute;
        transform: rotate(45deg);
        left: 4px;
        top: 13px;
    }
    .checked.checks.positive::before {
        transform: rotate(135deg);
        width: 15px;
        height: 3px;
        top: 12px;
        left: 9px;
    }

    ul.icons strong {
        position: relative;
        z-index: 1;
    }

@media (min-width: 767px) {
    ul.icons strong::after{
        position: absolute;
        top: 0;
        left: 0;
        width: 0%;
        height: 100%;
        content:"";
        display: block;
        background: #ff000040;
        z-index: -1;
        border-radius: 2px;
        transition: width 0.5s ease-out;
    }
    ul.icons .positive + strong::after{
        background: #00cc3340;
    }
        ul.icons .checked + strong::after {
            width: 100%;
        }
}

/* HEADER IMAGE */

.header-image {
    top: 0;
    left: 0;
    top: 0;
    width: 100%;
    min-height: 1000px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #F2F2F0;
}
    .page-homepage .header-image {
        background-position: center -400px;
    }

    .corners {
        display: block;
        width: 100%;
        height: 150px;
        left: 0;
        bottom: 0;
        position: absolute;
        border-top-left-radius:150px;
        background: #F6F6F4;
    }
            .corners.negative {
                border-top-left-radius:0;
                border-bottom-left-radius:150px;
            }
            .corners.negative:after{
                width: 100%;
                height: 100%;
                display: block;
                content: "";
                background: #FFF;
                z-index: -1;
                position: absolute;
            }
        .corners:before {
            display: block;
            content: "";
            width: 400px;
            height: 400px;
            right: 0;
            bottom: 150px;
            position: absolute;
            background-image: url('images/right-corner.svg');
            background-size: cover;
            background-repeat: no-repeat;
        }
            .corners.negative:before {
                background-image: url('images/right-corner-neg.svg');
                bottom: auto;
                top: 150px;
            }
        .has-corners {
            margin-bottom: 150px;
            padding-bottom: 0;
        }
        .has-corners .corners {
            bottom: -150px;
        }
section.first + section {
    padding-top: 0;
}

.bg-001 {
    background: #F6F6F4;
}
h2 {
    font-size: 28px;
    line-height: 40px;
}

p.intro {
    font-size: 22px;
    line-height: 36px;
}

.page-homepage .header-image .row {
    margin-top: -150px;
}

.page-homepage .header-image .row * {
    color: #FFF;
    text-shadow: 0 5px 15px rgba(0,0,0,1);
}
    .page-homepage .header-image .row p {
        color: #FFF;
        text-shadow: 0 5px 15px rgba(0,0,0,1);
    }


section.first {
    background: #FFF;
    position: relative;
    padding-top: 200px;
    padding-bottom: 250px;
}



/* PAGE */



/* GLOBALS RESPONSIVE */

.projecten {
    
}

/* GLOBALS RESPONSIVE */

.mobile-overflow {
    min-width: 100%;
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    margin: 0 auto;
    flex-wrap: wrap;
}
.mobile-only {
    display: none!important;
}
.desktop-only {
    display: flex!important;
}
.text-in-columns {
    column-count: 2;
    column-gap: 50px;
}

@media (max-width: 1023px) {
    body {
        padding: 80px 0 0;
    }
    .row.main-menu .container {
        padding: 0 20px 0 0;
    }
    .mask-mark {
        width: 100vw;
        left:0;
    }
    .text-center *,
    .text-center {
        text-align: left;
    }
    .usps .text-center *,
    .usps .text-center {
        text-align: center;
    }

    .desktop-only {
        display: none!important;
    }
    .mobile-only {
        display: flex!important;
    }
    .mobile-scroll {
        overflow-x: scroll;
        overflow-y: visible;
    }
    .mobile-overflow {
        width: 1023px!important;
        min-width:  1023px;
        display: flex;
        flex-wrap: initial;
        padding-bottom: 30px;
    }
    .mobile-overflow > div {
        flex: 0 0 30%!important;
        max-width: 30%!important;
    }
    .logo svg {
        width: 140px;
        margin-left: 25px;
    }
    .container {
        max-width: 860px;
        padding: 0 20px;
    }
    .row.main-menu .container {
        max-width: 100%;
    }

    .mobile-order-1 {
        order: -1;
    }
    .col-1,
    .col-2,
    .col-3,
    .col-4,
    .col-5,
    .col-6 {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 10px!important;
    }
    .col-7,
    .col-8,
    .col-9,
    .col-10,
    .col-11,
    .col-12 {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 10px!important;
    }

    .container.all-posts,
    .container.chosen-posts,
    .container.more-pages {
        padding-right: 30px;
    }
    .mask-mark {
        background-image: none!important;
    }
    .wp-block-pullquote p {

        font-size: 8vw;
        line-height: 125%;
    }
    .whitepaper-cover {
        transform: scale(0.75);
    }

}

@media (max-width: 767px) {
    .col-1,
    .col-2,
    .col-3,
    .col-4,
    .col-5,
    .col-6,
    .col-7,
    .col-8,
    .col-9,
    .col-10,
    .col-11,
    .col-12 {
        flex: 0 0 100%;
        max-width: 100%; 
    }
    .home .first .row,
    .first .row {
        padding-top: 30px;
    }
    .breadcrumbs {
        display: none;
    }
    .container {
        padding: 0 15px;
    }
    .text-in-columns {
        column-count: 1;
        column-gap: 0;
    }
    .jumbotron h1,
    h1 span,
    h1 em,
    h1 {
        font-size: 35px;
        line-height: 125%;

    }
    h2{
        font-size: 30px;
        line-height: 125%;
        margin: 15px 0 10px;
    }

    h3{
        font-weight: 600;
        font-size: 26px;
        line-height: 125%;
        margin: 15px 0 5px;
    }

    h4{
        font-weight: 600;
        font-size: 24px;
        line-height: 125%;
        margin: 12px 0 4px;
    }
    h5 {
        font-weight: 600;
        font-size: 22px;
        line-height: 125%;
        margin: 10px 0 3px;
    }
    .footer-menu ul.menu > li {

        width: 100%;

    }
    .breadcrumbs .offset-crumbs {
        margin-left: -30px;
    }

    .logo svg {
        margin-left: 15px;
    }
}

@media (max-width: 512px) {

}



/* AUDIT */

.geoforai-form {
    border-radius: 30px!important
}
.geoforai-audit-wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 60px;
}
#geoforai-sections {
    padding: 0;
}
.geoforai-form .geoforai-field {
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
    .geoforai-form .geoforai-field label{
        font-size: 15px;
        font-weight: 600;
    }
    .geoforai-form .geoforai-field input{
        width: 100%;
        background: #FFF;
        border: 1px solid #DDD;
        border-radius: 5px;
        line-height: 30px;
        padding: 10px 10px;
    }
    .geoforai-form .geoforai-field input:focus{
        border:1px solid #fafafa;
        -webkit-box-shadow:0 0 6px #009FE3;
        -moz-box-shadow:0 0 5px #009FE3;
        box-shadow:0 0 5px #009FE3;
        outline: none;
    }
    .geoforai-form button {
        text-decoration: none;
        line-height: 30px;
        padding: 12px 15px;
        display: inline-block;
        font-size: 18px;
        font-weight: 500;
        border-radius: 10px;
        color: #FFF;
        background: linear-gradient(90deg,rgba(232, 19, 136, 1) 0%, rgba(37, 18, 195, 1) 100%);
        width: 100%;
        border: 0;
        cursor: pointer;
        margin-top: 30px;
    }
    .geoforai-form button:focus{
        -webkit-box-shadow:0 0 6px #009FE3;
        -moz-box-shadow:0 0 5px #009FE3;
        box-shadow:0 0 5px #009FE3;
        outline: none;
    }
.geoforai-form.wrapper {
    width: 100%;
    max-width: 500px;
    padding: 30px;
}
.score-bar-wrapper {
    margin: 30px 0;
}

.score-number {
    background: #DDD;
    overflow: hidden;
    border-radius: 50px;
}
    .score-number #geoforai-score{
        height: 100%;
        background: linear-gradient(90deg,rgba(232, 19, 136, 1) 0%, rgba(37, 18, 195, 1) 100%);
        text-align: right;
        padding:  5px 10px;
        color: #FFF;
        line-height: 20px;
        font-weight: 500;
        display: block;
        float: left;
    }
.score-description {
    font-size: 19px;
    line-height: 29px;
    margin-top: 15px;
}
.geoforai-section {
    margin-bottom: 30px;
}
.geoforai-section h3 {
    margin: 0 0 15px;
}
.geoforai-check {
    border-top: 1px solid #DDD;
    padding: 10px 0;
    cursor: pointer;
    position: relative;
}
    .geoforai-check h4{
        font-size: 1em;
        margin: 0;
        line-height: 28px;
        position: relative;
        display: inline-block;
        width: 100%;
        padding-right: 50px;
    }

    .geoforai-check p{
        margin: 10px 0;
    }
    .geoforai-audit-section h3 span{
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        line-height: 20px;
        border-radius: 5px;
        padding: 3px 7px;
        background: #EFEFEF;
        float: right;
    }

.pill {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 20px;
    border-radius: 5px;
    padding: 3px 7px;
    background: #CCC;
    color: #FFF;
}
    .pill.fail {
       background: #EA545533;
       color: #EA5455;
       margin-right: 10px;
    }
    .pill.pass {
       background: #00AE4333;
       color: #00AE43;
       margin-right: 10px;
    }
    .pill.warning {
       background: #FFAE0033;
       color: #FFAE00;
       margin-right: 10px;
    }
    .pill.lite {
       background: #222;
       margin-right: 10px;
        position: absolute;
        right: 0;
        top: 10px;
    }
    .pill.pro {
       background: linear-gradient(90deg,rgba(232, 19, 136, 1) 0%, rgba(37, 18, 195, 1) 100%);
        position: absolute;
        right: 0;
        top: 10px;
    }


.geoforai-check.closed p {
    display: none;
}


.portfolio .desktop,
.portfolio .mobile {
    position: relative;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.5);
    display: block;
    border-radius: 10px;
    overflow: hidden;
    margin: 30px 0;
    padding: 0;
}     


/* FOOTER MENU DESKTOP */
 
footer {
    background: #1c1c1c;
    position: relative;
    background-repeat: no-repeat;
    padding-top: 30px;
}
    footer .row {
        padding: 45px 0;
    }

.row.footer-menu {
}
    footer .flex-row ul {
        flex-direction: row;
        padding: 0;
        margin: 0;
    }
    footer .flex-column ul {
        flex-direction: column;
        margin: 0;
    }
    footer ul.menu a {
        padding: 0 20px 10px 0!important;
        color: #FFF;
        font-size: 95%;
        line-height: 150%;
    }
    .footer-menu ul.menu > li > a,
    span.strong {
        font-weight: 600;
    }
    .sub-footer ul,
    .sub-footer ul li,
    .footer-menu ul,
    .footer-menu ul li {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    footer strong,
    footer,
    footer table td,
    footer a {
        color: #FFF;
        font-size: 16px;
        line-height: 28px;
        text-decoration: none;
        transition: opacity 0.15s ease-in-out;
    }   

        footer a:hover {
            opacity: 0.75;
        }

        footer .hero {
            position: absolute;
            right: 30px;
            bottom: -15px;
        }
    .row.sub-footer {
        padding: 20px 0 10px 0;
    }
    subfooter a,
    subfooter p{
        font-size: 14px;
        opacity: 0.75;
        text-decoration: none;
    }
    subfooter ul {
        flex-direction: column;
        margin: 0 auto;
    }
    subfooter ul li{
        float: left;
        padding-right: 20px;
        display: inline-block;
    }
}

@media (min-width:1050px) {
    .sub-footer .menu,
    .footer-menu .menu {
        display: flex;
    }
    .sub-footer .menu a,
    .footer-menu .menu a {
        text-decoration: none;
        padding: 0 20px 0 0;
        display: inline-block;
    }

    .footer-menu .menu .menu-item {
        position: relative;
    }

    .footer-menu .menu .menu-item > a:hover,
    .footer-menu .menu .menu-item.current-menu-item > a {
        opacity: 0.75;
    }
}

/* FOOTER MOBILE */

@media (max-width:1049px) {
    .footer-menu .col-12{
        flex-direction: column;
    }
    footer .copyright {
        margin-top: 30px;
    }
        .footer-menu .menu a {
            text-decoration: none;
            padding: 0;
            display: inline-block;
        }
}
 
