/*
Theme Name:   Genesis Block Theme Child
Theme URI:    http://example.com/twenty-fifteen-child/
Description:  Theme for Mea based on genesis block theme
Author:       John Doe
Author URI:   http://example.com
Template:     genesis-block-theme
Version:      1.0.1
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Tags:         light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
Text Domain:  genesis-block-theme-child
*/

/* Overide the parent theme
#page {
    padding-top: 0;
}
.container {
    max-width: 100%;
    padding: 0;
}
#primary {
    width: 100%;
    max-width: 100%;
}
*/

:root {
    --dark-green: #0E1900;
    --light-green: #B6E25A;
    --green: #7FB736;
    --white: #FFFFFF;
    --grey: #F1F1F1;
    --rounded-corner: 200px;
}

html {
    font-size: 16px;
}

/* ------------------------------------------------------------
Typography
-------------------------------------------------------------*/
body,
button,
p,
blockquote,
span,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-green);
    font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 2.5rem;
}

body,
button {
    font-size: 16px;
}

h1 {
    font-size: 4rem;
    /* 64px */
}

h2 {
    font-size: 2.5rem;
    /* 40px */
}

h3 {
    font-size: 1.5rem;
    /* 24px */
}


@media (max-width: 1000px) {
    h1 {
        font-size: 3rem;
        /* 40px */
    }

    h2 {
        font-size: 2rem;
        /* 24px */
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 2.5rem;
        /* 40px */
    }


    h2 {
        font-size: 1.5rem;
        /* 24px */
    }

    h3 {
        font-size: 1.25rem;
        /* 20px */
    }
}

h4 {
    font-size: 1.125rem;
    /* 18px */
}

button {
    font-size: 1.0625rem;
    /* 17px */
}

button.small {
    font-size: 0.75rem;
    /* 12px */
}

p.lead {
    font-size: 1.375rem;
    /* 22px */
}

blockquote {
    font-size: 2rem;
    /* 32px */
}

.green {
    color: var(--green);
}

/* --------------------------------------------------------------
Links
-------------------------------------------------------------- */
a {
    color: var(--green);
    text-decoration: none;
}

a:hover,
a:focus,
a:active {
    color: var(--green);
}

a {
    text-decoration: none;
}

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:active {
    text-decoration: none;
}

.entry-content p a {
    color: var(--dark-green);
    box-shadow: none;
}

.entry-content p a:hover,
.entry-content p a:focus,
.entry-content p a:active {
    color: var(--green);
    box-shadow: none;
}

.entry-content p a,
.entry-content p a:hover,
.header-text a,
.header-text a:hover,
.entry-content .meta-list a,
.post-navigation a:hover .post-title,
.entry-header .entry-title a:hover,
#page .more-link:hover,
.site-footer a:hover,
.main-navigation a:hover,
.main-navigation ul li.current-menu-item a,
.main-navigation ul li.current-page-item a {
    color: var(--green);
}
.menu .sub-menu {
        box-shadow: 0px 11px 21px rgb(0 0 0 / 7%);
}
.site-header .menu-item-has-children:hover ul, .main-navigation li:focus-within ul {
	animation-name: fadeInMea;
}
@keyframes fadeInMea {
	0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
/* --------------------------------------------------------------
Form Elements
-------------------------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button,
.comment-navigation a {
    background: var(--light-green);
    border: none;
    border-radius: 15px;
    color: #fff;
    font-family: "Public Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.wp-block-button__link strong {
    font-weight: 300;
}

.wp-block-button__link {
    color: var(--dark-green);
    background-color: var(--light-green);
}

.wp-block-button__link:hover,
.wp-block-button__link:focus,
.wp-block-button__link:active {
    color: var(--dark-green);
    background-color: var(--light-green);
    translate: 0 -2px;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.4);
    transition: 0.3s;
}
button.wp-block-button__link {
	color: var(--dark-green);
    background-color: var(--light-green);
    border-radius: 9999px;
    box-shadow: none;
    text-decoration: none;
    padding: calc(.667em + 2px) calc(1.333em + 2px);
    font-size: 1.125em;
	font-weight: 300;
}

.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-background),
.wp-block-button .wp-block-button__link.is-style-outline:not(.has-background) {
    color: var(--white);
    background-color: none;
    border-color: var(--white);
}

.has-dark-green-background-color:hover {
    background-color: var(--dark-green);
}

.wp-block-button.is-black-outline>.wp-block-button__link:not(.has-background),
.wp-block-button .wp-block-button__link.is-black-outline:not(.has-background) {
    border-color: var(--dark-green) !important;
    color: var(--dark-green) !important;
}

/* --------------------------------------------------------------
Other
-------------------------------------------------------------- */
.mb-0 {
    margin-bottom: 0 !important;
}

.mb-4 {
    margin-bottom: 4rem;
}

.mb-6 {
    margin-bottom: 6rem;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-6 {
    margin-top: 6rem !important;
}

.has-dark-green-background-color {
    background-color: var(--dark-green);
}
.has-light-green-color {
    color: var(--light-green);
}

:where(.is-layout-flex) {
    gap: 1.25em;
}

.site-content {
    padding: 0;
}

/* --------------------------------------------------------------
Top Navigatioite
-------------------------------------------------------------- */
.site-identity {
    color: var(--white);
}

#site-navigation li a {
    font-size: 1.0625rem;
    font-weight: 300;
}

.main-navigation a {
    color: var(--white);
}

.site-title-wrap img {
    max-width: 123px;
}

.site-title-wrap {
    width: auto;
}

.main-navigation a:hover {
    color: var(--green);
}

.site-header {
    background-color: transparent;
    position: absolute;
}

.nav-container {
    padding: 0;
}

.site-identity {
    display: flex;
    justify-content: space-between;
}

.top-navigation {
    padding-left: 24px;
    padding-right: 24px;
    background-color: var(--dark-green);
}
.search .top-navigation
.page-id-3142 .top-navigation,
.page-id-3142 .top-navigation,
.page-id-66 .top-navigation,
.page-id-2329 .top-navigation,
.page-id-5630 .top-navigation,
.page-template-page-case-studies .top-navigation,
.page-id-64 .top-navigation,
.page-id-2660 .top-navigation,
.page-template-page-blog .top-navigation {
    background-color: var(--white);
}

.top-navigation-center {
    display: flex;
    align-items: center;
    text-align: center;
    width: 50%;
    flex-grow: 4;
}

.top-navigation .main-navigation {
    text-align: center;
}

.top-navigation-right {
    display: flex;
    justify-content: flex-end;
    width: auto;
    align-items: center;
    gap: 30px;
}

#page {
    padding-top: 0;
}

.main-navigation ul li.current-menu-item ul a,
.main-navigation ul li.current-page-item ul a {
    color: var(--dark-green);
}

.site-header .menu-item-has-children>a::after,
.site-header .page_item_has_children>a::after {
    font-size: 1.3rem;
    padding-left: 1rem;
}

.site-header .sub-menu::before {
    border-bottom-color: var(--white);
}

.search .site-header .sub-menu::before,
.page-id-3142 .site-header .sub-menu::before,
.page-id-3142 .site-header .sub-menu::before,
.page-id-66 .site-header .sub-menu::before,
.page-id-2329 .site-header .sub-menu::before,
.page-id-5630 .site-header .sub-menu::before,
.page-template-page-case-studies .site-header .sub-menu::before,
.page-id-64 .site-header .sub-menu::before,
.page-id-2660 .site-header .sub-menu::before,
.page-template-page-blog .site-header .sub-menu::before {
    border-bottom-color: var(--dark-green);
}

.drawer__search {
    margin-top: 90px;
}

.drawer__login {
    margin-top: 20px;
    font-size: 1.875rem;
}

.main-navigation .sub-menu,
.main-navigation .children {
    background-color: var(--white);
    border-radius: 15px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.main-navigation .sub-menu a,
.main-navigation .children a {
    color: var(--dark-green);
}

.main-navigation .sub-menu a:hover,
.main-navigation .children a:hover,
.main-navigation .sub-menu a:focus,
.main-navigation .children a:focus,
.main-navigation .sub-menu a:active,
.main-navigation .children a:active {
    color: var(--green) !important;
}

.main-navigation li ul a,
.main-navigation li ul li a {
    padding: 3px 20px;
}

.main-navigation ul .sub-menu li.current-menu-item a,
.main-navigation ul .sub-menu li.current-page-item a {
    color: var(--green);
}

.login a {
    color: var(--white);
}

.main-navigation li ul a,
.main-navigation li ul li a {
    border: 0;
}

.menu-item-type-custom>h4 {
    margin-bottom: 0;
    margin-left: 20px;
    font-weight: 500;
    margin-top: 30px;
	color:var(--green);
}

.menu-item-5553>h4 {
    margin-top: 0;
}

.search .menu-item-type-custom>h4,
.page-id-3142 .menu-item-type-custom>h4,
.page-id-3142 .menu-item-type-custom>h4,
.page-id-66 .menu-item-type-custom>h4,
.page-id-2329 .menu-item-type-custom>h4,
.page-id-5630 .menu-item-type-custom>h4,
.page-template-page-case-studies .menu-item-type-custom>h4,
.page-id-64 .menu-item-type-custom>h4,
.page-id-2660 .menu-item-type-custom>h4,
.page-template-page-blog .menu-item-type-custom>h4 {
    color: var(--green);
}

/*
* Search
*/

form[id^="search-form-"] input {
    outline: none;
}

form[id^="search-form-"] input[type=search] {
    -webkit-appearance: textfield;
    -webkit-box-sizing: content-box;
    font-family: inherit;
    font-size: 100%;
}

input::-webkit-search-decoration,
input::-webkit-search-cancel-button {
    display: none;
}


form[id^="search-form-"] input[type=search] {
    background: #00000000 url('assets/interface-search.svg') no-repeat 14px center;
    border: solid 1px #ccc;
    padding: 4px 0;
    width: 55px;

    -webkit-border-radius: 10em;
    -moz-border-radius: 10em;
    border-radius: 10em;

    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
}

form[id^="search-form-"] input[type=search]:focus {
    width: 130px;
    background: #00000000 url('assets/interface-search-grey.svg') no-repeat 14px center;
    background-color: #fff;
    border-color: #66CC75;
    -webkit-box-shadow: 0 0 5px rgba(109, 207, 246, .5);
    -moz-box-shadow: 0 0 5px rgba(109, 207, 246, .5);
    box-shadow: 0 0 5px rgba(109, 207, 246, .5);
}

form[id^="search-form-"] input:-moz-placeholder {
    color: #999;
}

form[id^="search-form-"] input::-webkit-input-placeholder {
    color: #999;
}

form[id^="search-form-"] input[type=search] {
    width: 26px;
    padding: 9px 8px;
    color: transparent;
    cursor: pointer;
}

form[id^="search-form-"] input[type=search]:hover {
    background-color: #ffffff29;
}

form[id^="search-form-"] input[type=search]:focus {
    width: 130px;
    padding-left: 38px;
    color: #000;
    background-color: #fff;
    cursor: auto;
}

form[id^="search-form-"] input:-moz-placeholder {
    color: transparent;
}

form[id^="search-form-"] input::-webkit-input-placeholder {
    color: transparent;
}

.search--wide form input[type='search'] {
    width: 100% !important;
}

.search--wide {
    display: flex;
    justify-content: flex-start;
}

.search--wide input:-moz-placeholder {
    color: grey !important;
}

.search--wide input::-webkit-input-placeholder {
    color: grey !important;
}

select {
    width: 75px;
}

button,
input[type='button'],
input[type='submit'],
.button,
.page-numbers.current,
.page-numbers:hover,
#page #infinite-handle button,
#page #infinite-handle button:hover,
.comment-navigation a,
.su-button,
.mobile-navigation,
.toggle-active,
.main-navigation .menu-cta a:hover {
    background-color: transparent;
    color: var(--white);
}

.button-toggle span {
    color: var(--white);
}

.mobile-navigation {
    padding: 15px 0;
}

.drawer-menu-explore {
    background-color: var(--dark-green);
}

.drawer .drawer-navigation ul li {
    border-bottom: none;
}

.drawer .drawer-navigation ul li a {
    font-size: 1.875rem;
    color: var(--white);
}

.drawer .drawer-navigation ul li a:hover,
.drawer .drawer-navigation ul li a:active,
.drawer .drawer-navigation ul li a:focus {
    color: var(--green);
}

.drawer .menu-item-has-children .toggle-sub {
    background-color: var(--dark-green);
    display: flex;
}

.drawer .drawer-navigation .sub-menu li:first-child {
    border: none;
}

.drawer .drawer-navigation .sub-menu,
.drawer .drawer-navigation .children {
    margin: 0;
}

.drawer .drawer-navigation .sub-menu li a {
    font-size: 1.25rem;
    padding: 5px 0;
}

@media only screen and (max-width: 1000px) {
    .site-header .nav-container {
        display: none;
    }

    .site-title-wrap {
        max-width: 123px;
    }

    .mobile-navigation {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-navigation .site-title-wrap img {
        float: left;
    }

    .gbi {
        font-size: 2rem;
        font-weight: 300;
    }
}

.page-id-64 .custom-logo-link img,
.page-id-3142 .custom-logo-link img,
.page-id-66 .custom-logo-link img,
.page-id-2329 .custom-logo-link img,
.page-id-5630 .custom-logo-link img,
.page-template-page-case-studies .custom-logo-link img,
.page-id-2660 .custom-logo-link img,
.page-template-page-blog .custom-logo-link img {
    display: none;
}

.page-id-3142 .custom-logo-link,
.page-id-66 .custom-logo-link,
.page-id-2329 .custom-logo-link,
.page-id-5630 .custom-logo-link,
.page-template-page-case-studies .custom-logo-link,
.page-id-2660 .custom-logo-link,
.page-id-64 .custom-logo-link,
.page-template-page-blog .custom-logo-link {
    background-image: url(assets/mea-logo-white.svg);
    background-repeat: no-repeat;
    background-color: #fff;
    background-position: center;
    width: 123px;
    height: 50px;
    display: block;
}

.search-results form[id^="search-form-"] input[type=search],
.search-no-results form[id^="search-form-"] input[type=search],
.page-id-3142 form[id^="search-form-"] input[type=search],
.page-id-66 form[id^="search-form-"] input[type=search],
.page-id-2329 form[id^="search-form-"] input[type=search],
.page-id-5630 form[id^="search-form-"] input[type=search],
.page-template-page-case-studies form[id^="search-form-"] input[type=search],
.page-id-2660 form[id^="search-form-"] input[type=search],
.page-id-64 form[id^="search-form-"] input[type=search],
.page-template-page-blog form[id^="search-form-"] input[type=search] {
    background: #00000000 url('assets/dark-search.svg') no-repeat 10px center;
    border: solid 1px var(--dark-green);
}


.search .site-header,
.page-id-3142 .site-header,
.page-id-66 .site-header,
.page-id-2329 .site-header,
.page-id-5630 .site-header,
.page-template-page-case-studies .site-header,
.page-id-2660 .site-header,
.page-id-64 .site-header,
.page-template-page-blog .site-header {
    background-color: var(--white);
}

.page-id-3142 .site-identity,
.search .site-identity,
.page-id-66 .site-identity,
.page-id-2329 .site-identity,
.page-id-5630 .site-identity,
.page-template-page-case-studies .site-identity,
.page-id-64 .site-identity,
.page-id-2660 .site-identity,
.page-template-page-blog .site-identity {
    color: var(--dark-green);
}

.page-id-3142 .main-navigation a,
.page-id-66 .main-navigation a,
.page-id-2329 .main-navigation a,
.page-id-5630 .main-navigation a,
.page-template-page-case-studies .main-navigation a,
.page-id-64 .main-navigation a,
.page-id-2660 .main-navigation a,
.page-template-page-blog .main-navigation a {
    color: var(--dark-green);
}

.page-id-3142 .main-navigation .sub-menu,
.page-id-3142 .main-navigation .children,
.page-id-66 .main-navigation .sub-menu,
.page-id-66 .main-navigation .children,
.page-id-2329 .main-navigation .sub-menu,
.page-id-2329 .main-navigation .children,
.page-id-5630 .main-navigation .sub-menu,
.page-id-5630 .main-navigation .children,
.page-template-page-case-studies .main-navigation .sub-menu,
.page-template-page-case-studies .main-navigation .children,
.page-id-64 .main-navigation .sub-menu,
.page-id-64 .main-navigation .children,
.page-id-2660 .main-navigation .sub-menu,
.page-id-2660 .main-navigation .children,
.page-template-page-blog .main-navigation .sub-menu,
.page-template-page-blog .main-navigation .children {
    background-color: var(--dark-green);
}

.page-id-3142 .main-navigation .sub-menu a,
.page-id-3142 .main-navigation .children a,
.search .main-navigation .children a,
.page-id-66 .main-navigation .sub-menu a,
.page-id-66 .main-navigation .children a,
.page-id-2329 .main-navigation .sub-menu a,
.page-id-2329 .main-navigation .children a,
.page-id-5630 .main-navigation .sub-menu a,
.page-id-5630 .main-navigation .children a,
.page-template-page-case-studies .main-navigation .sub-menu a,
.page-template-page-case-studies .main-navigation .children a,
.page-id-2660 .main-navigation .sub-menu a,
.page-id-2660 .main-navigation .children a,
.page-id-64 .main-navigation .sub-menu a,
.page-id-64 .main-navigation .children a,
.page-template-page-blog .main-navigation .sub-menu a,
.page-template-page-blog .main-navigation .children a {
    color: var(--white);
}

.page-id-3142 .mobile-navigation,
.page-id-66 .mobile-navigation,
.page-id-2329 .mobile-navigation,
.page-id-5630 .mobile-navigation,
.page-template-page-case-studies .mobile-navigation,
.page-id-2660 .mobile-navigation,
.page-id-64 .mobile-navigation,
.page-template-page-blog .mobile-navigation {
    background-color: var(--white);
    color: var(--dark-green);
}

.page-id-3142 .button-toggle span,
.page-id-66 .button-toggle span,
.page-id-2329 .button-toggle span,
.page-id-5630 .button-toggle span,
.page-template-page-case-studies .button-toggle span,
.page-id-2660 .button-toggle span,
.page-id-64 .button-toggle span,
.page-template-page-blog .button-toggle span {
    color: var(--dark-green);
}

.page-id-3142 .drawer-menu-explore,
.page-id-66 .drawer-menu-explore,
.page-id-2329 .drawer-menu-explore,
.page-id-5630 .drawer-menu-explore,
.page-template-page-case-studies .drawer-menu-explore,
.page-id-2660 .drawer-menu-explore,
.page-id-64 .drawer-menu-explore,
.page-template-page-blog .drawer-menu-explore {
    background-color: var(--white);
}

.page-id-3142 .drawer .menu-item-has-children .toggle-sub,
.page-id-66 .drawer .menu-item-has-children .toggle-sub,
.page-id-2329 .drawer .menu-item-has-children .toggle-sub,
.page-id-5630 .drawer .menu-item-has-children .toggle-sub,
.page-template-page-case-studies .drawer .menu-item-has-children .toggle-sub,
.page-id-2660 .drawer .menu-item-has-children .toggle-sub,
.page-id-64 .drawer .menu-item-has-children .toggle-sub,
.page-template-page-blog .drawer .menu-item-has-children .toggle-sub {
    background-color: var(--white);
    color: var(--dark-green);
}

.page-id-3142 .drawer .drawer-navigation ul li a,
.page-id-66 .drawer .drawer-navigation ul li a,
.page-id-2329 .drawer .drawer-navigation ul li a,
.page-id-5630 .drawer .drawer-navigation ul li a,
.page-template-page-case-studies .drawer .drawer-navigation ul li a,
.page-id-2660 .drawer .drawer-navigation ul li a,
.page-id-64 .drawer .drawer-navigation ul li a,
.page-template-page-blog .drawer .drawer-navigation ul li a {
    color: var(--dark-green);
}

.page-id-3142 .login a,
.page-id-66 .login a,
.page-id-2329 .login a,
.page-id-5630 .login a,
.page-template-page-case-studies .login a,
.page-id-2660 .login a,
.page-id-64 .login a,
.page-template-page-blog .login a {
    color: var(--dark-green);
}

.wpml-ls-legacy-dropdown-click a {
    background-color: transparent;
    border-radius: 30px;
    padding: 13px;
}

.wpml-ls-legacy-dropdown-click a span {
    color: white;
}

.wpml-ls-legacy-dropdown-click .wpml-ls-current-language:hover>a,
.wpml-ls-legacy-dropdown-click a:focus,
.wpml-ls-legacy-dropdown-click a:hover {
    background-color: transparent;
}

.wpml-ls-legacy-dropdown-click .wpml-ls-current-language:hover>a span,
.wpml-ls-legacy-dropdown-click a:focus span,
.wpml-ls-legacy-dropdown-click a:hover span {
    color: rgba(255, 255, 255, 0.3);
}

.wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu {
    border-top: 0;
}

.wpml-ls-legacy-dropdown-click {
    width: 100%;
}

.wpml-ls-legacy-dropdown-click a.wpml-ls-item-toggle:after {
    content: "\e907";
    font-family: gbicons;
    border: 0;
    color: white;
    font-weight: 400;
    font-size: 1.3rem;
    top: inherit;
}

.wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu a {
    border-radius: 0;
}

.wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu {
    top: 50%;
}

.wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu li:first-child a {
    padding-top: 40px;
}

.wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu li:last-child a {
    border-radius: 0 0 30px 30px;
}

.search .wpml-ls-legacy-dropdown-click a,
.page-id-3142 .wpml-ls-legacy-dropdown-click a,
.page-id-66 .wpml-ls-legacy-dropdown-click a,
.page-id-2329 .wpml-ls-legacy-dropdown-click a,
.page-id-5630 .wpml-ls-legacy-dropdown-click a,
.page-template-page-case-studies .wpml-ls-legacy-dropdown-click a,
.page-id-2660 .wpml-ls-legacy-dropdown-click a,
.page-id-64 .wpml-ls-legacy-dropdown-click a,
.page-template-page-blog .wpml-ls-legacy-dropdown-click a {
    border-color: black;
    color: black;
}

.search .wpml-ls-legacy-dropdown-click a span,
.page-id-3142 .wpml-ls-legacy-dropdown-click a span,
.page-id-66 .wpml-ls-legacy-dropdown-click a span,
.page-id-2329 .wpml-ls-legacy-dropdown-click a span,
.page-id-5630 .wpml-ls-legacy-dropdown-click a span,
.page-template-page-case-studies .wpml-ls-legacy-dropdown-click a span,
.page-id-2660 .wpml-ls-legacy-dropdown-click a span,
.page-id-64 .wpml-ls-legacy-dropdown-click a span,
.page-template-page-blog .wpml-ls-legacy-dropdown-click a span {
    color: black;
}

.search .wpml-ls-legacy-dropdown-click a.wpml-ls-item-toggle:after,
.page-id-3142 .wpml-ls-legacy-dropdown-click a.wpml-ls-item-toggle:after,
.page-id-66 .wpml-ls-legacy-dropdown-click a.wpml-ls-item-toggle:after,
.page-id-2329 .wpml-ls-legacy-dropdown-click a.wpml-ls-item-toggle:after,
.page-id-5630 .wpml-ls-legacy-dropdown-click a.wpml-ls-item-toggle:after,
.page-template-page-case-studies .wpml-ls-legacy-dropdown-click a.wpml-ls-item-toggle:after,
.page-id-2660 .wpml-ls-legacy-dropdown-click a.wpml-ls-item-toggle:after,
.page-id-64 .wpml-ls-legacy-dropdown-click a.wpml-ls-item-toggle:after,
.page-template-page-blog .wpml-ls-legacy-dropdown-click a.wpml-ls-item-toggle:after {

    color: black;
}


.search .wpml-ls-legacy-dropdown-click .wpml-ls-current-language:hover>a span,
.search .wpml-ls-legacy-dropdown-click a:focus span,
.search .wpml-ls-legacy-dropdown-click a:hover span,
.page-id-3142 .wpml-ls-legacy-dropdown-click .wpml-ls-current-language:hover>a span,
.page-id-3142 .wpml-ls-legacy-dropdown-click a:focus span,
.page-id-3142 .wpml-ls-legacy-dropdown-click a:hover span,
.page-id-66 .wpml-ls-legacy-dropdown-click .wpml-ls-current-language:hover>a span,
.page-id-66 .wpml-ls-legacy-dropdown-click a:focus span,
.page-id-66 .wpml-ls-legacy-dropdown-click a:hover span,
.page-id-2329 .wpml-ls-legacy-dropdown-click .wpml-ls-current-language:hover>a span,
.page-id-2329 .wpml-ls-legacy-dropdown-click a:focus span,
.page-id-2329 .wpml-ls-legacy-dropdown-click a:hover span,
.page-id-5630 .wpml-ls-legacy-dropdown-click .wpml-ls-current-language:hover>a span,
.page-id-5630 .wpml-ls-legacy-dropdown-click a:focus span,
.page-id-5630 .wpml-ls-legacy-dropdown-click a:hover span,
.page-template-page-case-studies .wpml-ls-legacy-dropdown-click .wpml-ls-current-language:hover>a span,
.page-template-page-case-studies .wpml-ls-legacy-dropdown-click a:focus span,
.page-template-page-case-studies .wpml-ls-legacy-dropdown-click a:hover span,
.page-id-2660 .wpml-ls-legacy-dropdown-click .wpml-ls-current-language:hover>a span,
.page-id-2660 .wpml-ls-legacy-dropdown-click a:focus span,
.page-id-2660 .wpml-ls-legacy-dropdown-click a:hover span,
.page-id-64 .wpml-ls-legacy-dropdown-click .wpml-ls-current-language:hover>a span,
.page-id-64 .wpml-ls-legacy-dropdown-click a:focus span,
.page-id-64 .wpml-ls-legacy-dropdown-click a:hover span,
.page-template-page-blog .wpml-ls-legacy-dropdown-click .wpml-ls-current-language:hover>a span,
.page-template-page-blog .wpml-ls-legacy-dropdown-click a:focus span,
.page-template-page-blog .wpml-ls-legacy-dropdown-click a:hover span {
    color: var(--green);
}

/* --------------------------------------------------------------
Home
-------------------------------------------------------------- */

.pr-8 {
    padding-right: 8rem;
}

@media (max-width: 1000px) {
    .pr-8 {
        padding-right: 0;
    }
}

.rounded-corner-bottom-right {
    padding-top: 216px;
    padding-right: 24px;
    padding-bottom: 97px;
    padding-left: 24px;
    overflow: hidden;
}

.rounded-corner-bottom-right::before,
.rounded-corner-bottom-right {
    border-radius: 0 0 var(--rounded-corner) 0;
}

.rounded-corner-bottom-right h1 {
    margin-bottom: 2.1rem;
}

@media (max-width: 1037px) {
    .rounded-corner-bottom-right h1 {
        font-size: 3rem;
    }
}

.rounded-corner-bottom-right .banner-spacer {
    height: 4.9em;
}

.arrow-column {
    background: url('assets/down-arrow-long.svg') no-repeat;
    height: 100%;
    background-position: center bottom 70px;
}

@media (max-width: 1000px) {
    .rounded-corner-bottom-right {
        padding-top: 7em;
        padding-bottom: 7em;
    }

    .rounded-corner-bottom-right .banner-spacer {
        height: 3em;
    }
}

@media (max-width: 600px) {
    .rounded-corner-bottom-right {
        padding-top: 8em;
    }

    .rounded-corner-bottom-right .banner-spacer {
        height: 2em;
    }

    .arrow-column {
        background: url('assets/down-arrow-short.svg') no-repeat;
        height: 72px;
        background-position: right 13vw top !important;
    }

    .page-id-2 .rounded-corner-bottom-right {
        padding-top: 8rem;
    }
}

.home-banner-logo {
    position: absolute;
    right: -43%;
    top: -226px;
}

@media (max-width: 1000px) {
    .home-banner-logo {
        top: -26px;
    }

    .home-banner-logo img {
        width: 85%;
    }
}

@media (max-width: 600px) {
    .home-banner-logo {
        top: -26px;
        right: -48%;
    }

    .home-banner-logo img {
        width: 75%;
    }
}

@media (max-width: 600px) {
    .rounded-corner-bottom-right {
        padding-bottom: 272px;
    }

    .rounded-corner-bottom-right .wp-block-button__link {
        margin-right: 7rem;
    }

    .rounded-corner-bottom-right::before,
    .rounded-corner-bottom-right {
        border-radius: 0 0 165px 0;
    }
}

.js-fullscreen-slider > .gb-layout-column-wrap .slick-slide,
.js-fullscreen-slider > .gb-layout-column-wrap .slick-slide > .gb-block-layout-column-inner {
    height: 100%;
}

@keyframes subtleBackgroundZoom {
  0% {
    background-size: auto 100%;
  }
  100% {
    background-size: auto 110%;
  }
}
.js-fullscreen-slider .slick-initialized .slick-slide {
	background-size: auto 100%;
	background-repeat: no-repeat;
	background-position: center center;
}
.js-fullscreen-slider .slick-initialized .slick-slide.slick-active {
	animation: subtleBackgroundZoom 8s ease-in-out forwards;
}
.js-fullscreen-slider .slider-control__container {
	flex-wrap: nowrap;
}

@media (min-width: 1024px) {
	@keyframes subtleBackgroundZoom {
	  0% {
		background-size: 100%;
	  }
	  100% {
		background-size: 110%;
	  }
	}

	.js-fullscreen-slider .slick-initialized .slick-slide {
		background-size: 100%;
		background-repeat: no-repeat;
		background-position: center center;
	}
	.js-fullscreen-slider .slick-initialized .slick-slide.slick-active {
		animation: subtleBackgroundZoom 8s ease-in-out forwards;
	}
}

/* .js-fullscreen-slider > .wp-block-group__inner-container {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.js-fullscreen-slider > .wp-block-group__inner-container.show {
    opacity: 1;
}

.js-fullscreen-slider > .wp-block-group__inner-container > * {
    display: none;
}

.js-fullscreen-slider > .wp-block-group__inner-container > *.active {
    display: block;
}

/* Hide all slides once Slick is initialized 
.js-fullscreen-slider > .wp-block-group__inner-container.slick-initialized > * {
    display: block;
} */


.the-client-slider .slick-slide {
    margin: 0 30px;
}
  
.the-client-slider .slick-slide:last-child {
    margin-right: 0;
}

/* --------------------------------------------------------------
Home - Section 2
-------------------------------------------------------------- */
.section-2 {
    margin-top: 175px;
}

@media (max-width: 1000px) {
    .section-2 {
        margin-top: 80px;
    }
}

.section-2-text {
    border: 2px solid var(--green);
    border-radius: 23rem 0 0 23rem;
    padding: 9vw 13vw 9vw 15vw;
    margin-right: -10px;
}

@media (max-width: 1000px) {
    .section-2-text {
        padding: 9vw 7vw 9vw 15vw;
    }
}

.down-arrow {
    margin-bottom: 90px;
}

@media (max-width: 782px) {

    .section-2-text {
        padding: 12vw 7vw 12vw 26vw;
        margin-left: 24px;
    }
}

@media (max-width: 600px) {
    .down-arrow {
        margin-bottom: -34px;
    }

    .down-arrow figure {
        float: right;
    }

    #post-2 .down-arrow {
        display: none;
    }

    .section-2-text {
        border-radius: 50vw 50vw 0 0;
        padding: 260px 50px 35px 50px;
        margin-left: 24px;
        margin-right: 24px;
        margin-top: -238px;
    }
}

/* --------------------------------------------------------------
Home - Section 3
-------------------------------------------------------------- */
.dark-tube {
    border-radius: 285px 0 0 285px;
    padding: 6.25rem 0 6.25rem 12rem;
    margin-left: calc(50% - 47vw) !important;
    overflow: hidden;
    margin-bottom: 120px;
    margin-top: 170px;
}

.dark-tube .dark-tube-logo {
    position: absolute;
    top: -547px;
    right: 0;
    width: 100%;
}

.dark-tube-logo img {
    width: 123%;
    max-width: 123%;
    margin-top: 130px;
}

@media (max-width: 1000px) {

    .dark-tube {
        border-radius: 0;
        padding: 6.25rem 0 6.25rem 3rem;
        margin-left: calc(50% - 50vw) !important;
    }

    .dark-tube .dark-tube-logo {
        top: -290px;
        right: 5px;
    }

    .dark-tube-logo img {
        width: 150%;
        max-width: 150%;
    }
}

@media (max-width: 600px) {
    .dark-tube {
        padding: 4.25rem 24px 123vw 24px;
        border-radius: 0 0 50vw 50vw;
        margin-bottom: 2.5rem;
        margin-top: -38px;
        position: relative;
        z-index: 455;
    }

    .dark-tube .dark-tube-logo {
        top: -85px;
        right: 24px;
    }

    .dark-tube-logo img {
        width: 100vw;
        max-width: 100vw;
    }

}

/* --------------------------------------------------------------
Home - Section 3
-------------------------------------------------------------- */
.section-3 {
    background: linear-gradient(270deg, rgba(254, 252, 2, 1) -26%, rgba(68, 183, 1, 1) 55%);
    border-radius: 0 0 0 var(--rounded-corner);
    padding-top: 7em;
    padding-bottom: 7em;
}

@media (max-width: 600px) {
    .section-3 {
        border-radius: 0 0 150px 0;
        padding-top: 89px;
        padding-bottom: 10px;
    }
}

.section-3__bg-logo {
    position: absolute;
    top: -80px;
    z-index: -1;
}

.section-3 .semi-circle-right {
    border-radius: 0 434px 434px 0;
    overflow: hidden;
    height: 486px;
    width: 45vw;
    margin-left: 0;
}

.section-3 .semi-circle-right img {
    height: 100%;
    object-fit: cover;
}

.ui-box {
    position: relative;
    left: calc(50vw - 50%);
    top: -148px;
}

.section-3 .list-item-hover h3 {
    margin-bottom: 0;
}

.section-3 .list-item-hover {
    padding: 30px 14px 6px 14px;
    margin-right: 3vw;
}

.list-item-hover a {
    color: var(--dark-green) !important;
    display: block;
}

.section-3 .list-item-hover:hover {
    background-color: #ffffff30;
    border-radius: 75px;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}

@media (max-width: 1000px) {
    .section-3 .semi-circle-right {
        width: 85vw;
    }

    .section-3::before {
        background-size: 89%;
        background-position-y: 56px;
        background-position-x: -74px;
    }

    .section-3 .wp-container-28 {
        display: grid;
        grid-template-columns: auto;
    }

    .section-3-col {
        display: grid !important;
    }

    .section-3 .list-item-hover {
        margin-left: 3vw;
        padding: 30px 24px 6px 14px;
    }

    .section-3-roll-over-links {
        padding-top: 100px;
    }

    .list-item-hover>.wp-block-column:first-child {
        flex-grow: 0;
        display: block;
        min-width: 70px;
    }
}

@media (max-width: 600px) {
    .section-3 .semi-circle-right {
        height: 286px;
    }

    .section-3-roll-over-links {
        padding-top: 55px;
    }
}

/* --------------------------------------------------------------
Home - Section 4
-------------------------------------------------------------- */
.section-4 {
    background-color: var(--grey);
    border-radius: 0 370px 370px 0;
    box-shadow: 0px 25px 21px rgb(0 0 0 / 16%);
    padding-top: 190px;
    padding-bottom: 150px;
    margin-top: 218px !important;
    margin-bottom: 218px !important;
    width: 97vw !important;
}

.section-4 .wp-block-buttons {
    margin-top: 13px;
}

.section-4 img {
    position: absolute;
    width: 154%;
    left: -75%;
    top: -320px;
    max-width: 800px;
}

.section-4 h2 {
    font-size: 4rem;
}

@media (max-width: 1000px) {
    .section-4 {
        border-radius: 0;
        width: 100vw !important;
    }

    .section-4>.gb-layout-column-wrap {
        grid-template-areas: unset;
        grid-template-columns: none;
    }

    .section-4 img {
        display: none;
    }
}

@media (max-width: 600px) {
    .section-4-right-column>.gb-block-layout-column-inner {
        padding: 50px 70px !important;
    }

    .section-4>.gb-layout-column-wrap {
        grid-template-columns: 1fr 1fr;
        grid-template-areas: "col1 col2";
    }

    .section-4 img {
        display: inline;
        top: 35rem;
        width: 100vw;
        left: auto;
    }

    .section-4-right-column>.gb-block-layout-column-inner {
        padding-bottom: 20rem !important;
    }

    .section-4 {
        border-radius: 0 0 300px 300px;
        margin-top: 40px !important;
        padding-top: 0;
        margin-bottom: 100px !important;
    }

    .section-4 h2 {
        font-size: 2.5rem;
    }
}

/* --------------------------------------------------------------
Home - Section Video
-------------------------------------------------------------- */
.section-video {
    background-image: url('assets/thin-green-line-bg-right-facing.svg');
    background-repeat: no-repeat;
    padding-top: 3rem;
    padding-bottom: 5rem;
    background-position-y: bottom;
    background-position-x: -20px;
}


.video__container .gb-background-cover {
    height: 682px;
    border-radius: 330px 0 0 330px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    margin-left: 9.375rem;
    align-items: center;
}

.play-button a {
    background: var(--wp--preset--color--light-green) url('assets/play.svg') no-repeat center center;
    width: 93px;
    color: var(--wp--preset--color--light-green) !important;
    height: 93px;
    border-radius: 50%;
}

@media only screen and (max-width: 1000px) {
    .section-video .wp-block-embed__wrapper {
        margin-left: 0;
        width: 100%;
        border-radius: 330px 330px 0 0;
    }

    .section-video {
        background-position-x: -139vw;
    }
}

/* --------------------------------------------------------------
Home - Client Logos
-------------------------------------------------------------- */
.section-client-logos {
    margin-top: 10em;
}

.client-logos {
    margin-top: 100px;
}

#post-37 .client-logos {
    margin-top: 40px;
}

@media (max-width: 600px) {
    .section-client-logos {
        margin-top: 6em;
        margin-left: 14px;
    }

    #post-2 .section-client-logos {
        margin-top: 60px;
    }

    .section-client-logos .gb-block-layout-column-inner {
        padding-right: 20vw;
    }

    .client-logos {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        margin-left: 14px;
    }

    #post-2 .client-logos {
        margin-top: -30px;
    }

    .client-logos>.wp-block-column {
        width: 110px !important;
        height: 75px;
        align-items: center;
        display: flex;
    }
}

/* --------------------------------------------------------------
Home - Section 5
-------------------------------------------------------------- */

.section-5 {
    background-color: var(--grey);
    border-radius: 0 var(--rounded-corner) 0 0;
    margin-top: 120px !important;
}

.section-5>.gb-layout-column-wrap {
    max-width: 75vw;
    margin-left: calc(50% - 75vw / 2);
}

.view-all {
    padding-top: 1rem;
    padding-right: 4vw;
}

.view-all a {
    color: var(--dark-green) !important;
}

.view-all a:hover {
    color: var(--green) !important;
}

.section-5 .gb-block-layout-column-inner {
    padding-top: 9.45rem;
    padding-bottom: 3.5rem;
}

@media (max-width:1000px) {
    .section-5 .gb-block-layout-column-inner {
        padding-top: 7rem;
        padding-bottom: 3rem;
    }
}

@media only screen and (max-width: 600px) {
    .section-5 {
        border-radius: 0 82px 0 0 !important;
        margin-top: 30px !important;
    }

    .section-5.gb-layout-columns-2>.gb-layout-column-wrap.gb-is-responsive-column {
        grid-template-columns: 1fr 60px;
        grid-template-areas: "col1 col2";
    }

    .section-5>.gb-layout-column-wrap {
        max-width: 90vw;
        grid-template-columns: 1fr;
    }

    .section-5 .gb-block-layout-column-inner {
        padding-top: 3.5rem;
        padding-bottom: 3rem;
    }

    .view-all {
        padding-top: 0.3rem;
    }

    .section-5>.gb-layout-column-wrap {
        margin-left: 24px;
    }
}

@media (max-width: 781px) {
    .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column {
        flex-basis: auto !important;
    }

    .wp-block-column.is-vertically-aligned-top,
    .wp-block-column.is-vertically-aligned-center,
    .wp-block-column.is-vertically-aligned-bottom {
        width: 20px;
    }
}

/* --------------------------------------------------------------
Home - Section 6
-------------------------------------------------------------- */
.section-6 {
    background-color: var(--grey);
    padding-bottom: 6rem;
}

.section-6>.gb-layout-column-wrap {
    max-width: 75vw;
    margin-left: calc(50% - 75vw / 2);
}

@media only screen and (max-width: 600px) {
    .section-6>.gb-layout-column-wrap {
        margin-left: 24px;
        max-width: 90vw;
    }
}

.section-7 {
    background-color: var(--grey);
}

.section-7-inner {
    border-radius: var(--rounded-corner) 0 0 0;
    background: linear-gradient(86deg, rgba(254, 252, 2, 1) 1%, rgba(68, 183, 1, 1) 55%);
    padding-top: 180px;
    padding-bottom: 190px;
    overflow: hidden;
}

@media only screen and (max-width: 600px) {
    .section-7-inner {
        border-radius: 150px 0 0 0;
        padding-bottom: 0;
    }
}

.section-7-bg-logo {
    position: absolute;
    bottom: -400px;
    margin-left: -124px;

}

@media only screen and (max-width: 1400px) {
    .section-7-bg-logo {
        margin-left: -400px;
    }
}

.section-7-bg-logo img {
    height: 1000px;
    width: auto;
}

.section-7 .wp-block-buttons {
    margin-top: 60px;
}

.section-7-right-col h2 {
    width: 423px;
    font-size: 4rem;
}

.section-7-right-col p {
    width: 400px
}

@media only screen and (max-width: 1000px) {
    .section-7-inner {
        padding-top: 11em;
    }

    .section-7 h2 {
        margin-bottom: 1.5rem;
    }

    .section-7 .left-column {
        display: none;
    }

    .section-7 .gb-block-layout-column-inner {
        padding: 0 40px;
    }

    .post-62 .section-7 .gb-block-layout-column-inner {
        padding: 0 40px 100px;
    }

    .section-7-bg-logo img {
        display: none;
    }
}

@media only screen and (max-width: 600px) {
    .section-7-inner h2 {
        font-size: 3.5rem;
        width: 100%;
    }

    .section-7-right-col p {
        width: 100%;
    }

    .section-7-inner {
        padding-top: 159px;
    }
}

/*
* FOOTER
*/
.site-footer {
    background-color: var(--dark-green);
    padding: 0;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: baseline;
    grid-area: logo;
}

.footer-left {
    grid-area: left-menu;
}

.footer-right {
    grid-area: right-menu;
}

.mea-logo-icon-only {
    width: auto;
    height: 66px;
    object-fit: contain;
}

.footer-bottom {
    padding-top: 7%;
    display: grid;
    grid-template-columns: [logo] 26.4% [left-menu] 13.6% [right-menu] auto [social-icons] 14.8% [end];
}

.site-footer a {
    color: var(--white);
    font-weight: 300;
}

.footer-navigation li {
    display: block;
    margin-bottom: 0.625rem;
    font-size: 0.875rem;
}

.footer-bottom h4 {
    color: var(--white);
    margin-bottom: 0.625rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.footer-footer {
    display: grid;
    grid-template-columns: 26.4% [tagline] 22.5% [terms] auto [end];
    padding: 70px 0 20px;
}

.footer-terms {
    grid-area: terms;
}

.footer-terms li {
    display: inline-block;
    margin-right: 0.875rem;
    font-size: 0.875rem;
    vertical-align: super;
}

.footer-tagline {
    width: 100%;
    grid-area: tagline;
}

.site-info {
    color: var(--white);
    font-size: 0.875rem;
}

.social-icons {
    display: flex;
    flex-direction: row;
    gap: 10px;
    grid-area: social-icons;
}

.social-icons img {
    filter: invert(78%) sepia(7%) saturate(3256%) hue-rotate(37deg) brightness(118%) contrast(77%);
}


@media only screen and (max-width: 600px) {
    .footer-bottom {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        grid-template-areas:
            "logo social-icons"
            "left-menu ."
            "right-menu .";
        padding: 12% 48px 0 48px;
        gap: 50px;
    }

    .footer-logo {
        justify-content: flex-start;
    }

    .social-icons {
        justify-content: flex-end;
        align-items: center;
    }

    .footer-footer {
        grid-template-columns: auto;
        grid-template-areas:
            "terms"
            "tagline";
        padding: 50px 48px;
    }

    .footer-footer ul {
        margin: 0;
    }
}

/*cookie piolicy page*/
#post-2410, .privacy-policy .page {
    margin-top: 200px;
}

/*
* ABOUT PAGE
*/

#post-37 .rounded-corner-bottom-right .down-arrow {
    margin-top: 200px;
}

#post-37 .slick-slider li.with-featured-image,
#post-3104 .slick-slider li.with-featured-image {
    padding-right: 50px;
}

#post-37 .featured-news,
#post-3104 .featured-news,
.featured-news.wwm-featured {
    background: var(--grey);
    border-radius: 0;
    padding: 0 0 130px 0;
}

@media only screen and (max-width: 600px) {

    #post-37 .featured-news,
    #post-3104 .featured-news,
	.featured-news.wwm-featured {
        padding: 0 0 40px 0;
    }
}

#post-37 .featured-news h2,
#post-3104 .featured-news h2
.featured-news.wwm-featured h2 {
    color: var(--dark-green);
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 25px;
}

#post-37 .news-controls .news-nav .slick-active button,
#post-3104 .news-controls .news-nav .slick-active button,
.featured-news.wwm-featured .news-controls .news-nav .slick-active button {
    background-color: var(--dark-green);
}

#post-37 .news-nav button,
#post-3104 .news-nav button,
.featured-news.wwm-featured .news-nav button {
    color: var(--grey);
}

#post-37 .news-nav-button-container button,
#post-3104 .news-nav-button-container button,
.featured-news.wwm-featured .news-nav-button-container button {
    background-color: var(--grey);
}

@media only screen and (max-width: 600px) {

    #post-37 .rounded-corner-bottom-right .down-arrow,
    #post-3104 .rounded-corner-bottom-right .down-arrow {
        display: block;
        margin-top: -20px;
        float: right;
        margin-right: 24px;
    }

    #post-37 .rounded-corner-bottom-right,
    #post-3104 .rounded-corner-bottom-right {
        padding-bottom: 6rem;
        padding-top: 8rem;
    }

    #post-37 .rounded-corner-bottom-right p,
    #post-3104 .rounded-corner-bottom-right p {
        padding-right: 12vw;
    }

}

.about-section-2 .section-2-text {
    padding: 7vw 13vw 16vw 15vw;
}

.fullwidth-semicircle-left {
    overflow: hidden;
    border-radius: 0 50vw 50vw 0;
    width: 80vw;
    height: 537px;
    margin-top: -216px;
}

.fullwidth-semicircle-left img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

@media only screen and (max-width: 1294px) {
    .about-section-2-right-column {
        flex-basis: 165% !important;
    }

    .fullwidth-semicircle-left {
        height: 45vw;
        margin-top: -13vw;
    }

    .about-section-2 .section-2-text {
        padding: 10vw 13vw 16vw 15vw;
    }
}

@media only screen and (max-width: 600px) {
    .about-section-2 {
        margin-top: 288px;
    }

    .about-section-2 .section-2-text {
        padding: 33vw 12vw 16vw 12vw;
        border-bottom: none;
    }

    .fullwidth-semicircle-left {
        height: 51vw;
        margin-top: -13vw;
    }

    .fullwidth-semicircle-left img {
        height: 100%;
    }
}



.about-section-3 .gb-is-responsive-column .gb-block-layout-column:first-child {
    margin-top: 160px;
    margin-bottom: 160px;
}

.about-section-3 .gb-block-layout-column-inner p {
    padding-right: 54px;
}

.about-section-3-img-container {
    width: 114vw;
    position: absolute;
}

.about-section-3 img {
    position: absolute;
    margin-left: 186px;
    margin-top: -55px;
}

@media only screen and (max-width: 1113px) {
    .about-section-3-img-container {
        position: relative;
        width: 100%;
    }

    .about-section-3 {
        padding-left: 45px;
    }

    .about-section-3 img {
        right: -15vw;
        margin-left: 0;
        margin-top: 0;
    }
}

@media only screen and (max-width: 600px) {
    .about-section-3 {
        padding-left: 0;
    }

    .about-section-3 .gb-block-layout-column-inner {
        padding: 0 13vw 9vw 16vw;
    }

    .about-section-3 .gb-is-responsive-column .gb-block-layout-column:first-child {
        margin-top: 75px;
        margin-bottom: 0;
    }

    .about-section-3 img {
        right: 0;
        position: inherit;
        margin-bottom: -85px;
    }

    .about-section-3-image-column .gb-block-layout-column-inner {
        margin: 0;
        padding: 0;
    }
}

.about-section-4 {
    z-index: 2;
}

.about-section-4::before {
    background-image: none;
}

.about-section-4 .list-item-hover {
    padding: 0;
    margin-right: 0;
    border-left: 2px solid var(--white);
    margin-bottom: 0;
}

.about-section-4 .list-item-hover:hover {
    padding: 0;
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
}

.about-section-4 .list-item-hover .wp-block-column {
    padding-left: 85px;
    padding-right: 285px;
}

@media only screen and (max-width: 1200px) {
    .about-section-4 .list-item-hover .wp-block-column {
        padding-right: 30px;
    }

    #post-37 .section-3 .list-item-hover {
        margin-left: 80px;
    }
}

@media only screen and (max-width: 600px) {
    .about-section-4 .list-item-hover .wp-block-column {
        padding-right: 0;
        padding-left: 30px;
    }

    #post-37 .section-3 .list-item-hover {
        margin-left: 30px;
    }
}

.about-section-4 .gb-container-content {
    padding-left: 164px;
}

.about-section-4 .hover-item {
    padding: 40px 114px 23px;
}

@media only screen and (max-width: 600px) {
    .about-section-4 .hover-item {
        padding: 40px 95px 23px;
    }
}

.about-section-4 .hover-item:hover {
    background-color: #ffffff30;
    border-radius: 50vw;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}

@media only screen and (max-width: 600px) {
    .about-section-4 .hover-item:hover {
        background-color: #ffffff30;
        border-radius: 50vw 0 0 50vw;
        box-shadow: 0 3px 10px rgb(0 0 0 / 20%);
    }
}

div[class^="dot-"] {
    height: 15px;
    width: 15px;
    background-color: #43b602;
    border-radius: 50%;
    border: solid 2px var(--white);
    display: inline-block;
    position: absolute;
    left: 158px;
    top: 0;
}

.about-section-4 .hover-item:hover div[class^="dot-"] {
    background-color: var(--white);
    height: 30px;
    width: 30px;
    left: 150px;
}

@media only screen and (max-width: 1000px) {
    div[class^="dot-"] {
        left: 74px;
    }

    .about-section-4 .hover-item:hover div[class^="dot-"] {
        left: 67px;
    }
}

@media only screen and (max-width: 600px) {
    div[class^="dot-"] {
        left: 24px;
    }

    .about-section-4 .hover-item:hover div[class^="dot-"] {
        left: 17px;
    }

    .about-section-4 .hover-item {
        padding: 50px 30px 50px 90px;
    }
}

.about-section-4 .hover-item:hover .dot-1 {
    top: -7.5px;
}

.about-section-4 .hover-item .dot-2 {
    top: 170px;
}

.about-section-4 .hover-item:hover .dot-2 {
    top: 163px;
}

.about-section-4 .hover-item .dot-3 {
    top: 340px;
}

.about-section-4 .hover-item:hover .dot-3 {
    top: 333px;
}

.about-section-4 .hover-item .dot-4 {
    top: 510px;
}

.about-section-4 .hover-item:hover .dot-4 {
    top: 503px;
}

@media only screen and (max-width: 600px) {
    .about-section-4 .hover-item .dot-2 {
        top: 448px;
    }

    .about-section-4 .hover-item:hover .dot-2 {
        top: 441px;
    }

    .about-section-4 .hover-item .dot-3 {
        top: 774px;
    }

    .about-section-4 .hover-item:hover .dot-3 {
        top: 767px;
    }

    .about-section-4 .hover-item .dot-4 {
        top: 1124px;
    }

    .about-section-4 .hover-item:hover .dot-4 {
        top: 1107px;
    }
}

@media only screen and (max-width: 1000px) {
    .about-section-4 .gb-container-content {
        padding: 0;
    }

    .about-section-4 .list-item-hover>.wp-block-column:first-child {
        flex-grow: 1;
    }
}

.global-client-base-group {
    border: solid 2px var(--green);
    border-radius: 50vw 0 0 50vw;
    width: 100vw;
    margin: 120px 0 120px -20vw;
}

.global-client-base-group .client-logos {
    margin-top: 45px;
    margin-bottom: 100px;
}

.global-client-base-text {
    width: 34vw;
}

@media only screen and (max-width: 1000px) {
    .global-client-base-group .wp-block-group__inner-container {
        padding: 0 0 0 8rem;
    }

    .global-client-base-group {
        margin-left: 1px;
    }

    .global-client-base-group .client-logos {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .global-client-base-text {
        width: 54vw;
    }
}

@media only screen and (max-width: 783px) {
    .global-client-base-group {
        border-radius: 50vw 50vw 0 0;
        border-bottom: 0;
    }

    .global-client-base-group .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column {
        display: contents;
    }

    .global-client-base-group {
        width: 90vw;
        margin-left: 0;
    }

    .global-client-base-group .wp-block-group__inner-container {
        padding: 50px 0 0 5rem;
    }
}

@media only screen and (max-width: 600px) {
    .global-client-base-group .client-logos {
        grid-template-columns: repeat(2, 1fr);
        width: 67vw;
    }

    .global-client-base-group .gb-block-layout-column-inner {
        padding-right: 0;
    }

    .global-client-base-group .wp-block-group__inner-container {
        padding: 50px 0 0 10vw;
    }

    .global-client-base-group .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column {
        display: flex;
    }

    .fullwidth-semicircle-left {
        margin-top: -16vw;
        width: auto;
        border-radius: 0 50vw 50vw 0;
        height: 283px;
        width: 82vw;
    }

    .fullwidth-semicircle-left img {
        width: 100%;
        height: 100%;
        object-position: 68% center;
        object-fit: cover;
        background-position-y: 53px;
    }
}

/*
* About Accreditations
*/
.about-accreditations h6 {
    margin-bottom: 0;
    font-size: 1.125rem;
}

.about-accreditations {
    padding: 120px;
    background-color: var(--grey);
}

@media only screen and (max-width: 783px) {
    .about-accreditations {
        padding: 75px 75px 75px 24px;
    }
}

.about-accreditations p {
    font-size: 0.875rem;
}

/*
* About Credentials
*/
.about-credentials {
    background: var(--grey);
    border-radius: 0;
    padding: 0;
}


.about-credentials .gb-block-layout-column-inner {
    background-color: var(--dark-green);
    border-radius: 0 0 200px 0;
    padding: 150px 30px 34px;
}

@media only screen and (max-width: 1100px) {
    .about-credentials .gb-block-layout-column-inner {
        padding: 150px 80px 34px;
    }
}

@media only screen and (max-width: 783px) {
    .about-credentials .gb-block-layout-column-inner {
        padding: 24px;
    }

    .about-credentials .section-3-roll-over-links {
        padding-top: 0;
    }
}

.about-credentials p a,
.about-credentials p {
    color: var(--white) !important;
}

.about-credentials:before {
    background: none;
}

.about-credentials h3 a,
.about-credentials h3 {
    color: var(--white) !important;
    margin-bottom: 5px;
    font-size: 3.75rem;
}

.about-credentials .left-column p {
    margin-right: 12vw;
}

.about-credentials .left-column h2 {
    margin-top: 25px;
}

.about-credentials .left-column {
    margin-left: 96px;
}

@media only screen and (max-width: 1231px) {
    .about-credentials .left-column {
        margin-left: 0;
    }
}

@media only screen and (max-width: 600px) {
    .about-credentials .left-column {
        margin-left: 0;
    }

    .about-credentials .list-item-hover {
        padding: 30px 0px 18px 15px !important;
    }

    .about-credentials .gb-block-layout-column-inner {
        border-radius: 0 0 82px 0;
    }
}

.about-credentials .list-item-hover {
    border: 2px var(--dark-green) solid;
    border-radius: 50vw;
    padding: 30px 15px 18px 25px;
}

.about-credentials .list-item-hover:hover h3 a,
.about-credentials .list-item-hover:hover h3 {
    color: var(--green) !important;
}

.about-credentials .list-item-hover:hover {
    border: 2px var(--white) solid;
}

@media only screen and (max-width: 1570px) {
    .about-credentials h3 {
        font-size: 2.5rem;
    }
}

/*
* Advisory Board
*/
.advisory-board-banner {
    padding: 240px 0;
}

.advisory-board-banner p {
    max-width: 485px;
}

@media only screen and (max-width: 600px) {
    .advisory-board-banner {
        padding: 120px 0 0;
    }

    .advisory-board-banner p {
        padding-right: 35px;
    }
}

.advisory-board-top {
    background-color: var(--grey);
    border-radius: 0 50vw 0 0;
    height: 170px;
}

.advisory-board-bottom {
    background-color: var(--grey);
    height: 85px;
}

.advisory-board-profile-container {
    background-color: var(--grey);
}

.advisory-board-profile-container .wp-block-image {
    border-radius: 0 0 46% 46%;
    box-shadow: 0 29px 29px rgb(0 0 0 / 27%);
    overflow: hidden;
    max-height: 350px;
}

.arrow-column {
    background-position: center bottom 5px;
}

@media only screen and (max-width: 1258px) {
    .page-id-2660 .entry-content>.alignfull {
        padding: 0 54px;
    }
}

.text-over-image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 0 0 46% 46%;
    background-color: #7fb736c2;
    color: #fff;
    display: flex;
    align-items: end;
    padding-bottom: 100px;
    visibility: hidden;
    opacity: 0;
}

.shield-with-hover:hover .text-over-image {
    visibility: visible;
    opacity: 1;
	justify-content: center;
}

.text-over-image h3 {
    margin-bottom: 5px;
    font-weight: 400;
    ;
}

.shield-with-hover {
    margin-bottom: 35px;
}

@media only screen and (max-width: 1000px) {
    .text-over-image {
        position: relative;
        visibility: visible;
        opacity: 1;
        border-radius: 0;
        background-color: transparent;
        padding-top: 20px;
        padding-bottom: 0;
    }

    .text-over-image h3 {
        font-size: 1.5rem;
    }
}

/*
* PLATFORM OVERVIEW
*/
.platform-tabs-section {
    background-color: var(--grey);
    padding-top: 100px;
    border-radius: 0 0 0 9vw;
    overflow: hidden;
    margin-bottom: 120px !important;
}

@media (max-width: 1326px) {
    .platform-tabs-section {
        padding: 100px 64px;
    }
}

@media (max-width: 1000px) {
    .platform-tabs-section {
        padding: 80px 64ipx;
    }

    .platform-tabs-section img {
        width: 94px;
    }

    .wp-block-atbs-tabs .atbs__tab-labels .atbs__tab-label:last-child,
    .wp-block-atbs-tabs .atbs__tab-labels .atbs__tab-label:first-child {
        border: 2px solid var(--dark-green) !important;
    }
}

@media only screen and (max-width: 600px) {
    .gb-layout-columns-4>.gb-layout-column-wrap.gb-is-responsive-column {
        gap: 20px;
    }

    .mea-platform,
    .mea-platform-text {
        display: none;
    }

    .platform-tabs-section {
        border-radius: 0 0 0 29vw;
        margin-bottom: 0 !important;
        padding: 80px 15px;
    }
}

.wp-block-atbs-tabs[class*=atbs__tabs] {
    box-shadow: none !important;
    border: none;
}

.wp-block-atbs-tabs[class*=atbs__tabs] .atbs__tab-labels {
    border: none !important;
    gap: 20px;
    margin-bottom: 25px;
    padding: 0 10px;
}

.wp-block-atbs-tabs[class*=atbs__tabs] .atbs__tab-label {
    border: 2px solid var(--dark-green) !important;
    border-radius: 25px;
    padding: 12px 21px !important;
}

.wp-block-atbs-tabs[class*=atbs__tabs] .atbs__tab-label:hover {
    color: var(--green) !important;
    border-color: var(--green) !important;
}

.wp-block-atbs-tabs[class*=atbs__tabs] .atbs__tab-label.active {
    background-color: var(--green) !important;
    color: var(--dark-green) !important;
    border: 2px solid var(--green) !important;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}

.wp-block-atbs-tabs[class*=atbs__tabs] .atbs__tab-label.active:after {
    background: none !important;

}

.wp-block-atbs-tabs .tabs-titles {
	background: transparent !important;
}

.hover-tab__container {
    overflow-x: visible;
}

.hover-tab__item {
    /* background-color: var(--white); */
    background-color: #fcfbfc;
    display: flex;
    justify-content: baseline;
    width: 100%;
    box-shadow: 9px 11px 10px rgb(0 0 0 / 10%);
    border-radius: 30px 0 80px 0;
    padding: 68px 27px;
    margin-bottom: 35px;
    margin-top: 50px;
    min-height: 565px;
}

.hover-tab__img-container {
    margin-bottom: 60px;
}

.hover-tab__img {
    width: 72px;
    margin: auto;
}

.hover-tab__button, .hover-tab__button.gb-block-button {
    display: none;
    margin-top: 50px;
}

.hover-tab__img--hover {
    display: none;
}

.hover-tab__img--hover img {
    margin: auto;
}

.hover-tab__button .gb-button, .hover-tab__button .wp-element-button {
    background-color: var(--white) !important;
    border-radius: 30px;
    color: var(--dark-green) !important;
}

.hover-tab__button {
    position: absolute;
    bottom: 0;
}

@media (min-width: 1200px) {

    /* GREEN HOVER EFFECT */
    .hover-tab__item:first-of-type, .hover-tab__item:first-of-type:hover {
        position: absolute;
        z-index: 200;
        background: linear-gradient(90deg, rgba(254, 252, 2, .8) -21%, rgba(68, 183, 1, .8) 66%);
        padding: 50px;
        width: 316px;
        margin-left: -50px;
        height: 645px;
        margin-top: 0;
    }

    .hover-tab__container--four .hover-tab__item:first-of-type,
	.hover-tab__container--four .hover-tab__item:first-of-type:hover {
        margin-left: -18px;
    }

    .hover-tab__item:first-of-type .hover-tab__img,
	.hover-tab__item:first-of-type:hover .hover-tab__img {
        display: none;
    }

    .hover-tab__item:first-of-type .hover-tab__img-container,
	.hover-tab__item:first-of-type:hover .hover-tab__img-container{
        background-color: rgba(255, 255, 255, 0.2);
        padding: 35px 0 35px;
        border-radius: 0 0 120px 120px;
        box-shadow: 9px 11px 10px rgb(0 0 0 / 10%);
    }

    .hover-tab__item:first-of-type .hover-tab__img--hover,
	.hover-tab__item:first-of-type:hover .hover-tab__img--hover{
        display: block;
    }

    .hover-tab__item:first-of-type .hover-tab__button,
	.hover-tab__item:first-of-type:hover .hover-tab__button{
        display: block;
    }





    /* WHEN ITEM IS HOVERED USE GREEN HOVER EFFECT */
    .hover-tab__item:not(:first-of-type):hover {
        position: absolute;
        z-index: 200;
        background: linear-gradient(90deg, rgba(254, 252, 2, .8) -21%, rgba(68, 183, 1, .8) 66%);
        padding: 50px;
        width: 316px;
        margin-left: -50px;
        height: 645px;
        margin-top: 0;
    }

    .hover-tab__container--four .hover-tab__item:not(:first-of-type):hover {
        margin-left: -18px;
    }

    .hover-tab__item:not(:first-of-type):hover .hover-tab__img {
        display: none;
    }

    .hover-tab__item:not(:first-of-type):hover .hover-tab__img-container {
        background-color: rgba(255, 255, 255, 0.2);
        padding: 35px 0 35px;
        border-radius: 0 0 120px 120px;
        box-shadow: 9px 11px 10px rgb(0 0 0 / 10%);
    }

    .hover-tab__item:not(:first-of-type):hover .hover-tab__img--hover {
        display: block;
    }

    .hover-tab__item:not(:first-of-type):hover .hover-tab__button {
        display: block;
    }

    /* REMOVE HOVER EFFECT OF FIRST ITEM WHEN OTHERS ARE HOVERED */
    .hover-tab__container:hover .hover-tab__item:first-child:not(:hover) {
        background: #fcfbfc;
        display: flex;
        justify-content: baseline;
        width: 100%;
        box-shadow: 9px 11px 10px rgb(0 0 0 / 10%);
        border-radius: 30px 0 80px 0;
        padding: 68px 27px;
        margin-bottom: 35px;
        margin-top: 50px;
        height: auto;
        margin-left: 0;
    }

    .hover-tab__container:hover .hover-tab__img-container {
        margin-bottom: 60px;
        box-shadow: none;
        padding: 0;
    }

    .hover-tab__container:hover .hover-tab__img {
        width: 72px;
        display: block;
        margin: auto;
    }

    .hover-tab__container:hover .hover-tab__button {
        display: none;
        margin-top: 50px;
    }

    .hover-tab__container:hover .hover-tab__img--hover {
        display: none;
    }

    .hover-tab__container:hover .hover-tab__img--hover img {
        margin: auto;
    }
}

@media (min-width: 1200px) {
    /*HOVER */
    /* GREEN HOVER EFFECT ON FIRST ITEM */

    .atbs__tab-panel .hover-tab__item:first-of-type:hover {
        position: absolute;
        z-index: 200;
        background: linear-gradient(90deg, rgba(254, 252, 2, .8) -21%, rgba(68, 183, 1, .8) 66%);
        padding: 50px;
        width: 316px;
        margin-left: -50px;
        height: 645px;
        margin-top: 0;
    }

    .atbs__tab-panel .hover-tab__container--four .hover-tab__item:first-of-type:hover {
        margin-left: -18px;
    }

    .atbs__tab-panel .hover-tab__item:first-of-type:hover .hover-tab__img {
        display: none;
    }

    .atbs__tab-panel .hover-tab__item:first-of-type:hover .hover-tab__img-container {
        background-color: rgba(255, 255, 255, 0.2);
        padding: 35px 0 35px;
        border-radius: 0 0 120px 120px;
        box-shadow: 9px 11px 10px rgb(0 0 0 / 10%);
    }

    .hover-tab__item:first-of-type:hover .hover-tab__img--hover {
        display: block;
    }

    .hover-tab__item:first-of-type:hover .hover-tab__button {
        display: block;
    }

    .hover-tab__button .gb-button {
        background-color: var(--white) !important;
        border-radius: 30px;
        color: var(--dark-green) !important;
    }
}

@media (max-width: 1200px) {
    .hover-tab__container .hover-tab__item:first-child {
        background: #fcfbfc;
        display: flex;
        justify-content: baseline;
        width: 100%;
        box-shadow: 9px 11px 10px rgb(0 0 0 / 10%);
        border-radius: 30px 0 80px 0;
        padding: 68px 27px;
        margin-bottom: 35px;
        margin-top: 50px;
        height: auto;
        margin-left: 0;
    }

    .hover-tab__container .hover-tab__item:first-child .hover-tab__img-container {
        margin-bottom: 60px;
        box-shadow: none;
        padding: 0;
    }

    .hover-tab__container .hover-tab__item:first-child .hover-tab__img {
        width: 72px;
        display: block;
        margin: auto;
    }

    .hover-tab__container .hover-tab__item .hover-tab__button {
        margin-top: 50px;
        display: block;
    }

    .hover-tab__button .gb-button {
        border: 1px solid var(--dark-green);
    }

    .hover-tab__item {
        min-height: 700px;
    }

    .hover-tab__container .hover-tab__item:first-child .hover-tab__img--hover {
        display: none;
    }

    .hover-tab__container .hover-tab__item:first-child .hover-tab__img--hover img {
        margin: auto;
    }

    .hover-tab__item:not(:first-of-type):hover {
        background: #fcfbfc;
        display: flex;
        justify-content: baseline;
        width: 100%;
        box-shadow: 9px 11px 10px rgb(0 0 0 / 10%);
        border-radius: 30px 0 80px 0;
        padding: 68px 27px;
        margin-bottom: 35px;
        margin-top: 50px;
        height: auto;
        margin-left: 0;
    }

    .hover-tab__container--four .hover-tab__item:not(:first-of-type):hover {
        margin-left: 0;
    }

    .hover-tab__item:not(:first-of-type):hover .hover-tab__img {
        display: block;
    }

    .hover-tab__item:not(:first-of-type):hover .hover-tab__img-container {
        background-color: var(--white);
        padding: 0;
        box-shadow: none;
    }

    .hover-tab__item:not(:first-of-type):hover .hover-tab__img--hover {
        display: none;
    }

    .hover-tab__item:not(:first-of-type):hover .hover-tab__button {
        display: block;
    }
}

@media (max-width: 1200px) {
    .hover-tab__container>.gb-layout-column-wrap {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "col1 col2"
            "col3 col4"
            "col5 col5";
    }

    .hover-tab__item {
        min-height: 500px;
    }
}

@media (max-width: 767px) {
    .wp-block-atbs-tabs .atbs__tab-labels {
        flex-direction: row !important;
    }
}


.atbs__tab-content .wp-block-image figure {
    opacity: 0.75;
    margin: 0 auto !important;
}

.atbs__tab-content .wp-block-image:hover figure {
    opacity: 1;
}

.atbs__tab-content h3 {
    margin-bottom: 15px;
}

.wp-block-atbs-tabs,
.wp-block-atbs-tabs .wp-block-atbs-tab {
    overflow: visible;
}

.gb-layout-columns-4 {
    overflow: visible;
}

.mea-platform {
    background-color: var(--green);
    width: 137vw;
    padding: 15px;
    margin: 80px 0 0 0;
    margin-left: -37%;
    height: 67px;
}

.mea-platform-text {
    position: absolute;
    width: 100vw;
    margin-left: calc(50% - 54.5px);
    margin-top: -3.4rem;
    text-align: left;
    font-size: 1.5rem;
}

/*
* Icon Section
*/
.icon-section {
    background: linear-gradient(86deg, rgba(254, 252, 2, 1) 1%, rgba(68, 183, 1, 1) 55%);
    border-radius: 0 0 9vw 0;
    padding: 120px 0;
    margin-bottom: 124px !important;
}

.icon-section .gb-layout-column-wrap {
    gap: 6rem 6rem;
}

.icon-section .row-of-shields .gb-block-layout-column-inner {
    background: #e8ffcb5e;
    padding: 74px 20px;
    border-radius: 0 0 50vw 50vw;
    box-shadow: 0px 19px 34px rgb(0 0 0 / 25%);
}

.icon-section .row-of-shields .gb-block-layout-column-inner img {
    width: 85px;
}

.icon-section .row-of-shields .gb-block-layout-column-inner h4 {
    font-size: 2.5rem;
}

.row-of-shields {
    margin-bottom: 50px;
}

.no-shield {
    display: none;
}

/*
* adaptable-evolving
*/
.adaptable-evolving {
    background-color: var(--dark-green);
    width: 90vw !important;
    border-radius: 0 50vw 50vw 0;
    color: var(--white);
    padding: 194px 0 144px;
}

@media only screen and (max-width: 1000px) {
    .adaptable-evolving {
        padding: 120px 24px 100px;
    }
}

@media only screen and (max-width: 600px) {
    .adaptable-evolving {
        padding: 50px 24px 80px;
        width: 100vw !important;
        border-radius: 0 0 50vw 50vw;
        margin-bottom: 40px !important;
    }

    .adaptable-evolving img {
        margin-top: -20px !important;
        margin-right: 25px;
    }

    .adaptable-evolving .wp-block-image {
        float: right;
    }
}

.adaptable-evolving p {
    color: var(--white);
}

.adaptable-evolving img {
    margin-top: 100px;
}

.submissions-section {
    background-color: var(--dark-green);
    width: 98vw !important;
    border-radius: 50vw 0 0 50vw;
    color: var(--white);
    padding: 194px 200px;
    margin-top: 124px !important;
    right: -2vw;
    overflow: hidden;
}

.post-64 .submissions-section {
    margin-bottom: 100px !important;
}

.submissions-section p {
    color: var(--white);
}

.submissions-section img {
    position: absolute;
    max-width: 160%;
    width: 150%;
    top: -34vw;
    left: 62px;
}

@media only screen and (max-width: 1415px) {
    .submissions-section img {
        max-width: 165%;
        width: 165%;
    }
}

@media only screen and (max-width: 1184px) {
    .submissions-section img {
        max-width: 205%;
        width: 205%;
    }

    .submissions-section {
        padding: 135px 166px;
    }
}

@media only screen and (max-width: 1000px) {
    .submissions-section>.gb-layout-column-wrap {
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width: 600px) {
    .submissions-section {
        border-radius: 0 0 50vw 50vw;
        padding: 48px 65px;
        height: 720px;
        width: 100vw !important;
        margin-left: calc(50% - 52vw) !important;
    }

    .submissions-section img {
        max-width: 100vw;
        width: 100vw;
        top: 0;
        left: -65px;
    }
}

/*
* PLATFORM VIDEO SECTION
*/
.platform-section-video {
    background-image: url('assets/thin-green-line-bg-right-facing.svg');
    background-repeat: no-repeat;
    padding-top: 120px;
    padding-bottom: 5rem;
    background-position-y: bottom;
    background-position-x: -20px;
    -webkit-transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    transform: scaleX(-1);
    margin-bottom: 120px !important;
}

.platform-section-video .wp-block-embed__wrapper {
    -webkit-transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    transform: scaleX(-1);
    height: 682px;
    border-radius: 0 330px 330px 0;
    overflow: hidden;
    margin-left: 9.375rem;
}

@media only screen and (max-width: 1000px) {
    .platform-section-video .wp-block-embed__wrapper {
        margin-left: 0;
        width: 100%;
        border-radius: 330px 330px 0 0;
    }

    .platform-section-video {
        background-position-x: -139vw;
        margin-bottom: 50px !important;
    }
}

@media only screen and (max-width: 600px) {
    .platform-section-video {
        padding-top: 40px;
    }

    .platform-section-video .wp-block-embed__wrapper {
        height: 856px;
    }

    .platform-section-video {
        background-position-x: -107vw;
    }
}

.page-id-62 .about-credentials {
    background-color: var(--white);
}

.page-id-62 .section-7 {
    background-color: var(--white);
}

.page-id-62 .client-logos {
    margin-top: 65px;
    margin-bottom: 65px;
}

@media only screen and (max-width: 600px) {
    .page-id-62 .section-7-right-col h2 {
        padding-right: 24px;
    }

    .page-id-62 .section-7-right-col p {
        padding-right: 24px
    }

    .section-7 .wp-block-buttons {
        flex-flow: column;
        align-items: baseline;
    }
}

.section-client-logos {
    margin-top: 8rem;
}

.platform-section-2 .wp-block-image {
    border-radius: 0 50vw 50vw 0;
    overflow: hidden;
    width: 45vw;
    height: 560px;
    z-index: 5;
}

.platform-section-2 {
    margin-top: 84px;
}

.platform-section-2 .wp-block-image img {
    width: 45vw;
    z-index: 5;
    position: relative;
}

.platform-section-2 .section-2-text {
    margin-top: 279px;
    margin-bottom: 84px;
}

@media only screen and (max-width: 782px) {
    .platform-section-2 .wp-block-image {
        width: 75vw;
        margin-bottom: -105px;
    }

    .platform-section-2 .wp-block-image img {
        width: 75vw;
    }
}

@media only screen and (max-width: 1000px) {
    .post-62-d.icon-section .row-of-shields .gb-block-layout-column-inner img {
        width: 52px;
    }

    .post-62-d.icon-section .row-of-shields .gb-block-layout-column-inner h4 {
        font-size: 1.6rem;
    }

    .post-62-d.icon-section .gb-layout-column-wrap {
        padding: 0 25px;
        gap: 4rem 4rem;
    }
}

@media only screen and (max-width: 600px) {
    .platform-section-2 {
        margin-top: 45px;
        margin-bottom: 0;
    }

    .platform-section-2 .wp-block-image {

        margin-bottom: -200px;
    }

    .platform-section-2 .section-2-text {
        padding: 110px 50px 35px 50px;
        margin-bottom: 0;
        margin-top: 110px;
    }

    .platform-section-2 .wp-container-5 {
        margin-bottom: -3px;
    }

    .post-62-d.icon-section {
        padding: 80px 22vw 0;
        margin-bottom: 40px !important;
    }

    .post-62-d.icon-section .row-of-shields .gb-block-layout-column-inner {
        padding: 40px 20px;
    }

    .post-62-d.icon-section .row-of-shields .gb-block-layout-column-inner img {
        width: 46px;
    }

    .post-62-d.icon-section .row-of-shields .gb-block-layout-column-inner h4 {
        font-size: 1.3125rem;
    }

    .post-62-d.icon-section .gb-layout-column-wrap {
        gap: 3rem 6rem;
        padding: 0;
    }
}

#post-62 .entry-content {
    display: flex;
    flex-flow: column;
}

#post-62 .entry-content:before {
    content: none;
}

/*
* Platform Technology
*/
.green-arrow {
    width: 20px !important;
    text-align: center;
    margin: auto;
    margin-top: 100px;
}

.green-arrow {
    height: 128px !important;
}

.green-arrow img {
    height: 128px !important;
}

@media (max-width: 1000px) {
    .green-arrow {
        display: none;
    }
}

@media (max-width: 600px) {
    #post-2325 .rounded-corner-bottom-right {
        padding-bottom: 18rem;
        margin-bottom: 0;
    }

    #post-2325 .home-banner-logo img {
        width: 60%;
    }

    #post-2325 .home-banner-logo {
        top: -26px;
        right: -51%;
    }
}

@media (max-width: 400px) {
    #post-2325 .home-banner-logo {
        top: 5px;
        right: -58%;
    }

    #post-2325 .rounded-corner-bottom-right {
        padding-bottom: 15rem;
    }
}

#post-2325 .platform-section-2 .wp-block-image {
    height: 560px;
}

#post-2325 .platform-section-2 .wp-block-image img {
    height: 560px;
    object-fit: cover;
}

#post-2325 .platform-section-2 .section-2-text {
    margin-top: 270px;
}

@media (max-width: 600px) {

    #post-2325 .platform-section-2 .wp-block-image img,
    #post-2325 .platform-section-2 .wp-block-image {
        height: 276px;
    }

    #post-2325 .platform-section-2 .section-2-text {
        margin-top: 38px;
        padding: 192px 35px 35px 35px;
    }

}

.platform-tech-text-with-border {
    border: solid 2px var(--green);
    padding: 178px 0;
    border-radius: 0 50vw 50vw 0;
    width: 70vw !important;
}

@media (max-width: 1280px) {
    .platform-tech-text-with-border {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 600px) {
    .platform-tech-text-with-border {
        border: none;
        padding: 0;
        width: 100vw !important;
    }

    .platform-tech-text-with-border .gb-is-responsive-column {
        border: 2px solid var(--green);
        margin: -20px 24px;
        padding: 50px 35px 150px;
        border-top: 0;
        border-radius: 0 0 50vw 50vw;
    }
}

#post-2325 .platform-section-2 {
    margin-top: 100px;
    margin-bottom: 0;
}

@media (max-width: 600px) {
    #post-2325 .platform-section-2 {
        margin-top: 120px;
    }

    #post-2325 .header__subtext {
        padding-right: 35px;
    }
}

.platform-tech-image img {
    width: 80vw;
    object-fit: cover;
    height: 100%;
}

.platform-tech-image {
    margin-left: 20vw;
    border-radius: 50vw 0 0 50vw;
    overflow: hidden;
    height: 536px;
    margin-top: -43px;
    margin-bottom: 134px;
}

@media (max-width: 600px) {
    .platform-tech-image {
        margin-left: 14vw;
        margin-top: -133px;
        height: auto;
        height: 283px;
    }

    .platform-tech-image img {
        width: 86vw;
        height: 100%;
    }
}


div[class*=platform-tech-text-section].alignfull {
    margin-bottom: 150px;
}

@media (max-width: 1100px) {
    div[class*=platform-tech-text-section].alignfull {
        padding-left: 74px;
        padding-right: 74px;
    }
}

@media (max-width: 600px) {
    div[class*=platform-tech-text-section].alignfull {
        margin-bottom: 56px;
        padding-left: 24px;
        padding-right: 24px;
    }

}

#post-2325 .section-video {
    margin-top: 120px;
    padding-top: 0;
}

@media only screen and (max-width: 600px) {
    #post-2325 .section-video {
        margin-top: 40px;
        background-position-x: -187vw;
    }
}

#post-2325 .adaptable-evolving {
    margin-top: 120px !important;
}

@media only screen and (max-width: 600px) {
    #post-2325 .adaptable-evolving {
        margin-top: 40px !important;
    }
}

.platform-tech-text-section-2 {
    margin-top: 120px !important;
    margin-bottom: 120px !important;
}

@media only screen and (max-width: 600px) {
    .platform-tech-text-section-2 {
        margin-top: 70px !important;
        margin-bottom: 70px !important;
    }

}

#post-2325 .section-7 {
    background-color: var(--white);
}

/*
* Platform Solutions 2327
*/
#post-2327 .section-video {
    margin-top: 120px;
}

.featured-resources .wp-block-post-template.is-flex-container.is-flex-container.columns-3>li,
.featured-resources .wp-block-post-template.is-flex-container.is-flex-container.columns-2>li,
.featured-resources .wp-block-post-template.is-layout-grid.wp-block-post-template-is-layout-grid.columns-3>li {
    overflow: hidden;
    border-radius: 0 0 105px 0;
}

div[class*=featured-resources].alignfull {
    margin-top: 135px;
    padding-bottom: 100px;
}

@media only screen and (max-width: 1300px) {
    div[class*=featured-resources].alignfull {
        padding: 0 24px;
    }
}

div[class*=featured-resources].alignfull h2 {
    width: 400px;
}

@media only screen and (max-width: 600px) {
    div[class*=featured-resources].alignfull h2 {
        width: 100%;
    }
}

.featured-resources .wp-block-post-template.is-flex-container {
    gap: 52px;
    flex-wrap: nowrap;
}

.featured-resources ul {
    padding: 0;
    margin: 0;
}

.featured-resources .wp-block-post-featured-image {
    height: 100%;
    width: 100%;
    overflow: hidden;
    margin: 0;
    margin-top: -78px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.8786108193277311) 100%);
}
.featured-news.featured-resources .wp-block-post-featured-image,
.post-2329 .wp-block-post-featured-image {
    margin-top: 0;
}

.featured-resources .wp-block-post-featured-image img {
    object-fit: cover;
    height: 419px;
}

.featured-resources .taxonomy-category a {
    color: var(--white);
    background: var(--dark-green);
    padding: 10px 15px;
    border-radius: 15px;
    margin-top: -1px;
}

#dynamic-news-articles .featured-resources .taxonomy-category a,
.category-case-study .taxonomy-category a,
.home .featured-resources .taxonomy-category a{
    margin-right: 5px;
    display: inline-block;
    margin-bottom: 5px;

}

.featured-resources .overlay {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.8786108193277311) 100%);
    position: absolute;
    height: 419px;
    width: 100%;
    top: 0;
    border-radius: 0 0 105px 0;
}
.home .featured-resources .overlay,
.page-id-2327 .featured-resources .overlay {
    height: 445px;
}
.home .featured-resources .wp-block-post-template > li.tapacode_document {
	border-radius: 0 0 105px 0;
	overflow: hidden;
}

.featured-resources .taxonomy-category {
    margin-left: 30px;
    margin-bottom: -57px;
    padding-top: 32px;
    z-index: 9;
    position: relative;
}

.featured-resources .wp-block-post-title {
    line-height: 1.5rem;
    padding: 0 30px 0px 30px;
    position: absolute;
	bottom: 0;
}

.featured-resources .wp-block-post-title a {
    color: var(--white);
}

@media only screen and (max-width: 768px) {
    .featured-resources .wp-block-post-template.is-flex-container {
        flex-wrap: wrap;
    }

    .resources-controls {
        align-items: baseline;
        display: flex;
        margin-top: 2rem;
        width: 100vw;
        justify-content: space-between;
    }

    .resources-controls .slick-arrow {
        height: 36px;
        line-height: 36px;
        padding: 2px;
        width: 40px;
    }

    .resources-controls .slick-arrow {
        background-color: var(--white);
        border: 2px solid var(--green);
        border-radius: 47px;
        color: var(--green);
        height: 36px;
        line-height: 36px;
        padding: 3px;
        text-decoration: none;
        width: 36px;
    }

    .resources-controls button:hover {
        box-shadow: 0 3px 10px rgba(0, 0, 0, .2);
        margin-top: -1px
    }

    .resources-nav {
        width: 60vw;
        list-style-type: none;
        margin: 0;
        padding: 0;
        text-align: center;
        display: flex;
        flex-direction: row;
    }

    .resources-nav li {
        display: inline-block;
        margin: 0 0.5em;
        width: 100%;
    }

    .resources-nav button {
        width: 100%;
        height: 2px;
        background-color: var(--grey);
        padding: 0;

    }

    .resources-nav>.slick-active button {
        background-color: var(--dark-green);
    }

    .prevResource {
        margin-right: 1rem;
    }

    .resource-nav-button-container {
        display: flex;
        margin-left: 1rem;
    }
}

/*
* NEWS
*/
.news-banner {
    padding: 250px 24px 150px;
}

@media only screen and (max-width: 600px) {
    .news-banner {
        padding: 130px 24px 46px;
    }
}

.news-banner p {
    max-width: 470px;
}

.news-banner .green-arrow {
    margin-top: 207px;
}

@media only screen and (max-width: 600px) {
    .news-banner .green-arrow {
        display: block;
        margin-top: 0;
        float: right;
        margin-right: 26px;
    }
}

.featured-news {
    padding: 100px 24px 60px;
    background-color: var(--dark-green);
    border-radius: 0 250px 0 0;
}

@media only screen and (max-width: 1230px) {
    .featured-news {
        border-radius: 0 120px 0 0;
    }
}

.shield-posts figure.wp-block-post-featured-image {
    border-radius: 0 50vw 50vw 0;
    overflow: hidden;
    height: 350px;
}

.shield-posts figure.wp-block-post-featured-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

@media (max-width: 1000px) {
    .shield-posts figure.wp-block-post-featured-image {
        height: 222px;
    }
}

.shield-posts .wp-block-post-template.is-flex-container {
    gap: 3em;
}

@media (max-width: 600px) {
    .shield-posts .wp-block-post-template.is-flex-container {
        gap: 0;
    }
}

@media (min-width: 600px) {
    .shield-posts .wp-block-post-template.is-flex-container.is-flex-container.columns-3>li {
        width: calc(33.33333% - 1.99989em);
    }
}

.shield-posts ul {
    padding-left: 0;
    margin: 0;
}

.shield-posts .taxonomy-category {
    margin-top: 25px;
}

.shield-posts .taxonomy-category a {
    margin-top: 5px;
    padding: 10px 15px;
    border-radius: 10px;
    display: inline-block;
    margin-right: 15px;
    color: var(--white);
    background-color: var(--dark-green);
}

@media (max-width: 1000px) {
    .shield-posts .taxonomy-category a {
        padding: 5px 10px;
    }
}

.featured-news .shield-posts .taxonomy-category a {
    background: var(--light-green);
    color: var(--dark-green);
}

.featured-news .shield-posts .wp-block-post-title {
    color: var(--white);
}

.shield-posts .wp-block-post-title {
    margin-top: 18px;
    font-size: 1rem;
}

.all-news-header {
    padding-top: 136px;
    padding-bottom: 120px;
}

@media only screen and (max-width: 1000px) {
    .all-news-header {
        padding: 80px 24px;
    }
}

@media only screen and (max-width: 600px) {
    .all-news-header {
        padding: 70px 24px 56px;
    }

    .all-news-header h2 {
        margin-bottom: 0;
    }
}

.load-more {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.load-more a {
    background-color: var(--light-green);
    border-radius: 50vw;
    padding: 15px 25px;
    color: var(--dark-green);
    font-weight: 300;
    ;
}

.load-more a:active,
.load-more a:focus {
    color: var(--dark-green);
}

.load-more a:hover {
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
    color: var(--dark-green);
}

.news-controls {
    margin-top: 60px;
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    align-items: baseline;
    gap: 20px;
}


.news-nav {
    width: 60vw;
    list-style-type: none;
    margin: 0;
    padding: 0;
    padding-left: 0 !important;
    text-align: center;
    display: flex;
    flex-direction: row;
}

.news-nav li {
    display: inline-block;
    width: 100%;
}

.news-nav button {
    width: 100%;
    height: 2px;
    background-color: #a9a7a7;
    padding: 0;
    color: var(--dark-green);
    margin-top: 2px;
}

.news-nav .slick-active button {
    background-color: var(--green);
    height: 6px;
    margin-top: 0;
}

.news-nav-button-container {
    display: flex;
    gap: 10px;
}

.news-nav-button-container button {
    border: 2px solid var(--green);
    border-radius: 47px;
    color: var(--green);
    height: 36px;
    line-height: 36px;
    padding: 3px;
    text-decoration: none;
    width: 36px;
}

@media only screen and (max-width: 1000px) {
    .all-news-posts {
        padding: 0 24px;
    }
}


@media only screen and (max-width: 600px) {
    #post-64 .fullwidth-semicircle-left {
        height: 393px;
        margin-top: 0;
        border-radius: 0 50vw 50vw 0;
        width: 95vw;
        margin-top: 45px !important;
        margin-bottom: 40px;
    }

    .fullwidth-semicircle-left img {
        height: 100%;
    }
}


/*
*   Insights
*/
#post-2329 .featured-resources .taxonomy-category {
    top: 1px;
    position: absolute;
}

#post-2329 .featured-resources .wp-block-post-title {
    color: var(--white);
}

#post-2329 .brick-layout .wp-block-post-template.is-flex-container {
    display: grid;
    grid: auto / repeat(6, 1fr);
    gap: 55px;
}

#post-2329 .brick-layout .wp-block-post-template.is-flex-container.is-flex-container.columns-3>li {
    width: 100%;
    grid-column: span 2;
}

#post-2329 .brick-layout .wp-block-post-template.is-flex-container.is-flex-container.columns-3>li:nth-child(5n),
#post-2329 .brick-layout .wp-block-post-template.is-flex-container.is-flex-container.columns-3>li:nth-child(5n-1) {
    grid-column: span 3;
}

@media only screen and (max-width: 1000px) {
    #post-2329 .brick-layout .wp-block-post-template.is-flex-container.is-flex-container.columns-3>li {
        grid-column: span 3;
    }
}

@media only screen and (max-width: 600px) {
    #post-2329 .brick-layout .wp-block-post-template.is-flex-container.is-flex-container.columns-3>li {
        grid-column: span 6;
    }

    #post-2329 .brick-layout .wp-block-post-template.is-flex-container.is-flex-container.columns-3>li:nth-child(5n),
    #post-2329 .brick-layout .wp-block-post-template.is-flex-container.is-flex-container.columns-3>li:nth-child(5n-1) {
        grid-column: span 6;
    }
}

#post-2329 .load-more {
    margin-bottom: 120px;
}

#post-2329 div[class*=featured-resources].alignfull {
    margin-top: 0;
    ;
}

#post-2329 .slick-slider {
    margin-top: 100px;
}


/*
*   Post Content
*/

@media (min-width: 1000px) {
    .single-post .alignwide {
        width: 55vw;
        margin-left: calc(50% - 55vw / 2);
    }
}

.wp-block-quote:before {
    content: "\"";
    color: var(--green);
    font-size: 200px;
    position: absolute;
    top: -150px;
}

.wp-block-quote {
    border-left: 0;
    margin: 150px 0 8rem 0;
    padding-left: 0;
    padding-right: 15rem;
}

.wp-block-quote p {
    color: var(--green);
}

.single-post .restricted {
    margin: 100px auto;
    height: 350px;
    overflow: hidden;
    border-radius: 0 0 150px 0;
}

.single-post .wp-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-post .entry-header,
.single .entry-header {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    height: 1000px;
    background-color: var(--dark-green);
    color: var(--white);
    margin-bottom: 675px;
}

.entry-header-inner {
    margin: 0 auto;
    display: block;
    width: 70%;
    max-width: 1012px;
    margin-bottom: 120px;
    padding-top: 50px;
}
.single .entry-header-inner {
    padding-top: 250px;
}
.entry-date {
    font-size: 1rem;
    font-weight: 300;
}

.colored-word {
    color: var(--green);
}
.title {
    color: var(--white);
    min-height: 160px;
}

.categories-container {
    display: flex;
    gap: 1.5rem;
}
@media only screen and (max-width: 1024px) {
	.categories-container {
		flex-wrap: wrap;
	}
}

.category {
    background-color: var(--light-green);
    padding: 10px 15px;
    border-radius: 10px;
    color: var(--dark-green);
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-image {
    width: 80vw;
    margin-left: 20vw;
    border-radius: 50vw 0 0 50vw;
    overflow: hidden;
    height: 677px;
	position: absolute;
	bottom: -70%;
}
@media only screen and (max-width: 600px) {
    .single .featured-image {
        max-height: 500px;
		bottom: -50%;
    }
	.single-post .entry-header, .single .entry-header {
		margin-bottom: 500px;
	}
}

.pagination-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--grey);
    padding-top: 23px;
    margin-top: 100px;
    margin-bottom: 95px;
}

.pagination-container .social-icons img {
    filter: invert(58%) sepia(86%) saturate(350%) hue-rotate(44deg) brightness(95%) contrast(86%);
}

.pagination-container a {
    color: var(--green);
    display: flex;
    align-self: flex-start;
    gap: 1rem;
    align-items: center;
}

.pagination-container a span {
    color: var(--green);
}

.pagination-container .chevron {
    border: 1px solid var(--green);
    border-radius: 50%;
    width: 50px;
}

@media only screen and (max-width: 600px) {
    .pagination-container .meta-title {
        display: none;
    }

    .pagination-container {
        margin-bottom: 40px;
        padding-top: 30px;
    }
}

.single-post .curve figure.alignleft {
    width: 80vw;
    height: 536px;
    overflow: hidden;
    border-radius: 0 50vw 50vw 0;
    margin: 100px auto !important;
}

.single-post .entry-content>.green-gradient-curve,
.single-tapacode_document .entry-content>.green-gradient-curve {
    background: linear-gradient(274deg, rgba(254, 252, 2, 1) 1%, rgba(68, 183, 1, 1) 55%);
    width: 100vw;
    padding: 162px 0;
    margin-left: -235px;
    border-radius: 50vw 0 0 50vw;
    margin-bottom: 100px;
}

.single-post .entry-content>.green-gradient-curve .gb-block-layout-column-inner,
.single-tapacode_document .entry-content>.green-gradient-curve .gb-block-layout-column-inner {
    max-width: 548px;
    margin-left: 236px;
    font-size: 1.375rem;
    font-weight: 400;
}

@media only screen and (max-width: 1200px) {
    .single-post .entry-content>.green-gradient-curve,
    .single-tapacode_document .entry-content>.green-gradient-curve {
        margin-left: calc(50% - 50vw);
        border-radius: 0;
    }

    .single-post .entry-content>.green-gradient-curve .gb-block-layout-column-inner,
    .single-tapacode_document .entry-content>.green-gradient-curve .gb-block-layout-column-inner {
        margin: 0 auto;
        display: block;
        width: 59%;
        max-width: 830px;
    }
}

@media only screen and (max-width: 600px) {
    .single-post .entry-content>.green-gradient-curve,
    .single-tapacode_document .entry-content>.green-gradient-curve {
        border-radius: 50vw 50vw 0 0;
        padding: 175px 0 80px;
    }
}


/*
* Working with Mea platform
*/
.meet-our-team {
    background: linear-gradient(274deg, rgba(254, 252, 2, 1) 1%, rgba(68, 183, 1, 1) 55%);
    width: 100vw;
    padding: 147px 0;
    margin-left: calc(-250px - 13%);
    border-radius: 50vw 0 0 50vw;
    margin-bottom: 100px;
    margin-top: 125px;
}

.meet-our-team .meet-our-team-left {
    margin-left: 236px;
    padding-right: 20vw;
    font-size: 1.375rem;
    font-weight: 400;
}

.meet-our-team .meet-our-team-left h2 {
    color: var(--white);
    font-size: 4rem;
    max-width: 300px;
}

.meet-our-team .meet-our-team-left p {
    color: var(--white);
    font-weight: 300;
    font-size: 1rem;
}

.meet-our-team .meet-our-team-left .wp-block-button__link {
    background-color: var(--dark-green);
    color: var(--white);
    margin-top: 50px;
    font-size: 1.075rem;
}

.profile-shields {
    width: 56vw;
}

@media only screen and (max-width: 1600px) {
    .meet-our-team {
        margin-left: calc(-154px - 0%);
    }
}

@media only screen and (max-width: 1300px) {
    .meet-our-team {
        margin-left: calc(-154px - 5%);
    }

    .profile-shields .gb-layout-column-wrap {
        grid-template-columns: 0fr;
    }
}

@media only screen and (max-width: 1000px) {
    .meet-our-team .meet-our-team-left {
        margin-left: 170px;
    }

    .meet-our-team {
        margin-left: -32px;
    }

    .profile-shields>.gb-layout-column-wrap {
        display: none;
    }

    .meet-our-team-left {
        width: 80vw;
    }
}

@media only screen and (max-width: 600px) {
    .meet-our-team {
        margin-left: 0;
        width: 100vw;
    }

    .meet-our-team .meet-our-team-left {
        margin-left: 94px;
    }
}

.profile-shields .wp-block-image {
    overflow: hidden;
    border-radius: 0 0 50vw 50vw;
    height: 347px;
    box-shadow: 0px 19px 34px rgb(0 0 0 / 25%);
}

.profile-shields .wp-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

#post-3104 .platform-tech-text-with-border {
    width: 70vw;
}

@media only screen and (max-width: 600px) {
    #post-3104 .rounded-corner-bottom-right {
        padding-bottom: 78px;
    }

    #post-3104 .platform-tech-text-with-border,
    #post-2325 .platform-tech-text-with-border {
        width: 100vw !important;
    }
}

/*
* Contact
*/

.locations {
    background-color: var(--grey);
    border-radius: 0 250px 0 0;
    padding-top: 128px;
    padding-bottom: 98px;
}

@media only screen and (max-width: 600px) {
    .locations {
        border-radius: 0 90px 0 0;
        padding-top: 80px;
        padding-bottom: 50px;
    }
}

.locations .location-blocks .gb-block-layout-column {
    background-color: var(--white);
    border-radius: 0 0 85px 0;
    overflow: hidden;
    padding: 45px 30px 30px;
    margin-bottom: 30px;
}

.locations .location-blocks .gb-block-layout-column .gb-block-layout-column-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.locations .location-blocks p {
    flex-grow: 1;
}

.locations .location-blocks .wp-block-buttons {
    margin-top: auto;
}

/*
* Dowmloads
*/
.downloads {
    background-color: var(--grey);
    border-radius: 0 150px 0 0;
    padding: 100px 24px 120px;
}

.downloads .wp-block-file {
    background-color: var(--white);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0 0 50px 0;
}

.downloads .wp-block-file a:first-child {
    color: var(--dark-green);
}

@media only screen and (max-width: 600px) {
    .downloads {
        padding: 125px 24px 120px;
    }
}

/*
* SEARCH
*/
.search .header-text {
    display: flex;
    flex-direction: column;
    background: url('assets/down-arrow-long.svg') no-repeat;
    background-position: right bottom 30px;
}

.search .page-titles {
    text-align: left;
    margin-bottom: 80px;
}

.search .page-titles h1 {
    font-weight: 300;
    font-size: 4rem;
}

.search #page {
    background-color: var(--grey);
    padding: 100px;
    max-width: 100%;
    border-radius: 0 150px 0 0;
}

.search #post-wrap article {
    background-color: var(--white);
    padding: 30px;
    border-radius: 0 0 50px 0;
    -webkit-box-shadow: 9px 18px 18px 0px rgba(199, 199, 199, 1);
    -moz-box-shadow: 9px 18px 18px 0px rgba(199, 199, 199, 1);
    box-shadow: 9px 18px 18px 0px rgba(199, 199, 199, 1);
}

.search .post-content {
    display: flex;
    gap: 50px;
}

.search .post-content>.section-one {
    max-width: 33.33%;
}

.search .post-content>.section-two .token {
    background: var(--dark-green);
    padding: 7px 15px;
    color: var(--white);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 300;
    margin-bottom: 20px;
    display: inline-block;
}

.search .post-content>.section-two h2 {
    font-size: 1.5rem;
    font-weight: 300;
}

.search .post-content>.section-two .entry-content {
    font-size: 1.125rem;
}

.search .post-content>.section-two .post-link {
    margin-top: 20px;
}

.search form[id^="search-form-"] {
    max-width: 549px;
    margin-right: auto;
}

.search input[type="search"] {
    border-radius: 30px;
    border-color: var(--dark-green);
    background: #00000000 url('assets/dark-search.svg') no-repeat 14px center;
    background-position: right 10px top 13px;
}

/*
* Contact Form
*/

.contact-form-section {
    margin-top: 127px;
}

@media only screen and (max-width: 600px) {
    .contact-form-section {
        margin-top: 65px;
        padding: 0 9px;
    }
}

.contact-form-section .left-column p {
    max-width: 340px;
}

.contact-form-section .right-column {
    background-color: var(--grey);
    padding: 60px;
    border-radius: 0 0 90px;
}

@media only screen and (max-width: 600px) {
    .contact-form-section .right-column {
        margin-left: -24px;
        width: 100vw;
        padding: 30px;
    }
}

.contact-form-section .right-column label {
    font-weight: 300;
    font-size: 1rem;
}

.contact-form-section .right-column input,
.contact-form-section .right-column textarea {
    padding: 20px;
    border-radius: 30px;
    border: 0;
    margin-top: 5px;
}

.contact-form-section .right-column input[type="submit"] {
    padding: 15px 30px;
    background-color: var(--light-green);
    font-weight: 300;
    color: var(--dark-green);
}

.contact-form-section .right-column input[type="submit"]:hover {
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}

.wide-image-right .platform-tech-image {
    margin-top: 90px;
}

@media only screen and (max-width: 600px) {
    .wide-image-right .platform-tech-image {
        margin-top: 7px;
        margin-bottom: 40px;
    }
}

.locations {
    padding-left: 50px;
    padding-right: 50px;
}

@media only screen and (max-width: 600px) {
    .half-moon {
        width: 100vw;
        border-radius: 0 0 50vw 50vw;
        height: 640px;
        margin-top: -185px !important;
    }
}

.error404 h1 {
    color: var(--white);
}

.error404 #content {
    min-height: 600px;
    padding: 100px;
}

.error404 form[id^="search-form-"] {
    margin-top: 30px;
    width: 100%;
    max-width: 100%;
}

/*
* White lines
*/
div[class^="white-line-"] {
    z-index: 9;
    display: block;
    position: absolute;
    background: var(--white);
    width: 150px;
}

.white-line-1 {
    height: 200px;
    right: 20px;
    margin-top: -203px;
}

.white-line-2 {
    height: 50px;
    left: -289px;
    margin-top: -25px;
}

.white-line-3 {
    height: 124px;
    right: -179px;
    margin-top: -70px;
}

.white-line-4 {
    height: 140px;
    right: -122px;
    margin-top: -750px;
}

.white-line-5 {
    height: 50px;
    right: 272px;
    margin-top: 100px;
}

.white-line-6 {
    height: 50px;
    right: 0;
    margin-top: -110px;
}

.white-line-7 {
    height: 50px;
    right: -194px;
    margin-top: 246px;
}

.white-line-8 {
    height: 100px;
    margin-top: -230px;
    left: -148px;
}

.white-line-9 {
    right: -218px;
    height: 50px;
    margin-top: 254px;
}

.white-line-10 {
    height: 100px;
    left: -50px;
    top: -200px;
}

@media only screen and (max-width: 1291px) {
    .white-line-4 {
        margin-top: -612px;
    }
}

@media only screen and (max-width: 784px) {

    .white-line-1,
    .white-line-2,
    .white-line-3,
    .white-line-5 {
        display: none !important;
    }
}

@media only screen and (max-width: 600px) {

    .white-line-1,
    .white-line-2 {
        display: block !important;
    }

    .white-line-1 {
        height: 150px;
        right: -178px;
        margin-top: 71px;
    }

    .white-line-2 {
        height: 150px;
        left: -112px;
        margin-top: 43px;
    }

    .white-line-3 {
        height: 124px;
        right: -90px;
        margin-top: 56px;
    }

    .white-line-4 {
        margin-top: -307px;
        height: 443px;
        right: -109px;
    }

    .white-line-5 {
        display: block !important;
        right: -64px;
        margin-top: 400px;
        height: 150px;
    }

    .white-line-6 {
        height: 150px;
        right: -125px;
        margin-top: -195px;
    }

    .white-line-7 {
        height: 150px;
        right: -131px;
        margin-top: 276px;
    }

    .white-line-8 {
        height: 150px;
        margin-top: 80px;
        left: -176px;
    }

    .white-line-9 {
        right: -113px;
        height: 150px;
        margin-top: 306px;
    }

    .white-line-10 {
        height: 150px;
        top: -17px;
        left: -172px;
    }
}


@media only screen and (max-width: 600px) {
    .solution-left-image {
        margin-top: 100px;
    }
}


.cat-selector {
    display: flex;
    justify-content: flex-end;
}

.cat-selector select {
    width: 112%;
    border: 2px solid var(--green);
    border-radius: 30px;
    color: var(--green);
    padding-left: 24px;
    padding-right: 20px;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* Remove default arrow */
    background-image: url(assets/chevron-down.svg);
    background-size: 30px;
    background-position: right 10px center;
}

.object-bottom img {
    object-position: bottom !important;
}


.site-content::before {
    content: none;
}

.container::before,
.container::after {
    content: none;
}

.clear::before,
.clear::after,
.entry-content::before,
.entry-content::after,
.comment-content::before,
.comment-content::after,
.site-header::before,
.site-header::after,
.site-content::before,
.site-content::after,
.site-footer::before,
.site-footer::after {
    content: none;
}

.parallax-img {
    background-image: url('/wp-content/uploads/2023/02/unnamed-5-2-2.jpg');
    height: 560px;
    width: 145%;
    border-radius: 0 50vw 50vw 0;
    z-index: 4;
    position: relative;
    background-size: cover;
    object-position: center;
    background-repeat: no-repeat;
}

.parallax-image-right {
    height: 560px;
    width: 145%;
    border-radius: 50vw 0 0 50vw;
    z-index: 4;
    position: relative;
    background-size: cover;
    object-position: center;
    background-repeat: no-repeat;
}

#background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;

}

.iframe-container {
    position: absolute;
    height: 708px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    border-radius: 0 0 var(--rounded-corner) 0;
    padding: 0;
}

.post-37 .iframe-container {
    height: 732px;
}

.post-62 .iframe-container {
    height: 888px;
}

#vimeo-background {
    position: absolute;
    top: -156px;
    min-height: 962px;
    width: 200%;
    left: -50vw;
    max-width: inherit;
    z-index: 1;

}

@media only screen and (max-width: 1242px) {
    .iframe-container {
        height: 883px;
    }

}

@media only screen and (max-width: 1216px) {
    .post-62 .iframe-container {
        height: 888px;
    }
}

@media only screen and (max-width: 1216px) {
    .iframe-container {
        height: 907px;
    }
}

@media only screen and (max-width: 1080px) {
    .post-37 .iframe-container {
        height: 757px;
    }
}

@media only screen and (max-width: 1037px) {
    .iframe-container {
        height: 776px;
    }

    .post-37 .iframe-container {
        height: 716px;
    }
}

@media only screen and (max-width: 1000px) {
    .iframe-container {
        height: 630px;
    }
}

@media only screen and (max-width: 963px) {
    .iframe-container {
        height: 689px;
    }

    .post-37 .iframe-container {
        height: 675px;
    }
}

@media only screen and (max-width: 876px) {
    .iframe-container {
        height: 791px;
    }
}

@media only screen and (max-width: 787px) {
    .iframe-container {
        height: 844px;
    }

    .post-37 .iframe-container {
        height: 700px
    }
	.wp-block-genesis-blocks-gb-column.gb-block-layout-column:has(.parallax-decor) {
		z-index: -1;
	}
}

@media only screen and (max-width: 787px) {


    #vimeo-background {
        width: 300%;
        left: -100vw;
    }

    .post-62 .iframe-container {
        height: 900px;
    }

    .post-62 .gb-block-layout-column-gap-8 {}
}

@media only screen and (max-width: 600px) {
    .iframe-container {
        height: 877px;
    }

    #vimeo-background {
        width: 284%;
        left: -88vw;
    }

    .post-37 .iframe-container {
        height: 705px;
        border-radius: 0 0 158px 0;
    }

    #post-62 .iframe-container {
        height: 775px;
        border-radius: 0 0 165px 0;
    }

    #post-62 .rounded-corner-bottom-right {
        padding-bottom: 130px;
    }

    #post-62 #vimeo-background {
        width: 345%;
    }
}

.slider-block__img {
    border-radius: 0 100% 100% 0;
    margin-bottom: 2rem;
    margin-right: 3.44vw;
    overflow: hidden;
    min-height: 347px;

}

.slider-block__title a {
    color: var(--dark-green);
}

.slider-block__img figcaption {
    display: none;
}

.slider-block__img img {
    height: 344px;
    object-fit: cover;
}

.slider-block__text {
    margin-right: 3.44vw;
    padding-right: 25px;
}

/*ii
* Reordering blocks on platfrom page for mobile view
*/
@media only screen and (max-width: 600px) {
    .post-62-a {
        order: 1;
    }

    .post-62-b {
        order: 2;
    }

    .post-62-c {
        order: 5;
    }

    .post-62-d {
        order: 3;
    }

    .post-62-e {
        order: 4;
    }

    .post-62-f {
        order: 6;
    }

    .post-62-g {
        order: 7;
    }

    .post-62-h {
        order: 8;
    }

    .post-62-i {
        order: 9;
    }

    .post-62-j {
        order: 10;
    }

}

@media only screen and (max-width: 600px) {
    .post-2325 .entry-content {
        display: flex;
        flex-flow: column;

    }

    .post-2325-a {
        order: 1;
    }

    .post-2325-b {
        order: 2;
    }

    .post-2325-c {
        order: 3;
    }

    .post-2325-d {
        order: 4;
    }

    .post-2325-e {
        order: 5;
    }

    .post-2325-f {
        order: 9;
    }

    .post-2325-g {
        order: 6;
    }

    .post-2325-h {
        order: 7;
    }

    .post-2325-i {
        order: 8;
    }

    .post-2325-j {
        order: 10;
    }

    .post-2325-k {
        order: 11;
    }
}

.category-case-study h4.viewport-section.in-viewport.move-margin-effect,
.home .featured-resources h4.viewport-section.in-viewport.move-margin-effect {
    margin-top: -90px;
}

.benefit__img a {
    display: inline;
}

.scroll-element {
    scroll-margin-top: 440px;
}

#broker {
    scroll-behavior: smooth;
    scroll-margin-top: 440px;
}

#mga {
    scroll-behavior: smooth;
    scroll-margin-top: 440px;
}

/*
Client__logo
*/
.client__logo {}

.client__container {
    gap: 15%;
}

/** quick remove **/
a[href="https://ingestion.meaplatform.com/login"] {
    display: none;
}