/*!
Theme Name:    SO... Child Theme
Author:        SO Digital Communications
Author URI:    https://www.so-theagency.com
Description:   Child theme for SO... Page Builder
Version:       1.0.0
License:       GNU General Public License v3 or later
License URI:   https://www.gnu.org/licenses/gpl-3.0.html
Template:      page-builder-framework
Text Domain:   page-builder-framework-child
*/

:root {
	--primary: #9B141A;
	--dark: #231F20;
	--light: #FEFDF9;
	--secondary: #F4EDE5;
	--lightgrey: #D9D9D9;
	--white: #ffffff;
}

/* FONTS */
@font-face {
	font-family: 'konnect';
	src: url('fonts/KonnectLight.woff') format('woff');
	font-weight: 300;
	font-style: normal;
}
@font-face {
	font-family: 'konnect';
	src: url('fonts/KonnectLightItalic.woff') format('woff');
	font-weight: 300;
	font-style: italic;
}
@font-face {
	font-family: 'konnect';
	src: url('fonts/KonnectMedium.woff') format('woff');
	font-weight: 400;
	font-style: normal;
}
@font-face {
	font-family: 'konnect';
	src: url('fonts/KonnectMediumItalic.woff') format('woff');
	font-weight: 400;
	font-style: italic;
}
@font-face {
	font-family: 'konnect';
	src: url('fonts/KonnectSemiBold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
}
@font-face {
	font-family: 'konnect';
	src: url('fonts/KonnectSemiBoldItalic.woff') format('woff');
	font-weight: 600;
	font-style: italic;
}
@font-face {
	font-family: 'konnect';
	src: url('fonts/KonnectBold.woff') format('woff');
	font-weight: 700;
	font-style: normal;
}
@font-face {
	font-family: 'konnect';
	src: url('fonts/KonnectBoldItalic.woff') format('woff');
	font-weight: 700;
	font-style: italic;
}
@font-face {
	font-family: 'konnect';
	src: url('fonts/KonnectRegular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

/* GLOBALS */
html,body{
    overflow-x: hidden;
    height: 100%;
}
body{
	font-size: 1rem;
}
#container{
	overflow: hidden;
}
h1, h2, h3, h4, h5, h6{
	color: var(--dark);
	font-style: normal;
}
h1, h2{
	font-weight: 400 !important;
}
ul{
	padding-left: 20px;
}
a{
	transition: color 0.3s, border-color 0.3s, background-color 0.3s, transform 0.3s, opacity 0.3s;
}
q {
  quotes: "“" "”" "‘" "’";
}
q::before {
    content: open-quote;
}
q::after {
    content: close-quote;
}
.card, .card-alt{
	padding: 3rem;
	border-radius: 25px;
}
.card{
	background: white;
}
.card-alt{
	border: 1px solid var(--dark);
}
.sticky{
	position: sticky;
	top: 1.5rem;
}
.mb-0{
	margin-bottom: 0;
}
.relative,
.relative-col .fl-col-content{
	position: relative;
}
.bg-primary{ background-color: var(--primary); }
.bg-dark{ background-color: var(--dark); }
.bg-light{ background-color: var(--light); }
.bg-secondary{ background-color: var(--secondary); }
.bg-white{ background-color: white; }

.z-1{ z-index: 1; }

.so-btn{
	display: inline-block;
	border-radius: 25px; 
	padding: 10px 20px; 
	font-size: 1.1rem;
	font-weight: 400;
}
.so-btn.so-btn--white{
	border: 2px solid var(--primary);
	color: var(--primary);
	background: var(--white);
}
.so-btn.so-btn--white:hover{
	color: var(--white);
	background: var(--primary);
}
.so-btn.so-btn--red{
	border: 2px solid var(--primary);
	color: var(--white);
	background: var(--primary);
}
.so-btn.so-btn--red:hover{
	color: var(--primary);
	background: var(--white);
}

.so-page-content-wrap{
	background: var(--secondary);
}
.so-page-content-container {
	position: relative;
	z-index: 100; 
}

/*@media (max-width: 768px) {
  .fl-col {
    margin-left: 40px;
    margin-right: 40px;
  }
}
*/
.greyscale img{
	filter: grayscale(1);
}

/* Link underline animation */
.soblock--text a, 
.soblock--text a:visited{
	color: var(--primary);
	position: relative;
	text-decoration: none; 
}
.soblock--text a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  bottom: 0px;
  left: 0;
  background-color: var(--primary);
  transform: scaleX(0);
  transform-origin: top left;
  transition: transform 0.3s ease;
}
.soblock--text a:hover::before {
  transform: scaleX(1);
}



/* HEADER */
.header-logo a, .logo img{
	cursor: pointer;
}
.header-logo a{
	display: inline-block;
    position: relative;
    display: block; 
    max-width: 210px; 
    z-index: 1;
}
.header-logo a:after{
    content: '';
    position: absolute;
    top: 25.5%; left: 13.25%;
	width: 25%; aspect-ratio: 1/1;
    border-radius: 100%;
    background: white;
    transition: opacity 0.3s;
    opacity: 0;
    z-index: -1;
}
.header-logo a:hover:after{
    opacity: 1;
}
body.white-logo .header-logo svg path{
    fill: white !important;
}
body.white-logo .header-logo a:after{
	background: var(--primary);
}
.header-contact {
	color: #fff; 
	text-align: right; 
	font-weight: 400;
}
.header-contact a,
.header-contact a:visited{
	color: white; 
	margin-left: 1rem; 
}
header .fl-separator{
	border-top-color: rgba(255,255,255,0.5) !important;
}
@media (max-width: 768px) {
	.header-contact a{
		display: block; 
	}
	.header-contact span.git-text{
		display: none; 
	}
}
.header-contact a:hover{
	color: var(--secondary);
/* 	text-decoration: underline;  */
}
.header-menu ul.menu li{
	margin-left: 24px; 
}
/* .header-menu ul.menu li a{
	transition: text-decoration 0.2s ease;
} */
.header-menu ul.menu li:last-of-type a{
	padding-right: 0;
}
/* .header-menu ul.menu li a:hover, 
.header-menu ul.menu li.current_page_item a{
	text-decoration: underline; 
} */

/* Menu underline animation */
.header-menu ul.menu li{
	padding: 14px; 
}
.header-menu ul.menu li a, 
.header-menu ul.menu li a:visited,
.header-contact a, 
.header-contact a:visited{
	color: var(--secondary);
	position: relative;
	text-decoration: none; 
	padding: 0; 
}
.header-menu ul.menu li a::before, 
.header-contact a::before{
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  bottom: 0px;
  left: 0;
  background-color: var(--secondary);
  transform: scaleX(0);
  transform-origin: top left;
  transition: transform 0.3s ease;
}
.header-contact a:hover::before,
.header-menu ul.menu li a:hover::before, 
.header-menu ul.menu li.current_page_item a::before{
  transform: scaleX(1);
}

.header-logo svg .st0{fill:#9B1C20;}
.header-logo svg .st1{fill:#AC322A;}
.header-logo svg .st2{fill:#9B1D21;}

body.white-logo .header-logo svg .st0,
body.white-logo .header-logo svg .st1,
body.white-logo .header-logo svg .st2{
	fill: #fff; 
}

.fl-menu .fl-menu-mobile-flyout{
	background: var(--dark) !important;
}
.fl-menu .fl-menu-mobile-flyout .menu-item{
	text-align: center !important;
	margin: 0 !important;
	padding-left: 0.5rem !important;
}
.fl-menu .fl-menu-mobile-flyout .menu-item a{
	padding: 14px !important;
}
.fl-menu .fl-menu-mobile-flyout .fl-menu-mobile-close i{
	color: white !important;
}
.fl-menu .fl-menu-mobile-flyout .fl-menu-mobile-close:hover i{
	color: var(--primary) !important;
}


/* FOOTER */
footer{
	position: relative;
	z-index: 1;
}
#footer{
	box-shadow: 0 50vh 0 50vh var(--dark);
}
.footer-image-row{
    position: relative;
}
.footer-image-row .fl-row-content-wrap{
    background: var(--dark);
}
.footer-image-row:after{
    content: '';
    display: block;
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--dark);
    z-index: -1;
}
.footer-copy{
	display: flex;
	justify-content: left;
	font-size: 0.85rem;
}
.footer-copy a:hover{
	text-decoration: underline; 
}
.footer-col{
    width: 100% !important;
}
.footer-logo a, .logo img{
	cursor: pointer;
}
.footer-logo a{
	display: inline-block;
    position: relative;
    display: block; 
    max-width: 210px; 
    z-index: 1;
}
.footer-logo a svg path{
	fill: white !important;
}
.footer-logo a:after{
    content: '';
    position: absolute;
    top: 25.5%; left: 13.25%;
	width: 25%; aspect-ratio: 1/1;
    border-radius: 100%;
    background: var(--primary);
    transition: opacity 0.3s;
    opacity: 0;
    z-index: -1;
}
.footer-logo a:hover:after{
    opacity: 1;
}
.footer-menu ul.menu li{
	margin-left: 24px; 
}
.footer-menu ul.menu li:last-of-type a{
	padding-right: 0;
}
.footer-menu ul.menu li.current-menu-item a:not(:hover),
.footer-menu ul.menu li.current_page_item a:not(:hover){
	color: white !important;
}
@media screen and (max-width: 998px){
	.footer-menu ul.menu li {
		width: 100%;
	}
	.footer-menu ul.menu li a{
		padding-right: 0;
	}
}
@media screen and (max-width: 768px){
	.footer-logo a{
		margin-left: auto;
  		margin-right: auto;
	}
	.footer-menu .fl-menu-horizontal{
		display: inline;
	}
	.footer-menu ul.menu li{
		margin-left: 0;
		text-align: center;
	}
}

#so-footer-socials{
    width: 100%;
    margin: -0.1rem 0;
    text-align: right;
}
#so-footer-socials .so-footer-social{
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 1.5rem; height: 1.5rem;
    border-radius: 100%;
    margin: 0.1rem 0.75rem 0.1rem 0;
    transition: background 0.3s;
    background: var(--primary);
    position: relative;
    top: -0.25rem;
}
#so-footer-socials .so-footer-social:last-of-type{
	margin-right: 0;
}
#so-footer-socials .so-footer-social svg{
    fill: var(--dark);
    transition: fill 0.3s;
    width: 100%; height: 100%;
    max-height: 14px; 
}
#so-footer-socials .so-footer-social:hover{
	background: white;
}
@media screen and (max-width: 768px){
	.footer-col{
		text-align: center;
	}
	.footer-copy{
		display: block;
	}
	#so-footer-socials{
		text-align: center;
	}
}
@media screen and (min-width: 769px){
    .footer-col:first-of-type{
        width: calc(75%) !important;
    }
    .footer-col:last-of-type{
    	width: calc(25%) !important;
    }
    .footer-col.footer-col--logo{
        width: 300px !important;
    }
    .footer-col--subscribe{
        width: calc(50% - 100px) !important;
    }
    .footer-col--follow{
        width: calc(50% - 200px) !important;
    }
}

.footer-cta-btn-wrap{
	text-align: right; 
}
.footer-cta-btn-wrap a, 
.footer-cta-btn-wrap a:visited{
	background: var(--white);
	color: var(--primary) !important;
	border: 2px solid var(--white);
}
.footer-cta-btn-wrap a:hover{
	background: var(--primary);
	color: var(--white) !important;
}

@media screen and (max-width: 768px){
	.footer-cta-btn-wrap{
		text-align: center; 
	}
}


/**
 * PAGE HEADER
 **/
.so-page-header{
	position: relative;
	z-index: 1;
}
.so-page-header.has-overlap > .fl-row-content-wrap{
	padding-bottom: 10rem; 
}
.soph--image{
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: grayscale(0.1);
}
.so-page-header .soph--content{
	max-width: 80%;
	text-align: left;
}
.so-page-header .soph--subheading{
	color: var(--white) !important;
	margin-bottom: 2rem;
	font-size: 1.2rem;
	text-transform: uppercase;
	font-size: 1.5rem; 
	font-weight: 600;
}
.so-page-header .soph--heading{
	position: relative; 
	color: var(--white);
}
@media screen and (max-width: 992px){
	.so-page-header .soph--heading{
		font-size: 4rem;
	}
}
@media screen and (max-width: 768px){
	.so-page-header .soph--content{
		max-width: 100%;
	}
	.so-page-header .soph--heading{
		font-size: 3.5rem;
	}
	h2{ font-size: 45px; }
}
.so-page-header .soph--text{
	font-weight: 400;
	color: var(--white);
	font-size: 1.2rem;
	margin-top: 2rem;
	max-width: 45rem;
}
.so-page-header .soph--link{
	margin-top: 1rem;
}
.so-page-header .soph--link a{
	margin-top: 1rem;
	margin-right: 1rem;
}
.soph--image.has-feature{
    height: 75%;
}
.soph--content-wrap{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin: 12rem 0 4rem;
}
.soph--content-wrap > div{
    width: 100%;
}
.soph--featured-image{
    position: relative;
    width: 100%;
    padding-top: 75%;
    background: var(--light);
    overflow: hidden;
    border-radius: 1rem;
}
.soph--featured-img{
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.soph--content-wrap{
    position: relative;
}
.soph--cs-logos{
    display: none;
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 20%;
    gap: 2rem;
}
.soph--cs-logo{
    display: inline-block;
    width: 100%;
}
.soph--cs-img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
#page-header.has-feature + .fl-row > div{
    padding-top: 0 !important;
}
#page-header.has-feature + .fl-row:before,
#page-header.has-feature + .fl-row:after{
    display: none;
}
.soph--image-overlay{
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}
.soph--image-overlay:before{
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: var(--dark);
    mix-blend-mode: multiply;
    opacity: 0.5;
}
@media screen and (min-width: 769px){
	.so-page-header .soph--content.align-left{
		margin-left: 0;
		text-align: left;
	}
	.so-page-header .soph--content.align-right{
		margin-right: 0;
		text-align: right;
	}
    .soph--content-wrap.has-feature .soph--content{
        padding-bottom: 20%;
    }
    .soph--content-wrap{
        flex-direction: row;
    }
    .soph--featured-image{
        padding-top: 120%;
    }
    .soph--cs-logos{
        display: flex; 
    }
    .soph--content-wrap.has-feature .soph--cs-logos{
        max-width: calc(50%);
    }
    .soph--content-wrap.has-feature .soph--cs-img{
        object-position: left center;
    }
}

body.header-has-overlap :nth-child(1 of .so-page-content-container){
	  margin-top: -260px;
}

/* PAGINATION */
.fl-builder-pagination ul.page-numbers{
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-top: 2rem;
}
.fl-builder-pagination ul.page-numbers .page-numbers{
    position: relative;
    border-radius: 100%;
    background: none !important;
    border: 1px solid rgba(0,0,0,0.25);
    color: var(--dark);
    font-weight: 400;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    min-width: 3.5rem;
    aspect-ratio: 1/1;
    font-size: 1.1rem;
}
.fl-builder-pagination ul.page-numbers .page-numbers:not(.current):hover{
    border-color: rgba(0,0,0,0.5);
}
.fl-builder-pagination ul.page-numbers .page-numbers.current{
    color: var(--primary);
    border-color: var(--primary);
}
.fl-builder-pagination ul.page-numbers .page-numbers.next,
.fl-builder-pagination ul.page-numbers .page-numbers.prev{
    font-size: 0;
}
.fl-builder-pagination ul.page-numbers .page-numbers.next:after,
.fl-builder-pagination ul.page-numbers .page-numbers.prev:after{
    content: '';
    position: absolute;
    width: 1.25rem; height: 2px;
    background: var(--dark);
    left: 50%; transform: translateX(-50%);
}
.fl-builder-pagination ul.page-numbers .page-numbers.next:before,
.fl-builder-pagination ul.page-numbers .page-numbers.prev:before{
    content: '';
    position: absolute;
    width: 0.75rem;
    aspect-ratio: 1/1;
    border-style: solid;
    border-color: var(--dark);
    border-width: 2px 2px 0 0;
    right: 1.1rem;
    transform: rotate(45deg);
}
.fl-builder-pagination ul.page-numbers .page-numbers.prev:before{
    border-width: 0 0 2px 2px;
    left: 1.1rem; right: auto;
}


/* HOMEPAGE */ 
.soblock--subheading{
	text-transform: uppercase; 
	font-size: 1.5rem; 
	color: var(--primary);
}
.soblock--heading{
/*	font-size: 3.4rem; */
}
.soblock--text{
	font-size: 1rem; 
	margin-bottom: 1.5rem; 
}

.wwd-services{
	display: flex; 
	margin: 2rem 0 0 0;
	flex-wrap: wrap;
}
.wwd-service{
	width: 33%; 
	padding: 0 1.3rem 1.3rem 0; 
}
.wwd-service .wwd-image{
	max-height: 10rem; 
	margin-bottom: 1rem;  
	overflow: hidden; 
}
.wwd-service .wwd-image svg, 
.wwd-service .wwd-image .svg-icon{
	height: 10rem; 
	width: auto; 
}
.wwd-service .wwd-image svg .st0{
	fill: black; 
}
.wwd-service p.service-title{
	font-weight: 600;
	font-size: 1.5rem;
	margin-bottom: 1rem;  
}
.wwd-service p.service-description{
	font-size: 1rem; 
	margin-bottom: 1rem;  
}

@media screen and (max-width: 992px){
	.wwd-service{
		width: 50%; 
	}
}
@media screen and (max-width: 636px){
	.wwd-service{
		width: 100%; 
	}
}

/* HOMEPAGE */
.featured-cs .featured-cs--item{
    border: 1px solid var(--dark);
    border-radius: 25px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.featured-cs .featured-cs--content,
.featured-cs .featured-cs--image-wrap{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    flex-grow: 1;
}
.featured-cs .featured-cs--image{
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 20px;
}
.featured-cs .featured-cs--image img{
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.featured-cs .featured-cs--title,
.featured-cs .featured-cs--title a{
    color: var(--dark);
}
.featured-cs .featured-cs--title a:hover{
    color: var(--primary);
}
.featured-cs .featured-cs--excerpt i{
    font-style: normal;
}
.featured-cs .featured-cs--excerpt strong{
    font-size: 1.2rem;
}
@media screen and (min-width: 993px){
    .featured-cs .featured-cs--item{
        flex-direction: row;
        gap: 5rem;
    }
    .featured-cs .featured-cs--image{
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        min-height: 45rem;
        aspect-ratio: inherit;
    }
}


/* CASE STUDIES ARCHIVE*/ 

.so-cs-grid .fl-post-feed{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem
}
.so-cs-grid .so-cs-grid--item{
    width: 100%;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 25px;
    padding: 1.5rem;
}
.so-cs-grid .so-cs-grid--item-image{
    width: 100%;
    aspect-ratio: 4/3;
    position: relative;
    background: var(--secondary);
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 1rem;
}
.so-cs-grid .so-cs-grid--item-image img{
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.so-cs-grid .so-cs-grid--item-image:hover img{
    transform: scale(1.1);
}
.so-cs-grid .so-cs-grid--item-content{
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.so-cs-grid .so-cs-grid--item-heading,
.so-cs-grid .so-cs-grid--item-heading a{
    color: var(--dark);
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.so-cs-grid .so-cs-grid--item-heading a:hover{
    color: var(--primary);
}
.so-cs-grid .so-cs-grid--item-meta{
    color: var(--primary);
}
@media screen and (min-width: 769px){
	.so-cs-grid .so-cs-grid--item{
		max-width: calc(50% - 0.75rem);
	}
}
@media screen and (min-width: 993px){
    .so-cs-grid .so-cs-grid--item{
        max-width: calc(33.33% - 1rem);
    }
}


.so-page-content-block .cs-intro{
/*	padding-right: 22%; */
}
.so-page-content-wrap .cs-intro p:first-of-type {
	font-size: 3rem; 
	line-height: 1.2;
	font-weight: 400;
}
@media screen and (max-width: 992px){
	.so-page-content-block .cs-intro{
		padding-right: 0%; 
	}
}

.so-cs-grid .pp-custom-grid-post {
	border-radius: 25px;
	border-color: white;
	display: flex;
	flex-direction: column;
}
.so-cs-grid .pp-custom-grid-post .pp-custom-grid-post-image a{
	display: block;
	position: relative;
	width: 100%;
	aspect-ratio: 4/3;
	border-radius: 10px;
	overflow: hidden;
}
.so-cs-grid .pp-custom-grid-post .pp-custom-grid-post-image a img{
	position: absolute;
	top: 0; left: 0;
	width: 100% !important; 
	height: 100% !important;
	object-fit: cover;
	transition: transform 0.3s;
}
.so-cs-grid .pp-custom-grid-post .pp-custom-grid-post-image a:hover img{
	transform: scale(1.1);
}
.so-cs-grid .pp-custom-grid-post .pp-custom-grid-post-text {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}
.so-cs-grid .pp-custom-grid-post .pp-custom-grid-post-title{
	font-size: 1.2rem;
	margin-bottom: 1rem; 
	max-width: 18rem;
}
.so-cs-grid .pp-custom-grid-post .pp-custom-grid-post-title a, 
.so-cs-grid .pp-custom-grid-post .pp-custom-grid-post-title a:visited{
	font-size: 1.2rem; 
	color: var(--dark);
	font-weight: 600; 
}
.so-cs-grid .pp-custom-grid-post .pp-custom-grid-post-title a:hover, 
.so-cs-grid .pp-custom-grid-post .pp-custom-grid-post-title a:visited:hover{
	color: var(--primary);
}
.so-cs-grid .pp-custom-grid-post .pp-custom-grid-post-meta {
	color: var(--primary);
	font-size: 1rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	justify-content: flex-end;
}

/* CASE STUDY PAGE */
.so-page-intro .fl-html{
    background: white;
    border-radius: 25px;
    padding: 2rem 2rem 1rem;
    margin-bottom: 3rem;
}
.so-page-intro{
    margin-top: -15rem;
}
.so-page-intro strong{
	font-size: 1.2rem;
}
#page-header.has-page-intro > .fl-row-content-wrap{
    padding-bottom: 12rem;
}
@media screen and (min-width: 769px){
    .so-page-intro .fl-html{
        padding: 5% 8% calc(5% - 1rem);
    }
}

/* ACCORDIONS */
.so-accordion{
	display: flex;
	flex-direction: column;
	list-style: none;
	gap: 1rem;
	padding: 0;
}
.so-accordion .so-accordion--item{
	border-radius: 5px;
	border-style: solid;
	border-width: 1px;
	border-color: var(--dark);
	background: none;
	transition: background 0.3s, border-color 0.3s;
}
.so-accordion .so-accordion--item-label{
	padding: 1rem;
	cursor: pointer;
}
.so-accordion .so-accordion--item-content{
	opacity: 0;
	overflow: hidden;
	height: 100%;
	max-height: 0;
	transition: opacity 0.3s, height 0.3s, padding 0.3s;
}
.so-accordion .so-accordion--item:hover,
.so-accordion .so-accordion--item.active{
	background: white;
	border-color: white;
}
.card .so-accordion .so-accordion--item:hover,
.card .so-accordion .so-accordion--item.active{
	background: var(--secondary);
	border-color: var(--secondary);
}
.so-accordion .so-accordion--item .so-accordion--item-content{
	padding: 0 1rem;
}
.so-accordion .so-accordion--item.active .so-accordion--item-content{
	opacity: 1;
	padding: 0 1rem 1rem;
	max-height: 100%;
}
.so-accordion .so-accordion--item.active .so-accordion--item-content p:last-of-type{
	margin-bottom: 0;
}
.so-accordion .so-accordion--item-heading{
	font-size: 1rem;
	margin: 0;
}

/* ADVICE CENTRE */
.so-advice-centre .so-advice-centre--row{
	padding: 4rem 0;
}
.so-advice-centre--row-content,
.so-advice-centre--feature-content{
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}
.so-advice-centre .so-advice-centre--image-col,
.so-advice-centre .so-advice-centre--content-col{
	width: 100%;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}
.so-advice-centre .so-advice-centre--image,
.so-advice-centre .so-advice-centre--img{
	width: 100%;
	height: auto;
	border-radius: 10px;
}
.so-advice-centre .so-advice-centre--heading{
	font-size: 2rem;
}
.so-advice-centre .so-advice-centre--text{
	margin-bottom: 0.5rem !important;
}
.so-advice-centre .so-advice-centre--row.feature-row,
.so-advice-centre .so-advice-centre--image-caption{
	text-align: center;
}
.so-advice-centre .so-advice-centre--feature-content{
	text-align: left;
}
.so-advice-centre .so-advice-centre--row.feature-row .so-advice-centre--text{
	max-width: 50rem;
	margin-bottom: 1.5rem !important;
	margin-left: auto;
	margin-right: auto;
}
.so-advice-centre .so-advice-centre--row.feature-row{
	position: relative;
	background: white;
	margin-top: 2rem;
	padding-top: 2rem;
	z-index: 1;
}
.so-advice-centre .so-advice-centre--row.feature-row:after{
	content: '';
	position: absolute;
	top: 0; left: -100vw;
	width: 200vw; height: 100%;
	background: white;
	z-index: -1;
}
@media screen and (min-width: 993px){
	.so-advice-centre .so-advice-centre--row-content,
	.so-advice-centre .so-advice-centre--feature-content{
		flex-direction: row;
	}
	.so-advice-centre .so-advice-centre--row-content.card-alt{
		flex-direction: row-reverse;
	}
	.so-advice-centre .so-advice-centre--image-col{
		max-width: 45%;
	}
	.so-advice-centre .so-advice-centre--image-col + .so-advice-centre--content-col,
	.so-advice-centre .so-advice-centre--feature-content .so-advice-centre--image-col + .so-accordion{
		max-width: 55%;
	}
	.so-advice-centre .so-advice-centre--row:not(.feature-row) .so-advice-centre--img{
		aspect-ratio: 9/10;
		object-fit: cover;
	}
}

/* ADVICE CENTRE GRID */
.so-advice-centre-grid{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.so-advice-centre-grid .so-advice-centre-grid--item{
    width: 100%;
    background: var(--secondary);
    border-radius: 25px;
    padding: 1.5rem;
}
.so-advice-centre-grid .so-advice-centre-grid--image{
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 10px;
    background: white;
    margin-bottom: 1rem;
    overflow: hidden;
}
.so-advice-centre-grid .so-advice-centre-grid--img{
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.so-advice-centre-grid .so-advice-centre-grid--image:hover .so-advice-centre-grid--img{
    transform: scale(1.1);
}
.so-advice-centre-grid .so-advice-centre-grid--heading,
.so-advice-centre-grid .so-advice-centre-grid--heading a{
    color: var(--dark);
    margin: 0;
    font-size: 1.1rem;
}
.so-advice-centre-grid .so-advice-centre-grid--heading a:hover{
    color: var(--primary);
}
@media screen and (min-width: 769px){
    .so-advice-centre-grid .so-advice-centre-grid--item{
        max-width: calc(50% - 0.75rem);
    }
}
@media screen and (min-width: 993px){
    .so-advice-centre-grid .so-advice-centre-grid--item{
        max-width: calc(25% - 1.5rem);
    }
}

/* CONTACT PAGE */
.so-contact-page-row .fl-module,
.so-contact-page-row .fl-module-content,
.so-contact-page-row .fl-html,
.so-contact-page-row .card,
.so-contact-page-row .card-alt{
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	justify-content: center;
}
.so-contact-details{
    display: flex;
    flex-direction: column;
}
.so-contact-details--content h4{
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
}
.so-contact-details--content strong{
    font-size: 1.1rem;
}
.so-contact-details--info{
    display: flex;
    flex-direction: column;
    gap: 0.5rem
}
.so-contact-details--info a{
    font-size: 1.2rem;
}
.so-contact-details--info a i{
    font-size: 1.25rem;
    text-align: center;
    width: 1.5rem;
    margin-right: 0.5rem;
}
.so-contact-details--info a span{
    color: var(--dark);
}
.so-contact-details--info a:hover i,
.so-contact-details--info a:hover span{
    color: var(--primary);
}
.so-contact-details--legal{
    margin-top: 1.5rem;
}

/* FORMS */
.so-form .ff-default .ff-el-form-control{
    border-radius: 5px;
    background: white;
    border-color: white;
    color: var(--dark);
    resize: none;
}
.so-form .ff-default .ff-el-form-control::placeholder{
    color: var(--dark);
    opacity: 0.45;
}
.so-form.card .ff-default .ff-el-form-control{
    background: var(--secondary);
    border-color: var(--secondary);
}
.so-form .ff-default .ff-el-form-control:focus,
.so-form.card .ff-default .ff-el-form-control:focus{
    background: white;
    border-color: #ccc;
}
.so-form .ff-default .ff-btn.so-btn{
    border: 1.5px solid var(--primary);
    border-radius: 2rem !important;
    min-width: 8rem;
}
.so-form .ff-default .ff-btn.so-btn:hover{
    border-color: var(--primary);
}
.so-form .ff-default .ff-btn.ff-btn-submit.so-btn{
    font-size: 1.1rem;
    border-width: 2px;
    margin-left: auto;
}
.so-form .fluentform .ff_submit_btn_wrapper{
    margin-bottom: 0;
}

/* BG PATTERNS */
.fl-row-content-wrap{
    z-index: 1;
}
.bg-spirals > .fl-row-content-wrap:after{
    content: '';
    position: absolute;
    width: 55%;
    max-width: 70rem;
    aspect-ratio: 1/1;
    top: 10rem; left: -20%;
    background-image: url(/wp-content/themes/so-child/svg/spiral.svg);
    background-repeat: no-repeat;
    background-size: 90% 90%;
    background-position: center;
    filter: blur(1rem);
    opacity: 0.25;
    z-index: -1;
}
.bg-spirals > .fl-row-content-wrap:before{
    content: '';
    position: absolute;
    width: 50%;
    max-width: 70rem;
    aspect-ratio: 1/1;
    top: 120rem; right: -15%;
    background-image: url(/wp-content/themes/so-child/svg/spiral-dark.svg);
    background-repeat: no-repeat;
    background-size: 90% 90%;
    background-position: center;
    filter: blur(1rem);
    opacity: 0.25;
    z-index: -1;
}
.bg-spirals-flip > .fl-row-content-wrap:after{
    content: '';
    position: absolute;
    width: 55%;
    max-width: 70rem;
    aspect-ratio: 1/1;
    top: 10rem; right: -20%;
    background-image: url(/wp-content/themes/so-child/svg/spiral.svg);
    background-repeat: no-repeat;
    background-size: 90% 90%;
    background-position: center;
    filter: blur(1rem);
    opacity: 0.25;
    z-index: -1;
}
.bg-spirals-flip > .fl-row-content-wrap:before{
    content: '';
    position: absolute;
    width: 50%;
    max-width: 70rem;
    aspect-ratio: 1/1;
    top: 120rem; left: -15%;
    background-image: url(/wp-content/themes/so-child/svg/spiral-dark.svg);
    background-repeat: no-repeat;
    background-size: 90% 90%;
    background-position: center;
    filter: blur(1rem);
    opacity: 0.25;
    z-index: -1;
}