@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Oswald:wght@700&display=swap');

@font-face {
    font-family: 'DrukBold';
    src: url('../fonts/DrukBold.eot');
    src: url('../fonts/DrukBold.eot') format('embedded-opentype'),
         url('../fonts/DrukBold.woff2') format('woff2'),
         url('../fonts/DrukBold.woff') format('woff'),
         url('../fonts/DrukBold.ttf') format('truetype'),
         url('../fonts/DrukBold.svg#DrukBold') format('svg');
}
@font-face {
    font-family: 'DrukBoldItalic';
    src: url('../fonts/DrukBoldItalic.eot');
    src: url('../fonts/DrukBoldItalic.eot') format('embedded-opentype'),
         url('../fonts/DrukBoldItalic.woff2') format('woff2'),
         url('../fonts/DrukBoldItalic.woff') format('woff'),
         url('../fonts/DrukBoldItalic.ttf') format('truetype'),
         url('../fonts/DrukBoldItalic.svg#DrukBoldItalic') format('svg');
}

/*@font-face {
    font-family: 'drukbold';
    src: url('../fonts/druk-bold-webfont.woff2') format('woff2'),
         url('../fonts/druk-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'drukbold_italic';
    src: url('../fonts/druk-bolditalic-webfont.woff2') format('woff2'),
         url('../fonts/druk-bolditalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}*/


:root {
    --white: #ffffff;
    --purple: #8A54ED;
    --pink: #FB00C9;
    --light-grey: #C4C4C4;
    --grey: #A1A1A1;
    --dark-grey: #231F20;
    --black: #000000;

    --heading-font : 'DrukBold', sans-serif;
    --serif : 'Inter', sans-serif;
}

/* ############ GLOBAL ############ */

html, body {
    font: normal 10px/1.3 arial,sans-serif;
    font-family: var(--serif);
    font-weight: 400;
    font-style: normal;
    cursor: default;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width:100%;
    height:auto;
    margin:0px;
    padding:0px;
    line-height:1.5;
    color: var(--dark-grey);
}
html {
    overflow-y: scroll;
    scroll-behavior: smooth;
}
* {
    box-sizing: border-box;
}

.post,
.page {
	margin: 0;
}

.page-content, .entry-content, .entry-summary {
    margin: 0;
}

p{
    font-size:1.5rem;
    color: var(--dark-grey);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    -webkit-margin-before: 0.0em;
    -webkit-margin-after: 0.0em;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
    line-height: 1.1;
    margin-top:0px;
    margin-bottom:2rem;
    color: var(--dark-grey);
}
h2,
h3,
h4,
h5,
h6{
    margin-bottom:2rem;
}
h1{
    font-size: 5rem;
    font-family: var(--heading-font);
    font-weight: normal;
    letter-spacing: 0.02em;
    color: var(--dark-grey);
}
h2{
    font-size: 3rem;
}
h3{
    font-size: 2rem;
}

ul, ol {
    margin: 0 0 1.75rem 0; 
}
ul {
    padding-inline-start: 0.8rem; 
}
ol {
    padding-inline-start: 2.5rem; 
}
li{
    font-size: 1.5rem;
    color: var(--dark-grey);
    padding-bottom: 2rem;
}
a,
a:hover {
    color:var(--purple);
}
a:hover {
    opacity: 1;
    text-decoration: none;
}

a:visited {
    color: var(--purple);
} 

b, strong {
    font-weight: 700;
}

img {
    width: auto;
    height:auto;
    max-width: 100%;
    max-height: 100%;
}
.the-content p img{
    margin-top:2rem;
    margin-bottom:2rem;
}

.wpcf7-list-item {
    display: inline-block;
    margin: 0 0 0 0em;
}

.container {
    width: 100%;
    margin: 0 auto;
    max-width: 1126px;
}
.container-fluid{
    width:100%;
    max-width:100%;
    margin: 0 auto;
    padding-left:9rem;
    padding-right:9rem;
}
.row {
    margin-right: -1.2rem;
    margin-left: -1.2rem;
}
.row > *{
    padding-right: 1.2rem;
    padding-left: 1.2rem;
}
hr{
    background-color: var(--purple);
    margin: 5rem 0;
    height: 2px;
    border: 2px;
}
button{
    min-width: auto;
    width: auto;
    min-height: 3.6rem;
    height: auto;
    border: 2px var(--purple) solid;
    font-size: 1.3rem;
    color: var(--dark-grey);
    outline: none;
    margin-top: 1.5rem;
    outline: none !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 3rem;
    font-weight: 500;
    line-height: 1.3;
    background-color:#ffffff;
}
button:hover{
    border: 2px var(--purple) solid;
    color: #ffffff;
    background-color:var(--purple);
    opacity:1;
}
button.primary{
    border: 2px var(--purple) solid;
    color: var(--dark-grey);
}
button.primary:hover, button.primary.active:hover{
    border: 2px var(--dark-grey) solid;
    background-color: var(--dark-grey);
    color: var(--white);
}
button.primary.active{
    background-color: var(--purple);
    color: var(--white);
}
button.active{
    background-color: var(--purple);
    color: var(--white);
}
button.secondary{
    border: 2px var(--light-grey) solid;
    color: var(--dark-grey);
}
button.secondary:hover, button.secondary.active:hover, button.active:hover{
    border: 2px var(--dark-grey) solid;
    background-color: var(--dark-grey);
    color: var(--white);
}
button.secondary.active{
    background-color: var(--purple);
    color: var(--white);
    border-color: var(--purple);
}
a:focus {
    outline: none;
}

/* WYSIWYG */
article .entry-content{
    line-height:1.7;
}
article .entry-content > *:last-child{
    margin-bottom:0;
}
article .entry-content h1{
    font-size: 6rem;
    font-family: var(--heading-font);
    font-weight: normal;
    letter-spacing: 0.02em;
    color: var(--dark-grey);
}
article .entry-content h2{
    font-size: 3rem;
    margin-top:5rem;
    margin-bottom:2rem;
}
article .entry-content h3{
    font-size: 2rem;
    margin-top:5rem;
    margin-bottom:2rem;
}
article .entry-content h4{
    font-size: 1.7rem;
    margin-top:5rem;
    margin-bottom:2rem;
}
article .entry-content h5{
    
}
article .entry-content h6{

}
article .entry-content p{
    margin-bottom:3rem;
/*    line-height:1.7;*/
}

article .entry-content figure{
    margin-bottom:3rem;
}
article .entry-content figure figcaption{
    font-size:1.5rem;
    background-color:#DCE1E5;
    padding:1rem 2rem;
}
article .entry-content figure.alignleft figcaption{
    text-align:left;
}
article .entry-content figure.aligncenter figcaption{
    text-align:center;
}
article .entry-content figure.alignright figcaption{
    text-align:right;
}
article .entry-content figure.aligncenter .twitter-tweet.twitter-tweet-rendered {
    margin: 0 auto;
}
/*article .entry-content figure.alignleft .twitter-tweet.twitter-tweet-rendered {
    margin-left: 0;
}
article .entry-content figure.alignright .twitter-tweet.twitter-tweet-rendered{
    margin-left:auto;
    margin-right: 0;   
}
article .entry-content figure.alignleft,
article .entry-content figure.alignright {
    float: none;
    margin-left: 0em;
    margin-bottom: 0em;
}*/
article .entry-content figure.aligncenter .wp-block-embed__wrapper iframe {
    margin: 0 auto !important;
}

article .entry-content p a{
    color:var(--purple);
    text-decoration: underline;
    text-underline-offset: 0.3rem;
}
article .entry-content p a.button{
    background-color: var(--purple);
    min-width: 15rem;
    width: auto;
    height: 3.5rem;
    border: 2px var(--purple) solid;
    font-size: 1.3rem;
    color: var(--white);
    text-align:center;
    outline: none !important;
    cursor: pointer;
    display: inline-block;
    padding: 0.5rem 3rem;
    font-weight: 500;
    text-decoration:none;
}
article .entry-content p a.button:hover{
    background-color: var(--white);
    border: 2px var(--purple) solid;
    color: var(--purple);
    opacity:1;
}
article .entry-header ol,
article .entry-content ol{
    margin-top:3rem;
    margin-bottom:3rem;
}
article .entry-header ul li > ul,
article .entry-header ul li > ol,
article .entry-header ol li > ul,
article .entry-header ol li > ol,
article .entry-content ul li > ul,
article .entry-content ul li > ol,
article .entry-content ol li > ul,
article .entry-content ol li > ol{
    margin-top:1.5rem;
    margin-bottom:0.5rem;
}
article .entry-header ol li,
article .entry-content ol li{
    padding-bottom:0rem;
    margin-bottom:1rem;
    padding-left: 0.5rem;
}
article .entry-header ul li a,
article .entry-header ol li a,
article .entry-content ul li a,
article .entry-content ol li a{
    color:var(--purple);
}
article .entry-header ul li a:hover,
article .entry-header ol li a:hover,
article .entry-content ul li a:hover,
article .entry-content ol li a:hover{
    color:var(--purple);
    text-decoration:underline;
}
article .entry-header ul li:last-child,
article .entry-header ol li:last-child,
article .entry-content ul li:last-child,
article .entry-content ol li:last-child{
    margin-bottom:0rem;
}
article .entry-header ol li::marker,
article .entry-content ol li::marker{
    font-weight: 700;
    color:var(--purple);
}
article .entry-header ol li > ol,
article .entry-content ol li > ol{
    list-style: lower-alpha;
}
article .entry-header ul,
article .entry-content ul{
    margin-top:3rem;
    margin-bottom:3rem;
}
article .entry-header p + ul,
article .entry-content p + ul{
    margin-top:-2rem;
}
article .entry-header ul li,
article .entry-content ul li{
    padding-bottom:0rem;
    margin-bottom:1rem;
}
article .entry-header ul,
article .entry-content ul{
    list-style:none;
}
article .entry-header ul li::marker,
article .entry-content ul li::marker{
    display:none;
}
article .entry-header ul li,
article .entry-content ul li{
    padding-left:2.2rem;
    background-image:url('../images/arrow_purple_right.svg');
    background-size:1.3rem auto;
    background-position:left top +0.7rem;
    background-repeat:no-repeat;
}
article .entry-header ol li > ul li,
article .entry-header ul li > ul li,
article .entry-content ol li > ul li,
article .entry-content ul li > ul li{
    padding-left:1.5rem;
    background-image:url('../images/arrowhead_purple_right.svg');
    background-size:0.7rem auto;
    background-position:left top +0.7rem;
    background-repeat:no-repeat;
}
article .entry-header ol li > ul li > ul li,
article .entry-header ul li > ul li > ul li,
article .entry-content ol li > ul li > ul li,
article .entry-content ul li > ul li > ul li{
    padding-left: 1.7rem;
    background-image: url(../images/list-dash.svg);
    background-size: 1rem auto;
    background-position: left center;
    background-repeat: no-repeat;
}
article .entry-header ol li > ul li:last-child,
article .entry-header ul li > ul li:last-child,
article .entry-header ol li > ul li:last-child,
article .entry-header ul li > ul li:last-child,
article .entry-content ol li > ul li:last-child,
article .entry-content ul li > ul li:last-child,
article .entry-content ol li > ul li:last-child,
article .entry-content ul li > ul li:last-child{
    margin-bottom:2rem;
}
article .entry-content blockquote{
    margin-top: 4rem;
    margin-bottom: 5rem;
}
article .entry-content blockquote.centred{
    text-align:center;
}
article .entry-content blockquote p{
    font-family: var(--heading-font);
    font-weight: normal;
    letter-spacing: 0.02em;
    color:var(--purple);
    font-size:4rem;
    line-height:1.1;
    margin-bottom:2.5rem;
}
article .entry-content blockquote p em{ 
    font-family: var(--serif);
    /*color:var(--black);
    font-size:1.5rem;
    font-style:normal;*/
}
article .entry-content blockquote h6{
    font-family: var(--serif);
    color:var(--purple);
    font-size:1.8rem;
    line-height:1.4;
    margin-bottom:0;
}
article .entry-content blockquote > *:last-child{
    margin-bottom:0;
}
article .entry-content blockquote cite{
    font-size: 1.5rem;
    margin-top: 2.25rem;
    display: block;
    font-weight:400;
    font-style:normal;
    color:var(--dark-grey);
    font-family: var(--serif);
    letter-spacing: 0.01em;
}
article .entry-content blockquote cite strong{
    font-weight:700;
}
article .entry-content blockquote.long p{
    font-family: var(--serif);
    font-weight: 700;
    letter-spacing: 0.01em;
    color:var(--purple);
    font-size:1.8rem;
    line-height:1.45;
    margin-bottom:2.5rem;
}
article .entry-content .readmore_post {
    margin-top: 0;
    margin-bottom: 3rem;
    display: table;
    border: 1px solid #C4C4C4;
    padding: 1rem 1.3rem;
}
article .entry-content .readmore_post a{
    font-weight:400;
    color:var(--dark-grey);
    font-size:1.5rem;
    line-height:1.3;
}
article .entry-content .readmore_post a span{
    font-weight:700;
    color:var(--purple);
    background-image:url('../images/search_purple.svg');
    background-size:1.7rem;
    background-position:left top 0.1rem;
    background-repeat:no-repeat;
    padding-left: 2.5rem;
    width: 14rem;
}
article .entry-content .readmore_post a:hover span{
    text-decoration:underline;
}
article .entry-content figure.wp-block-table table{
    margin-bottom:0;
}
article .entry-content figure.wp-block-table table tbody > tr:first-child > td,
article .entry-content figure.wp-block-table table tbody tr > th {
    border: 1px solid #C4C4C4;
    padding: 1rem;
    font-size:1.5rem;
    color:#ffffff;
    font-weight:700;
    letter-spacing:0.04em;
    background-color:var(--purple);
    line-height: 1.3;
}
article .entry-content figure.wp-block-table table tbody tr > td {
    border: 1px solid #C4C4C4;
    padding: 1rem;
    font-size:1.3rem;
    color:#231F20;
    font-weight:500;
    letter-spacing:0.01em;
}
article .entry-content .dataTables_wrapper {
    overflow-x: auto;
    margin-bottom:3rem;
    font-size: 1.3rem;
}
article .entry-content table.tablepress{
    margin-bottom:3rem;
}
article .entry-content .dataTables_wrapper table.tablepress{
    margin-bottom:0;
}
article .entry-content table.tablepress thead tr th{
    border: 1px solid #C4C4C4;
    padding: 1rem;
    font-size:1.5rem;
    color:#ffffff;
    font-weight:700;
    letter-spacing:0.04em;
    background-color:var(--purple);
    line-height: 1.3;
}
article .entry-content table.tablepress tbody tr td {
    border: 1px solid #C4C4C4;
    padding: 1rem;
    font-size:1.3rem;
    color:#231F20;
    font-weight:500;
    letter-spacing:0.01em;
}
article .entry-content .swiper-wrapper {
    height: 100% !important;
}


/* HEADER */
.menu ul.sub-menu {
    width: 100%;
    position: absolute;
    z-index: 100;
    right: 0px;
    left: -999em;
    top: 100%;
    flex-direction: column;
    border-top: 3px solid var(--purple);
    flex-wrap: wrap;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(50%, 1fr));
    background-color: var(--dark-grey);
    /* left: auto; */
    padding: 4rem 0;
}
.menu ul.sub-menu li a {
    color: var(--white) !important;
}
.menu ul.sub-menu .featured-posts,
.menu ul.sub-menu .menu-navigation{
    display: flex;
}
.menu ul.sub-menu h2{
    font-size: 2rem;
    font-family: var(--heading-font);
    font-weight: normal;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--white);
    padding-right: 3.5rem;
    padding-top: 1rem;
}
.menu ul.sub-menu .featured-posts .menu-featured,
.menu ul.sub-menu .menu-navigation .menu-container{
    border-left: 1px var(--white) solid;
    padding-left: 3.4rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    height: 100%;
}
.menu ul.sub-menu .featured-posts{
    margin-bottom: 0;
}
.menu ul.sub-menu .featured-posts .menu-featured{
    width: 100%;
}
.menu ul.sub-menu .featured-posts .menu-featured>a{
    width: 100%;
}
.menu ul.sub-menu .featured-posts .menu-featured>a:hover{
    text-decoration: none;
}
.menu ul.sub-menu .menu-navigation .menu-container li{
    padding-bottom: 3rem !important;
}
.menu ul.sub-menu .menu-navigation .menu-container li:last-of-type{
    padding-bottom: 0 !important;
}
.menu ul.sub-menu .featured-posts .menu-featured>a:last-of-type .post-teaser-mini{
    margin-bottom: 0rem;
}
.menu ul.sub-menu .featured-posts .post-teaser-mini .text{
    border-top-color: var(--purple);
}
.menu ul.sub-menu .featured-posts .post-teaser-mini .text .title{
    color: var(--white);
}
.menu ul.sub-menu .featured-posts .post-teaser-mini .text .author-names p{
    color: var(--white);
}
.menu ul.sub-menu .featured-posts .post-teaser-mini .text .date{
    color: var(--white);
}
/* PURPLE MENU */
.logged-in .site-header .scrollmagic-pin-spacer{
    inset: auto !important;
}
#site-navigation{
    background-color: var(--dark-grey);
    height: 6rem;
    display: flex;
    align-items: flex-end;
    /* margin-top: 6.3rem; */
    position: relative;
}
/* body.logged-in #site-navigation{
    margin-top: calc(9.4rem - 33px);
} */
#site-navigation #purple-menu li{
    padding-bottom: 2rem;
    font-weight: 500;
}
#site-navigation #purple-menu>li:not(:first-of-type){
    padding-left: 6rem;
}
#site-navigation #purple-menu>li:last-of-type{
/*    flex-grow: 1;*/
    padding-right:1rem;
}
#site-navigation #purple-menu li.menu-item-has-children{
    position: static;
}
#site-navigation #purple-menu li a{
    color: var(--white);
}
#site-navigation #featured-menu li a{
    color: var(--white);
    display: flex;
    align-items: flex-start;
}
#site-navigation #featured-menu>li{
    margin-left: 3.7rem;
    background-color: var(--purple);
    height: 4.3rem;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    margin-top: -1rem;
    border: 1px solid #FFF;
}
#site-navigation #featured-menu li a::before{
    content : '';
    background-image: url(../images/featured-menu-icon.svg);
    width: 1.82rem;
    height: 1.82rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 0.8rem;
}
/* TOP MENU */
body.overflow {
    overflow: hidden;
}
body.top {
    margin-top: 0 !important;
}
.fixed-nav{
    position: relative;
    width: 100%;
    background-color: var(--white);
    z-index: 999;
    border-bottom: 3px var(--dark-grey) solid;
}
/* @media only screen and (max-width: 991px) {
    .site-header-nav-close .fixed-nav{
        position: fixed !important;   
        top: 0;
        left: 0;
    }
} */
body.logged-in .fixed-nav.triggered{
    top: 32px !important;
}
.fixed-nav>.inner{
    position: relative;
}
.top-header{
    display: flex;
    align-items: center;
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
    max-height: 6.1rem;
    position: relative;
}
.top-header.scroll{
    position: initial;
}
.top-header .custom-logo-link{
    width: 13rem;
    min-width: 13rem;
    transition: all .5s;
}
.site-header-nav-close .top-header .custom-logo-link img{
    filter: invert(1) saturate(0) brightness(200%);
}
.top-header #burger-navigation {
    display: none;
}
.burger-container{
    position: relative;
    height: 5rem;
}
.burger {
    width: 5rem;
    height: 5rem;
    position: absolute;
    top: 0;
    left: -1rem;
    /* z-index: 99; */
}
.burger span {
    position: relative;
    margin-top: 7px;
    margin-bottom: 7px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -15px;
    margin-top: -1.5px;
}
.burger span, .burger span::before, .burger span::after {
    display: block;
    width: 4rem;
    height: 3px;
    background-color: var(--dark-grey);
    outline: 1px solid transparent;
    -webkit-transition-property: background-color, -webkit-transform;
    -moz-transition-property: background-color, -moz-transform;
    -o-transition-property: background-color, -o-transform;
    transition-property: background-color, transform;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.burger span::before{
    width: 2.7rem;
    transition: all .3s;
}
.burger:hover span::before{
    width: 4rem;
}
.burger span::before, .burger span::after {
    position: absolute;
    content: "";
}
.burger span::before {
    top: -0.8rem;  
}
.burger span::after {
    top: 0.8rem;
}
.burger.clicked span {
    background-color: transparent;
}
.burger.clicked span::before {
    width: 3rem;
    height: 2px;
    top: -7px;
    background-color: var(--white);
    -webkit-transform: translateY(7px) rotate(45deg);
    -moz-transform: translateY(7px) rotate(45deg);
    -ms-transform: translateY(7px) rotate(45deg);
    -o-transform: translateY(7px) rotate(45deg);
    transform: translateY(7px) rotate(45deg);
}
.burger.clicked span::after {
    width: 3rem;
    height: 2px;
    top: 7px;
    background-color: var(--white);
    -webkit-transform: translateY(-7px) rotate(-45deg);
    -moz-transform: translateY(-7px) rotate(-45deg);
    -ms-transform: translateY(-7px) rotate(-45deg);
    -o-transform: translateY(-7px) rotate(-45deg);
    transform: translateY(-7px) rotate(-45deg);
}
.burger:hover {
    cursor: pointer;
}
.menu-burger-menu-container {
    background-color: var(--dark-grey);
    position: fixed;
    z-index: 9;
    top: 0;
    left: 0;
    height: 100%;
    max-width: 48rem;
    width: 100%;
    padding: 0 0 12rem 0;
    overflow-y: auto;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -o-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.menu-burger-menu-container .burger-logo-container{
    list-style-type: none;
    display: flex;
    align-items: flex-start;
    width: 100%;
    margin: 0 auto;
    max-width: 48rem;
    padding-left: 9rem;
    padding-right: 9rem;
}
@media only screen and (max-width: 991px)  {
    .menu-burger-menu-container .burger-logo-container{
        display: none;
    }
    .site-header.site-header-nav-close .fixed-nav{
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
    }
    .menu-burger-menu-container .burger-logo-container .burger{
        position: relative;
        left: -1.8rem;
        top: 0.5rem;
        z-index: 99;
        opacity: 0;
    }
    .menu-burger-menu-container .burger-logo-container .custom-logo-link{
        margin-left: 4.2rem;
        margin-top: 1.3rem;
        opacity: 0;
        z-index: 99;
        transition: 0s;
    }
    .top-header .custom-logo-link{
        z-index: 99;
    }
    .top-header .burger{
        z-index: 99;
    }
    .menu-burger-menu-container>.inner{
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
}
.menu-burger-menu-container .burger-logo-container .burger{
    position: relative;
    left: -1.8rem;
    top: 0.5rem;
    z-index: 99;
    opacity: 0;
}
.menu-burger-menu-container .burger-logo-container .custom-logo-link{
    margin-left: 4.2rem;
    margin-top: 1.3rem;
    opacity: 0;
    z-index: 99;
    transition: 0s;
}
.menu-burger-menu-container.show .burger-logo-container .custom-logo-link,
.menu-burger-menu-container.show .burger-logo-container .burger{
    opacity: 1;
}
.menu-burger-menu-container ul.menu .sub-menu h3#back-to-menu{
    display: none;
}
body.logged-in .menu-burger-menu-container{
    top: 32px;
    height: calc(100% - 32px);
}
@media only screen and (min-width: 1530px)  {
    .menu-burger-menu-container{
        max-width: calc(48rem + (100vw - 1530px));
    }
}
.menu-burger-menu-container.show {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
}
.menu-burger-menu-container.show ul#burger-menu li {
    opacity: 1;
}
#burger-menu li .sub-menu{
    position: relative;
    left: auto;
    display: flex;
    border-top: none;
    padding-top: 1rem;
    padding-bottom: 0;
}
.menu-burger-menu-container.show ul#burger-menu li.menu-item-has-children{
    padding-bottom: 0rem;
}

.menu-burger-menu-container ul#burger-menu {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin: 0 auto;
    max-width: 48rem;
    padding-left: 9rem;
    padding-right: 9rem;
}
.menu-burger-menu-container ul#burger-menu>li {
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    overflow: hidden;
}
.menu-burger-menu-container ul#burger-menu li:last-of-type {
    margin-bottom: 0px;
}
.menu-burger-menu-container ul#burger-menu li a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    display: block;
    padding: 1rem 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.menu-burger-menu-container ul#burger-menu li.current_page_item>a{
    text-decoration: underline;
}
.menu-burger-menu-container ul#burger-menu li.current_page_item>a::before{
    transform: translateX(0%);
}
.menu-burger-menu-container ul#burger-menu li a:hover {
    opacity: 0.7;
}

.menu-burger-menu-container .social-container{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--purple);
    padding-bottom: 4.5rem;
    padding-top: 3.5rem;
}
.menu-burger-menu-container .social-container .inner{
    width: 100%;
    margin: 0 auto;
    max-width: 48rem;
    padding-left: 9rem;
    padding-right: 9rem;
}
.menu-burger-menu-container .social-container h2{
    font-weight: 700;
    color: var(--white);
    font-size: 2rem;
}
.menu-burger-menu-container .social-container img{
    max-width: 2.7rem;
    max-height: 2.1rem;
    margin-right: 1.3rem;
}
.rhs{
    display: flex;
    justify-content: flex-start;
    align-items: start;
    width: 100%;
}
.rhs .menu-purple-menu-container{
    margin-top:2.7rem;
}
.top-header.scroll .rhs{
    justify-content: flex-end;
}
#purple-fixed-menu{
    display: none;
    margin: 0;
}
#featured-fixed-menu{
    display: none;
    margin: 0;
    padding: 0;
}
.top-header.scroll #purple-fixed-menu{
    display: flex;
}
.top-header.scroll #featured-fixed-menu{
    display: flex;
}
#purple-fixed-menu>li{
    list-style: none;
    padding-bottom: 0;
    padding-left: 6rem;
    font-weight: 500;
    padding-bottom: 2rem;
}
.top-header.scroll #featured-fixed-menu li{
    list-style: none;
    padding-bottom: 0;
    margin-left: 3.7rem;
    padding-bottom: 0.8rem;
}
.top-header.scroll #featured-fixed-menu li a{
    color: var(--white);
    display: flex;
    align-items: flex-start;
}
.top-header.scroll #featured-fixed-menu>li{
    margin-left: 3.7rem;
    background-color: var(--purple);
    height: 4.3rem;
    padding: 0 2.3rem;
    display: flex;
    align-items: center;
}
.top-header.scroll #featured-fixed-menu li a::before{
    content : '';
    background-image: url(../images/featured-menu-icon.svg);
    width: 1.82rem;
    height: 1.82rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 0.8rem;
}
#purple-fixed-menu>li a{
    color: var(--dark-grey);
}
#purple-fixed-menu li:hover > ul, #purple-fixed-menu li.focus > ul {
    left: auto;
}
.top-header.scroll .menu-ceiling-menu-container{
    display: none;
}
#ceiling-menu{
    display: flex;
    margin: 0;
    padding: 0;
}
#ceiling-menu li{
    list-style: none;
    width: 12rem;
    height: 3.5rem;
    background-color: var(--purple);
    padding-bottom: 0;
}
#ceiling-menu li:hover{
    background-color: var(--purple);
}
#ceiling-menu li:hover a{
    color: var(--white);
    opacity: 1;
    text-decoration: none;
}
#ceiling-menu li:not(:last-of-type){
    margin-right: 1.4rem;
}
#ceiling-menu li a{
    color: var(--white);
    background-color: var(--purple);
    font-size: 1.3rem;
    font-weight: 500;    
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu-login-menu-container{
    position: absolute;
    right: 9rem;
    top: 0;
    width: 8.5rem;
    height: 100%;
}
.menu-login-menu-container #login-menu{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}
/*.menu-login-menu-container #login-menu #menu-item-80{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
}
.menu-login-menu-container #login-menu #menu-item-80 a{
    width: 100%;
    height: 100%;
    text-indent: -999px;
    overflow: hidden;
}
.menu-login-menu-container #login-menu #menu-item-80{
    background: transparent url(/wp-content/uploads/2023/07/user-icon-black.svg) no-repeat 2.8rem;
    background-size: 3.5rem;
}
.menu-login-menu-container #login-menu #menu-item-80:hover,
.menu-login-menu-container #login-menu #menu-item-80.focus{
    background: var(--dark-grey) url(/wp-content/uploads/2023/07/user-icon-white.svg) no-repeat 2.8rem;
    background-size: 3.5rem;
}*/
.menu-login-menu-container #login-menu ul {
    float: left;
    position: absolute;
    top: calc(100% - 1px);
    left: -999em;
    z-index: 99999;
    padding: 0;
    margin: 0;
    background-color: var(--dark-grey);
    width: 17rem;
    border-top: 0px var(--white) solid;
    display: flex;
    flex-direction: column;
}
.menu-login-menu-container #login-menu ul li{
    list-style: none;
    border-top: 1px var(--white) solid;
    text-align: center;
    padding:0;
}
.menu-login-menu-container #login-menu ul li a{
    color: var(--white) !important;
    font-size: 1.5rem;
    font-weight: 500;
    padding: 1rem 0;
    display: block;
    text-indent: 0px !important;
}
/*.menu-login-menu-container #login-menu #menu-item-80:hover > ul, .menu-login-menu-container #login-menu #menu-item-80.focus > ul {
    left: 0;
}*/
.top-header.scroll .menu-login-menu-container{
    display: none;
}
/* SEARCH BAR */
.wp-block-search__inside-wrapper{
    display: flex;
    border: 1px solid var(--grey);
    width: 320px;
    max-width: 100%;
    height: 3.7rem;
    margin-left: 4.8rem;
}
/* .top-header.scroll .wp-block-search__inside-wrapper{
    max-width: 3rem;
    border: none;
} */
input[type="search"].wp-block-search__input{
    width: calc(100% - 5rem);
    margin-right: 0;
    font-size: 1.7rem;
    color: var(--dark-grey);
    border: none;
    outline: none;
    padding: 0.3rem 1rem;
}
/* .top-header.scroll input[type="search"].wp-block-search__input{
    display: none;
} */
.top-header.scroll .search-icon{
    position: relative;
    width: 4rem;
    height: 6rem;
    background: transparent url(/wp-content/uploads//2025/05/search-icon.webp) no-repeat;
    background-size: 1.7rem;
    cursor: pointer;
    margin-left: 3rem;
    background-position: bottom 2rem center;
}
.top-header.scroll .search-icon #search-toggle{
    width: 100%;
    height: 100%;
}
.top-header.scroll .wp-block-search__inside-wrapper{
    margin-left: 0;
    background-color: white;
}
.top-header.scroll .widget_search{
    position: absolute;
    top: 100%;
    right: 0;
    padding: 2rem;
    background: var(--purple);
    max-width: 40rem;
    display: none;
}
.top-header.scroll .widget_search.show{
    display: block;
}
.top-header.scroll .rhs{
    align-items: center;
}
.top-header.scroll .widget_search .wp-block-search__label{
    display: none;
}
.top-header .mobile-sharing{
    display: none;
}
.wp-block-search__button {
    text-indent: -999px;
    overflow: hidden;
    width: 3rem;
    min-width: 3rem;
    height: 100%;
    padding: 0;
    margin: 0;
    border: 1px solid transparent;
    border-radius: inherit;
    color: #012464;
    background: transparent url("/wp-content/uploads/2025/04/search-icon.webp") no-repeat left;
    background-size: 1.7rem;
    cursor: pointer;
    margin-left: 1rem;
    background-color:transparent !important;
}
.wp-block-search__button:hover{
    border: 1px solid transparent;
    opacity: 0.8;
}

/* FOOTER */
.site-footer .purple-section{
    background-color: var(--purple);
}
.site-footer .purple-section h2{
    font-weight: 700;
    color: var(--white);
    font-size: 2rem;
    padding-right: 1.5rem;
    margin-bottom: 0;
    margin-top:0.8rem;
}
.site-footer .purple-section .container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 1.3rem;
    padding-bottom: 1.3rem;
}
.site-footer .purple-section .container .social-container{
    display: flex;
/*    align-items: center;*/
}
.site-footer .purple-section .container .social-container img{
    width: 3.6rem;
    height: auto;
    margin-right: 0.5rem;
    margin-top: 0rem;
}
.site-footer .purple-section .container .social-container a:last-child img{
    margin-right: 0rem;
}
.site-footer .purple-section .container .newsletter {
    display: flex;
    flex-wrap: wrap;
/*    align-items: center;*/
}
.site-footer .purple-section .container .newsletter form>p{
    display: flex;
/*    align-items: center;*/
    margin: 0;
}
.site-footer .purple-section .container .newsletter form .wpcf7-submit{
    border: 2px var(--white) solid;
    color: var(--white);
    border-radius: 0;
    background-color: transparent;
    outline: none;
    margin-left: 1.3rem;
    font-size: 1.6rem;
    font-weight: 700;
    padding: 0 2rem;
    height: 3.7rem;
    cursor: pointer;
}
.site-footer .purple-section .container .newsletter form .wpcf7-submit:hover{
    background-color: var(--white);
    color: var(--purple);
}
.site-footer .purple-section .container .newsletter form .wpcf7-email{
    background-color: var(--white);
    border: 2px var(--white) solid;
    outline: none;
    height: 3.7rem;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--dark-grey);
    border-radius: 0;
    padding: 0 1.4rem;
    max-width: 44rem;
}
.site-footer .purple-section .container .newsletter form p{
    margin-bottom: 0.4rem;
}
.site-footer .purple-section .container .newsletter form .wpcf7-not-valid-tip,
.get-more-section .newsletter form .wpcf7-not-valid-tip {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    text-decoration: none;
    margin-top: 0.9rem;
    position: relative;
}
.site-footer .purple-section .container .newsletter form .wpcf7-not-valid-tip::before,
.get-more-section .newsletter form .wpcf7-not-valid-tip::before{
    content: url(../images/Info.svg);
    display: block;
    margin-right: 0.4rem;
}
.site-footer .purple-section .container .newsletter .wpcf7 form.failed .wpcf7-response-output,
.site-footer .purple-section .container .newsletter .wpcf7 form.invalid .wpcf7-response-output {
    margin: 0.5rem 0em 0em;
    padding: 0.5rem 1.5rem;
    border: 1px solid #231F20;
    font-size: 1.4rem;
    color: #ffffff;
    font-weight: 600;
    background-color: #231F20;
    font-size: 1.2rem;
    font-weight: 400;
    display: block;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: auto;
    display: inline-block;
}
.site-footer .purple-section .container .newsletter .wpcf7 form.failed .wpcf7-response-output {
    margin: 1.5rem 0em 0em;
}
.site-footer .purple-section .container .newsletter form .wpcf7-spinner {
    margin-top: 0.8rem;
}
.site-footer .purple-section .container .newsletter form,
.get-more-section .newsletter form{
    display: flex;
    align-items: flex-start;
    position: relative;
}
.site-footer .purple-section .container .newsletter form.sent{
    padding-bottom: 5rem;
}
.site-footer .purple-section .container .newsletter form.sent .wpcf7-response-output{
    display: flex;
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0;
    width: 100%;
    height: 4rem;
    align-items: center;
    justify-content: center;
}
.newsletter-privacy-policy{
    margin-top: 12px;
    display: block !important;
    transition: all 0.3s;
}
.newsletter-privacy-policy p {
    font-size: 12px;
    font-family: 'Inter';
    line-height: 120%;
}
form.sent .newsletter-privacy-policy{
    display: none !important;
}
.newsletter .newsletter-privacy-policy.active{
    display: block;
    transform: translateY(0rem);
}
.newsletter .newsletter-privacy-policy p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    text-align: left;
}
.newsletter .newsletter-privacy-policy a {
    text-decoration: underline;
    color: var(--white);
}
.newsletter-footer {
    margin-top: 5rem;
}
.newsletter-footer h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 150%;
    color: #F8F8F8;
    margin-bottom: 10px;
}
.newsletter-footer .email-container {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
}
.newsletter-footer .wpcf7-spinner {
    position: absolute;
    top: 3px;
    left: 80%;
    margin: 0;
    margin-top: 5px;
}
.newsletter-footer .email-container p {
    margin: 0 0;
    position: relative;
}
.newsletter-footer input[type="email"] {
    font-family: Inter;
    font-size: 13px;
    line-height: 150%;
    border-radius: 0;
    padding: 7.5px 12px;
    width: 297px;
    max-width: 100%;
    height: 36px;
}
.newsletter-footer input[type="submit"] {
    font-family: Inter;
    font-size: 13px;
    font-weight: 700;
    line-height: 150%;
    color: #F8F8F8;
    padding: 7.5px 16px;
    border-radius: 0;
    background-color: var(--purple);
    border-color: var(--purple);
    cursor: pointer;
}
.newsletter-footer .newsletter-privacy-policy p {
    color: var(--grey);
    font-size: 10px;
    line-height: 120%;
}
.site-footer .footer-navigation{
    background-color: var(--dark-grey);
    color: var(--white);
    padding-bottom: 2rem;
    margin-bottom: -15px;
}
.site-footer .footer-navigation .footer-inner {
    display: flex;
    justify-content: flex-start;
    gap: 108.6px;
    width: max-content;
}
.site-footer .footer-navigation .custom-logo-link img {
    margin-top: 5rem;
    margin-bottom: 4.1rem;
}
.site-footer .footer-navigation .inner{
    display: flex;
    justify-content: space-between;
    gap: 108.6px;
    margin-top: 5rem;
    flex-direction: row-reverse;
}
.site-footer .footer-navigation .inner ul{
    margin: 0 0 0;
    padding: 0 0 0;
}
.site-footer .footer-navigation .address p{
    font-weight: 700;
    color:var(--white);
}
.site-footer .footer-navigation .menu li{
    list-style: none;
    padding-bottom: 1.3rem;
}
.site-footer .footer-navigation .menu li a{
    color: var(--white);
}
.site-footer .footer-navigation .menu li.linkedin-icon a{
    background: url(/wp-content/uploads/2025/04/Vector-2-1.svg);
    background-size: 16px;
    filter: invert(100%) sepia(0%) saturate(0) hue-rotate(84deg) brightness(300%) contrast(111%);
    background-repeat: no-repeat;
    display: inline-block;
    text-indent: -9999px;
    overflow: hidden;
    text-wrap: nowrap;
    width: 100%;
    max-width: 20px;
    height: 100%;
}
.site-footer .footer-navigation .menu li.menu-item-has-children{
    padding-bottom: 0;
}
.site-footer .footer-navigation .menu li > .sub-menu{
    position: relative;
    display: flex;
    flex-direction: column;
    left: auto;
    border-top: none;
    padding: 0;
    padding-top: 1.3rem;
    margin-left: 1.3rem;
}
.site-footer .footer-navigation .menu #footer-menu-2 .menu-item-12{
    display: none;
}
.site-footer .footer-navigation .copyrights{
    font-size: 1.3rem;
    text-align: center;
    margin-top: 5.5rem;
    position: relative;
    left: -20px;
}
.site-footer .footer-navigation .copyrights p{
    font-size: 1.3rem;
    color: var(--white);
}



/* GALLERY SWIPER */
.gallery-swiper{
    width: 100%;
    position: relative;
    padding-bottom: 3.5rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
} 
.gallery-swiper .swiper-slide::after{
    content: '';
    padding-bottom: 71%;
    display: block;
}
.gallery-swiper .swiper-slide .image{
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
}
.gallery-swiper .swiper-slide .image .caption{
    width: 100%;
    background: rgba(255, 255, 255, 0.86);
    padding: 1rem 1.8rem;
    font-size: 1.3rem;
    line-height:1.1;
}
.gallery-swiper .swiper-pagination-bullet{
    width: 2.8rem;
    height: 0.3rem;
    border-radius: 0;
    background: var(--dark-grey);
    opacity: 1;
}
.gallery-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background: var(--pink);
}
.gallery-swiper .swiper-button-next, .gallery-swiper .swiper-button-prev{
    width: 3.2rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.86);
    color: var(--dark-grey);

    margin-top: -1.8rem;
    transform: translateY(-50%);
}
.gallery-swiper .swiper-button-next, .gallery-swiper .swiper-rtl .swiper-button-prev {
    right: 0;
}
.gallery-swiper .swiper-button-prev, .gallery-swiper .swiper-rtl .swiper-button-next {
    left: 0;
}
.gallery-swiper .swiper-button-next:after, .gallery-swiper .swiper-button-prev:after{
    font-size: 1.5rem;
    font-weight: 800;
}
.entry-content .wp-block-jetpack-slideshow .wp-block-jetpack-slideshow_pagination.swiper-pagination-custom{
    justify-content: center;
}
.entry-content .wp-block-jetpack-slideshow .wp-block-jetpack-slideshow_pagination.swiper-pagination-custom .swiper-pagination-bullet{
    width: 2.8rem;
    height: 0.3rem;
    min-height: 0.3rem;
    border-radius: 0;
    background: var(--dark-grey);
    opacity: 1;
    transform: scale(1);
}
.entry-content .wp-block-jetpack-slideshow .wp-block-jetpack-slideshow_pagination.swiper-pagination-custom .swiper-pagination-bullet-active{
    background-color: var(--pink);
}
.wp-block-jetpack-slideshow .wp-block-jetpack-slideshow_container .wp-block-jetpack-slideshow_slide{
    background-image: none;
}
.wp-block-jetpack-slideshow .wp-block-jetpack-slideshow_slide figure .wp-block-jetpack-slideshow_image{
    max-height: 60rem !important;
}
.entry-content .wp-block-jetpack-slideshow .amp-carousel-button-next, 
.entry-content .wp-block-jetpack-slideshow .swiper-button-next.swiper-button-white, 
.entry-content .wp-block-jetpack-slideshow .wp-block-jetpack-slideshow_button-next, 
.entry-content .wp-block-jetpack-slideshow.swiper-container-rtl .swiper-button-prev.swiper-button-white, 
.entry-content .wp-block-jetpack-slideshow.swiper-container-rtl .wp-block-jetpack-slideshow_button-prev,
.entry-content .wp-block-jetpack-slideshow .swiper-button-prev.swiper-button-white, 
.entry-content .wp-block-jetpack-slideshow .wp-block-jetpack-slideshow_button-prev{
    width: 3.2rem;
    height: 3rem;
    background-color: rgba(255, 255, 255, 0.86);
    color: var(--dark-grey);
    margin-top: 0;
    transform: translateY(-50%);
    border-radius: 0;
}
.entry-content .wp-block-buttons{
    margin-top:3rem;
    margin-bottom:3rem;
}
.entry-content .wp-block-button{
    min-width: auto;
    width: auto;
    min-height: 3.6rem;
    height: auto;
    border: 2px var(--purple) solid;
    font-size: 1.3rem;
    color: var(--dark-grey);
    outline: none;
    outline: none !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 3rem;
    font-weight: 500;
    line-height: 1.3;
    background-color: #ffffff;
}
.entry-content .wp-block-buttons.secondary .wp-block-button{
    border: 1px var(--light-grey) solid;
    color: var(--dark-grey);
    background-color: #ffffff;
}
.entry-content .wp-block-buttons.secondary .wp-block-button:hover{
    border: 1px var(--dark-grey) solid;
    background-color: var(--dark-grey);
}
.entry-content .wp-block-button .wp-block-button__link{
    padding: 0;
    margin: 0;
    font-size: 1.3rem;
    background-color: transparent;
    color: var(--dark-grey);
}
.entry-content .wp-block-button:hover{
    background-color: var(--purple);
}
.entry-content .wp-block-button:hover .wp-block-button__link{
    color: var(--white);
}
/* HOMEPAGE */
body.home .entry-content .rhs{
    left:75%;
    margin-top:6rem;
    margin-left: auto;
}
body.home .entry-content .lhs{
    padding-right:5.8rem;
    right:25%;
}
.newsletter-section {
    border: 1px solid #EBEBEB;
    background-color: #F8F8F8;
    color: #1C1C1C;
    padding: 8px 8px;
    margin: 48px 0;
}
.newsletter-section .newsletter-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.newsletter-section .newsletter-content {
    padding-top: 12px;
    padding-bottom: 12px;
}
.newsletter-section .newsletter-content h2 {
    font-family: 'DrukBold';
    font-size: 64px;
    line-height: 90%;
    color: #1C1C1C;
    margin: 0 0;
}
.newsletter-section .newsletter-content h3 {
    font-size: 18px;
    font-family: 'Inter';
    font-weight: 700;
    color: #1C1C1C;
    margin: 0 0;
    margin-top: 10px;
}
.newsletter-section .newsletter-content form p {
    margin: 0 0;
}
.newsletter-section .email-container {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    margin-top: 24px;
}
.newsletter-section .email-container .submit p {
    position: relative;
}
.newsletter-section form input[type="email"] {
    font-family: 'Inter';
    font-size: 15px;
    font-weight: 400;
    border-radius: 0;
    max-width: 364px;
    width: 100%;
    height: 42px;
    padding: 12px 12px;
}
.newsletter-section form input[type="submit"] {
    font-family: 'Inter';
    font-size: 15px;
    font-weight: 700;
    color: #FFF;
    padding: 12px 12px;
    min-width: 153px;
    max-width: 153px;
    width: 100%;
    background-color: var(--purple);
    border-color: var(--purple);
    border-radius: 0;
    cursor: pointer;
}
.newsletter-section form .wpcf7-spinner {
    position: absolute;
    top: 3px;
    left: 80%;
    margin: 0;
    margin-top: 5px;
}

.newsletter-section .newsletter-privacy-policy p a {
    text-decoration: none;
}
@media (max-width: 991px) {
    .newsletter-section .newsletter-content h2 {
        font-size: 40px;
    }
    .newsletter-section .newsletter-content h3 {
        font-size: 16px;
    }
    .newsletter-section .email-container {
        margin-top: 10px;
    }
    .newsletter-privacy-policy br {
        display: none;
    }


}
@media (max-width: 574px) {
    .newsletter-section .email-container {
        flex-direction: column;
    }
    .main-navigation ul {
        justify-content: space-between;
    }
}
.get-more-section{
    background-color: var(--purple);
    color: var(--white);
    padding: 3rem;
    margin-top: 6rem;
    margin-bottom: 6rem;
}
.get-more-section .bordered-title{
    color: var(--white);
    margin-top: 0;
}
article .entry-content .get-more-section > .row{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
article .entry-content .get-more-section h3{
    font-weight: 700;
    color: var(--white);
    font-size: 2rem;
    padding-right: 0rem;
    margin-bottom: 1rem;
    margin-top: 0.8rem;
}
.get-more-section .social-container img{
    max-width: 2.7rem;
    max-height: 2.7rem;
    margin-right: 1rem;
    margin-top: 0.6rem;
}
.get-more-section .social-container a:last-child img{
    margin-right: 0rem;
}
.get-more-section .newsletter form.sent{
    padding-bottom: 5rem;
}
.get-more-section .newsletter form>p{
    display: flex;
    margin: 0;
}
.get-more-section .newsletter form .wpcf7-submit{
    border: 2px var(--white) solid;
    color: var(--white);
    border-radius: 0;
    background-color: transparent;
    outline: none;
    margin-left: 1.3rem;
    font-size: 1.6rem;
    font-weight: 700;
    padding: 0 2rem;
    height: 3.7rem;
    cursor: pointer;
}
.get-more-section .newsletter form .wpcf7-submit:hover{
    background-color: var(--white);
    color: var(--purple);
}
.get-more-section .newsletter form .wpcf7-email{
    background-color: var(--white);
    border: 2px var(--white) solid;
    outline: none;
    height: 3.7rem;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--dark-grey);
    border-radius: 0;
    padding: 0 1.4rem;
    max-width: 44rem;
}
.get-more-section .newsletter form p{
    margin-bottom: 0.4rem;
}
.get-more-section .newsletter form .wpcf7-not-valid-tip {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    text-decoration: none;
    margin-top: 0.9rem;
    position: relative;
}
.get-more-section .newsletter .wpcf7 form.failed .wpcf7-response-output,
.get-more-section .newsletter .wpcf7 form.invalid .wpcf7-response-output {
    margin: 0.5rem 0em 0em;
    padding: 0.5rem 1.5rem;
    border: 1px solid #231F20;
    font-size: 1.4rem;
    color: #ffffff;
    font-weight: 600;
    background-color: #231F20;
    font-size: 1.2rem;
    font-weight: 400;
    display: block;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: auto;
    display: inline-block;
}
.get-more-section .newsletter .wpcf7 form.failed .wpcf7-response-output {
    margin: 1.5rem 0em 0em;
}
.get-more-section .newsletter form .wpcf7-spinner {
    margin-top: 0.8rem;
}
.get-more-section .newsletter .wpcf7 form.sent .wpcf7-response-output{
    display: flex;
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0;
    width: 100%;
    height: 4rem;
    align-items: center;
}
.popular-videos-section{
    background-color: #EDEDED;
    padding: 3rem 3.2rem;
    margin-top: 5.8rem;
    margin-bottom: 5.8rem;
}
.popular-videos-section .swiper-videos .swiper-wrapper{
    padding-left:0;
    padding-right:0;
}
.popular-videos-section .bordered-title{
    margin-top: 0;
}
.popular-videos-section .post-container .post-teaser .summary-container{
    border-color: var(--purple);
    margin-bottom:5rem;
}
.popular-videos-section .post-container .post-teaser .summary-container .summary{
    display: none;
}
.popular-videos-section .post-container .post-teaser .summary-container h3{
    font-size: 1.8rem;
    font-family: var(--serif);
    font-weight: 800;
}
.popular-videos-section .listing-posts{
    margin-bottom: 2.5rem;
}
.popular-videos-section .swiper-navigation{
    position: absolute;
    bottom: 3rem;
    right: 40px;
}
.popular-videos-section .swiper-navigation .swiper-button-next{
    right: -3.5rem;
    border: solid 2px var(--purple);
    width: 3.8rem;
    height: 3.8rem;
    color: var(--dark-grey);
}
.popular-videos-section .swiper-navigation .swiper-button-next::after{
    font-size: 1.6rem;
    font-weight: 800;
}
.popular-videos-section .swiper-navigation .swiper-button-prev{
    left: -4.8rem;
    border: solid 2px var(--purple);
    width: 3.8rem;
    height: 3.8rem;
    color: var(--dark-grey);
}
.popular-videos-section .swiper-navigation .swiper-button-prev::after{
    font-size: 1.6rem;
    font-weight: 800;
}
.trending-posts .post-container.row{
    margin: 0;
    flex-direction: column;
}
.trending-posts .post-container.row .post-label article>a,
.trending-posts .post-container.row .post-label article>a:visited{
    color: var(--dark-grey);
}
.homepage-post .post-container.row{
    margin-left:0 !important;
    margin-right:0 !important;
}
.homepage-post .post-container .post-teaser.post-teaser-special{
    margin-bottom: 0rem;
    padding-left:0 !important;
    padding-right:0 !important;
}
.homepage-post .post-container .post-teaser.post-teaser-special:nth-of-type(4n+1){
    width:53%;
    margin-right:12%;
}
.homepage-post .post-container .post-teaser.post-teaser-special:nth-of-type(4n+2){
    width:35%;
}
.homepage-post .post-container .post-teaser.post-teaser-special:nth-of-type(4n+3){
    width:35%;
}
.homepage-post .post-container .post-teaser.post-teaser-special:nth-of-type(4n+4){
    width:53%;
    margin-left:12%;
}
.homepage-post .post-container .post-teaser.post-teaser-special:nth-of-type(4n+2) {
    padding-top: 4rem;
}
.homepage-post .post-container .post-teaser.post-teaser-special:nth-of-type(4n+1) .post-teaser-img,
.homepage-post .post-container .post-teaser.post-teaser-special:nth-of-type(4n+4) .post-teaser-img{
    padding-bottom: 69%;
    width:100%;
}
.homepage-post .post-container .post-teaser.post-teaser-special:nth-of-type(4n+2) .post-teaser-img,
.homepage-post .post-container .post-teaser.post-teaser-special:nth-of-type(4n+3) .post-teaser-img{
    padding-bottom: 62%;
    width:100%;
}
.homepage-post .post-container .post-teaser.post-teaser-special:nth-of-type(4n+3) {
    padding-top: 4rem;
}
.homepage-post{
    margin-top: 5.4rem;
}
.homepage-post .post-container .post-teaser.post-teaser-special .summary-container h3{
    margin-top:0;
}

.homepage-post-bycategory .post-navigation,
.homepage-post-byrole .post-navigation{
    display: flex;
    flex-wrap:wrap;
    margin-bottom:0;
}

.homepage-post-bycategory .inner .listing-posts:first-child,
.homepage-post-byrole .inner .listing-posts:first-child{
    margin-bottom:0;
}
.homepage-post-byrole .inner .listing-posts:nth-child(2),
.homepage-post-bycategory .inner .listing-posts:nth-child(2){
    margin-top:1rem;
}
.homepage-post-byrole .inner .listing-posts:nth-child(2) > h2,
.homepage-post-bycategory .inner .listing-posts:nth-child(2) > h2{
    display:none;
}
.post-navigation{
    display: flex;
}
.post-navigation button{
    margin-right: .6rem;
    margin-top:0.6rem;
    padding-left:2rem;
    padding-right:2rem;
}
.post-navigation button.active{
    border-color: var(--purple);
    background-color: var(--purple);
    color: var(--white);
}
/* FLEXIBLE LAYOUT TEMPLATE */
body.page-template-flexible-layout .entry-header{
    margin-top: 7.3rem;
    border-left: 1px solid var(--pink);
    padding-left: 3.2rem;
    margin-bottom: 6.9rem;
}
body.page-template-flexible-layout .entry-header .intro-copy{
    margin-top: 4.5rem;
}
body.page-template-flexible-layout .entry-header .intro-copy p{
    margin-bottom:3rem;
}
body.page-template-flexible-layout .entry-header .intro-copy ul {
    list-style:none;
    margin-top: 3rem;
    margin-bottom: 3rem;
}
body.page-template-flexible-layout .entry-header .intro-copy ul li {
    padding-left: 2.2rem;
    background-image: url(../images/arrow_purple_right.svg);
    background-size: 1.3rem auto;
    background-position: left top 0.7rem;
    background-repeat: no-repeat;
    padding-bottom: 0rem;
    margin-bottom: 1rem;
}
body.page-template-flexible-layout .entry-header .intro-copy ol {
    margin-top: 3rem;
    margin-bottom: 3rem;
}
body.page-template-flexible-layout .entry-header .intro-copy ol li {
    padding-bottom: 0rem;
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}
body.page-template-flexible-layout .entry-header .intro-copy ol li::marker {
    font-weight: 700;
    color: var(--purple);
}
body.page-template-flexible-layout .entry-header .intro-copy ul li a,
body.page-template-flexible-layout .entry-header .intro-copy ol li a{
    color:var(--purple);
}
body.page-template-flexible-layout .entry-header .intro-copy ul li a:hover,
body.page-template-flexible-layout .entry-header .intro-copy ol li a:hover{
    color:var(--purple);
    text-decoration:underline;
}
body.page-template-flexible-layout .entry-header .intro-copy ul ul,
body.page-template-flexible-layout .entry-header .intro-copy ol ol{
    margin-top: 1rem;
    margin-bottom: 2rem;
}
body.page-template-flexible-layout .entry-header .intro-copy ul ul li{
    padding-left: 1.5rem;
    background-image: url(../images/arrowhead_purple_right.svg);
    background-size: auto 1.1rem;
    background-position: left top 0.7rem;
    background-repeat: no-repeat;
    padding-bottom: 0rem;
    margin-bottom: 1rem;
}
body.page-template-flexible-layout .entry-header .intro-copy ol ol{
    list-style: lower-alpha;
}

body.page-template-flexible-layout .hero-image{
    width: 100%;
    padding-bottom: 70%;
    background-size: cover;
    background-position: center;
}
body.page-template-flexible-layout .hero-right-area .inner{
    height:100%;
    overflow:hidden;
    position:relative;
    min-height: 42rem;
}
body.page-template-flexible-layout .hero-right-area .inner .hero_video{
    position: absolute;
    height: auto;
    width: auto;
    max-height: 100%;
    min-width: 100%;
    left: 50%;
    transform: translateX(-50%);
}
body.page-template-flexible-layout .hero-right-area .inner .placeholder-image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    background-size: cover;
    background-position: center;
    display: none;
}
body.page-template-flexible-layout .hero-right-area .inner .placeholder-image.active{
    display: block;
}
/*body.page-template-flexible-layout .hero_video{
    width: 100%;
    display: flex;
    align-items: flex-end;
}*/
body.page-template-flexible-layout .hero-video-copy{
    margin-top: 5rem;
}
body.page-template-flexible-layout .hero-video-copy h3{
    margin-bottom: .6rem;
}
body.page-template-flexible-layout .video-controls{
    display: flex;
}
body.page-template-flexible-layout .video-controls.for-mobile{
    display: none;
}
body.page-template-flexible-layout .video-controls button{
    width: 3.6rem;
    height: 3.6rem;
    margin-right: 0.65rem;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
body.page-template-flexible-layout .video-controls .play-button{
    padding-left: 0.28rem;
}
body.page-template-flexible-layout .video-controls .pause-button:hover img,
body.page-template-flexible-layout .video-controls .volume-button:hover img{
    filter: invert(99%) sepia(0%) saturate(27%) hue-rotate(45deg) brightness(106%) contrast(100%);
}
body.page-template-flexible-layout .video-controls button.pulsing-button.play-button{
    animation-name: color;
    animation-duration: 1.25s;
    animation-iteration-count: infinite;
    animation-direction: alternate-reverse;
    animation-timing-function: linear;
    animation-timing-function: ease-in-out;
    background-color: var(--purple);
/*    border:2px solid var(--purple);*/
    border:none;
}
@keyframes color {
  from {
    
    }
  to {
    background-color: var(--pink);
/*    background-color: black;*/

    }
}

.image-text-section{
    margin-top: 6.9rem;
}
.image-text-section .row.block{
    margin-bottom: 9rem;
    margin-right: -2.4rem;
    margin-left: -2.4rem;
}
.image-text-section .row.block > *{
    padding-right: 2.4rem;
    padding-left: 2.4rem;
}
.image-text-section.right-img .block:nth-child(even) .col-copy{
    left: 50%;
}
.image-text-section.right-img .block:nth-child(even) .col-image{
    right: 50%;
}
.image-text-section.left-img .block:nth-child(odd) .col-copy{
    left: 50%;
}
.image-text-section.left-img .block:nth-child(odd) .col-image{
    right: 50%;
}
.image-text-section .block .copy {
    border-top: 1px solid var(--pink);
    padding-top: 2.5rem;
}
/*.image-text-section .block .copy p{
    margin-bottom: 0;
}*/
.image-text-section .block .copy h2{
    margin-top: 0;
    font-size: 4rem;
    font-family: var(--heading-font);
    font-weight: normal;
    margin-bottom: 1.5rem;
}
.entry-content .text-section h2{
    margin-top: 0;
    font-size: 4rem;
    font-family: var(--heading-font);
    font-weight: normal;
    margin-bottom: 1.5rem;
}
.entry-content .text-section h2 strong{
    font-weight:normal;
}
.text-section{
    margin-bottom: 7rem;
}
.text-section{
    margin-bottom: 7rem;
}
.text-section .inner-container{
    max-width:67rem;
    margin:0 auto;
}

.iconography-section{
    margin-top: 10rem;
    margin-bottom: 0rem !important;
    text-align: center;
}
.iconography-section .icon{
    height:4.9rem;
}
.iconography-section .icon img{
    width:100%;
    height:auto;
    max-width: 5.8rem;
    max-height: 4.9rem;
}
.iconography-section .copy h3{
    font-size: 4rem;
    font-family: var(--heading-font);
    font-weight: normal;
    margin-bottom: 0;
    margin-top: 3rem;
}
.two-column-text-section{
    border-top: solid 1px var(--pink);
    padding-top: 2.6rem;
    margin-top: 7rem;
    margin-bottom: 7rem !important;
}
.entry-content .two-column-text-section h2{
    margin-top: 0;
    font-size: 4rem;
    font-family: var(--heading-font);
    font-weight: normal;
    margin-bottom: 1.5rem;
}

.people-container{
    margin-top: 5rem;
    margin-bottom: 1.5rem;
}
.people-container .person {
    margin-bottom: 4rem;
    margin-top: 0rem;
}
.people-container .person .profile-picture{
    width: 12rem;
    padding-bottom: 12rem;
    margin:0 auto;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}
.people-container .person h4.name{
    font-size: 1.8rem;
    color: var(--dark-grey);
    margin-bottom: 1rem;
    margin-top: 2rem;
}
.people-container .person .job-title{
    font-size: 1.2rem;
    color: var(--purple);
    font-weight: 600;
}

.sponsor-section{
    background-color: #f1f1f1;
    padding: 4rem 3.6rem;
    text-align: center;
    margin-top: 0rem;
    margin-bottom: 9rem !important;
}
.sponsor-section h2.title{
    font-size: 3.5rem;
    border-top: 1px solid var(--dark-grey);
    border-bottom: 1px solid var(--dark-grey);
    padding-top: 1.7rem;
    padding-bottom: 1.7rem;
    margin-top: 0;
    margin-bottom: 3rem;
    width: 100%;
    text-align: center;
    font-family: var(--heading-font);
    font-weight: normal;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.sponsor-section .copy{
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-bottom:0;
    max-width: 51rem;
    margin-left: auto;
    margin-right: auto;
}
.sponsor-section img.desktop{
    display:block;
    margin: 0 auto;
}
.sponsor-section img.mobile{
    display:none;
}
.sponsor-section button{
    background-color: transparent;
    margin: 1.6rem auto 0 auto;
}
.certifications-section{
    margin-top: -2rem;
    margin-bottom: 8rem !important;
}
.certifications-section h2.title{
    font-size: 3.5rem;
    border-top: 1px solid var(--light-grey);
    border-bottom: 1px solid var(--light-grey);
    padding-top: 1.7rem;
    padding-bottom: 1.7rem;
    margin-top: 3.5rem;
    margin-bottom: 1.7rem;
    width: 100%;
    text-align: center;
    font-family: var(--heading-font);
    font-weight: normal;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.certifications-section .navigation{
    display: flex;
    margin-bottom: 2.9rem;
    justify-content:center;
    flex-wrap: wrap;
}
.certifications-section .navigation button{
    margin-left: 0.325rem;
    margin-right: 0.325rem;
    margin-top: 0.7rem;
}
.certifications-section .category-content{
    border: 1px solid var(--light-grey);
    border-top: none;
    padding: 5.5rem 3.5rem 2rem 3.5rem;
}
.certifications-section .category-content .certification-container{
    justify-content: center;
    margin-right: -2.2rem;
    margin-left: -2.2rem;
}
.certifications-section .certification{
    padding: 0 2.5rem;
}
.certifications-section .certification .inner{
    border: 1px solid var(--light-grey);
    position: relative;
    padding: 0 5rem 6.6rem 2.4rem;
    height: 100%;
}
.certifications-section .certification .inner .certification-image{
    position: absolute;
    top: -1.8rem;
    left: -1.3rem;
    height: 15rem;
    border-bottom: 2.3rem solid white;
    border-right: 1.4rem solid white;
    background-color: white;
}
.certifications-section .certification .inner h3{
    margin-top: 13.2rem;
    font-size: 3rem;
    font-family: var(--heading-font);
    font-weight: normal;
    text-transform: uppercase;
    margin-bottom: 4rem;
    line-height:1.2;
    min-height:7.5rem;
}
.certifications-section .certification .certification-info .info{
    font-size: 1.3rem;
    padding-bottom: 2.2rem;
    display: flex;
    align-items: flex-start;
    padding-left: 3.2rem;
    position: relative;
}
.certifications-section .certification .certification-info .info::before{
    position: absolute;
    top: 0;
    left: 0;
    width: 3.2rem;
}
.certifications-section .certification .certification-info .info.level-experience::before{
    content: url('/wp-content/uploads/2023/08/Vector.svg');
}
.certifications-section .certification .certification-info .info.recommended-experience::before{
    content: url('/wp-content/uploads/2023/08/shape.svg');
}
.certifications-section .certification .certification-info .info.prerequisites::before{
    content: url('/wp-content/uploads/2023/08/shape-1.svg');
    top:0.2rem;
}
.certifications-section .certification .certification-info .info.cost::before{
    content: url('/wp-content/uploads/2023/08/Vector-1.svg');
}
.certifications-section .certification .certification-info .info.official-guide::before{
    content: url('/wp-content/uploads/2023/08/exam.svg');
}
.certifications-section .certification .certification-info .info.sf-ben-guide::before{
    content: url('/wp-content/uploads/2023/08/Vector-2.svg');
}
.certifications-section .certification .certification-info .info a{
    text-decoration: underline;
}

.certifications-section .key-overview{
    margin-top: 2.6rem;
}
.certifications-section .key-overview .show-key{
    font-size: 1.3rem;
    font-weight: 500;
    cursor: pointer;
}
.certifications-section .key-overview .show-key::after{
    content: url('/wp-content/uploads/2023/08/arrow-black-down.svg');
    margin-left: 1rem;
}
.certifications-section .key-overview .show-key.hide::after{
    content: url('/wp-content/uploads/2023/08/arrow-black-up.svg');
}
.certifications-section .key-overview .keys{
/*    column-count: 3;*/
    margin-top: 4rem;
    display: none;
    flex-wrap: wrap;
    margin-left: -1.2rem;
    margin-right: -1.2rem;
}
.certifications-section .key-overview .keys.show{
    display: flex;
}
.certifications-section .key-overview .key{
    column-count: 3;
    font-size: 1.3rem;
    padding-bottom: 2.2rem;
    display: flex;
    align-items: flex-start;
    padding-right: 1.2rem;
    padding-left: 4.4rem;
    position: relative;
}
.certifications-section .key-overview .keys .key::before{
    position: absolute;
    top: 0;
    left: 1.2rem;
    width: 3.2rem;
}
.certifications-section .key-overview .keys .key.level-experience::before{
    content: url('/wp-content/uploads/2023/08/Vector.svg');
}
.certifications-section .key-overview .keys .key.recommended-experience::before{
    content: url('/wp-content/uploads/2023/08/shape.svg');
}
.certifications-section .key-overview .keys .key.prerequisites::before{
    content: url('/wp-content/uploads/2023/08/shape-1.svg');
    top:0.2rem;
}
.certifications-section .key-overview .keys .key.cost::before{
    content: url('/wp-content/uploads/2023/08/Vector-1.svg');
}
.certifications-section .key-overview .keys .key.official-guide::before{
    content: url('/wp-content/uploads/2023/08/exam.svg');
}
.certifications-section .key-overview .keys .key.sf-ben-guide::before{
    content: url('/wp-content/uploads/2023/08/Vector-2.svg');
}
.certifications-section .key-overview .keys .key a{
    text-decoration: underline;
}
.certifications-section .related-courses{
    margin-top: 5.1rem;
    margin-bottom: 7rem;
}
.certifications-section .related-courses h3{
    margin-top: 0rem;
    margin-bottom: 3.9rem;
    font-size: 2.5rem;
    font-family: var(--heading-font);
    font-weight: normal;
    text-transform: uppercase;
}
.certifications-section .related-articles{
    margin-top: 7rem;
}
.certifications-section .related-articles h3{
    margin-top: 0rem;
    margin-bottom: 3.9rem;
    font-size: 2.5rem;
    font-family: var(--heading-font);
    font-weight: normal;
    text-transform: uppercase;
}
.certifications-section .post-teaser-mini .text {
    border-top: 1px solid #E1E1E1;
}
.three-posts-section{
    margin-top: 5rem;
    margin-bottom: 7.4rem !important;
}
.three-posts-section h2.title,
.video-section h2.title,
.posts-byrole-section h2.title,
.highlighted-posts-section h2.title{
    font-size: 3.5rem;
    border-top: 1px solid var(--light-grey);
    border-bottom: 1px solid var(--light-grey);
    padding-top: 1.7rem;
    padding-bottom: 1.7rem;
    margin-top: 3.5rem;
    margin-bottom: 4.8rem;
    width: 100%;
    text-align: center;
    font-family: var(--heading-font);
    font-weight: normal;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.video-section{
    margin-top: 5.3rem;
    margin-bottom: 5.5rem !important;
}

.video-section .video-container {
    position: relative;
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden;
}

.video-section .video-container iframe,
.video-section .video-container object,
.video-section .video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.posts-byrole-section{
    margin-top: 5.5rem;
    margin-bottom: 5.5rem !important;
}
.highlighted-posts-section{
    margin-top: 5.5rem;
    margin-bottom: 7.5rem !important;
    background-color: #ededed;
    padding: 4rem 3.8rem 3.8rem 3.8rem;
}
.highlighted-posts-section .post-container .post-teaser{
    margin-bottom: 5.5rem;
}
.highlighted-posts-section .post-container .post-teaser .summary-container h3{
    font-size: 1.8rem;
    font-family: var(--serif);
}
.highlighted-posts-section .post-container .post-teaser .summary-container .summary{
    display: none;
}
.highlighted-posts-section .post-container .post-teaser .summary-container{
    border-color: var(--purple);
}

.swiper-testimonials{
    margin-top: 7.2rem;
    margin-bottom: 4.3rem !important;
}
.swiper-testimonials .swiper-pagination-bullet{
    width: 2.8rem;
    height: 0.3rem;
    border-radius: 0;
    background: var(--dark-grey);
    opacity: 1;
}
.swiper-testimonials .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background: var(--pink);
}
.swiper-testimonials .swiper-wrapper{
    margin-bottom: 3rem;
}
.swiper-testimonials .testimonial{
    padding-left: 13rem;
    padding-right: 13rem;
    text-align: center;
}
.swiper-testimonials .testimonial .copy{
    color: var(--purple);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5rem;
}
.swiper-testimonials .testimonial .profile-picture{
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin: 0 auto;
}
.swiper-testimonials .testimonial h4.name{
    margin-top: 1rem;
    font-size: 1.5rem;
}
.quiz-section .ays-quiz-container{
    padding-bottom: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
}
/*.quiz-section .ays-quiz-container,
.quiz-section .ays-quiz-container .ays-quiz-form div.step {
    min-height: auto;
}
.quiz-section .ays-quiz-container .ays-quiz-form div.step {
    padding-top:4.5rem;
    padding-bottom:4.5rem;
}
.quiz-section .ays-quiz-container .ays-quiz-form {

}*/
.quiz-section .ays-quiz-container .ays-questions-container form .information_form label,
.quiz-section .ays-quiz-container .ays-questions-container form .information_form input{
    font-size:1.5rem !important;
    border-radius:0 !important;
}
.quiz-section .ays-quiz-container .ays-questions-container form .step.active-step{
    padding-top:0;
}
.quiz-section .ays-quiz-container{
    padding-top: 2rem;
}
.quiz-section .ays-quiz-container p{
    margin: 0;
    padding: 0;
    font-size: var(--serif);
}
.quiz-section .ays-quiz-container .ays-fs-title{
    display: none;
}
.quiz-section .ays-quiz-container .ays-fs-subtitle p{
    text-align: center !important; 
}
.quiz-section .quiz-title{
    font-family: var(--heading-font);
    font-weight: normal;
    font-size: 4rem;
    font-weight: 700;
}
.quiz-section .ays-quiz-wrap{
    margin-top: 5rem !important;
}
.quiz-section .ays-quiz-container .ays-field.ays_list_view_item input[type="radio"]~label:before{
    border-radius: 0;
}
.quiz-section .ays-quiz-container .ays-field.ays_list_view_item input~label:before{
    background: transparent;
    border: 2px solid #ccc;
    padding: 5px 5px 5px 5px;
}
.quiz-section .ays-quiz-container .ays-field.checked_answer_div input:checked~label{
    background-color: transparent !important;
}
/*.quiz-section .ays-quiz-container .ays_quiz_timer_container{
    position: absolute;
    top: -3.5rem;
    left: 0;
    font-size: 1.6rem;
}*/
.quiz-section .ays-quiz-container .ays_quiz_timer_container hr{
    display: none;
}
.quiz-section .ays-quiz-container .ays-live-bar-wrap{
    top: 0;
    background-color: #D9D9D9;
    height: .8rem;
}
.quiz-section .ays-quiz-container .ays-live-bar-fill {
    background-color: var(--purple) !important;
    border-bottom: 0px solid rgba(0,0,0,0.8) !important;
    text-shadow: none;
}
.quiz-section .ays-quiz-container .ays-live-bar-fill span{
    display: none;
}
.quiz-section .ays-quiz-container .ays-quiz-questions-nav-wrap a.ays_questions_nav_question {
    width: 4.9rem;
    height: 5.8rem;
    border: 1px solid #E1E1E1 !important;
    color: var(--black);
    border-radius: 0;
    min-width: 4.9rem;
    font-weight: 600;
    position: relative;
/*    border-bottom: none !important;*/
/*    margin-bottom: -1px;*/
}
.quiz-section .ays-quiz-container .ays-quiz-questions-nav-wrap .ays-quiz-questions-nav-content .ays-quiz-questions-nav-item.ays-quiz-questions-nav-item-answered a.ays_questions_nav_question,
.quiz-section .ays-quiz-container .ays-quiz-questions-nav-wrap .ays-quiz-questions-nav-content .ays-quiz-questions-nav-item.ays-quiz-questions-nav-item-active a.ays_questions_nav_question{
    box-shadow: none !important;
    background-color: var(--purple) !important;
    border-color: var(--purple) !important;
    color: white !important;
    border-bottom: none !important;
}
/*.quiz-section .ays-quiz-container .ays-quiz-questions-nav-wrap a.ays_questions_nav_question::after{
    position: absolute;
    border-bottom: 1px solid #E1E1E1 !important;
    width: 2rem;
    height: 2rem;
    top: -1rem;
    right: -1rem;
    background-color: white;
    content: '';
    transform: rotate(45deg);
}*/
.quiz-section .ays-quiz-container .ays-quiz-questions-nav-wrap a.ays_questions_nav_question::after{
    position: absolute;
    width: 1.5rem;
    height: 1.5rem;
    top: -1px;
    right: -1px;
    content: '';
    display:block;
    background-image:url('../images/quiz_corner1.png');
    background-size:contain;
    background-position:top right;
    background-repeat:no-repeat;
}
.quiz-section .ays-quiz-container .ays-quiz-questions-nav-wrap .ays-quiz-questions-nav-item-answered a.ays_questions_nav_question::after,
.quiz-section .ays-quiz-container .ays-quiz-questions-nav-wrap .ays-quiz-questions-nav-item-active a.ays_questions_nav_question::after{
    background-image:url('../images/quiz_corner_purple.png');
}
.quiz-section .ays-quiz-container .ays-image-question-img img{
    max-width:500px;
    margin-top:1rem;
    margin-left: 0.625em;
    margin-right: 0.625em;
}
.quiz-section .ays-quiz-container .ays-quiz-questions-nav-wrap .ays-quiz-questions-nav-content{
    padding-bottom: 0;
}
.quiz-section .ays-quiz-container .ays-quiz-form{
    border: 1px solid #E1E1E1;
}
.quiz-section .ays-quiz-container .ays-live-second-wrap{
    background-color: #D9D9D9 !important;
}
.quiz-section .ays-quiz-container .ays_buttons_div {
    justify-content: left !important;
}
.quiz-section .ays-quiz-container .ays-quiz-questions-nav-content .ays-quiz-questions-nav-item.ays-quiz-questions-nav-item-answered a.ays_questions_nav_question{
    background-color: var(--purple) !important;
}
.quiz-section .ays-quiz-container .ays-question-counter{
    right: auto;
    left: 3%;
    top: 0;
    font-family: var(--heading-font);
    font-weight: normal;
    font-size: 4rem;
}
.quiz-section .ays-quiz-container .ays-question-counter span{
    color: var(--purple);
}
.quiz-section .ays-quiz-container .ays_quiz_question{
    margin-top: 12rem;
}
/* */
.quiz-section .ays-quiz-container .ays-quiz-questions-nav-wrap{
    max-width:100%;
}
.quiz-section .ays-quiz-container .ays-quiz-questions-nav-wrap .ays-quiz-questions-nav-content {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 0;
}
.quiz-section .ays-quiz-container .ays-quiz-questions-nav-wrap .ays-quiz-questions-nav-item {
    flex-grow: 0; 
    flex-shrink: 0; 
    flex-basis: 0px; 
    margin: 5px 5px 0 0;
}

/* ADDED TO REPLACE CMS STYLING OF QUIZ */
.quiz-section .ays-quiz-wrap .ays-quiz-container .ays-quiz-questions-nav-wrap a.ays_questions_nav_question span.ays-quiz-navbar-highlighted-notice {
    right: -0.3rem;
    z-index: 10;
}
.quiz-section .ays-quiz-wrap .ays-quiz-container .ays-quiz-questions-nav-wrap .ays-quiz-questions-nav-bookmark-box {
    height: 59px !important;
    padding: 10px 0px 10px 0 !important;
    text-align: right !important;
}
.quiz-section .ays-quiz-wrap .ays-quiz-container .ays-quiz-question-title-text-to-speech-icon {
    right: 0px !important;
    top: 1.6rem !important;
}
.quiz-section{
    margin-bottom:7.2rem !important;
}
.quiz-section .ays-quiz-wrap .ays-quiz-container{

}
.quiz-section .ays-abs-fs.ays-start-page{
    padding-top:9rem;
    padding-bottom:9rem;
}
.quiz-section .ays-quiz-wrap .ays-quiz-container{
    min-height: auto !important;
    width: 100% !important;
    background-color: #fff !important;
    background-position: center center !important;
    border-radius: 0px !important;
    box-shadow: none !important;
    border: none !important;
}
.quiz-section .ays-quiz-wrap .ays-quiz-container form.ays-quiz-form div.step {
    min-height: auto !important;
}
/*.ays-quiz-container input#ays-submit, 
.ays-quiz-container .ays-quiz-form .action-button, 
.ays-quiz-container .ays-quiz-form .action-button.ays_restart_button,*/
.quiz-section .ays-quiz-container input#ays-submit, 
.quiz-section .ays-quiz-container .ays-quiz-form .action-button, 
.quiz-section div.ays-quiz-container .ays-quiz-form .action-button.ays_restart_button {
    background-color: var(--purple) !important;
    color: #ffffff !important;
    font-size: 1.8rem !important;
    padding: 1.4rem 3.6rem !important;
    border-radius: 0px !important;
    white-space: nowrap !important;
    letter-spacing: 0 !important;
    box-shadow: unset !important;
    white-space: normal !important;
    word-break: break-word !important;
}
.quiz-section .ays-quiz-container .ays_buttons_div input[type='button'].ays_next.start_button.action-button.ays-quiz-keyboard-active, 
.quiz-section .ays-quiz-container input[type='submit'],
.quiz-section div[id^="ays-quiz-container-"] .ays_buttons_div input[type='button'] {
    color: var(--white) !important;
    outline: none;
}
.quiz-section .ays-quiz-questions-nav-wrap {
    width: 100% !important;
    border-radius: 0px 0px 0px 0px !important;
    box-shadow: none !important;
    border: none !important;
}
.quiz-section .ays-quiz-questions-nav-wrap .ays-quiz-questions-nav-content .ays-quiz-questions-nav-item.ays-quiz-questions-nav-item-active a.ays_questions_nav_question {
    box-shadow: none !important;
}
/*.quiz-section .ays-quiz-questions-nav-wrap .ays-quiz-questions-nav-content .ays-quiz-questions-nav-item a.ays_questions_nav_question {
    color: pink !important;
    border-color: red !important;
    background-color: green !important;
}*/
.quiz-section .ays-quiz-container .ays_quiz_question p {
    font-size: 1.6rem !important;
    text-align: left !important;
}
/*.quiz-section .ays-quiz-container .ays-field {
    border-width: 0px !important;
}*/
.quiz-section .ays-quiz-container.ays_quiz_classic_light .ays-questions-container .ays-field:hover label[for^='ays-answer-'], 
.quiz-section .ays-quiz-container .ays-field:hover {
    background: transparent !important;
    color: #000  !important;
    transition: all .3s;
}
.quiz-section .ays-quiz-container .ays-quiz-form .ays-field input:checked+label:before {
    border-color: var(--purple) !important;
    background: var(--purple) !important;
    background-clip: content-box !important;
}
[id^="ays_finish_quiz_"] div.step {
    padding-top: 0px !important;
}
fieldset.ays_fieldset {
    border: 0px solid #e3939394 !important;
    padding: 0px !important;
}
/*.quiz-section .ays-quiz-container p {
    margin: 0 !important;
}*/
.quiz-section .ays-quiz-container .step.ays_thank_you_fs .ays_score{
    font-size: 4rem !important;
    font-family: var(--heading-font);
    font-weight: normal;
    margin-bottom: 1.5rem !important;
    margin-top: 1rem !important;
}
.quiz-section .ays-quiz-container .ays-questions-container .ays_score_message h4{
    margin-top: 3rem !important;
    margin-bottom: 0.5rem !important;
    font-size: 3rem;
    font-weight: 400;
    font-family: var(--heading-font);
    font-weight: normal;
}
.quiz-section .ays-quiz-container .ays-questions-container .ays_score_message p{
    margin-top: 0rem !important;
    margin-bottom: 1.5rem !important;
    font-size: 1.5rem;
    font-weight: 400;
}
.quiz-section .ays-quiz-container .ays-questions-container .ays_result_by_cats{
    margin-top:2rem;
}
.quiz-section .ays-quiz-container .ays-questions-container p.ays_result_by_cat{
    font-size:1.5rem;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.quiz-section .ays-quiz-container .ays-progress.first {
    -moz-border-radius: 0px !important;
    -webkit-border-radius: 0px !important;
    -ms-border-radius: 0px !important;
    border-radius: 0px !important;
    margin-bottom: 3rem !important;
    border:none;
}
.quiz-section .ays-quiz-container .ays-progress-value {
    color: transparent !important;
    text-align: center !important;
    font-size: 1.6rem !important;
    width: 100% !important;

}
.quiz-section .ays-quiz-container .ays-questions-container > .ays_quizn_ancnoxneri_qanak {
    display:none;
}
.quiz-section .ays-quiz-container .ays-progress-bg.first {
    height: 30px;
    background: transparent;
}
div[id^="ays-quiz-container-"] .ays-progress-bar {
    background-color: var(--purple) !important;
    height:30px ;
    border-radius:0;
}
.quiz-section .ays-quiz-container .ays-progress-bar {
    background-color: var(--purple);
}
.quiz-section .ays-quiz-container .ays_quiz_results{

}
.ays_feedback_button_div, 
.ays_buttons_div {
    display: flex;
    margin-top: 1.5rem !important;
    margin-bottom: 4rem !important;
    flex-wrap: wrap;
}
fieldset.ays_fieldset legend {
    font-size: 1.8rem !important;
    top: 10rem !important;
    position: relative !important;
}
.ays-progress-bg {
    border-radius: 0px !important;
}
.quiz-section .ays-quiz-container div.ays-quiz-redirection-timer, 
.quiz-section .ays-quiz-container div.ays-quiz-timer {
    color: #000000;
    text-align: left;
}

/* Additional scrollbar for quiz */
.quiz-section .ays-quiz-container .ays-quiz-questions-nav-wrap .ays-quiz-questions-nav-content {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    padding: 0;
    overflow-x: auto;
    overflow-y: hidden;
    position:relative;
}
.quiz-section .ays-quiz-container .ays-quiz-questions-nav-wrap .ays-quiz-questions-nav-content::-webkit-scrollbar{
    position:absolute;
    left:-50px;
}
.quiz-section .ays-quiz-container .ays-quiz-questions-nav-wrap .ays-quiz-questions-nav-content::-webkit-scrollbar-button {
   /* Select the down or left scroll button when it's being hovered by the mouse */
   background-color:transparent;
}
.quiz-section .ays-quiz-container .ays-quiz-questions-nav-wrap .ays-quiz-questions-nav-content::-webkit-scrollbar-button {
    display: block;
    background-repeat: no-repeat;   
    background-size: fill;
    background-position: center;
}
.quiz-section .ays-quiz-container .ays-quiz-questions-nav-wrap .ays-quiz-questions-nav-content::-webkit-scrollbar-button:horizontal:start:decrement {
    background-image: url('../images/quiz_arrow_left.svg'); 
}
.quiz-section .ays-quiz-container .ays-quiz-questions-nav-wrap .ays-quiz-questions-nav-content::-webkit-scrollbar-button:horizontal:start:increment {
    display:none; 
}
.quiz-section .ays-quiz-container .ays-quiz-questions-nav-wrap .ays-quiz-questions-nav-content::-webkit-scrollbar-button:horizontal:end:decrement {
    display:none; 
}
.quiz-section .ays-quiz-container .ays-quiz-questions-nav-wrap .ays-quiz-questions-nav-content::-webkit-scrollbar-button:horizontal:end:increment {
    background-image: url('../images/quiz_arrow_right.svg');   
}
.quiz-section .ays-quiz-wrap{
    margin-top: 0rem !important;
}
.quiz-section .ays-quiz-container .ays_quiz_timer_container{
    position: absolute;
    top: 22px;
    left: 0;
    font-size: 1.4rem;
    right: auto;
}
/* width */
.quiz-section .ays-quiz-container .ays-quiz-questions-nav-wrap .ays-quiz-questions-nav-content::-webkit-scrollbar {
  height:22px;
}
/* Track */
.quiz-section .ays-quiz-container .ays-quiz-questions-nav-wrap .ays-quiz-questions-nav-content::-webkit-scrollbar-track {
  background: transparent;
}
/* Handle */
.quiz-section .ays-quiz-container .ays-quiz-questions-nav-wrap .ays-quiz-questions-nav-content::-webkit-scrollbar-thumb {
    /*background:  var(--light-grey);
    border-radius:11px;*/

    background-color: #818B99;
    border: 3px solid transparent;
    border-radius: 9px;
    background-clip: content-box;
}
/* Handle on hover */
.quiz-section .ays-quiz-container .ays-quiz-questions-nav-wrap .ays-quiz-questions-nav-content::-webkit-scrollbar-thumb:hover {
  background-color: var(--dark-grey);
}

body.search .site-main #sticky-ads,
body.archive.category #sticky-ads,
body.single-post_author article.post_author #sticky-ads,
body.single-event article.type-event #sticky-ads,
body.post-type-archive-event .events-page-container #sticky-ads,
body.single article.type-post #sticky-ads,
body.page-template-flexible-layout #sticky-ads,
body.page-template-default #sticky-ads{
    position: sticky;
    top: 10rem;
    padding-bottom: 4rem;
}
body.single article.type-post #sticky-ads{
    padding-bottom: 7.5rem;
}


/* SINGLE POST */
body.search .site-main .rhs,
body.archive.category .site-main .rhs,
body.single-event article.type-event .rhs,
body.post-type-archive-event .events-page-container .rhs,
body.single article.type-post .rhs,
body.page-template-flexible-layout .site-main .rhs,
body.post-type-archive-job .jobs-page-container .rhs{
    left:75%;
    margin-top:5rem;
}
body.page-template-flexible-layout .site-main .rhs{
    margin-top:7.3rem;
}
body.search .site-main .rhs>.inner,
body.archive.category .rhs>.inner,
body.single-post_author article.post_author .rhs>.inner,
body.single-event article.type-event .rhs>.inner,
body.post-type-archive-event .events-page-container .rhs>.inner,
body.single article.type-post .rhs>.inner,
body.page-template-flexible-layout .site-main .rhs>.inner{
    width:100%;
    height:100%;
    max-width:30rem;
    margin-left:auto;
}
body.search .site-main .lhs,
body.archive.category .site-main .lhs,
body.single-event article.type-event .lhs,
body.post-type-archive-event .events-page-container .lhs,
/* body.single article.type-post .lhs, */
body.page-template-flexible-layout .site-main .lhs,
body.post-type-archive-job .jobs-page-container .lhs{
    padding-right:5.8rem;
    right:25%;
}
.single main > article.post{
    margin-top:4rem;
}
.single .article-container>.inner{
    border: 1px var(--pink) solid;
    padding: 6.4rem;
    margin-top: 26.7rem;
    padding-top: 17.5rem;
    min-height: 66rem;
}
.single-event .article-container>.inner{
    min-height: 53rem;
}
.single .hero-image{
    height: 35rem;
    max-width: 64rem;
    width: 70%;
    position: absolute;
    margin-bottom: 35rem;
    display: inline-block;
    top: 0rem;
    background-size: cover;
    background-position: center;
    z-index: 50;
    border: 5rem solid white;
    border-left: 0;
    box-sizing: content-box;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    background-color: var(--purple);
}
.single .hero-video{
    height: 35rem;
    max-width: 64rem;
    width: 70%;
    position: absolute;
    margin-bottom: 35rem;
    display: inline-block;
    top: 0rem;
    z-index: 99;
    border: 5rem solid white;
    border-left: 0;
    box-sizing: content-box;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}
.single .hero-video .placeholder-video{
    content: '';
    width: 100%;
    height: 100%;
    background-image: var(--video-placeholder-img);
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    z-index: 20;
    cursor: pointer;
    opacity: 1;
    transition: all 1s ease;
    transition-delay: 1s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.single .hero-video .placeholder-video::after{
    content: url('/wp-content/uploads/2023/08/play-button.svg');
    position: absolute;
}
.single .hero-video.active .placeholder-video{
    opacity: 0;
    pointer-events: none;
}
.single .hero-video iframe{
    max-height: 100%;
}
.single .hero-image .categories-container{
    background-color: var(--purple);
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
}

.single .entry-header .authors{
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    margin-top: 2rem;
}
.single .entry-header .authors .author-pictures{
    display: flex;
    margin-right: 1rem;
}
.single .entry-header .authors .author-pictures .image{
    border-radius: 50%;
    width: 5.2rem;
    height: 5.2rem;
    background-size: cover;
    background-position: center;
}
.single .entry-header .authors .author-pictures .image:not(:first-of-type){
    margin-left: -.8rem;
}
.single .entry-header .authors .info{
    font-size: 1.2rem;
}
.single .entry-header .authors .author-names p{
    margin-bottom: 0;
    font-weight: 700;
}

.single .entry-content .authors{
    background-color: var(--purple);
    color: var(--white);
    padding: 4rem 3.5rem 0 3.5rem;
    margin-top: 5.9rem;
    margin-bottom: 0rem;
}
.single .entry-content .authors h2{
    font-family: var(--heading-font);
    font-weight: normal;
    letter-spacing: 0.02em;
    font-size: 4rem;
    margin-bottom: 5rem;
    margin-top:0;
    color: var(--white);
}
.single .entry-content .authors .row{
    padding-bottom: 7rem;
}
.single .entry-content .authors .links{
    display: flex;
    flex-wrap:wrap;
}
.single .entry-content .authors .links .social-area{
    display: flex;
}
.single .entry-content .authors button{
    color: var(--white);
    background-color: var(--purple);
    border-color: var(--white);
    margin-right: 1rem;
    height:3.6rem;
}
.single .entry-content .authors .links a:hover{
    text-decoration: none;
    opacity: 1;
}
.single .entry-content .authors .links button:hover{
    background-color: var(--white);
    color: var(--purple);
}
.single .entry-content .authors .links button:hover img{
    filter: invert(63%) sepia(49%) saturate(1920%) hue-rotate(235deg) brightness(93%) contrast(101%);
}
.single .entry-content .authors button.social{
    width: 3.8rem;
    min-width: initial;
    padding: 0.7rem;
}
.single .entry-content .authors .portrait{
    width:15.5rem;
    margin-right:4.5rem;
    padding-left:1.2rem;
    padding-right:0;
}
.single .entry-content .authors .image{
    border-radius: 50%;
    width: 100%;
    padding-bottom: 100%;
    background-position: center;
    background-size: cover;
}
.single .entry-content .authors .info{
    width:calc(100% - 20rem);
    padding-left:3rem;
    padding-right:1.2rem;
    border-left: 1px var(--white) solid;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.single .entry-content .authors .info h4{
    font-size: 1.8rem;
    font-weight: 800;
    margin-top:0;
    color: var(--white);
}
.single .entry-content .authors .info .body{
    font-size: 1.5rem;
    padding-bottom: 1.5rem;
    color: var(--white);
}
.single .entry-content .authors .info .body p{
    color: var(--white);
}
.single .entry-content .authors .info .body a{
    color:var(--white);
    text-decoration:underline;
}
.single .entry-content .authors .info .body a:hover{
    opacity:0.7;
}
.wp-block-image img{
    height: auto !important;
}
.post-categories{
    margin-top: 1rem;
    margin-bottom: 1.6rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--purple);
}
body.single-event article.type-event .lhs .surround,
body.single article.type-post .lhs .surround{
    display:flex;
    flex-wrap:wrap;
}
body.single article.type-post .lhs .surround .scroll-details{
    width: 5.5rem;
    margin-bottom: 5.7rem;
    margin-top: 45rem;
}
body.single-event article.type-event .lhs .surround .scroll-details{
    width: 5.5rem;
    margin-top: 15rem;
    margin-bottom: 6.7rem;
}
body.single-event article.type-event .lhs .surround .article-container,
body.single article.type-post .lhs .surround .article-container{
    width:calc(100% - 5.5rem);
    padding-left: 4rem;
}
body.single-event article.type-event .lhs .surround .article-container .sign-up-button{
    margin-top:2.5rem;
    display:inline-block;
}
body.single-event article.type-event .lhs .surround .article-container .sign-up-button button{
    margin-top:0;
}
body.single article.type-post .lhs .surround .article-container{
    margin-bottom:5.7rem;
}
.left-bar{
    position: sticky;
    top: 12rem;
    display: flex;
    flex-direction: column;
}

#scroll-indicator {
    position: relative;
    width: 5.5rem;
    height: 5.5rem;
    background: #F4F4F4;
    overflow: hidden;
}
#scroll-indicator .inner{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4.4rem;
    height: 4.4rem;
    background: var(--white);
}

/* #scroll-indicator.complete{
    background-image: conic-gradient(#8A54ED 100%, #F4F4F4 0) !important;
} */
#scroll-indicator.complete .inner{
    background: var(--purple) url(/wp-content/uploads//2025/04/scroll-complete.svg) no-repeat center;
    background-size: 2rem;
}

.square-button{
    width: 5.5rem;
    height: 5.5rem;
    border: 1px var(--light-grey) solid;
    margin-top: 1.5rem;
}

.square-button.share{
    font-size: 1.2rem;
    font-weight: 700;
    background-color: var(--purple);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-color: var(--purple);
}
.square-button.social{
    display: flex;
    align-items: center;
    justify-content: center;
}
.square-button.social:hover{
    background-color: var(--purple);
    border-color: var(--purple);
}
.square-button.social:hover img{
    filter: invert(100%) sepia(0%) saturate(0) hue-rotate(84deg) brightness(300%) contrast(111%);
}
.square-button.back{
    background: transparent url(/wp-content/uploads//2025/04/back-icon.svg) no-repeat center;
    background-size: 0.8rem;
}

/* Comments */
.single .comments-area{
    margin-top: 0rem;
    margin-bottom: 6.6rem;
    display: inline-block;
    width: 100%;
}
.single .comments-area .add-comment{
    margin-bottom: 2.4rem;
}
.single .comments-area .comments-title{
    font-family: var(--heading-font);
    font-weight: normal;
    letter-spacing: 0.02em;
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 2.4rem;
    margin-top: 2.4rem;
}
.single .comment-list{
    padding: 0;
}
.single .comment-content{
    margin-bottom: 3.9rem;
    position: relative;
    padding-left: 4.7rem;
}
.single .comment-content:last-of-type{
    margin-bottom: 3rem;
}
.single .comment-content::before{
    content: url('/wp-content/uploads/2023/07/comment-icon.svg');
    width: 3rem;
    height: 3rem;
    position: absolute;
    top: 0;
    left: 0;
}
.single .comment-inner{
    border: 1px var(--light-grey) solid;
    border-top-left-radius: 5px;
    padding: 2.5rem 3rem 6rem 3rem;
}
.single .comment-content .comment-author{
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}
.single .comment-content .comment-date{
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}
.single .comment-content .comment-text{
    font-size: 1.5rem;
    max-width:65rem;
}
.single .comment-content .comment-reply{
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 2.4rem 3rem;
}
.single .comment-content .comment-reply a{
    font-size: 1.3rem;
    color: var(--dark-grey);
    font-weight: 700;
}
.single .comments-area button.add-comment{
    float: right;
}
.single .comments-area #respond{
    display: none;
}
.single .comments-area .form-submit{
    display: inline-block;
    width: 100%;
    margin-bottom: 0rem;
}
.single .comments-area .form-submit .submit{
    background-color: var(--white);
    min-width: 25.5rem;
    width:auto;
    height: 3.5rem;
    border: 2px var(--purple) solid;
    font-size: 1.3rem;
    color: var(--dark-grey);
    outline: none;
    margin-top: 1.5rem;
    outline: none !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    font-weight: 500;
    border-radius: 0;
    float: right;
}
.single .comments-area .comment-form-author{
    width: 50%;
    float: left;
    display: flex;
    flex-direction: column;
    padding-right: 2.5rem;
}
.single .comments-area .comment-form-email{
    width: 50%;
    float: right;
    display: flex;
    flex-direction: column;
    padding-left: 2.5rem;
}
.single .comments-area .comment-form-author label,
.single .comments-area .comment-form-email label{
    transform: translateY(3rem);
    transition: all 0.3s ease;
    pointer-events: none;
    padding-bottom: 0.5rem;
    min-height: 2.7rem;
}
.single .comments-area .comment-form-author label.active,
.single .comments-area .comment-form-email label.active {
    transform: translateY(1.25rem);
    font-size: 1.4rem;
}
.single .comments-area .comment-form-author input,
.single .comments-area .comment-form-email input{
    border-radius: 0;
    border: none;
    border-bottom: solid 0.1rem var(--light-grey);
    background-color: transparent;
    outline: none;
    color: var(--dark-grey);
    font-size: 1.5rem;
    padding-left: 0;
}
.single .comments-area .comment-form-comment textarea{
    border-radius: 0;
    border: solid 0.1rem var(--light-grey);
    background-color: transparent;
    outline: none;
    color: var(--dark-grey);
    font-size: 1.5rem;
}
.single .comments-area .comment-respond{
    position: relative;
}
.single .comments-area .comment-respond .comment-reply-title{
    display: flex;
    flex-direction: column-reverse;
}
.single .comments-area .comment-respond .comment-reply-title small{
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: .5rem;
}
.single .comments-area .comment-form-cookies-consent{
    display: inline-block;
    margin-top: 3rem;
}
.single .comments-area #commentform .error{
    color: var(--purple);
}

/* Featured posts */
.more-like-this-container .lhs{
    padding-right:5.8rem;
}
.listing-posts{
    margin-top:5rem;
    margin-bottom: 5.7rem;
}
body.single-post_author .post-container.row {
    margin-right: -1.2rem;
    margin-left: -1.2rem;
}
.post-container.row {
    margin-right: -3.5rem;
    margin-left: -3.5rem;
}
.post-container.row .post-teaser{
    padding-right: 3.5rem;
    padding-left: 3.5rem;
}
.post-container.row .post-teaser.list{
    width: 100%;
}
.listing-posts h2{
    font-size: 2.5rem;
    font-family: var(--heading-font);
    font-weight: normal;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 4.7rem;
}
.listing-posts .load-more-posts{
    border: 1px solid #D3D3D3;
    border-top: none;
    width: 100%;
    margin-top: 0rem;
    padding-top: 4.1rem;
    padding-bottom: 2.1rem;
    text-align: center;
}
.rhs .listing-posts .load-more-posts{
    padding-top: 0.5rem;
}
.listing-posts .load-more-posts a{
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--dark-grey);
}
.listing-posts .load-more-posts a:visited{
    color: var(--dark-grey);
}
.listing-posts .load-more-posts a:hover{
    text-decoration: none;
    opacity: 1;
    color: var(--purple);
}
.listing-posts .load-more-posts a::after{
    content: url("/wp-content/uploads/2025/05/load-more-icon.svg");
    margin-left: 1rem;
}
.listing-posts .load-more-posts a:hover::after{
    filter: invert(45%) sepia(39%) saturate(6913%) hue-rotate(240deg) brightness(94%) contrast(97%);
}
.listing-posts .load-more.disable{
    color: var(--grey);
    cursor: not-allowed;
    pointer-events: none;
}
.listing-posts .load-more.disable:hover{
    color: var(--grey);
}
.listing-posts .load-more.disable::after{
    filter: invert(71%) sepia(3%) saturate(17%) hue-rotate(335deg) brightness(91%) contrast(90%);
}
.listing-posts .load-more.disable:hover::after{
    filter: invert(71%) sepia(3%) saturate(17%) hue-rotate(335deg) brightness(91%) contrast(90%);
}
/* Pagination */
.listing-posts .load-more-posts .pagination {
    justify-content: center;
}
.listing-posts .load-more-posts .pagination .nav-links{
    display:flex;
    flex-wrap: wrap;
}
.listing-posts .load-more-posts .pagination .nav-links a::after{
    display:none;
}
.listing-posts .load-more-posts .pagination .nav-links span.dots,
.listing-posts .load-more-posts .pagination .nav-links span.current,
.listing-posts .load-more-posts .pagination .nav-links a{
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--dark-grey);
    padding-left:0rem;
    padding-right:0rem;
    display:flex;
    justify-content:center;
    align-items:center;
    width:2.2rem;
    height:2.2rem;
    line-height:0;
    letter-spacing: 0;
}
.listing-posts .load-more-posts .pagination .nav-links span.current{
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--white);
    background-color: var(--purple);
}
.listing-posts .load-more-posts .pagination .nav-links span.dots{
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--dark-grey);
}
.listing-posts .load-more-posts .pagination .nav-links a.prev,
.listing-posts .load-more-posts .pagination .nav-links a.next{
    color:transparent;
}
.listing-posts .load-more-posts .pagination .nav-links a.prev{
    background-image:url('../images/pagination_arrow_left.svg');
    background-size:0.7rem auto;
    background-position:center left;
    background-repeat:no-repeat;
    text-indent: -9999px;
    overflow: hidden;
}
.listing-posts .load-more-posts .pagination .nav-links a.prev:hover{
    background-image:url('../images/pagination_arrow_left_purple.svg');
    color:transparent;
}
.listing-posts .load-more-posts .pagination .nav-links a.next{
    background-image:url('../images/pagination_arrow_right.svg');
    background-size:0.8rem auto;
    background-position:center right;
    background-repeat:no-repeat;
    text-indent: -9999px;
    overflow: hidden;
}
.listing-posts .load-more-posts .pagination .nav-links a.next:hover{
    background-image:url('../images/pagination_arrow_right_purple.svg');
    color:transparent;
}
.listing-posts .load-more-posts .pagination .nav-links a:hover{
    color: var(--purple);
}





.post-container .post-teaser .post-teaser-img{
    padding-bottom: 69%;
    margin-bottom: 3rem;
    position: relative;
    background-size: cover;
    background-position: center;
    background-color:#eaeaea;
}
.post-container .post-teaser .post-teaser-img .categories-container{
    background-color: var(--purple);
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    position: absolute;
    bottom: 0;
    left: 0;
}
.post-container .post-teaser .post-teaser-video img{
    position: absolute;
    width: 3.5rem;
    top: calc(50% - 1.75rem);
    left: calc(50% - 1.75rem);
}
.post-teaser.list .post-teaser-mini .post-teaser-video img {
    position: absolute;
    width: 3.5rem;
    top: calc(50% - 1.75rem);
    left: calc(50% - 1.75rem);
}
.post-container .post-teaser .summary-container{
    border-left: 1px solid var(--pink);
    padding-left: 3.2rem;
    margin-bottom:6rem;
}
.post-container .post-teaser.full-size{
    margin-bottom: 0rem;
}
body.home .post-container .post-teaser.full-size{
    padding-left:0 !important;
    padding-right:0 !important;
}
body.home .post-container .post-teaser.full-size:last-child{
    margin-bottom:0;
}
.post-container .post-teaser.full-size article>a{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}
.post-container .post-teaser.full-size .post-teaser-img{
    width: 60%;
    left: 40%;
    position: relative;
    padding-bottom: 40%;
}
.post-container .post-teaser.full-size .summary-container{
    width: 35%;
    right: 60%;
    position: relative;
}
.post-container .post-teaser .summary-container h3{
    color: var(--dark-grey);
    font-family: var(--heading-font);
    font-weight: normal;
    letter-spacing: 0.02em;
    font-size: 4rem;
    margin-bottom: 3.6rem;
}
.post-container .post-teaser .summary-container .summary{
    font-size: 1.6rem;
    color: var(--black);
    margin-bottom: 3.7rem;
}
.post-container .post-teaser a:hover{
    text-decoration: none;
}
.post-container .post-teaser .author-names{
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
}
.post-container .post-teaser .author-names p{
    margin-bottom: 0;
}
.post-container .post-teaser .post-date{
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--black)
}

/* POST - MINI TEASER */
.post-teaser-mini{
    display: flex;
    margin-bottom: 4rem;
}
.post-teaser-mini .image{
    height: 10rem;
    width: calc(45% - 2rem);
    margin-right: 2rem;
    background-size: cover;
    background-position: center;
    position: relative;
    background-color:#eaeaea;
}
.post-teaser-mini .text{
    border-top: 1px solid var(--pink);
    padding-top: 2rem;
    width: 55%;
}
.post-teaser-mini .text .title{
    font-size: 1.8rem;
    color: var(--dark-grey);
    font-weight: 800;
    margin-bottom: 1.9rem;
    line-height: 1.2;
}
.post-teaser-mini .text .author-names p{
    font-size: 1.4rem;
    color: var(--dark-grey);
    margin-bottom: 0;
    font-weight: 600;
}
.post-teaser-mini .text .date{
    font-size: 1.4rem;
    color: var(--dark-grey);
    font-weight: 400;
}

.listing-posts .full-width .post-teaser-mini .text{
    width: calc(100% - 23rem);
    border-top: none;
    border-left: 1px solid var(--pink);
    padding-left: 3rem;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.listing-posts .full-width .post-teaser-mini .text .roles{
    font-size: 1.2rem;
    color: var(--purple);
    font-weight: 600
}
.listing-posts .full-width .post-teaser-mini .image {
    height: 12.3rem;
    width: 20rem;
    margin-right: 3rem;
}
/* POST - LABEL */
.listing-posts .post-label{
    font-size: 1.6rem;
    margin-bottom: 4rem;
    padding-left: 2.2rem;
    background-image: url(../images/arrow_purple_right.svg);
    background-size: 1.3rem auto;
    background-position: left 0.9rem;
    background-repeat: no-repeat;
    padding-right: 0;
}
/* EVENTS */
.single-event .article-container>.inner{
    margin-top: 11.4rem;
    padding-top: 6.5rem;
    margin-bottom: 6.7rem;
}
.single-event .left-bar{
    top: 15rem;
}
.single-event .event-type{
    position: absolute;
    left: 1.5rem;
    top: 9.5rem;
    background: #EDEDED;
    padding: 0.4rem 1.5rem;
    font-size: 1.5rem;
    border-right: 2rem solid var(--white);
    box-sizing: content-box;
    z-index: 9;
    border-bottom: 3.5rem solid var(--white);
    font-weight: 600;
}
.square-button.date{
    background-color: var(--purple);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-color: var(--purple);
    flex-direction: column;
}
.square-button.date .event-day{
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}
.square-button.date .event-month{
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12px;
}
.event-info{
    display: flex;
    flex-wrap:wrap;
    margin-bottom: 2.8rem;
}
.event-info .event-date{
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--dark-grey);
    margin-right: 4.8rem;
    display: flex;
    align-items: center;
    margin-bottom:1rem;
}
.event-info .event-date::before{
    content: url(../images/calendar.svg);
    margin-right: 1.2rem;
}
.event-info .event-location{
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--dark-grey);
    margin-right: 4.8rem;    
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}
.event-info .event-location::before{
    content: url(../images/map-pin.svg);
    margin-right: 1.5rem;
}
.event-info .event-time{
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--dark-grey);
    margin-right: 0rem;    
    display: flex;
    align-items: center;
    margin-bottom:1rem;
}
.event-info .event-time::before{
    content: url(../images/clock.svg);
    margin-right: 0.7rem;
    align-self: flex-end;
}
.event-info .event-time select{
    height: 3.4rem;
    border-color: #A1A1A1;
    border-radius: 0;
    outline: none;
    margin-left: 1rem;
}
.event-info .event-time span{
    padding: 0 .5rem;
    text-transform: uppercase;
}
.single-event .event-actions{
    position: absolute;
    display: flex;
    right: 5.8rem;
    top: 3.5rem;
}
.single-event .event-actions a:hover{
    opacity: 1;
    text-decoration: none;
}
.single-event .event-actions button{
    margin-left: 1.6rem;
    min-width: initial;
}

.event-speakers{
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
}   
article .entry-content .event-speakers>h2{
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3.6rem;
    margin-top:0;
}
.event-speakers .speaker{
    display: flex;
    margin-bottom: 3rem;
}
.event-speakers .speaker .image{
    width: 6.3rem;
    height: 6.3rem;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}
.event-speakers .speaker .body{
    padding-left: 1.6rem;
    width:calc(100% - 6.3rem);
}
.event-speakers .speaker .body h4{
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 1rem;
}
.event-speakers .speaker .body p{
    line-height:1.3;
    margin-bottom: 0;
}
.event-speakers .speaker .links{
    display: flex;
}
.event-speakers .speaker .links button.social{
    min-width: auto;
    width: 2.6rem;
    min-height: auto;
    height: 2.6rem;
    padding: 0.5rem;
    margin-top: 1.3rem;
    margin-right: 1rem;
    border-color: var(--light-grey);
}
.event-speakers .speaker .links a:hover{
    opacity: 1;
}
.event-speakers .speaker .links button.social:hover{
    border-color: var(--dark-grey);
    background-color: var(--dark-grey);
}
.event-speakers .speaker .links button.social img{
    filter: invert(1);
}
.event-speakers .speaker .links button.social:hover img{
    filter: invert(0);
}
/* Event overview filters */
.archive.post-type-archive .filters{
    background-color: var(--dark-grey);
    color: var(--white);
    padding-top: 2.4rem;
    padding-bottom: 2.3rem;
}
/*.archive.post-type-archive .filters form>.row{
    align-items: center;
}*/
/*.archive.post-type-archive .filters .event-row{
    display:flex;
}*/
.archive.post-type-archive .filters .event-row .filters-area{
    width:100%;
}
/*.archive.post-type-archive .filters .event-row .filters-area .row{
    width:100%;
}*/
/*.archive.post-type-archive .filters .submit-area .form-submit{
    display:flex;
    justify-items:end;
}*/
.archive.post-type-archive .filters .filter-input{
    display: flex;
    align-items: center;
}
.archive.post-type-archive .filters .filter-input label{
    font-size: 1.4rem;
    font-weight: 500;
    padding-right: 0.8rem;
}
.archive.post-type-archive .filters .filter-input input{
    height: 3.4rem;
    max-width: 25rem;
    flex-grow: 1;
    font-size: 1.4rem;
    padding-left: 1.3rem;
    outline: none;
    width:100%;
}
.archive.post-type-archive .filters .filter-input select{
    height: 3.4rem;
    max-width: 25rem;
    flex-grow: 1;
    font-size: 1.4rem;
    padding-left: 1.3rem;
    outline: none;
}
.archive.post-type-archive .filters .form-submit input{
    width: 11rem;
    width:100%;
    height: 3.4rem;
    background-color: var(--purple);
    color: var(--white);
    border: none;
    border-radius: 0;
    font-size: 1.3rem;
    font-weight: 700;
    outline: none;
    cursor: pointer;
    margin-left: auto;
    margin-right: 0;
    display: block;
}
.archive.post-type-archive p.content-none {
    margin-bottom: 4rem;
    font-size: 1.7rem;
}
p.no-results{
    margin-top: 5rem;
    font-size: 5rem;
    font-family: var(--heading-font);
    font-weight: normal;
    color: var(--dark-grey);
}

.archive.post-type-archive .upcoming-events-top-bar{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4.5rem;
    row-gap: 1.5rem;
    margin-top: 10rem;
}
.archive.post-type-archive .upcoming-events-top-bar h5 {
    font-size: 2.4rem;
    font-weight: 600;
    color: #757575;
    margin-bottom: 0;
}
.archive.post-type-archive .upcoming-events-top-bar .events-view{
    display: flex;
    column-gap: 1rem;
}
.archive.post-type-archive .upcoming-events-top-bar .events-view .view{
    padding: 0.8rem 1.2rem 0.8rem 0.8rem;
    color: #4A4A4A;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 0.8rem;
}
.archive.post-type-archive .upcoming-events-top-bar .events-view .view.active{
    background-color: var(--purple);
    color: var(--white);
}
.archive.post-type-archive .upcoming-events-top-bar .events-view .view::before{
    content: '';
    background-image: url(../images/grid-view.svg);
    width: 1.5rem;
    height: 1.5rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(0) saturate(100%) invert(23%) sepia(6%) saturate(15%) hue-rotate(351deg) brightness(98%) contrast(77%);
}
.archive.post-type-archive .upcoming-events-top-bar .events-view .view.active::before{
    filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(0%) hue-rotate(182deg) brightness(104%) contrast(103%);
}
.archive.post-type-archive .upcoming-events-top-bar .events-view .grid-view::before{
    background-image: url(../images/grid-view.svg);
}
.archive.post-type-archive .upcoming-events-top-bar .events-view .list-view::before{
    background-image: url(../images/list-view.svg);
}
.archive.post-type-archive .post-container.row .post-teaser{
    padding-right: 1.2rem;
    padding-left: 1.2rem;
}
.archive.post-type-archive .post-container.row {
    margin-right: -1.2rem;
    margin-left: -1.2rem;
}
/* EVENT - teaser */
.archive.post-type-archive .listing-posts{
    margin-top: 5.4rem;
}
article.type-event{
    position: relative;
}
article.type-event .teaser-container,
article.type-job .teaser-container{
    margin-bottom: 6rem;
    border: 1px solid #ABABAB;
    padding: 5rem 3.1rem 3.25rem 3.1rem;
}
article.type-event .teaser-container.highlighted{
    border-color: var(--pink);
}
article.type-event .teaser-container .event-body,
article.type-job .teaser-container .event-body{
    display: flex;
}
article.type-event>a:hover{
    text-decoration: none;
    opacity: 1;
}
article.type-event .teaser-container .event-thumbnail{
    width: 24rem;
    height: 15rem;
    background-size: cover;
    background-position: center;
    margin-bottom: 2rem;
}
article.type-event .teaser-container .event-info{
    flex-direction: column;
    margin-bottom: 0;
}
article.type-event .teaser-container .event-info>div{
    /* font-weight: 400 !important; */
}
article.type-event .teaser-container .event-info>div:not(:last-child){
    margin-bottom: 2rem;
}
article.type-event .teaser-container .event-body .square-button.date{
    margin-top: 0;
    margin-right: 3rem;
    min-width: 5.5rem;
}
article.type-event .teaser-container .event-body h2.title,
article.type-job .teaser-container .event-body h2.title{
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-grey);
    font-family: var(--serif);
    text-transform: none;
    letter-spacing: normal;
}
article.type-event .teaser-container .event-body p,
article.type-job .teaser-container .event-body p{
    max-width:45rem;
    margin-bottom:0;
    display: -webkit-box;
    display: -moz-box;
    -webkit-line-clamp: 4;
    -moz-line-clamp: 4;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    overflow: hidden;
}
article.type-event .teaser-container .event-body,
article.type-job .teaser-container .event-body {
    color: var(--dark-grey);
}
.archive.post-type-archive article.type-event .event-type,
.archive.post-type-archive article.type-job .job-type  {
    position: absolute;
    left: 0;
    top: -1.5rem;
    background: var(--dark-grey);
    padding: 0.4rem 1.5rem;
    font-size: 1.6rem;
    border-right: 2rem solid var(--white);
    box-sizing: content-box;
    z-index: 9;
    border-bottom: 3.4rem solid var(--white);
    font-weight: 600;
    color:var(--white);
}

/* Event grid teaser */
@media (min-width: 576px) {
    .post-container.row .event-grid{
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .event-grid{
        margin-bottom: 6rem;
    }
    .event-grid article.type-event .teaser-container{
        border: none;
        padding: 0;
        margin-bottom: 0;
        border: 1px solid transparent;
    }
    .event-grid article.type-event{
        height: 100%;
        position: relative;
    }
    .event-grid article.type-event .teaser-container.highlighted{
        border-color: var(--pink);
        border-left: none;
        height: 100%;
    }
    .event-grid article.type-event .event-thumbnail{
        width: calc(100% + 1px);
        padding-bottom: 60%;
        background-color: var(--light-grey);
        position: relative;
        margin-top: 4rem;
    }
    .event-grid article.type-event .event-thumbnail > img{
        width:100%;
        height:100%;
        position:absolute;
        top:0;
        left:0;
        object-fit:cover;
    }
    .archive.post-type-archive .event-grid article.type-event .event-type{
        border-right: 1.5rem solid var(--white); 
        border-bottom: none; 
    }
    .event-grid article.type-event .teaser-container .event-body h2.title{
        margin-top: 1rem;
        margin-bottom: 2.5rem;
        display: -webkit-box;
        display: -moz-box;
        -webkit-line-clamp: 2;
        -moz-line-clamp: 2;
        -webkit-box-orient: vertical;
        -moz-box-orient: vertical;
        overflow: hidden;
    }
    .event-grid .event-info .event-date::before{
        filter: invert(53%) sepia(0%) saturate(830%) hue-rotate(151deg) brightness(85%) contrast(82%);
    }
    .event-grid .event-info .event-location::before{
        filter: invert(53%) sepia(0%) saturate(830%) hue-rotate(151deg) brightness(85%) contrast(82%);
    }
    .event-grid article.type-event .teaser-container .event-info>div{
        margin-right: 0;
    }
}
/* Event teaser mini */
.event-teaser-mini h2.title{
    font-family: var(--serif);
    color: var(--dark-grey);
    font-size: 1.8rem;
    text-transform: none;
    margin-top: 0;
    margin-bottom:2rem;
    font-weight: 700;
}
.event-teaser-mini article.type-event .teaser-container {
    margin-bottom: 3.7rem;
    border: none;
    padding: 0;
}
.event-teaser-mini article.type-event .teaser-container .event-body .square-button.date {
    margin-right: .7rem;
}
.event-teaser-mini article.type-event .teaser-container .event-body .summary{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.event-teaser-mini article.type-event .teaser-container .event-body .summary p{
    font-size: 1.4rem;
}
.event-teaser-mini article.type-event .teaser-container .event-body .summary .event-type{
    font-size: 1.4rem;
    font-weight: 600;
}

/* Featured Events */
/* Featured Events */
.archive.post-type-archive .featured-events{
    margin-top: 4rem;
    margin-bottom: 6rem;
}
.archive.post-type-archive .featured-events h5{
    font-size: 2.4rem;
    font-weight: 600;
    color: #757575;
    margin-bottom: 2.5rem;
}
.archive.post-type-archive .featured-events .event{
    position: relative;
}
.archive.post-type-archive .featured-events .event>a{
    display: block;
    height: 100%;
}
.archive.post-type-archive .featured-events .event .event-info .event-time select {
    border-color: #231F20;
    color: #ffffff;
    background-color: #231F20;
}
.archive.post-type-archive .featured-events .event:first-child>a{
    margin-left:0;
    margin-right:auto;
}
.archive.post-type-archive .featured-events .event:nth-child(2)>a{
    margin-left:auto;
    margin-right:0;
}
.archive.post-type-archive .featured-events .event>a:hover{
    text-decoration: none;
    opacity: 1;
}
.archive.post-type-archive .featured-events .event .event-type {
    position: relative;
    background: var(--pink);
    color: var(--white);
    padding: 0.4rem 1.2rem;
    font-size: 1.6rem;
    font-weight: 600;
    width: fit-content;
    margin-bottom: 2rem;
    margin-right:1rem;
}
.archive.post-type-archive .featured-events .event .inner{
    background-color: var(--dark-grey);
    padding: 2.5rem 2.5rem 2.5rem 2.5rem;
    min-height: 100%;
    height: 40rem;
}
.archive.post-type-archive .featured-events .event.single .inner{
    background-color: var(--dark-grey);
    padding: 2.5rem 2.5rem 2.5rem 2.5rem;
    min-height: 100%;
    height: auto;
}
.archive.post-type-archive .featured-events .event.single .inner{
    padding: 2.5rem;
}
.archive.post-type-archive .featured-events .event .inner h2{
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    line-height: 144%;
}
.archive.post-type-archive .featured-events .event.single .inner h2{
    margin-bottom: 0.8rem;
    display: -webkit-box;
    display: -moz-box;
    -webkit-line-clamp: 2;
    -moz-line-clamp: 2;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    overflow: hidden;
}
.archive.post-type-archive .featured-events .event:not(.single) .inner h2{
    display: -webkit-box;
    display: -moz-box;
    -webkit-line-clamp: 2;
    -moz-line-clamp: 2;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    overflow: hidden;
}
.archive.post-type-archive .featured-events .event .inner p{
    margin-bottom:0;
    color:#d4d4d4;
}
.archive.post-type-archive .featured-events .event .event-info{
    margin-bottom: 0;
}
.archive.post-type-archive .featured-events .event .details{
    position:unset;
}
.archive.post-type-archive .featured-events .event .details .event-info{
    position:absolute;
    bottom:2rem;
}
.archive.post-type-archive .featured-events .event.single .details .event-info{
    position:relative;
    bottom:0rem;
}
.archive.post-type-archive .featured-events .event .event-info>div{
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 500;
}
.archive.post-type-archive .featured-events .event .details{
    padding-left:1.9rem;
    padding-left: 1.2rem;
}
.archive.post-type-archive .featured-events .event .details .event-copy{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
   height: calc(100% - 5rem);
}
.archive.post-type-archive .featured-events .event.single .details .event-copy{
    background-color:var(--dark-grey);
}
.archive.post-type-archive .featured-events .event .details .event-info .event-date,
.archive.post-type-archive .featured-events .event .details .event-info .event-location{
    margin-right:0;
}
.archive.post-type-archive .featured-events .event.single .details{
    padding-left:1.9rem;
}
.archive.post-type-archive .featured-events .event .top{
    display: flex;
    flex-wrap:wrap;
    justify-content: space-between;
   max-height: 4.5rem;
   overflow: hidden;
   margin-bottom:0.5rem;
}
.archive.post-type-archive .featured-events .event .top .event-location{
    margin-right: 0;
    line-height: 1.2;
}
.archive.post-type-archive .featured-events .event .event-copy .event-location{
    display: none;
}
.archive.post-type-archive .featured-events .event .top.top-single{
    display: none;
}
.archive.post-type-archive .featured-events .event.single .top.top-multiple{
    display: none;
}
.archive.post-type-archive .featured-events .event.single .top.top-single{
    display: flex;
}
.archive.post-type-archive .featured-events .event .details .event-info .event-date{
    margin-right: 2rem;
    margin-bottom: 0;
}
.archive.post-type-archive .featured-events .event .details .event-info .event-time{
    margin-right: 0rem;
    margin-bottom: 0;
}
.archive.post-type-archive .featured-events .event .summary{
    display: block;
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 162.5%;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    display: -moz-box;
    -webkit-line-clamp: 2;
    -moz-line-clamp: 2;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    overflow: hidden;
}
@media (min-width: 992px){
    .archive.post-type-archive .featured-events .event:not(.single) .row>div{
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .archive.post-type-archive .featured-events .event.single .event-info .event-time{
        display: flex;
    }
    .archive.post-type-archive .featured-events .event.single .event-thumbnail {
        padding-bottom: 0;
        margin-bottom: 0;
        height:100%;
        min-height: 163px;  
    }
    .archive.post-type-archive .featured-events .event.single .event-type{
        margin-bottom: 1.5rem;
    }
    .archive.post-type-archive .featured-events .event:not(.single) .details .event-info {
        max-width: calc(100% - 7rem);
        overflow: hidden;
        max-height: 3.4rem;
    }
}
.archive.post-type-archive .featured-events .event .event-info>div::before{
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(162deg) brightness(103%) contrast(107%);
    margin-right: 0.75rem;
}
.archive.post-type-archive .featured-events .event .event-thumbnail{
    width: 100%;
    padding-bottom: 30%;
    background-color: var(--light-grey);
    position: relative;
    margin-bottom:2rem;
    height:12.5rem;
}
.archive.post-type-archive .featured-events .event .event-thumbnail img{
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    object-fit:cover;
}
/* ARTICLE ROLES OVERVIEW PAGES */
body.search .site-main .rhs,
body.archive.category .site-main .rhs{
    margin-top: 7rem;
}
body.search .site-main .lhs,
body.archive.category .site-main .lhs{
    margin-top:6rem;
}
body.category h1{
    margin-bottom: 3rem;
}
body.category .listing-posts{
    margin-top: 0rem;
}
.bordered-title{
    font-size: 3.5rem;
    border-top: 1px solid var(--light-grey);
    border-bottom: 1px solid var(--light-grey);
    padding-top: 1.7rem;
    padding-bottom: 1.7rem;
    margin-top: 3.5rem;
    margin-bottom: 4.8rem;
    width: 100%;
    text-align: center;
    font-family: var(--heading-font);
    font-weight: normal;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* Alternative categegory template */
.cat-image-text-blocks{
    margin-top: 6.9rem;
}
.cat-image-text-blocks .row.block{
    margin-bottom: 9rem;
    margin-right: -2.4rem;
    margin-left: -2.4rem;
}
.cat-image-text-blocks .row.block > *{
    padding-right: 2.4rem;
    padding-left: 2.4rem;
}
.cat-image-text-blocks .block:nth-child(even) .col-copy{
    left: 50%;
}
.cat-image-text-blocks .block:nth-child(even) .col-image{
    right: 50%;
}
.cat-image-text-blocks .block .copy {
    border-top: 1px solid var(--pink);
    padding-top: 2.5rem;
}
.cat-image-text-blocks .block:first-child .copy {
    border-left: 1px solid var(--pink);
    border-top: none;
    padding-left: 2.5rem;
    padding-top: 0;
}
.cat-image-text-blocks .block .copy p{
    margin-bottom: 0;
}
.cat-image-text-blocks .block .copy p a{
    color:var(--purple);
}
.cat-image-text-blocks .block .copy p a:hover{
    color:var(--purple);
    text-decoration:underline;
}
.cat-image-text-blocks .block .copy h2{
    margin-top: 0;
    font-size: 4rem;
    font-family: var(--heading-font);
    font-weight: normal;
    margin-bottom: 1.5rem;
}
body.category h2.most-recent{
    font-family: var(--heading-font);
    font-weight: normal;
    text-transform: uppercase;
    font-size: 2.5rem;
}

body.category .site-main .lhs .cat-image-text-blocks {
    margin-top: 0rem;
}


/* SEARCH RESULTS PAGE */
body.search .results-area .details-area{
    display:flex;
    flex-wrap:wrap;
    justify-content: space-between;
    align-items: center;
    padding-bottom:2.4rem;
    border-bottom:1px solid var(--light-grey);
    margin-bottom:3.7rem;
}
body.search .results-area .details-area p.showing{
    font-family:var(--serif);
    font-weight:500;
    margin-bottom:1rem;
    margin-right:3rem;
}
body.search .results-area p.showing-none{
    font-family:var(--serif);
    font-weight:500;
    margin-bottom:7rem;
}
body.search .results-area .details-area .sort-by-area{
    margin-bottom:1rem;
}
body.search .results-area .details-area .sort-by-area label{
    font-family:var(--serif);
    font-weight:500;
    font-size:1.5rem;
    margin-right:0.5rem;
}
body.search .results-area .details-area .sort-by-area select {
    border: 1px solid #E1E1E1;
    font-family: var(--serif);
    font-weight: 400;
    font-size: 1.5rem;
    padding: 0.5rem 2rem 0.5rem 1rem;
    width: 18rem;
}
body.search .results-area .required-text{
    display:none;
}
body.search .results-area .navigation {
    padding-top:2rem;
    margin-bottom:9rem;
}
/*body.search .results-area .navigation .nav-links{
    padding:4rem 6rem 2rem 6rem;
    border-left:1px solid #E1E1E1;
    border-right:1px solid #E1E1E1;
    border-bottom:1px solid #E1E1E1;
}*/
body.search .results-area .navigation .nav-links .nav-previous a,
body.search .results-area .navigation .nav-links .nav-next a{
    font-size:1.5rem;
    font-weight:600;
    color:var(--purple);
    text-decoration:underline;
}
body.search .results-area .navigation .nav-links .nav-previous a:hover,
body.search .results-area .navigation .nav-links .nav-next a:hover{
    opacity:0.7;
}

.post-teaser.list .post-teaser-mini .image{
    height: 12.3rem;
    width: 19.7rem;
    margin-right: 3.2rem;
    background-size: cover;
    background-position: center;
}
.post-teaser.list .post-teaser-mini .text {
    border-top: none;
    border-left: 1px solid var(--pink);
    padding-top:0;
    padding-left: 3.2rem;
    width: calc(100% - 22.9rem);
    display:flex;
    flex-direction: column;
    justify-content: space-between;
}
.post-teaser.list .post-teaser-mini .text .bottom{
    display: flex;
}
.post-teaser.list .post-teaser-mini .text .bottom .author-names{
    display:flex;
}
.post-teaser.list .post-teaser-mini .text .bottom .author-names p{
    font-size: 1.2rem;
    color: var(--dark-grey);
    font-weight: 600;
}
.post-teaser.list .post-teaser-mini .text .bottom .author-names:after{
    content:'-';
    font-size: 1.2rem;
    color: var(--dark-grey);
    margin-bottom: 0;
    font-weight: 600;
    display:inline-block;
    margin-left:0.5rem;
    margin-right:0.5rem;
}
.post-teaser.list .post-teaser-mini .text .top{
    margin-bottom:auto;
}
.post-teaser.list .post-teaser-mini .text .date {
    font-size: 1.2rem;
}
.post-teaser.list .post-teaser-mini .post-categories{
    font-size:1.2rem;
    margin-top: 0rem;
    margin-bottom: 1rem;
    font-weight:600;
    line-height:1.3;
}


/* Authors single page */
body.single-post_author .type-post_author .rhs {
    left: 75%;
    margin-top: 5rem;
}
body.single-post_author .type-post_author .lhs {
    padding-right: 5.8rem;
    right: 25%;
}

.single-post_author .authors{
    background-color: var(--purple);
    color: var(--white);
    padding: 4rem 3.5rem 0 3.5rem;
    margin-top: 5.9rem;
    margin-bottom: 5.7rem;
}
.single-post_author .authors h1{
    color: var(--white);
    font-size:4rem;
}
.single-post_author .authors .row{
    padding-bottom: 7rem;
}
.single-post_author .authors .links{
    display: flex;
    flex-wrap:wrap;
}
.single-post_author .authors .links .social-area{
    display: flex;
}
.single-post_author .authors button{
    color: var(--white);
    background-color: var(--purple);
    border-color: var(--white);
    margin-right: 1rem;
}
.single-post_author .authors .links a:hover{
    text-decoration: none;
    opacity: 1;
}
.single-post_author .authors .links button:hover{
    background-color: var(--white);
    color: var(--purple);
}
.single-post_author .authors .links button:hover img{
    filter: invert(63%) sepia(49%) saturate(1920%) hue-rotate(235deg) brightness(93%) contrast(101%);
}
.single-post_author .authors button.social{
    width: 3.8rem;
    height: 3.8rem;
    min-width: initial;
    padding: 0.7rem;
}
.single-post_author .authors button.social img{
    filter: invert(1);
}
.single-post_author .authors .portrait{
    width:15.5rem;
    margin-right:4.5rem;
    padding-left:1.2rem;
    padding-right:0;
}
.single-post_author .authors .image{
    border-radius: 50%;
    width: 100%;
    padding-bottom: 100%;
    background-position: center;
    background-size: cover;
}
.single-post_author .authors .info{
    width:calc(100% - 20rem);
    padding-left:3rem;
    padding-right:1.2rem;
    border-left: 1px var(--white) solid;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.single-post_author .authors .info h4{
    font-size: 1.8rem;
    font-weight: 800;
    margin-top:0;
    color: var(--white);
}
.single-post_author .authors .info p{
    font-size: 1.6rem;
    margin-top:0;
    color: var(--white);
}
.single-post_author .authors .info p a{
    color: var(--white);
    text-decoration: underline;
}
.single-post_author .authors .info p:last-child{
    margin-bottom:0;
}
.single-post_author .authors .info .body{
    font-size: 1.5rem;
    padding-bottom: 1.5rem;
}
.single-post_author .author-post h2{
    font-family: var(--heading-font);
    font-weight: normal;
    text-transform: uppercase;
    font-size: 2.5rem;
    margin-bottom: 5.3rem;
}

/* Contact us page */
body.page-template-default .site-main .rhs{
    left:75%;
    margin-top:5rem;
}
body.page-template-default .site-main .rhs{
    margin-top:7.3rem;
}
body.page-template-default .rhs>.inner{
    width:100%;
    height:100%;
    max-width:30rem;
    margin-left:auto;
}
.ad-surround broadstreet-zone-container{
   margin-bottom: 2rem;
}
#last-ads{
    height: 100%;
}
body.page-template-default .site-main .lhs{
    padding-right:5.8rem;
    right:25%;
}
body.page-template-default .site-main .lhs header > .row > .col-md-6{
    width:100%;
    flex: 0 0 100%;
    max-width:100%;
}


body.page-template-default .entry-header {
    margin-top: 7.3rem;
    border-left: 1px solid var(--pink);
    padding-left: 3.2rem;
    margin-bottom: 7.7rem;
}
.contact-form {
    margin-top: 0rem;
    border-left: 1px solid var(--pink);
    padding-left: 3.2rem;
    margin-bottom: 9.5rem !important;
}
.contact-form h2.title{
    font-size: 4rem;
    font-family: var(--heading-font);
    font-weight: normal;
    letter-spacing: 0.02em;
    color: var(--dark-grey);
    margin-top:0;
    margin-bottom: 3rem;
}
.contact-form form input[type="text"], .contact-form form input[type="email"], .contact-form form select{
    width: 100%;
    border-radius: 0;
    outline: none;
    padding: 0rem 1rem;
    border-color: var(--grey);
    color: var(--black);
    min-height:3.6rem;
}
.contact-form form input[type="text"]:focus, .contact-form form input[type="email"]:focus{
    outline: 1px var(--purple) solid;
}
article .contact-form form .row p{
    margin-bottom:1.5rem;
}
.contact-form form textarea{
    width: 100%;
    border-radius: 0;
    outline: none;
    padding: 0.6rem 1rem;
    border-color: var(--grey);
}
.contact-form form textarea:focus{
    outline: 1px var(--purple) solid;
}
.contact-form form .wpcf7-not-valid-tip{
    color: var(--purple);
}
.contact-form form input[type="submit"]{
    min-width: 15rem;
    width: auto;
    min-height: 3.6rem;
    height: auto;
    border: 2px var(--purple) solid;
    font-size: 1.3rem;
    color: var(--white);
    outline: none;
    margin-top: 1.5rem;
    outline: none !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 3rem;
    font-weight: 500;
    line-height: 1.3;
    background-color: var(--purple);
    border-radius: 0;
    float: right;
}
.contact-form form input[type="submit"]:hover{
    border: 2px var(--dark-grey) solid;
    color: var(--white);
    background-color: var(--dark-grey);
}
.contact-form form span.wpcf7-checkbox label{
    display:flex;
    align-items:start;
}
.contact-form form span.wpcf7-checkbox label input{
    width:1.7rem;
    height:1.7rem;
    margin-right:1rem;
    top: 0.3rem;
    position: relative;
}
.contact-form form span.wpcf7-checkbox label span.wpcf7-list-item-label{
    font-size:1.3rem;
}
article .contact-form form .submit-area p,
article .contact-form form .checkbox-area p{
    margin-bottom:0;
}
.contacts {
    margin-top: 7.3rem;
    border-left: 1px solid var(--pink);
    padding-left: 3.2rem;
    margin-bottom: 17rem !important;
}
.contacts h2.title{
    font-size: 4rem;
    font-family: var(--heading-font);
    font-weight: normal;
    letter-spacing: 0.02em;
    color: var(--dark-grey);
    margin-bottom: 3rem;
}
.contacts .email{
    margin-bottom: 2rem;
}
.contacts .email a{
    font-size: 1.6rem;
    text-decoration: underline;
    color: inherit;
}
.contacts .address{
    font-size: 1.6rem;
}
.info-blocks{
    display:flex;
    flex-wrap:wrap;
    align-items: flex-start;
}
.info-blocks .block {
    margin-top: 0rem;
    border-left: 1px solid var(--pink);
    padding-left: 3.2rem;
    margin-bottom: 6.9rem;
    padding-right: 6rem;
}
.info-blocks h2 {
    font-size: 4rem !important;
    font-family: var(--heading-font);
    font-weight: normal;
    letter-spacing: 0.02em;
    color: var(--dark-grey);
    margin-bottom: 3rem !important;
    margin-top: 0 !important;
}

.wpcf7 form .wpcf7-response-output {
    margin: 3rem 0 3rem 0;
    padding: 2rem 3rem;
    border: var(--pink) !important;
    background-color: var(--pink) !important;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
}

.wpcf7 form.wpcf7-form.sent .wpcf7-response-output {
    max-width: calc(100% - 7.2rem);
}

/* 404 PAGE */
body.error404 header#masthead,
body.error404 footer#colophon{
    display:none;
}
body.error404 main#primary{
    min-height: 100svh;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}
body.error404 main#primary header{
    position:relative;
}
body.error404 main#primary header h1{
    font-size: 30rem;
    text-align: center;
    /* font-size: 34vw; */
    padding-right: 20rem;
    line-height: 1.05;
    margin-bottom:0;
    position:relative;
    z-index:10;
}
body.error404 main#primary header .fifty-fifty{
    position:absolute;
    width:50%;
    height: 100rem;
    background-color: #eaeaea;
    top: 0;
    z-index: 0;
}
body.error404 main#primary header .copy{
    position:relative;
    z-index:10;
    border-left: 1px solid var(--pink);
    padding-left: 3.2rem;
    left: 48.5%;
    display: inline-block;
    margin-bottom: 9rem;
}
body.error404 main#primary header .copy h2{
    font-size:5rem;
    font-family:var(--heading-font);
    font-weight: normal;
    color:var(--dark-grey);
}
body.error404 main#primary header .copy p{
    color:var(--dark-grey);
}
body.error404 main#primary header .copy a.button{
    min-width: auto;
    width: auto;
    min-height: 3.6rem;
    height: auto;
    border: 2px var(--purple) solid;
    font-size: 1.3rem;
    color: var(--white);
    outline: none;
    margin-top: 1.5rem;
    outline: none !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 3rem;
    font-weight: 500;
    line-height: 1.3;
    background-color: var(--purple);
    display: inline-block;
}


/* Write for us */

.full-size-image-container{
    position: fixed;
    width: 100%;
    height: 100%;
    background: black;
    z-index: 100000;
    cursor: zoom-out;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.full-size-image-container>img{
    max-width: 100%;
    max-height: 100%;
}
.post-teaser-mini .event-info{
    margin-bottom: 0;
}
.square-button.social img{
    max-width: 2rem;
}
.post-sponsor{
    font-size: 1.4rem;
    color: var(--purple);
    font-weight: 700;
    margin-bottom: 4.5rem;
}
.post-sponsor a{
    text-decoration: underline;
}
.sponsor-author{
    font-size: 1.4rem;
    margin-bottom: 4.5rem;
}
.sponsor-author .name{
    font-weight: 600;
    margin-bottom: 0.4rem;
}


form.write-for-us{
    padding-top:10rem;
    margin-top:-10rem;
}
.sfb-form-stsrt .hide{
    display: none;
}
.sfb-form-stsrt .form-indicator{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
}
.sfb-form-stsrt .first-circle,.sfb-form-stsrt .second-circle, .sfb-form-stsrt .third-circle {
    width: 4rem;
    height: 4rem;
    border-width: 2px;
    border-style: solid;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    border-color: var(--grey);
    color: var(--grey);
    font-family: var(--heading-font);
    font-weight: normal;
    font-size: 2.1rem;
}
.sfb-form-stsrt .first-circle.fill,.sfb-form-stsrt .second-circle.fill, .sfb-form-stsrt .third-circle.fill, .sfb-form-stsrt .first-circle{
    border-color: var(--purple);
    color: var(--purple);
}
.first-circle.active, .second-circle.active, .third-circle.active{
    background-color: var(--purple);
    color: var(--white) !important;
}
.sfb-form-stsrt .line {
    width: 100%;
    height: var(--e-form-steps-divider-width);
    background-color: transparent;
    border: 1px solid var(--light-grey);
    margin: 0 10px!important;
}
.sfb-new-form, .sfb-third-form, .sfb-second-form {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    flex-direction: column;
    padding-bottom:9rem;
}
.sfb-new-form .sfb-field, .sfb-second-form .second-field, .sfb-third-form .third-field, .sfb-second-form .second-text, .sfb-field.second-select{
    width: 100%;
    border-radius: 0;
    outline: none;
    padding: 0rem 1rem;
    border-color: var(--grey);
    color: var(--black);
    min-height: 3.6rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}
.cat-title{
    margin-bottom: 5px !important;
    margin-top: 5px !important;
    margin-right: auto;
    font-size: 1.3rem !important;
    font-weight: 300;
    line-height: 1.3em;
    color: #888888 !important;
    font-family: 'Chivo', Sans-serif;
}
.sfb-new-form a#first-next, .sfb-second-form .btn-form_part a#second-next, .sfb-third-form .pre-submit #last-submit{
    min-width: 15rem;
    width: auto;
    min-height: 3.6rem;
    height: auto;
    border: 2px var(--purple) solid;
    font-size: 1.3rem;
    color: var(--white);
    outline: none;
    margin-top: 1.5rem;
    outline: none !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 3rem;
    font-weight: 500;
    line-height: 1.3;
    background-color: var(--purple);
    border-radius: 0;
    float: right;
}
.sfb-second-form .btn-form_part a#first-prev, .sfb-third-form .pre-submit a#second-prev{
    min-width: 15rem;
    width: auto;
    min-height: 3.6rem;
    height: auto;
    border: 2px var(--dark-grey) solid;
    font-size: 1.3rem;
    color: var(--white);
    outline: none;
    margin-top: 1.5rem;
    outline: none !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 3rem;
    font-weight: 500;
    line-height: 1.3;
    background-color: var(--dark-grey);
    border-radius: 0;
    margin-right: 2rem;
}
.sfb-form-stsrt span.error{
    color: var(--pink);
    font-size: 1.2rem;
    margin-top: -1rem;
    margin-bottom: 1rem;
}
.btn-form_part, .pre-submit {
    display: flex;
}
.sfb-new-form .sfb-field, .sfb-second-form .second-field, .sfb-third-form .third-field, .sfb-second-form .second-text, .sfb-field.second-select{
    padding: 0.5rem;
}
.Check_boxPart{
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    margin-top: 1rem;
}
.Check_boxPart .guest-check{
    margin-bottom: 0;
    margin-top: 0;
    margin-left: 0.5rem;
    font-size: 1.5rem;
    font-weight: 400;
}

/* Search pagination */
.search-results .pagination {
    justify-content: center;
}
.search-results .pagination .nav-links{
    display:flex;
    flex-wrap: wrap;
}
.search-results .pagination .nav-links a::after{
    display:none;
}
.search-results .pagination .nav-links span.dots,
.search-results .pagination .nav-links span.current,
.search-results .pagination .nav-links a{
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--dark-grey);
    padding-left:0rem;
    padding-right:0rem;
    display:flex;
    justify-content:center;
    align-items:center;
    width:2.2rem;
    height:2.2rem;
    line-height:0;
    letter-spacing: 0;
}
.search-results .pagination .nav-links span.current{
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--white);
    background-color: var(--purple);
}
.search-results .pagination .nav-links span.dots{
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--dark-grey);
}
.search-results .pagination .nav-links a.prev,
.search-results .pagination .nav-links a.next{
    color:transparent;
}
.search-results .pagination .nav-links a.prev{
    background-image:url('../images/pagination_arrow_left.svg');
    background-size:0.7rem auto;
    background-position:center left;
    background-repeat:no-repeat;
    text-indent: -9999px;
    overflow: hidden;
}
.search-results .pagination .nav-links a.prev:hover{
    background-image:url('../images/pagination_arrow_left_purple.svg');
    color:transparent;
}
.search-results .pagination .nav-links a.next{
    background-image:url('../images/pagination_arrow_right.svg');
    background-size:0.8rem auto;
    background-position:center right;
    background-repeat:no-repeat;
    text-indent: -9999px;
    overflow: hidden;
}
.search-results .pagination .nav-links a.next:hover{
    background-image:url('../images/pagination_arrow_right_purple.svg');
    color:transparent;
}
.search-results .pagination .nav-links a:hover{
    color: var(--purple);
}



input:-internal-autofill-selected {
    background-color: #ffffff !important;
}

/* SFB ACCORDION BLOCK */
.sfb-accordions .accordion{
    margin-bottom: 1.5rem;
}
.sfb-accordions .purple .title{
    background-color: var(--purple);
}
.sfb-accordions .grey .title{
    background-color: var(--dark-grey);
}
.sfb-accordions .title{
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 600;  
    display:block;
    position: relative;
    padding-right: 7rem;
    padding-left: 3rem;
    line-height: 1.2;
    padding-bottom: 2rem;
    padding-top: 2rem;
}
.sfb-accordions .title::after{
    content: '+';
    width: auto;
    height: auto;
    position: absolute;
    right: 3rem;
    top: 0.9rem;
    transition: all 0.5s;
    font-size: 3rem;
    font-weight: 200;
}
.sfb-accordions .title.active::after{
    content: '-';
}
.sfb-accordions {
    margin-top: 4rem;
    margin-bottom: 6rem;
}
.sfb-accordions .copy{
    display: none;
    padding: 3rem 3rem 1.5rem 3rem;
}
.sfb-accordions .copy p{
    margin: 0;
}
article .entry-content .sfb-accordions .copy p + ul {
    margin-top: 3rem;
}
.page .sfb-accordions{
    margin-bottom: 9rem !important;
    padding-bottom: 0;
}
.page .sfb-accordions :is(h2, h3){
    margin-top: 2rem;
}
/* BLACK FRIDAY POPUP */
.bf-popup-container{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.9);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none; 
}
.bf-popup-container .bf-popup{
    position: relative;
    max-width: calc(100% - 30px);
    width: 76.8rem;
    height: auto;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: start;
    /* padding: 4.2rem 0rem 5.6rem 6rem; */
    max-height: 91vh;
}
.bf-popup-container .bf-popup .pop-up-image{
    width: 100%;
    overflow-y: auto;
}
.bf-popup-container .bf-popup #close-popup{
    color: var(--black);
    position: absolute;
    top: -1.4rem;
    right: -1.4rem;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 0.8;
    width: 3.2rem;
    border-radius: 50%;
    height: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
}
.bf-popup-container .bf-popup #close-popup:hover{
/*    opacity:0.7;*/
    -webkit-text-fill-color: white;
    -webkit-text-stroke: 2px black;
    color:white;
}
.bf-popup-container .bf-popup .top{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items:end;
}
.bf-popup-container .bf-popup .top .logo{
    width: 13.2rem;
    height:3.5rem;
    background-image:url('/wp-content/uploads/2023/07/logo.svg');
    background-size:contain;
    background-position:center left;
    background-repeat: no-repeat;
}
.bf-popup-container .bf-popup .top p{
    font-weight: 700;
    color: var(--purple);
    text-transform: uppercase;
    font-size: 1.6rem;
    letter-spacing:0.06em;
    padding: 0rem 0rem 0rem 0rem;
    margin-bottom: 0;
    line-height: 1.2;
    position:relative;
    line-height: 0.8;
    margin-right:56px;
}
.bf-popup-container .bf-popup h3.title{
    font-size:8.7rem;
    letter-spacing:0.01em;
    color:var(--black);
    text-transform:uppercase;
    line-height:1;
    font-weight:900;
    position:relative;
    left:-3px;
    margin-top:1.2rem;
    margin-bottom: 0;
}
.bf-popup-container .bf-popup h2.deal{
    font-size: 16rem;
    color: var(--purple);
    letter-spacing: -0.05em;
    text-transform: uppercase;
    line-height: 1;
    font-weight: 900;
    position: relative;
    left: -9px;
    margin-top: 7px;
    margin-bottom: 0;
}
.bf-popup-container .bf-popup h3.subject{
    font-size:9.3rem;
    color:var(--purple);
    text-transform:uppercase;
    line-height:1;
    font-weight:900;
    position:relative;
    left:-3px;
    margin-top:-6px;
    margin-bottom: 30px;
}
.bf-popup-container .bf-popup .bf-popup-button{
    font-size: 2.1rem;
    font-weight:700;
    letter-spacing:0.01em;
    color:var(--white);
    background-color:var(--pink);
    padding: 2rem 6rem;
}
.bf-popup-container .bf-popup .bf-popup-button:hover{
    background-color:var(--black);
}

/* NEWSLETTER */
body.page-template-default .newsletter-page .entry-header{
    border-left: none;
    padding-left: 0;
    margin-top: 4.8rem;
    margin-bottom: 1rem;
}
body.page-template-default .newsletter-page .entry-header h1{
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 90%; /* 57.6px */
    letter-spacing: 0.64px;
    font-size: 6.4rem;
    text-align: center;
}
body.page-template-default .newsletter-page .entry-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10.5rem;
}
.newsletters{
    margin-top: 4rem;
    margin-bottom: 15rem !important;
}
.newsletters .row{
    row-gap: 4.4rem;
}
.newsletters-form-slim{
    max-width: 43.5rem;
}
.newsletters-form-slim p{
    margin-bottom: 0 !important;
}
.newsletters-form-slim .privacy p{
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 120%;
    margin-bottom: 0;
    margin-top: 1.2rem;
    text-align: center;
}
.newsletters-form-slim .privacy a {
    text-decoration: none;
}
.newsletters-form-slim .email-container p span[data-name="your-email"]{
    width: 100%;
}
.newsletters-form-slim .email-container p input[type="email"]{
    width: 100%;
    border: 1px solid #D4D4D4;
    border-radius: 0;
    font-size: 1.3rem;
    padding: 1rem 1.2rem;
    outline: 0;
    height: 3.6rem;
}
.newsletters-form-slim .email-container p input[type="submit"]{
    background-color: var(--purple);
    border-radius: 0;
    border: 1px solid var(--purple);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    height: 3.6rem;
    width: 100%;
    margin-top: 0.8rem;
    padding: 0;
}
.newsletters-form-slim .email-container p input[type="submit"]:hover{
    border-color: var(--black);
    background-color: var(--black);
    cursor: pointer;
}
.newsletters-form-slim .wpcf7-spinner{
    position: absolute;
}
.newsletters-form-slim .email-container br{
    display: none;
}
.newsletter-page + .site-footer .purple-section .container .newsletter{
    display: none;
}
.newsletter-page + .site-footer .purple-section .container{
    justify-content: flex-end;
}
#site-navigation{
    z-index: 99;
}
.newsletters-form-slim .wpcf7 form{
    position: relative;
}
.newsletters-form-slim .wpcf7 form.init .wpcf7-response-output{
    display: none !important;
    opacity: 0;
}
.newsletters-form-slim .wpcf7 form .wpcf7-response-output{
    opacity: 0;
    position: absolute;
    top: 4.4rem;
    left: 0;
    font-size: 1.6rem;
    width: 100%;
    min-width: 100%;
    padding: 0;
    margin: 0;
    height: 3.6rem;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--black) !important;
    color: var(--white);
    font-weight: 700;
    text-transform: none;
    transition: opacity 0.5s;
}
.newsletters-form-slim .wpcf7 form.sent input[type="submit"]{
    color: var(--purple);
    transition: none;
}
.newsletters-form-slim .wpcf7 form.sent .wpcf7-response-output{
    opacity: 1;
}
#close-thank-you-msg{
    line-height: 90%;
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    font-size: 1.2rem;
    cursor: pointer;
}

/* NEWSFEED SECTION */
.newsfeed-section{
    background-color: #F5F5F5;
    padding: 1.2rem 0;
}
.newsfeed-swiper {
    width: 100%;
    user-select: none;
}
.newsfeed-swiper .swiper-wrapper{
    transition-timing-function: linear !important;
}
.newsfeed-swiper .swiper-slide{
    width: auto;
    /* width: 40rem; */
    height: 5.35rem;
    overflow: hidden;
}
.newsfeed-section .post{
    padding: 0.8rem;
    border-radius: 8px;
    background-color: var(--white);
}
.newsfeed-section .newsfeed-mobile .post{
    width: 100%;
}
.newsfeed-section .post .title{
    color: var(--black);
    font-size: 1.3rem;
    font-weight: 600;
    /* width: 38.4rem; */
    max-width: 38.4rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.newsfeed-section .newsfeed-mobile .post .title{
    width: 100%;
}
.newsfeed-section .post .cat{
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.50);
    display: flex;
}
.newsfeed-section .post .cat::before{
    content: '';
    width: 1.6rem;
    height: 1.6rem;
    margin-right: 0.4rem;
    background-size: contain;
    background-position: left center;
}
.newsfeed-section .post .cat.articles::before{
    background-image: url(../images/blog-icon.svg);
}
.newsfeed-section .post .cat.webinar::before{
    background-image: url(../images/broadcast-icon.svg);
}
.newsfeed-section .post .cat.event::before{
    background-image: url(../images/event-icon.svg);
}
.newsfeed-section .post .cat.report::before{
    background-image: url(../images/report-icon.svg);
}
.newsfeed-section .post .cat.podcast::before{
    background-image: url(../images/podcast-icon.svg);
}
.newsfeed-section .post .cat.video::before{
    background-image: url(../images/video-icon.svg);
}
@media only screen and (max-width: 767px){
    .newsletter-page .newsletters .row{
        row-gap: 3rem;
    }
    body.page-template-default .newsletter-page .entry-header h1{
        font-size: 4rem;
    }
    .newsletter-page .intro-copy h2{
        font-size: 1.8rem;
        font-style: normal;
        font-weight: 700;
        margin-top: 0;
        margin-bottom: 0;
    }
    .newsletter-page .entry-content .newsletters{
        margin-bottom: 0 !important;
        padding-bottom: 3rem;
        margin-top: 3rem;
    }
    .newsletter-page .entry-content .newsletters-form{
        width: calc(100% + 3rem);
        margin-left: -1.5rem;
        background-color: var(--dark-grey);
        border: none;
        position: sticky;
        top: 6.1rem;
        z-index: 99;
    }
    .logged-in .newsletter-page .entry-content .newsletters-form{
        top: calc(6.1rem + 35px);
    }
    .newsletter-page .entry-content .newsletters-form .row{
        row-gap: 1.5rem;
    }
    .newsletters-form .email-container p{
        flex-direction: column;
        row-gap: .5rem;
    }
    #select-all-newsletter label{
        color: var(--white);
    }
    .newsletters-form .privacy p{
        color: var(--white);
    }
    .newsletter-page .newsletters .newsletter{
        margin: 0;
    }
    .newsletters .newsletter.active{
        background-color: var(--dark-grey);
        color: var(--white);
    }
    .newsletters .newsletter.active .copy{
        color: var(--white);
    }
    .newsletters .newsletter.active .inner .frequency{
        color: var(--white);
    }
    .newsletters .newsletter.active .inner .frequency::before{
        filter: brightness(0) saturate(100%) invert(100%) sepia(12%) saturate(6730%) hue-rotate(287deg) brightness(114%) contrast(105%);
    }
    .newsletter-page .newsletters .newsletter .inner{
        padding: 1.5rem;
    }
    .newsletter-page .newsletters .newsletter .title{
        position: relative;
        top: auto;
        left: auto;
        padding: 0;
        margin: 0;
        flex-direction: row-reverse;
        background-color: transparent;
        font-size: 1.5rem;
    }
    .newsletters .newsletter.active .title span {
        color: #D4D4D4;
    }
    .newsletter-page .newsletters .newsletter .title .checkbox{
        margin-right: 0;
        margin-left: 1rem;
    }
    .newsletter-page .newsletters .newsletter .bottom{
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
}
@media only screen and (max-width: 850px) {
    .post-teaser .time-zones-select{
        pointer-events: none;
        border: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        margin-left: 0.5rem;      
        background-color: white;  
    }
    .bf-popup-container .bf-popup {
        max-width: calc(100% - 9vw);
        /* padding: 5.2vw 0rem 6.6vw 6.5vw; */
        max-height: 95vh;
    }
    .bf-popup-container .bf-popup .pop-up-image img{
        width: 100%;
    }
    .bf-popup-container .bf-popup .top p {
        font-size: 1.85vw;
        margin-right: 6.4vw;
    }
    .bf-popup-container .bf-popup h3.title {
        font-size: 10.18vw;
        letter-spacing: 0.01em;
        left: -0.4vw;
        margin-top: 1.5vw;
    }
    .bf-popup-container .bf-popup h2.deal {
        font-size: 18.5vw;
        left: -1vw;
        margin-top: 1vw;
    }
    .bf-popup-container .bf-popup h3.subject {
        font-size: 10.8vw;
        left: -0.4vw;
        margin-top: -0.6vw;
        margin-bottom: 3.5vw;
    }
    .bf-popup-container .bf-popup .bf-popup-button {
        font-size: 2.5vw;
        padding: 2.6vw 7.2vw;
    }

}
@media only screen and (max-width: 767px) and (orientation:portrait) {

    .bf-popup-container .bf-popup .top {
        display: block;
    }
    .bf-popup-container .bf-popup .top .logo {
        margin-bottom: 6vw;
    }
    .bf-popup-container .bf-popup .top p {
        font-size: 4vw;
        margin-right: 0;
    }
    .bf-popup-container .bf-popup h3.title {
        font-size: 22vw;
        margin-top: 2.5vw;
        line-height: 0.9;
    }
    .bf-popup-container .bf-popup h3.title span{
        font-size: 20.6vw;
    }
    .bf-popup-container .bf-popup h2.deal {
        margin-top: 2vw;
    }
    .bf-popup-container .bf-popup h3.subject {
        font-size: 10.8vw;
        left: -0.4vw;
        margin-top: -0.6vw;
        margin-bottom: 7.5vw;
    }
    .bf-popup-container .bf-popup .bf-popup-button {
        font-size: 4.5vw;
        padding: 3.6vw 0vw;
        width: calc(100% - 6.5vw);
        text-align: center;
    }

}



/* MEDIA QUERIES */

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

    /* Featured posts */
    .listing-posts .post-container.row {
        margin-right: -2rem;
        margin-left: -2rem;
    }
    .listing-posts .post-container.row .post-teaser{
        padding-right: 2rem;
        padding-left: 2rem;
    }
    .trending-posts .post-container.row {
        margin: 0;
    }

    /* Homepage - Get more section */
    article .entry-content .get-more-section .newsletter,
    article .entry-content .get-more-section .social-container,
    article .entry-content .get-more-section h3{
        width:100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    article .entry-content .get-more-section .social-container{
        margin-top:2rem;
    }
    /* Homepage - Get more section */
    article .entry-content .get-more-section .newsletter,
    article .entry-content .get-more-section .social-container,
    article .entry-content .get-more-section h3{
        width:100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    article .entry-content .get-more-section .social-container{
        margin-top:2rem;
    }
    .get-more-section .newsletter form>p {
        display: flex;
        flex-wrap:wrap;
        align-items:center;
    }
    .get-more-section .newsletter form>p>span {
        width:100%;
    }
    .get-more-section .newsletter form .wpcf7-email {
        margin: auto;
        display: block;
        width:100%;
    }
    .get-more-section .newsletter form{
        display: block;
    }
    .get-more-section .newsletter form .wpcf7-not-valid-tip{
        justify-content: center;
    }
    .get-more-section .newsletter .newsletter-privacy-policy p{
        text-align: center;
    }
    .get-more-section .newsletter form .wpcf7-submit {
        margin-left: auto;
        margin-right: auto;
        margin-top:1rem;
    }
    .get-more-section .newsletter form .wpcf7-spinner {
        display:none;
    }
    .get-more-section .newsletter form .wpcf7-not-valid-tip {
        text-align: center;
    }
    .get-more-section .newsletter .wpcf7 form.invalid .wpcf7-response-output {
        display: flex;
        justify-content: center;
        margin-top: 1rem;
    }
    .get-more-section .wpcf7 form.wpcf7-form.sent .wpcf7-response-output {
        max-width: 100%;
        margin-bottom:0;
        display:flex;
        justify-content: center;
    }

}


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

    .container-fluid,
    .container {
        padding-left: 6rem;
        padding-right: 6rem;
    }
    
    .menu-burger-menu-container ul#burger-menu {
        padding-left: 6rem;
        padding-right: 6rem;
    }

    .menu-login-menu-container {
        right: 6rem;
    }
    .menu-login-menu-container #login-menu ul {
        width: 14.5rem;
    }

    /* ARCHIVE OVERVIEW PAGE */
    .post-container .post-teaser.full-size .post-teaser-img {
        width: 50%;
        left: 50%;
        position: relative;
        padding-bottom: 33%;
    }
    .post-container .post-teaser.full-size .summary-container {
        width: 50%;
        right: 50%;
        padding-right:3rem;
        position: relative;
    }

    .swiper-testimonials .testimonial {
        padding-left: 6rem;
        padding-right: 6rem;
    }

    /* 404 PAGE */
    /*body.error404 main#primary header h1 {
        font-size: 35.8vw;
        padding-right: 14.32vw;
    }*/

}


@media only screen and (min-width: 1351px) {  

    .archive.post-type-archive .filters .form-submit input {
        margin-right: 8.3rem;
        width: 15.8rem;
    }

}


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

    .wp-block-search__inside-wrapper {
        width: 27rem;
    }
    .menu-login-menu-container {
        width: 6rem;
    }
    /*.menu-login-menu-container #login-menu #menu-item-80 {
        background-position: center !important;
    }*/
    .menu-login-menu-container #login-menu ul {
        width: 12rem;
    }
    .menu-login-menu-container #login-menu ul li a {
        font-size: 1.3rem;
    }
    #ceiling-menu li {
        list-style: none;
        width: 10rem;
    }
    /*.menu-login-menu-container #login-menu #menu-item-80:hover > ul, .menu-login-menu-container #login-menu #menu-item-80.focus > ul {
        left: auto;
    }*/

    .fixed-nav #purple-fixed-menu>li {
        padding-left: 4rem;
        font-size:1.4rem;
    }
    .fixed-nav #featured-fixed-menu>li {
        margin-left: 2.4rem;
        font-size: 1.4rem;
    }
    .fixed-nav .scroll .wp-block-search__button {
        margin-left: 0rem;
    }
    .site-footer .purple-section .container .newsletter form .wpcf7-email {
        max-width: 40rem;
    }

}


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

    .homepage-post .post-container .post-teaser.post-teaser-special:nth-of-type(4n+1){
        width:53%;
        margin-right:6%;
    }
    .homepage-post .post-container .post-teaser.post-teaser-special:nth-of-type(4n+2){
        width:41%;
    }
    .homepage-post .post-container .post-teaser.post-teaser-special:nth-of-type(4n+3){
        width:41%;
    }
    .homepage-post .post-container .post-teaser.post-teaser-special:nth-of-type(4n+4){
        width:53%;
        margin-left:6%;
    }
    
    /* FOOTER */
    .site-footer .purple-section .container {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .site-footer .purple-section .container .newsletter {
        justify-content: center;
        margin-bottom: 2rem;
        width: 100%;
    }
    .site-footer .purple-section .container .social-container {
        display: flex;
        /* align-items: center; */
        justify-content: center;
        width: 100%;
    }
    .site-footer .footer-navigation .inner .hamburger-menu-footer{
        display:none;
    }
    .site-footer .purple-section .container .newsletter {
        width:100%;
        margin-bottom:1.3rem;
        justify-content: center;
    }
    .site-footer .purple-section h2 {
        min-width: 13rem;
    }

}


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

    /* Featured posts */
    .listing-posts .post-container.row {
        margin-right: -1.2rem;
        margin-left: -1.2rem;
    }
    .listing-posts .post-container.row .post-teaser{
        padding-right: 1.2rem;
        padding-left: 1.2rem;
    }


    /* Single post */
    .single .entry-content .authors .portrait {
        width: 13.5rem;
        margin-right: 3rem;
    }
    .single .entry-content .authors .info {
        width: calc(100% - 16.5rem);
    }


    /* QUIZ */
    .sf-ben-quiz .ays-quiz-questions-nav-wrap a.ays_questions_nav_question {
        width: 4.2rem;
        height: 5rem;
        min-width: 4.2rem;
    }


    .swiper-testimonials .testimonial {
        padding-left: 0rem;
        padding-right: 0rem;
    }


}


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

    .fixed-nav #purple-fixed-menu>li {
        padding-left: 2.4rem;
        font-size:1.3rem;
    }
    .fixed-nav #featured-fixed-menu>li {
        margin-left: 1.4rem !important;
        font-size: 1.3rem;
    }
    .top-header.scroll #featured-fixed-menu li a{
        padding: 0 1.3rem;
    }
}


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

    .fixed-nav #purple-fixed-menu>li {
        padding-left: 1.4rem;
        font-size:1.2rem;
    }
    .fixed-nav #featured-fixed-menu>li {
        font-size: 1.2rem;
    }

}

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

    .container-fluid,
    .container {
        padding-left: 4.5rem;
        padding-right: 4.5rem;
    }

    .menu-login-menu-container {
        right: 4.5rem;
    }
    #site-navigation #purple-menu>li:not(:first-of-type) {
        padding-left: 4.5rem;
    }
    .wp-block-search__inside-wrapper {
        width: 22rem;
    }

    /* HOMEPAGE */
    body.home .entry-content .rhs{
        left: 0%;
        margin-top: 4.5rem;
        max-width: 100%;
    }
    body.home .entry-content .rhs>.inner{
        width:100%;
    }
    .homepage-post {
        margin-top: 3.9rem;
    }
    body.home .entry-content .rhs .inner .upcoming-event{
        display:none;
    }
    body.home .entry-content .rhs .inner .trending-posts{
        display:none;
    }
    body.home .entry-content .lhs{
        padding-right: 1.2rem;
        right: 0%;
    }
    .wpcf7 form.wpcf7-form.sent .wpcf7-response-output {
        max-width: 100%;
        text-align: center;
    }

    /* SINGLE POST */
    body.search .site-main .rhs,
    body.page-template-default .site-main .rhs,
    body.archive.category .site-main .rhs,
    body.single-post_author .type-post_author .rhs,
    body.single-event article.type-event .rhs,
    body.post-type-archive-event .events-page-container .rhs,
    body.single article.type-post .rhs,
    body.page-template-flexible-layout .site-main .rhs {
        left: 0%;
        display:none;
    }
    body.search .site-main .rhs,
    body.archive.category .site-main .rhs {
        margin-top: 5rem;
    }
    body.search .site-main .lhs,
    body.archive.category .site-main .lhs {
        margin-top: 5rem;
        right: 0%;
        padding-right: 1.2rem;
    }
    body.search .site-main .lhs,
    body.page-template-default .site-main .lhs,
    body.archive.category .lhs,
    body.single-post_author .type-post_author .lhs,
    body.single-event article.type-event .lhs,
    body.post-type-archive-event .events-page-container .lhs,
    /* body.single article.type-post .lhs, */
    body.page-template-flexible-layout .site-main .lhs {
        padding-right: 1.2rem;
        right: 0%;
    }
    body.search .site-main .rhs>.inner,
    body.page-template-default .rhs>.inner,
    body.archive.category .rhs>.inner,
    body.single-post_author article.post_author .rhs>.inner,
    body.single-event article.type-event .rhs>.inner,
    body.post-type-archive-event .events-page-container .rhs>.inner, 
    body.single article.type-post .rhs>.inner,
    body.page-template-flexible-layout .site-main .rhs>.inner{
        max-width: 100%;
    }
    .more-like-this-container .lhs {
        padding-right: 1.2rem;
    }

    /* FLEXIBLE CONTENT OVERVIEW */
    body.page-template-flexible-layout .site-main .rhs {
        margin-top: 4.5rem;
    }
    body.page-template-flexible-layout .entry-header {
        margin-top: 4.5rem;
        border-left: 1px solid var(--pink);
        padding-left: 3.2rem;
        margin-bottom: 5.5rem;
    }
    .image-text-section {
        margin-top: 5.5rem;
    }

    /* CERTIFICATION PAGE */
    .certifications-section .category-content .certification-container {
        margin-right: -1rem;
        margin-left: -1rem;
    }
    .certifications-section .certification {
        padding: 0 1rem;
    }
    /* EVENTS OVERVIEW PAGE */
    .archive.post-type-archive .featured-events .event .inner{
        height: auto;
    }
    .archive.post-type-archive .featured-events .event:not(:last-of-type){
        margin-bottom: 2.4rem;
    }
    .archive.post-type-archive .featured-events .event>a {
        max-width: 100%;
    }
    .archive.post-type-archive .featured-events .event .event-thumbnail{
        height:100%;
    }
    .archive.post-type-archive .featured-events .event .top.top-single {
        display: flex;
        position:relative;
    }
    .archive.post-type-archive .featured-events .event .details .event-info {
        position: relative;
        bottom: 0rem;
    }
    .archive.post-type-archive .featured-events .event .top.top-multiple {
        display: none;
    }
    /*.archive.post-type-archive .featured-events .event .event-info{
        flex-direction: column;
    }*/
    .archive.post-type-archive .featured-events .event .event-copy .event-info{
        flex-direction: row;
    }
    .archive.post-type-archive .filters .filter-input {
        margin-bottom:1rem;
    }
    .archive.post-type-archive .filters .filter-input label {
        min-width: 7rem;
    }
    .archive.post-type-archive .filters .filter-input input,
    .archive.post-type-archive .filters .filter-input select {
        width:calc(100% - 7rem);
        max-width: none;
    }
    .archive.post-type-archive .filters .form-submit input {
        width: calc(100% - 7rem);
    }
    /* EVENT SINGLE POST */
    .single-event .event-actions {
        right: 1.2rem;
    }

    /* ABOUT US PAGE */
    .sponsor-section {
        padding: 4rem 1rem;
    }

    /* CONTACT US PAGE */
    body.page-template-default .site-main .rhs{
        margin-top: 5rem;
    }
    body.page-template-default .entry-header {
        margin-top: 5rem;
        margin-bottom: 6rem;
    }
    .contact-form {
        margin-top: 6rem;
        margin-bottom: 6rem !important;
    }
    .contacts {
        margin-top: 6rem;
        margin-bottom: 12rem !important;
    }

    /* FOOTER */
    .site-footer .purple-section .container {
        padding-bottom: 3.5rem;
    }
    .site-footer .purple-section .newsletter h2 {
        width: 100%;
        text-align:center;
        margin-top: 0rem;
        margin-bottom: 1rem;
        padding-right: 0rem;
    }
    .site-footer .purple-section .container .newsletter form>p {
        flex-wrap:wrap;
        align-items: center;
    }
    .site-footer .purple-section .container .newsletter form .wpcf7-email {
        width:100%;
        max-width: 100%;
        margin-bottom: 1rem;
        text-align: center;
    }
    .site-footer .purple-section .container .newsletter form > p > span {
        width:100%;
    }
    .site-footer .purple-section .container .newsletter form .wpcf7-submit {
        margin-left: auto;
        margin-right: auto;
    }
    .site-footer .purple-section .container .newsletter form .wpcf7-spinner{
        display:none;
    }
    .site-footer .footer-navigation .inner .role-menu-footer{
        display:none;
    }

    /* FOOTER */
    .site-footer .purple-section .container .newsletter {
        margin-bottom:3rem;
    }
    .site-footer .footer-navigation .custom-logo-link img {
        margin-bottom: 0;
    }

    /* 404 PAGE */
    body.error404 main#primary header{
        padding-left: 4.5rem;
        padding-right: 4.5rem;
    }
    body.error404 main#primary header h1 {
        font-size: 30rem;
        line-height: 1.05;
    }
    body.error404 main#primary header .copy h2 {
        font-size: 4.6rem;
    }
    body.error404 main#primary header .copy {
        max-width: 44vw;
    }


}

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

    body.logged-in .fixed-nav {
        top: 46px;
    }
    body.logged-in .menu-burger-menu-container {
        top: 46px;
        height: calc(100% - 46px);
    }

}

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

    .top-header .mobile-sharing {
        display: block;
        position: relative;
        width: 5.5rem;
        height: 6rem;
        background: transparent url(/wp-content/uploads/2023/10/share.svg) no-repeat;
        background-size: 2.1rem;
        cursor: pointer;
        margin-left: 3rem;
        background-position: bottom 1.7rem center;
    }
    .top-header .mobile-sharing #sharing-toggle{
        width: 100%;
        height: 100%;
    }
    .top-header .mobile-sharing .sharing-icons{
        display: none;
    }
    .top-header .mobile-sharing .sharing-icons.show{
        display: block;
    }
    .top-header .mobile-sharing .square-button.social{
        background-color: var(--white);
    }
    .top-header .mobile-sharing .square-button.social:hover{
        background-color: var(--purple);
    }

    .container-fluid,
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .menu-burger-menu-container ul#burger-menu {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    h1 {
        font-size: 4rem;
    }

    .gallery-swiper .swiper-slide .image .caption {
        padding: 0.5rem 1.2rem;
        font-size: 1.1rem;
        line-height: 1.1;
    }


    /* HOMEPAGE */
    body.home .entry-content .rhs{
        margin-top: 1.5rem;
    }
    body.home .site-main .post-navigation {
        margin-bottom: -1rem;
    }
    .homepage-post {
        margin-top: 3.4rem;
    }
    .homepage-post .post-container .post-teaser.post-teaser-special{
        padding-top:0 !important;
    }
    .homepage-post .post-container .post-teaser.post-teaser-special:nth-of-type(4n+1){
        width:100%;
        margin-right:0%;
    }
    .homepage-post .post-container .post-teaser.post-teaser-special:nth-of-type(4n+2){
        width:100%;
    }
    .homepage-post .post-container .post-teaser.post-teaser-special:nth-of-type(4n+3){
        width:100%;
    }
    .homepage-post .post-container .post-teaser.post-teaser-special:nth-of-type(4n+4){
        width:100%;
        margin-left:0%;
    }
    .homepage-post .post-container .post-teaser.post-teaser-special .post-teaser-img{
        padding-bottom: 17.1% !important;
        width: 28.5% !important;
        height: 0;
        margin-right: 0;
    }
    .homepage-post-byrole .inner .listing-posts:nth-child(2) {
        margin-top: 0rem;
    }
    .popular-videos-section {
        margin-top: 3.5rem;
        margin-bottom: 3.5rem;
    }
    .popular-videos-section .swiper-videos .listing-posts .post-container.row .swiper-wrapper .post-teaser{
        margin-bottom:0;
    }
    .popular-videos-section .swiper-videos .swiper-wrapper .post-teaser article a{
        display:block;
    }
    .popular-videos-section .swiper-videos .swiper-wrapper .post-teaser article a .post-teaser-img {
        width:100%;
        height:0;
        padding-bottom: 69%;
        margin-bottom: 3rem;
        position: relative;
        background-size: cover;
        background-position: center;
        background-color: #eaeaea;
    }
    .popular-videos-section .listing-posts {
        margin-bottom: 0rem;
        margin-top: 1rem;
    }
    .popular-videos-section .post-container .post-teaser .summary-container{
        border-left: 1px solid var(--pink);
        padding-left: 3.2rem;
        margin-bottom: 6rem;
        margin-left: 0;
        width: 100%;
        padding-top: 0rem;
        border-top: none;
    }

    /* ARCHIVE OVERVIEW */
    body.page-template-flexible-layout .site-main .rhs {
        margin-top: 4.5rem;
    }
    body.search .site-main .rhs,
    body.archive.category .site-main .rhs {
        margin-top: 1.5rem;
    }
    body.search .site-main .lhs,
    body.archive.category .site-main .lhs {
        margin-top: 4rem;
    }
    /* CATEGORY PAGES */
    body.category.category-career,
    body.category.category-appassessor,
    body.category.category-news,
    body.category.category-admins{

    } 
    body.archive.category .lhs {
        margin-top: 0rem;
    }
    .listing-posts .post-container.row .post-teaser.full-size:last-child{
        margin-bottom:0rem;
    }
    .listing-posts .post-container.row .post-teaser.full-size{
        margin-bottom:5rem;
    }
    .post-container .post-teaser.full-size .post-teaser-img {
        width: 100%;
        left: 0%;
        padding-bottom: 66%;
        margin-bottom:3rem;
    }
    .post-container .post-teaser.full-size .summary-container {
        width: 100%;
        right: 0%;
        padding-right:0rem;
        position: relative;
        border-left: 1px solid var(--pink);
        padding-left: 3.2rem;
        border-top: none;
        margin-left:0;
        padding-top:0;
    }
    .post-container .post-teaser.full-size .summary-container h3 {
        color: var(--dark-grey);
        font-family: var(--heading-font);
        font-weight: normal;
        letter-spacing: 0.02em;
        font-size: 4rem;
        margin-bottom: 3.6rem;
    }
    .post-container .post-teaser.full-size .summary-container .summary {
        display: block;
    }
    /*body.archive.category .listing-posts{
        margin-bottom:0;
    }*/
    body.category h1 {
        margin-bottom: 0rem;
    }
    body.archive.category .listing-posts h2 {
        margin-bottom: 3rem;
        margin-top:2.5rem;
    }
    body.archive.category .listing-posts .post-teaser-mini {
        margin-bottom: 0rem;
        width: 100%;
    }
    .categories-container .post-teaser-mini .image,
    body.archive.category .listing-posts .post-teaser-mini .image {
        padding-bottom: 17.1%;
        width: 28.5%;
        height: 0;
        margin-right: 0;
    }
    .categories-container .post-teaser-mini .text,
    body.archive.category .listing-posts .post-teaser-mini .text {
        border-left: none;
        border-top: 1px solid var(--pink);
        padding-left: 0;
        margin-left: 5.8%;
        width: 65.7%;
        padding-top: 2rem;
    }
    .cat-image-text-blocks .row.block {
        margin-bottom: 6rem;
        margin-right: -1.2rem;
        margin-left: -1.2rem;
    }
    .cat-image-text-blocks .row.block > * {
        padding-right: 1.2rem;
        padding-left: 1.2rem;
    }
    .cat-image-text-blocks .row.block > .col-copy {
        margin-bottom:3rem;
    }
    .cat-image-text-blocks .block:nth-child(even) .col-copy {
        left: 0%;
    }
    .cat-image-text-blocks .block:nth-child(even) .col-image {
        right: 0%;
    }
    .cat-image-text-blocks .block .copy h1{
        margin-bottom:2rem;
    }

    /* FLEXIBLE CONTENT OVERVIEW */
    body.page-template-flexible-layout .hero-right-area .inner .hero_video {
        position: relative;
        height: auto;
        width: 100%;
        max-height: 100%;
        min-width: 100%;
        left: 0%;
        transform: none;
    }
    body.page-template-flexible-layout .site-main .rhs {
        margin-top: 1.5rem;
    }
    body.page-template-flexible-layout .entry-header {
        margin-top: 4rem;
    }
    body.page-template-flexible-layout .hero_video {
        margin-top: 3rem;
    }
    body.page-template-flexible-layout .hero_video {
        margin-top: 0rem;
    }
    .image-text-section.right-img .block:nth-child(even) .col-image,
    .image-text-section.right-img .block:nth-child(even) .col-copy,
    .image-text-section.left-img .block:nth-child(odd) .col-copy,
    .image-text-section.left-img .block:nth-child(odd) .col-image {
        right: 0%;
        left:0%;
    }
    .image-text-section .block .col-copy {
        margin-bottom:3rem;
    }
    .image-text-section .row.block {
        margin-bottom: 5rem;
        margin-right: -1.2rem;
        margin-left: -1.2rem;
    }
    .image-text-section .row.block > * {
        padding-right: 1.2rem;
        padding-left: 1.2rem;
    }
    .text-section {
        margin-bottom: 5rem;
    }
    .people-container .person {
        width:50%;
    }
    .sponsor-section img.desktop{
        display:none;
    }
    .sponsor-section img.mobile{
        display:block;
    }
    body.page-template-flexible-layout .hero-right-area .inner {
        height: auto;
        min-height:auto;
        margin-top:3rem;
    }
    body.page-template-flexible-layout .video-controls.for-mobile{
        display: flex;
    }
    body.page-template-flexible-layout .video-controls.for-desktop{
        display: none;
    }


    /* SINGLE POST */
    body.search .site-main .rhs,
    body.archive.category .rhs,
    body.single-post_author .type-post_author .rhs,
    body.single-event article.type-event .rhs,
    body.post-type-archive-event .events-page-container .rhs,
    body.single article.type-post .rhs {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    body.single-event article.type-event .lhs .surround .scroll-details, 
    body.single article.type-post .lhs .surround .scroll-details{
        display:none;
    }
    .single .hero-image {
        height: 0;
        max-width: 100%;
        width: 100%;
        position: relative;
        margin-bottom: 0rem;
        display: inline-block;
        top: 0rem;
        border: 0rem solid white;
        border-left: 0;
        padding-bottom: 61%;
    }
    .single .hero-video {
        height: 0;
        max-width: 100%;
        width: 100%;
        position: relative;
        margin-bottom: 0rem;
        display: inline-block;
        top: 0rem;
        border: 0rem solid white;
        border-left: 0;
        padding-bottom: 61%;
    }
    .single .hero-video iframe {
        max-height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    .single .hero-image .categories-container {
        position: absolute;
        bottom: 0;
    }
    .single .entry-header .authors {
        margin-bottom: 2.5rem;
        margin-top: 3rem;
    }
    body.single-event article.type-event .lhs .surround .article-container,
    body.single article.type-post .lhs .surround .article-container {
        width: 100%;
        padding-left: 0rem;
    }
    .single .article-container>.inner {
        border: none;
        padding: 0rem;
        margin-top: 1.5rem;
        padding-top: 0rem;
        border-bottom:1px var(--pink) solid;
    }
    article .entry-content > *:last-child {
        margin-bottom: 4.5rem;
        /* line-height: 1.7; */
    }
    .single .entry-content .authors {
        padding: 3rem 3rem 0 3rem;
        margin-top: 5.5rem;
        margin-bottom: 4.5rem;
    }
    .single .entry-content .authors .portrait {
        width: 15.5rem;
        margin-right: 0rem;
        margin-bottom:2rem;
    }
    .single .entry-content .authors h2 {
        margin-bottom: 3rem;
    }
    .single .entry-content .authors .info {
        width: 100%;
        margin-top: 2rem;
        border-left: none;
        padding-left: 0;
        padding-right: 0;
    }
    button {
        padding: 0.7rem 1rem;
    }
    /* More like this */
    .listing-posts h2 {
        margin-bottom: 4.5rem;
    }
    .post-container .post-teaser article a{
        display:flex;
    }
    .events-page-container .post-container .post-teaser article a{
        display: inherit;
    }
    .post-teaser-mini {
        width: 100%;
        margin-bottom:0rem;
    }
    .post-teaser-mini .image,
    .post-teaser.list .post-teaser-mini .image,
    .listing-posts .full-width .post-teaser-mini .image,
    .post-container .post-teaser .post-teaser-img {
        padding-bottom: 17.1%;
        width: 28.5%;
        height:0;
        margin-right:0;
        margin-bottom:0rem;
    }
    .post-container .post-teaser .post-teaser-img .categories-container {
        display:none;
    }
    .post-teaser-mini .text,    
    .post-teaser.list .post-teaser-mini .text,
    .listing-posts .full-width .post-teaser-mini .text,
    .post-container .post-teaser .summary-container {
        border-left: none;
        border-top: 1px solid var(--pink);
        padding-left: 0;
        margin-left:5.8%;
        width:65.7%;
        padding-top: 2rem;
    }
    .post-container .post-teaser .summary-container h3 {
        color: var(--dark-grey);
        font-family: var(--serif);
        font-size: 1.8rem;
        font-weight: 900;
        margin-bottom: 1.5rem;
        letter-spacing: 0px;
        line-height: 1.2;
        margin-top:0;
    }
    .post-container .post-teaser .summary-container .summary{
        display:none;
    }
    .post-teaser-mini .text .top .post-categories{ 
        display:none;
    }



    .listing-posts .post-container.row .post-teaser{
        margin-bottom:2.5rem;
    }
    .listing-posts .load-more-posts {
        margin-top: 0rem;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    .single .entry-content .authors .image {
        width: 12rem;
        padding-bottom: 12rem;
    }

    /* EVENTS OVERVIEW PAGE */
    .archive.post-type-archive .featured-events {
        margin-top: 3rem;
    }
    /*.archive.post-type-archive .featured-events .event:first-child {
        margin-bottom: 4rem;
    }*/
    article.type-event .teaser-container .event-body {
        flex-wrap:wrap;
    }
    article.type-event .teaser-container .event-body .square-button.date {
        margin-bottom: 2rem;
    }
    article.type-event .teaser-container .event-body .summary{
        width:100%;
    }
    article.type-event .teaser-container .event-info{
        margin-top: 2rem;
    }

    /* CERTIFICATIONS PAGE */
    .certifications-section .category-content {
        border: none; 
        border-top: none;
        padding: 5.5rem 0rem 2rem 0rem;
    }
    .certifications-section .certification {
        margin-bottom: 3rem;
    }
    .certifications-section .related-courses a img{
        margin-bottom:3rem;
    }

    /* SEARCH PAGE - LIST LAYOUT */
    .post-teaser.list .post-teaser-mini .text .bottom {
        flex-wrap: wrap;
    }
    .post-teaser.list .post-teaser-mini .text .bottom .author-names{
        width:100%;
    }
    .post-teaser.list .post-teaser-mini .text .bottom .author-names:after{
        display:none;
    }
    /*.listing-posts .post-container.row .post-teaser {
        width: 100%;
    }*/
    .post-teaser.list {
        width: 100%;
    }

    /* SINGLE EVENT */
    body.single-event article.type-event .lhs{
        margin-top:1.5rem;
    }
    .single-event .event-type {
        left: 0rem;
        top: 0rem;
        border-right: 0;
        border-bottom: 0;
        position: relative;
        display: inline-block;
    }
    .single-event .event-actions {
        top: 0rem;
        right: auto;
        position: relative;
        margin-top: 1.5rem;
        flex-wrap: wrap;
    }
    .single-event .event-actions button {
        margin-top: 0rem;
        margin-left: 0rem;
        margin-right: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .single-event .article-container>.inner {
        margin-top: 0.5rem;
    }
    article .entry-content .event-speakers>h2 {
        margin-bottom: 2rem;
    }
    .event-info {
        margin-bottom: 1rem;
    }
    .event-speakers {
        margin-bottom: 0.8rem;
    }
    .event-speakers .speaker {
        display: flex;
        margin-bottom: 2rem;
    }
    .event-speakers .speaker .body h4 {
        margin-bottom: 0.5rem;
    }
    .event-speakers .speaker .links button.social {
        margin-top: 0.8rem;
    }

    /* SINGLE POST AUTHOR */
    .single-post_author .authors .image {
        width: 18rem;
        padding-bottom: 18rem;
    }
    .single-post_author .authors .info {
        margin-top:2rem;
        width: 100%;
        padding-left: 1.2rem;
        padding-right: 1.2rem;
        border-left: none;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .single-post_author .authors {
        margin-top: 0rem;
        margin-bottom: 5.7rem;
    }

    /* Mini-teaser */
    .post-teaser-mini .text .title {
        margin-bottom: 1.5rem;
    }

    /* Alternative view */
    .post-container .post-teaser .summary-container {
        margin-bottom: 0rem;
    }

    /* QUIZ */
    .sf-ben-quiz .ays-quiz-questions-nav-wrap .ays-quiz-questions-nav-item {
        margin: 7px 2px 0 0;
    }
    .sf-ben-quiz .ays-quiz-questions-nav-wrap a.ays_questions_nav_question {
        width: 3.6rem;
        height: 3.6rem;
        min-width: 3.6rem;
        font-size:14px;
    }
    .sf-ben-quiz .ays-quiz-questions-nav-wrap a.ays_questions_nav_question::after {
        width: 1rem;
        height: 1rem;
        top: -0.5rem;
        right: -0.5rem;
    }

    /* CONTACT FORM */
    .contact-form form input[type="submit"] {
        float: left;
    }

    /* FOOTER */
    .site-footer .purple-section .container .social-container {
        display: flex;
        flex-wrap: wrap;
    }
    .site-footer .purple-section .container .social-container h2{
        padding-right: 0rem;
        margin-bottom:1rem;
        width:100%;
        text-align:center;
    }
    .site-footer .footer-navigation .inner .primary-menu-footer{
        display:none;
    }
    .custom-logo-link {
        display: block;
        text-align: center;
    }
    .site-footer .footer-navigation .inner {
        flex-wrap: wrap;
        justify-content: center;
    }
    .site-footer .footer-navigation .address {
        width: 100%;
        text-align: center;
    }
    .site-footer .footer-navigation .miscellaneous {
        width: 100%;
        text-align: center;
        margin-top: 0;
    }
    .site-footer .footer-navigation .miscellaneous ul{
        padding-left: 0;
    }
    .site-footer .footer-navigation .copyrights {
        margin-top: 1.75rem;
    }

    /* CONTACT PAGE */
    body.page-template-default .entry-header {
        margin-top: 4rem;
        margin-bottom: 6rem;
    }

    /* 404 PAGE */
    body.error404 main#primary header {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    body.error404 main#primary header h1 {
        font-size: 45.8vw;
        margin-bottom: 4rem;
        padding-right: 0rem;
        margin-top: 5vh;
    }
    body.error404 main#primary header .copy {
        left: 0%;
        margin-bottom: 10vh;
        max-width:100%;
    }
    body.error404 main#primary header .copy h2 {
        font-size: 4rem;
    }
    body.error404 main#primary header .copy p br{
        display:none;
    }

}

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

    /* FEATURED EVENTS */
    .archive.post-type-archive .featured-events .event .inner h2 {
        font-size: 1.6rem;
    }
    .archive.post-type-archive .featured-events .event .event-info .event-location{
        margin-bottom:0;
    }
    .archive.post-type-archive .featured-events h5 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    .archive.post-type-archive .upcoming-events-top-bar h5{
        font-size:1.8rem;
    }
    .archive.post-type-archive .upcoming-events-top-bar .events-view .view {
        font-size: 1.4rem;
    }
    .archive.post-type-archive .featured-events .event.single .details {
        padding-left: 1.2rem;
    }
    .archive.post-type-archive .featured-events .event .details {
        padding-left: 1.2rem;
        padding-top: 0rem;
    }    
    .archive.post-type-archive .featured-events .event.single .details .event-info .event-date,
    .archive.post-type-archive .featured-events .event.single .details .event-info .event-location{
        margin-right:4.8rem;
    }
    .archive.post-type-archive .featured-events .event .event-type {
        padding: 0.6rem 1.2rem;
        font-size: 1.4rem;
    }
    .archive.post-type-archive article.type-event .event-type, .archive.post-type-archive article.type-job .job-type {
        font-size: 1.4rem;
    }
    .archive.post-type-archive .upcoming-events-top-bar {
        margin-bottom: -1.5rem;
    }
    .archive.post-type-archive .featured-events .event .col-sm-6{
        position: inherit;
    }
    .archive.post-type-archive .featured-events .event .inner{
        position: relative;
        padding: 1.5rem;
    }
    .archive.post-type-archive .featured-events .event.single .inner {
        padding: 1.5rem;
    }
    .archive.post-type-archive .featured-events .event .event-thumbnail{
        margin-bottom: 1.5rem;
        margin-top: 5.1rem;
    }
    .archive.post-type-archive .featured-events .event .event-type{
        position: relative;
        top: 0rem;
        left: 0rem;
        margin-bottom: 1rem;
    }
    .archive.post-type-archive .featured-events .event .event-copy .event-location{
        display: flex;
    }
    .archive.post-type-archive .featured-events .event .top .event-info{
        display: none;
    }
    .archive.post-type-archive .featured-events .event .event-info .event-time{
        display: none;
    }
    .archive.post-type-archive .featured-events .event .event-info{
        row-gap: 1rem;
    }

}


/* MOBILE MENUS */
.menu-burger-menu-container{
    overflow-y: hidden;
}
.menu-burger-menu-container>.inner{
    height: 100%;
    overflow-y: auto;    
    overflow-x: hidden;
    background-color: var(--purple);
    position: relative;
    padding-top: 10rem;
    padding-bottom: 7.3rem;
}
.menu-burger-menu-container ul#mobile-main-menu {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin: 0 auto;
    max-width: 48rem;
    padding-left: 9rem;
    padding-right: 9rem;
}
.menu-login-menu-container #login-menu .menu-item-80{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
}
.menu-login-menu-container #login-menu .menu-item-80 a{
    width: 100%;
    height: 100%;
    text-indent: -999px;
    overflow: hidden;
}
.menu-login-menu-container #login-menu .menu-item-80{
    background: transparent url(/wp-content/uploads/2023/07/user-icon-black.svg) no-repeat 2.8rem;
    background-size: 3.5rem;
}
.menu-login-menu-container #login-menu .menu-item-80:hover,
.menu-login-menu-container #login-menu .menu-item-80.focus{
    background: var(--dark-grey) url(/wp-content/uploads/2023/07/user-icon-white.svg) no-repeat 2.8rem;
    background-size: 3.5rem;
}
.menu-login-menu-container #login-menu .menu-item-80:hover > ul, .menu-login-menu-container #login-menu .menu-item-80.focus > ul {
    left: 0;
}
.menu-burger-menu-container .burger-menu-top{
    background-color: var(--purple);
    display: none;
}
.menu-burger-menu-container ul#mobile-main-menu li a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    display: block;
    padding: 1rem 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.menu-burger-menu-container ul#burger-featured-menu{
    padding: 0;
    margin: 0 1.1rem;
    display: none;
}
.menu-burger-menu-container ul#burger-featured-menu li a{
    color: var(--white);
    display: flex;
    align-items: flex-start;
}
.menu-burger-menu-container ul#burger-featured-menu>li{
    background-color: var(--purple);
    height: 4.3rem;
    padding: 0 2.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu-burger-menu-container ul#burger-featured-menu li a::before{
    content : '';
    background-image: url(../images/featured-menu-icon.svg);
    width: 1.82rem;
    height: 1.82rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 0.8rem;
}
@media only screen and (max-width: 1400px){
    .menu-burger-menu-container ul#mobile-main-menu {
        padding-left: 6rem;
        padding-right: 6rem;
    }
}
@media only screen and (max-width: 1350px){
    .menu-login-menu-container #login-menu .menu-item-80 {
        background-position: center !important;
    }
    .menu-login-menu-container #login-menu .menu-item-80:hover > ul, .menu-login-menu-container #login-menu .menu-item-80.focus > ul {
        left: auto;
    }
}
@media only screen and (max-width: 991px){
    .menu-burger-menu-container ul#burger-menu li.menu-item-has-children {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .menu-burger-menu-container ul#burger-menu li.menu-item-has-children::after {
        content: url(/wp-content/uploads/2023/10/white-arrow.svg);
        position: absolute;
        right: 1.5rem;
    }
    .menu-burger-menu-container ul#burger-menu li ul.sub-menu {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        margin: 0;
        background-color: var(--dark-grey);
        list-style: none;
        display: flex;
        transform: translateX(100%);
        transition: all 0.5s ease;
        padding-top: 0rem;
    }
    .menu-burger-menu-container ul#burger-menu li ul.sub-menu.active {
        transform: translateX(0%);
    }
    .menu-burger-menu-container{
        padding: calc(6rem + 3px) 0 0 0;
        background-color: transparent;
    }
    .menu-burger-menu-container .burger-menu-top{
        display: block;
    }
    .menu-burger-menu-container ul#mobile-main-menu {
        padding-left: 0rem;
        padding-right: 0rem;
        padding-top: 3rem;
        padding-bottom: 1.2rem;
    }
    .menu-burger-menu-container ul#mobile-main-menu > li{
        padding-bottom: 0;
        width:100%;
    }
    .menu-burger-menu-container ul#mobile-main-menu > li:first-child > a{
        border-top:1px solid var(--white);
    }
    .menu-burger-menu-container ul#mobile-main-menu > li > a{
        width:100%;
        padding: 1.2rem 4.5rem;
        border-bottom:1px solid var(--white);
    }
    .menu-burger-menu-container ul#mobile-main-menu li.menu-item-has-children{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .menu-burger-menu-container ul.menu .sub-menu h3#back-to-menu{
        font-size: 2.5rem;
        color: var(--white);
        font-family: var(--heading-font);
        font-weight: normal;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        cursor: pointer;
        padding-top: 2rem;
        padding-bottom: 6rem;
        border-bottom:1px solid var(--white);
        margin-bottom:0;
        display: block;
    }
    .menu-burger-menu-container ul.menu .sub-menu h3#back-to-menu::before{
        content: url('/wp-content/uploads/2023/10/white-arrow-back.svg');
        padding-left: 4.5rem;
        padding-right: 1.6rem;
        top: -5px;
        position: relative;
    }
    .menu-burger-menu-container ul.menu li.menu-item-has-children::after{
        content: url('/wp-content/uploads/2023/10/white-arrow.svg');
        position:absolute;
        right:1.5rem;
    }
    .menu-burger-menu-container ul.menu li ul.sub-menu{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        margin: 0;
        background-color: var(--purple);
        list-style: none;
        display: flex;
        transform: translateX(100%);
        transition: all 0.5s ease;
        padding-top:0rem;
    }
    .menu-burger-menu-container ul.menu li ul.sub-menu > li {
        padding-bottom: 0;
        width: 100%;
    }
    /*.menu-burger-menu-container ul#mobile-main-menu li ul.sub-menu > li:first-child{
        background-color:pink;
    }
    .menu-burger-menu-container ul#mobile-main-menu li ul.sub-menu > li:first-child a{
        border-top:1px solid var(--white);
    }*/
    .menu-burger-menu-container ul.menu li ul.sub-menu > li > a {
        width: 100%;
        padding: 1.2rem 0rem 1.2rem 21rem;
        border-bottom: 1px solid var(--white);
    }
    .menu-burger-menu-container ul.menu li ul.sub-menu > li > a {
        padding: 1.2rem 0rem 1.2rem 4.5rem !important;
    }

    .menu-burger-menu-container ul.menu li ul.sub-menu.active{
        transform: translateX(0%);
    }
    .site-header-nav-close .top-header .custom-logo-link img {
        filter: none;
    }
    .burger.clicked span::before{
        background: var(--dark-grey);
    }
    .burger.clicked span::after{
        background: var(--dark-grey);
    }
    .social-container{
        display: none;
    }
    .menu-featured-menu-container{
        display: none;
    }
    .ceiling-menus-container{
        display: none;
    }
    .top-header #burger-navigation {
        display: block;
    }
    .top-header .search-icon{
        position: relative;
        width: 4rem;
        height: 6rem;
        background: transparent url(/wp-content/uploads//2025/05/search-icon.webp) no-repeat;
        background-size: 1.7rem;
        cursor: pointer;
        margin-left: 1rem;
        background-position: bottom 2rem center;
    }
    .top-header.scroll .search-icon{
        margin-left: 1rem;
    }
    .top-header .search-icon #search-toggle{
        width: 100%;
        height: 100%;
    }
    .top-header .wp-block-search__inside-wrapper{
        margin-left: 0;
        background-color: white;
    }
    .top-header .widget_search{
        position: absolute;
        top: 100%;
        right: 0;
        padding: 2rem;
        background: var(--purple);
        max-width: 40rem;
        display: none;
    }
    .top-header .widget_search.show{
        display: block;
    }
    .top-header .rhs{
        align-items: center;
    }
    .top-header .widget_search .wp-block-search__label{
        display: none;
    }
    .top-header .rhs {
        justify-content: flex-end;
    }
    .ceiling-login-mobile-menu-container{
        position: absolute;
        bottom: 0;
        left: 0;
        background-color: var(--white);
        width: 100%;
        height: calc(6rem + 3px);
        padding: 1.5rem 2.7rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .login-mobile-menu-container #login-mobile-menu .menu-item-80{
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        display: flex;
    }
    .login-mobile-menu-container #login-mobile-menu .menu-item-80 a{
        width: 100%;
        height: 100%;
        text-indent: -999px;
        overflow: hidden;
        padding: 0 !important;
    }
    .login-mobile-menu-container #login-mobile-menu .menu-item-80 .sub-menu{
        position: relative;
        top: auto;
        left: auto;
        padding: 0;
        background: transparent;
        margin: 0;
        border: none;
        transform: translateX(0%);
    }
    .login-mobile-menu-container #login-mobile-menu .menu-item-80 .sub-menu li{
        list-style: none;
        width: 12rem;
        height: 3.5rem;
        border: 2px solid var(--purple);
        padding-bottom: 0;
    }
    .login-mobile-menu-container #login-mobile-menu .menu-item-80 .sub-menu li a{
        color: var(--dark-grey) !important;
        font-size: 1.3rem;
        font-weight: 500;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-indent: 0;
    }
    .login-mobile-menu-container #login-mobile-menu .menu-item-80{
        /* background: transparent url(/wp-content/uploads/2023/07/user-icon-black.svg) no-repeat 2.8rem; */
        background-size: 3.5rem;
    }
    /* .login-mobile-menu-container #login-mobile-menu .menu-item-80:hover,
    .login-mobile-menu-container #login-mobile-menu .menu-item-80.focus{
        background: var(--dark-grey) url(/wp-content/uploads/2023/07/user-icon-white.svg) no-repeat 2.8rem;
        background-size: 3.5rem;
    } */
    #ceiling-mobile-menu, #login-mobile-menu{
        padding: 0;
        margin: 0;
    }
    #ceiling-mobile-menu li {
        list-style: none;
        width: 12rem;
        height: 3.5rem;
        border: 2px solid var(--purple);
        padding-bottom: 0;
    }
    #ceiling-mobile-menu li a {
        color: var(--dark-grey);
        font-size: 1.3rem;
        font-weight: 500;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .menu-burger-menu-container ul#burger-menu{
        padding-left: 0rem;
        padding-right: 0rem;
        padding-top: 2.2rem;
        padding-bottom: 2.2rem;
    }
    .menu-burger-menu-container.show ul#burger-menu li{
        width: 100%;
        padding-bottom:0;
    }
    .menu-burger-menu-container.show ul#burger-menu li:first-child a{
        border-top:1px solid var(--white);
    }
    .menu-burger-menu-container.show ul#burger-menu li a{
        width: 100%;
        padding: 1.2rem 4.5rem;
        border-bottom: 1px solid var(--white);
    }

    .menu-burger-menu-container ul#burger-featured-menu{
        display: block;
    }
    
}
@media only screen and (max-width: 767px){
    
    .menu-burger-menu-container ul.menu li a{
        padding: 1.2rem 1.5rem !important;
    }

    .menu-burger-menu-container.show ul#burger-menu li a {
        padding: 1.2rem 1.5rem;
    }

}

#onesignal-bell-container.onesignal-reset {
    z-index: 9999 !important;
}
@media only screen and (max-width: 575px){
    .archive.post-type-archive .featured-events .event .col-sm-6{
        position: inherit;
    }
    .archive.post-type-archive .featured-events .event .inner{
        position: relative;
        padding: 1.5rem;
    }
    .archive.post-type-archive .featured-events .event .event-thumbnail{
        margin-bottom: 1.5rem;
        margin-top: 5.1rem;
    }
    .archive.post-type-archive .featured-events .event .event-type{
        position: absolute;
        top: 1.5rem;
        left: 1.5rem;
        margin-bottom: 0;
    }
}

/* Releases page */
.page-id-72891 .entry-content .three-posts-section:not(:last-child){
    margin-bottom: 0 !important;
}
.page-id-72891 .entry-content .three-posts-section:not(:last-child) .listing-posts{
    margin-bottom: 0 !important;
}
.page-id-72891 .entry-content .three-posts-section:not(:first-child){
    margin-top: 0 !important;
}
.page-id-72891 .entry-content .three-posts-section:not(:first-child) .listing-posts{
    margin-top: 0 !important;
}

/* 
CUSTOM CSS
*/
.menu-login-menu-container,
.home .homepage-post .post-navigation,
.home .popular-videos-section,
.home .homepage-post-byrole,
.home .get-more-section {
	display: none !important;
	width: 0 !important;
	height: 0 !important;
}
body.page-template-default .contact .entry-header {
    border: none;
    padding: 0 0;
}
body.page-template-default .contact .entry-header,
body.page-template-default .about .entry-header { 
    margin-top: 48.5px;
    margin-bottom: 296px;
}
.about .content,
.contact .content {
    padding-right: 70px;
}
.about .content a,
.contact .content a {
    color: inherit;
    border-bottom: 1px solid;
}
body.page-template-default .site-main.newsletter-page .lhs {
    padding-right: 1.2rem;
    right: unset;
}
@media (max-width: 991px) {
    body.page-template-default .about .entry-header,
    body.page-template-default .contact .entry-header {
        margin-top: 5rem;
        margin-bottom: 6rem;
    }
    .site-footer .footer-navigation .footer-inner {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
    }
    .site-footer .footer-navigation .inner {
        margin-top: 1.3rem;
    }
    .newsletter-footer {
        margin-top: 0;
    }
    .newsletter-footer h3 {
        text-align: center;
    }
    .newsletter-footer .email-container {
        align-items: center;
        flex-direction: column;
    }
    .newsletter-footer .email-container .input,
    .newsletter-footer .email-container .submit {
        width: 100%;
    }
    .site-footer .footer-navigation .copyrights {
        left: unset;
    }
    .newsletter-footer input[type="email"] {
        width: 100%;
    }
}
@media (max-width: 767px) {
    body.page-template-default .about .entry-header,
    body.page-template-default .contact .entry-header {
        margin-top: 4rem;
        margin-bottom: 4rem;
    }
}
@media (max-width: 400px) {
    #site-navigation #purple-menu>li:not(:first-of-type) {
        padding-left: 2rem;
    }
}