/* ================================================================================================================================ */
/* ================================================================================================================================ */
/* ================================================================================================================================ */

	
	/* colour pallette */

	.has-black-background-color {
		 background-color:#222;
	 }

	.has-black-color {
		 color:#222;
	}

	.has-lightgrey-background-color {
		 background-color:#f5f5f5;
	 }

	.has-lightgrey-color {
		 color:#f5f5f5;
	}
	
	.has-white-background-color {
		 background-color:#ffffff;
	 }

	.has-white-color {
		 color:#ffffff;
	}

	.has-blue-background-color {
		 background-color:#01bee8;
	 }

	.has-blue-color {
		 color:#01bee8;
	}

	.has-green-background-color {
		 background-color:#a2ce62;
	 }

	.has-green-color {
		 color:#a2ce62;
	}
	
	/* blue */
	[data-background-color='#01bee8'] {
		background-color:#01bee8;
		color:#fff;
	}
	
	/* green */
	[data-background-color='#a2ce62'] {
		background-color:#a2ce62;
		color:#fff;
	}
	
	/* black */
	[data-background-color='#222'] {
		background-color:#222;
		color:#fff;
	}
	
	/* grey */
	[data-background-color='#f5f5f5'] {
		background-color:#f5f5f5;
		color:#222;
	}
	
	/* white */
	[data-background-color='#fff'] {
		background-color:#fff;
		color:#222;
	}
			
	/* -- overall formatting and layout -- */
	
	html {
		height:100%;
	}
	
	body {
		margin:0;
		font-family:museo-sans,sans-serif;
		font-size:16px;
		font-weight:300;
		line-height:130%;
		color:#222;
    background-color: #efefef;
	}
	
	.site_maxwidth {
		width:100%;
		max-width:1920px;
		margin:0 auto;
		background-color:#fff;
	}
	
	.panel_maxwidth {
		width:90%;
		max-width:1366px;
		margin:0 auto;
	}
	
	.vertical_padding {
		padding:32px 0;
	}
		
	h1,h2,h3,h4 {
		line-height:105%;
	}
	
	h1 {
		font-size:2em;
	}
	
	h2 {
		font-size:1.8em;
	}
	
	h3 {
		font-size:1.6em;
	}
	
	h4 {
		font-size:1.2em;
	}
	
	a {
		color:#111;
	}
	
	p:first-child,
	h1:first-child,
	h2:first-child,
	h3:first-child,
	h4:first-child,
	h5:first-child {
		margin-top:0;
	}
	
	p:last-child,
	h1:last-child,
	h2:last-child,
	h3:last-child,
	h4:last-child,
	h5:last-child {
		margin-bottom:0;
	}
	
	ul,ol {
		padding:0 0 0 20px;
	}
	
	ul li,
	ol li {
		line-height:120%;
		margin:8px 0;
	} 
	
	.basic_content figure {
		margin:24px 0;
	}
	
	.basic_content figure img {
		width:auto;
		height:auto;
		max-width:100%;
		vertical-align:top;
	}
	
	.basic_content figure figcaption {
		padding:12px 0;
		border-bottom:1px solid #ddd;
		font-size:0.9em;
	}

	.row-full-width .kt-row-column-wrap{
		width: 100%;
	}

	.image-full-width img{
		width: 100%;
	}
	
	/* -- buttons -- */
	
	.standard_button {
		display:inline-block;
		line-height:105%;
		padding:12px 16px;
		background-color:#222;
		color:#fff;
		text-decoration:none;
	}
	
	/* ---- form style ---- */
	
	.form {
		
	}
	
	.form * {
		box-sizing:border-box;
	}
	
	.form .row {
		
	}
	
	.form .row.hidden {
		display:none;
		visibility:hidden;
	}
	
	.debugmode .form .row.hidden {
		display:block;
		visibility:visible;
		opacity:0.25;
	}
	
	.form .row .field {
		margin-bottom:16px;
	}
	
	.form .row .field.full {
		
	}
	
	.form .row .field.half {
		
	}
			
	.form input[type='text'],
	.form input[type='email'],
	.form input[type='number'],
	.form input[type='tel'],
	.form input[type='password'],
	.form input[type='text']{
		width:100%;
		height:40px;
		line-height:40px;
		padding:0 12px;
		border:1px solid #ccc;
		font-weight:300;
		box-shadow:none;
	}
	
	.form input[type='text']:focus,
	.form input[type='email']:focus,
	.form input[type='number']:focus,
	.form input[type='tel']:focus,
	.form input[type='password']:focus,
	.form input[type='text']:focus {
		border-color:#999;
		outline:2px solid rgba(0,0,0,0.1);
		box-shadow:none;
	}
	
	.form input[type='checkbox'],
	.form input[type='radio'] {
		display:inline-block;
		margin-right:4px;
	}
	
	.form input[type='checkbox']:focus,
	.form input[type='radio']:focus {
		
	}
	
	.form input[type='submit'],
	.form input[type='button'] {
		height:40px;
		padding:0 16px;
		background-color:#222;
		color:#fff;
		text-decoration:none;
		line-height:105%;
		border:none;
		font-weight:700;
		cursor:pointer;
	}
	
	.form input[type='submit']:focus,
	.form input[type='button']:focus {
		outline:2px solid rgba(0,0,0,0.1);
	}
	
	.form input[type='submit']:disabled,
	.form input[type='button']:disabled {
		opacity:0.5;
	}
	
	.form.submitting input[type='submit'] {
		opacity:0.25;
	}
	
	.form textarea {
		width:100%;
		min-height:160px;
		resize:vertical;
		border:1px solid #ccc;
		font-weight:300;
		padding:12px;
		box-shadow:none;
	}
	
	.form textarea:focus {
		border-color:#999;
		outline:2px solid rgba(0,0,0,0.1);
		box-shadow:none;
	}
	
	.form select {
		width:100%;
		height:40px;
		border:1px solid #ccc;
		padding:0 8px;
		font-weight:300;
	}
	
	.form select:focus {
		border-color:#999;
		outline:2px solid rgba(0,0,0,0.1);
	}
	
	.form select::-ms-expand {
		border:1px solid #ccc;
	}
	.form select:-moz-focusring {
		border:1px solid #ccc;
	}
	
	.form label {
		display:inline-block;
		margin-bottom:4px;
	}
	
	.form .req {
		color:#999;
		font-weight:300;
	}
	
	.form label.checkbox {
		display:table;
		height:24px;
		line-height:24px;
		margin:0;
	}
	
	.form label.checkbox .input {
		display:table-cell;
		vertical-align:top;
		padding:6px 4px 6px 0;
		line-height:100%;
	}
	
	.form label.checkbox .text {
		display:table-cell;
		vertical-align:top;
		line-height:105%;
		padding:6px 0;
	}
	
	.table_wrap {
		position:relative;
		max-width:100%;
		overflow-x:scroll;
	}
	
	.form .message_done {
		display:none;
	}
	
	.form.submitted .message_done {
		display:block;
		background-color:#f5f5f5;
		border:1px solid #ccc;
		padding:32px;
		margin:0 0 32px 0;
	}
	
	.form.submitted .row {
		display:none;
	}
	
	.form .submitting {
		visibility:hidden;
	}

	.form .submitted {
		visibility:hidden;
	}

	.form[data-status='submitting'] .submitting {
		visibility:visible;
	}

	.form[data-status='submitted'] .submitted {
		visibility:visible;
	}

	.form .error_message {
		display:none;
		background-color:#fcc;
		color:#c00;
		padding:8px;
	}

	.form .field.error .error_message {
		display:block;
	}

	.form .lds-ripple div {
		border-color:#444;
	}

	.form .form_messages {

	}

	.form .form_messages .message {
		display:none;
		background-color:#f5f5f5;
		border:1px solid #ddd;
		margin:0 0 8px 0;
	}

	.form .form_messages .message.show {
		display:block;
	}

	.form .form_messages .message .inner {
		display:table;
		width:100%;
	}

	.form .form_messages .message .icon {
		display:table-cell;
		vertical-align:middle;
		padding:16px 0 16px 16px;
	}

	.form .form_messages .message .icon img {
		width:auto;
		height:auto;
		max-width:24px;
		max-height:24px;
	}

	.form .form_messages .message .text {
		display:table-cell;
		vertical-align:middle;
		padding:16px;
		width:100%;
	}

	.form .form_messages .message h2 {
		margin:0 0 8px 0;
		font-size:1.2em;
	}

	.form .form_messages .message p {
		margin:0;
	}

	.form .form_messages .message.success {
		border-color:#8cbf8c;
		background-color:#e5f2e5;
	}

	.form .form_messages .message.error {
		border-color:#ce9b9b;
		background-color:#f6e2e2;
	}
	
	.table_wrap {
		position:relative;
		max-width:100%;
		overflow-x:scroll;
	}

	/* ---- donation form ---- */
	
	.donate_page {
		background-color:#eee;
		background-image:url('../jpg/donate_bg_2.jpg');
    background-image:url('../jpg/yo-header-25.jpg');
		background-size:cover;
		background-position:center center;
		background-attachment:fixed;
		padding:32px 0;
	}
			
	.donate_box {
		background-color:#fff;
		box-shadow:2px 2px 8px rgba(0,0,0,0.2);
		max-width:768px;
	}
	
	.donate_box .box_heading {
		background-color: #00a7c7;
		color:#fff;
		padding:16px;
	}
	
	.donate_box .box_heading h1 {
		color:#fff;
		font-size:1.6em;
		margin:0;
		line-height:105%;
		text-transform:none;
		font-weight:700;
	}
	
	.donate_box .box_main {
		background-color:#f5f5f5;
	}
	
	.donate_box .box_summary {
		background-color:#fff;
		padding:16px;
	}
	
	.donate_box [data-show-if] {
		display:none;
	}
	
	.donate_box [data-show-if].show {
		display:block;
	}
	
	.donate_box .note {
		font-size:0.9em;
		color:#999;
		font-style:italic;
		line-height:110%;
	}
	
	.donate_box label .small {
		font-size:0.9em;
		color:#999;
	}
	
	.donate_box .step {
		
	}
	
	.donate_box .step .step_heading {
		padding:16px;
		background-color:#00bade;
		color:#fff;
	}
	
	.donate_box .step .step_heading h2 {
		font-size:1.2em;
		margin:0;
		line-height:105%;
		font-weight:500;
		color:#fff;
	}
	
	.donate_box .section {
		padding:16px;
		border-bottom:1px solid #ddd;
	}
	
	.donate_box fieldset {
		border:none;
		padding:16px 0 0 0;
	}
	
	.donate_box fieldset legend {
		font-weight:700;
	}
	
	.donate_box .big_checkbox label {
		display:block;
		background-color:#fff;
		padding:12px 16px;
		box-shadow:1px 1px 4px rgba(0,0,0,0.1);
		margin-bottom:4px;
	}
	
	.donate_box .big_checkbox input {
		display:none;
	}
	
	.donate_box .big_checkbox.radio label {
		border-radius:512px;
	}
	
	.donate_box .big_checkbox label:before {
		display:inline-block;
		width:8px;
		height:8px;
		content:'';
		margin-right:8px;
		background-color:#fff;
		border:2px solid #ddd;
	}
	
	.donate_box .big_checkbox.radio label:before {
		border-radius:50%;
	}
	
	.donate_box .big_checkbox label.checked {
		background-color:#00bade;
		color:#fff;
		box-shadow:inset 1px 1px 4px rgba(0,0,0,0.2);
	}
	
	.donate_box .big_checkbox label.checked:before {
		background-color:#00bade;
		background-color:#0290ab;
		border-color:#fff;
	}
	
	.donate_box .big_checkbox.green label.checked {
		background-color:#90d661;
		
	}
	
	.donate_box .big_checkbox.green label.checked:before {
		background-color:#90d661;
		background-color:#6db43d;
	}
	
	
	
	.donate_box .summary_info {
		margin-bottom:16px;
		font-size:1.2em;
		font-weight:500;
	}
	
	.donate_box .summary_info .small {
		font-size:0.8em;
		color:#999;
	}
		
	.donate_box .summary_info .donation_amount {
		font-weight:700;
	}
	
	.donate_box .submit input {
		padding:16px;
		background-color:#a2ce62;
		background-color:#9acc52;
		color:#fff;
		font-weight:700;
		text-transform:uppercase;
		border:none;
	}
	
	.donate_box .submit input:active {
		transform:scale(0.95);
	}
	
	#donate_form[data-status='submitting'] .submit input,
	#donate_form[data-status='success'] .submit input {
		background-color:#eee;
	}
	
	#donate_form .form_status .message {
		display:none;
		visibility:visible;
		border:1px solid #ccc;
		padding:16px;
		margin:0 0 8px 0;
	}
	
	#donate_form .form_status .submitting {
		background-color:#f6f4dc;
		border-color:#dedcbf;
	}
	
	#donate_form .form_status .success {
		background-color:#e1f5c5;
		border-color:#b0ce87;
	}
	
	#donate_form .form_status .validation_error,
	#donate_form .form_status .connection_error {
		background-color:#ffd1d1;
		border-color:#e99b9b;
	}
	
	#donate_form[data-status='submitting'] .form_status .submitting {
		display:block;
	}
		
	#donate_form[data-status='success'] .form_status .success {
		display:block;
	}
	
	#donate_form[data-status='validation_error'] .form_status .validation_error {
		display:block;
	}
	
	#donate_form[data-status='connection_error'] .form_status .connection_error {
		display:block;
	}
	
	#donate_form .field .field_error {
		display:none;
		color:#c00;
		padding:8px 0 0 0;
	}
	
	#donate_form .field.invalid {
		background-color:#ffd1d1;
		outline:4px solid #ffd1d1;
	}
	
	#donate_form .field.invalid .field_error {
		display:block;
	}
	
	#donate_form .step .step_error {
		display:none;
		color:#c00;
		padding:16px;
	}
	
	#donate_form .step.invalid .step_error {
		display:block;
		background-color:#ffd1d1;
	}

  .resource_nav {
    margin:0 2%;
    padding:16px 0 32px 0;
  }

  .resource_nav .item {
    display:inline-block;
    white-space:nowrap;
    padding:12px 24px;
    margin:0 4px 4px 0;
    background-color:#eee;
    border-radius:64px;
    text-decoration:none;
    font-weight:700;
    line-height:110%;
    border:1px solid #ccc;
  }

  .resource_nav .item.active {
    background-color:#01bee8;
    box-shadow:inset 2px 2px 8px rgba(0,0,0,0.2);
    color:#fff;
    border-color:#0288a6;
  }
		
/* ================================================================================================================================ */
/* ================================================================================================================================ */
/* ================================================================================================================================ */

@media only screen and (min-width: 480px) {
	
	.vertical_padding {
		padding:40px 0;
	}
	
	/* ---- donation form ---- */
	
	.donate_box .box_heading {
		padding:24px;
	}
	
	.donate_box .box_summary {
		padding:24px;
	}
	
	.donate_box .step .step_heading {
		padding:16px 24px;
	}
	
	.donate_box .section {
		padding:24px;
	}
	
}

/* ================================================================================================================================ */
/* ================================================================================================================================ */
/* ================================================================================================================================ */

@media only screen and (min-width: 768px) {
	
	body {
		font-size:18px;
		line-height:140%;
	}
	
	.vertical_padding {
		padding:48px 0;
	}
	
	/* ---- forms ---- */
	
	.form .row {
		display:flex;
		justify-content:space-between;
		align-items:end;
	}
	
	.form .row .field {
		margin-bottom:16px;
	}
	
	.form .row .field.full {
		flex:1 1 100%;
	}
	
	.form .row .field.half {
		flex:0 0 49%;
	}
	
	.form .row .field.quarter {
		flex:0 0 24%;
	}
	
	/* ---------------- header ---------------- */
	header > .inner {
		padding:36px 0;
	}
	header #header_top .logo a {
		height:80px;
	}
	header #header_top .mobile .mobile_donate {
		font-size:14px;
	}
	
	/* ---------------- footer ---------------- */
	#footer_links > .inner {
		padding:64px 0;
	}
	#footer_links h3 {
		font-size:22px;
	}
	#footer_links .column {
		display:inline-block;
		width:30%;
		vertical-align:top;
		margin-bottom:32px;
	}
	#footer_bot > .inner {
		padding:64px 0;
		display:table;
	}
	#footer_bot .left {
		display:table-cell;
		vertical-align:middle;
	}
	#footer_bot .right {
		display:table-cell;
		vertical-align:middle;
		text-align:right;
	}
	
	/* ---- donation form ---- */
		
	.donate_page {
		padding:64px 0;
    padding-top: 300px !important;
	}
	
	.donate_box .box_heading {
		padding:32px;
	}
	
	.donate_box .box_summary {
		padding:32px;
	}
	
	.donate_box .step .step_heading {
		padding:16px 32px;
	}
	
	.donate_box .section {
		padding:32px;
	}
	
	.donate_box .big_checkbox label {
		display:inline-block;
		margin-right:4px;
	}
	
	.donate_box .row[data-show-if] {
		display:none;
	}
	
	.donate_box .row[data-show-if].show {
		display:flex;
	}
  

		
}


@media only screen and (min-width: 1000px) {
    [data-postid="4995"] header{
    background-color: #252525 !important;
  }
}
/* ================================================================================================================================ */
/* ================================================================================================================================ */
/* ================================================================================================================================ */

@media only screen and (min-width: 1280px) {
	
	.vertical_padding {
		padding:64px 0;
	}
	
	.standard_button:hover {
		background-color:#333;
	}
	
	.standard_button:active {
		transform:scale(0.95);
	}
	
	/* ---- form style ---- */
	
	.form .row .field {
		margin-bottom:24px;
	}
	
	.form input[type='text'],
	.form input[type='email'],
	.form input[type='number'],
	.form input[type='tel'],
	.form input[type='password'],
	.form input[type='text']{
		height:48px;
		line-height:48px;
	}
	
	.form select {
		height:48px;
	}
	
	.form input[type='submit'],
	.form input[type='button'] {
		height:48px;
		padding:0 24px;
	}
	
	.form label {
		margin-bottom:4px;
	}
	
	.form input[type='submit']:hover,
	.form input[type='button']:hover {
		background-color:#333;
	}
	
	/* ---- donation form ---- */
		
	.donate_page {
		padding:96px 0;
	}
	
	.donate_box .submit input:hover {
		background-color:#a2ce62;
	}

  .resource_nav {

  }

  .resource_nav .item:hover {
    background-color:#f5f5f5;
  }

  .resource_nav .item.active:hover {
    background-color:#26cff5;
  }
	
}

/* ================================================================================================================================ */
/* ================================================================================================================================ */
/* ================================================================================================================================ */

@media only screen and (min-width: 1366px) {
		
	.vertical_padding {padding:72px 0;}

	h1{font-size:3em;}
	h2{font-size:2.2em;}
	h3 {font-size:1.8em;}
	h4 {font-size:1.4em;}
	

	/* ---------------- footer ---------------- */
	#footer_links {
		font-size:18px;
		line-height:140%;
	}
	#footer_links > .inner {
		display:table;
	}
	#footer_links .left {
		display:table-cell;
		width:70%;
		vertical-align:top;
	}
	#footer_links .right {
		display:table-cell;
		vertical-align:top;
	}
	#footer_links .column {
		margin-bottom:0;
	}
	#footer_links h3 {
		font-size:24px;
	}
	
}

/* ================================================================================================================================ */
/* ================================================================================================================================ */
/* ================================================================================================================================ */

@media only screen and (min-width: 1600px) {
	
	.vertical_padding {
		padding:96px 0;
	}
	
}

/* ================================================================================================================================ */
/* ================================================================================================================================ */
/* ================================================================================================================================ */

@media only screen and (min-width: 1920px) {
	
	/* ---------------- header ---------------- */
	header > .inner {
		padding:96px 0 64px 0;
	}
	
}

@keyframes bob {
	0% {
		transform:translateY(0px);
  	}
  	50% {
		transform:translateY(-4px);
  	}
  	100% {
		transform:translateY(0px);
  	}
}
@keyframes pulse_once {
	0% {
		transform:scale(1);
	}
	30% {
		transform:scale(1.1);
	}
	70% {
		transform:scale(0.95);
	}
	100% {
		transform:scale(1);
	}
}


/* =============================================================================================================================================================================================== */
/* =============================================================================================================================================================================================== */

/* == March 2019 JA == */

/* =============================================================================================================================================================================================== */
/* =============================================================================================================================================================================================== */
/* =============================================================================================================================================================================================== */

/* == A. Template == */

        /*--default inner padding--*/
        .kt-row-layout-inner {
            padding: 20px 0px;
        }

        .kt-row-column-wrap{
            padding: 25px 5%;
            width: 90%;
          margin-left: auto;
          margin-right: auto;
        }

        .kt-inside-inner-col .kt-row-column-wrap{
            padding: 0px;
        }

        /*--row with no padding--*/
        .rownopadd > .kt-row-layout-inner,
        .rownopadd .kt-row-column-wrap{
            padding-top: 20px;
            padding-bottom: 0px;
        }

        .rownopaddbot > .kt-row-layout-inner,
        .rownopaddbot .kt-row-column-wrap{
            padding-bottom: 0px !important;
        }


        .kt-row-column-wrap.kt-mobile-layout-row>.wp-block-kadence-column{
            width: fit-content;  
        }

        @media (min-width: 768px){
          .kt-row-layout-inner {
              padding: 50px 0px;
          }
          
          .rownopadd > .kt-row-layout-inner,
          .rownopadd .kt-row-column-wrap{
              padding-top: 0px;
              padding-bottom: 0px;
          }

        }  



        @media (max-width: 767px){
          .kt-row-column-wrap.kt-mobile-layout-row>.wp-block-kadence-column{
            width: 100%; 
          }  
        }

        /*--image block margin--*/
        .wp-block-image {margin: 0;}
        .wp-block-image img{
					display: block;
					height: auto;
				}


        /*--image click--*/
        .image_clickable{
            width: 100%;
            transition-duration: .2s;
        }

        .image_clickable:hover{
            transform: rotate(-1deg) scale(0.98);
        }

        /*-- video --*/
        .video_container {
            position: relative;
            width: 100%;
            height: 0;
            padding-bottom: 56.25%;
        }
        .video_container iframe{
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        /*--vertical align center content--*/
        .rowmidalign .kt-row-column-wrap{
            align-items: center;
        }

        /*--bottom align content--*/
        .rowbotalign .kt-row-column-wrap{
            align-items: flex-end;
        }

				.button_inline{
					display: inline-block;
          margin: 2px 0;
				}

        /*--button all colours --*/
				.button_green a,
				.button_teal a,
				.button_blue a,
				.button_grey a,
				.button_orange a,
				.button_red a,
				.button_purple a{
					color: #fff;
					font-size: 15px;
					font-weight: 600;
					text-transform: uppercase;
					text-decoration: none;
					padding: 10px 15px 8px;
					border-radius: 5px;
					bottom: 45px;
					display: inline-block;
				}

				.button_green a:hover,
				.button_teal a:hover,
				.button_blue a:hover,
				.button_grey a:hover,
				.button_orange a:hover,
				.button_red a:hover,
				.button_purple a:hover{
					color: #fff;
				}

        /*--button green--*/
        .button_green a{background: #8ed85a;}
        .button_green a:hover{background: #a3e476;}

        /*--button teal--*/
        .button_teal a{background: #60c3a6;}
        .button_teal a:hover{background: #84d5bd;}

        /*--button blue--*/
        .button_blue a{background: #18bce1;}
        .button_blue a:hover{background: #2dcef3;}

        /*--button grey--*/
        .button_grey a{background: #454545;}
        .button_grey a:hover{background: #686868;}

        /*--button orange--*/
        .button_orange a{background: #F6921D;}
        .button_orange a:hover{background: #f99928;}

        /*--button red--*/
        .button_red a{background: #e32b36;}
        .button_red a:hover{background: #f34751;}

        /*--button purple--*/
        .button_purple a{background: #912b7e;}
        .button_purple a:hover{background: #a33d90;}






				/*--*/

        .button_inline{
            display: inline-block;
        }

        /*--button cta--*/
        .button_cta{
            margin: 0 !important;
        }

        .button_cta a {
            color: #fff !important;
            font-size: 15px;
            font-weight: 600;
            text-transform: uppercase;
            text-decoration: none;
            background: #333333;
            padding: 15px 20px 13px;
            border-radius: 5px;
            display: inline-block;
        }

        .button_cta a:hover{
            background: #525252;
        }

        /*--button blog post--*/
        a.post_button {
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            text-transform: uppercase;
            text-decoration: none;
            background: #8ed85a;
            padding: 10px 15px;
            bottom: 45px;
            display: inline-block;
        }

        a.post_button:hover{
            color: #fff;
            background: #a3e476;
        }

        .page-id-9024 a.post_button { /*-- media page --*/
            margin-right: 10px;
        }


        /*--button caldera--*/
        .caldera-grid .btn-default{
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            text-transform: uppercase;
            text-decoration: none;
            background: #a0cd60;
            padding: 12px 15px;
            bottom: 45px;
            display: inline-block;
            border: none;
        }

        .caldera-grid .btn-default:hover{
            color: #fff;
            background: #a9d270;
        }

        .caldera-grid .form-control,
        .caldera-grid textarea.form-control{
            font-size: 16px;
            padding: 20px 15px;
        }
    
        .caldera-grid textarea.form-control {
            padding-top: 15px;
        }





        /*--default link--*/
        a{
          /*text-decoration: none;
          color: #adadad;
          transition-duration: .2s;*/
        }
        a:hover{
          /*color: #01bade;*/
        }

        .link_white a{
          color: #f5f5f5;
          text-decoration: underline;
        }
        .link_white a:hover{
          color: #fff;
        }

        /*--fancy box--*/
        .fancybox-inner{
            width: 1200px;
            max-width: 100%;
            margin: 0 auto;
        }

        .fancybox-slide{
            padding: 0 !important;
        }

        .fancybox-content{
            width: 100% !important;
        }

        /*--default--*/
        p{
          word-break: break-word;
          font-size: 14px;
        }

        @media (min-width: 768px){
          p{
            font-size: 16px;
          }
        }

        @media (min-width: 1000px){
          p{
            font-size: 18px;
          }
        }

/* == B. Header == */

  /* ---------------- header ---------------- */
	header {
		background-color:#fff;
    z-index: 9999;
	}
	header > .inner {
		padding:16px 0;
	}
	header #header_top {
		width:100%;
		line-height:40px;
    
    display: flex;
    flex-wrap: wrap;
    align-items: center;
	}
  
	header #header_top .logo {
		display:table-cell;
		text-align:left;
		vertical-align:middle;
	}
	header #header_top .logo a {
		display:block;
		/*width:60px;*/
		height:60px;
	}
	header #header_top .logo a img {
		height:100%;
		width:auto;
    max-width: 100%;
	}
	header #header_top .mobile {
		display:table-cell;
		text-align:right;
		vertical-align:middle;
	}
	header #header_top .mobile .mobile_donate {
		display:inline-block;
		background-image:url('../svg/donate_bg.svg');
		background-size:100% 100%;
		background-position:center center;
		color:#fff;
		font-weight:900;
		font-size:10px;
		line-height:32px;
		padding:0 12px;
		vertical-align:middle;
		margin-right:16px;
		text-decoration:none;
		text-transform:uppercase;
	}

	header #header_nav {
		display:none;
		padding-top:32px;
	}
	header #header_nav > ul {
		padding:0;
		margin:0;
	}
	header #header_nav > ul > li {
		list-style:none;
	}
	header #header_nav > ul > li > .divider {
		display:none;
	}
	header #header_nav > ul > li > a {
		display:block;
		text-decoration:none;
		line-height:35px;
    text-transform: lowercase;
    color: #999999;
    font-size: 15px;
    font-weight: 400 !important;
	}
  header #header_nav > ul > li > a:hover{
    color: #a0cf5f !important;
  }
  
  header #header_nav > ul > li > a:after{
    display: none;
    content: " / ";
    color: rgba(255, 255, 255, 0.35);
    font-weight: 400;
    margin: 0px 5px;
  }
  
	header #header_nav > ul > li > ul {
		padding:0 0 0 16px;
	}
	header #header_nav > ul > li > ul > li {
		display:block;
		list-style:'> ';
		color:#666;
		font-weight:300;
	}
	header #header_nav > ul > li > ul > li > a {
		display:block;
		color:#666;
		text-decoration:none;
		line-height:24px;
	}
	header #header_nav > ul > li.cart_link a img {
		width:32px;
		height:32px;
		vertical-align:middle;
		margin-left:8px;
	}
  
  img.top-home-icon{
    width: 16px !important;
    max-width: 16px !important;
    margin-right: 18px;
    padding-top: 13px;
    transition-duration: .2s;
  }
  
  img.top-home-icon:hover{
    transform: translateY(-2px);
  } 


  header #header_nav > ul > li.fundraise {
    display: none;
  }


@media (min-width: 200px){
  	header #header_top .logo a img {
      max-width: initial;  
    }
}


@media (min-width: 1000px){
      header {
        z-index:9000;
        background-color: transparent;
        background: linear-gradient(180deg, #000000a3, #000000a3, transparent);
        background: linear-gradient(180deg, #000000a3, #00000070, #00000024, transparent);
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        max-width: 1920px;
        margin: 0 auto;
      }
  
      header.fullwidth > .inner {
        display:table;
        padding:32px 0;
         width: 90%;
      }
      header #header_top {
        width: 98%;
        margin: 0 auto;
        text-align:left;
        vertical-align:bottom;
      }
  
      header #header_top .logo {
        vertical-align:bottom;
      }
      header #header_top .logo a {
        display:inline-block;
        height:100px;
        vertical-align:bottom;
      }
      header #header_top .logo a img {
        display:block;
        height:100%;
        width: 230px;
        max-width: 100%;
        filter: brightness(100);
      }
  
      header #header_top .mobile {
        display:none;
      }
      header #header_nav {
        display:table-cell!important;
        width:auto;
        text-align:right;
        line-height:40px;
        vertical-align:bottom;
      }
      header #header_nav > ul { 
      }
      header #header_nav > ul > li {
        display:inline-block;
        position:relative;
        padding: 0px; 
      }
      header #header_nav > ul > li > .divider {
        display:inline-block;
        font-weight:900;
        margin:0 8px 0 12px;
      }
  
      header #header_nav > ul > li.donate,
      header #menu_mobile_top .mobile_donate{
        transition-duration: .1s;
      }
  
      header #header_nav > ul > li > a {
        display:block;
        color:#fff;
        font-size:15px;
        font-weight:900 !important;
        text-decoration:none;
        line-height:42px;
        text-transform: lowercase;
        padding:0;
        transition:color 0.1s;
      }
  
      header #header_nav > ul > li > a:after{
        display: inline-block;
      }
  
      header #header_nav > ul > li:hover > a {
        color:#01BEE8;
      }
      header #header_nav > ul > li.donate {
        margin-left:16px;
      }
      header #header_nav > ul > li.donate a {
        color:#fff !important;
        padding:0 10px;
        border-bottom: 3px solid #01bade;
      }
  
      header #header_nav > ul > li.donate a:hover{
        border-bottom: 3px solid #e79b36;
      }
  
      header #header_nav > ul > li.fundraise {
        margin-left: 10px;
      }
    
      header #header_nav > ul > li.fundraise a {
        color:#fff !important;
        padding:0 10px;
        border-bottom: 3px solid #96ca73;
      }
  
      header #header_nav > ul > li.fundraise a:hover{
        border-bottom: 3px solid #e79b36;
      }
  
      header #header_nav > ul > li.thrive {
        margin-left: 10px;
      }
    
      header #header_nav > ul > li.thrive > a {
        color:#fff !important;
        padding:0 10px;
        border-bottom: 3px solid #93107e;
      }
  
      header #header_nav > ul > li.thrive > a:hover{
        border-bottom: 3px solid #e79b36;
      }
  
      /*header #header_nav > ul > li.thrive a:hover:after{
        content: "thrive";
        color: #fff;
        position: absolute;
        bottom: 0;
        line-height: 100%;
        text-align: left;
        top: 2px;
        margin: auto;
        align-items: center;
        display: flex;
        left: 100%;
        border-bottom: 3px solid #e79b36;
      }*/
  
  
  
  
      header #header_nav > ul > li > ul {
        display:none;
        position:absolute;
        left:-12px;
        top:100%;
        padding:16px 24px;
        min-width:180px;
        text-align:left;
        background-color:#fff;
        box-shadow:1px 3px 5px rgba(0,0,0,0.1);
      }
      header #header_nav > ul > li:hover > ul {
        display:block;
      }
      header #header_nav > ul > li > ul > li {
        line-height:20px;
        list-style:none;
      }
      header #header_nav > ul > li > ul > li > a {
        padding:8px 0;
        line-height:20px;
        font-size:18px;
        transition:color 0.1s; 
      }
      header #header_nav > ul > li > ul > li > a:hover {
        color:#01BEE8;
      }
  

      /*-- tertiary submenu --*/
      .sub-menu .sub-menu{
        display: none;
        position: absolute;
        top: 0;
        left: 100%;
        list-style: none;
        width: 100%;
        max-width: 250px;
        padding: 0;
        background-color: rgba(255, 255, 255, 0.98);
      }

      .sub-menu{
        background: red;
      }

      .sub-menu .menu-item-has-children:hover > .sub-menu{
        display: block;
      }

      .sub-menu .menu-item-has-children{
        position: relative;
      }

      .sub-menu .menu-item-has-children > a{
        padding-right: 40px !important;
      }  

      .sub-menu .menu-item-has-children > a::after{
        content: " " !important;
        width: 10px;
        height: 10px;
        background-image: url(../svg/arrow-right-black.svg);
        background-size: contain;
        background-repeat: no-repeat;
        display: inline-block;
        background-position: 50% 50%;
        position: absolute;
        right: 15px;
        bottom: 0;
        top: 0;
        margin: auto;
      }



      .sub-menu .menu-item-has-children .sub-menu li{
        display: block;
        line-height: 20px;
        margin: 0;
      }

      .sub-menu .menu-item-has-children .sub-menu a{
        color: #555;
        font-size: 16px;
        font-weight: 600;
        padding: 15px 20px !important;
        margin: 0px;
        display: block;
      }

      .sub-menu .menu-item-has-children .sub-menu a:hover {
        color: #01bade;
      }

      .mobile_only{
        display: none !important;
      }

      /*-- --*/
      .mobile_tertiary_left .sub-menu .sub-menu{
        left: -100%;
      }

      .mobile_tertiary_left .sub-menu > li > a{
        padding: 15px 20px 15px 30px !important;
      }

  
      .mobile_tertiary_left .sub-menu .menu-item-has-children > a::after{
        left: -80%;
        transform: rotate(180deg);
      }


  
}

@media (min-width: 1200px){
  header #header_nav > ul > li > a{
    font-size: 17px;
  }
  
  header #header_nav > ul > li > a:after{
    margin: 0px 10px;
  }
  
}

header #header_nav > ul > li {
    margin: 0px;
}

header #header_nav > ul > li > ul {
    padding: 0px !important;
    min-width: max-content;
    background: transparent;
}

header #header_nav > ul > li > ul > li{
    margin: 0px;
		background-color: rgba(255, 255, 255, 0.98);
		transition-duration: .2s;
}

header #header_nav > ul > li > ul > li > a {
    color: #555;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 20px;
    margin: 0px;
		transition-duration: .2s;
}

header #header_nav > ul > li > ul > li:hover{
		background-color: #fff;
}

header #header_nav > ul > li > ul > li > a:hover{
    color: #01bade;
}


.sub-menu .menu-item-5580 > a,
.sub-menu .menu-item-5581 > a{
  background-color: #f1f1f1 !important;
}

.sub-menu .menu-item-6807 > a,
.sub-menu .menu-item-6033 > a{
  background-color: #e6e6e6 !important;
}

header #header_top{
    flex-wrap: nowrap;
}

header #header_nav{
    padding: 0px;
}

header #menu_desktop{
    display: flex;
    width: 100%;
    justify-content: flex-end;
    align-items: center;
}

header .fas{
    font-size: 40px;
    padding-bottom: 9px;
    margin-left: 10px;
    color: #fff;
    background: linear-gradient(145deg, #26bbd7, #8fc878);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

header .fas:hover{
    background: #01bade;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*--*/


header #header_nav > ul > li.donate > a:after,
header #header_nav > ul > li.fundraise > a:after,
header #header_nav #menu-item-5623 > a:after{
    content: "";
    display: none;
}

header.fullwidth > .inner {
    padding: 25px 0px;
}



header #menu_mobile{
    display: none;
    position: absolute !important;
    z-index: 999;
    width: 100%;
    background: #fff;
    margin-top: 10px;
    padding-bottom: 10px;
}

header #menu_mobile_top {
    align-items: center;
    display: none;
    float: right;
    width: 100%;
    flex-direction: row-reverse;
}

header #menu_mobile_top .mobile_donate {
    background-color: #01bade;
    color: #fff;
    padding: 0px 15px;
    font-weight: 600;
    margin: 0px 15px;
}

#menu_mobile_top .nav_button,
#menu_mobile_top .nav_mob_acc,
.nav_desk_acc{
    display: inline-grid;
}

.nav_desk_acc img{
    width: 30px;
    margin-left: 10px;
}

.nav_desk_acc img:hover{
    transform: scale(0.92); 
}

#menu_mobile_top .nav_button img {
    width: 20px;
    margin: 0 15px;
}

#menu_mobile_top .nav_mob_acc img {
    width: 32px;
}

.open .sub-menu{
  display: block !important;
}

/*--*/
@media (min-width: 1700px){
  .mobile_tertiary_left .sub-menu .sub-menu{
    left: 100%;
  }

  .mobile_tertiary_left .sub-menu > li > a{
    padding: 15px 20px !important;
  }


  .mobile_tertiary_left .sub-menu .menu-item-has-children > a::after{
    left: auto;
    transform: none;
  }


}


/*--*/

@media (max-width: 999px){
    header #menu_desktop{display: none;}
    header #menu_mobile{
      display: block;
    }
    header #menu_mobile_top{
      display: flex;
    }
  
    .menu-item-has-children .sub-menu{
      display: none;
    }
  
    header #header_nav > ul {
      padding: 0px 3%;
      background: #fff;
    }
  
    header #header_top {
      width: 95% !important;
      margin: 0 auto;
    }
  
  
    header #header_nav .menu-item-has-children > a:after{
      content: " ";
      background: url(../svg/arrow-right-blue.svg);
      width: 7px;
      height: 7px;
      display: inline-block !important;
      background-size: contain;
      background-repeat: no-repeat;
      background-position: 50% 50%;
      margin: 0 0 0 7px;
    }

    header #header_nav .sub-menu li{
      margin: 0 0 0 10px;
    }
  
    header #header_nav a,
    header #header_nav > ul > li > a,
    header #header_nav > ul > li > ul > li > a{
      color: #01bbde !important;
      font-weight: 500;
      font-size: 14px !important;
      padding: 0 !important;
      line-height: 30px !important;
      text-transform: lowercase;
      background: none !important;
			transition-duration: .2s !important;
    }

}

@media (max-width: 767px){
    header #header_top .logo a img {
        filter: none;
    }
}




header #header_nav > ul > li#menu-item-5926 > a:after,
header #header_nav > ul > li:last-child > a:after{
    display: none;
}

/*--donate dropdown--*/

#menu-item-5080 ul{
    text-align: right !important;
    right: 0;
    margin-left: -100%;
    box-shadow: none !important;
}

#menu-item-5080 ul li{
    height: 80px;
    /*background: linear-gradient(90deg, #ffffff00, #ffffffb8);*/
    align-items: center;
    display: flex !important;
    flex-wrap: wrap;
    margin: auto 0 !important;
    margin-left: -60px !important;
}

#menu-item-5080 ul a {
    width: 100%;
    margin-right: 50px !important;
    color: #fff !important;
    background-color: #01bade !important;
    box-shadow: 2px 2px 5px #00000026;
}

#menu-item-5080 ul a:hover {
    background-color: #00d5ff !important;
    background: linear-gradient(90deg, #00d5ff,#01bade );
}

header #header_nav > ul > li#menu-item-5080 > ul > li > a {
    color: #fff !important;
}

#menu-item-5080 ul a:after {
    background-color: #a2ce62;
    background-size: 40px;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    margin-top: -20px;
    margin-left: 10px;
    width: 60px;
    height: 60px;
    content: " ";
    position: absolute;
    display: inline-block;
    box-shadow: 2px 2px 5px #00000026;
    transition-duration: .1s;
}

#menu-item-5080 ul a:hover:after{
    background-color: #01bade;
}

@media (max-width: 1000px){
    #header_top .logo img{
      content:url("../svg/youth-opportunities.svg");
    }
}



@media (max-width: 350px){
  
    header > .inner{
      padding: 16px 0 !important;
    }

    #menu_mobile_top .nav_mob_acc{
      display: none;
    }
  
}

@media (max-width: 300px){
    header #menu_mobile_top .mobile_donate{
      display: none;
    }
}


.ap-1 > a{
  color: #4bc4df !important;
}

.ap-2 > a{
  color: #a4ce68 !important;
}

.ap-3 > a{
  color: #902c8e !important;
}

.ap-4 > a{
  color: #00a89c !important;
}

.ap-5 > a{
  color: #f59331 !important;
}

.ap-6 > a{
  color: #555 !important;
}

.ap-7 > a{
  color: #555 !important;
}

.ap-1 > a:hover,
.ap-2 > a:hover,
.ap-3 > a:hover,
.ap-4 > a:hover,
.ap-5 > a:hover,
.ap-6 > a:hover,
.ap-7 > a:hover{
  transform: translateX(5px);
}

/*
.sub_donate a:after {
    background: url(https://youthopportunities.com.au/wp-content/uploads/2019/03/icon_gift.png);
}

.sub_scholarships a:after {
    background: url(https://youthopportunities.com.au/wp-content/uploads/2019/03/icon_scholarship.png);
}

.sub_stars a:after {
    background: url(https://youthopportunities.com.au/wp-content/uploads/2019/03/icon_star.png);
}

.sub_bequest a:after {
    background: url(https://youthopportunities.com.au/wp-content/uploads/2019/03/icon_bequest.png);
}
*/
/* == C. Footer == */
p.footer_phone:before,
p.footer_email:before,
p.footer_address:before{
    content: " ";
    background-position: 50% 50% !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    width: 20px;
    height: 20px;
    display: inline-block;
    position: absolute;
    margin-left: -30px;
}

p.footer_phone:before{
    background: url(../png/icon_phone.png);
}

p.footer_email:before{
    background: url(../png/icon_email_open.png);
}

p.footer_address:before{
    background: url(../png/icon_address.png);
}

.footer_social{
    display: block;
    margin-bottom: 70px
}

.footer_social .fab {
    font-family: "Font Awesome 5 Brands";
    font-size: 20px;
    width: 20px;
    height: 20px;
    text-align: center;
    padding: 10px;
    border-radius: 50%;
    margin: 0 2px; 
    color: #fff !important;
}

.footer_social .fa-facebook-f{background: #4267b2;}
.footer_social .fa-facebook-f:hover{background: #4a6fbc;}

.footer_social .fa-twitter{background: #38A1F3;}
.footer_social .fa-twitter:hover{background: #47abf9;}

.footer_social .fa-youtube{background: #ff0000;}
.footer_social .fa-youtube:hover{background: #ff5a5a;}

.footer_social .fa-instagram{background: #da4062;}
.footer_social .fa-instagram:hover{background: #e45071;}

.footer_social .fa-linkedin{background: #0e76a8;}
.footer_social .fa-linkedin:hover{background: #1f95cd;}


#footer_links{
    background: #252525;
    /*background: linear-gradient(135deg, #313131, #101010);*/
    color: #fff;
}

#footer_links > .inner {
    padding: 70px 0px;
    max-width: 1366px;
    display: flex;
}

#footer_links .left {
    width: 70%;
    padding: 30px 2%;
    position: relative;
}

#footer_links .right {
    width: 30%;
    padding: 30px 5%;
    border-left: 2px dotted #5a5a5a;
}

@media (max-width: 700px){
    #footer_links > .inner{
        flex-direction: column-reverse;
        text-align: center;
    }

    #footer_links img.logo {
        margin-left: auto;
        margin-right: auto;
    }

    #footer_links .right {
        width: auto;
        max-width: 100%;
        border-left: none;
    }
  
    #footer_links .left {
        width: auto;
        max-width: 100%;
    }
  
    #footer_links .column {
        width: 100% !important;
        padding: 0px !important;
    }
  
    #footer_links ul{
        list-style-type: none;
        padding: 0;
    }
  
    #footer_links h3 {
        margin-top: 40px;
        margin-bottom: -5px;
    }
  
    #footer_links h3.talk_to_someone {
      margin-top: 0px;
    }

    #footer_links p.copyright {
        position: relative !important;
        bottom: 0px !important;
    }
  
    p.footer_phone:before, p.footer_email:before, p.footer_address:before{
        display: block;
        position: inherit;
        margin: 0 auto 10px !important;
    }
  
    #footer_links p.soc {
        margin-left: 0px !important;
    }

}



/*----*/

#footer_links a{
    color: #fff;
    word-break: break-word;
    text-decoration:none;
}

#footer_links a:hover {
  text-decoration:underline;
}

#footer_links a:hover{
    color: #53c1b2;
}

#footer_links p.copyright a{
  color: #53c1b2;
}

#footer_links p.copyright a:hover{
  color: #01bade;
}

#footer_links h3 {
    color: #4bc1e0;
    /*color: #fff;
    background: linear-gradient(145deg, #26bbd7, #8fc878);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;*/
}

#footer_links h3.talk_to_someone{
    margin-bottom: -10px;
}

#footer_links ul.help_lines{
    list-style-type: none;
    padding: 0px;
    color: #565656;
}

#footer_links ul.help_lines li{
    display: inline-block;
    padding: 0px 10px;
}

#footer_links ul.help_lines li:first-child{
    padding-left: 0px;
}

#footer_links ul.help_lines li:last-child{
    padding-right: 0px;
}

#footer_links p.soc{
    margin-left: 25px;
}

#footer_links p.copyright{
    font-size: 15px;
    line-height: 20px;
    
    bottom: 0;
}

#footer_links p.copyright .web-designed{
    color: #737373;
    font-weight: 600;
    font-size: 13px;
}

#footer_links img.logo{
    width: 250px;
    max-width: 100%;
    display: block;
    margin-bottom: 30px;
    filter: brightness(100);
}

#footer_links img.logo:hover{
    filter: none;
}

#footer_links .column{
    padding-right: 7%; 
    width: fit-content;
}



/* == D. Slants sections == */
cou
       /*--Default--*/

      .slant_ff_1, .slant_ff_2, .slant_ff_3, .slant_ff_4, .slant_ff_5, .slant_ff_6{
          position: relative;
      }

      .slant_ff_1 > .kt-row-layout-inner,
			.slant_ff_2 > .kt-row-layout-inner,
			.slant_ff_3 > .kt-row-layout-inner,
			.slant_ff_4 > .kt-row-layout-inner,
      .slant_ff_5 > .kt-row-layout-inner,
      .slant_ff_6 > .kt-row-layout-inner{
          padding: 100px 0px;
      }

      .slant_ff_1:before, .slant_ff_1:after,
      .slant_ff_2:before, .slant_ff_2:after,
      .slant_ff_3:before, .slant_ff_3:after,
      .slant_ff_4:before, .slant_ff_4:after,
      .slant_ff_5:after,
			.slant_ff_6:before{
          content: " ";
          position: absolute;
          background: #ffffff;
          width: 100%;
          z-index: 10;
          display: block;
          height: 50px;
      }

      .slant_ff_1:before, .slant_ff_2:before, .slant_ff_3:before, .slant_ff_4:before .slant_ff_6:before{
          top: 0;
          margin-top: -1px;
      }

      .slant_ff_1:after, .slant_ff_2:after, .slant_ff_3:after, .slant_ff_4:after, .slant_ff_5:after{
          bottom: 0;
          margin-bottom: -1px;
      }

      /*--Figures--*/

      .slant_ff_1:before,
      .slant_ff_2:before{
          -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
          clip-path: polygon(0 0, 0% 100%, 100% 0);
      }

      .slant_ff_3:before,
      .slant_ff_4:before,
      .slant_ff_6:before{
          -webkit-clip-path: polygon(100% 0, 0 0, 100% 100%);
          clip-path: polygon(100% 0, 0 0, 100% 100%);
      }

      .slant_ff_1:after,
      .slant_ff_4:after{  
          -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);

      }

      .slant_ff_2:after,
      .slant_ff_3:after,
      .slant_ff_5:after{  
          -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
          clip-path: polygon(0 0, 0% 100%, 100% 100%);
      }


/* == E. Background colours == */
.bg_gradient_1,
.bg_gradient_1 > div{
	background: #90d661;
	background: linear-gradient(90deg, #1fbadc, #97ca72);
}

.bg_gradient_2,
.bg_gradient_2 > div{
	background: #90d661;
	background: linear-gradient(90deg, #a3d630, #97ca72);
}

/* == 1. Home Page == */

.homepage-header{
  
}

.homepage-header > div.kt-row-has-bg{
	  padding: 150px 0 0 0;
    height: 650px;
    background-position: 50% 20% !important;
}

.homepage-header > .kt-row-has-bg:after{
    content: " ";
    background: white;
    width: 100%;
    position: absolute;
    bottom: -1px;
    height: 60px;
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
}

.homepage-header.ph_gray > .kt-row-has-bg:after{
    background: #f5f5f5;
}


.homepage-header > div > div > div{
    padding-top: 80px;
    height: 200px;
    justify-content: center;
}

.homepage-header h1{
	  color: #fff;
    font-size: 50px;
    line-height: 60px;
    text-shadow: 2px 2px 7px #000000d4;
	  margin: 0;
    margin-bottom: -10px !important;
}

.homepage-header .button-programs{
    margin-top: 60px;
}

.homepage-header .button-programs a{
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    background: #9a2482;
    padding: 20px 30px;
    transition-duration: .1s;
    border-radius: 30px;
}

.homepage-header .button-programs a:hover{
    background: #82206d;
}


.home-heading{
    width: 1000px;
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
    text-shadow: 2px 2px 5px #00000094;
}

@media (max-width: 1000px){
    .homepage-header > div.kt-row-has-bg {
        padding: 0;
        height: 550px;
    }
  
    .homepage-header > div > div > div{
        padding-top: 50px;
    }
  
    .homepage-header h1 {
        color: #fff;
        font-size: 40px;
        line-height: 50px;
    }
}

@media (max-width: 768px){
    .homepage-header > div.kt-row-has-bg {
        height: 500px;
    }
  
    .homepage-header h1 {
        color: #fff;
        font-size: 30px;
        line-height: 40px;
    }
}

@media (min-width: 1000px){
  .home-heading{
    font-size: 55px;
  }
}



/*--*/



.home_feature > .kt-row-has-bg{
    background-size: cover;
    background-position: 50% 20%;
  	padding: 200px 0px;
}

.heading_wrapper > .kt-row-has-bg{
  	background-color: transparent !important;
    height: 200px;
    max-width: 700px;
    position: relative;
}

.home_feature h1 {
    font-size: 40px;
    background-color: #212120;
    align-items: center;
    display: flex;
    max-width: 550px;
    height: 150px;
    padding: 0px 20px;
    position: absolute;
    right: 0;
}

.home_feature h3 {
    font-size: 20px;
    background-color: #92d467;
    padding: 15px 20px;
    width: fit-content;
    position: absolute;
    right: 20px;
    top: 140px;
}

/*-- Home-About Section --*/

.section_home_about{
    padding-top: 50px;
	
}

.home_about_section > div > div{
	  align-items: center;
}

.section_home_about .kt-row-layout-inner{
	  padding: 0;
}

.section_home_about .wp-block-image {
    margin-bottom: 0px !important;
}

.section_home_about .wp-block-image img{
	  display: block;
}

.home_about_section .inner-column-2{
    display: flex;
    align-items: center;
}

.home_about_section .inner-column-2 > div{
    width: 500px;
    max-width: 100%;
}


.home_about_section .inner-column-2 > div h3{
    font-size: 30px;
}



/*-- Our Programs --*/
.section_program_overview > div,
.section_program_overview > div > div{
	padding: 0px;
}

.home_programs_row .wp-block-kadence-column{
	margin: 0;
}

.home_programs_row .kt-row-layout-inner, .home_programs_row .kt-row-column-wrap{
	padding: 0;
}

.home_programs_row .kt-inside-inner-col{
    padding: 60px 10%;
	min-height: 250px;
	color: #fff;
}

.home_programs_row a{
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    background: #8ed85a;
    padding: 10px;
    position: absolute;
    bottom: 45px;
	  box-shadow: 1px 1px 5px #0000001f;
}

.home_programs_row a:hover{
	  background: #a3e476;
}


.home_programs_row_1 .inner-column-1{ /*-- box 1 --*/
	background: #00bcea;
}

.home_programs_row_1 .inner-column-2{ /*-- box 2 --*/
	background: #03caff;
}

.home_programs_row_1 .inner-column-3{ /*-- box 3 --*/
	background: #40d7ff;
}

.home_programs_row_2 .inner-column-1{ /*-- box 4 --*/
	background: #c9e859;
}

.home_programs_row_2 .inner-column-2{ /*-- box 5 --*/
	background: #bce03d;
}

/*-- Section Video --*/
.section_video h2{
    margin: 0;
}

.section_video img.image_clickable{
    display: flex;
    height: auto;
    width: 40px;
    padding: 30px;
    max-width: 100%;
    margin: 30px auto 0;
    background: linear-gradient(180deg, #e79a36, #92117d);
    background-attachment: fixed;
    border-radius: 50%;
}

.section_video img.image_clickable:hover{
    transform: scale(0.95);
}



/* -- Section Resources --*/
.section_resources {
    background: linear-gradient(90deg, #1fbadc, #97ca72);
    -webkit-clip-path: polygon(0 0, 100% 20%, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 20%, 100% 100%, 0% 100%);
	  padding-top: 50px;
    margin-top: -90px;
    margin-right: -1px;
	  color: #fff;
    z-index: 10;
    position: relative;
}

.section_resources .kt-inside-inner-col{
    margin: 0 5%;
}

.section_resources h3{
    font-size: 27px;
}

.section_resources img{
    width: 250px;
    max-width: 100%;
    border-radius: 50%;
    margin: 0 auto;
}

.section_resources .find-out-more{
    margin-top: 30px;
}

.section_resources .find-out-more a{
    color: #fff;
    background: #2a2a2a;
    padding: 15px 25px;
    font-size: 15px;
    font-weight: 800;
    border-radius: 25px;
    text-decoration: none;
}

.section_resources .find-out-more a:hover{
    background: #4b4b4b;
}


@media (max-width: 767px){
    .section_resources {
        background: linear-gradient(90deg, #1fbadc, #97ca72);
        -webkit-clip-path: polygon(0 0, 100% 7%, 100% 100%, 0% 100%);
        clip-path: polygon(0 0, 100% 7%, 100% 100%, 0% 100%);
        padding-top: 50px;
        margin-top: 20px;
    }
}


/* -- Section Outcomes -- */

.section_outcomes > div{
	  padding: 100px 0;
}

.section_outcomes h2{
    font-weight: 600;
    line-height: 105%;
}

.section_outcomes h2 span:first-of-type{
    color: #7dc252;
}

.section_outcomes h2 span:last-of-type{
    color: #0fb1d4;
}

@media (max-width: 1450px){
  .section_outcomes .kt-row-column-wrap.kt-has-2-columns{
    padding: 0 !important;
  }
}



/* == 2. Pages == */
.page_header > div.kt-row-has-bg{
	  padding: 150px 0 0 0;
    height: 450px;
}

.page_header > .kt-row-has-bg:after{
    content: " ";
    background: white;
    width: 100%;
    position: absolute;
    bottom: 0;
    height: 60px;
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    margin-bottom: -1px;
}

.page_header.ph_gray > .kt-row-has-bg:after{
    background: #f5f5f5;
}


.page_header > div > div > div{
    padding-top: 40px;
    height: 200px;
    justify-content: center;
}

.page_header h1{
	  color: #fff;
	  margin: 0;
    text-shadow: 2px 2px 10px #00000054;
    margin-bottom: -10px !important;
    width:90%;
    max-width:600px;
	/*max-width:768px;
	margin:0 auto;*/
}

.page_header p{
    color: #fff;
    font-weight: 500;
    width:90%;
    max-width:600px;
	/*max-width:768px;
	margin:0 auto;*/
    text-shadow: 2px 2px 10px #000000b5;
}

.page_header p.width500{
	max-width: 500px;	
}

.row_cta {
    position: relative;
    background: #90d661;
    background: linear-gradient(90deg, #1fbadc, #97ca72);
    color: #fff;
    padding-top: 60px;
    /*margin-top: -60px;*/
}

.row_cta.orange{
		background: #f29401;
		background: linear-gradient(90deg, #f29401, #ffb100);
}

.row_cta_flat{
    padding-top: 30px;
    padding-bottom: 30px;
}

.row_cta h3{
    width: 100%;
    max-width: 1000px;
}

.row_cta p{
    font-weight: 500;
    margin: -20px 0px 20px;
    max-width: 850px;
}

.row_cta p a{
  color: #e8e8e8;
}
 
.row_cta p a:hover{
  color: #fff;
}

.row_cta > div{
    background: transparent !important;
}

.rc_clip_grey:before {
    position: absolute;
    top: 0;
    content: " ";
    background: whitesmoke;
    width: 100%;
    display: block;
    margin-top: -1px;
    height: 50px;
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
    clip-path: polygon(0 0, 0% 100%, 100% 0);
}

.rc_clip_dark_grey:before {
    position: absolute;
    top: 0;
    content: " ";
    background: #454545;
    width: 100%;
    display: block;
    margin-top: -1px;
    height: 50px;
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
    clip-path: polygon(0 0, 0% 100%, 100% 0);
}

.rc_clip_white:before {
    position: absolute;
    top: 0;
    content: " ";
    background: #fff;
    width: 100%;
    display: block;
    margin-top: -1px;
    height: 50px;
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
    clip-path: polygon(0 0, 0% 100%, 100% 0);
}

@media (max-width: 767px){
    .page_header > div.kt-row-has-bg{
        height: auto !important;
        padding: 50px 0;
    }
  
    .page_header p{
        font-size: 15px;
    }

    .page_header > div > div > div {
        padding-top: 0px;
        height: 200px;
    }
  
    .page_header h1 {
        margin-bottom: -10px !important;
    }
}

@media (max-width: 1000px){
  .page_header > .kt-row-has-bg:after{
    background: none;
  }
}

/* == 3. Pages: Four Programs == */

.section_logistic_method:after {
    content: "";
    margin-top: -1px !important;
    background: #f5f5f5;
    width: 80px;
    height: 40px;
    display: block;
    margin: 0 auto;
    -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.logistic_method_item > div{
	  padding: 0px;
}
.logistic_method_item .wp-block-kadence-column{
    justify-content: center;
    text-align: center;
}

.logistic_method_item img{
    width: 250px;
    max-width: 100%;
    margin: 25px auto;
} 

.section_other_programs h2{
	  /*margin-bottom: -30px;*/
}

.other_programs{
	  margin-bottom: -50px;
}

.other_programs h3{
	  color: #00bcea;
}

.other_programs .kt-row-column-wrap{
	  display: flex;
	  flex-wrap: wrap;
}

.other_programs .wp-block-kadence-column {
    background: #fff;
    box-shadow: 2px 2px 5px #c5c5c5;
    padding: 40px 4% 80px;
}  

.other_programs a{
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    background: #8ed85a;
    padding: 10px;
    position: absolute;
    bottom: 30px;
}

.other_programs a:hover{
	  background: #a3e476;
}


.graduate_resources .kt-row-column-wrap {
    background: #fff;
    box-shadow: 2px 2px 10px #00000012;
    padding: 30px 2%;
    min-height: 200px;
    align-items: center;
    margin-bottom: -50px;
}


.graduate_resources .kt-row-column-wrap{
    background: #fff;
    box-shadow: 2px 2px 10px #00000012;
  	padding: 30px 2%;
}

.graduate_resources h3{
	  color: #a0ce60;
}

/* == 5. Page: What We Do == */
.what_we_do_program .kt-row-column-wrap {
	background: #fff;
	box-shadow: 2px 2px 10px #00000012;
	min-height: 200px;
	align-items: center;
	margin-bottom: 0px;
	width: 100%;
	padding: 0;
	border-radius: 10px;
	overflow: hidden;
}

.what_we_do_program .kt-mobile-layout-row.kt-v-gutter-default > .wp-block-kadence-column{
	margin: 0;
}

.what_we_do_program .kt-row-column-wrap .inner-column-2{
  padding-top: 20px;
  padding-bottom: 20px;
}

.what_we_do_program h3{
	margin: 0;
}

.what_we_do_program .wp-block-image{
	position: relative;
}

.what_we_do_program .wp-block-image:after{
	content: " ";
	display: none;
	width: 15px;
	height: 100%;
	position: absolute;
	top: 0;
	right: -15px;
}

.what_we_do_program .wp-block-image img{
	object-fit: cover;
	object-position: center;
	height: 200px !important;
}


.what_we_do_program.box_school .wp-block-image:after{
	background: rgb(34 187 218 / 80%);
}

.what_we_do_program.box_work .wp-block-image:after{
	background: rgb(117 214 191 / 80%);
}

.what_we_do_program.box_individual .wp-block-image:after{
	background: rgb(146 202 120 / 80%);
}

.what_we_do_program .inner-column-2 > div{
	padding: 10px 5%;
}

.section-adam-scott{
  color: #fff;
}

.section-adam-scott h5{
  margin: 0;
}

.section-adam-scott h2{
  margin: 0;
}

.section-adam-scott p{
}

.section-adam-scott .sasbutton a{
  color: white;
  font-weight: 600;
  background-color: #00bcea;
  padding: 15px;
  display: inline-block;
}

.section-adam-scott .sasbutton a:hover{
  background-color: #9fce5f;
}

.program-filters .kt-row-column-wrap{
	width: 100% !important;
	max-width: 1300px;
	margin: 0 auto;
}

.program-filter{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	cursor: pointer !important;
	transition-duration: .2s;
}

.program-filter h3{
	color: #fff !important;
}

.program-filter.pf-school{
	background: #22bbda;
}
.program-filter.pf-school:hover{
	background: #2dc5e4;
}

.program-filter.pf-work{
	background: #5dc1aa;
}
.program-filter.pf-work:hover{
	background: #75d6bf;
}

.program-filter.pf-individual{
	background: #92ca78;
}
.program-filter.pf-individual:hover{
	background: #9ed684;
}

.program-filter > div{
	padding: 80px 5%;
}

.what-we-do-program-boxes.for-school .box_work,
.what-we-do-program-boxes.for-school .box_individual{
	display: none;
}
.what-we-do-program-boxes.for-school .box_school{
	display: block;
}


.what-we-do-program-boxes.for-work .box_school,
.what-we-do-program-boxes.for-work .box_individual{
	display: none;
}
.what-we-do-program-boxes.for-work .box_work{
	display: block;
}

.what-we-do-program-boxes.for-individual .box_school,
.what-we-do-program-boxes.for-individual .box_work{
	display: none;
}
.what-we-do-program-boxes.for-individual .box_individual{
	display: block;
}

.show-all-programs{
	cursor: pointer;
	margin: 0;
	color: #9e9e9e;
	background: white;
	float: right;
	padding: 8px 20px;
	border-radius: 10px;
	box-shadow: 2px 2px 10px #00000012;
	transition-duration: .2s;	
}

.show-all-programs:hover{
	color: #5c5c5c;
}

@media (min-width: 768px){
	.what_we_do_program .kt-row-column-wrap {
		margin-bottom: -50px;
	}
	
	.what_we_do_program .wp-block-image:after{
		display: block;
	}
	
	.what_we_do_program .wp-block-image img {
			margin: 0 auto;
			height: 450px !important;
	}
	
}

@media (min-width: 1300px){
	.what_we_do_program .wp-block-image img {
			height: 400px !important;
	}
}

@media (min-width: 1500px){
	.what_we_do_program .wp-block-image img {
			height: 370px !important;
	}
}

/* == 6. Page: Board Members == */

.section_team_members{
    text-align: center;
}

.section_team_members img{
    width: 200px;
    max-width: 100%;
    height: auto;
    border-radius: 50%;
    margin: 0 auto;
}

.section_team_members h4{
    color: #01bee8;
    margin: 20px 0 -15px 0
}

.section_team_members p{
    margin-top: -20px;
}

.section_team_members p a{
    color: #ababab;
    font-size: 15px;
}

.section_team_members p a:hover{
    color: #6d6d6d;
}

.section_team_members .kt-inside-inner-col{
    margin-bottom: 60px;
}

.section_life_members h4{
  font-size: 18px;
  text-align: left;
  padding: 10px 5%;
}

/* == 7. Page: Contact == */
.section_contact_top .cc_subhead{
    font-size: 20px;
    color: #9c2280;
    margin: 30px 0 -12px;
}

.section_contact_top .contact-icon{
    padding: 8px 0;
}

.section_contact_top .contact-icon .wp-block-media-text__media{
    text-align: center;
}

.section_contact_top .contact-icon .wp-block-media-text__media img{
		width: 25px;
		height: 25px;
}

.section_contact_top .contact-icon .wp-block-media-text__content{
    padding: 0 2%;
}

.section_contact_bottom h4 {
    background: #fff;
    padding: 30px 5% 0px;
    margin-bottom: -20px;
    margin-top: 40px;
    color: #a2ce62;
}

.section_contact_bottom p {
    margin-bottom: 40px;
    background: #fff;
    padding: 20px 5%;
}

.contact_map{
    margin-bottom: -7px;
}

.intl-tel-input {
    width: 100%;
}

.caldera-grid .field_required{
    color: #9c2280 !important;
}

/* == 8. Blog: Single Post Template == */
  @media screen {
    #single_post #top_image {
      background-color:#ddd;
      height:150px;
      transition:height 0.2s;
    }

    #single_post #post_content {
      padding: 32px 0;
    }

    #single_post #post_content h1 {
      margin: 0 0 32px 0;
    }

    #single_post #post_content .byline {
      border-bottom:1px solid #ccc;
      padding-bottom:8px;
      margin-bottom:32px;
    }

  }

  @media only screen and (min-width: 768px) {
    #single_post #top_image {
      height:250px;
    }

    #single_post #post_content {
      padding: 50px 0;
    }
  }

  @media only screen and (min-width: 1366px) {
    #single_post #top_image {
      height:350px;
    }

    #single_post #post_content {
      padding: 70px 0;
    }

  }

  @media only screen and (min-width: 1600px) {
    #single_post #top_image {
      height:450px;
    }
  }
  
  /*----*/
  
  .blog_header {
      position: relative;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      background-color: #01bee8;
      height: 250px;
      color: #fff;
      padding-top: 150px;
    
      background: url(../jpg/yo-hero-3.jpg);
      background-size: cover;
      background-position: 50% 50%;
  }
  
  .blog_header:after {
      content: ",";
      background: white;
      position: absolute;
      bottom: 0;
      height: 50px;
      width: 100%;
      -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
      clip-path: polygon(0 0, 0% 100%, 100% 100%);
  } 

  .blog_header h1 {
      color: #fff;
      font-size: 20px;
      margin: -30px 0 10px 0px !important;
  }

  .blog_header .inner{
      width: 90%;
  }

  .inner{
      width: 100%;
      max-width: 1366px;
      margin: 0 auto;
  }
  
  .post-container-outer{
      display: flex;
  }
  
  .post_container{
      width: 70%;
      margin: 0 2%;
  }
  
  .post_sidebar{
      width: 30%;
  }
  
  .post_image img{
      width: 500px;
      max-width: 100%;
  }

  .single-post .bottom_tags{
    border-top: 2px solid #e8e8e8;
    width: 100%;
    display: block;
    padding-top: 20px;
    margin: 60px 0 20px;
  }

  @media (min-width: 768px){
    .blog_header h1 {
      font-size: 35px;
    }
  }
  
  @media (max-width: 767px){
      .blog_header h1{
          padding: 0px 5%;
      }
    
      .post-container-outer,
      .post_sidebar{
          display: block;
          width: 100%;
      }
    
      .post_container{
          display: block;
          width: 100%;
          padding-top: 30px;
          max-width: 90%;
          margin: -30px 5% 50px;
      }
  }

/* == 9. Blog: Posts Page == */
.page-numbers{
    color: #868686;
    padding-right: 8px;
}


.page-numbers:hover,
.page-numbers.current{
    color: #01bae0;
}

.prev.page-numbers,
.next.page-numbers{
    color: #868686;
}

.prev.page-numbers:hover,
.next.page-numbers:hover{
    color: #01bae0;
}


.news_post {
    background: #fff;
    box-shadow: 2px 2px 10px #e0e0e0;
    padding: 25px 5%;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}



.blog_image{
  background-size: cover !important;
  background-position: 50% 50% !important;
  background-repeat: no-repeat !important;
  height: 300px;
  width: 100%;  
}

.blog_image img{
    max-width: 100%;
}


.blog_content{
  width: 100%; 
}

.blog_content h2{
    font-size: 20px;
    color: #00bae0;
    margin-top: 20px;
}

.blog_content p.event-date{
    color: #710052;
    margin-top: -17px;
}

@media (min-width: 768px){
  .news_post {
    padding: 20px 2%;
  }
  
  .blog_image{
    width: 33%;  
    display: inline-block;
    margin-right: 2%;
  }
  
  .blog_content{
    width: 65%; 
    display: inline-block;
    padding: 30px 0px;
  }
  
  .blog_content h2{
    font-size: 30px;
    margin-top: 0;
  }

  
}

/* == 10. Blog: Sidebar == */
.sidebar_outer{
    padding: 0px 5%;
}

.sidebar_inner{
    background: #efefef;
    padding: 20px 10%;
    margin: 0 0 20px 0;
}

.sidebar_outer h2 {
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    color: #01bee8;
    margin: 10px 0;
}


.sidebar_outer ul{
    list-style-type: none;
    padding: 0px;
}

.sidebar_outer ul li {
    font-size: 15px;
    padding: 5px 0px;
    border-bottom: 1px dotted #cccccc;
}

.sidebar_outer ul li a {
  text-decoration:none;
}

.sidebar_outer ul li a:hover {
  text-decoration:underline;
}

.sidebar_outer ul li:last-child{
    border-bottom: none;
    padding-bottom: 0px;
    margin-bottom: -5px;
}


/* == 11. Page: Donors ==*/

.section_donor > div > div{
  background: #fff;
  box-shadow: 2px 2px 10px #eaeaea;
  border-radius: 10px;
  margin-bottom: -50px;
}

.section_donor > div > div > div{
  padding: 50px 5%;
}

.section_donor .kt-gutter-default > .wp-block-kadence-column{
  justify-content: center;
}

.section_donor img{
  height: auto;
  max-width: 100%;
  max-height: 150px;
  margin: auto;
  padding: 20px 2%;
	object-fit: contain;
}

.section_donor figure.wp-block-image{
  width: 100% !important;
}

.section_donor h4{
  padding: 40px 5%;
  font-size: 18px;
  font-weight: 400;
  color: #96ca73;
  text-align: center;
}

.section_donor h4.logo-subheading{
  padding: 0 5%;
  margin-top: 0px;
  font-size: 16px;
  color: #c7c7c7;
}


@media (max-width: 1400px){
    .section_donor > div > div{
        margin: 0px 3% -50px !important;
    }
}

@media (max-width: 767px){
    .section_donor .kt-has-1-columns{
        padding: 0px;
    }
  
    .section_donor .inner-column-1{
        padding: 0px 2%;
        margin: 0px !important;
        text-align: center;

    }
  
    .section_donor h2{
        margin-top: 30px;
        font-size: 20px;
    }
}

/*== 12. Page: Thrive Landing Page ==*/
.thrive-category-boxes .kt-inside-inner-col{
	background: #fff;
}

.thrive-category-boxes .thrive-box figure{
	display: block;
	margin: 0;
}

.thrive-category-boxes .thrive-box > div{
	position: relative;
	padding-bottom: 60px;
}

.thrive-category-boxes .thrive-box.thrive-school > div{
	background: #2fbcd1;
}

.thrive-category-boxes .thrive-box.thrive-work > div{
	background: #60c3a6;
}

.thrive-category-boxes .thrive-box.thrive-life > div{
	background: #92c976;
}

.thrive-category-boxes .thrive-box h4{
	margin: 30px auto 20px;
	width: 90%;
	color: #fff;
}

.thrive-category-boxes .thrive-box p{
	width: 90%;
	margin: 30px auto;
	text-align: center;
	color: #fff;
}

.thrive-category-boxes .thrive-box .button{
	position: absolute;
	bottom: 5px;
	left: 0;
	right: 0;
}

.thrive-category-boxes .thrive-box .button a{
	color: #fff;
	border-bottom: 2px solid #ffff;
	padding: 7px 15px;
}


/*== X1. Paintbrushes ==*/

.paintbrush-purple-l,
.paintbrush-blue-l,
.paintbrush-green-l,
.paintbrush-orange-l,
.paintbrush-orange2-l,
.paintbrush-grey-l,
.paintbrush-raisely-l{
    background-size: 100% 100% !important;
    background-repeat: no-repeat !important;
    background-position: 50% 50% !important;
    width: fit-content;
    padding: 20px 20px 37px 30px;
    color: #fff !important;
    text-shadow: 2px 2px 10px #0000003d;
    margin-bottom: 0px;
}


.paintbrush-purple-l{
    background: url(../png/paintbrush-purple-l.png);
}

.paintbrush-blue-l{
    background: url(../png/paintbrush-blue-l.png);
}

.paintbrush-green-l{
    background: url(../png/paintbrush-green-l.png);
}

.paintbrush-orange-l{
    background: url(../png/paintbrush-orange-l.png);
}

.paintbrush-orange2-l{
    background: url(../png/paintbrush-orange2-l.png);
}

.paintbrush-grey-l{
    background: url(../png/paintbrush-grey-l.png);
}

.paintbrush-raisely-l{
    background: url(../png/paintbrush-raisely-l.png);
}




/*== X2 Animation Elements ------------------------------------------------------------------------------------------------------------*/
.animation {
  position: relative; 
}

.bounce-up.in-view.animate-object,
.bounce-down.in-view.animate-object,
.slide-from-left.in-view.animate-object,
.slide-from-right.in-view.animate-object,
.fadein.in-view.animate-object {
  opacity: 1;
  -moz-transform: translate3d(0px, 0px, 0px);
  -webkit-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate3d(0px, 0px, 0px); }

/*-- animation: bounce up--*/
.bounce-up.animate-object {
  opacity: 0;
  /*-- transition --*/
  -moz-transition: all 700ms ease-out;
  -webkit-transition: all 700ms ease-out;
  -o-transition: all 700ms ease-out;
  transition: all 700ms ease-out;
  /*-- transform --*/
  -moz-transform: translate3d(0px, 50px, 0px);
  -webkit-transform: translate3d(0px, 50px, 0px);
  -o-transform: translate(0px, 50px);
  -ms-transform: translate(0px, 50px);
  transform: translate3d(0px, 50px, 0px);
  /*-- visibility --*/
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*-- animation: bounce up--*/
.bounce-down.animate-object {
  opacity: 0;
  /*-- transition --*/
  -moz-transition: all 700ms ease-out;
  -webkit-transition: all 700ms ease-out;
  -o-transition: all 700ms ease-out;
  transition: all 700ms ease-out;
  /*-- transform --*/
  -moz-transform: translate3d(0px, -50px, 0px);
  -webkit-transform: translate3d(0px, -50px, 0px);
  -o-transform: translate(0px, -50px);
  -ms-transform: translate(0px, -50px);
  transform: translate3d(0px, -50px, 0px);
  /*-- visibility --*/
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*-- animation: slide from left --*/
.slide-from-left.animate-object {
  opacity: 0;
  -moz-transition: all 500ms linear;
  -webkit-transition: all 500ms linear;
  -o-transition: all 500ms linear;
  transition: all 500ms linear;
  -moz-transform: translate3d(-50px, 0px, 0px);
  -webkit-transform: translate3d(-50px, 0px, 0px);
  -o-transform: translate(-50px, 0px);
  -ms-transform: translate(-50px, 0px);
  transform: translate3d(-50px, 0px, 0px); }

/*-- animation: slide from right --*/
.slide-from-right.animate-object {
  opacity: 0;
  -moz-transition: all 500ms linear;
  -webkit-transition: all 500ms linear;
  -o-transition: all 500ms linear;
  transition: all 500ms linear;
  -moz-transform: translate3d(50px, 0px, 0px);
  -webkit-transform: translate3d(50px, 0px, 0px);
  -o-transform: translate(50px, 0px);
  -ms-transform: translate(50px, 0px);
  transform: translate3d(50px, 0px, 0px); }

/*
@media (max-width: 768px){
  .animation{
    overflow: hidden;
  }
}*/
.delay-1 {transition-delay: 0.1s !important; }
.delay-2 {transition-delay: 0.2s !important; }
.delay-3 {transition-delay: 0.3s !important; }
.delay-4 {transition-delay: 0.4s !important; }
.delay-5 {transition-delay: 0.5s !important; }
.delay-6 {transition-delay: 0.6s !important; }


/*
.st0{
  fill: #A2CE62;
}

.st1{
  fill: #00BADE;
}

*/


/*== 14. Page: How it works ------------------------------------------------------------------------------------------------------------*/

.container-program-framework .inner-column-1 {
  justify-content: center;
  align-items: center;
}

.container-program-framework .inner-column-1 img {
  width: 200px;
  max-width: 100%;
}

.container-program-framework .inner-column-2{
  justify-content: center;
	border-radius: 10px;
}

.container-program-framework .inner-column-2 > div{
  color: #fff;
  padding: 50px 5%;
}

.cpf1 .inner-column-2{
  background-color: #ed433d;
}

.cpf2 .inner-column-2{
  background-color: #902c8e;
}

.cpf3 .inner-column-2{
  background-color: #f59331;
}

.cpf4 .inner-column-2{
  background-color: #00a89c;
}


/*== 15. Page: Results and Outcomes ------------------------------------------------------------------------------------------------------------*/


.wellbeing-individual > div{
  padding: 20px 0;
}

.wellbeing-individual img{
    width: 70px;
    max-width: 100%;
    margin: auto;
}


.wellbeing-individual .inner-column-2{
    justify-content: center;
}

.wellbeing-individual .inner-column-2 p{
    font-size: 25px;
    line-height: 35px;
}

.page-id-5983 .page_header > .kt-row-has-bg:after{
    background-color: #313131;
}


.page-id-5983 .section-reduction-risk blockquote{
    margin: 25px 0;
    width: 450px;
    max-width: 100%;
}

.page-id-5983 .section-reduction-risk blockquote p{
    margin-bottom: 5px;
}


.page-id-5983 .section-reduction-risk blockquote cite{
    font-weight: 700;
}

.counter{
    text-align: center;
}

.counter img{
    height: 100px;
    width: inherit;
}

.counter .counter-value{
    color: #585858;
    font-size: 43px;
    font-weight: 900;
    display: inline-block;
    text-align: center;
    margin: 0 auto;
}

.counter h3{
    color: #585858;
    display: inline-block;
    margin: 0;
}

 
.counter p.text{
    font-weight: 700;
    font-size: 25px;
    width: 100%;
    max-width: 220px;
    text-align: center;
    margin: 20px auto 0;
}

.ccv-gep .counter .counter-value,
.ccv-gep .counter h3{
  color: #00a79c;
}


/*-- --*/
.ppl_bot_two_feature > div > div{
  align-items: flex-end;
}


.ppl_bot_icon .kt-inside-inner-col{
  display: inherit;
}


.bot_blue > div{
  padding: 50px 6%;
}

.bot_blue h2{
  font-size: 30px;
  margin-bottom: 50px;
}

.bot_blue h3{
  font-size: 20px;
  color: #fff;
}

.bot_blue h3 span{
  font-size: 30px;
  font-weight: 900;
}

/*-- --*/
.page-id-5983 .bot_purple > div{
  padding: 50px 6%;
}

.page-id-5983 .bot_purple h2{
  font-size: 30px;
  margin-bottom: 50px;
  color: #fdb813 !important;
}

.page-id-5983 .bot_purple h3{
  font-size: 20px;
  color: #fff;
}

.page-id-5983 .bot_purple h3 span{
  font-size: 30px;
  font-weight: 900;
}

.outcome-percent-heading{
  font-weight: 900;
  font-size: 80px;
  margin: 0 0 -30px;
}

.outcome-percent-heading:after{
  content: "%";
  font-size: .6em;
  position: absolute;
  margin-left: 5px;
}

.view-stories a{
  color: #00bcdd;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 2px solid;
  text-decoration:none;
}

.view-stories a:hover{
  color: #a3cb68;
}




/*== 16. Page: Competitions/Events ------------------------------------------------------------------------------------------------------------*/
.post-type-archive-tc_events .site_maxwidth{
    background-color: #f7f7f7;
}

#stc-events{
    padding: 50px 0;
}

#stc-events .post-container-outer > div{
  width: 100%; 
}

#stc-events.noEvent{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    background-image: url(../jpg/yo-header-47.jpg);
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    background-repeat: no-repeat;
    min-height: 400px;
}

#stc-events.noEvent .wrapNoEvent{
  background: #000000a8;
  width: 100%;
  max-width: 500px;
  margin: 20px 7%;
}

#stc-events.noEvent .wrapNoEvent p{
  padding: 30px;
  color: #fff;
}


#stc-events .event-image > div{
    height: 350px;
    width: 100%;
    background-color: #b1f2ff;
    background-size: cover;
    background-position: 50% 50%;
}

#stc-events .event-item{
    background: #fff;
    box-shadow: 2px 2px 5px #00000036;
}

#stc-events .event-item .event-content{
    padding: 30px 5%;
}


#stc-events .event-item .event-content h3{
    margin-bottom: 10px
}

#stc-events .event-item .event-content .event-date{
    color: #01bade;
}


#stc-events .event-item .event-content p{
    font-size: 16px;
}

#stc-events .event-item .event-content a.read-more {
    display: block;
    width: max-content;
    box-sizing: border-box;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 15px;
    background-color: #01bade;
    cursor: pointer !important;
    margin: 15px 0 0;
}

#stc-events .event-item .event-content a.read-more:hover{
    background: #40b2d0;
    cursor: pointer !important;
}


#stc-events .event-list{
    width: 90%;
    margin: 0 auto;
}

#stc-events .event-item{
    margin: 0 0 30px;
}


@media (min-width: 600px){
    #stc-events .event-list{
        display: flex;
        flex-wrap: wrap;
        width: 96%;
        margin: 0 auto;
    }
  
    #stc-events .event-item{
        flex: 0 0 49%;
        background: #fff;
        margin: 10px .5% .5%;
    }
}





@media (min-width: 1000px){
    #stc-events .event-item{
        flex: 0 0 32.33%;
    }
}




/*== 17. Tickera ------------------------------------------------------------------------------------------------------------*/

/*-- 6963 : tickets cart--*/
.single-tc_events .ticket-description{
  font-size: 15px;
  line-height: 15px;
  color: #4bc2e0;
}

.single-tc_events .tc_tickets_sold{
  display: block;
  font-size: 15px;
  line-height: 20px;
  color: #b7b7b7;
}

.tickera-checkout tbody tr td{
  font-size: 16px;
  line-height: 23px;
}

.ticket-description{
  max-width: 240px;
}

.ticket-total-all > span{
  display: none;
}

.ticket-total-all .cart_total_price_title,
.ticket-total-all .cart_total_price{
  display: inline-block !important;
}


/*-- 6963 : tickets cart--*/
/*-- 6964 : tickets payment--*/
/*-- 6965 : tickets order confirmation --*/
/*-- 6966 : tickets order details --*/
/*-- 6967 : tickets process payment --*/

[data-postid="6963"] .site_maxwidth,
[data-postid="6964"] .site_maxwidth,
[data-postid="6965"] .site_maxwidth,
[data-postid="6966"] .site_maxwidth,
[data-postid="6976"] .site_maxwidth,
body.single-tc_events .site_maxwidth{
    background-color: #f7f7f7;
}

@media (min-width: 1000px){
    [data-postid="6963"] header,
    [data-postid="6964"] header,
    [data-postid="6965"] header,
    [data-postid="6966"] header,
    [data-postid="6967"] header,
    body.post-type-archive-tc_events header,
    body.single-tc_events header{
        background-color: #252525 !important;
        position: relative;
    }
}


[data-postid="6963"] #general_container,
[data-postid="6965"] #general_container,
[data-postid="6966"] #general_container,
[data-postid="6967"] #general_container{
    background: #ffffff;
    box-shadow: 2px 2px 5px #00000021;
    width: 1200px;
    max-width: 90%;
    margin: 30px auto;
    padding: 20px 3%;  
}


[data-postid="6963"] #general_container .tc_cart_errors li,
[data-postid="6964"] #general_container .tc_cart_errors li{
    color: #ffffff;
    font-size: 17px;
    background: #ea0000;
    padding: 10px 0;
    text-align: center;
    box-shadow: 1px 1px 5px #00000038;
}

[data-postid="6963"] #general_container #tickera_cart,
[data-postid="6964"] #general_container #tickera_cart{
    padding: 100px 5%;
    width: 100%;
    box-sizing: border-box;
}

[data-postid="6963"] .cart_empty_message{
    padding: 60px 5%;
    color: #444444;
}


/*-- 6964 special to Page : Tickets Payment--*/
    [data-postid="6964"] #general_container .tickera-checkout{
        background: #ffffff;
        box-shadow: 2px 2px 5px #00000021;
        width: 1200px;
        max-width: 90%;
        margin: 30px auto;
        padding: 30px 3%;  
    }

    [data-postid="6964"] #general_container > .tickera{
        background: #ffffff;
        box-shadow: 2px 2px 5px #00000021;
        width: 1200px;
        max-width: 90%;
        margin: 30px auto;
        padding: 20px 3%;
        display: grid;
    }

    [data-postid="6964"] #general_container > .tickera .ticket-description{
      text-align: left !important;
    }


.tickera{
    display: inline-block;
}

.tickera .tc_cart_errors li {
    color: #ffffff;
    font-size: 17px;
    background: #ea0000;
    padding: 10px;
    margin: 0;
    text-align: center;
    box-shadow: 1px 1px 5px #00000038;
}

.tickera .tickera-payment-gateways .tickera-height.tc_gateway_form{
    margin: 10px 0;
}

.tickera .tickera-payment-gateways .tickera-height.tc_gateway_form p{
    margin: 0;
}

.tickera-button{
    margin: 0;
    background-color: #02bade;
}

.tickera-payment-gateways .plugin-title img{
    width: 50px;
    max-width: 100%;
}

.tickera_buyer_info .fields-wrap input{
    font-size: 17px;
    padding: 10px 5%;
    margin-left: 0;
}

.tickera_buyer_info .fields-wrap input::placeholder{
    color: #dadada;
}


/*-- Buyer Info --*/
.tickera_buyer_info.info_section .fields-wrap span{
  margin-top: 10px;
  font-weight: 700;
}

/*-- Donate--*/
/*
.tickera_buyer_info.info_section .fields-wrap:last-of-type{
    flex: 0 0 100%;
    background: #fff;
    box-shadow: 1px 1px 5px #e8e8e8;
    padding: 30px 2%;
    box-sizing: border-box;
    margin: 20px 0 10px;
    border-radius: 5px;
}

.tickera_buyer_info.info_section .fields-wrap:last-of-type span{
    color: #02bade;
    font-weight: 700;
    font-size: 18px;
}

.tickera_buyer_info.info_section .fields-wrap:last-of-type span.description{
    color: #525252;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
}

.tickera_buyer_info.info_section .fields-wrap:last-of-type input{
    width: 100%;
    margin: 10px 0;
    padding: 10px;
}
*/




@media (min-width: 768px){
  .tickera_buyer_info{
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      margin: 30px 0 0;
      background: #f9f9f9;
      box-shadow: 1px 1px 5px #00000036;
      border: none;
      padding: 20px 3%;
      box-sizing: border-box;
  }
  
  .tickera_buyer_info h3{
      flex: 0 0 100%;
      font-size: 25px;
      margin-bottom: 5px;
      color: #02bade;
  }
  
  
  .tickera_buyer_info .fields-wrap{
      flex: 0 0 49%;
  }
  
  .tickera_buyer_info .fields-wrap span {
      font-size: 15px;
      margin-bottom: 0;
  }
  
  
  .tickera_buyer_info .fields-wrap input{
      width: 100%;
      box-sizing: border-box;
  }
  

}


/*-- Owner Info --*/
.tickera_owner_info h2 {
    font-size: 25px;
    margin-bottom: 5px;
    color: #02bade;
}

.tickera_owner_info h5 {
    color: #bfbfbf;
    margin: 10px 0 0;
}

.tickera_owner_info .fields-wrap span{
    font-size: 15px;
    font-weight: 700;
    margin: 0;
}

.tickera_owner_info{
    background: #f9f9f9;
    box-shadow: 1px 1px 5px #00000036;
    display: inline-block;
    width: 100%;
    border-bottom: none;
}

.tickera_owner_info > div{
    padding: 20px 3% 0;
}

.tickera_additional_info label input{
    margin-left: 0;
}


@media (min-width: 768px){
    .tickera_owner_info .owner-info-wrap{
      display: flex;
      flex-wrap: wrap;
    }
  
    .tickera_owner_info .owner-info-wrap .fields-wrap{
      flex: 0 0 32.66%;
    }
  
    .tickera_owner_info .owner-info-wrap .fields-wrap input {
      width: 95%;
    }
}


/*-- Payment Success test--*/

.cc-sample{
    color: #fdb920;
    font-size: 12px;
}

.paySuccess{
    height: 300px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-color: #02bade;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 2px 2px 10px #0000004f;
}

.payCardChecker {
    background-color: #009ebd;
    color: #fff;
    padding: 20px;
    font-weight: 700;
    text-align: center;
}

/*== 17. Page: Tickera Single Event Post -----------------------------------------------------------------------------------------------*/


#single-tc-post{
  padding: 30px 0;
}

#stsep-post{
  width: 96%;
  margin: 0 auto;
  word-break: break-word;
}

#stsep-post > .content h1{
  font-size: 40px;
  margin-bottom: 10px;
}


#stsep-post .cart_form .add_to_cart{
  background-color: #4bc1e0;
  color: #fff;
  font-weight: 700;
  padding: 10px 15px;
  text-transform: uppercase;
  font-size: 16px;
  width: max-content;
  display: block;
  box-sizing: border-box;
  overflow: scroll;
}

#stsep-post .cart_form .add_to_cart:hover{
  background-color: #01bade;
}

#stsep-post .content > div > .cart_form{
  padding-top: 20px;
  background: #fff;
  padding: 30px 5%;
  margin-bottom: -50px;

  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

#stsep-post .content > div > p > .tc_in_cart{
  padding: 20px 5%;
  background: #ffffff;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: -40px;
}





#stsep-post .tickera{
  width: 100%;
}

#stsep-post .tickera table{
  text-align: left;
  background: #fff;
  padding: 10px 0;
  font-size: 16px;
  line-height: 22px;
}

#stsep-post .tickera table tbody{
  width: 100%;
  display: table;
}

#stsep-post .tickera table legend,
#stsep-post .tickera table td,
#stsep-post .tickera table th{
  padding: 0;
  padding: 15px 2%;
}


.tickera-checkout thead tr th:nth-child(2),
.tickera-checkout tbody tr td:nth-child(2){
    text-align: left !important;
}


#stsep-post .tickera table td:nth-child(1){
  width: 30%;
}

#stsep-post .tickera table td:nth-child(2){
  width: 30%;
}

#stsep-post .tickera table td:nth-child(3){
  width: 20%;
}

#stsep-post .tickera table td:nth-child(4){
  width: 20%;
}


#stsep-post .tickera .tc_in_cart a,
#stsep-post .content > div > p > .tc_in_cart a{
  color: #4BC1E2;
}

#stsep-post .tickera .tc_in_cart a:hover,
#stsep-post .content > div > p > .tc_in_cart a:hover{
  color: #01bade;
}


#stsep-post > .image{
  text-align: center;
}

#stsep-post > .image img{
  width: 90%;
}


@media (min-width: 768px){
    #single-tc-post{
      padding: 50px 0;
    }
  
    #stsep-post{
      display: flex;
      flex-wrap: wrap;
    }
  
    #stsep-post > .content{
      flex: 0 0 60%;
    }  
  
    #stsep-post > .image{
      flex: 0 0 40%;
    }
  
}


@media (min-width: 1400px){
    #single-tc-post{
      padding: 80px 0;
    }
}

.event_tickets.tickera th:last-of-type{
  display: none;
}

/*== 17.1 Page: Tickera Single Event-Like Page - Tickera Block  -----------------------------------------------------------------------------------------------*/
div.tickera{
  display: block;
  width: 100%;
}

table.tickera{
  background: #f4f4f4;
  padding: 20px;
}

table.tickera th,
table.tickera td{
  padding: 5px 10px;
}

table.tickera th:nth-child(2),
table.tickera td:nth-child(2){
  display: none;
}

table.tickera a.add_to_cart{
  background: #a4d630;
  color: #fff;
  font-weight: 600;
  padding: 10px 15px;
  display: inline-block;
  border-radius: 5px;
}

table.tickera a.add_to_cart:hover{
  background: #B8E943;
}




/*== 18. Page: Donate -----------------------------------------------------------------------------------------------*/


.donate_intro .kt-row-layout-inner {
	padding:16px 0;
}

.donate_intro #kt-layout-id_1c7a25-5f > .kt-row-column-wrap {
	max-width:768px;
}

.donate_main_options {
	padding:16px;
	margin:0;
}

.donate_main_options .wp-block-columns {
	width:90%;
	max-width:1280px;
	margin:0 auto;
}

.donate_main_options .wp-block-kadence-advancedheading {
	margin:8px;
}

.donate_main_options .wp-block-kadence-advancedheading a {
	display:flex;
	align-items:center;
	padding:48px 32px;
	height:64px;
	background-color:#fff;
	box-shadow:2px 2px 8px rgba(0,0,0,0.1);
  justify-content: center;
  text-align: center;
}

.donate_main_options .dd-column-donate a{
  background-color: #9fcd60;
  color: #fff;
  transition-duration: .2s;
}

.donate_main_options .dd-column-donate a:hover{
  background-color: #01bade;
}


.donate_raisely_bg .wp-block-columns {
	width:90%;
	max-width:1600px;
	margin:0 auto;
}

.donate_raisely_bg #raisely {
	width:100%;
	border:none;
	min-height:600px;
}

.donate_links {
	padding:32px 0;
}

.donate_links .wp-block-columns {
	width:90%;
	max-width:1280px;
	margin:0 auto;
}


.section_resources.donate{
  clip-path: none !important;
  -webkit-clip-path: none !important;
  margin: 0;
  padding: 0;
  background: #f5f5f5;
}

.section_resources.donate h3{
  color: #93117d;
}

.donate-header{
  display: none;
}

.donate_now a{
  background-color: #27869a;
}

.donate_now a:hover{
  background-color: #53def8;
}


/*--*/
.donate-rotate > div > .kt-has-2-columns{
  position: relative;
  flex-direction: column-reverse;
}

.donate-rotate > div > .kt-has-2-columns h2{
  position: absolute;
  top: 0; 
}

.donate-rotate > div > .kt-has-2-columns iframe{
  margin-top: 80px !important;
}

/**/

@media (min-width: 480px){
	.donate_intro .kt-row-layout-inner {
		padding:32px 0;
	}
	
	.donate_main_options {
		padding:32px;
	}
	
	.donate_links {
		padding:48px 0;
	}
	
}

@media (min-width: 600px){
	.donate_intro .kt-row-layout-inner {
		padding:48px 0;
	}
	
	.donate_main_options .wp-block-column {
		flex-basis:calc(50% - 16px);
	}
	
	.donate_main_options .wp-block-column:nth-child(2n){
		margin:0;
	}
	
	.donate_links {
		padding:64px 0;
	}
  
  
  /**/
  .donate-rotate > div > .kt-has-2-columns{
    position: relative;
    flex-direction: unset !important;
  }

  .donate-rotate > div > .kt-has-2-columns h2{
    position: relative;
  }

  .donate-rotate > div > .kt-has-2-columns iframe{
    margin-top: 15px !important;
  }
  /**/
	
}

@media (min-width: 768px){
	.donate_main_options {
		padding:48px;
	}
}

@media (min-width: 782px){
	.donate_main_options .wp-block-column {
		margin:0;
	}
}


@media (min-width: 1000px){
  .donate-header{
    display: block;
  }
}


/*== 19. Page: Webinar -----------------------------------------------------------------------------------------------*/


.webinar-checklist-section ul.kt-svg-icon-list > li{
  align-items: flex-start !important;
  margin: 20px 0 !important;
}

.webinar-checklist-section ul.kt-svg-icon-list > li span{
  font-weight: 300;
  margin-left: 10px !important;
}

.webinar-event-subheading{
  background: #ffa339;
  background: linear-gradient(45deg, #af1f23, #c42529, #ff7d21);
  border-radius: 10px;
  display: inline-block;
  padding: 15px;
  margin-top: 20px;
}

.maxima-olp > div{
  background: linear-gradient(45deg, #ab1b19, #d88249);
}




/*== 20. Page: WooCommerce Shop Archive ------------------------------------------------------------------------------------------------------------*/
.page-id-9592 #general_container,
.page-id-9592 .page_header > .kt-row-has-bg:after{
  background: #f5f5f5;
}

.page-id-9592 #general_container .woocommerce{
  width: 1366px;
  max-width: 90%;
  margin: 0 auto;
  padding: 50px 0;
}

.page-id-9592 .woocommerce-notices-wrapper,
.page-id-9592 .woocommerce-result-count,
.page-id-9592 .woocommerce-ordering{
  display: none;
}

.page-id-9592 #general_container .woocommerce .products .product{
  background: #fff; 
  transition-duration: .2s;
  padding-bottom: 60px;
}

.page-id-9592 #general_container .woocommerce .products .product:hover{
  transform: scale(0.97);
}

.page-id-9592 #general_container .woocommerce .products .product img{
  max-height: 300px;
  object-fit: cover;
}

.page-id-9592 #general_container .woocommerce .products .product h2{
  margin: 0 auto;
  width: 90%;
  font-weight: 200;
  font-size: 25px;
  color: #444444;
}
.page-id-9592 #general_container .woocommerce .products .product span{
  margin: -5px auto 20px;
  width: 90%;
  color: #49c20f;
}

.page-id-9592 #general_container .woocommerce .products .product a.button{
  display: inline-block;
  padding: 12px;
  margin: 20px 5% 10px;
  display: none;
}

.page-id-9592 #general_container .woocommerce .products .product h2:after{
    content: "discover";
    color: #929292;
    background: #f5f5f5;
    font-size: 15px;
    padding: 10px 15px;
    border-radius: 10px;
    font-weight: 500;
    margin-top: -10px;
    position: absolute;
    bottom: 20px;
    left: 5%;
}


@media (min-width: 769px){
  
  .page-id-9592 #general_container .woocommerce .products{
    display: flex;
    flex-wrap: wrap;
  }

  .page-id-9592 #general_container .woocommerce .products .product{
    width: 31.33%;
    float: none;
    margin: 1%;
    padding-bottom: 60px;
  }
  
  
}


/*== 21. Page: WooCommerce Single Product ------------------------------------------------------------------------------------------------------------*/
.woocommerce.single-product .post_sidebar{
	display: none;
}

.woocommerce.single-product .post_container{
	width: 100%;
}


.woocommerce.single-product .quantity .qty{
	width: 3.631em;
	text-align: center;
	padding: 8px;
	border: none;
	border-bottom: 2px solid #969696;
	margin-right: 10px;
}

.woocommerce.single-product .product .cart{
	margin-bottom: 0;
}

.woocommerce.single-product .product .cart .button{
	background: #4bc1e0;
	outline: none !important;
	transition-duration: .2s;
}

.woocommerce.single-product .product .cart .button:hover{
	background: #60d4f3;
}


.woocommerce.single-product .entry-summary h2{
	font-size: 35px;
	font-weight: 200;
	color: #444444;
	margin: 40px 0 10px;
}


.woocommerce.single-product .entry-summary .price {
	color: #77a464;
	font-size: 20px;
	margin-bottom: 30px;
}
	
.woocommerce.single-product .subline_news_item,
.woocommerce.single-product .product_meta,
.woocommerce.single-product .woocommerce-tabs.wc-tabs-wrapper .tabs,
.woocommerce.single-product .woocommerce-tabs.wc-tabs-wrapper h2,
#wc-stripe-payment-request-wrapper,
#wc-stripe-payment-request-button-separator{
	display: none !important;
}

.woocommerce.single-product .related.products{
	flex: 0 0 100%;
	width: 100%;	
}

@media (min-width: 769px){
	.woocommerce.single-product .woocommerce-tabs.wc-tabs-wrapper{
		clear: right;
		float: right;
		width: 48%;
	}
	
	.woocommerce.single-product .woocommerce-tabs.wc-tabs-wrapper p{
		max-width: 500px;
		width: 90%;
	}

}


/**/
.woocommerce.single-product .related.products{
	display: inline-block;
	margin-top: 30px;
}

.woocommerce.single-product .related.products h2{
	font-weight: 200;
	font-size: 25px;
	color: #444444;
}

.woocommerce.single-product .related.products a.button,
.woocommerce.single-product .bottom_tags{
	display: none;
}

.woocommerce.single-product .related.products .products{
	display: flex;
}

.woocommerce.single-product .related.products .products .product{
	background: #f5f5f5;	
	transition-duration: .2s;	
}

.woocommerce.single-product .related.products .products .product:hover{
	transform: scale(0.98);
}


.woocommerce.single-product .related.products .products .product h2{
	margin: 0 auto;
	width: 90%;
	font-weight: 200;
	font-size: 20px;
	color: #444444;
}

.woocommerce.single-product .related.products .products .product span{
	margin: 0 auto 20px;
	width: 90%;
}


/*== 22. Page: WooCommerce Cart & Checkout ------------------------------------------------------------------------------------------------------------*/
.woocommerce-cart #general_container,
.woocommerce-checkout #general_container{
	max-width: 1100px;
	margin: 0 auto;
}

.woocommerce-cart #general_container .woocommerce,
.woocommerce-checkout #general_container .woocommerce{
	padding: 50px 5%;
}

.woocommerce-cart #general_container .woocommerce .cart_totals h2{
    font-weight: 200;
    font-size: 25px;
    color: #4bc2e0;
    margin-top: 20px;
}

.woocommerce-cart #general_container .woocommerce .checkout-button{
	background: #4bc1e0;
	transition-duration: .2s;
}


.woocommerce-cart #general_container .woocommerce .cart_totals .checkout-button:hover,
.woocommerce-checkout #place_order:hover{
	background: #60d4f3;
}


.woocommerce-checkout h3{
	color: #4bc2e0;
	font-weight: 200;
}

.woocommerce-checkout input,
.woocommerce-checkout textarea{
    padding: 15px;
    border: 1px solid #aaaaaa;
}

.woocommerce-checkout #payment {
    background: #ebe9eb;
    border-radius: 5px;
    padding: 50px 5%;
}

.woocommerce-checkout #place_order{
    background: #4bc1e0;
    transition-duration: .2s;
    width: 100%;
    padding: 20px;
    box-shadow: 2px 2px 10px #00000024;
    margin: 20px 0 0 0;
}

.woocommerce-checkout #payment div.payment_box .form-row{
	padding: 0;
}

.woocommerce-checkout #customer_details > div{
	width: 100%;
}

.woocommerce-checkout .woocommerce-additional-fields{
	display: none;
}

.woocommerce-checkout .select2-container .select2-selection--single{
	height: auto;
}

.woocommerce-checkout .select2-container .select2-selection--single > span{
	padding: 15px 20px;
}

.woocommerce-checkout form.checkout{
	background: #fff;
	padding: 40px;
	border-radius: 10px;
	box-shadow: 2px 2px 10px #0000001f;
}

.woocommerce-checkout > #max_width_container{
	background: #4bc2e0;
}

@media (min-width: 1000px){
	.woocommerce-cart header,
	.woocommerce-checkout header{
		background: #000;
	}
	
	.woocommerce-cart #general_container .woocommerce,
	.woocommerce-checkout #general_container .woocommerce{
		padding: 200px 5% 50px;
	}
}


/*== 23. Page: Resources  ------------------------------------------------------------------------------------------------------------*/
body[data-postid="12366"] .resources-for{
  margin: 0 0 -2px;
  color: #989898;
}



/*-- C1. Page: Sponsorship -------------------------------------------------------------------- --*/
.sponsorship-item{
  background-color: #fff;
  padding: 0 5%;
  box-shadow: 2px 2px 5px #00000026;
  margin: 20px 0;
}


/*-- C2. Page: 360 Parent Teacher Support -------------------------------------------------------------------- --*/
.number-bigger h4 > span{
  font-size: 140%;
}


/*-- C3. Page: Personal Leadership Program -------------------------------------------------------------------- --*/
.outcomes-numbers p{
  width: 100%;
  max-width: 250px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  }
 

/*-- C4. Page: Stay Connected -------------------------------------------------------------------- --*/

.social-icon-clickable svg{
  transition-duration: .2s;
}
.social-icon-clickable svg:hover{
  transform: translateY(-5px);
}

.link_underline a{
  color: #a0cd5f;
  transition-duration: .2s;
}

.link_underline a:hover{
 color: #4bc1e0;
}

 /*-- C5. Page: Stay Connected -------------------------------------------------------------------- --*/
.background-video-player .kt-row-column-wrap{
  margin: 0 auto;
}

.background-video-player .kt-row-column-wrap > div{
  text-align: center;
}

.background-video-player .kt-row-column-wrap .image_clickable{
  max-width: 50px;
  margin: 200px auto;
}

/*-- C6. Page: Thrive @ Life ------------------------------------------------------------------- --*/
#registration .wp-block-kadence-column.inner-column-1{
	background: #fff;
	border-radius: 10px;
}

.registration-form{
	background: #fbfbfb !important;
	box-shadow: 2px 2px 10px #0000001c;
	padding: 50px 5% 30px;
	border-radius: 10px;
}

.registration-form h3{
	color: #f6921d;
	margin: 50px 0 15px;
	font-size: 25px;
	font-weight: 600;
}

.registration-form p{
	font-size: 15px;
	line-height: 150%;
	font-weight: 500 !important;
}

.registration-form .heading-program-for-who{
	color: #ffffff;
	font-size: 16px;
	font-weight: 700;
	background: #f6921d;
	border-radius: 5px;
	padding: 20px 3%;
	margin: 20px 0;
}

.registration-form label{
	text-align: left;
	font-size: 15px;
	font-weight: 500 !important;
}

.registration-form input{
	padding: 15px !important;
	height: auto !important;
}

.registration-form select{
	padding: 15px 10px !important;
	height: auto !important;
}

.registration-form .intl-tel-input input{
	padding-left: 50px !important;	
}

.registration-form .checkbox{
	margin: 20px 0;
}

.registration-form .checkbox input{
	width: 15px;
	height: 15px;
	margin-left: -30px !important;
	margin-right: 10px !important;
}

.registration-form .checkbox label{
	font-size: 15px;
	padding-left: 30px !important;
}

/**/
.registration-form .checklist-no p{
	font-size: 15px !important;
	font-weight: 700;
	/*background: #ff4700;
	color: #fff;
	padding: 20px 3%;*/
	color: #ff4700;
	border-radius: 5px;
	margin: 0 0 15px;
}

.registration-form .finalise-previous p{
	text-align: left;
	font-size: 15px;
	font-weight: 500 !important;
	color: #d0d0d0;
	margin-top: -10px;
}

.registration-form .emergency-contact p{
	color: #ff5b00;
	font-size: 15px;
	font-weight: 700 !important;
	margin: 10px 0 5px;
}

.registration-form .emergency-contact label,
.registration-form .caldera-grid .field_required{
	color: #ff5b00 !important;
}

.registration-form .filling-on-behalf p{
	color: #9c2280;
	font-size: 15px;
	font-weight: 700 !important;
	margin: 10px 0 5px;
}

.registration-form .filling-on-behalf label{
	color: #9c2280 !important;
}

.registration-form .tnc p{
	margin: 0 0 25px;
	font-size: 15px;
	font-weight: 500 !important;
}

.registration-form .terms-yes-no{
	margin-left: 30px;
}

.registration-form .terms-yes-no .field_required{
	display: none;
}

.registration-form .parsley-required{
	font-size: 14px;
	font-weight: 600;
	color: red;
}

.registration-form .btn-default{
	color: #fff !important;
	font-size: 15px !important;
	font-weight: 600 !important;
	text-transform: uppercase;
	text-decoration: none !important;
	background: #60c3a6 !important;
	padding: 20px 30px !important;
	bottom: 45px;
	display: inline-block !important;
	border: none !important;
	margin-top: 20px;
	transition-duration: .2s;
}

.registration-form .btn-default:hover{
	background: #42bec1 !important;
}

.thrive-life-benefits .kt-svg-icon-list-item-wrap{
	margin: 15px 0 !important;
}

.thrive-life-benefits .kt-svg-icon-list-item-wrap .kt-svg-icon-list-text{
	font-weight: 600;
	line-height: 120%;
	text-align: left;
}


 

/*-- Z1. Snippet: Quotation -------------------------------------------------------------------- --*/
.quote-green        {color: #a0ce60;}
.quote-green:before {background-image: url(../png/quote-green-left.png);}
.quote-green:after  {background-image: url(../png/quote-green-right.png);}


.quote-orange        {color: #f6921d;}
.quote-orange:before {background-image: url(../png/quote-orange-left.png);}
.quote-orange:after  {background-image: url(../png/quote-orange-right.png);}

.quote-blue          {color: #24bee0;}
.quote-blue:before   {background-image: url(../png/quote-blue-left.png);}
.quote-blue:after    {background-image: url(../png/quote-blue-right.png);}

.quote-purple        {color: #9c2380;}
.quote-purple:before {background-image: url(../png/quote-purple-left.png);}
.quote-purple:after  {background-image: url(../png/quote-purple-right.png);}

.quote-teal        {color: #00a79c;}
.quote-teal:before {background-image: url(../png/quote-teal-left.png);}
.quote-teal:after  {background-image: url(../png/quote-teal-right.png);}

.quote-white        {color: #fff;}
.quote-white:before {background-image: url(../png/quote-white-left.png);}
.quote-white:after  {background-image: url(../png/quote-white-right.png);}

/**/

.quote-green,
.quote-orange,
.quote-blue,
.quote-purple,
.quote-teal,
.quote-white{
  position: relative;
  line-height: 130%;
  width: 90%;
  font-size: 25px !important;
}


.quote-green:before,
.quote-orange:before,
.quote-blue:before,
.quote-purple:before,
.quote-teal:before,
.quote-white:before{ 
  content: " ";
  background-size: contain !important;
  background-repeat: no-repeat !important;
  height: 32px;
  width: 32px;
  display: inline-block;
  margin-right: 10px;
} 


.quote-green:after,
.quote-orange:after,
.quote-blue:after,
.quote-purple:after,
.quote-teal:after,
.quote-white:after{ 
  content: " ";
  background-size: contain !important;
  background-repeat: no-repeat !important;
  height: 32px;
  width: 32px;
  display: inline-flex;
  position: absolute;
  bottom: -10px;
  margin-left: 10px;
}

.quote-name{
  margin-top: -10px;
  color: #737373;
  font-weight: 700;
  font-style: italic;
}

 

/*-- Z2. Page: 404 Not Found -------------------------------------------------------------------- --*/
#page404{
  background: #90d661;
  background: linear-gradient(90deg, #1fbadc, #97ca72);
  background-size: cover;
  background-position: 50% 50%;
  color: #fff;
}

#page404 > div{
  padding: 100px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

#page404 h1{
  margin: 0;
}

#page404 a{
  color: #ffffff;
  font-weight: 900;
}



@media (min-width: 1000px){
  #page404 > div{
    padding: 200px 0 100px;
    height: 500px;
  }
}

/*-- Z3. Page: Category -------------------------------------------------------------------- --*/
#category-content{
 padding: 80px 0; 
}

#category-content .news_item_heading{
  color: #00bae0;
  margin-bottom: 10px;
}

#category-content .news_item_heading a {
  color: #00bae0;
  text-decoration:none;
}

#category-content .news_item_heading a:hover {
  text-decoration:underline;
}

#category-content .post{
  background: #f9f9f9;
  padding: 5%;
  margin-bottom: 30px;
}

#category-content .post .read_more_link{
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  background: #8ed85a;
  padding: 10px 15px;
  bottom: 45px;
  display: inline-block;
}
#category-content .post .read_more_link:hover {
  color: #fff;
  background: #a3e476;
}

.sidebar_inner .cat-item.cat-item-17,
.sidebar_inner .cat-item.cat-item-1{
  display: none;
}

/*-- Z4. Gutenberg Table -------------------------------------------------------------------- --*/
.yo-table-1{
	padding: 0;
	margin: 30px 0;
}

.yo-table-1 td{
	padding: 20px;
}

.wp-block-table tbody{
	vertical-align: initial;
}

.wp-block-table td{
	padding: 10px;
}




/*-- Z5. Form popup -------------------------------------------------------------------- --*/
#form-popup{
	display: none;
}



/*-- Z6. Page Header has logo right -------------------------------------------------------------------- --*/
@media (max-width: 500px){
	.has_logo_right h1{
		max-width: 200px;
	}
}



/*-- Z7.  Accordion (eg. FAQ, and other click-to-show content) -------------------------------------------------------------------- --*/
.accordion{
	margin: 15px 0;
}

.accordion h4{
	display: flex;
	flex-wrap: wrap;
	cursor: pointer !important;
	align-items: center;
	transition-duration: .2s;
	margin: 0;
}

.accordion p{
	margin: 10px 0;
}


.accordion.active h4,
.accordion h4:hover{
	color: #f6921d;
}

.accordion h4:after{
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	background-image: url(../svg/icon-arrow-down-orange.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	margin-left: 15px;
	transition-duration: .4s;
}

.accordion h4:hover:after{
	transform: translateX(2px);
}

.accordion p{
	display: none;
}

.accordion.active p{
	display: block;
}

/*-- Z8.  Sub-column with icon (image) and a paragraph (heading and big chunk of text) -------------------------------------------------------------------- --*/
.design-icon-paragraph {
	margin: 30px 0;
}

.design-icon-paragraph .photo figure{
	margin: 0;
}

.design-icon-paragraph h3{
	margin: 0 0 -10px !important;
	font-size: 25px;
}

@media (min-width: 768px){
	.design-icon-paragraph {
		margin: 45px 0;
	}
	
	.design-icon-paragraph .photo{
		flex: 0 0 15%;
	}
}


/*-- Z9. Program Pages (eg. Thrive @ Life) Fanncybox Popup Form -------------------------------------------------------------------- --*/

#contact-program-popup{
	background: #f29401;
	background: linear-gradient(90deg, #f29401, #ffb100);
	border-radius: 5px;
}

#contact-program-popup h3{
	margin: 0;
}

#contact-program-popup p.sub{
	margin: 10px 0 20px;
}

#contact-program-popup input.btn.btn-default{
	background: #333333 !important;
	border-radius: 5px;
}

#contact-program-popup input.btn.btn-default:hover{
	background: #525252 !important;
}


/*-- Z10. Homepage October 2023 -------------------------------------------------------------------- --*/


.page-id-16392 .homepage-header .slogan img{
  width: 600px;
  max-width: 100%;
  display: block;
  margin-top: 50px;
}

.page-id-16392 .homepage-header h5{
  font-size: 18px;
  line-height: 150%;
  margin: -10px auto 0;
  display: table;
  width: auto;
}


/**/


.page-id-16392 .homepage-header > .kt-row-has-bg:after{
  background: #f9f9f9;
}

.page-id-16392 .section_home_about{
  background: #f9f9f9;
}

.page-id-16392 .section_home_about > div > div{
  width: 100%;
  padding: 0;
  margin: 0;
}

/**/



.section-home-oct-2023-spiel{
  position: relative;
  background: #f9f9f9;
}

.section-home-oct-2023-spiel > div{
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 0 0 0;
}

.section-home-oct-2023-spiel .photo img{
  max-height: 400px;
  width: auto;
  margin: 0 auto;
}

.section-home-oct-2023-spiel .content{
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-home-oct-2023-spiel .content > div{
  padding-bottom: 140px;
}

.section-home-oct-2023-spiel .content h3{
  font-size: 22px; 
  line-height: 120%;
}

.section-home-oct-2023-spiel:after{
  display: block;
  content: "";
  width: 100%;
  height: 80px;
  background: linear-gradient(90deg, #1fbadc, #97ca72);
  -webkit-clip-path: polygon(0 70%, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 70%, 100% 0, 100% 100%, 0% 100%);
  padding-top: 80px;
  position: absolute;
  bottom: 0;
}


/**/
.page-id-16392 .section_resources,
.page-id-16392 .section_resources > div,
.page-id-16392 .section_resources > div > div{
  margin-top: 0;
  padding-top: 0;
  -webkit-clip-path: none;
  clip-path: none;
}



.page-id-16392 .section_resources .statistics{
  background: #fff;
  border-radius: 30px;
  padding: 30px 0;
  color: #333;
}

.page-id-16392 .section_resources .statistics h2.introduction{
  color: #0CC4DC;
  margin: 0 auto -40px;
  font-weight: 900;
  font-size: 30px;
  max-width: 700px;
}

.page-id-16392 .section_resources .statistics h2.percent{
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0CC4DC;
  font-size: 80px;
  font-weight: 900;
  letter-spacing: -5px;
  margin-bottom: 0;
}

.page-id-16392 .section_resources .statistics h2 span{
  font-size: 40px;
  margin-left: 5px;
}

.page-id-16392 .section_resources .statistics p{
  margin: 0;
  font-size: 16px;
  line-height: 140%;
}

.page-id-16392 .section_resources .statistics p.disclaimer{
  color: #c7c7c7;
  font-size: 14px;
  font-weight: 500 !important;
}


.page-id-16392 .section_resources .statistics .stat-group-1 > div{
  padding-bottom: 0;
  /*border-bottom: 2px solid rgb(0 0 0 / 30%);
  padding-bottom: 30px;*/
}


.page-id-16392 .section_resources .statistics .stat-group-2 > div{
  padding-top: 0; 
  max-width: 500px;
  margin: 0 auto;
}

.page-id-16392 .section_resources .statistics .stat-group-2 > div > div,
.page-id-16392 .section_resources .statistics .stat-group-2 > div > div > div{
  align-items: center;
}
  
.page-id-16392 .section_resources .statistics .stat-group-2 h2.percent{
  color: #87c531;
}

.page-id-16392 .section_resources .statistics .stat-group-2 p{
  color: #659b16;
}

/**/
.page-id-16392 .home-featured-boxes{
  
}

.page-id-16392 .home-featured-boxes .home-featured-boxes-box{
  background-color: #fff;
  box-shadow: 2px 2px 10px rgb(0 0 0 / 10%);
  border-radius: 30px;
}

.page-id-16392 .home-featured-boxes .home-featured-boxes-box .photo{
  display: flex;
  justify-content: flex-end;
  margin: 0;
}

.page-id-16392 .home-featured-boxes .home-featured-boxes-box .photo img{
  width: 100%;
  max-width: 200px;
  margin: -20px auto 0 auto;
}

.page-id-16392 .home-featured-boxes .home-featured-boxes-box .photo.left img{

}

.page-id-16392 .home-featured-boxes .home-featured-boxes-box .content{
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-id-16392 .home-featured-boxes .home-featured-boxes-box .content > div{
  padding: 30px 0;
}

.page-id-16392 .home-featured-boxes .home-featured-boxes-box .content h3{
  color: #0CC4DC;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 15px 0;
}

.page-id-16392 .home-featured-boxes .home-featured-boxes-box .content p{
  font-size: 16px;
  line-height: 140%;
  margin: 0;
}

.page-id-16392 .home-featured-boxes .home-featured-boxes-box .content a,
.section-home-oct-2023-spiel .content a.button{
  margin: 15px 0 0;
  font-size: 14px;
  font-weight: 600;
  border-radius: 40px;
  background: #87c630 !important;
  color: #fff !important;
  border: none;
  padding: 10px 20px;
  transition-duration: .2s;
}

.page-id-16392 .home-featured-boxes .home-featured-boxes-box .content a:hover,
.section-home-oct-2023-spiel .content a.button:hover{
  background: #a0d657 !important;
  cursor: pointer;
}

@media (min-width:768px){

  .page-id-16392 .home-featured-boxes .home-featured-boxes-box .content > div{
    margin-left: 10%;
  }

  .page-id-16392 .home-featured-boxes .home-featured-boxes-box .photo img{
    border-bottom-left-radius: 20px;
    transform: scale(1.4);
    margin-bottom: 20%;
    margin: 0 auto 20% auto;
  }

  .page-id-16392 .home-featured-boxes .home-featured-boxes-box .photo.left img{
    margin-left: -10%;
  }
  
  /**/
  
  .section-home-oct-2023-spiel .photo img{
    max-height: 100%; 
  }
  
  .section-home-oct-2023-spiel .content > div{
    padding-bottom: 100px;
  }
  
  /**/
  
  .page-id-16392 .section_resources .statistics{
    padding: 0; 
  }


  
}

/* SPECIFIC STYLE FOR DONATION PAGES */

/* one time */
#kt-layout-id_3aaa14-ac{
	background-image: url("../jpg/once-off-mobile-1-scaled.jpg");
}
 
@media (min-width:768px){
	#kt-layout-id_3aaa14-ac{
		background-image: url("../jpg/once-off-desktop-1.jpg");
	}
}

/* monthly */
/* #kt-layout-id_80244c-04{
	background-image: url("https://youthopportunities.com.au/wp-content/uploads/2024/06/mobile-version.jpg");
}
 
@media (min-width:768px){
	#kt-layout-id_80244c-04{
		background-image: url("https://youthopportunities.com.au/wp-content/uploads/2020/04/yo-donate-bg-3.jpg");
	}
} */
 
.june-2024-triangle-fix-1 .section-home-oct-2023-spiel:after{
	z-index: 10 !important;
}

/* december 2024 update */

#kt-layout-id_80244c-04{
	background-image: url("../jpg/yp-donate-bg-web-mobile-dec24.jpg");
}
 
@media (min-width:768px){
    #kt-layout-id_80244c-04{
    	background-image: url("../jpg/yp-donate-bg-web-dec24.jpg");
    }
}


/* End of SPECIFIC STYLE FOR DONATION PAGES */

















