/*
Theme Name: Elevation 360
Version: 1.0
Theme URI: https://cyberoptik.net/
Description: Customizable responsive Wordpress theme created by CyberOptik
Author: CyberOptik
Author URI: https://cyberoptik.net/
Template: optik-theme
*/





/******************************************************************************
 * * *  IMPORTS & VARIABLES  * * * * * * * * * * * * * * * * * * * * * * * * *
 ******************************************************************************/

@import url("../optik-theme/style.css");



/* Add font imports here */

/***  Montserrat  ***/ 

/* Regular */
@font-face {
	font-family: 'Montserrat';
	font-weight: 400;
	src: url('fonts/montserrat/montserrat-regular.woff2');
}

/*Regular Italic */
@font-face {
	font-family: 'Montserrat';
	font-style: italic;
	src: url('fonts/montserrat/montserrat-italic.woff2');
}

/* Medium */
@font-face {
	font-family: 'Montserrat';
	font-weight: 500;
	src: url('fonts/montserrat/montserrat-medium.woff2');
}

/* Bold */
@font-face {
	font-family: 'Montserrat';
	font-weight: 700;
	src: url('fonts/montserrat/montserrat-bold.woff2');
}



/******************************************************************************
 * * *  STRUCTURAL ELEMENTS  * * * * * * * * * * * * * * * * * * * * * * * * * 
 ******************************************************************************/



/***  UNIVERSAL STYLES  ***/

html {
	font-size: 16px;
	scroll-behavior: smooth;/*smooth anchor scroll*/
	scroll-padding-top: 60px;/*offset for sticky header*/
}

body {
	line-height: 1.6em;
	font-family: var(--wp--custom--font--1);
	color: var(--wp--custom--dark--2);
}



/***  BACK TO TOP BUTTON  ***/

.btt-button .fa {
	border-radius: var(--wp--custom--radius--full);
	background-color: var(--wp--custom--primary--main);
	font-weight: 300;
	color: white;
}

.btt-button:hover .fa {
	background-color: var(--wp--custom--primary--light);
	color: white;
}





/******************************************************************************
 * * *  CONTENT STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 ******************************************************************************/



/***  TEXT & LINKS  ***/

a {
	color: var(--wp--custom--primary--main);
}

a:hover {
	color: var(--wp--custom--primary--light);
}



/***  HEADINGS  ***/

h1, h2, h3, h4, h5, h6{font-weight: 500;}

h1 {
	font-size: 3.75em;
}

h2 {
	font-size: 2.5em;
}

h3 {
	font-size: 1.3125em;
}

h4 {
	font-size: 1.25em;
}

h5 {
	font-size: 1em;
}

h6 {
	font-size: 0.85em;
}

@media screen and (max-width:900px) {
	h1{font-size: 3.25em;}
	h2{font-size: 2em;}
}

@media screen and (max-width:600px) {
	h1{font-size: 2.5em;}
	h2{font-size: 1.75em!important;}
}



/***  BORDERS & DIVIDERS  ***/

hr, .divider {
	display: block;
	width: 100%;
	height: 1px;
	border: 0;
	border-top: 1px solid #e2e2e2;
	margin: 2.5em auto;
	padding: 0;
}



/***  BUTTONS  ***/

.button, 
.wp-block-button__link, 
.button-outline, 
.is-style-outline .wp-block-button__link {
	padding: 0.75em 2.25em;
	border-color: var(--wp--custom--primary--dark);
	border-radius: var(--wp--custom--radius--sm);
	background-color: var(--wp--custom--primary--dark);
	border-radius: var(--wp--custom--radius--xl);
	color: white;
}

.button:hover, 
.wp-block-button__link:hover, 
.button-outline:hover,
.is-style-outline .wp-block-button__link:hover {
	border-color: var(--wp--custom--primary--light);
	background-color: var(--wp--custom--primary--light);
}

.button [class*="fa-"], 
.wp-block-button__link [class*="fa-"], 
.button:hover [class*="fa-"], 
.wp-block-button__link:hover [class*="fa-"] {
	color: inherit !important;
}

/*secondary button*/
.secondary-button.button, 
.secondary-button .wp-block-button__link, 
.secondary-button .button-outline, 
.secondary-button .is-style-outline .wp-block-button__link {
	background-color: var(--wp--custom--secondary--dark);
	border-color: var(--wp--custom--secondary--dark);
	color: white;
}

.secondary-button.button:hover, 
.secondary-button .wp-block-button__link:hover, 
.secondary-button .button-outline:hover,
.secondary-button .is-style-outline .wp-block-button__link:hover {
	border-color: var(--wp--custom--secondary--light);
	background-color: var(--wp--custom--secondary--light);
}

/*white button*/
.white-button.button, 
.white-button .wp-block-button__link, 
.white-button .button-outline, 
.white-button .is-style-outline .wp-block-button__link {
	border-color: white;
	background-color: white;
	color: var(--wp--custom--dark--1);
}

.white-button.button:hover, 
.white-button .wp-block-button__link:hover, 
.white-button .button-outline:hover,
.white-button .is-style-outline .wp-block-button__link:hover {
	border-color: var(--wp--custom--secondary--main);
	background-color: var(--wp--custom--secondary--main);
	color: white;
}


/* OUTLINED BUTTONS */

.button-outline, 
.is-style-outline .wp-block-button__link {
	background: none;
	color: var(--wp--custom--primary--main);
}

.button-outline:hover,
.is-style-outline .wp-block-button__link:hover {
	background: none;
	border-color: var(--wp--custom--secondary--main);
	color: var(--wp--custom--secondary--main);
}

/*secondary*/
.secondary-button.button-outline, 
.secondary-button.is-style-outline .wp-block-button__link {
	color: var(--wp--custom--secondary--main);
	border-color: var(--wp--custom--secondary--main);
}

.secondary-button.button-outline:hover,
.secondary-button.is-style-outline .wp-block-button__link:hover {
	color: var(--wp--custom--primary--main);
	border-color: var(--wp--custom--primary--main);
}

/*white*/
.white-button.button-outline, 
.white-button.is-style-outline .wp-block-button__link {
	background: none;
	color: white;
}

.white-button.button-outline:hover,
.white-button.is-style-outline .wp-block-button__link:hover {
	color: var(--wp--custom--secondary--main);
	border-color: var(--wp--custom--secondary--main);
}




/***  ICONS  ***/

.fa {font-weight: 300;}

/* Icon Colors */

.fa, .fas, .far, .fal, .fab {
	color: var(--wp--custom--primary--main);
}

a .fa, a .fas, a .far, a .fal, a .fab {
	color: var(--wp--custom--primary--main);
}

a:hover .fa, a:hover .fas, a:hover .far, a:hover .fal, a:hover .fab {
	color: var(--wp--custom--secondary--main);
}

/* Icon Backgrounds */

.fa-bg {
	background-color: var(--wp--custom--primary--main);
	color: white;
}

a .fa-bg {
	background-color: var(--wp--custom--primary--main);
	color: white;
}

a:hover .fa-bg {
	background-color: var(--wp--custom--secondary--main);
	color: white;
}

/* Icon Borders */

.fa-br {
	border-color: var(--wp--custom--primary--main);
}

a .fa-br {
	border-color: var(--wp--custom--primary--main);
}

a:hover .fa-br {
	border-color: var(--wp--custom--secondary--main);
}



/***  LISTS  ***/

.arrow-list li:before, 
.check-list li:before, 
.check-circle-list li:before, 
.icon-list li:before, 
.contact-list li:before {
	color: var(--wp--custom--primary--main);
	font-weight: 700;
}

.social-list i{transition: all 300ms ease-in-out;}

.social-list i:hover{ transform: scale(1.15); }



/***  FORMS  ***/

/* Inputs */

input[type="text"], input[type="email"], input[type="number"], 
input[type="password"], input[type="search"], input[type="tel"], 
input[type="url"], input[type="date"], input[type="datetime-local"], 
input[type="month"], input[type="time"], input[type="week"], 
textarea, select, .filter-reset {
	border-radius: var(--wp--custom--radius--xs);
}

input[type="text"]:focus, input[type="email"]:focus, input[type="number"]:focus, 
input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, 
input[type="url"]:focus, input[type="date"]:focus, input[type="datetime-local"]:focus, 
input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, 
textarea:focus, select:focus {
	border-color: var(--wp--custom--primary--main);
}

select{
	background: white url(/wp-content/themes/optik-theme/images/icon-angle-down.svg) center right 5px no-repeat;
	background-size: 15px;
}

/* Buttons */

input[type="submit"], input[type="reset"], input[type="button"] {
	border-color: var(--wp--custom--primary--main);
	background-color: var(--wp--custom--primary--main);
	border-radius: var(--wp--custom--radius--xl);
	color: white;
	font-weight: 400;
}

input[type="Submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover {
	border-color: var(--wp--custom--primary--light);
	background-color: var(--wp--custom--primary--light);
	color: white;
}

input[type="Submit"]:active, input[type="reset"]:active, input[type="button"]:active {
	border-color:  var(--wp--custom--primary--dark);
	background-color:  var(--wp--custom--primary--dark);
	color: white;
}

/* Ninja Forms */

.nf-form-fields-required {display: none;}

div.nf-field-element textarea{height: 100px;}

div.label-above .nf-field-label{margin-bottom: 0;}





/******************************************************************************
 * * *  HEADER STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 ******************************************************************************/



/***  SCROLL BAR  ***/

.scroll-bar {
	background-color: white;
	box-shadow: var(--wp--custom--shadow--1);
}


/***  TOP BAR  ***/

.top-bar {
	background-color: var(--wp--custom--light--2);
}



/***  HEADER  ***/

/* .header-masthead{padding: 0;} */

.header-logo {
	max-height: 70px;
}

/* Menu Button */

.header .menu-button .fa, 
.header .menu-button:hover .fa {
	color: var(--wp--custom--dark--1);
}

.header .menu-button.active .fa {
	background-color: var(--wp--custom--primary--main);
	color: white;
}



/***  NAVBAR  ***/

.navbar {
}



/***  NAV MENUS  ***/

.nav-menu > li > a {
	color: var(--wp--custom--dark--3);
}

.single-service .nav-menu > li.services-link > a, 
.single-service .nav-menu > li.services-link > span, 
.single-product .nav-menu > li.products-link > a, 
.single-product .nav-menu > li.products-link > span, 
.single-member .nav-menu > li.members-link > a, 
.single-member .nav-menu > li.members-link > span, 
.single-post .nav-menu > li.posts-link > a, 
.single-post .nav-menu > li.posts-link > span, 
.category .nav-menu > li.posts-link > a, 
.category .nav-menu > li.posts-link > span, 
.nav-menu > li.current-menu-ancestor > a, 
.nav-menu > li.current-menu-ancestor > span, 
.nav-menu > li.current-page-ancestor > a, 
.nav-menu > li.current-page-ancestor > span, 
.nav-menu > li.current-menu-item > a, 
.nav-menu > li:hover > a {
	color: var(--wp--custom--primary--main);
}

/* Nav Button */

.nav-menu > li.nav-button > a > span {
	padding: 0.75em 1.5em;
	margin-top: -0.75em;
	margin-bottom: -0.75em;
	background-color: var(--wp--custom--primary--main);
	border-radius: var(--wp--custom--radius--xl);
	color: white;
}

.nav-menu > li.nav-button:hover > a > span {
	background-color: var(--wp--custom--primary--light);
}



/***  DROPDOWN MENUS  ***/

.nav-menu li ul li:first-child {
	padding-top: 8px;
}

.nav-menu li ul li:last-child {
	padding-bottom: 8px;
}

.nav-menu li ul li > a, 
.nav-menu li ul li > span {
	color: var(--wp--custom--dark--3);
}

.nav-menu li ul li.current-menu-item > a, 
.nav-menu li ul li:hover > a {
	color: var(--wp--custom--primary--main);
}

/* Nested Dropdowns */

.nav-menu li ul li ul {
	top: -8px;
}



/***  HIDDEN NAV  ***/

.hidden-menu li a {
	color: var(--wp--custom--dark--3);
}

.hidden-menu li.current-menu-item > a {
	color: var(--wp--custom--primary--main);
}

.hidden-nav::-webkit-scrollbar {
	width: 10px;
	background-color: var(--wp--custom--light--1, #E9E9E9);
}

.hidden-nav::-webkit-scrollbar-thumb {
	border: 0;
	background-color: var(--wp--custom--dark--3, #898989);
}





/******************************************************************************
 * * *  BODY STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 ******************************************************************************/



/***  BANNER  ***/

.banner {
	background-color: var(--wp--custom--dark--1);
	text-align: left;
}

.banner-inner {
	padding-top: var(--wp--custom--spacer--lg);
	padding-bottom: var(--wp--custom--spacer--lg);
	max-width: 700px;
    margin-left: 0;
}

.banner-viewheight .banner-inner {
	padding-top: calc(var(--wp--custom--spacer--lg) + 140px);
	padding-bottom: var(--wp--custom--spacer--lg);
}

.banner .deck-wrap{
	font-size: 1.2em;
	margin-top: 30px;
}

.banner a {
	color: var(--wp--custom--primary--light);
}

.banner a:hover {
	color: white;
}



/***  HEADLINE BAR  ***/

.headline-bar {
}



/***  ENTRY NAVBAR  ***/

.entry-menu > li > a {
	color: var(--wp--custom--dark--3);
}

.entry-menu > li.current-menu-item > a, 
.entry-menu > li:hover > a {
	color: var(--wp--custom--primary--main);
}



/***  MAIN  ***/

.main-boxed, 
.main-sidebar {
	padding-top: var(--wp--custom--spacer--xxl);
	padding-bottom: var(--wp--custom--spacer--xxl);
}

.spaced-xs, 
.spaced-xs-top {
	padding-top: var(--wp--custom--spacer--xs);
}

.spaced-xs, 
.spaced-xs-btm {
	padding-bottom: var(--wp--custom--spacer--xs);
}

.spaced-sm, 
.spaced-sm-top {
	padding-top: var(--wp--custom--spacer--sm);
}

.spaced-sm, 
.spaced-sm-btm {
	padding-bottom: var(--wp--custom--spacer--sm);
}

.spaced, 
.spaced-top, 
.spaced-md, 
.spaced-md-top {
	padding-top: var(--wp--custom--spacer--md);
}

.spaced, 
.spaced-btm, 
.spaced-md, 
.spaced-md-btm {
	padding-bottom: var(--wp--custom--spacer--md);
}

.spaced-lg, 
.spaced-lg-top {
	padding-top: var(--wp--custom--spacer--lg);
}

.spaced-lg, 
.spaced-lg-btm {
	padding-bottom: var(--wp--custom--spacer--lg);
}

.spaced-xl, 
.spaced-xl-top {
	padding-top: var(--wp--custom--spacer--xl);
}

.spaced-xl, 
.spaced-xl-btm {
	padding-bottom: var(--wp--custom--spacer--xl);
}



/***  ARCHIVE  ***/

/* Entry Cols */

.entry-cols .entry-link {
	border-radius: var(--wp--custom--radius--md);
	background-color: var(--wp--custom--light--2);
	overflow: hidden;
	color: var(--wp--custom--dark--2);
}

.entry-cols .entry-link:hover {transform: translateY(-3px);}

.entry-cols .entry-icon-wrap:first-child {padding: 30px 30px 0;}

.entry-cols .entry-icon svg {
	width: 60px;
	fill: var(--wp--custom--primary--main);
}

.entry-cols .entry-text-wrap {padding: 30px;}

.includes-link-text .entry:not(.col-full) .entry-text-wrap {padding-bottom: 80px;}

.entry-cols .entry:not(.col-full) .entry-link-text-wrap {
	left: 30px;
	bottom: 30px;
}

.entry-cols .entry-link .entry-link-text {color: var(--wp--custom--primary--main);}

.entry-cols .entry-link:hover .entry-link-text {color: var(--wp--custom--primary--light);}

/*post-cols*/
.post-cols .entry-link{
	background-color: var(--wp--custom--light--3);
}

.post-cols .entry-link:hover{
	background-color: var(--wp--custom--light--1);
	box-shadow: var(--wp--custom--shadow--2);
}

.post-cols .entry-title{margin-bottom: 25px!important;}

/* Archive Pagination */

.archive-pagination a {
	border-radius: var(--wp--custom--radius--xl);
	border-color: var(--wp--custom--light--1);
	color: var(--wp--custom--primary--main);
}

.archive-pagination a:hover {
	border-color: var(--wp--custom--primary--light);
	color: var(--wp--custom--primary--light);
}

.archive-pagination a .fa, 
.archive-pagination a:hover .fa {
	color: inherit !important;
	transition: all 0ms ease-in-out;
}


.archive-navbar .filter-form{
    display: flex;
    justify-content: center;
    gap: 10px 0;
    flex-wrap: wrap;
}


/***  SINGLE  ***/





/******************************************************************************
 * * *  FOOTER STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 ******************************************************************************/



/***  CTA BAR  ***/

.cta-bar {
	padding-top: var(--wp--custom--spacer--xxl);
	padding-bottom: var(--wp--custom--spacer--xxl);
	background: linear-gradient(159deg, var(--wp--custom--primary--dark) 10%, var(--wp--custom--primary--light) 100%);
	color: white;
}

.cta-bar h1, 
.cta-bar h2, 
.cta-bar h3, 
.cta-bar h4, 
.cta-bar h5, 
.cta-bar h6 {color: white;} 




/***  FOOTER  ***/

.footer {
	padding-top: var(--wp--custom--spacer--lg);
	padding-bottom: var(--wp--custom--spacer--lg);
	background-color: var(--wp--custom--light--3);
	font-size: 0.9em;
}

.footer a {
	color: var(--wp--custom--dark--3);
}

.footer a:hover {
	text-decoration: none;
	color: var(--wp--custom--primary--light);
}

.footer .contact-list{
	display: flex;
	justify-content: space-between;
	gap: 20px;
	text-align: center;
	margin-bottom: 40px;
}

.footer .contact-list li{
	margin-left: 0;
	flex: 1;
}

.footer .contact-list li:before{
	margin: auto;
	position: initial;
	font-weight: 700;
    font-size: 1.5em;

}

@media screen and (max-width:650px) {
	.footer .contact-list{flex-direction: column;}
}

.footer .social-list{
	display: flex;
	justify-content: center;
	gap: 20px;
	font-size: 1.2em;
}

/***  6.3 BOTTOM BAR  ***/

.bottom-bar {
	background-color: var(--wp--custom--light--2);
	font-size: 0.9em;
}

/* Menus */

.bottom-bar .menu a {
	color: var(--wp--custom--dark--3);
}

.bottom-bar .menu a:hover {
	text-decoration: none;
	color: var(--wp--custom--primary--light);
}





/******************************************************************************
 * * *  7 CUSTOM STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 ******************************************************************************/

/* Add custom theme styles here */

/*CONTENT BLOCK IMAGE WITH LINKS*/
section#main .wp-block-image a img{transition: all 300ms ease-in-out;}

section#main .wp-block-image a:hover img { transform: scale(1.05); }

/*MEDIA TEXT WIDGET*/
@media screen and (max-width:600px){
    .wp-block-media-text__media img{
        width:auto;
		max-width: 100%;
		margin-bottom: 1em;
    }

	.wp-block-media-text>.wp-block-media-text__content{padding:0;}
}


/*BLOCK COLUMNS*/
@media screen and (max-width: 900px) {
    /*customized column width to full width on tablet*/
    .wp-block-columns .wp-block-column{flex-basis:100%!important;}
    
	.tablet-reverse-order{flex-direction: column-reverse;}

	.tablet-reverse-order .wp-block-column{width: auto;}

	.no-padding-tablet{
		padding-top: 0!important;
		padding-bottom: 0!important;
	}
}

@media screen and (max-width: 781px) {
	.mobile-reverse-order{flex-direction: column-reverse;}
}

/*half-cover*/
.half-cover.wp-block-cover .wp-block-cover__image-background{width: 50%;}

.half-cover.hc-right .wp-block-cover__image-background{
	left: unset;
	right: 0;
}

.half-cover .wp-block-columns .wp-block-column{
	padding-left: var(--wp--custom--spacer--lg)!important;
	padding-right: var(--wp--custom--spacer--sm) !important;
}

@media screen and (max-width:900px) {
	.half-cover{
		display: flex;
		flex-direction: column;
	}

	.half-cover .wp-block-columns .wp-block-column{
		padding-left: var(--wp--custom--spacer--sm)!important;
	}

	.half-cover.wp-block-cover .wp-block-cover__image-background{
		position: initial;
        width: calc(100% + 34px);
        margin-left: -17px;
        margin-right: -17px;
	}
	
	.half-cover > .wp-block-cover__inner-container > .wp-block-columns{
		padding-top: var(--wp--preset--spacing--md)!important;
		padding-bottom:0!important;
	}
	
	div.wp-block-column:empty {display:none!important;}
}

/*BOXED COLS*/
.boxed-cols .wp-block-column{
	background-color: var(--wp--custom--light--1);
	padding: 40px;
	box-shadow: var(--wp--custom--shadow--1);
	border-radius: var(--wp--custom--radius--sm);
}

.boxed-cols-2 .wp-block-column {
    padding: 40px 30px 120px;
    color: white;
		background-color: var(--wp--custom--primary--main);
	position: relative;
}

.boxed-cols-2 .wp-block-column:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: calc(100% + 2px);
	padding-bottom: calc(230 /1200 * 100%);
	background-image: url("data:image/svg+xml,%3Csvg width='1200' height='230' viewBox='0 0 1200 230' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 230L1200 0V230H0Z' fill='white'/%3E%3C/svg%3E%0A");
	background-size: cover;
	pointer-events: none;
}

body:not(.wp-admin) .boxed-cols-2 .wp-block-image img{
	position: absolute;
    right: 20px;
    bottom: 40px;
	box-shadow: var(--wp--custom--shadow--2);
}

.boxed-cols-2 .heading-line:after{background-color: white;}

.boxed-cols-2 .wp-block-column .wp-block-heading{
	color: white;
	position: relative;
	margin-top: 20px;
	font-weight: 700;
}

.boxed-cols-3 .wp-block-column{
	background-color: var(--wp--custom--light--3);
	padding: 40px;
	box-shadow: var(--wp--custom--shadow--1);
	border-radius: var(--wp--custom--radius--sm);
}

/*SPLIT COLS*/
@media screen and (max-width: 900px) {
	.split-cols{ 
		flex-direction: column; 
		gap: 0;
	}

	.split-cols > div{
		width: 100%;
        padding-left: 0 !important;
        padding-right: 0 !important;
	}

	.split-cols > div.has-background{
		margin-left: -40px;
		margin-right: -40px;
		width: calc(100% + 80px);
		order: 1;
	}
}


/*heading line*/
.heading-line{margin-block-start: 30px!important;}
 
.heading-line:after{
	content: '';
    height: 1px;
    width: 30px;
    position: absolute;
    top: -20px;
    left: 0;
	background-color: var(--wp--custom--primary--main);
}

.heading-line.hl-white:after,
.testimonials .heading-line:after{background-color: white;}

/*ROTATING WORDS*/
body:not(.block-editor-page) .rotating-words {
  display: inline-block;
  position: relative;
  height: 4em;
  overflow: hidden;
}

body:not(.block-editor-page) .rotating-words p {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  margin: 0 !important;
  transform: translatX(-100%);
  animation-name: slideHorizontalWord;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  width: 100%;
}

@keyframes slideHorizontalWord {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  5% {
    opacity: 1;
    transform: translateX(0);
  }
  50% {
    opacity: 1;
    transform: translateY(0);
  }
  55% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}


@media (min-width:601px) and (max-width:900px) {
    .tablet-2-cols.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column {
        flex-basis: calc(50% - 95px) !important;
    }
}


@media screen and (max-width:900px) {
	.orgs-succeed-section{
		padding-top:0!important;
		padding-bottom:0!important;
	}
	
	.orgs-succeed-section > .wp-block-columns{
		padding-left:0!important;
		padding-right:0!important;
	}
	
	.orgs-succeed-section > .wp-block-columns .wp-block-column{
		padding-left: var(--wp--preset--spacing--md)!important;
		padding-right: var(--wp--preset--spacing--md)!important;
	}
}
@media screen and (max-width:600px) {
	.orgs-succeed-section > .wp-block-columns .wp-block-column{
		padding-left: var(--wp--preset--spacing--sm)!important;
		padding-right: var(--wp--preset--spacing--sm)!important;
	}
}
/* Button on Dark */
.button_on_dark .wp-block-button__link:not(:hover) { border-color: white; }

.fab.fa-bg-brand{
	background-color:black;
}

.box-link:hover{
	cursor:pointer;
}

.contact-list .box-link:hover a{
    text-decoration: none;
    color: var(--wp--custom--primary--light);
}

/* Match image to container column */
@media screen and (min-width: 901px) {
	.match-image-column.wp-block-column,
	.match-image-column .wp-block-column { 
		position: relative;
		align-self: stretch !important; 
	}

	.match-image-column img { 
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center center;
	}
}


.policy_embed_div h1{font-size:32px !important;}

