/* ===== Primary Styles ========================================================
   Author: Dan Mitchell / Vitamin Cornwall
   ========================================================================== */

@import url('reset.css');
@import url('../fonts/gotham/stylesheet.css');


* {
	box-sizing: border-box;
}




[data-href] {
	cursor: pointer;
}

select {
	padding: 15px;
}

input {
	padding: 15px;
}

p img {
	max-width: 100%;
	height: auto;
}

.btn:hover {
	text-decoration: none;
}


/* .btn:hover span {
	width: 500px;
	height: 500px;
} */

/* .btn:active {
	transform: scale(0.95);
} */




/**********************************************************************
 Wrapper and Section
**********************************************************************/

.wrapper {
	width: 90%;
	max-width: 1300px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.section {
	position: relative;
}


/**********************************************************************
 Hero
**********************************************************************/

.hero {
	display: flex;
	align-items: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	background-color: #f0f0f0;
	position: relative;
	/* background-image: url('../images/ui/hero-1.jpg'); */
	color: #fff;
	min-height: 100vh;
}

.hero_divider {
	width: 100%;
	height: 60px;
	position: absolute;
	bottom: -1px;
	z-index: 9;
	left: 0px;
	right: 0px;
	background: url('../images/ui/scroll_divider_white.svg') no-repeat top right;
	background-size: 100%;
}


.hero_divider {
	background-position: bottom right;
	height: 500px;
}

.makegreydivider .hero_divider {
	background: url('../images/ui/scroll_divider_grey.svg') no-repeat top right;
	background-size: 100%;
	background-position: bottom right;
	height: 500px;
}


.hero::before {
	content: "";
	position: absolute;
	z-index: 9;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
}



.hero .swiper-container {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 8;
}

.hero .hero-bg {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
}

.hero .wrapper {
	z-index: 10;
}

.hero .wrapper .inner {
	max-width: 560px;
}

.hero .wrapper .inner p {
	font-size: 29px;
}

.hero__scrolldown {
	position: absolute;
	z-index: 10;
	left: 0;
	bottom: 5%;
	right: 0;
	height: 100px;
	background: url('../images/ui/hero-scrolldown.gif') center center no-repeat;
	background-size: contain;
	display: none;
}

.hero .btn {
	font-size: 16px;
}

.hero-video {
	position: absolute;
	z-index: 1;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
}

.hero-video iframe {
	width: 100%;
	height: 100%;
	transform: scale(1.1);
}

.hero-image {
	position: absolute;
	z-index: 0;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	opacity: 0;
}


/*
.hero::after {
	content: "";
	position: absolute;
	z-index: 1;
	left: 0;
	bottom: 0;
	width: 50%;
	background: #fff;
	height: 120px;
}
*/


/**********************************************************************
 Footer
**********************************************************************/









/**********************************************************************
 Social links
**********************************************************************/

.social {
	display: flex;
}

.social a {
	display: inline-block;
	width: 40px;
	height: 40px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin-right: 10px;
}

.social--red a {
	margin-left: 0;
	margin-right: 1em;
}

.social .tw {
	background-image: url('../images/ui/social-tw.svg');
}

.social--red .tw {
	background-image: url('../images/ui/social-tw-red.svg');
}

.social .tw:hover {
	background-image: url('../images/ui/social-tw-over.svg');
}

.social .fb {
	background-image: url('../images/ui/social-fb.svg');
}

.social--red .fb {
	background-image: url('../images/ui/social-fb-red.svg');
}

.social .fb:hover {
	background-image: url('../images/ui/social-fb-over.svg');
}

.social .yt {
	background-image: url('../images/ui/social-yt.svg');
}

.social .yt:hover {
	background-image: url('../images/ui/social-yt-over.svg');
}

.social .vim {
	background-image: url('../images/ui/social-vim.svg');
}

.social .vim:hover {
	background-image: url('../images/ui/social-vim-over.svg');
}

.social .insta {
	background-image: url('../images/ui/social-insta.svg');
}

.social--red .insta {
	background-image: url('../images/ui/social-insta-red.svg');
}

.social .insta:hover {
	background-image: url('../images/ui/social-insta-over.svg');
}

.social .li {
	background-image: url('../images/ui/social-li.svg');
}

.social .li:hover {
	background-image: url('../images/ui/social-li-over.svg');
}


/**********************************************************************
 Navigation
**********************************************************************/
/* 
nav {
	position: fixed;
	z-index: 998;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: #131439;
	color: #fff;
	font-size: 36px;
	font-weight: 800;
	visibility: hidden;
	opacity: 0;
	transition: opacity 200ms ease-in-out, visibility 200ms ease;
	transition-delay: 0, 200ms;
	backdrop-filter: blur(8px);
	overflow: auto;
}

nav .wrapper {
	display: flex;
	margin-top: 150px;
	font-size: 80%;
}

nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	min-width: 445px;
	margin-right: 100px;
}

nav li {
	margin: 0;
	padding: 0;
	border-top: 1px solid #fff;
}

nav .wrapper>ul>li:last-child {
	border-bottom: 1px solid #fff;
}

nav a {
	color: #fff;
	text-decoration: none;
	padding: 10px 0;
	display: inline-block;
}

nav a:hover {
	color: #FF0A58;
}

nav li ul {
	font-size: 21px;
	font-weight: 600;
	margin: 0 0 0.75em 0;
}

nav li ul li {
	border: none;
}

nav li ul li a {
	padding: 5px 0;
}

nav li.nav__contact {
	font-size: 20px;
	font-weight: normal;
	padding-top: 0.5em;
}

nav li.nav__contact a {}

nav li.nav__social {
	font-size: 20px;
	border: none;
	padding-top: 0.5em;
	border-bottom: 0 !important;
}

nav li.nav__social a {
	margin-left: 0;
	margin-right: 1em;
	width: 40px;
	height: 40px;
}

.nav__open {
	overflow: hidden;
}

.nav__open nav {
	visibility: visible;
	opacity: 1;
}

.nav__open .btn-become-a-member {
	background: #fff;
	color: #131439;
	border: 2px solid transparent;
}

.nav__open .btn-become-a-member span {
	background: #FF0A58;
}

.nav__open .btn-become-a-member:hover {
	color: #fff;
	background: #131439;
	border: solid 2px;
}


.nav__open .btn-login {
	background: #fff;
	color: #131439;
	border: 2px solid transparent;
}

.nav__open .btn-login span {
	background: #FF0A58;
}

.nav__open .btn-login:hover {
	color: #fff;
	background: #131439;
	border: solid 2px;
} */







.main {
	background: #fff;
}



/**********************************************************************
 Section - Impact
**********************************************************************/

.section-impact {
	padding: 65px 0;
	margin: 0;
}

.section-impact__head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin: 0 0 1em 0;
}

.section-impact__head h3 {
	color: #FF0A58;
}

.section-impact__head p {
	margin: 0;
	max-width: 400px;
	margin-top: 20px;
}

.section-impact__body {
	display: flex;
	text-align: center;
	margin-top: 50px;
	margin-bottom: 50px;
}

.section-impact__body>div {
	flex: 1;
	background: transparent;
	border-radius: 50%;
	padding-left: 2em;
	padding-right: 2em;
	padding-top: 8%;
	padding-bottom: 8%;
}

.section-impact__body>div:nth-child(1) strong,
.section-impact__body>div:nth-child(1) em {
	color: #FF0A58;
}

.section-impact--homepage .section-impact__body>div:nth-child(1) strong,
.section-impact--homepage .section-impact__body>div:nth-child(1) em {
	color: #FF0A58;
}

.section-impact__body>div:nth-child(2) strong,
.section-impact__body>div:nth-child(2) em {
	color: #131439;
}

.section-impact__body>div:nth-child(3) strong,
.section-impact__body>div:nth-child(3) em {
	color: #FF0A58;
}

.section-impact__body>div:nth-child(4) strong,
.section-impact__body>div:nth-child(4) em {
	color: #131439;
}

.section-impact--homepage .section-impact__body>div:nth-child(3) {
	background: #2E3192;
	color: #fff;
}

.section-impact--homepage .section-impact__body>div:nth-child(3) strong,
.section-impact--homepage .section-impact__body>div:nth-child(3) em {
	color: #fff;
}

.section-impact__body strong {
	display: block;
	font-size: 85px;
	font-weight: 800;
	line-height: 1;
}

.section-impact__body em {
	display: block;
	font-size: 22px;
	font-weight: bold;
	font-style: normal;
	margin: 1em 0;
}

.section-impact:nth-child(even) {
	background-color: #131439;
	color: #fff;
}

.section-impact:nth-child(even) .section-impact__head {
	color: #fff;
}

.section-impact:nth-child(even) .section-impact__head h3 {
	color: #fff;
}

.section-impact:nth-child(even) .section-impact__body>div:nth-child(1) strong,
.section-impact:nth-child(even) .section-impact__body>div:nth-child(1) em {
	color: #fff;
}

.section-impact:nth-child(even) .section-impact__body>div:nth-child(2) strong,
.section-impact:nth-child(even) .section-impact__body>div:nth-child(2) em {
	color: #fff;
}

.section-impact:nth-child(even) .section-impact__body>div:nth-child(3) {
	color: #fff;
}

.section-impact:nth-child(even) .section-impact__body>div:nth-child(3) strong,
.section-impact:nth-child(even) .section-impact__body>div:nth-child(3) em {
	color: #fff;
}

.section-impact:nth-child(even) .section-impact__body>div:nth-child(4) strong,
.section-impact:nth-child(even) .section-impact__body>div:nth-child(4) em {
	color: #fff;
}


/**********************************************************************
 Section - Join Us
**********************************************************************/

.section-joinus {
	background: url('../images/ui/joinus-bg.jpg') center right no-repeat;
	background-size: cover;
	overflow: hidden;
	color: #fff;
	margin: 0;
	min-height: 550px;
}

.section-joinus .content_block div {
	font-size: 20px;
	margin-top: 20px;
}

.section-joinus p {
	font-size: 20px;
	margin-top: 30px !important;
	width: 25% !important;
}

.section-joinus::before {
	content: "";
	width: 1000px;
	height: 1000px;
	background: #FF0A58;
	border-radius: 50%;
	position: absolute;
	z-index: 1;
	left: -350px;
	top: -230px;
}

.section-joinus .inner {
	padding: 125px 85px;
	position: relative;
	z-index: 2;
}

.section-joinus .inner p {
	margin: 0;
}

.section-joinus .myform {
	margin: 3em 0 0 0;
}

.section-joinus .myform__buttons {
	margin: 2em 0 0 0;
}

.section-joinus .myform input {
	border: 1px solid #fff;
	outline: none;
	background: #fff;
	width: 100%;
	max-width: 490px;
	color: #FF0A58;
	padding: 20px;
}


/**********************************************************************
 Section - Get Social
**********************************************************************/

.section-getsocial {
	background: #2E3192;
	background-size: contain;
	color: #fff;
	padding: 95px 0 0 0;
	margin: 0;
}

.section-getsocial .wrapper {
	z-index: 1;
}

.section-getsocial .shape--chip {
	/*	background: url('../images/ui/chip-blue.png') left top no-repeat;*/
	background-size: contain;
	width: 400px;
	height: 400px;
	position: absolute;
	z-index: 0;
	left: 0;
	top: 0;
	transform-origin: left top;
}

.section-getsocial__head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin: 0 0 1em 0;
	text-align: right;
}

.section-getsocial__head div:nth-child(1) {
	text-align: left;
}

.section-getsocial__head p {
	max-width: 400px;
}

.section-getsocial__head .social {
	margin-bottom: 1em;
}

.section-getsocial__body {
	text-align: center;
	padding: 50px 0 0 0;
}

.juicer-feed .j-paginate {
	color: #fff !important;
	border-color: #fff !important;
	border-radius: 5em !important;

}

.juicer-feed .j-paginate:hover {
	background: #fff !important;
	color: #2E3192 !important;
}


/**********************************************************************
 Section - Become a member
**********************************************************************/

.section-become {
	margin: 0;
	padding: 105px 0 185px 0;
	background: url('../images/ui/become-bg.jpg') center center no-repeat;
	background-size: cover;
	color: #fff;
}

.section-become::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.25);
}

.section-become__inner {
	max-width: 450px;
}


/**********************************************************************
 Section - Generic block panel
**********************************************************************/

.section-genericpanel {
	margin: 0;
	padding: 105px 0 185px 0;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	color: #fff;
}

.section-genericpanel::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.25);
}

.section-genericpanel__inner {
	max-width: 450px;
}


/**********************************************************************
 Section - Generic block panel 2
**********************************************************************/

.section-genericpanel2 {
	margin: 0;
	padding: 160px 0 250px 0;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	color: #fff;
}

.section-genericpanel2::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.25);
}

.section-genericpanel2::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 50%;
	/*	background: url('../images/ui/shape-blockchip-1.png') right top no-repeat;*/
	background-size: cover;
}

.section-genericpanel2__inner {
	max-width: 450px;
}


/**********************************************************************
 Section - Generic block panel 3
**********************************************************************/

.section-genericpanel3 {
	margin: 0;
	padding: 105px 0 105px 0;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #fff;
	color: #FF0A58;
}

.section-genericpanel3::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0);
}

.section-genericpanel3::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 50%;
	/*	background: url('../images/ui/shape-blockchip-2.png') right top no-repeat;*/
	background-size: cover;
	opacity: 0.9;
}

.section-genericpanel3__inner {
	max-width: 450px;
	margin: 0 0 0 auto;
}


/**********************************************************************
 Section - Generic block panel 4
**********************************************************************/

.section-genericpanel4 {
	margin: 0;
	padding: 160px 0;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #fff;
	color: #FFFFFF;
}

.section-genericpanel4::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: linear-gradient(90deg, rgba(12, 11, 76, 1) 0%, rgba(12, 11, 76, 0) 100%);
}

.section-genericpanel4::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 50%;
}

.section-genericpanel4__inner {
	max-width: 450px;
}

.section-genericpanel4 a {
	color: #fff;
}


/**********************************************************************
 Section - Generic block panel 5
**********************************************************************/

.section-genericpanel5 {
	margin: 0;
	padding: 0;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #fff;
	color: #FFFFFF;
	display: flex;
	min-height: 500px;
}

.section-genericpanel5__image {
	flex: 1;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.section-genericpanel5__content {
	flex: 1;
	padding: 105px 0;
	background-color: #131439;
	position: relative;
}

.section-genericpanel5__inner {
	max-width: 450px;
	margin-left: 3em;
}

.section-genericpanel5 a {
	color: #fff;
}

.section-genericpanel5 .shape--chip {
	/*	background: url('../images/ui/chip-lightblue-right.png') right bottom no-repeat;*/
	background-size: contain;
	width: 400px;
	height: 100%;
	position: absolute;
	right: 0;
	bottom: 0;
	transform-origin: right bottom;
}


/**********************************************************************
 Section - Events
**********************************************************************/

.section-events {
	margin: 0;
	padding: 60px 0;
	padding-bottom: 100px;
	background: #ededed;
	margin-bottom: 50px;
	/* background: url('../images/ui/chip-blue-right.png') right bottom no-repeat; */
}

.section-events__alt {
	background-color: #eff0f3;
	padding: 60px 0;
}

.section-events .swiper-container {
	padding-bottom: 50px;
}

.section-events .swiper-slide {
	display: flex;
	justify-content: center;
	align-items: center;
	width: auto;
}

.section-events .shape--chip {
	/*	background: url('../images/ui/chip-blue-right.png') right bottom no-repeat;*/
	background-size: contain;
	width: 400px;
	height: 400px;
	position: absolute;
	right: 0;
	bottom: 0;
	transform-origin: right bottom;
}

.section-events__head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin: 0 0 1em 0;
}

.section-events__head h3 {
	color: #131439;
}

.section-events__head p {
	margin: 0;
	max-width: 400px;
}

.section-events__bigpanel {
	background: #fff;
	color: #131439;
	display: flex;
	margin: 55px 0 0 0;
	min-height: 450px;
	border-radius: 24px;
}

.section-events__alt .section-events__bigpanel {
	margin: 0;
	min-height: 450px;
}

.section-events__bigpanel p {
	font-size: 22px;
}

.section-events__bigpanel h3 {
	line-height: 45px;
	margin-top: 20px;
}

.section-events__bigpanel .inner .btn {
	margin-top: 50px;
}

.section-events__bigpanel .inner p {
	font-size: 20px;
}

.section-events__bigpanel--pic {
	flex: 4;
	background-position: center center;
	background-image: url('../images/ui/events-bg.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	-webkit-border-top-left-radius: 24px;
	-webkit-border-bottom-left-radius: 24px;
	-moz-border-radius-topleft: 24px;
	-moz-border-radius-bottomleft: 24px;
	border-top-left-radius: 24px;
	border-bottom-left-radius: 24px;
}

.section-events__bigpanel .inner {
	flex: 2;
	padding: 20px 60px;
}

.section-events__panels {
	display: flex;
	margin: 15px 0 0 0;
	margin-left: -6px;
	margin-right: -6px;
}

.tile {
	flex: 1;
	background: #fff;
	color: #131439;
	margin: 0 6px;
	border-radius: 24px;
	/*	border-bottom-right-radius: 24px;*/
	/*	border-bottom-left-radius: 24px;*/
	overflow: hidden;
}

.tile__pic {
	height: 280px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-color: #fff;
	border-radius: 24px;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	overflow: hidden;
}

.tile__text {
	padding: 35px;
	padding-top: 25px;
	min-height: 350px;
	position: relative;
}

.tile__text a {
	color: #131439;
}

.tile__text .btn a {
	color: #fff;
}

.tile__text h3 {
	font-size: 22px;
	line-height: 26px;
}

.tile__text a.btn {
	margin-top: 40px;
	color: #fff;
}


/**********************************************************************
 Section - Grid (3x3)
**********************************************************************/

.section-grid {
	margin: 95px 0;
}

.section-grid .shape--circle {
	position: absolute;
	z-index: 0;
	left: -35%;
	bottom: -100%;
	/* transform: translate(-50%,70%); */
	width: 1500px;
	height: 1500px;
	border-radius: 50%;
	background: #FF0A58;
	display: none;
}

.section-grid .wrapper {
	display: flex;
	flex-wrap: wrap;
	z-index: 1;
}

.section-grid__cell {
	flex: 1;
	min-width: 33.3333%;
	min-height: 420px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-color: #131439;
	color: #fff;
	padding: 50px;
	transition: all 200ms ease-in-out;
}

.section-grid__cell--lightblue {
	background-color: #2E3192;
}

.section-grid__cell--red {
	background-color: #FF0A58;
}

.section-grid__cell--pic {
	background-image: url('../images/ui/pic-1.jpg');
}

.section-grid__cell h3 {
	margin: 0.5em 0;
}

.section-grid__cell:not(.section-grid__cell--pic):hover {
	transform: scale(1.05);
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}


/**********************************************************************
 Section - Intro
**********************************************************************/

.section-intro {
	padding: 80px 0;
	padding-top: 0px
}

.section-intro .wrapper {
	display: flex;
	z-index: 1;
}

.section-intro .inner {
	flex: 1;
	max-width: 30%;
	min-width: 30%;
	z-index: 2;
	position: relative;
	margin-right: 4em;
}

.section-intro__pic {
	flex: 1;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-image: url('../images/ui/intro-pic.jpg');
	min-height: 500px;
}


/**********************************************************************
 Section - Intro 2
**********************************************************************/

.section-intro2 {
	padding: 100px 0 200px 0;
	padding-top: 0;
	/*	background: url('../images/ui/chip-green-right.png') right bottom no-repeat;*/
	background-size: contain;
}

.section-intro2 .wrapper {
	display: flex;
	align-items: flex-start;
}

.section-intro2 .wrapper>div {
	flex: 1;
	padding-right: 2em;
}

.section-intro2 h1 {
	font-size: 40px;
}

.section-intro2 h1 small {
	display: block;
	font-size: 0.5em;
}

.section-intro2__image {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-repeat: #f0f0f0;
	height: 400px;
	border-radius: 24px;
}


/**********************************************************************
 Section - Intro 4
**********************************************************************/

.section-intro4 {
	padding: 100px 0 100px 0;
	/*	background: url('../images/ui/chip-green-right.png') right bottom no-repeat;*/
	background-size: contain;
}

.section-intro4 .wrapper {
	display: flex;
	align-items: flex-start;
}

.section-intro4 .wrapper>div {
	flex: 1;
}

.section-intro4 h1 {
	font-size: 40px;
}

.section-intro4 h1 small {
	display: block;
	font-size: 0.5em;
}


.section-intro4__image {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	height: 450px;
}

.section-intro4__image[data-bg=""] {
	height: 0;
}


/**********************************************************************
 Section - Intro 5
**********************************************************************/

.section-intro5 {
	padding: 100px 0 100px 0;
	/*	background: url('../images/ui/chip-green-right.png') right bottom no-repeat;*/
	background-size: contain;
}

.section-intro5 .wrapper {
	display: flex;
	align-items: flex-start;
}

.section-intro5 .wrapper>div {
	flex: 1;
}

.section-intro5__image {
	display: block;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	height: 400px;
	/* background-color: #f0f0f0; */
	margin-right: 2em;
}


/**********************************************************************
 Section - Intro 6
**********************************************************************/

.section-intro6 {
	padding: 100px 0 100px 0;
}

.section-intro6 .wrapper {
	display: flex;
	align-items: flex-start;
}

.section-intro6 .wrapper>div {
	flex: 1;
	padding-right: 2em;
}

.section-intro6 h1 {
	font-size: 40px;
}

.section-intro6 h1 small {
	display: block;
	font-size: 0.5em;
}

.section-intro6__image {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	background-repeat: #f0f0f0;
	height: 400px;
}


/**********************************************************************
	Swiper JS
**********************************************************************/

/*
.swiper-slide {
	display: flex;
	justify-content: center;
	align-items: center;
	width: auto;
}
*/

.swiper-pagination-bullet {
	background: #b5b5b5;
}

.swiper-pagination-bullet-active {
	background: #FF0A58;
}

.swiper-button-next,
.swiper-button-prev {
	/* color: #2E3192 !important; */
	margin-top: -20px;
}

.swiper-button-next {
	right: 0px;
}

.swiper-button-prev {
	left: 0px;
}


/**********************************************************************
 Teams
**********************************************************************/

.team {
	padding: 60px 0;
	padding-top: 0;
}

.team__search {
	font-size: 16px;
	margin: 0 0 60px 0;
}

.team__search form {
	display: flex;
	align-items: stretch;
	justify-content: flex-start;
}

.team__search input {
	border: 2px solid #131439;
	background: #fff;
	outline: none;
	overflow: hidden;
	padding: 15px 20px;
	width: 400px;
	border-top-left-radius: 3em;
	border-bottom-left-radius: 3em;
}

.team__search button {
	background: #131439;
	color: #fff;
	text-align: center;
	border: none;
	outline: none;
	cursor: pointer;
	padding: 0 2em;
	border-top-right-radius: 3em;
	border-bottom-right-radius: 3em;
}

.team__grid {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: space-between;
}

.team__cell {
	flex: 0 0 31%;
	display: block;
	text-align: center;
	text-decoration: none;
	color: #131439;
	font-size: 16px;
	margin: 0 0 30px 0;
}

.team_cell:nth-child(3n) {}

.team__cell__image {
	display: block;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	height: 310px;
	background-color: #f0f0f0;
	margin: 0 0 20px 0;
	border-radius: 24px;
}

.team__cell strong {
	display: block;
	font-size: 20px;
}


/**********************************************************************
 Single team profile
**********************************************************************/

.team-profile {
	padding: 100px 0 200px 0;
	/*	background: url('../images/ui/chip-green-right.png') right bottom no-repeat;*/
	background-size: contain;
}

.team-profile .wrapper {
	display: flex;
	align-items: flex-start;
}

.team-profile .wrapper>div {
	flex: 1;
	padding-right: 100px;
	min-width: 50%;
}

.team-profile h1 {
	font-size: 40px;
}

.team-profile h1 small {
	display: block;
	font-size: 0.5em;
}

.team-profile__image {
	background-repeat: no-repeat;
	background-position: center center;
	background: #f0f0f0;
	background-size: cover;
	height: 500px;
	border-radius: 24px;
}


/**********************************************************************
 Crumbs
**********************************************************************/

.crumbs {
	padding: 30px;
}

.crumbs a {
	display: inline-block;
	text-decoration: none;
	color: #131439;
	font-weight: 600;
	font-size: 16px;
	background: url('../images/ui/chevron-left.svg') left center no-repeat;
	background-size: contain;
	padding-left: 2em;
}

.crumbs a:hover {
	color: #FF0A58;
}


/**********************************************************************
 News
**********************************************************************/

.section-newsfilters {
	background: #131439;
	padding: 60px 0;
}

.section-newsfilters__row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.section-newsfilters__row__categories {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
}

.section-newsfilters__row__categories .btn {
	background: #383572;
	margin: 0 10px 10px 0;
}

.section-newsfilters__row__categories .btn.selected {
	background: #FF0A58;
}

.section-newsfilters__row__selects {
	margin-top: 20px;
	justify-content: flex-start;
}

.section-newsfilters__row__selects select {
	flex: 0 0 31.3333%;
	margin: 0 3% 0 0;
}

.section-newsfilters__row__selects select:last-child {
	margin-right: 0;
}

.section-news {
	background: #ededed;
	padding: 60px 0;
}

.section-news__grid {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: flex-start;
	margin: 60px 0 0 0;
}

.section-news__grid .tile {
	flex: 0 0 31.3333%;
	margin: 0 3% 3em 0;
	width: 0;
	overflow: hidden;
	border-radius: 24px;
}

.section-news__grid .tile:nth-child(3n) {
	margin-right: 0;
}

.section-news .showmore {
	margin-bottom: 60px;
}


/**********************************************************************
 Events
**********************************************************************/

.section-eventsfilters {
	background: #131439;
	padding: 25px 0;
}

.section-eventsfilters__row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.section-eventsfilters__row__top {
	margin: 0 0 0px 0;
}

.section-eventsfilters__row__top input,
.section-eventsfilters__row__top select,
.section-eventsfilters__row__top button {
	/* flex: 0 0 27%; */
	flex: 1;
	height: 55px;
	border: none;
	margin: 0 1px;
	/* margin: 0 3% 0 0; */
}

.section-eventsfilters__row__top button {
	flex: 0.5;
	margin-left: 5px;
}

.section-eventsfilters__row__top input:first-child {
	/* flex: 0 0 44%; */
	padding: 17px;
	border-top-left-radius: 24px;
	border-bottom-left-radius: 24px;
}

.section-eventsfilters__row__top input[name=dateto] {
	border-top-right-radius: 24px;
	border-bottom-right-radius: 24px;
}

.section-eventsfilters__row__selects {
	justify-content: flex-start;
}

.section-eventsfilters__row__selects select {
	flex: 1 0 31.3333%;
	margin: 0 1% 0 0;
}

.section-eventsfilters__row__selects select:last-child {
	margin-right: 0;
}

.section-events {}

.section-events__noresults {
	text-align: center;
	margin: 5em 0;
	flex: 1;
}

.section-events__grid {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: flex-start;
	margin: 60px 0 0 0;
	margin-top: 0;
}

.section-events__grid .tile {
	flex: 0 0 31.3333%;
	margin: 0 3% 3em 0;
	border-radius: 24px;
	overflow: hidden;
}

.section-events__grid .tile:nth-child(3n) {
	margin-right: 0;
}

.chunk {
	display: none;
}

.chunk.visible {
	display: block;
}

.chunk .showmore {
	width: 100%;
	text-align: center;
}


/**********************************************************************
 Section - Quote panel
**********************************************************************/

.section-quotepanel {
	margin: 0;
	padding: 105px 0 105px 0;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #131439;
	color: #fff;
	font-size: 16px;
}

.section-quotepanel::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.25);
}

.section-quotepanel__inner {}

.section-quotepanel__inner strong {
	display: block;
	font-size: 30px;
	margin-bottom: 20px;
}

.section-quotepanel .shape--chip {
	/*	background: url('../images/ui/chip-lightblue-right.png') right bottom no-repeat;*/
	background-size: contain;
	width: 400px;
	height: 400px;
	position: absolute;
	right: 0;
	bottom: 0;
	transform-origin: right bottom;
}


/**********************************************************************
 Section - News article
**********************************************************************/

.section-article {
	padding: 50px 0 100px 0;
}

.section-article__head {
	margin: 0 0 1.5em 0;
}

.section-article__head h1 {
	margin-top: 20px;
	margin-bottom: 40px;
}

.section-article__meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 10px 0;
}

.section-article__hero {
	/* height: 600px; */
	height: 0;
	padding-bottom: 50%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	margin-bottom: 3em;
	border-radius: 24px;
}

.section-article__body {
	column-count: 2;
	column-gap: 50px;
}

.section-article__body p:first-child {
	margin-top: 0;
}


/**********************************************************************
 Section - FAQs
**********************************************************************/

.section-faqs {
	background-color: #fff;
	padding-bottom: 160px;
}

.section-faqs+.section_new {
	margin-top: 60px;
}

.section-faqs h2 {
	margin: 0;
	margin-bottom: 60px;
}

.section-faqs h3 {
	margin: 0;
	margin-bottom: 60px;
	font-weight: normal;
}

.faq__item {
	background: #fff;
	border-radius: 24px;
	overflow: hidden;
}

.faq__item+.faq__item {
	margin-top: 2em;
}

.faq__item>a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #131431;
	color: #fff;
	padding: 25px 30px;
	text-decoration: none;
	font-size: 20px;
}

.faq__item>a em {
	display: block;
	position: relative;
	width: 25px;
	height: 25px;
	transition: all 200ms ease-in-out;
}

.faq__item>a em::before,
.faq__item>a em::after {
	content: "";
	display: block;
	position: absolute;
}

.faq__item>a em::before {
	width: 100%;
	height: 2px;
	background: #fff;
	left: 0;
	top: 50%;
	margin-top: -1px;
}

.faq__item>a em::after {
	width: 2px;
	height: 100%;
	background: #fff;
	left: 50%;
	top: 0;
	margin-left: -1px;
	transform-origin: center;
	transform: rotate(0deg);
	transition: all 200ms ease-in-out;
}

.faq__item>a:hover {
	background-color: #FF0A58;
}

.faq__itemcontent {
	padding: 30px 30px;
	display: none;
	background: #ededed;
}

.faq__item.faq__open {}

.faq__item.faq__open>a em {
	transform: rotate(180deg);
}

.faq__item.faq__open>a em::after {
	transform: rotate(90deg);
}

.faq__item.faq__open .faq__itemcontent {}

.faq__itemcontent p:first-child {
	margin-top: 0;
}

.faq__itemcontent p:last-child {
	margin-bottom: 0;
}


/**********************************************************************
 Section - Jobs
**********************************************************************/

.section-jobs {
	padding: 60px 0;
	background: #ededed;
	margin-bottom: 60px;
	/*	color: #fff;*/
}

.section-jobs h3 {
	margin: 0 0 30px 0;
}

.section-jobs__filters {
	margin-top: 20px;
	margin-bottom: 20px;
	justify-content: flex-start;
}

.section-jobs__filters select,
.section-jobs__filters input {
	min-width: 300px;
	margin: 0 3% 0 0;
	border-radius: 24px;
	border: solid 2px #131431;
	color: #131431;
	outline: none;
}

.section-jobs__filters select:last-child,
.section-jobs__filters input:last-child {
	margin-right: 0;
}

.jobrow {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 50px 0;
	border-bottom: 1px solid #8586b3;
}

.jobrow>div:nth-child(2) {
	flex: 0 0 auto;
}

.jobrow:last-child {
	border-bottom: 0;
}

.jobrow h4 {
	font-size: 30px;
	font-weight: bold;
	margin: 0 0 30px 0;
}

.jobrow.hidden {
	display: none;
}

.section-jobs--members .section-jobs__filters {
	padding: 20px;
	background: #efefef;
	margin: 0;
}

.section-jobs--members .jobrow:first-child {
	padding-top: 25px;
}


/**********************************************************************
 Section - Job
**********************************************************************/

.section-job {
	padding: 60px 0 100px 0;
}

ul.job__meta {
	list-style: none;
	margin: 2em 0;
	padding: 0;
}

ul.job__meta li {
	padding: 5px 0;
}

ul.job__meta li::before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 30px;
	height: 30px;
	margin-right: 20px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}

.job__meta--posted::before {
	background-image: url('../images/ui/icon-posted.svg');
}

.job__meta--location::before {
	background-image: url('../images/ui/icon-location.svg');
}


.section-job .wrapper {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
}

.section-job__main {
	flex: 2;
	padding-right: 5%;
}

.section-job__side {
	flex: 1;
	text-align: center;
	border-left: 1px solid #B0B6C1;
}

.section-job__side .btn {
	min-width: 200px;
}

.section-job__main__buttons {
	margin: 3em 0 0 0;
}


/**********************************************************************
 Section - Stay in touch
**********************************************************************/

.section-stayintouch {
	padding: 150px 0;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-color: #131439;
	background-image: url('../images/ui/stayintouch-bg.jpg');
	color: #fff;
	font-size: 30px;
	font-weight: 800;
}

.section-stayintouch::before {
	content: "";
	position: absolute;
	width: 50%;
	height: 100%;
	top: 0;
	left: 0;
	/*	background: url('../images/ui/chip-red-left.png') right top no-repeat;*/
	background-size: cover;
}

.section-stayintouch .wrapper {
	padding-right: 50%;
}

.section-stayintouch a {
	color: #fff;
	text-decoration: none;
}

.section-stayintouch a:hover {
	color: #fff;
	text-decoration: underline;
}


/**********************************************************************
 Section - Spaces
**********************************************************************/

.section-space {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-color: #f7f7f7;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.section-space:nth-child(odd) {
	align-items: flex-end;
}

.section-space__lead {
	background: #131439;
	color: #fff;
	padding: 40px 80px 40px 40px;
	width: 33%;
	min-height: 400px;
	position: relative;
}

.section-space__lead h3 small {
	display: block;
	font-size: 0.5em;
	margin-top: 5px;
}

.section-space__lead .btn {
	position: absolute;
	left: 40px;
	bottom: 40px;
}

.section-space__panels {
	display: flex;
	width: 50%;
}

.section-space__panel {
	flex: 0 0 33.3333%;
	min-width: 250px;
	background: #F0EEED;
	color: #131439;
	padding: 40px;
}

.section-space__panel p {
	font-size: 12px;
}

.section-space__panel p:last-child {
	margin-bottom: 0;
}



/**********************************************************************
 Section - Big panel slider
**********************************************************************/

.section-bigpanelslider {
	padding: 0;
	margin: 0;
}

.section-bigpanelslider .swiper-button-next,
.section-bigpanelslider .swiper-button-prev {
	color: #FFF !important;
}

.section-bigpanelslider .wrapper {
	z-index: 1;
}

.section-bigpanelslider--slide {
	padding: 60px 0;
	width: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	color: #fff;
}

.section-bigpanelslider--slide::before {
	content: "";
	position: absolute;
	z-index: 0;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
}

.section-bigpanelslider--slide .wrapper {
	padding-right: 45%;
}

.section-bigpanelslider--slide h2 {
	font-size: 40px;
}

.section-bigpanelslider--slide h3 {
	text-transform: uppercase;
	font-size: 20px;
	font-weight: normal;
	margin: 0 0 3em 0;
}

.section-bigpanelslider--slide h4 {
	font-size: 30px;
}


/**********************************************************************
 Section - Image carousel
**********************************************************************/

.section-imagecarousel {}

.section-imagecarousel__image {
	width: 100%;
	height: 600px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.section-imagecarousel .shape--pentagon {
	width: 600px;
	height: 600px;
	background: url('../images/ui/shape-pentagon.png') center center no-repeat;
	background-size: contain;
	position: absolute;
	left: -20%;
	top: 0;
	z-index: 1;
}


/**********************************************************************
 Section - Space 3 blocks
**********************************************************************/

.section-3blocks {
	background: #2E318A;
	padding: 80px 0;
}

.section-3blocks .wrapper {
	display: flex;
	align-items: stretch;
	z-index: 1;
}

.section-3blocks__cell {
	flex: 1;
	padding: 20px;
	color: #fff;
	min-height: 350px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.section-3blocks__cell p:last-child {
	margin-bottom: 0;
}

.section-3blocks__cell:nth-child(1) {
	background: #FF0A58;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.section-3blocks__cell:nth-child(3) {
	background: #3A3C42;
}

.section-3blocks .shape--chip {
	/*	background: url('../images/ui/chip-blue.png') left top no-repeat;*/
	background-size: contain;
	width: 400px;
	height: 400px;
	position: absolute;
	z-index: 0;
	left: 0;
	top: 0;
	transform-origin: left top;
}


/**********************************************************************
 Section - Supporters
**********************************************************************/

.section-supporters {
	padding: 60px 0 200px 0;
	color: #fff;
	background: #FF0A58;
	text-align: center;
}

.section-supporters .swiper-wrapper {
	/*	align-items: center;*/
	/*	justify-content: center;*/
}

.section-supporters h4 {
	font-size: 30px;
	margin: 0 0 60px 0;
}

.section-supporters__image {
	width: 100%;
	height: 130px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: auto 130px;
}


/**********************************************************************
 Section - How to find us
**********************************************************************/

.section-findus {
	padding: 60px 0;
}

.section-findus .wrapper {
	z-index: 5;
}

.section-findus__content {
	padding-right: 50%;
}

.section-findus .shape--circle {
	position: absolute;
	z-index: 0;
	right: -30%;
	bottom: -10%;
	/* transform: translate(-50%,70%); */
	width: 1000px;
	height: 1000px;
	border-radius: 50%;
	background: #FF0A58;
}


/**********************************************************************
 Section - Our work
**********************************************************************/

.section-ourwork {
	padding: 60px 0;
}

.section-ourwork__grid {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: flex-start;
	z-index: 1;
	margin: 3em 0 0 0;
}

.section-ourwork__cell {
	flex: 0 0 31.3333%;
	margin: 0 3% 3em 0;
	min-height: 350px;
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 150%;
	color: #fff;
	position: relative;
	display: flex;
	transition: transform 200ms ease-in-out;
	border-radius: 24px;
	overflow: hidden;
}

.section-ourwork__cell:nth-child(3n) {
	margin-right: 0;
}

.section-ourwork__cell .inner {
	position: relative;
	z-index: 1;
	width: 100%;
	color: #131439;
	margin-top: 20vw;
	background: #EDEDED;
	padding: 30px;
	padding-bottom: 100px;
	padding-top: 20px;
}

.section-ourwork__cell .inner p {
	font-size: 14px;
	line-height: 18px;
}

.section-ourwork__cell .inner h3 {
	font-size: 30px;
}

.section-ourwork__cell::before {
	content: "";
	position: absolute;
	z-index: 0;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
}

.section-ourwork__cell:hover::before {
	transition: transform 200ms ease-in-out;
}




.section-ourwork__cell .btn {
	position: absolute;
	left: 20px;
	bottom: 20px;
	color: #131439;
	border: solid 2px #131439;
}

.section-ourwork__cell .btn:hover {
	color: #fff;
	background: #131439;
}

.section-ourwork__cell:hover {
	transform: scale(1.05);
	z-index: 2;
}


/**********************************************************************
 Section - Link banner
**********************************************************************/


.section-linkbanner {
	padding: 40px 0;
	text-align: center;
	background: #131439;
	color: #fff;
}

.section-linkbanner a {
	color: #fff;
}


/**********************************************************************
 Section - Further content
**********************************************************************/

.section-furthercontent {
	padding: 60px 0;
	padding-top: 100px;
	padding-bottom: 100px;
}

.section-furthercontent .wrapper {
	column-count: 2;
	column-gap: 50px;
}

.section-furthercontent .wrapper p:first-child {
	margin-top: 0;
}


/**********************************************************************
 Section - Contact form
**********************************************************************/

.section-contactform {
	padding: 60px 0;
	background: #131439;
	color: #fff;
}

.section-contactform__form {
	margin-top: 2em;
}

.section-contactform__form label {
	color: #fff !important;
}

.section-contactform__form button {
	background: #fff !important;
	color: #131439 !important;
	border: none !important;
	border-radius: 5em !important;
}

.frm_style_formidable-style.with_frm_style .frm_error {
	color: #FF0A58 !important;
}

.with_frm_style .frm_required {
	color: #FF0A58 !important;
}

.frm_description {
	color: #fff !important;
}

.frm_primary_label {
	color: #fff !important;
}


/**********************************************************************
 Section - Spaces list
**********************************************************************/

.section-spaceslist {
	padding: 80px 0;
	margin-bottom: 60px;
}

.section-spaceslist h3 {
	margin-bottom: 50px;
}

.section-spacelist__item {
	display: flex;
	width: 100%;
	justify-content: flex-start;
	align-items: stretch;
	margin: 2em 0 0 0;
	background-color: #eff0f3;
	border-radius: 24px;
	overflow: hidden;
}

.section-spacelist__item h3 small {
	display: block;
	font-size: 20px;
	margin-top: 5px;
	margin-top: 20px;
}

.section-spacelist__item h4 {
	font-size: 22px;
}

.section-spacelist__item__left {
	flex: 1;
	background-color: #131439;
	color: #fff;
	padding: 60px;
}

.section-spacelist__item__middle {
	flex: 1;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding-bottom: 20px;
}

.section-spacelist__item__right {
	flex: 1;
	padding: 20px;
}


/**********************************************************************
 Section - Single event
**********************************************************************/

.section-singleevent {
	padding: 60px 0 100px 0;
}

ul.section-singleevent__meta {
	list-style: none;
	margin: 2em 0;
	padding: 0;
}

ul.section-singleevent__meta li {
	padding: 5px 0;
}

ul.section-singleevent__meta li::before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 30px;
	height: 30px;
	margin-right: 20px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}

.section-singleevent__meta--posted::before {
	background-image: url('../images/ui/icon-posted.svg');
}

.section-singleevent__meta--venue::before {
	background-image: url('../images/ui/icon-location.svg');
}


.section-singleevent .wrapper {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
}

.section-singleevent__main {
	flex: 2;
	padding-right: 5%;
}

.section-singleevent__side {
	flex: 1;
	text-align: center;
}

.section-singleevent__image {
	width: 100%;
	height: 500px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	border-radius: 24px;
}


/**********************************************************************
 Section - Our team panel
**********************************************************************/

.section-ourteampanel {
	padding: 0;
	background-color: #FF0A58;
}

.section-ourteampanel .wrapper {
	display: flex;
	align-items: stretch;
}

.section-ourteampanel__text {
	color: #fff;
	flex: 2;
	padding: 60px 30px 150px 0;
}

.section-ourteampanel__image {
	flex: 7;
	background-repeat: no-repeat;
	background-position: center right;
	background-size: contain;
}


/**********************************************************************
 Section - Content 1
**********************************************************************/

.section-content-1 {
	padding: 100px 0;
}

.section-content-1__head {
	padding-right: 50%;
}

.section-content-1__body {
	column-count: 2;
	column-gap: 50px;
}

.section-content-1__body p {
	break-inside: avoid-column;
}

/**********************************************************************
 Section - Content 2
**********************************************************************/

.section-content-2 {
	padding: 100px 0;
	background-color: #EBEDF2;
}

.section-content-2__head {
	padding-right: 50%;
}

.section-content-2__body {
	column-count: 2;
	column-gap: 50px;
}

.section-content-2__body p {
	break-inside: avoid-column;
}


/**********************************************************************
 Section - Content 3
**********************************************************************/

.section-content-3 {
	padding: 60px 0;
}

.section-content-3__head {
	padding-right: 50%;
}

.section-content-3__body {
	column-count: 2;
	column-gap: 50px;
}

.section-content-3__body p {
	break-inside: avoid-column;
}

.section-content-3__body p:first-child {
	margin-top: 0;
}


/**********************************************************************
 Section - Content panel
**********************************************************************/

.section-contentpanel {
	padding: 60px 0;
	color: #fff;
	background-color: #FF0A58;
}

.section-contentpanel a {
	color: #fff;
}


/**********************************************************************
 Section - Content generic
**********************************************************************/

.section-generic {
	padding: 100px 0;
}

.section-generic {
	padding: 50px 0;
	/*	background: url('../images/ui/chip-green-right.png') right bottom no-repeat;*/
	background-size: contain;
}

.section-generic .wrapper {
	display: flex;
	align-items: flex-start;
}

.section-generic .wrapper>div {
	flex: 1;
}

.section-generic h1 {
	font-size: 40px;
}

.section-generic h1 small {
	display: block;
	font-size: 0.5em;
}

.section-generic {
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: contain;
	background-repeat: no-repeat;
}


/**********************************************************************
 Section - Testimonials
**********************************************************************/

.section-testimonials {
	background-color: #131439;
	color: #fff;
}

.section-testimonials__item {
	display: flex;
}

.section-testimonials__item>div {
	flex: 1;
	padding: 100px 0;
}

.section-testimonials__item h3 {
	margin-bottom: 2em;
}

.section-testimonials__image {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}


/**********************************************************************
 Section - Membership levels
**********************************************************************/

.section-levels {
	padding: 60px 0;
}

.section-levels__levels {
	display: flex;
	width: 100%;
	margin: 4em 0 2em 0;
	align-items: stretch;
}

.section-levels__level {
	flex: 1;
	text-align: center;
	background: #fff;
	margin-right: 3%;
	padding: 20px;
	padding-bottom: 75px;
	position: relative;
	/*	box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);*/
	transition: all 200ms ease-in-out;
	cursor: pointer;
	border-radius: 24px;
	background-color: #EDEDED;
}

.section-levels__level:hover {
	background-color: #EDEDED;
	transform: scale(1.03);
}

.section-levels__level--selected {
	background-color: #131439;
	color: #fff;
}

.section-levels__level--selected:hover {
	background-color: #131439;
}

.section-levels__level--selected::after {
	content: "";
	display: block;
	width: 82px;
	height: 47px;
	/*	background: url('../images/ui/arrow-chip-up.png') center center no-repeat;*/
	background-size: contain;
	position: absolute;
	left: 50%;
	top: 103%;
	transform: translateX(-50%);
}

.section-levels__level:last-child {
	margin-right: 0;
}

.section-levels__level h3 {
	font-weight: 600;
	font-size: 25px;
}

.section-levels__level__icon {
	height: 85px;
	margin-bottom: 25px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}

/*
.section-levels__level[data-level="join-us"] .section-levels__level__icon {
	background-image: url('../images/ui/level-joinus.png');
}
.section-levels__level[data-level=connect] .section-levels__level__icon {
	background-image: url('../images/ui/level-connect.png');
}
.section-levels__level[data-level="all-in"] .section-levels__level__icon {
	background-image: url('../images/ui/level-allin.png');
}
.section-levels__level[data-level=dedicated] .section-levels__level__icon {
	background-image: url('../images/ui/level-dedicated.png');
}
*/

.section-levels__level__btn {
	position: absolute;
	left: 0;
	bottom: 20px;
	right: 0;
	text-align: center;
}

.section-levels__aboutbox {
	margin-top: 50px;
	/*	box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);*/
	display: none;
	border-radius: 24px;
	overflow: hidden;
}

.section-levels__aboutbox--selected {
	display: block;
}

.section-levels__aboutbox__head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #131439;
	color: #fff;
	padding: 20px 30px;
}

.section-levels__aboutbox__head__title {
	font-weight: bold;
	font-size: 25px;
}

.section-levels__aboutbox__body {
	padding: 15px 50px 50px 50px;
	background: #ededed;
}

.section-levels__aboutbox__body__panel {
	padding: 15px 25px;
	/*	box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);*/
	width: 50%;
	margin-top: 50px;
	border-radius: 24px;
	background: #fff;
}

.section-levels__aboutbox__body__panel__head {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-weight: bold;
	font-size: 24px;
}

.section-levels__aboutbox__body__panel__head__image {
	width: 100px;
	height: 70px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	margin-right: 20px;
}

.section-levels__aboutbox[data-level=joinus] .section-levels__aboutbox__body__panel__head__image {
	background-image: url('../images/ui/level-joinus.png');
}

.section-levels__aboutbox[data-level=connect] .section-levels__aboutbox__body__panel__head__image {
	background-image: url('../images/ui/level-connect.png');
}

.section-levels__aboutbox[data-level=allin] .section-levels__aboutbox__body__panel__head__image {
	background-image: url('../images/ui/level-allin.png');
}

.section-levels__aboutbox[data-level=dedicated] .section-levels__aboutbox__body__panel__head__image {
	background-image: url('../images/ui/level-dedicated.png');
}


.with_frm_style select {
	padding: 25px !important;
	box-sizing: border-box;
}

.with_frm_style input {
	padding: 25px !important;
	box-sizing: border-box;
}

/**********************************************************************
 Section - Register page
**********************************************************************/

.section-register {
	padding: 60px 0;
	background: #EBEDF2;
}


/**********************************************************************
 Section - Register page
**********************************************************************/






.level-infobox {
	padding: 20px 40px;
	/*	box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);*/
	background: #fff;
	padding-right: 50%;
	display: none;
	margin-top: 1.5em;
	border-radius: 24px;
}

.level-infobox--active {
	display: block;
}

.level-infobox img {
	vertical-align: middle;
	display: inline-block;
}

.level-infobox__imagepricetext {
	font-weight: bold;
	font-size: 1.2em;
}


.myform-container {
	max-width: 600px;
}

.myform {
	padding: 0 0 60px 0;
}

.myform hr {
	margin: 2em 0;
	height: 1px;
	border: none;
	background: #c3c5ca;
}

.regform-group {
	display: none;
}

.regform-group.visible {
	display: block;
}

.myform select {
	width: 40%;
	border-radius: 24px;
	border: none;
}

.myform input[type=text],
.myform input[type=number],
.myform input[type=email],
.myform input[type=password] {
	width: 100%;
	padding: 10px;
	background: #fff;
	border: 1px solid #fff;
	/*	border-bottom: 1px solid #E6E6E6;*/
	outline: none;
	/*	box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);*/
	padding: 15px;
	border-radius: 24px;
	transition: transform 200ms ease-in-out;
}

/* .myform input:focus {
	transform: scale(1.02);
	border-color: #FF0A58;
} */

.myform button[type=submit] {
	outline: none;
	font-size: 1.3em;
}

.myform h3 {
	font-size: 25px;
	margin: 0 0 10px 0;
}

.myform .row {
	margin: 10px 0;
}

.myform .row-group {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.myform .row-group input {
	flex: 0 0 49%;
}

.myform .row-group-3 input {
	flex: 0 0 31%;
	margin-right: 1%;
	text-align: center;
}

.myform .row-group-3 input:last-child {
	margin-right: 0;
}

h3.nomargin {
	margin: 0;
}

.cbox {
	position: relative;
	z-index: 1;
	padding: 10px 20px;
	outline: none;
	transition: all .2s ease-in-out;
	cursor: pointer;
	color: #131439;
	font-weight: 500;
	display: inline-block;
}

.cbox+.cbox {
	/*	margin-left: 1em;*/
}

.cbox i {
	font-style: normal;
}

.cbox input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.cbox span {
	display: inline-block;
	/* background-color: #e8e8e8; */
	border: 1px solid #e8e8e8;
	vertical-align: middle;
	position: absolute;
	z-index: -1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border-radius: 5em;
	border: 2px solid #131439;
}

.cbox input:checked~span {
	background-color: #131439;
	border: 2px solid #131439;
}

.cbox input:checked~i {
	color: #fff;
}

.cbox input:focus~span {
	border-color: #FF0A58;
}

.row-cboxes {
	margin-top: 15px !important;
	display: flex;
	flex-wrap: wrap;
}

.row-cboxes .cbox {
	margin-bottom: 15px;
	margin-right: 15px;
	flex: 0 0 auto;
}

.paymentdetails-inner {
	padding-right: 50%;
}

.discountsection {
	margin: 2em 0 0 0;
}

.discountsection h4 {
	margin: 0;
	font-size: 20px;
}

.discountsection p {
	margin: 0;
}

.discountsection .row-group input {
	flex: 0 0 80%;
}

.discountinfo {
	font-weight: bold;
}


.regform-inner {
	max-width: 600px;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
	opacity: 0;
}

.mobileonly {
	display: none;
}

.swiper-pagination-bullet {
	width: 14px;
	height: 14px;
}

.no-opportunities {
	text-align: center;
	margin: 5em 0;
}





/**********************************************************************
 Section - NEW-RESKIN
**********************************************************************/

.line_spacer_1 {
	width: 200%;
	height: 150px;
	background: url("../images/ui/scroll_divider_line_grey_1.svg") repeat-x top left;
	display: flex;
	margin-top: -50px;
	margin-left: -200px;
	margin-bottom: 50px;
}

.line_spacer_2 {
	width: 100%;
	height: 120px;
	background: url("../images/ui/scroll_divider_line_grey_2.svg") repeat-x top left;
	display: flex;
	margin-bottom: 50px;
	margin-top: -30px;
}

.line_spacer_white_1 {
	width: 200%;
	height: 150px;
	background: url("../images/ui/scroll_divider_line_white_1.svg") repeat-x top left;
	display: flex;
	margin-top: -40px;
	margin-left: 0px;
	margin-bottom: 50px;
}

.line_spacer_white_2 {
	width: 200%;
	height: 150px;
	background: url("../images/ui/scroll_divider_line_white_2.svg") repeat-x top left;
	display: flex;
	margin-bottom: 30px;
	margin-top: -80px;
}

.line_spacer_1+.line_spacer_2 {
	display: none;
}

.section_new {
	display: flex;
	flex-wrap: wrap;
	z-index: 1;
	width: 100%;
}

.section_new_pic {
	flex: 3;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #ededed;
	border-top-right-radius: 24px;
	border-bottom-right-radius: 24px;
}

.section_new_pic_2 {
	flex: 3;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #ededed;
	border-top-right-radius: 24px;
	border-bottom-right-radius: 24px;
}

.section_new_pic_right {
	flex: 3;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #ededed;
	border-top-left-radius: 24px;
	border-bottom-left-radius: 24px;
}

.section_new_text {
	flex: 3;
	background-position: center center;
	box-sizing: border-box;
	max-width: 50%;
	padding: 11vw;
	padding-right: 13vw;
}

.section_new_text p {
	font-size: 22px;
}

.section_new_text .btn {
	margin-right: 15px !important;
}

.section_new_text h4 {
	font-size: 22px;
	font-weight: 700;
	color: #FF0A58;
	margin-top: 20px;
}

.section_new_text .btn {
	display: inline-block;
	margin: 10px 0;
}

.section_new_events {
	display: flex;
	flex-wrap: wrap;
	z-index: 1;
	height: auto;
	min-height: 600px;
	width: 100%;
	background-color: #ededed;
	background-image: url("../images/ui/scroll_divider_grey_top.svg");
	background-repeat: no-repeat;
	background-position: top;
	padding-top: 200px;
	padding-bottom: 100px;
	margin-top: -100px;
}

.feed-item {
	border-radius: 24px;
}

.section-getsocial+.line_spacer_2 {
	margin-top: 60px;
}


.section_new_padding_extra .section_new_text {
	padding: 9vw 8vw;
	padding-right: 10vw;
}

/* fix for post cols */
.postid-17560 .section-article__body,
.postid-18633 .section-article__body {
	column-count: 1;
}



div[id^="GlobalPayments-overlay"] {
	z-index: 99999 !important;
}