/* common */

body.hidden {
    overflow: hidden;
}
#page {
	overflow: hidden;
}
.page,
.error404 {
	position: relative;
	background: #1D1526;
}

.link, .menu-link {
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    font-size: 16px;
    line-height: 19px;
    color: #ffffff;
}
.title {
	font-family: 'Inter', sans-serif;
	font-weight: 900;
	font-size: 56px;
	line-height: 68px;
	color: #FFFFFF;
}
.title.small {
	font-weight: 900;
	font-size: 32px;
	line-height: 39px;
}
.desc {
	font-family: 'Inter', sans-serif;
    font-weight: normal;
	font-size: 16px;
	line-height: 19px;
	color: #FFFFFF;
}
.desc a {
	text-decoration: underline;
	color: #fff;
}
.desc a:hover {
	text-decoration: none;
}
.mob {
    display: none;
}
.line-1 {
	position: absolute;
	width: 585px;
	top: 0;
	left: calc(50% - 220px);
	transform: translateX(-50%) scale(-1);
}

.line-2 {
	position: absolute;
	width: 317px;
	top: 69px;
	left: calc(50% - 350px);
	transform: translateX(-50%) scale(-1);
}
.decor {
	position: absolute;
	width: 458px;
	left: -170px;
	top: calc(100% - 59px);
}
i {
	font-style: italic !important;
}
.button {
	font-family: 'Poppins', sans-serif;
	display: inline-block;
	font-weight: 500;
	font-size: 14px;
	line-height: 21px;
	color: #fff;
	padding: 16px;
	width: 100%;
	max-width: 222px;
	text-align: center;
}
.button.red {
	background: #B30838;
}
.button.red:hover {
	background: #8e092e;
}
.button.black {
	background: #000000;
}
.button.black:hover {
	background: #2e2626;
}



/* header */

.header {
    padding: 27px 49px;
    background-color: transparent;
    width: 100%;
    font-size: 0;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 5;
    transition: .3s;
}
.header.scrolled {
    background-color: #482F46;
    box-shadow: 0 0 2px rgb(0 0 0 / 14%), 0 18px 40px rgb(0 0 0 / 5%);
}
.header.scrolled .link, .header.scrolled .menu-link {
    color: #fff;
}
.header .logo {
    max-width: 122px;
	display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    vertical-align: middle;
}
.header.scrolled .logo .img {
	/* filter: brightness(0%); */
}
.hamburger {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 85px;
	cursor: pointer;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 3;
	transition: .2s;
}
.hamburger span {
	height: 2px;
	width: 21px;
	background: #fff;
	border-radius: 20px;
	display: block;
	transition: .2s;
}
.hamburger span + span {
	margin-top: 4px;
}
.header .logo-desc {
	font-weight: normal;
	font-size: 8px;
	line-height: 10px;
	margin-top: 9px;
    font-family: 'Inter', sans-serif;
	color: #fff;
	white-space: nowrap;
}
.header.scrolled .logo-desc {
	/* color: #000; */
}
.header-nav {
    width: calc(100% - 244px);
    display: inline-block;
    vertical-align: middle;
    text-align: center;
	margin-top: -19px;
	transition: .2s;
}
.header.scrolled .header-nav {
	margin-bottom: -20px;
}
.header-nav .nav__item {
    display: inline-block;
    vertical-align: middle;
}
.header-nav .nav__item + .nav__item {
    margin-left: 56px;
}
.header-nav .link, .header-nav .menu-link {
	color: #fff;
	font-weight: normal;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	line-height: 19px;
	position: relative;
}
.header-nav .menu-link:before {
	transition: transform .3s ease-out,border-color .3s ease-out;
    position: absolute;
    display: block;
    bottom: -4px;
    left: 0;
    width: 100%;
    -ms-transform: scaleX(0);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    border-top: 2px solid #DB1E36;
    content: "";
    padding-bottom: inherit;
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.25, 0, 0.4, 1), border-color 0.35s cubic-bezier(0.52, 0.01, 0.16, 1);
}
.header-nav .menu-link.active:before {
	transform-origin: left;
    transform: scaleX(1);
    border-color: #DB1E36;
}
.header-nav-list {
    width: calc(100% - 174px);
    display: inline-block;
    vertical-align: middle;
}
.header-nav .nav__item.button {
	position: absolute;
	top: 25px;
	right: 49px;
	height: 36px;
	margin: 0;
	transition: .2s;
	width: auto;
	padding: 0;
}
.header.scrolled .nav__item.button {
	top: 33px;
}
.header-nav .nav__item.button .menu-link {
	background: #B30838;
	font-weight: 500;
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	line-height: 21px;
	letter-spacing: -0.005em;
	padding: 7px 10px;
	display: block;
}

.header-nav .nav__item.button .menu-link:after {
	content: '';
	width: 24px;
	height: 24px;
	margin-left: 2px;
	display: inline-block;
	vertical-align: middle;
	background-image: url('../img/arrow.svg');
	background-size: contain;
	background-position: center;
}
.header-nav .nav__item.button .menu-link:hover {
	background: #8e092e;
}
.header.scrolled .nav__item.button .menu-link {
	color: #fff;
}

/* directory-page */

.section-1 {
	padding: 246px 48px 234px 104px;
	box-sizing: border-box;
	position: relative;
	font-size: 0;
}
.error-404 {
	background: transparent !important;
	position: relative;
}
.error-404 .ast-404-layout-1 {
	position: relative;
}
.error404 .page-header .page-title,
.ast-404-layout-1 .page-sub-title {
	color: #fff;
    font-family: 'Inter', sans-serif;
}
.section-1:before,
.error-404:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-image: url('../img/bg.jpg');
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: top left;
	opacity: 0.5;
	filter: blur(400px);
}
.ast-404-search {
	display: none;
}
.section-1-wrapper {
	max-width: 1260px;
	margin: 0 auto;
	position: relative;
}
.section-1 .left {
	width: 447px;
	margin-right: 47px;
	display: inline-block;
	vertical-align: middle;
	position: relative;
}
.section-1 .right {
	width: calc(100% - 447px - 47px);
	display: inline-block;
	vertical-align: middle;
}
.section-1 .form {
	background: rgba(255, 255, 255, 0.1);
	box-shadow: 0px 50px 150px rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(25px);
	text-align: center;
	padding: 116px 56px;
}
.section-1 .form .title {
	margin: 0 auto;
	margin-bottom: 27px;
	font-weight: bold;
	font-size: 24px;
	line-height: 29px;
    font-family: 'Inter', sans-serif;
}
.section-1 .frm_form_field {
	text-align: left;
}
.section-1 .frm_form_field label {
	font-weight: 500;
	font-size: 12px;
	line-height: 15px;
	color: #fff;
	width: 100%;
    font-family: 'Inter', sans-serif;
}
.section-1 .frm_form_field input {
	margin-top: 6px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.125);
	width: 100%;
    font-family: 'Inter', sans-serif;
	outline: 0;
	line-height: 40px;
	font-weight: 500;
	font-size: 16px;
	color: #fff;
	padding: 0 16px;
}
.directory-page  .section-1 .frm_form_field button {
	margin-top: 23px;
	background: #B30838;
	width: 100%;
	font-weight: 500;
	font-size: 14px;
	line-height: 48px;
	font-family: 'Poppins', sans-serif;
	color: #fff;
	border: 0;
	cursor: pointer;
	padding: 0;
}
.directory-page .title {
	max-width: 400px;
}
.desc {
	margin-top: 16px;
}
.desc b {
	font-weight: 700;
}
.desc + .desc {
	margin-top: 21px;
}
.phone {
	margin-top: 48px;
}
.phone .img {
	width: 24px;
	vertical-align: middle;
}
.phone b {
	margin-left: 12px;
	vertical-align: middle;
}
/* Footer */

.footer {
	padding: 106px 104px 0;
	background: #261C31;
	font-size: 0;
	position: relative;
}
.footer-wrapper {
	max-width: 1230px;
	margin: 0 auto;
	position: relative;
}
.footer-wrapper:before {
	content: '';
	position: absolute;
	left: -222px;
	top: 330px;
	width: 758px;
	height: 1098px;
	background-image: url('../img/decor-8.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.footer-wrapper:after {
	content: '';
	position: absolute;
	width: 340px;
	height: 340px;
	left: -90px;
	top: -60px;
	background: #7A637D;
	filter: blur(500px);
	border-radius: 100%;
}
.footer .left {
	width: 40%;
	display: inline-block;
	vertical-align: top;
	padding-top: 28px;
}
.footer .right {
	width: 60%;
	display: inline-block;
	vertical-align: top;
	padding-left: 46px;
	position: relative;
	z-index: 1;
}
.footer .right .title {
	font-weight: 900;
	font-size: 21px;
	line-height: 25px;
	margin-bottom: 19px;
}
.footer .logo {
	max-width: 195px;
	display: block;
}
.footer .desc {
	margin-top: 27px;
	font-weight: normal;
	font-size: 14px;
	line-height: 28px;
}
.footer .desc + .desc {
	margin-top: 60px;
}
.footer .location .img {
	width: 16px;
}
.footer .location {
	display: inline-flex;
	vertical-align: top;
	width: 32px;
	height: 32px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 50px;
	align-items: center;
	justify-content: center;
}
.location + b {
	display: inline-block;
	vertical-align: top;
	max-width: calc(100% - 50px);
	font-weight: 600;
	font-size: 16px;
	line-height: 151.02%;
	margin-left: 18px;
    font-family: 'Inter', sans-serif;
}
.socials-list .img {
	width: 40px;
}
.socials-list {
	width: 30%;
	display: inline-block;
	vertical-align: top;
	text-align: right;
	margin-top: 70px;
	font-size: 0;
}
.socials__item {
	display: inline-block;
	vertical-align: top;
	width: 40px;
	height: 40px;
	transition: .4s;
}
.socials__item a {
	outline: 0;
}
.socials__item:hover {
	transform: scale(1.1);
}
.socials__item + .socials__item {
	margin-left: 8px;
}
.footer-nav {
	width: 70%;
	display: inline-block;
	vertical-align: top;
	margin-top: 80px;
	position: relative;
	z-index: 1;
}
.footer-nav .menu-item {
	display: inline-block;
	vertical-align: middle;
	margin-right: 56px;
	margin-bottom: 12px;
}
.footer-nav .menu-item:last-child {
	margin-right: 0;
}
.footer-nav a {
    font-family: 'Inter', sans-serif;
	font-weight: normal;
	font-size: 16px;
	line-height: 19px;
	color: #fff;
	display: inline-block;
}
.footer-nav a:after {
	content: '';
	width: 24px;
	height: 24px;
	margin-left: 7px;
	display: inline-block;
	vertical-align: middle;
	background-image: url('../img/arrow.svg');
	background-size: contain;
	background-position: center;
}
.copyright {
	margin-top: 23px;
	padding: 32px 0;
	border-top: 1px solid rgba(238, 233, 218, .2);
	font-size: 0;
}
.copyright .desc {
	width: 70%;
	display: inline-block;
	vertical-align: middle;
	margin: 0;
	opacity: .5;
}
.copyright-nav {
	width: 30%;
	display: inline-block;
	vertical-align: middle;
	text-align: right;
}
.copyright-nav .menu-item {
	display: inline-block;
	vertical-align: middle;
}
.copyright-nav a {
	font-weight: normal;
	font-size: 16px;
	line-height: 26px;
    font-family: 'Inter', sans-serif;
	color: #fff;
}
.copyright-nav .menu-item + .menu-item {
	margin-left: 40px;
}


/* contact */
.contact-page .section-1 {
	padding-top: 195px;
}
.contact-page .section-1 .form {
	text-align: left;
	padding: 47px 65px 22px;
	min-height: 520px;
}
.contact-page .section-1 .form .title {
	margin: 0;
}
.contact-page .decor {
	top:  calc(100% + 43px);
}
.contact-page .section-1 .right {
	background: linear-gradient(114.16deg, #907793 -0.13%, #4E4150 100.58%);
	box-shadow: 0px 50px 150px rgba(0, 0, 0, 0.25);
	padding: 47px 49px 46px 65px;
}
.contact-page .section-1 .right .title {
	font-weight: 900;
	font-size: 21px;
	line-height: 25px;
	margin-bottom: 19px;
}
.contact-page .section-1 .frm_form_field input {
	margin: 0;
}
select {
	background-color: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.125) !important;
	width: 100%;
	outline: 0;
	font-weight: normal;
	font-size: 16px;
	line-height: 145%;
	font-family: 'Inter', sans-serif;
	color: #fff;
	-moz-appearance:none; /* Firefox */
    -webkit-appearance:none; /* Safari and Chrome */
    appearance:none;
	background-image: url('../img/caret-down.svg');
	background-size: 12px 7px;
	background-position: right 18px top 50%;
	background-repeat: no-repeat;
	padding-right: 50px;
	padding: 0 16px;
	height: 42px;
}
select option {
	color: #000;
}
.contact-page .with_frm_style .frm_required {
	display: inline-block;
}





/* home page */
.home-page .section-1 {
	padding: 167px 90px 282px;
	min-height: 900px;
}
.home-page .section-1 .left {
	width: 40%;
	display: inline-block;
	vertical-align: middle;
	margin-right: 0;
	padding-right: 28px;
}
.home-page .section-1 .right {
	width: 60%;
	display: inline-block;
	vertical-align: middle;
}
.home-page .section-1 .title {
	max-width: 100%;
}
.home-page .section-1 .desc {
	font-weight: normal;
	font-size: 21px;
	line-height: 25px;
	margin-bottom: 18px;
	margin-top: 10px;
}
.home-page .section-1 .button {
	margin-top: 16px;
	vertical-align: top;
}
.home-page .section-1 .button.red {
	margin-right: 16px;
}
.home-page .section-1 .button + .desc {
	margin-top: 32px;
	font-weight: normal;
	font-size: 16px;
	line-height: 24px;
	color: #fff;
}
.home-page .section-1 .button + .desc a {
	color: #fff;
	font-weight: 700;
	text-decoration-line: underline;
}
.home-page .preview-text {
	margin-top: 32px;
	background: #000000;
	padding: 16px 24px 20px 24px;
	position: relative;
	min-height: 186px;
	display: none;
}
.home-page .preview-text .title {
	font-weight: normal;
	font-size: 26px;
	line-height: 150%;
}
.home-page .preview-text .desc {
	font-weight: normal;
	font-size: 18px;
	line-height: 22px;
}
.home-page .preview-text .link,
.home-page .preview-text .link a{
	margin-top: 6px;
	font-weight: normal;
	color: #CC272C;
	display: inline-block;
}
.home-page .preview-text .link:after {
	content: '';
	display: inline-block;
	vertical-align: middle;
	margin-top: -1px;
	margin-left: 4px;
	width: 24px;
	height: 24px;
	background-image: url('../img/arrow-red.svg');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.home-page .preview-text .list .item {
	opacity: 0;
	height: 0;
	transition: .2s;
}
.home-page .preview-text .list .item.active {
	opacity: 1;
	height: 100%;
}
.home-page .indicator {
	position: absolute;
	right: 47px;
	bottom: 28px;

}
.home-page .indicator .item {
	width: 24px;
	height: 2px;
	opacity: 0.3;
	background: #FFFFFF;
	display: inline-block;
	vertical-align: top;
	margin-left: 8px;
	cursor: pointer;
	transition: .2s;
}
.home-page .indicator .item.active {
	opacity: 1;
}
.preview-img {
	width: 100%;
	height: 418px;
	position: relative;
}
.preview-img .img {
	z-index: 1;
	position: relative;
}
.preview-img:before {
	content: '';
	position: absolute;
	left: 16px;
	top: 16px;
	width: calc(100% - 16px);
	height: 100%;
	background: #89587F;
}
.preview-img > div {
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border-radius: 0 !important;
	border: 0 !important;
	padding: 0 !important;
	background: transparent !important;
}
.preview-img .owl-carousel.owl-loaded {
	height: 100%;
	margin: 0 !important;
}
.preview-img .owl-carousel .owl-item,
.preview-img .owl-carousel .owl-stage {
	height: 100%;
}
.preview-img .owl-carousel .owl-stage-outer {
	height: calc(100% + 220px);
}
.preview-img .img.active {
	opacity: 1;
}
.preview-img .sa_hover_container {
	width: calc(100% - 16px);
	height: calc(100% - 220px);
	position: relative;
	padding: 0 !important;
}
.preview-img .owl-carousel .owl-item {
	height: 100%;
	background: transparent;
}
.owl-carousel .owl-item .preview-text {
	display: block;
	width: calc(100% + 16px);
    position: absolute;
    left: 0;
    top: 418px;
}

.sa_owl_theme .owl-dots {
	display: table !important;
	position: absolute !important;
	width: auto !important;
	bottom: auto !important;
	top: calc(100% + 147px);
	right: 41px;
	background: #000;
	height: 40px;
}
.owl-carousel.sa_owl_theme .owl-dots .owl-dot span {
	background-color: rgba(255,255,255,.3) !important;
	width: 24px !important;
	height: 2px !important;
	transition: .2s;
	border-radius: 0 !important; 
}
.owl-carousel.sa_owl_theme .owl-dots .active span {
	background-color: #fff !important;
}


.home-page .section-2 {
	background: linear-gradient(79.23deg, #31253F 24.01%, #251C30 65.38%);
	height: 387px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 16px;
	position: relative;
	z-index: 2;
	text-align: center;
}
.home-page .section-2:before {
	content: '';
	width: 100%;
	height: 100%;
	background-image: url('../img/quotes.svg');
	background-size: 161px;
	background-position: top 55px center;
	background-repeat: no-repeat;
	position: absolute;
	left: 0;
	top: 0;
}
.home-page .section-2 .desc {
	font-weight: 500;
	font-size: 24px;
	line-height: 150%;
	max-width: 929px;
	margin: 0 auto;
}
.home-page .section-2 .desc.small {
	font-weight: normal;
	font-size: 18px;
	line-height: 22px;
	margin-top: 32px;
}
.home-page .section-3 {
	font-size: 0;
	padding: 120px 90px 175px;
	background: linear-gradient(180deg, #261C31 0%, rgba(38, 28, 49, 0) 100%);
}
.home-page .section-3-wrapper {
	max-width: 1260px;
	margin: 0 auto;
	position: relative;
}
.home-page .section-3 .decor-1 {
	width: 458px;
	transform: scaleX(-1);
	right: -142px;
	top: -175px;
	position: absolute;
}
.home-page .section-3 .title {
	font-weight: 900;
	font-size: 24px;
	line-height: 150%;
	max-width: 531px;
	position: relative;
	z-index: 1;
}
.home-page .section-3 .list {
	margin-top: 64px;
}
.home-page .section-3 .item {
	width: calc(100% / 3);
	display: inline-block;
	vertical-align: top;
}
.home-page .section-3 .item-wrapper:before {
	content: '';
	width: 69px;
	height: 103px;
	background-image: url('../img/small-red-decor.svg');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	left: -32px;
	top: 76px;

}
.home-page .section-3 .item-wrapper {
	max-width: 306px;
	margin: 0 auto;
	position: relative;
}
.home-page .section-3 .item:first-child .item-wrapper {
	margin: 0 auto 0 0;
}
.home-page .section-3 .item:last-child .item-wrapper {
	margin: 0 0 0 auto;
}
.home-page .section-3 .item .img {
	width: 74px;
	position: relative;
}
.home-page .section-3 .item .title {
	margin-top: 8px;
	font-weight: 600;
	font-size: 24px;
	line-height: 144.52%;
	position: relative;
}
.home-page .section-3 .item .desc {
	margin-top: 8px;
	line-height: 25px;
	position: relative;
	z-index: 1;
}
.home-page .section-4 {
	font-size: 0;
	padding: 0 90px;
	position: relative;
}
.home-page .section-4:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 1120px;
	background: linear-gradient(180deg, #261C31 0%, rgba(38, 28, 49, 0) 100%);
	transform: matrix(1, 0, 0, -1, 0, 0);
	left: 0;
	top: -116px;
	z-index: 1;
}
.home-page .section-4-wrapper {
	max-width: 1260px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}
.home-page .section-4-wrapper:before {
	content: '';
	position: absolute;
	width: 698px;
	height: 797px;
	background-image: url('../img/decor-9.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	left: -184px;
	top: -225px;
}
.home-page .section-4-wrapper .link {
	position: absolute;
	z-index: 1;
	font-weight: 400;
	color: #fff !important;
	font-size: 16px;
	line-height: 19px;
    right: 0;
    top: 110px;
	text-transform: capitalize;
}
.home-page .section-4-wrapper .link:hover {
	opacity: .5;
}

.home-page .section-4-wrapper .link:after {
	content: '';
	width: 21px;
	height: 21px;
	background-image: url('../img/arrow.svg');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	display: inline-block;
	vertical-align: middle;
	margin-top: -2px;
	margin-left: 4px;
}
.home-page .section-4 .title {
	font-weight: 900;
	font-size: 44px;
	line-height: 150%;
	position: relative;
	z-index: 1;
}
.home-page .section-4 .desc {
	font-size: 21px;
	line-height: 24px;
	position: relative;
}
.home-page .section-5 {
	padding: 216px 90px 0;
	font-size: 0;
}
.home-page .section-5-wrapper {
	max-width: 1170px;
	margin: 0 auto;
	position: relative;
}
.home-page .section-5-wrapper:before {
	content: '';
	position: absolute;
	top: -293px;
	right: -848px;
	width: 1112px;
	height: 1515px;
	background-image: url('../img/decor-10.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.home-page .section-5-wrapper:after {
	content: '';
	position: absolute;
	top: 465px;
	left: -249px;
	width: 317px;
	height: 459px;
	background-image: url('../img/decor-11.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.home-page .section-5 .left {
	width: 30%;
	display: inline-block;
	vertical-align: middle;
	z-index: 2;
	position: relative;
}
.home-page .section-5 .right {
	width: 70%;
	display: inline-block;
	vertical-align: middle;
	z-index: 2;
	position: relative;
}
.home-page .section-5 .title {
	font-weight: 900;
	font-size: 44px;
	line-height: 53px;
}
.home-page .section-5 .desc {
	margin-top: 27px;
	margin-bottom: 8px;
}
.home-page .section-5 .button {
	margin-top: 16px;
}
.map {
	text-align: center;
	position: relative;
}
.map svg {
	max-width: 534px;
	width: 100%;
}
.map-data {
	display: none;
}
.map-box-list {
	width: 254px;
    position: absolute;
    top: -80px;
    left: 65%;
    background: #FFFFFF;
    box-shadow: 0px 15px 75px #5C4773;
    border-radius: 4px;
    font-size: 0;
    z-index: 1;
	display: none;
}
.map .map-box-list .title {
	font-family: 'Roboto Slab', serif;
	background: #B10C3C;
	font-weight: bold;
	font-size: 20px;
	line-height: 52px;
    border-radius: 4px 4px 0 0;
}
.map-box-list .list__item {
	text-align: left;
	padding: 6px 16px;
}
.map-box-list .list__item.hidden {
	display: none;
}
.map-box-list .list__item .count {
	display: inline-block;
	vertical-align: middle;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 19px;
	width: 31px;
}
.map-box-list .list__item .img {
	width: 30px;
	vertical-align: middle;
	margin-right: 12px;
}
.map-box-list .list__item .desc {
	margin: 0 !important;
	font-weight: 600;
	font-size: 16px;
	line-height: 19px;
	color: #231A2E;
	display: inline-block;
	vertical-align: middle;
}
.map-box-list .link {
	position: absolute;
	top: calc(100% + 18px);
	left: 50%;
	transform: translateX(-50%);
	font-weight: normal;
	font-size: 16px;
	line-height: 19px;
	font-family: 'Inter', sans-serif;
	width: 100%;
}
.map-box-list .link:hover {
	color: #fff;
	opacity: .5;
}
.map-box-list .link:after {
	content: '';
	display: inline-block;
	vertical-align: middle;
	margin-top: -1px;
	margin-left: 4px;
	width: 24px;
	height: 24px;
	background-image: url('../img/arrow.svg');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.map-box-list .empty-list {
	padding: 24px;
	font-family: 'Inter', sans-serif;
	font-weight: normal;
	font-size: 16px;
	line-height: 19px;
	letter-spacing: 0.1px;
	color: #282828;
	text-align: center;
	display: none;
}
.map polygon.active, .map path {
	transition: .2s;
	cursor: pointer;
}
.map polygon:hover, .map path:hover {
	fill: #db7fcc;
}
.map polygon.active, .map path.active {
	fill: #D9A7D1;
	transform: translateY(-3px);
	filter: drop-shadow( 0px 8px 0px #E22A53);
}

.home-page .section-6 {
	font-size: 0;
	padding: 110px 90px 0;
}
.home-page .section-6-wrapper {
	max-width: 1260px;
	margin: 0 auto;
	position: relative;
}
.home-page .section-6-wrapper:before {
	content: '';
	position: absolute;
	width: 469px;
	height: 469px;
	left: -261px;
	top: -414px;
	background: #7A637D;
	filter: blur(500px);
	border-radius: 100%;
}
.home-page .team-img {
	margin-top: 23px;
	position: relative;
	z-index: 2;
}
.home-page .section-6 .title {
	font-weight: bold;
	font-size: 44px;
	line-height: 156.52%;
}

.home-page .section-7 {
	font-size: 0;
	padding: 24px 90px 0;
	text-align: center;
	position: relative;
}
.home-page .section-7:before {
	content: '';
	position: absolute;
	width: 340px;
	height: 340px;
	left: calc(50% + 330px);
	transform: translateX(-50%);
	top: 137px;
	background: #7A637D;
	filter: blur(500px);
	border-radius: 100%;
	z-index: -1;
}
.home-page .section-7-wrapper:after {
	content: '';
	position: absolute;
	width: 1283px;
	height: 945px;
	background-image: url('../img/decor-5.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	right: -543px;
	top: 0;
	z-index: -1;
}
.home-page .section-7-wrapper:before {
	content: '';
	position: absolute;
	width: 440px;
	height: 457px;
	background-image: url('../img/decor-6.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	top: -320px;
	left: -80px;
	z-index: -1;
}
.home-page .section-7-wrapper {
	max-width: 1260px;
	margin: 0 auto;
	position: relative;
}
.home-page .team-logo {
	position: relative;
}
.home-page .team-logo img {
	width: 186px;
	filter: drop-shadow(0px 4px 150px rgba(204, 39, 44, 0.75));
}
.home-page .team-logo .line-decor-1 {
	height: 2px;
	width: calc(50% - 116px);
	background: rgba(255, 255, 255, 0.12);
	position: absolute;
	left: 0;
	top: 72px;
}
.home-page .team-logo .line-decor-2 {
	height: 2px;
	width: calc(34% - 116px);
	background: rgba(255, 255, 255, 0.12);
	position: absolute;
	left: calc(50% + 116px);
	top: 72px;
}
.home-page .team-logo .line-decor-3 {
	height: 2px;
	width: 12%;
	background: #CC272C;
	position: absolute;
	right: 0;
	top: 72px;
}
.home-page .team-logo .line-decor-4 {
	height: 2px;
	width: 2%;
	background: #CC272C;
	position: absolute;
	right: 13%;
	top: 72px;
}
.home-page .section-7-wrapper {
	position: relative;
	z-index: 1;
}
.home-page .section-7 .list {
	margin-top: 48px;
}
.home-page .section-7 .list .item {
	width: 20%;
	display: inline-block;
	vertical-align: top;
}
.home-page .section-7 .list .item .title {
	font-weight: 600;
	font-size: 18px;
	line-height: 144.52%;
}
.home-page .section-7 .list .item .desc {
	font-weight: 600;
	font-size: 18px;
	line-height: 144.52%;
	margin-top: 12px;
	color: rgba(255, 255, 255, 0.5);
}
.home-page .section-7 .button {
	margin-top: 32px;
}
.home-page .section-7 .item .link {
	text-decoration: underline;
	position: relative;
	cursor: pointer;
	display: inline-block;
	vertical-align: middle;
    font-weight: 600;
    font-size: 18px;
	transform: translateY(-1px);
}
.home-page .section-7 .hover-list {
	position: absolute;
	right: 0;
	top: calc(100% + 17px);
	background: #5A4B68;
	box-shadow: 0px 8px 18px rgba(0, 0, 0, 0.25);
	padding: 13px 17px;
	transition: .2s;
	opacity: 0;
	width: 174px;
}
.home-page .section-7 .item .link:hover .hover-list {
	opacity: 1;
}
.home-page .section-7 .hover-list__item {
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 18px;
	line-height: 154.02%;
	color: #FFFFFF;
	text-align: left;
}
.home-page .section-7 .section-7-decor {
	margin-top: 69px;
	font-size: 0;
}
.home-page .section-7-decor .line-decor-1 {
	height: 2px;
	width: 12%;
	background: rgba(255, 255, 255, 0.12);
	display: inline-block;
	vertical-align: middle;
}
.home-page .section-7-decor .line-decor-2 {
	height: 2px;
	width: 12%;
	background: rgba(255, 255, 255, 0.12);
	display: inline-block;
	vertical-align: middle;
	margin: 0 1%;
}
.home-page .section-7-decor .line-decor-3 {
	height: 2px;
	width: 74%;
	background: #CC272C;
	display: inline-block;
	vertical-align: middle;
}

.home-page .section-8 {
	font-size: 0;
	padding: 92px 90px 160px;
	text-align: center;
	position: relative;
	z-index: 2;
}
.home-page .section-8-wrapper {
	max-width: 1260px;
	margin: 0 auto;
}
.home-page .section-8 .title {
	margin-bottom: 75px;
	font-weight: 900;
	font-size: 32px;
	line-height: 39px;
}
.home-page .section-8 .item .img {
	height: 70px;
	object-fit: contain;
	object-position: center;
}
.home-page .section-8 .item {
	width: 25%;
	display: inline-block;
	vertical-align: top;
	padding: 0 16px;
}
.home-page .section-8 .item .button {
	margin-top: 60px;
}

.home-page .section-9 {
	padding: 110px  24px 116px;
	text-align: center;
}
.home-page .section-9-wrapper {
	max-width: 1027px;
	margin: 0 auto;
}
.home-page .section-9 .title {
	font-weight: bold;
	font-size: 32px;
	line-height: 39px;
}
.home-page .section-9 .desc {
	font-size: 18px;
	line-height: 27px;
	margin: 24px auto 0;
	max-width: 650px;
}
.home-page .section-9 .list {
	margin-top: 83px;
	font-size: 0;
	text-align: left;
	margin-bottom: 50px;
	width: 103%;
	margin-left: -1.5%;
}
.home-page .section-9 .item {
	display: inline-block;
	vertical-align: top;
	width: calc(85% / 5);
	margin: 0 1.5% 4%;
	background: rgba(255, 255, 255, 0.1);
	box-shadow: 0px 50px 150px rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(25px);
	border-radius: 100%;
	height: 0;
	padding-top: calc(88% / 5);
	position: relative;
}
.home-page .section-9 .item .img {
	border-radius: 100%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: calc(100% - 36px);
	height: calc(100% - 36px);
	object-position: center;
	object-fit: scale-down;
	background: #fff;
}

.home-page .section-9 .item .title {
	transition: .3s;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.1);	
	border-radius: 100%;
	z-index: 1;
	font-weight: 600;
	font-size: 18px;
	line-height: 144.52%;
	font-family: 'Inter', sans-serif;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 0 16px;
}
.home-page .section-9 .item:hover .title {
	background: rgba(179, 8, 56, 0.72);
}
.home-page .section-9 .list + .title {
	font-weight: 900;
	font-size: 21px;
	line-height: 25px;
}
.home-page .section-9 .list + .title + .button {
	margin-top: 40px;
	line-height: 48px;
	height: 48px;
	max-width: 240px;
	padding: 0;
}

.home-page .section-9-sponsors {
	margin: 116px auto 0;
	max-width: 1246px;
	padding-top: 60px;
	border-top: 1px solid rgba(255, 255, 255, 0.25);
	font-size: 0;
	display: flex;
	flex-wrap: wrap;
}

.home-page .section-9-sponsors div.title {
	width: 100%;
}

.home-page .section-9-sponsors a {
	width: 25%;
	padding: 15px;
}

.home-page .section-9-sponsors .title {
	margin-bottom: 120px;
	font-weight: bold;
	font-size: 32px;
	line-height: 39px;
}

.home-page .section-9-sponsors .img {
	width: 100% !important;
	height: 100% !important;
	max-width: 300px;
	height: 200px;
}

/* .home-page .section-9-sponsors .img:nth-child(odd) {
	padding-left: 5%;
}
.home-page .section-9-sponsors .img:nth-child(even) {
	padding-right: 5%;
} */


/* advisors */
.advisors-page .section-1 .left {
	padding-left: 55px;
	position: relative;
}
.advisors-page .decor {
	top:  calc(100% + 43px);
}
.advisors-page .section-2 {
	padding: 0 24px 68px;
}
.advisors-page .section-2-wrapper {
	max-width: 1260px;
	margin: 0 auto;
	font-size: 0;
	text-align: center;
	position: relative;
}
.advisors-page .section-2-wrapper:before {
	content: '';
	position: absolute;
	width: 469px;
	height: 469px;
	left: -275px;
	top: 81px;
	background: #7A637D;
	filter: blur(500px);
	border-radius: 100%;
	z-index: 1;
}
.advisors-page .section-2 .title {
	font-weight: bold;
	font-size: 32px;
	line-height: 39px;
}
.advisors-page .section-2 .desc {
	font-weight: normal;
	font-size: 18px;
	line-height: 27px;
	font-family: 'Poppins', sans-serif;
	max-width: 606px;
	margin: 24px auto 0;
}
.advisors-page .preview-img .img {
	opacity: 1;
}
.input-container {
	margin: 40px auto 0;
	max-width: 1027px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-sizing: border-box;
	backdrop-filter: blur(25px);
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 12px 12px 12px 21px;
	box-sizing: border-box;
}
.input-container .img {
	width: 24px;
	margin-right: 15px;
}
.input-container input {
	background: transparent !important;
	width: calc(100% - 39px - 160px);
	border: 0;
    font-family: 'Inter', sans-serif;
	font-weight: normal;
	font-size: 16px;
	line-height: 145%;
	padding-right: 16px;
	outline: 0;
	color: #fff !important;
	padding: 0;
}
.input-container .button {
	max-width: 160px;
	padding: 14px;
}
.advisors-page .list {
	margin-top: 64px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
}
.advisors-page .item + .item {
	margin-top: 24px;
}
.advisors-page .item .img {
	width: 70px;
	height: 70px;
	border-radius: 100%;
	object-fit: cover;
	object-position: center;
	vertical-align: middle;
}
.advisors-page .item {
	width: 100%;
	background: linear-gradient(114.16deg, #907793 -0.13%, #4E4150 100.58%);
	box-shadow: 0px 50px 150px rgba(0, 0, 0, 0.25);
	font-size: 0;
	padding: 48px;
}
.advisors-page .item .left {
	width: 50%;
	text-align: left;
	vertical-align: top;
	display: inline-block;
}
.advisors-page .item .text {
	margin-left: 24px;
	display: inline-block;
	vertical-align: middle;
}
.advisors-page .section-2 .text .title {
	font-family: 'Poppins', sans-serif;
	font-weight: bold;
	font-size: 24px;
	line-height: 166%;
}
.advisors-page .section-2 .text .desc {
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 33.2px;
	margin: 0;
}
.advisors-page .item .right {
	width: 50%;
	display: inline-block;
	text-align: right;
	vertical-align: top;
}
.advisors-page .item .right .button {
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	font-size: 14px;
	line-height: 21px;
	border: 1px solid #FFFFFF;
	max-width: 160px;
	background: transparent;
}
.advisors-page .item .bottom {
	margin-top: 42px;
}
.advisors-page .item thead td {
    font-family: 'Inter', sans-serif;
	font-weight: normal;
	font-size: 16px;
	line-height: 145%;
	color: #fff;
	text-align: left;
}
.advisors-page .item tbody td {
    font-family: 'Inter', sans-serif;
	font-weight: bold;
	font-size: 16px;
	line-height: 145%;
	color: #fff;
	text-align: left;
	padding-top: 12px;
}
.advisors-page .item table {
	width: 100%;
}
.advisors-page .bottom-list {
	display: none;
}


/* member */


.member-page .section-1 {
	padding: 200px 90px 160px;
}
.member-page .section-1 .left {
	width: 41%;
	margin: 0;
	vertical-align: top;
}
.member-page .section-1 .img {
	height: 361px;
	width: 361px;
	object-position: center;
	object-fit: cover;
	position: relative;
	border-radius: 100%;
	filter: drop-shadow(0px 15px 55px rgba(0, 0, 0, 0.28));
	background: #fff;
}
.member-page .section-1 .right {
	width: 59%;
	margin: 0;
	padding-left: 88px;
	vertical-align: top;
}
.member-page .section-1 .title {
	font-weight: bold;
	font-size: 40px;
	line-height: 48px;
}
.member-page .section-1 .desc {
	margin-top: 32px;
	font-family: 'Poppins', sans-serif;
	font-weight: normal;
	font-size: 18px;
	line-height: 27px;
}
.member-page .section-1 .item {
	padding-bottom: 32px;
	border-bottom: 2px solid rgba(255,255,255,.12);
}
.member-page .section-1 .item .wrapper {
	width: 55%;
	display: inline-block;
	vertical-align: top;
}
.member-page .section-1 .item .wrapper + .wrapper {
	width: 45%;
}
.member-page .section-1 .item .desc {
    font-family: 'Inter', sans-serif;
	font-weight: normal;
	font-size: 16px;
	line-height: 145%;
	display: inline-block;
	width: 100%;
	padding-right: 8px;
	word-wrap: break-word;
}
.member-page .section-1 .item .desc + .desc {
	margin-top: 12px;
}
.member-page .section-1 .item b.desc {
	font-weight: bold;
}
.member-page .section-1 .item:last-child {
	border: 0;
}
.member-page .section-1 .item:last-child .wrapper {
	width: 100%;
}
.member-page .section-1 .item:last-child b.desc {
	width: auto;
	margin-right: 24px;
}
.member-page .section-1 .decor {
	left: -177px;
	top: calc(100% - 45px);
	z-index: -1;
}


/* about us */
.about-page .section-1-wrapper {
	max-width: 1124px;
	background: linear-gradient(114.16deg, #907793 -0.13%, #4E4150 100.58%);
	box-shadow: 0px 50px 150px rgba(0, 0, 0, 0.25);
	padding: 50px 58px 82px;
}
.about-page .section-1 .left {
	margin: 0;
	width: 50%;
	padding-right: 35px;
	vertical-align: top;
	position: relative;
}
.about-page .section-1 .right {
	margin: 0;
	width: 50%;
	padding-left: 35px;
	vertical-align: top;
}
.about-page .section-1 .desc {
	max-width: 460px;
	font-size: 24px;
	line-height: 150%;
	margin-top: 24px;
}
.about-page .section-1 .img-container {
	position: absolute;
    left: 0;
    top: 0;
    width: calc(100% - 35px);
}
.about-page .section-2 {
	padding: 0 24px;
}
.about-page .section-2-wrapper {
	max-width: 1124px;
	margin: 0 auto;
}
.about-page .section-2-wrapper .desc {
	margin-top: 36px;
}
.about-page .video-container {
	margin-top: 59px;
	position: relative;
	  padding-bottom: 56.25%; /* 16:9 */
	  height: 0;
}
.about-page .video {
	width: 100%;
	height: 637px;
	position: absolute;
	  top: 0;
	  left: 0;
	  width: 100%;
	  height: 100%;
}

.about-page .section-3 {
	padding: 0 24px;
}
.about-page .section-3-wrapper {
	max-width: 1240px;
	margin: 0 auto;
	padding-top: 172px;
	text-align: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.about-page .section-3-wrapper .title {
	font-size: 32px;
    line-height: 39px;
}
.about-page .section-3-wrapper .list {
	margin-top: 116px;
	margin-bottom: 87px;
	margin-right: auto;
	margin-left: auto;
	font-size: 0;
}
.about-page .more .section-3-wrapper .list {
	padding-left: 14%;
}
.about-page .section-3-wrapper .item {
	display: inline-block;
	vertical-align: top;
	width: 20%;
	margin-bottom: 24px;
}
.about-page .more .section-3-wrapper .item {
	text-align: left;
}
.about-page .more .section-3-wrapper .item {
	width: calc(100% / 3);
}
.about-page .section-3-wrapper .list .img {
	width: 60px;
	vertical-align: middle;
}
.about-page .section-3-wrapper .list .desc {
	display: inline-block;
	margin-top: 0;
	margin-left: 20px;
	vertical-align: middle;
}
.about-page  .section-4 {
	padding: 110px 24px 120px;
}
.about-page .section-4-wrapper {
	max-width: 1124px;
	margin: 0 auto;
	text-align: center;
}
.about-page .section-4-wrapper .desc {
	margin: 27px auto 0;
	max-width: 950px;
}
.about-page .section-4-wrapper .list {
	margin-top: 57px;
	font-size: 0;
}
.about-page .section-4-wrapper .item {
	display: inline-block;
	vertical-align: top;
	width: calc((100% - 268px) / 3);
	margin: 0 67px;
}

.about-page .section-4-wrapper .img-container {
	position: relative;
}
.about-page .section-4-wrapper .item:first-child {
	margin-left: 0;
}
.about-page .section-4-wrapper .item:last-child {
	margin-right: 0;
}
.about-page .section-4-wrapper .item .title {
	font-size: 21px;
	line-height: 25px;
	margin-top: 24px;
}
.about-page .section-4-wrapper .item .desc {
	margin-top: 3px;
	font-weight: 500;
}
.about-page .section-4-wrapper .button {
	margin-top: 98px;
	max-width: 240px;
	line-height: 48px;
	height: 48px;
	padding: 0;
}


.about-page .hover-info {
    font-family: 'Inter', sans-serif;
    transition: .3s;
    font-weight: 500;
    font-size: 16px;
    line-height: 27px;
    color: #FFFFFF;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background: rgba(68, 68, 98, 0.85);
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    max-height: 100%;
    cursor: default;
	overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.about-page .hover-info::-webkit-scrollbar-track {
}
.about-page .hover-info::-webkit-scrollbar {
	width: 26px;
	border-radius: 13px;
	background-clip: padding-box;
	border: 10px solid transparent;
}
.about-page .hover-info::-webkit-scrollbar-thumb {
	width: 26px;
	border-radius: 13px;
	background-clip: padding-box;
	border: 10px solid transparent;
	-webkit-box-shadow: inset 0 0 0 10px;
	box-shadow: inset 0 0 0 10px;
}
.about-page .hover-info:hover {
	color: #fff;
}

.about-page .item:hover .hover-info {
    opacity: 1;
    visibility: visible;
}



/* scholarships */
.scholarships-page .section-1 {
	padding: 207px 24px 120px;
}
.scholarships-page .section-1-wrapper {
	max-width: 1240px;
	margin: 0 auto;
	text-align: center;
	position: relative;
}
.scholarships-page .section-1 .left {
	width: 38%;
	margin-right: 6%;
}
.scholarships-page .section-1 .left .img {
	object-position: center;
	object-fit: cover;
}
.scholarships-page .section-1 .left .img {
	height: 370px;
}
.scholarships-page .section-1 .right {
	width: 56%;
	height: 370px;
	background: linear-gradient(114.16deg, #907793 -0.13%, #4E4150 100.58%);
	box-shadow: 0px 50px 150px rgba(0, 0, 0, 0.25);
	padding: 39px 32px 46px;
	text-align: left;
}
.scholarships-page .section-1 .right .title {
	font-weight: bold;
	font-size: 24px;
	line-height: 166%;
	min-height: 80px;
}
.scholarships-page .section-1 .right .desc {
	font-weight: normal;
    font-size: 16px;
    line-height: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    height: 105px;
    margin-bottom: 30px;
}
.accordion-container .content-wrrapper + .content-wrrapper {
	margin-top: 50px;
}
.scholarships-page .section-1 .button {
	border: 0;
	cursor: pointer;
	height: 48px;
	line-height: 48px;
	padding: 0;
	max-width: 240px;
}
.accordion-container .content {
	display: none;
}
.scholarships-page .title {
	font-weight: bold;
	font-size: 48px;
	line-height: 72px;
}
.scholarships-page .desc {
	max-width: 680px;
	margin: 16px auto 0;
}
.accordion-container {
	margin-top: 85px;
	border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.accordion-container h3.title {
	text-align: left;
	font-weight: bold;
	font-size: 24px;
	line-height: 110px;
	cursor: pointer;
	position: relative;
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
	transition: .3s;
}
.accordion-container h3.title.open {
	border-bottom: 0;
}
.accordion-container h3.title:before {
	content: '';
	width: 17px;
	height: 10px;
	position: absolute;
	top: 50px;
	right: 30px;
	background-image: url('../img/caret.svg');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	transition: .2s;
	transform: scale(-1);
}
.accordion-container h3.title.open:before {
	transform: scale(1);
}

/* resources */

.resources-page .section-1 {
	padding: 207px 24px 193px ;
}
.resources-page .section-1 .button {
	margin-top: 40px;
	max-width: 240px;
	padding: 0;
	max-width: 240px;
	line-height: 48px;
	height: 48px;
}
.resources-page .section-1 .desc {
	margin-top: 10px;
	line-height: 24px;
}
.resources-page .section-1 .decor-1 {
	width: 458px;
    position: absolute;
    left: -170px;
	top: auto;
    bottom: -410px;
}
.resources-page .section-1 .preview-img .img {
	opacity: 1;
}
.section-2 {
	padding: 0 24px 100px;
}
.section-2-wrapper {
	max-width: 1240px;
	margin: 0 auto;
	font-size: 0;
}
.resources-page .card {
	display: inline-flex;
	vertical-align: top;
	background: #32273E;
	min-height: 118px;
	width: calc((100% - 60px) / 3);
	margin: 0 15px 20px;
	align-items: flex-start;
	justify-content: center;
	position: relative;
	cursor: pointer;
	transition: .3s;
}
.resources-page .card:hover {
	background: #3f324c;
}
.resources-page .card a {
	display: flex;
	padding-right: 48px;
	padding-left: 35px;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}
.resources-page .card.drop:before {
	content: '';
	width: 12px;
	height: 7px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 29px;
	background-image: url('../img/caret.svg');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	transition: .2s;
	transform: scale(-1);
}
.resources-page .card.drop.open:before {
	transform: scale(1);
}
.resources-page .card:first-child {
	margin-left: 0;
}
.resources-page .card:nth-child(3n + 4) {
	margin-left: 0;
}
.resources-page .card:nth-child(3n) {
	margin-right: 0;
}
.resources-page .card .img {
	width: 40px;
}
.resources-page .card .down {
	display: none;
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	width: 100%;
	height: auto;
	background: #433355;
	border: 2px solid rgba(255, 255, 255, 0.15);
	box-sizing: border-box;
	box-shadow: 0px 4px 4px rgba(255, 255, 255, 0.15);
	padding: 0 20px 0 12px;
	z-index: 2;
}
.resources-page .card .down .link {
	width: 100%;
	display: block;
	font-weight: 600;
	font-size: 18px;
	line-height: 144.52%;
	font-family: 'Poppins', sans-serif;
	padding: 27px 76px 27px 18px;
	background-image: url('../img/chain.svg');
	background-size: 23px;
	background-position: top 50% right 26px;
	background-repeat: no-repeat;
	transition: .2s;
	position: relative;
	color: #fff !important;
	outline: 0 !important;
	height: auto;
}
.resources-page .card .down .link + .link {
	border-top: 2px solid rgba(255, 255, 255, 0.25);
}
.resources-page .card .down .link:hover {
	text-decoration: underline;
}
.resources-page .card .desc {
	margin-top: 0;
	margin-left: 27px;
	font-weight: 600;
	font-size: 18px;
	line-height: 22px;
	display: inline-flex;
	align-items: center;
}
.resources-page .accordion-container .content {
	padding-bottom: 30px;
	margin-top: 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.resources-page .accordion-container {
	margin-top: 0;
}


/* network */
.network-page .preview-img:before {
	display: none;
}
.network-page .preview-img {
	width: 100%;
}
.network-page .preview-img .img {
	opacity: 1;
}
.network-page .section-1 {
	padding: 207px 24px 165px;
}
.network-page .section-2 {
	padding: 0 24px;
	text-align: center;
}
.network-page .section-2-wrapper {
	max-width: 1232px;
	margin: 0 auto;
	position: relative;
}
.network-page .section-2-wrapper .decor-1 {
	width: 458px;
    position: absolute;
    left: -170px;
    top: -160px;
}
.network-page .section-2 .title {
	font-weight: bold;
	font-size: 48px;
	line-height: 72px;
}
.network-page .section-2 .desc {
	max-width: 680px;
	margin: 30px auto 0;
}
.network-page .section-2 .list {
	margin-top: 53px;
	font-size: 0;
	padding-bottom: 90px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
	text-align: left;
}
.network-page .section-2 .item {
	display: inline-block;
	vertical-align: top;
	width: calc(90% / 3);
	margin: 0 2.5% 5%;
	height: 0;
	position: relative;
	padding-top: calc((100% - 140px) / 3);
	box-shadow: 0px 50px 150px rgba(0, 0, 0, 0.25);
}
.network-page .section-2 .item:after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: rgba(50, 39, 62, 0.65);
}
.network-page .section-2 .item .bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 0;
	left: 0;
	backdrop-filter: blur(25px);

}
.network-page .section-2 .item .logo {
	width: 80%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
    object-fit: scale-down;
}
.network-page .section-2 .item:first-child {
	margin-left: 0;
}
.network-page .section-2 .item:nth-child(3n + 4) {
	margin-left: 0;
}
.network-page .section-2 .item:nth-child(3n) {
	margin-right: 0;
}

.network-page .section-3 {
	padding: 110px  24px 116px;
	text-align: center;
}
.network-page .section-3-wrapper {
	max-width: 1027px;
	margin: 0 auto;
}
.network-page .section-3 .title {
	font-weight: bold;
	font-size: 32px;
	line-height: 39px;
}
.network-page .section-3 .desc {
	font-size: 18px;
	line-height: 27px;
	margin: 24px auto 0;
	max-width: 650px;
}
.network-page .section-3 .list {
	margin-top: 83px;
	font-size: 0;
	text-align: left;
	margin-bottom: 50px;
	width: 103%;
	margin-left: -1.5%;
}
.network-page .section-3 .item {
	display: inline-block;
	vertical-align: top;
	width: calc(85% / 5);
	margin: 0 1.5% 4%;
	background: rgba(255, 255, 255, 0.1);
	box-shadow: 0px 50px 150px rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(25px);
	border-radius: 100%;
	height: 0;
	padding-top: calc(88% / 5);
	position: relative;
}
.network-page .section-3 .item .img {
	border-radius: 100%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: calc(100% - 36px);
	height: calc(100% - 36px);
	object-position: center;
	object-fit: scale-down;
	background: #fff;
}

.network-page .section-3 .item .title {
	transition: .3s;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.1);	
	border-radius: 100%;
	z-index: 1;
	font-weight: 600;
	font-size: 18px;
	line-height: 144.52%;
	font-family: 'Inter', sans-serif;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 0 16px;
}
.network-page .section-3 .item:hover .title {
	background: rgba(179, 8, 56, 0.72);
}
.network-page .section-3 .list + .title {
	font-weight: 900;
	font-size: 21px;
	line-height: 25px;
}
.network-page .section-3 .list + .title + .button {
	margin-top: 40px;
	line-height: 48px;
	height: 48px;
	max-width: 240px;
	padding: 0;
}

.network-page .section-3-sponsors {
	margin: 116px auto 0;
	max-width: 1246px;
	padding-top: 60px;
	border-top: 1px solid rgba(255, 255, 255, 0.25);
	font-size: 0;
}
.network-page .section-3-sponsors .title {
	margin-bottom: 120px;
	font-weight: bold;
	font-size: 32px;
	line-height: 39px;
}
.network-page .section-3-sponsors .img {
	width: 50%;
	vertical-align: middle;
	object-fit: scale-down;
	object-position: left;
}
.network-page .section-3-sponsors .img:nth-child(odd) {
	padding-left: 5%;
}
.network-page .section-3-sponsors .img:nth-child(even) {
	padding-right: 5%;
}
.network-page .section-3 .title + .button {
	margin-top: 24px;
}

.contact-page .socials-list {
	width: 100%;
	margin-top: 57px;
	text-align: left;
}
.contact-page .socials__item {
	width: 48px;
	height: 48px;
}
.contact-page .socials__item + .socials__item {
	margin-left: 16px;
}

/* home page events */
.page-template-template-home .tribe-common--breakpoint-medium.tribe-events .tribe-events-header--has-event-search .tribe-events-c-events-bar,
.tribe-common--breakpoint-medium.tribe-events .tribe-events-c-breadcrumbs,
.tribe-common--breakpoint-medium.tribe-events .tribe-events-header--has-event-search .tribe-events-header__top-bar {
	display: none;
}
.page-template-template-home .tribe-common--breakpoint-medium.tribe-events .tribe-events-c-nav {
	display: none;
}
.page-template-template-home .tribe-events .tribe-events-c-subscribe-dropdown__container,
.page-template-template-home .tribe-events-pro .tribe-events-pro-photo__event-datetime,
.page-template-template-home .tribe-events .tribe-events-c-nav {
	display: none;
}
.tribe-events .tribe-events-header__top-bar,
.tribe-filter-bar .tribe-filter-bar__action-done {
	display: none !important;
}
.tribe-filter-bar .tribe-filter-bar-c-clear-button {
	width: auto !important;
    padding: 0 !important;
    border: 0 !important;
    margin: 0 !important;
}
.tribe-filter-bar .tribe-filter-bar-c-filter,
.tribe-filter-bar .tribe-filter-bar__filters {
	border: 0 !important;
}
.tribe-filter-bar-c-filter__toggle-wrapper {
	display: none !important;
}
.tribe-events .tribe-events-header {
    display: block;
    margin: 0;
    padding: 0;
}
.tribe-events-header--has-event-search .tribe-filter-bar.tribe-filter-bar--horizontal {
	position: static;
	padding: 0;
}
.page-template-template-home .tribe-common--breakpoint-medium.tribe-events .tribe-events-l-container {
	min-height: 0;
	padding: 40px 0 0;
}
.page-template-template-home .tribe-common--breakpoint-medium.tribe-common .tribe-common-g-row--gutters {
	margin-left: -15px;
	margin-right: -15px;
}
.page-template-template-home .tribe-common--breakpoint-medium.tribe-common .tribe-common-g-row--gutters>.tribe-common-g-col {
	padding-left: 15px;
	padding-right: 15px;
	background: transparent;
	border: 0;
	margin: 0;
}
.page-template-template-home .tribe-common--breakpoint-medium.tribe-events-pro .tribe-events-pro-photo__event {
	width: 25%;
}
.page-template-template-home .tribe-events-pro .tribe-events-pro-photo__event-details-wrapper {
	flex-direction: column-reverse;
	padding: 12px 14px 14px;
	background: #32273E;
}
.page-template-template-home .tribe-common--breakpoint-medium.tribe-common .tribe-common-b2 {
	display: none;
}
.page-template-template-home .tribe-events-pro .tribe-events-pro-photo__event-title {
	height: 77px;
	display: block;
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}
.page-template-template-home .tribe-events-pro .tribe-events-pro-photo__event-title-link {
	font-weight: 600;
	font-size: 18px;
	line-height: 144.52%;
	font-family: 'Inter', sans-serif;
	color: #fff !important;
	white-space: normal;
	
}
.page-template-template-home .tribe-events-pro .tribe-events-pro-photo__event-details {
	margin-top: 0;
	margin-bottom: 16px;
}
.page-template-template-home .tribe-events-pro .tribe-events-pro-photo__event-date-tag-datetime {
	flex-direction: row-reverse;
	justify-content: flex-end;
}
.page-template-template-home .tribe-common--breakpoint-medium.tribe-common .tribe-common-h4--min-medium,
.page-template-template-home .tribe-common .tribe-common-h5{
	font-weight: normal;
	font-size: 14px;
	line-height: 17px;
	font-family: 'Inter', sans-serif;
	color: #fff;
	opacity: 0.5;
}
.page-template-template-home .tribe-events-pro .tribe-events-pro-photo__event-date-tag-month {
	font-weight: normal;
	font-size: 14px;
	line-height: 17px;
	font-family: 'Inter', sans-serif;
	color: #fff;
	opacity: 0.5;
	margin-left: 4px;
	text-transform: capitalize;
}
.tribe-events-pro .tribe-events-pro-photo__event-date-tag {
	position: relative;
	padding-left: 28px;
	width: auto !important;
	margin: 0;
}
.tribe-events-pro .tribe-events-pro-photo__event-date-tag:before {
	content: '';
	width: 16px;
	height: 16px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background-image: url('../img/calendar-check-list.svg');
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}
.page-template-template-home .tribe-events-pro .tribe-events-pro-photo__event-featured-image-wrapper {
	margin: 0;
}
.page-template-template-home .tribe-events .tribe-events-l-container {
	min-height: 0;
	padding: 24px 0 0;
}
.page-template-template-home .tribe-common--breakpoint-xsmall.tribe-events-pro .tribe-events-pro-photo__event {
	width: 25%;
	background: transparent;
}
.page-template-template-home .tribe-common .tribe-common-g-row--gutters>.tribe-common-g-col {
	padding-left: 8px;
	padding-right: 8px;
	border: 0;
}
.page-template-template-home .tribe-common .tribe-common-g-row--gutters {
	margin-left: -8px;
	margin-right: -8px;
	white-space: nowrap;
	flex-wrap: nowrap;
	overflow: auto;
}
.tribe-common--breakpoint-medium .tribe-filter-bar--horizontal.tribe-filter-bar {
	margin: 0 !important;
}


/* footer contact us form */
.with_frm_style legend + h3, .with_frm_style h3.frm_form_title {
	display: none;
}
.with_frm_style .frm_primary_label {
	font-weight: 500;
	font-size: 12px;
	line-height: 15px;
	color: #FFFFFF;
	font-family: 'Inter', sans-serif;
	text-transform: uppercase;
	padding: 0;
	margin-bottom: 6px;
	width: 100%;
	display: block;
	text-align: left;
}
.with_frm_style .frm_required {
	display: none;
}
.with_frm_style input,
.with_frm_style textarea {
	background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.125) !important;
	border-radius: 0;
	width: 100%;
	resize: none;
	outline: 0;
	font-weight: normal;
	font-size: 16px;
	line-height: 145%;
	color: #fff !important;
	font-family: 'Inter', sans-serif;
	padding: 8px;
}
.with_frm_style textarea {
	height: 80px;
}
.frm_half {
	width: 50%;
	display: inline-block;
	vertical-align: top;
}
.frm_full {
	width: 100%;
}
.frm_form_fields .form-field {
	margin-bottom: 16px;
}
.frm_half.frm_first {
	padding-right: 12px;
}
.frm_half.frm_first + .frm_half {
	padding-left: 12px;
}
.frm_submit {
	text-align: right;
}
.frm_button_submit {
	position: relative;
	z-index: 1;
	cursor: pointer;
	background: #B30838 !important;
	font-weight: 500;
	font-size: 14px;
	line-height: 48px;
	height: 48px;
	max-width: 328px;
	width: 100%;
	font-family: 'Inter', sans-serif;
	padding: 0;
	transition: .3s;
}
.frm_button_submit:hover {
	background: #8e092e !important;
}

.page-template-template-contact-us .footer .right {
	display: none;
}
.page-template-template-contact-us .footer .left {
	width: 100%;
}

/* events page */
.tribe-events-page-template .site {
    background: #1D1526;
}
.tribe-events-page-template .tribe-events-view {
	position: relative;
	padding: 167px 24px 120px;
}
.tribe-events-page-template .tribe-events-view:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-image: url('../img/bg.jpg');
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: top left;
	opacity: 0.5;
	filter: blur(400px);
}
.tribe-events-page-template .tribe-common--breakpoint-medium.tribe-events .tribe-events-l-container {
	padding: 0;
	max-width: 1240px;
	margin: 0 auto;
	position: relative;
}
.tribe-events-page-template .tribe-common--breakpoint-medium.tribe-events .tribe-events-header--has-event-search .tribe-events-c-events-bar {
	background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(25px);
	margin-bottom: 40px;
}
.tribe-events-page-template .tribe-events .tribe-events-c-events-bar__search-container,
.tribe-events-page-template .tribe-events .tribe-events-c-view-selector--tabs .tribe-events-c-view-selector__content {
	background: transparent;
}
.tribe-events-page-template .tribe-events .tribe-events-c-events-bar .tribe-common-form-control-text__input {
	font-weight: normal;
	font-size: 16px;
	line-height: 145%;
	color: #fff;
	font-family: 'Inter', sans-serif;
	padding: 24px 16px 24px 64px;
}
.tribe-events-page-template .tribe-events .tribe-events-c-events-bar .tribe-common-form-control-text__input::placeholder {
	color: rgba(255,255,255,.5);
}
.tribe-events-page-template .tribe-common--breakpoint-medium.tribe-events .tribe-events-c-search__input-control-icon-svg {
	display: none;
}
.tribe-events-page-template .tribe-common--breakpoint-medium.tribe-events .tribe-events-c-search__input-control:last-child {
	background-image: url('../img/search-loupe.svg');
	background-size: 24px;
	background-position: top 50% left 24px;
	background-repeat: no-repeat;
}
.tribe-events-page-template .tribe-common--breakpoint-medium.tribe-events .tribe-common-c-btn.tribe-events-c-search__button {
	background: #B30838;
	font-family: 'Poppins', sans-serif;
	display: inline-block;
	font-weight: 500;
	font-size: 14px;
	line-height: 21px;
	color: #fff;
	padding: 14px 38px;
	border-radius: 0;
	width: auto;
	text-align: center;
	transition: .2s;
}
.tribe-events-page-template .tribe-common--breakpoint-medium.tribe-events .tribe-common-c-btn.tribe-events-c-search__button:hover {
	background: #8e092e;
}
.tribe-events-page-template .tribe-events .tribe-events-c-view-selector__list-item-text {
	font-weight: 500;
	font-size: 16px;
	line-height: 145%;
	color: #fff !important;
	font-family: 'Inter', sans-serif;
	transition: .3s;
	opacity: 1;
}
.tribe-events-page-template .tribe-events .tribe-events-c-view-selector--tabs .tribe-events-c-view-selector__list-item--active .tribe-events-c-view-selector__list-item-text {
	font-weight: bold;
}
.tribe-events-page-template .tribe-common--breakpoint-medium.tribe-events .tribe-events-c-view-selector--tabs .tribe-events-c-view-selector__list-item--active .tribe-events-c-view-selector__list-item-link:after {
	background: #fff;
}
.tribe-events-page-template .tribe-common--breakpoint-medium.tribe-events .tribe-events-c-view-selector__list-item {
	background: transparent !important;
}

.tribe-events-page-template .tribe-events .tribe-events-c-view-selector__list-item:hover .tribe-events-c-view-selector__list-item-text {
	opacity: .5;
}
.tribe-events-page-template .tribe-events .tribe-events-c-top-bar__nav-list-item {
	padding-right: 0;
	width: 24px;
	height: 24px;
}
.tribe-events-page-template .tribe-events .tribe-events-c-top-bar__nav-list-item + .tribe-events-c-top-bar__nav-list-item {
	margin-left: 8px;
}
.tribe-events-page-template .tribe-events .tribe-events-c-top-bar__nav-list {
	margin-right: 24px;
}
.tribe-events-page-template .tribe-common .tribe-common-c-btn-icon--caret-left .tribe-common-c-btn-icon__icon-svg, 
.tribe-events-page-template .tribe-common .tribe-common-c-btn-icon--caret-right .tribe-common-c-btn-icon__icon-svg {
	display: none;
}
.tribe-common .tribe-common-c-btn-icon {
	width: 100%;
	height: 100%;
	display: block;
}
.tribe-events-page-template .tribe-common .tribe-common-c-btn-icon--caret-left {
	background-image: url('../img/chevron-left.svg');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	transition: .2s;
}
.tribe-events-page-template .tribe-common .tribe-common-c-btn-icon--caret-right {
	background-image: url('../img/chevron-left.svg');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	transform: scaleX(-1);
	cursor: pointer;
	transition: .2s;
}
.tribe-events-page-template .tribe-common .tribe-common-c-btn-icon--caret-left:hover , 
.tribe-events-page-template .tribe-common .tribe-common-c-btn-icon--caret-right:hover {
	opacity: .5;
}
.tribe-events-page-template .tribe-common--breakpoint-medium.tribe-events .tribe-events-c-top-bar__today-button {
	background: #FFFFFF;
	border-radius: 8px;
	border: 0;
	font-weight: bold;
	font-size: 12px;
	line-height: 15px;
	color: #B30838;
	font-family: 'Inter', sans-serif;
	padding: 8px 22px;
	margin-right: 24px;
}
.tribe-events-page-template .tribe-common--breakpoint-medium.tribe-events .tribe-events-c-top-bar__datepicker-button-icon-svg {
	display: none;
}
.tribe-events-page-template .tribe-common--breakpoint-medium.tribe-common .tribe-common-h3 {
	font-weight: normal;
	font-size: 24px;
	line-height: 29px;
	color: #fff;
	font-family: 'Inter', sans-serif;
}
.tribe-events-page-template .tribe-events-c-messages__message-list-item {
	font-weight: bold;
	font-size: 24px;
	line-height: 29px;
	color: #fff;
	font-family: 'Inter', sans-serif;
}
.tribe-events-page-template .tribe-common--breakpoint-medium.tribe-common .tribe-common-h3--min-medium {
	position: relative;
	font-weight: bold;
	color: #fff;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	line-height: 145%;
	vertical-align: middle;
	white-space: nowrap;
}
.tribe-events-page-template .tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-latest-past__event {
	background: transparent;
}
.tribe-events-page-template .tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-latest-past__event-row {
	margin: 16px 0;
	background: linear-gradient(114.16deg, #907793 -0.13%, #4E4150 100.58%);
	box-shadow: 0px 50px 150px rgba(0, 0, 0, 0.25);
}
.tribe-events-page-template .tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-latest-past__event-date-tag {
	width: 140px;
	padding: 24px;
}
.tribe-events-page-template .tribe-events .tribe-events-calendar-latest-past__event-date-tag-month {
	font-weight: normal;
	font-size: 16px;
	line-height: 145%;
	color: #fff;
	font-family: 'Inter', sans-serif;
}
.tribe-events-page-template .tribe-events .tribe-events-calendar-latest-past__event-date-tag-daynum {
	font-weight: bold;
	font-size: 24px;
	line-height: 29px;
	color: #fff;
	font-family: 'Inter', sans-serif;
}
.tribe-events-page-template .tribe-events .tribe-events-calendar-latest-past__event-date-tag-year {
	display: none;
}
.tribe-events-page-template .tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-latest-past__event-row--featured .tribe-events-calendar-latest-past__event-date-tag-datetime:after {
	display: none;
}
.tribe-events-page-template .tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-latest-past__event-wrapper {
	padding: 0;
}
.tribe-events-page-template .tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-latest-past__event {
	margin: 0;
	padding: 24px 24px 24px 0;
}
.tribe-events-page-template .tribe-common--breakpoint-medium.tribe-common .tribe-common-g-row--gutters>.tribe-common-g-col {
	width: 100%;
	padding: 0;
}
.tribe-events-page-template .tribe-events .tribe-events-calendar-latest-past__event-datetime-featured-icon,
.tribe-events-page-template .tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-latest-past__event-datetime-featured-text {
	display: none;
}
.tribe-events-page-template .tribe-events .tribe-events-calendar-latest-past__event-datetime {
	font-weight: normal;
	font-size: 16px;
	line-height: 145%;
	color: #fff;
	font-family: 'Inter', sans-serif;
}
.tribe-events-page-template .tribe-events .tribe-events-calendar-latest-past__event-datetime-wrapper {
	margin-bottom: 8px;
}
.tribe-events-page-template .tribe-events .tribe-events-calendar-latest-past__event-title-link {
	font-weight: bold;
	font-size: 24px;
	line-height: 29px;
	color: #fff !important;
	font-family: 'Inter', sans-serif;
	border: 0 !important;
}
.tribe-events-page-template .tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-latest-past__event-description {
	margin-top: 16px;
}
.tribe-events-page-template .tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-latest-past__event-description p {
	font-weight: normal;
	font-size: 16px;
	line-height: 145%;
	color: #fff;
	font-family: 'Inter', sans-serif;
	margin: 0;
}
.tribe-events-page-template .tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-month__header-column-title-desktop {
	position: relative;
	font-weight: normal;
	font-size: 14px;
	line-height: 20px;
	color: #fff;
	font-family: 'Inter', sans-serif;
	text-transform: capitalize;
}
.tribe-events-page-template .tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-month__body {
	background: linear-gradient(114.16deg, #907793 -0.13%, #4E4150 100.58%);
	box-shadow: 0px 50px 150px rgba(0, 0, 0, 0.25);
	border: 0;
	overflow: hidden;
	position: relative;
}
.tribe-events-page-template .tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-month__week {
	border: 0;
}
.tribe-events-page-template .tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-month__day {
	height: 168px;
	overflow: hidden;
}
.tribe-events-page-template .tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-month__day:last-child {
	border-right: 0px;
}
.tribe-events-page-template .tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-month__week:last-child .tribe-events-calendar-month__day {
	border-bottom: 0;
}
.tribe-events-page-template .tribe-events .tribe-events-calendar-month__header-column {
	padding-bottom: 5px;
}
.tribe-events .tribe-events-calendar-month__day-date-daynum {
	font-weight: bold;
	font-size: 24px;
	line-height: 29px;
	color: #fff;
	font-family: 'Inter', sans-serif;
}
.tribe-events-page-template .tribe-events .tribe-events-calendar-month__day--past .tribe-events-calendar-month__day-date {
	opacity: 1;
}
.tribe-events-page-template .tribe-events-calendar-month__day--past .tribe-events-calendar-month__day-date-daynum {
	opacity: .3;
}
.tribe-events-page-template .tribe-events .tribe-events-calendar-month__day--past .tribe-events-calendar-month__day-date-link {
	color: #fff;
}
.tribe-events-page-template .tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-month__day:hover:after {
	background: transparent;
}
.tribe-events-page-template .tribe-events .tribe-events-calendar-month__calendar-event-datetime-featured-icon {
	display: none;
}
.tribe-events-page-template .tribe-events .tribe-events-calendar-month__calendar-event--featured:before {
	display: none;
}
.tribe-events-page-template .tribe-events .tribe-events-calendar-month__day--past .tribe-events-calendar-month__calendar-event-datetime {
	opacity: 1;
	font-weight: 500;
	font-size: 14px;
	line-height: 144.02%;
	color: #fff;
	font-family: 'Inter', sans-serif;
	border: 0 !important; 
}
.tribe-events-page-template .tribe-events-calendar-month__calendar-event-title-link,
.tribe-events-page-template .tribe-events .tribe-events-calendar-month__day--past .tribe-events-calendar-month__more-events-link {
	font-weight: bold;
	font-size: 14px;
	line-height: 17px;
	color: #fff !important;
	font-family: 'Inter', sans-serif;
	border: 0 !important; 
}
.tribe-events-page-template .tribe-events .tribe-events-calendar-month__day-date {
	padding-bottom: 2px;
}
.tribe-events-page-template .tribe-events .tribe-events-calendar-month__calendar-event:last-child {
	padding-bottom: 8px;
}
.tribe-events-page-template .tribe-events .tribe-events-calendar-month__more-events {
	padding: 6px 0 10px;
}
.tribe-events-page-template .tribe-events .tribe-events-calendar-month__events {
	overflow: auto;
}
.tribe-events-page-template .tribe-events .tribe-events-c-subscribe-dropdown__container {
	display: none;
}
.tribe-events-page-template .tribe-common--breakpoint-medium.tribe-events .tribe-events-header__messages:not(.tribe-events-header__messages--mobile) {
	display: none;
}
.tribe-events-page-template .tribe-common--breakpoint-medium.tribe-common .tribe-common-h6--min-medium {
	font-weight: bold;
	font-size: 16px;
	line-height: 145%;
	color: #fff;
	font-family: 'Inter', sans-serif;
}
.tribe-events-page-template .tribe-events .tribe-events-calendar-list__month-separator:after {
	background: rgba(255,255,255,.12);
}
.tribe-events-page-template .tribe-events .tribe-events-calendar-list__month-separator {
	position: relative;
}
.tribe-events-page-template .tribe-common--breakpoint-medium.tribe-common .tribe-common-h3--min-medium,
.tribe-events-page-template .tribe-events-calendar-latest-past__heading {
	width: auto;
	position: relative;
    display: flex;
    align-items: center;
}
.tribe-events-page-template .tribe-common--breakpoint-medium.tribe-common .tribe-common-h3--min-medium:after,
.tribe-events-page-template .tribe-events-calendar-latest-past__heading:after {
	content: "";
    display: inline-block;
    flex: auto;
    height: 1px;
    margin-left: 20px;
	background: rgba(255,255,255,.12);
}
.tribe-events-page-template .tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-list__month-separator+.tribe-events-calendar-list__event-row,
.tribe-events-page-template .tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-list__event-row {
	margin: 16px 0;
    background: linear-gradient(114.16deg, #907793 -0.13%, #4E4150 100.58%);
    box-shadow: 0px 50px 150px rgb(0 0 0 / 25%);
}
.tribe-events-page-template .tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-list__event-date-tag {
	width: 140px;
    padding: 24px;
}
.tribe-events-page-template .tribe-events .tribe-events-calendar-list__event-date-tag-weekday {
	font-weight: normal;
    font-size: 16px;
    line-height: 145%;
    color: #fff;
    font-family: 'Inter', sans-serif;
}
.tribe-events-page-template .tribe-events .tribe-events-calendar-list__event-date-tag-daynum {
	font-weight: bold;
    font-size: 24px;
    line-height: 29px;
    color: #fff;
    font-family: 'Inter', sans-serif;
}
.tribe-events-page-template .tribe-events .tribe-events-calendar-list__event-date-tag-datetime {
	padding: 0;
}
.tribe-events-page-template .tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-list__event-wrapper {
	padding: 0;
}
.tribe-events-page-template .tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-list__event {
	margin: 0;
    padding: 24px 24px 24px 0;
	background: transparent;
}
.tribe-events-page-template .tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-list__event-featured-image-wrapper {
	max-width: 200px;
	margin-bottom: 16px;
	display: none;
}
.tribe-events-event-image {
	display: none;
}
.tribe-events-page-template .tribe-events .tribe-events-calendar-list__event-datetime-wrapper {
	margin-bottom: 8px;
}
.tribe-events-page-template .tribe-events .tribe-events-calendar-list__event-datetime {
	font-weight: normal;
    font-size: 16px;
    line-height: 145%;
    color: #fff;
    font-family: 'Inter', sans-serif;
}
.tribe-events-page-template .tribe-events .tribe-events-calendar-list__event-title-link {
	font-weight: bold;
    font-size: 24px;
    line-height: 29px;
    color: #fff !important;
    font-family: 'Inter', sans-serif;
	border: 0 !important;
}
.tribe-events-page-template .tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-list__event-description {
	margin-top: 16px;
}
.tribe-events-page-template .tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-list__event-description p {
    font-weight: normal;
    font-size: 16px;
    line-height: 145%;
    color: #fff;
    font-family: 'Inter', sans-serif;
    margin: 0;
}
.tribe-events-page-template .tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-list__event-description .read-more {
	margin-top: 16px;
}
.tribe-events-page-template .tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-list__event-description .read-more a {
	font-weight: normal;
    font-size: 16px;
    line-height: 145%;
    color: #fff;
    font-family: 'Inter', sans-serif;
    margin: 0;
}
.tribe-events-page-template .tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-list__event-datetime-featured-text,
.tribe-events-page-template .tribe-events .tribe-events-calendar-list__event-datetime-featured-icon,
.tribe-events-page-template .tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-list__event-row--featured .tribe-events-calendar-list__event-date-tag-datetime:after {
	display: none;
}
.tribe-events-page-template .tribe-events .tribe-events-calendar-list-nav {
	border-top: 1px solid rgba(255,255,255,.12);
}
.tribe-events-page-template .tribe-events-nav-pagination {
	position: relative;
}
.tribe-events-page-template .tribe-events-single .tribe-events-sub-nav .tribe-events-nav-previous a:before,
.tribe-events-page-template .tribe-events-single .tribe-events-sub-nav .tribe-events-nav-next a:after {
	width: 24px;
	height: 24px;
	background: url('../img/chevron-left.svg');
	background-size: 18px;
	background-position: center;
	background-repeat: no-repeat;
	margin: 0;
	margin-top: -2px;
}
.tribe-events-page-template .tribe-events-single .tribe-events-sub-nav .tribe-events-nav-next a:after {
	transform: scaleX(-1);
}
.tribe-events-page-template .tribe-events-single .tribe-events-sub-nav .tribe-events-nav-next a, 
.tribe-events-page-template .tribe-events-single .tribe-events-sub-nav .tribe-events-nav-previous a {
	font-weight: normal;
    font-size: 16px;
    line-height: 145%;
    color: #fff !important;
    font-family: 'Inter', sans-serif;
}
.tribe-events-page-template .tribe-events-single .tribe-events-sub-nav .tribe-events-nav-next a:hover , 
.tribe-events-page-template .tribe-events-single .tribe-events-sub-nav .tribe-events-nav-previous a:hover {
	opacity: .5;
}
.tribe-events-page-template .tribe-events-schedule h2 {
	font-weight: normal;
    font-size: 16px;
    line-height: 145%;
    color: #fff;
    font-family: 'Inter', sans-serif;
	margin: 16px 0 11px;
}
.tribe-events-page-template .tribe-events-single-event-title {
	font-weight: normal;
    font-size: 24px;
    line-height: 145%;
    color: #fff;
    font-family: 'Inter', sans-serif;
}
.tribe-events-page-template .tribe-events-notices {
	font-weight: normal;
    font-size: 16px;
    line-height: 145%;
    color: #fff;
    font-family: 'Inter', sans-serif;
	border: 0;
	text-shadow: none;
}
.tribe-events-page-template .tribe-events-schedule {
	margin: 0;
}
.tribe-events-page-template .ast-article-single {
	background: transparent !important;
	padding: 0;
	margin-top: 24px;
}
.tribe-events-page-template .tribe-events-content p {
	font-weight: normal;
	font-size: 16px;
	line-height: 145%;
    color: #fff;
    font-family: 'Inter', sans-serif;
}


.tribe-events-page-template .tribe-events-event-meta:before {
	border-color: rgba(255,255,255,.12);
}
.tribe-events-page-template .tribe-events-meta-group .tribe-events-single-section-title {
	font-weight: bold;
	font-size: 21px;
	line-height: 25px;
    color: #fff;
    font-family: 'Inter', sans-serif;
	text-transform: capitalize;
}
.tribe-events-page-template #tribe-events-footer {
	border: 0;
}
.tribe-events-page-template .tribe-events-event-meta dt {
	font-weight: bold;
	font-size: 16px;
	line-height: 19px;
	color: #fff;
    font-family: 'Inter', sans-serif;
}
.tribe-events-page-template .tribe-events-event-meta odd,
.tribe-events-page-template .tribe-events-event-meta .tribe-events-abbr {
	font-weight: normal;
	font-size: 16px;
	line-height: 19px;
	color: #fff;
    font-family: 'Inter', sans-serif;
}
.tribe-events-page-template abbr[title] {
	border: 0;
}
.tribe-events-page-template .tribe-events-back a {
	position: relative;
}
.tribe-events-page-template .tribe-events .tribe-events-calendar-month__day-date-link {
	color: #fff;
}
.tribe-events-pro-photo {
	margin-top: 40px !important;
}
.tribe-events-page-template .tribe-events .tribe-events-calendar-month__calendar-event-datetime {
	opacity: 1;
    font-weight: 500;
    font-size: 14px;
    line-height: 144.02%;
    color: #fff;
    font-family: 'Inter', sans-serif;
    border: 0 !important;
}
.tribe-events-page-template .tribe-events .tribe-events-calendar-day__event {
	margin: 16px 0;
	background: linear-gradient(114.16deg, #907793 -0.13%, #4E4150 100.58%) !important;
	box-shadow: 0px 50px 150px rgba(0, 0, 0, 0.25);
	padding: 24px 24px 24px 24px;
	border: 0;
}
.tribe-events-page-template .tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-day__event:before {
	display: none;
}
.tribe-events-page-template .tribe-common--breakpoint-medium.tribe-events .tribe-events-c-nav__list-item a {
	color: #fff;
}
.tribe-events-page-template .tribe-common--breakpoint-medium.tribe-events .tribe-events-c-nav__prev-icon-svg path {
	fill: #fff;
}
.tribe-events-page-template .tribe-events .tribe-events-calendar-day__time-separator:after, 
.tribe-events-page-template .tribe-events .tribe-events-calendar-day__type-separator:after {
	background: rgba(255,255,255, .12);
}
.tribe-events-page-template .tribe-events .tribe-events-calendar-day-nav {
	border-color: rgba(255,255,255, .12);
}
.tribe-events-page-template .tribe-events .tribe-events-calendar-day__event-datetime {
	font-weight: normal;
    font-size: 16px;
    line-height: 145%;
    color: #fff;
    font-family: 'Inter', sans-serif;
}
.tribe-events-page-template .tribe-events-calendar-day__event-datetime-wrapper {
	margin-bottom: 8px !important;
}
.tribe-events-page-template .tribe-events .tribe-events-calendar-day__event-title-link {
	font-weight: bold;
    font-size: 24px;
    line-height: 29px;
    color: #fff !important;
    font-family: 'Inter', sans-serif;
    border: 0 !important;
}
.tribe-events-page-template .tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-day__event-description {
	margin-top: 16px;
}
.tribe-events-page-template .tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-day__event-description p {
	font-weight: normal;
    font-size: 16px;
    line-height: 145%;
    color: #fff;
    font-family: 'Inter', sans-serif;
    margin: 0;
}
.tribe-events-page-template .tribe-events-calendar-day__event-description {
	visibility: visible;
	display: block !important;
	margin-top: 16px;
}
.tribe-events-page-template .tribe-events-calendar-day__event-description p {
	font-weight: normal;
    font-size: 16px;
    line-height: 145%;
    color: #fff;
    font-family: 'Inter', sans-serif;
    margin: 0;
}
.tribe-events-page-template .tribe-common .tribe-common-anchor-thin-alt {
	color: #fff;
	text-decoration: underline;
}
.tribe-events-page-template .tribe-events-c-nav__next , .tribe-events-page-template .tribe-events-c-nav__prev {
	color: #fff;
}
.tribe-events-page-template .tribe-common--breakpoint-medium.tribe-events .tribe-events-c-nav__next-icon-svg path {
	fill: #fff;
}
.tribe-events-single {
	position: relative;
	padding: 167px 24px 120px;
}



/* club application */

.club-application-page .section-1 {
	padding: 207px 24px 120px;
}
.club-application-page .section-1-wrapper {
	max-width: 1240px;
	position: relative;
}
.club-application-page .section-1 .title {
	font-size: 48px;
	line-height: 72px;
	text-align: center;
	margin-bottom: 30px;
}
.club-application-page .frm_section_spacing {
	font-weight: 900;
	font-size: 21px;
	line-height: 25px;
	color: #fff;
    font-family: 'Inter', sans-serif;
	margin-bottom: 24px;
}
.club-application-page .frm_top_container {
	width: 50%;
	display: inline-block;
	vertical-align: top;
}
.club-application-page .frm_section_heading {
	background: rgba(255, 255, 255, 0.1);
	box-shadow: 0px 50px 150px rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(25px);
	padding: 56px 43px 53px 60px;
	margin-bottom: 40px;
}
.club-application-page .section-1 .frm_form_field input {
	margin: 0;
} 
.club-application-page .frm_first {
	padding-right: 15px;
}
.club-application-page .frm_first + .frm_top_container {
	padding-left: 15px;
}
.club-application-page .frm4 {
	width: 25%;
}
.club-application-page .frm12 {
	width: 100%;
	padding: 0;
}
.club-application-page .frm4 + .frm4 {
	padding-left: 15px;
}
.club-application-page .with_frm_style .frm_required {
	display: inline-block;
}
.club-application-page .frm_top_container.vertical_radio .frm_primary_label {
	display: none;
}
.club-application-page .frm_top_container.vertical_radio label {
	font-weight: 500;
	font-size: 12px;
	line-height: 15px;
	color: #fff;
    font-family: 'Inter', sans-serif;
	padding-left: 25px;
	position: relative;
	cursor: pointer;
	display: block;
}
.club-application-page .frm_top_container.vertical_radio label:after {
	content: '';
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid #FFFFFF;
	box-sizing: border-box;
	width: 15px;
	height: 15px;
	position: absolute;
	left: 0;
	top: 0;
}
.club-application-page .frm_top_container.vertical_radio {
	padding: 0;
	margin-bottom: 36px;
}
.club-application-page .frm_top_container.vertical_radio input {
	background: #fff;
	opacity: 0;
	width: 15px;
	height: 15px;
	position: absolute;
	left: 0;
	top: 0;
}
.club-application-page .frm_top_container.vertical_radio input:checked {
	opacity: 1;
}
.club-application-page .frm_top_container.vertical_radio + .frm_top_container {
	padding-left: 0;
}
.club-application-page .frm_upload_text {
	display: none;
}
.club-application-page .frm_compact_text button {
	margin: 0;
	background: #403A49;
	border: 2px solid #FFFFFF;
	box-sizing: border-box;
	font-weight: 500;
	font-size: 12px;
	line-height: 18px;
	color: #fff;
    font-family: 'Inter', sans-serif;
	width: auto;
	padding: 11px 29px;
	transition: .3s;
}
.club-application-page .frm_compact_text button:hover {
	background: #473b57;
}
.club-application-page .frm_submit {
	text-align: left;
}
.club-application-page .frm_top_container.vertical_radio + .frm_top_container textarea {
	height: 150px;
}
.club-application-page .decor-1 {
	width: 458px;
    position: absolute;
	left: -181px;
    top: 440px;
}
.club-application-page-success .center {
	text-align: center;
}
.club-application-page-success .section-1 .title {
	font-weight: 700;
	font-size: 40px;
	line-height: 60px;
}
.club-application-page-success .desc {
	margin: 50px auto 70px;
	max-width: 740px;
}
.club-application-page-success .decor-1 {
	width: 458px;
    position: absolute;
    left: -170px;
	top: auto;
    bottom: -340px;
}


/* privacy policy */

.privacy-policy {
	position: relative;
}
.privacy-policy:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-image: url('../img/bg.jpg');
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: top left;
	opacity: 0.5;
	filter: blur(400px);
}
.privacy-policy .content-area {
	width: 100% !important;
}
.privacy-policy .ast-article-single {
	background: transparent !important;
}
.privacy-policy .entry-title {
	font-weight: 900;
	font-size: 48px;
	line-height: 50px;
	margin-bottom: 19px;
	color: #fff;
    font-family: 'Inter', sans-serif;
}
.privacy-policy h2 {
	font-weight: bold;
	font-size: 21px;
	line-height: 25px;
	margin-bottom: 19px;
	color: #fff;
    font-family: 'Inter', sans-serif;
}
.privacy-policy p {
	font-weight: normal;
	font-size: 16px;
	line-height: 18px;
	margin-bottom: 19px;
	color: #fff;
    font-family: 'Inter', sans-serif;
}


/* event filters */

.tribe-common--breakpoint-medium .tribe-filter-bar .tribe-filter-bar-c-filter--pill .tribe-filter-bar-c-filter__container {
	visibility: visible !important;
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	position: static !important;
	display: inline-block;
	width: auto !important;
	margin: 0 !important;
	transform: none !important;
}
.tribe-filter-bar .tribe-filter-bar-c-pill--button .tribe-filter-bar-c-pill__pill,
.tribe-filter-bar .tribe-filter-bar-c-dropdown .select2-container--open .select2-selection,
.tribe-common--breakpoint-medium .tribe-filter-bar .tribe-filter-bar-c-filter--pill .tribe-filter-bar-c-filter__filters-legend,
.tribe-common--breakpoint-medium .tribe-filter-bar .tribe-filter-bar-c-filter--pill .tribe-filter-bar-c-filter__filters-close,
.tribe-filter-bar .tribe-filter-bar-c-clear-button__reset-icon,
.tribe-common--breakpoint-medium .tribe-filter-bar .tribe-filter-bar-c-filter--pill .tribe-filter-bar-c-filter__toggle-wrapper,
.tribe-common--breakpoint-medium.tribe-events--filter-bar-horizontal.tribe-events .tribe-events-header--has-event-search .tribe-events-c-events-bar__filter-button-container {
	display: none !important;
}
.tribe-filter-bar .tribe-filter-bar-c-clear-button__text {
	color: rgba(255,255,255,.5);
	font-weight: 500;
	font-size: 14px;
	line-height: 17px;
	font-family: 'Inter', sans-serif;
	transition: .2s;
	padding-right: 10px;
	margin-right: 10px;
	border-right: 2px solid #fff;
}
.tribe-filter-bar .tribe-filter-bar-c-clear-button__text:hover {
	color: #fff;
}
.tribe-filter-bar .tribe-filter-bar-c-dropdown .select2-results__option {
	color: #FFFFFF !important;
	font-weight: 500 !important;
	font-size: 14px !important;
	line-height: 17px !important;
	opacity: 0.5 !important;
	font-family: 'Inter', sans-serif;
	display: inline-block !important;
	margin-right: 20px !important;
	transition: .2s !important;
	background: transparent !important;
	border-radius: 8px;
	background: transparent !important;
	padding: 8px 11px !important;
}
.tribe-filter-bar .tribe-filter-bar-c-dropdown .select2-results__option.active {
	background: rgba(255, 255, 255, 0.08) !important;
	color: #fff !important;
	opacity: 1 !important;
}

.tribe-common--breakpoint-medium .tribe-filter-bar .tribe-filter-bar-c-filter--pill .tribe-filter-bar-c-filter__filters-close {
	display: nono;
}
.tribe-common--breakpoint-medium .tribe-filter-bar--horizontal.tribe-filter-bar .tribe-filter-bar__form {
	display: block !important;
}
.tribe-common--breakpoint-medium .tribe-filter-bar--horizontal.tribe-filter-bar .tribe-filter-bar__filters-container {
	position: static !important;
	display: inline-block;
	vertical-align: middle;
}
.tribe-common--breakpoint-medium .tribe-filter-bar--horizontal.tribe-filter-bar--has-selected-filters.tribe-filter-bar .tribe-filter-bar__actions {
	display: inline-block !important;
	vertical-align: middle;
	padding: 0 !important;
}
.tribe-common--breakpoint-medium .tribe-filter-bar .tribe-filter-bar-c-filter--pill.tribe-filter-bar-c-filter--dropdown .tribe-filter-bar-c-filter__filter-fields, .tribe-common--breakpoint-medium .tribe-filter-bar .tribe-filter-bar-c-filter--pill.tribe-filter-bar-c-filter--multiselect .tribe-filter-bar-c-filter__filter-fields, .tribe-filter-bar .tribe-filter-bar-c-filter--dropdown .tribe-filter-bar-c-filter__container, .tribe-filter-bar .tribe-filter-bar-c-filter--multiselect .tribe-filter-bar-c-filter__container {
	margin: 0 !important;
}
.tribe-filter-bar .tribe-filter-bar-c-dropdown .select2-results__option:hover {
	opacity: 1 !important;
}
.tribe-common--breakpoint-medium.tribe-common .tribe-common-b2,
.tribe-common .tribe-common-b2 {
	color: #fff;
}
.tribe-filter-bar .tribe-filter-bar__action-done {
	display: none;
}
.tribe-filter-bar__selected-filters {
	display: none;
}
.tribe-filter-bar__actions {
	padding: 0 !important;
}
.tribe-filter-bar .tribe-filter-bar-c-clear-button {
	background: transparent !important;
    width: auto;
    padding: 0;
    border: 0;
    margin: 0;
}
.tribe-filter-bar__filters-container {
	display: inline-block;
	vertical-align: middle;
}
.tribe-filter-bar--has-selected-filters.tribe-filter-bar .tribe-filter-bar__actions {
	display: inline-block !important;
	vertical-align: middle;
}
.tribe-filter-bar-c-filter__container {
	padding: 0 !important;
}
.tribe-events-header--has-event-search .tribe-filter-bar.tribe-filter-bar--horizontal {
	overflow: auto;
	white-space: nowrap;
}
.tribe-events-pro .tribe-events-pro-photo__event-featured-image-link {
	height: 0;
    padding-top: 60%;
    position: relative;
}
.tribe-events-pro .tribe-events-pro-photo__event-featured-image {
	object-fit: cover;
    object-position: center;
    position: absolute;
    left: 0;
    top: 0;
	height: 100%;
	width: 100%;
}
.tribe-events .tribe-events-c-breadcrumbs {
	display: none;
}
.tribe-events .tribe-events-c-messages__message--notice .tribe-events-c-messages__message-icon-svg {
	display: none !important;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
.frm_with_box {
	position: relative;
}
.frm_inline_box {
	font-family: 'Inter', sans-serif;
    outline: 0;
    line-height: 40px;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    display: inline-block;
    position: absolute;
    top: 0px;
    left: 10px;
}
.frm_with_box input {
	padding-left: 30px !important;
}

/* Hide access user input */
#um_field_461_user_login {
	visibility: hidden;
	height: 0px;
	width: 0px;
}
.tooltip {
	width: 16px;
	height: 16px;
	border-radius: 100px;
	display: inline-block;
	background-image: url('../img/info.svg');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	vertical-align: middle;
	margin-top: -2px;
	cursor: pointer;
}
.tribe-events .tribe-events-calendar-month__calendar-event-featured-image-wrapper,
.tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-day__event-featured-image-wrapper,
.tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-day__event-datetime-featured-text,
.tribe-events .tribe-events-calendar-day__event-datetime-featured-icon,
.tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-day__event--featured:after,
.tribe-events .tribe-events-calendar-day__event-featured-image-wrapper {
	display: none !important;
}
.ui-tooltip {
	width: auto;
    max-width: 193px;
	z-index: 21;
}
.ui-tooltip-content {
	width: auto;
    max-width: 193px;
    background: #000;
	font-weight: 400;
	font-size: 10px;
	line-height: 12px;
	padding: 9px;
	color: #fff;
	font-family: 'Inter', sans-serif;
	position: relative;
	top: -40px;
	left: 30px;
}
.ui-tooltip-content:before {
	    content: '';
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-right: 7px solid #000;
    position: absolute;
    left: -7px;
    top: 10px;
}
.pading-left-zero {
	padding-left: 0 !important;
}

.frm_error {
    display: block;
    font-size: 14px;
    padding-top: 5px;
    color: #e02a5d;
	font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    font-family: 'Inter', sans-serif;
	
}
.frm_message {
	font-size: 22px;
    line-height: 32px;
    font-family: 'Inter', sans-serif;
	color: #fff;
	text-align: left;
}
.frm_error_style {
    font-size: 18px;
    margin-bottom: 25px;
    color: white;
}
.dz-image {
	width: 70px;
    margin-top: 20px;
}
#gtranslate_wrapper {
	top: 34px !important;
	right: 170px !important;
	transition: .2s top;
}
#gtranslate_wrapper.scrolled {
	top: 43px !important;
}
.switcher {
	width: auto !important;
}
.switcher a img {
	display: none !important;
}
.switcher .selected a {
	border: 1px solid #DEDEE6 !important;
	box-sizing: border-box;
	border-radius: 5px;
	background: transparent !important;
	font-weight: 400;
	font-size: 10px;
	line-height: 12px;
    font-family: 'Inter', sans-serif;
	color: #fff !important;
	display: table;
    width: auto !important;
	padding: 3px 20px 3px 6px !important;
	outline: 0 !important;
}
.switcher .selected {
	background: transparent !important;
}
.switcher .selected a:after {
	height: 13px !important;
    right: 7px !important;
    width: 7px !important;
    background-size: 8px !important;
	filter: brightness(0) invert(1);
}
.switcher .option {
	width: auto !important;
	overflow: hidden !important;
    border: 0 !important;
	background: transparent !important;
	padding-top: 5px;
}
.switcher .option a {
	padding: 2px 0 2px 6px !important;
	background: transparent !important;
	font-weight: 400;
	font-size: 10px;
	line-height: 12px;
    font-family: 'Inter', sans-serif;
	color: #fff !important;
	transition: .3s;
}
.switcher .option  a:hover {
	opacity: .5;
}
.select2-container--default .select2-results>.select2-results__options {
	display: flex;
}
.sigWrapper {
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.07) !important;
	box-sizing: border-box;
}
.pad {
	filter: brightness(0) invert(1);
}
.footer-wrapper > div,
.footer-wrapper > ul {
	position: relative;
}
.back {
	position: absolute;
	left: 0;
	top: -40px;
	color: #fff !important;
	transition: .3s;
}
.back:before {
	content: '';
	width: 26px;
	height: 26px;
	background-image: url('../img/arrow.svg');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	display: inline-block;
	vertical-align: middle;
	transform: scale(-1);
	margin-top: -2px;
	margin-right: 2px;
}
.back:hover {
	opacity: .5;
}
.member-page-modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 11;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 48px;
	display: none;
}
.member-page-modal .overlay {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.5);
}
.member-page-modal .wrapper {
	background: linear-gradient(114.16deg, #907793 -0.13%, #4E4150 100.58%);
	box-shadow: 0px 50px 150px rgba(0, 0, 0, 0.25);
	padding: 47px 49px 46px 65px;
	max-width: 900px;
	width: 100%;
	margin: 0 auto;
	z-index: 2;
	position: relative;
	font-size: 0;
}
.member-page-modal .close {
	width: 32px;
	position: absolute;
	top: 32px;
	right: 32px;
	cursor: pointer;
}
.member-page-modal fieldset legend {
	font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 24px;
    line-height: 32px;
    color: #FFFFFF;
	padding: 0;
}
.member-page-modal .frm_verify {
	display: none;
}
.load-more-search-items {
	margin-bottom: 116px;
}
.network-page .section-3 .item.hidden {
	display: none;
}

.page-template-template-access-directory .um-field-error {
    display: block;
    font-size: 14px;
    color: #e02a5d;
    line-height: 15px;
    padding-top: 5px;
}
.tribe-events-related-events-title,
.tribe-events-single ul.tribe-related-events {
	display: none;
}
.single-tribe_events a,
.single-tribe_events span,
.single-tribe_events p,
.single-tribe_events label {
	color: #fff !important;
}
.single-tribe_events a:hover {
	opacity: .7;
}
.tribe-events-page-template .tribe-events-cal-links a {
	font-weight: normal;
	font-size: 16px;
	line-height: 145%;
    color: #000 !important;
    font-family: 'Inter', sans-serif;
	-webkit-filter: invert(10%); /* Safari/Chrome */
    filter: invert(100%);
}
#rtec {
	display: none !important;
}
#rtec .rtec-register-button,
#rtec input[type=submit] {
	font-family: 'Poppins', sans-serif;
    display: inline-block;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: #fff;
	background: #B30838;
    padding: 16px;
    width: 100%;
    max-width: 222px;
    text-align: center;
	transition: .3s;
	display: none !important;
}
#rtec .rtec-register-button:hover {
	background: #8e092e;
}
.rtec-already-registered-reveal a {
	font-weight: normal;
    font-size: 16px;
    line-height: 53px;
    color: #fff;
    font-family: 'Inter', sans-serif;
	margin-left: 12px;
	display: block;
	outline: 0;
}
.rtec-already-registered-reveal {
	display: inline-block;
	vertical-align: middle;
}
.rtec-field-input {
	background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.125) !important;
    border-radius: 0;
    width: 100%;
    resize: none;
    outline: 0;
    font-weight: normal;
    font-size: 16px;
    line-height: 145%;
    color: #fff !important;
    font-family: 'Inter', sans-serif;
    padding: 8px;
	border-radius: 0 !important;
}
.rtec-input-wrapper,
#rtec label {
	margin-top: 16px !important;
}
#rtec .rtec-form-wrapper {
	background: transparent !important;
	border: 0 !important;
}
.rtec-modal {
	background: #5b455d !important;
    border: 0;
    box-sizing: border-box;
}
.tribe-events-page-template .tribe-events-notices {
	background: transparent;
	font-weight: 900;
	font-size: 21px;
	line-height: 25px;
	color: #fff;
	font-family: 'Inter', sans-serif;
}
.rtec-modal .rtec-button-link.rtec-media-modal-close {
	background: transparent;
	border: 0 !important;
	top: 16px;
	right: 16px;
	left: auto;
	font-size: 0;
	background-image: url('../img/close.svg');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	transition: .3s;
}
.rtec-modal .rtec-button-link.rtec-media-modal-close:hover {
	opacity: .5;
}
.rtec-modal {
	width: 100%;
	max-width: 1200px;
	left: 50%;
	transform: translateX(-50%);
	margin: 0;
	font-size: 0;
}
#rtec {
	max-width: 100%;
}
#rtec .rtec-form-field {
	width: 50%;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 16px;
}
#rtec .rtec-form-field:nth-child(even) {
	padding-left: 15px;
}
#rtec .rtec-form-field:nth-child(odd) {
	padding-right: 15px;
}
#rtec label {
	font-weight: 500;
	font-size: 12px;
	line-height: 15px;
	color: #fff;
	font-family: 'Inter', sans-serif;
	margin: 0 !important;
}
#rtec .rtec-input-wrapper {
	margin-top: 6px !important;
}
#rtec .rtec-form-field[data-rtec-type=checkbox] {
	width: 100%;
	padding: 0;
}
#rtec .rtec-checkbox-option-wrap {
	position: relative;
}
#rtec .rtec-form-field[data-rtec-type=checkbox] .rtec-field-input {
    opacity: 0;
    width: 15px;
    height: 15px;
    position: absolute;
    left: 0;
    top: 0;
	background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.125) !important;
}
#rtec .rtec-form-field[data-rtec-type=checkbox] .rtec-field-input:checked {
	opacity: 1;
}
.rtec-checkbox-option-wrap label {
	position: relative;
	padding-left: 25px;
	cursor: pointer;
}
.rtec-checkbox-option-wrap label:after {
	content: '';
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid #FFFFFF;
    box-sizing: border-box;
    width: 15px;
    height: 15px;
    position: absolute;
    left: 0;
    top: 0;
}
#rtec .rtec-form-buttons {
	text-align: left;
}
.tribe-events-calendar-list__event-cost {
	display: none;
}
#rtec .rtec-error-message {
	background: transparent !important;
	line-height: 30px;
}
#rtec .rtec-form-field[data-rtec-type=checkbox] .rtec-input-wrapper {
	border: 0 !important;
}
.rtec-modal .rtec-scrollto.tribe-events-notices {
	margin: 50px 0 !important;
}


/* media */

@media screen and (max-width: 1130px) {
	.mob {
        display: block;
    }
	.header {
		height: 77px;
		padding: 0;
		display: flex;
		justify-content: center;
		align-items: center;
	}
    .header-nav {
        position: absolute;
        background: #1d1526;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: 1;
        padding: 94px 20px 20px;
        text-align: left;
        transition: .5s;
        transform: translateX(-100%);
        overflow: scroll;
		margin: 0;
    }
	.header.active:before {
		content: '';
		width: 100%;
		height: 77px;
		left: 0;
		top: 0;
		position: fixed;
		z-index: 2;
        background: #1d1526;
	}
	.active .header-nav {
		transform: translateX(0);
	}
	.header-nav-list {
		width: 100%;
		flex-direction: column;
		display: flex;
	}
	.header.active {
		justify-content: flex-start;
		padding: 0 24px;
	}
	.hamburger {
		display: flex;
		transition: .2s;
	}
	.active .hamburger {
		left: auto;
		right: 0;
	}
	.header-nav .link {
		font-weight: 500;
		font-size: 21px;
		line-height: 31px;
	}
	.header-nav .nav__item + .nav__item {
		margin-left: 0;
	}
	.header-nav .nav__item {
		margin-top: 24px;
	}
	.header-nav .nav__item:first-child {
		margin-top: 6px;
	}
	.header-nav .nav__item.button {
		position: fixed;
		left: 24px;
		right: auto;
		bottom: 159px;
		top: auto;
	}
	.active.header .hamburger span:first-child {
        transform: rotate(45deg);
    }
    .active.header .hamburger span:nth-child(2) {
        opacity: 0;
    }
    .active.header .hamburger span:last-child {
        transform: rotate(-45deg);
        margin-top: -8px;
    }
	.logo-desc {
		display: none;
	}
	.header .logo {
		max-width: 85px;
		z-index: 2;
	}
	.about-page .more .section-3-wrapper .list {
		padding-left: 10%;
	}
	.about-page .section-1 .img-container {
		position: relative;
		width: 100%;
		max-height: 400px;
    	overflow: hidden;
	}
	.about-page .section-1 .img-container .img {
		    width: 100%;
			height: 100%;
			object-fit: cover;
			object-position: top center;
			max-height: 400px;
	}
	.about-page .section-1 .left {
		width: 100%;
		padding: 0;
	}
	.about-page .section-1 .right {
		width: 100%;
		padding: 0;
		margin-top: 32px;
	}
	.section-1 {
		padding: 246px 48px 234px 48px;
	}
	.about-page .section-3-wrapper .list {
		text-align: left;
    	max-width: 900px;
	}
	.about-page .section-3-wrapper .item {
		width: calc(100% / 3);
	}
	.resources-page .card {
		width: calc((100% - 30px) / 2);
	}
	.resources-page .card:nth-child(even) {
		margin-right: 0;
		margin-left: 15px;
	}
	.resources-page .card:nth-child(odd) {
		margin-left: 0;
		margin-right: 15px;
	}
	.header.scrolled .nav__item.button {
		bottom: 159px;
    	top: auto;
	}
	.contact-page .section-1 .right {
		padding: 24px;
	}
	.directory-page .section-1 .form {
		padding: 40px 20px;
	}
	#gtranslate_wrapper {
		display: none;
		bottom: 100px;
		top: auto !important;
		left: 24px !important;
		right: auto !important;
	}
	#gtranslate_wrapper.scrolled {
		bottom: 100px;
    	top: auto !important;
	}
	.switcher .selected a {
		font-weight: 500;
		font-size: 21px;
		line-height: 25px;
		border: 0 !important;
		padding: 0 !important;
	}
	.switcher {
		overflow: visible !important;
	}
	.switcher .selected a:after {
		height: 27px !important;
		right: -27px !important;
		width: 28px !important;
		background-size: 13px !important;
		transform: rotate(-90deg);
	}
	.switcher .option {
		position: absolute !important;
		top: 30px !important;
		left: 0 !important;
	}
	.switcher .option a {
		font-weight: 700;
		font-size: 16px;
		line-height: 19px;
		padding: 6px 0 6px 6px !important;
	}
	.switcher .selected a.open:after {
		transform: rotate(0deg) !important;
	}
}
@media screen and (max-height: 450px) {
	.header-nav .nav__item.button {
		position: static;
		display: flex;
		margin-top: 24px;
	}

}
@media screen and (max-width: 900px) {

	.title {
		font-size: 40px;
		line-height: 48px;
	}
	.home-page .section-1 {
		padding: 0 0 70px;
		height: 100vh;
		min-height: 530px;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.home-page .section-1 .left,
	.home-page .section-1 .right {
		width: 100%;
		padding: 0;
		text-align: center;
	}
	.home-page .section-1 .left {
		position: relative;
		z-index: 3;
		padding: 0 24px;
	}
	.home-page .section-1 .desc {
		font-weight: normal;
		font-size: 23px;
		line-height: 28px;
		margin-top: 16px;
		margin-bottom: 6px;
	}
	.home-page .section-1 .button.red {
		margin: 20px auto 0;
		display: table;
	}
	.home-page .section-1 .button.black {
		background: #2F2F2F;
		margin: 20px auto 0;
	}
	.section-1-wrapper {
		position: static;
	}
	
	
	.preview-img .sa_hover_container {
		width: 100%;
	}
	.preview-img .owl-carousel .owl-stage-outer {
		height: 100%;
	}
	.preview-img .sa_hover_container {
		height: 100%;
	}
	.owl-carousel .owl-item .preview-text {
		top: auto;
		bottom: 0;
	}
	.preview-img .sa_hover_container:before {
		content: '';
		background: linear-gradient(0deg, rgba(0, 0, 0, 0.53), rgba(0, 0, 0, 0.53));
		width: 100%;
		height: 100%;
		position: absolute;
		left: 0;
		top: 0;
		z-index: 1;
	}
	.home-page .sa_owl_theme .owl-dots {
		top: auto !important;
		bottom: 10px !important;
	}
	.home-page .sa_owl_theme .owl-dots .owl-dot span:hover {
		background-color: rgba(255,255,255,.3) !important;
	}
	.home-page .owl-carousel.sa_owl_theme .owl-dots .active span:hover {
		background-color: #fff !important;
	}
	
	
	
	.preview-img > div {
		position: absolute !important;
	}
	.preview-img:before {
		z-index: 1;
		background: linear-gradient(0deg, rgba(0, 0, 0, 0.53), rgba(0, 0, 0, 0.53));
		width: 100%;
		left: 0;
		top: 0;
	}
	.home-page .preview-img:before {
		display: none;
	}
	.preview-img {
		position: static;
		height: 0;
	}
	.preview-img .img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
	.home-page .preview-text {
		z-index: 2;
		margin-top: 60px;
		padding: 16px 24px 21px;
		text-align: left;
		min-height: 132px;
	}
	.home-page .preview-text .title {
		font-size: 20px;
		line-height: 150%;
	}
	.home-page .section-1 .desc {
		margin-top: 8px;
		font-size: 14px;
		line-height: 17px;
	}
	.home-page .preview-text .link {
		margin-top: 11px;
	}
	.home-page .indicator {
		right: 34px;
		bottom: 32px;
	}
	.home-page .indicator .item {
		width: 16px;
	}
	.home-page .section-2 .desc {
		font-size: 18px;
	}
	.home-page .section-2 .desc.small {
		font-size: 16px;
		margin-top: 21px;
	}
	.home-page .section-2 {
		height: 250px;
	}
	.home-page .section-3 {
		padding: 89px 24px 168px;
		background-image: url('../img/decor-12.png');
		background-size: 585px 797px;
		background-position: top 225px left 50%;
		background-repeat: no-repeat;
	}
	.home-page .section-3 .title {
		font-weight: 900;
		font-size: 18px;
		line-height: 155%;
		text-align: center;
		margin: 0 auto;
		position: relative;
	}
	.home-page .section-3 .section-3-wrapper>.title:before {
		content: '';
		width: 123px;
		height: 183px;
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		background-image: url('../img/small-red-decor.svg');
		background-size: contain;
		background-position: center;
		background-repeat: no-repeat;
		z-index: -1;
	}
	.home-page .section-3 .title i {
		font-style: italic;
	}
	.home-page .section-3 .decor-1 {
		display: none;
	}
	.home-page .section-3 .list {
		margin-top: 110px;
	}
	.home-page .section-3 .item {
		margin: 0 auto;
		width: 100%;
		max-width: 310px;
		text-align: center;
	}
	.home-page .section-3 .item {
		margin-top: 64px;
		display: block;
	}
	.home-page .section-3 .item-wrapper:before {
		display: none;
	}
	.section-3-wrapper:after {
		content: '';
		width: 410px;
		height: 28px;
		background-image: url('../img/decor-13.png');
		background-size: contain;
		background-position: center;
		background-repeat: no-repeat;
		position: absolute;
		right: -180px;
		bottom: -68px;
	}
	.home-page .section-4-wrapper:before {
		display: none;
	}
	.home-page .section-4 {
		padding: 0 24px;
	}
	.home-page .section-4 .title {
		font-size: 20px;
		line-height: 150%;
	}
	.home-page .section-5 {
		padding: 98px 24px 0;
	}
	.home-page .section-5-wrapper:before {
		display: none;
	}
	.home-page .section-5 .left,
	.home-page .section-5 .right {
		width: 100%;
		text-align: center;
	}
	.home-page .section-5 .right {
		margin-top: 72px;
	}
	.home-page .section-5 .desc {
		margin-top: 24px;
		margin-bottom: 16px;
	}
	.home-page .section-5 .button {
		display: table;
		margin: 16px auto 0;
		max-width: 311px;
	}
	.map-box-list {
		position: static;
		margin: 45px auto 0;
	}
	.map {
		display: flex;
		height: 140vw;
		flex-direction: column-reverse;
	}
	.map svg g {
		width: 100%;
	}
	.home-page .section-6 {
		padding: 140px 12px 0;
	}
	.home-page .section-6 .title {
		font-size: 20px;
		line-height: 24px;
		font-weight: 900;
		margin-left: 21px;
		position: relative;
		z-index: 1;
	}
	.home-page .team-img {
		margin-top: 40px;
	}
	.home-page .section-6-wrapper:before {
		content: '';
		width: 441px;
		height: 479px;
		background: none;
		background-image: url('../img/decor-14.png');
		background-size: contain;
		background-position: center;
		background-repeat: no-repeat;
		position: absolute;
		left: 35%;
		top: -97px;
		transform: translateX(-50%);
		filter: none;
		border-radius: 0;
	}
	.home-page .section-6 .item {
		font-weight: 600;
		font-size: 3vw;
		line-height: 144.52%;
	}
	.home-page .section-6 .list {
		bottom: 28px;
	}
	.home-page .section-7-wrapper:before {
		display: none;
	}
	.home-page .section-7 {
		padding: 46px 32px 0;
	}
	.home-page .section-7-wrapper:after {
		display: none;
	}
	.home-page .team-logo img {
		width: 120px;
	}
	.home-page .team-logo .line-decor-1 {
		left: -32px;
		top: 46px;
		width: calc(50% - 60px + 8px);
	}
	.home-page .team-logo .line-decor-4 {
		display: none;
	}
	.home-page .team-logo .line-decor-2 {
		width: calc(40% - 60px);
		left: auto;
		right: -32px;
		top: 46px;
	}
	.home-page .team-logo .line-decor-3 {
		width: 10%;
		left: calc(50% + 60px + 24px);
		top: 46px;
	}
	.home-page .section-7 .list {
		margin-top: 0;
	}
	.home-page .section-7 .list .item {
		width: 50%;
		text-align: left;
		margin-top: 32px;
	}
	.home-page .section-7 .list .item:last-child {
		width: 100%;
	}
	.home-page .section-7 .list .item .title {
		font-weight: 800;
		font-size: 16px;
		line-height: 144.52%;
	}
	.home-page .section-7 .list .item .desc {
		margin-top: 8px;
		font-weight: 500;
		font-size: 16px;
		line-height: 19px;
	}
	.home-page .section-7 .hover-list {
		left: 50%;
		transform: translateX(-50%);
	}
	.home-page .section-7 .button {
		margin-top: 40px;
		max-width: 311px;
	}
	.home-page .section-7 .section-7-decor {
		margin-top: 64px;
		width: calc(100% + 64px);
		left: -32px;
		position: relative;
	}
	.home-page .section-7-decor .line-decor-2,
	.home-page .section-7-decor .line-decor-3 {
		display: none;
	}
	.home-page .section-7-decor .line-decor-1 {
		width: 100%;
	}
	.home-page .section-8 {
		padding: 64px 24px;
	}
	.home-page .section-8 .title {
		font-size: 28px;
		line-height: 34px;
		margin-bottom: -18px;
	}
	.home-page .section-8 .item {
		width: 50%;
		margin-top: 82px;
	}
	.footer {
		padding: 64px 24px 0;
	}
	.footer .left,
	.footer .right {
		width: 100%;
		padding: 0;
		text-align: center;
	}
	.footer .logo {
		margin: 0 auto;
	}
	.footer .desc {
		width: calc(100% + 16px);
		left: -8px;
		position: relative;
	}
	.footer .desc + .desc {
		display: none;
	}
	.footer .right {
		margin-top: 64px;
	}
	.footer-nav {
		margin-top: 64px;
		width: 100%;
	}
	.footer-nav .menu-item {
		margin-bottom: 24px;
	}
	.socials-list {
		margin-top: 64px;
		width: 100%;
		text-align: left;
	}
	.socials__item {
		width: 48px;
		height: 48px;
	}
	.copyright {
		margin-top: 28px;
		padding: 15px 0 22px;
		flex-direction: column-reverse;
		display: flex;
	}
	.copyright-nav {
		width: 100%;
		text-align: left;
	}
	.footer .desc {
		width: 100%;
		left: 0;
		font-size: 16px;
		line-height: 26px;
		margin-top: 16px;
		font-weight: 400;
	}

	.member-page .section-1 {
		padding: 93px 24px 64px;
	}
	.member-page .section-1 .left {
		width: 100%;
	}
	.member-page .section-1 .right {
		width: 100%;
		padding: 0;
		margin-top: 25px;
	}
	.member-page .section-1 .img {
		width: 94px;
		height: 94px;
	}
	.member-page .section-1 .title {
		font-weight: bold;
		font-size: 32px;
		line-height: 39px;
	}
	.member-page .section-1 .desc {
		margin-top: 16px;
		font-weight: normal;
		font-size: 16px;
		line-height: 145%;
	}
	.member-page .section-1-wrapper {
		position: relative;
	}
	.member-page .section-1 .decor {
		display: none;
	}
	.member-page .section-1 .list .desc {
		margin-top: 0;
	}
	.member-page .section-1 .item .desc + .desc {
		margin-top: 8px;
	}
	.member-page .section-1 .item .wrapper,
	.member-page .section-1 .item .wrapper + .wrapper {
		width: 100%;
		margin-bottom: 24px;
	}
	.member-page .section-1 .item {
		margin-bottom: 24px;
		padding-bottom: 0;
	}
	.member-page .list {
		margin-top: 32px;
		text-align: left;
	}
	.member-page .section-1 .item:last-child {
		margin-bottom: 0;
	}
	.member-page .section-1 .item:last-child b.desc {
		margin-top: 14px;
		display: block;
	}
	.member-page .button {
		margin-top: 8px;
		width: 100%;
		max-width: 342px;
	}
	.about-page .section-1 {
		padding: 80px 0 60px;
	}
	.about-page .section-1-wrapper {
		padding: 0;
		background: linear-gradient(114.16deg, #907793 -0.13%, #4E4150 100.58%);
		padding-bottom: 60px;
	}
	.about-page .section-1:after {
		content: '';
		width: 285px;
		height: 28px;
		background-image: url('../img/decor15.svg');
		background-size: contain;
		background-position: top right;
		background-repeat: no-repeat;
		position: absolute;
		right: 0;
		bottom: 24px;
	}
	.about-page .section-1 .right {
		margin-top: 27px;
		padding: 0 24px;
		text-align: center;
	}
	.about-page .section-1 .title {
		font-size: 32px;
		line-height: 39px;
		font-weight: bold;
	}
	.about-page .section-1 .desc {
		margin: 24px auto 0;
		font-size: 18px;
		line-height: 27px;
		max-width: 100%;
	}
	.about-page .section-2-wrapper {
		text-align: center;
	}
	.about-page .section-2-wrapper .title {
		font-weight: 900;
		font-size: 44px;
		line-height: 53px;
	}
	.about-page .section-2-wrapper .desc {
		margin-top: 24px;
		line-height: 25px;
	}
	.about-page .section-3-wrapper {
		padding: 100px 0 0;
	}
	.about-page .section-3-wrapper .list {
		margin: 60px auto 42px;
		max-width: 450px;
		text-align: left;
	}
	.about-page .section-3-wrapper .list .desc {
		margin-left: 10px;
	}
	.about-page .section-3-wrapper .item {
		width: 50%;
		margin-bottom: 40px;
	}
	.about-page .section-3-wrapper .list .img {
		width: 50px;
		height: 50px;
	}
	.about-page .section-4 {
		padding: 80px 24px 100px;
	}
	.about-page .section-4 .title {
		font-weight: 900;
		font-size: 32px;
		line-height: 39px;
	}
	.about-page .section-4-wrapper .desc {
		margin-top: 40px;
		padding: 0 24px;
		line-height: 25px;
	}
	.about-page .section-4-wrapper .list {
		margin-top: 80px;
	}
	.about-page .section-4-wrapper .item {
		display: block;
		width: 100%;
		max-width: 285px;
		margin: 0 auto 70px !important;
	}
	.about-page .section-4-wrapper .button {
		margin-top: 10px;
	}
	.scholarships-page .section-1 {
		padding: 109px 24px 120px;
	}
	.scholarships-page .title {
		font-weight: bold;
		font-size: 32px;
		line-height: 39px;
	}
	.scholarships-page .desc {
		line-height: 145%;
		margin-top: 22px;
	}
	.accordion-container h3.title {
		font-weight: bold;
		font-size: 21px;
		line-height: 79px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.5);
	}
	.accordion-container h3.title:first-child {
		border-top: 0;
	}
	.accordion-container h3.title:before {
		top: 50%;
		transform: translateY(-50%) scale(-1);
		right: 0;
	}
	.accordion-container h3.title.open:before {
		transform: translateY(-50%) scale(1);
	}
	.scholarships-page .section-1 .left {
		width: 100%;
	}
	.scholarships-page .section-1 .left .img {
		height: 195px;
	}
	.scholarships-page .section-1 .right {
		width: 100%;
		height: auto;
		margin-top: 10px;
		padding: 30px 20px 35px;
	}
	.scholarships-page .section-1 .right .title {
		font-weight: bold;
		font-size: 18px;
		line-height: 27px;
		letter-spacing: 0.5px;
	}
	.scholarships-page .section-1 .right .desc {
		font-weight: normal;
		font-size: 16px;
		line-height: 24px;
	}
	.accordion-container .content-wrrapper + .content-wrrapper {
		margin-top: 50px;
	}
	.accordion-container .content {
		margin: 40px 0 0;
		padding-bottom: 40px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.5);
	}
	.scholarships-page .section-1 .button {
		max-width: 320px;
	}
	.resources-page .section-1 {
		margin-top: 77px;
		padding: 0;
	}
		
	.resources-page .preview-img {
		height: auto;
		width: 100%;
	}
	.resources-page  .section-1 .right {
		width: 100%;
	}
	.resources-page .section-1 .preview-img .img {
		position: static;
	}
	.resources-page .section-1-wrapper {
		position: static;
		display: flex;
		flex-direction: column-reverse;
	}
	.resources-page .preview-img:before {
		display: none;
	}
	.resources-page  .section-1 .left {
		width: 100%;
		margin-top: 40px;
		padding: 0 24px;
		text-align: center;
		padding-bottom: 146px;
	}
	.resources-page  .section-1 .left .desc {
		margin-top: 24px;
	}
	.resources-page  .section-1 .left .button {
		max-width: 360px;
	}
	.resources-page .accordion-container .content {
		margin-top: 20px;
	}
	.resources-page .card {
		width: 100%;
		margin-bottom: 15px;
		font-size: 18px;
		line-height: 144.52%;
		margin-right: 0 !important;
		margin-left: 0 !important;
	}
	.resources-page .card a {
		padding: 10px 10px 10px 43px;
	}
	.resources-page .card.drop {
		padding: 10px 60px 10px 43px;
	}
	.accordion-container h3.title {
		font-weight: 600;
		font-size: 18px;
		line-height: 144.52%;
		padding: 23px 30px 23px 0;
	}
	.network-page .section-1 {
		margin-top: 77px;
		padding: 0;
	}
	.network-page .preview-img {
		height: auto;
		width: 100%;
		position: relative;
	}
	.network-page  .section-1 .right {
		width: 100%;
	}
	.network-page .section-1 .preview-img .img {
		position: static;
	}
	.network-page .section-1-wrapper {
		position: static;
		display: flex;
		flex-direction: column-reverse;
	}
	.network-page .preview-img:before {
		display: block;
		background: rgba(0, 0, 0, 0.42);
		width: 100%;
		height: 100%;
		left: 0;
		top: 0;
	}
	.network-page  .section-1 .left {
		width: 100%;
		margin-top: 40px;
		padding: 0 24px;
		text-align: center;
		padding-bottom: 168px;
	}
	.network-page  .section-1 .left .desc {
		margin-top: 24px;
	}
	.network-page .title {
		font-weight: bold;
		font-size: 32px;
		line-height: 39px;
	}
	.network-page .desc {
		line-height: 145%;
		margin-top: 22px;
	}
	.network-page .section-2 .title {
		font-weight: bold;
		font-size: 32px;
		line-height: 39px;
	}
	.network-page .section-2 .desc {
		margin-top: 24px;
	}
	.network-page .section-2 .list {
		margin-top: 60px;
		padding-bottom: 30px;
	}
	.network-page .section-2 .item {
		width: calc(95% / 2);
		padding-top: calc(95% / 2);
	}
	.network-page .section-2 .item:nth-child(even) {
		margin-left: 2.5%;
		margin-right: 0;
	}
	.network-page .section-2 .item:nth-child(odd) {
		margin-right: 2.5%;
		margin-left: 0;
	}
	.network-page .section-3 {
		padding: 60px 24px 80px;
	}
	.network-page .section-3 .title {
		font-weight: 900;
		font-size: 21px;
		line-height: 25px;
	}
	.network-page .section-3 .desc {
		margin-top: 16px;
		font-size: 16px;
		line-height: 24px;
	}
	.network-page .section-3 .input-container {
		margin-top: 29px;
	}
	.network-page .section-3 .list {
		margin: 97px 0 0;
		padding-bottom: 80px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.25);
		width: calc(100% + 12px);
		margin-left: -6px;
	}
	.network-page .section-3 .item {
		width: calc((100% - 24px) / 3);
		padding-top: calc((100% - 24px) / 3);
		margin: 0 6px 20px !important;
	}
	.network-page .section-3 .item:first-child {
		margin-left: 0 !important;
		margin-right: 6px !important;
	}
	.network-page .section-3 .item:nth-child(3n + 4) {
		margin-left: 0 !important;
		margin-right: 6px !important;
	}
	.network-page .section-3 .item:nth-child(3n) {
		margin-right: 0 !important;
		margin-left: 6px !important;
	}
	.network-page .section-3 .list + .title {
		margin-top: 60px;
	}
	.network-page .section-3-sponsors {
		margin-top: 90px;
		padding-top: 90px;
	}
	.network-page .section-3-sponsors .title {
		font-weight: bold;
		font-size: 24px;
		line-height: 36px;
		margin-bottom: 78px;
	}
	.page-template-template-home .tribe-common .tribe-common-g-row--gutters>.tribe-common-g-col {
		min-width: 270px;
		background: transparent;
	}
	.frm_submit {
		text-align: center;
	}
	.contact-page .section-1 .left {
		width: 100%;
		text-align: center;
	}
	.contact-page .section-1 .right {
		width: 100%;
		position: relative;
		z-index: 1;
	}
	.contact-page .section-1 {
		padding-top: 109px;
		padding: 109px 24px 100px;
	}
	.contact-page .section-1 .left .title {
		font-weight: bold;
		font-size: 32px;
		line-height: 39px;
	}
	.contact-page .section-1 .left .desc {
		margin-top: 24px;
	}
	.contact-page .section-1 .left .desc + .desc {
		margin-top: 32px;
	}
	.contact-page .socials-list {
		margin-top: 36px;
		text-align: center;
		margin-bottom: 74px;
		width: calc(100% + 48px);
		margin-left: -24px;
	}
	.contact-page .socials__item {
		width: 40px;
		height: 40px;
		margin: 0 8px !important;
	}
	.contact-page .section-1 .right {
		padding: 40px 12px 46px;
		text-align: center;
	}
	.with_frm_style textarea {
		height: 120px;
	}
	.advisors-page .section-1 {
		margin-top: 77px;
		padding: 0;
	}
	.advisors-page .preview-img {
		height: auto;
		width: 100%;
	}
	.advisors-page  .section-1 .right {
		width: 100%;
	}
	.advisors-page .section-1 .preview-img .img {
		position: static;
	}
	.advisors-page .section-1-wrapper {
		position: static;
		display: flex;
		flex-direction: column-reverse;
	}
	.advisors-page .preview-img:before {
		display: none;
	}
	.advisors-page  .section-1:after {
		content: '';
		width: 285px;
		height: 28px;
		background-image: url('../img/decor15.svg');
		background-size: contain;
		background-position: top right;
		background-repeat: no-repeat;
		position: absolute;
		right: 0;
		bottom: 62px;
	}
	.advisors-page  .section-1 .left {
		width: 100%;
		margin-top: 40px;
		padding: 0 24px;
		text-align: center;
		padding-bottom: 146px;
	}
	.advisors-page  .section-1 .left .desc {
		margin-top: 24px;
	}
	.advisors-page .section-2 .title {
		font-weight: 900;
		font-size: 21px;
		line-height: 25px;
	}
	.advisors-page .section-2 .desc {
		font-size: 16px;
		line-height: 24px;
		text-align: center;
	}
	.advisors-page .decor {
		display: none;
	}
	.advisors-page .item .left {
		width: 100%;
	}
	.advisors-page .item {
		padding: 45px 20px 168px;
		position: relative;
	}
	.advisors-page .item .text {
		text-align: left;
	}
	.advisors-page .item .text .desc {
		text-align: left;
	}
	.advisors-page .item .right {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		bottom: 50px;
		text-align: center;
	}
	.advisors-page .item .bottom {
		margin-top: 30px;
	}
	.advisors-page .item table {
		display: none;
	}
	.advisors-page .bottom-list {
		display: block;
	}
	.advisors-page .bottom-list {
		text-align: left;
	}
	.advisors-page .bottom-list .title {
		font-weight: normal;
		font-size: 16px;
		line-height: 145%;
		color: #fff;
		font-family: 'Inter', sans-serif;
	}
	.advisors-page .bottom-list .desc {
		font-weight: bold;
		font-size: 16px;
		line-height: 145%;
		color: #fff;
		font-family: 'Inter', sans-serif;
		text-align: left;
		margin: 12px 0 0;
	}
	.advisors-page .bottom-list .desc span {
		display: inline-block;
		vertical-align: middle;
	}
	.advisors-page .bottom-list .desc span + span {
		margin-left: 20px;
	}
	.advisors-page .bottom_item + .bottom_item {
		margin-top: 30px;
	}
	.directory-page .section-1 .left {
		width: 100%;
		margin: 0;
	}
	.directory-page .section-1 .right {
		width: 100%;
		margin-top: 40px;
	}
	.directory-page .section-1 {
		padding: 100px 12px 40px;
		text-align: center;
	}
	.directory-page .title {
		font-size: 24px;
		line-height: 29px;
		margin: 0 auto;
	}
	.directory-page .decor {
		display: none;
	}
}



@media screen and (max-width: 768px) {
	.home-page .section-9-sponsors a {
		width: 50%;
	}
	
	
	.tribe-events-page-template .tribe-events-view {
		padding: 0;
	}
	.tribe-events-page-template .tribe-events .tribe-events-c-top-bar__datepicker-button {
		color: #fff;
	}
	.tribe-common .tribe-common-c-svgicon__svg-fill {
		fill: #fff;
	}
	.tribe-events-page-template  .tribe-events-calendar-latest-past__heading {
		color: #fff;
		position: relative;
	}
	.tribe-events-page-template .tribe-events .tribe-events-c-top-bar__datepicker-button-icon-svg {
		width: 12px;
		margin-top: 3px;
	}
	.tribe-events-page-template .tribe-events .tribe-events-calendar-latest-past__event-date-tag {
		width: 68px;
		padding: 20px 0 0;
	}
	.tribe-events-page-template .tribe-events .tribe-events-calendar-latest-past__event-row--featured .tribe-events-calendar-latest-past__event-date-tag-datetime:after {
		display: none;
	}
	.tribe-events-page-template .tribe-events .tribe-events-calendar-latest-past__event-row {
		background: rgba(255, 255, 255, 0.1);
		box-shadow: 0px 50px 150px rgba(0, 0, 0, 0.25);
		backdrop-filter: blur(25px);
		margin: 11px 0 18px;
	}
	.ast-separate-container .ast-article-post {
		padding: 18px 20px 20px 0;
		background: transparent !important;
	}
	.tribe-events-page-template .tribe-common .tribe-common-g-row--gutters>.tribe-common-g-col {
		padding: 0;
	}
	.tribe-events-page-template .tribe-events-calendar-latest-past__event-description {
		display: block !important;
		font-size: 12px;
		line-height: 15px;
		color: #FFFFFF;
		visibility: visible;
		margin-top: 8px;
	}
	.tribe-events-page-template .tribe-events .tribe-events-calendar-latest-past__event-date-tag-month {
		font-weight: normal;
		font-size: 12px;
		line-height: 15px;
	}
	.tribe-events-page-template .tribe-events .tribe-events-calendar-latest-past__event-date-tag-daynum {
		margin-top: 4px;
		font-weight: bold;
		font-size: 18px;
		line-height: 22px;
	}
	.tribe-events-page-template .tribe-events .tribe-events-calendar-latest-past__event-datetime {
		font-size: 12px;
		line-height: 15px;
	}
	.tribe-events-page-template .tribe-events .tribe-events-calendar-latest-past__event-title-link {
		font-size: 18px;
		line-height: 22px;
	}
	.tribe-events-page-template .tribe-events .tribe-events-c-events-bar__search-button {
		background-image: url('../img/search-loupe.svg');
		background-size: 24px;
		background-position: center;
		background-repeat: no-repeat;
	}
	.tribe-events-page-template .tribe-events .tribe-events-c-events-bar__search-button-icon-svg {
		opacity: 0;
	}
	.tribe-events-page-template .tribe-events .tribe-events-c-events-bar__search-container {
		background: rgba(255, 255, 255, 0.1);
		box-shadow: 0px 50px 150px rgb(0 0 0 / 25%);
		backdrop-filter: blur(25px);
	}
	.tribe-events-page-template .tribe-events .tribe-events-c-search__button {
		background: #B30838;
	}
	.tribe-events-page-template .tribe-events .tribe-events-c-events-bar .tribe-common-form-control-text__input {
		border: 0;
		padding-left: 24px;
	}
	.tribe-events .tribe-events-c-search__input-control-icon-svg {
		display: none;
	}
	.tribe-events-page-template .tribe-events .tribe-events-calendar-month__header-column-title {
		position: relative;
		font-weight: normal;
		font-size: 16px;
		line-height: 145%;
		color: #fff;
		font-family: 'Inter', sans-serif;
	}
	.tribe-events-page-template .tribe-events .tribe-events-c-view-selector--tabs .tribe-events-c-view-selector__content {
		background: rgba(255, 255, 255, 0.1);
		box-shadow: 0px 50px 150px rgb(0 0 0 / 25%);
		backdrop-filter: blur(25px);
		border: 0;
	}
	.tribe-events-page-template .tribe-events .tribe-events-calendar-month__mobile-events-icon--featured {
		opacity: 1;
		background: #fff;
		width: 5px;
		height: 5px;
		border-radius: 50px;
	}
	.tribe-events-page-template .tribe-events-calendar-month__day .tribe-common-c-svgicon {
		display: none;
	} 
	.tribe-events-page-template .tribe-events .tribe-events-calendar-month__day {
		background: transparent !important;
	}
	.tribe-events-page-template .tribe-events .tribe-events-calendar-month__day-date-daynum {
		font-weight: bold;
		font-size: 16px;
		line-height: 145%;
		color: #fff;
		font-family: 'Inter', sans-serif;
	}
	.tribe-events-page-template .tribe-events .tribe-events-calendar-month__day-cell--mobile {
		background: transparent !important;
	}
	.tribe-events-page-template .tribe-events .tribe-events-calendar-month__day--past .tribe-events-calendar-month__day-date-daynum {
		opacity: .5;
		font-weight: normal;
	}
	.tribe-events-page-template .tribe-events-calendar-month-mobile-events {
		position: relative;
	}
	.tribe-events-page-template .tribe-events-c-nav__today {
		display: none;
	}
	.tribe-events-page-template .tribe-events-c-nav__next,
	.tribe-events-page-template .tribe-events-c-nav__prev {
		cursor: pointer !important;
		font-weight: bold;
		font-size: 16px;
		line-height: 145%;
		color: #fff !important;
		font-family: 'Inter', sans-serif;
		opacity: .5;
	}
	.tribe-events-page-template .tribe-events .tribe-events-c-nav__next-icon-svg,
	.tribe-events-page-template .tribe-events .tribe-events-c-nav__prev-icon-svg {
		width: 12px;
	}
	.tribe-events-page-template .tribe-events .tribe-events-c-nav__prev-icon-svg path,
	.tribe-events-page-template .tribe-events .tribe-events-c-nav__next-icon-svg path {
		fill: #fff !important;
		opacity: .5;
	}
	.tribe-events-page-template .tribe-events .tribe-events-c-nav {
		border-top: 1px solid rgba(255,255,255,.12);
	}
	.tribe-events-page-template .tribe-events-view:before {
		opacity: 1;
	}
	.tribe-events-page-template .tribe-events .tribe-events-l-container {
		min-height: 0;
		padding-bottom: 64px;
	}
	.tribe-events-page-template .tribe-events-c-day-marker__date {
		font-weight: normal;
		font-size: 16px;
		line-height: 145%;
		color: #fff ;
		font-family: 'Inter', sans-serif;
	}
	.tribe-events-page-template .tribe-events-c-messages__message-list-item {
		font-size: 16px;
    	line-height: 20px;
	}
	.tribe-events-page-template .tribe-events .tribe-events-calendar-month-mobile-events__mobile-event-datetime-featured-icon {
		display: none;
	}
	.tribe-events-page-template .tribe-events .tribe-events-calendar-month-mobile-events__mobile-event-datetime-featured-text {
		display: none;
	}
	.tribe-events-page-template .tribe-events .tribe-events-calendar-month-mobile-events__mobile-event-datetime {
		font-weight: normal;
		font-size: 14px;
		line-height: 145%;
		color: #fff ;
		font-family: 'Inter', sans-serif;
	}
	.tribe-events-page-template .tribe-events .tribe-events-calendar-month-mobile-events__mobile-event-title-link {
		font-weight: bold;
		font-size: 18px;
		line-height: 145%;
		color: #fff ;
		font-family: 'Inter', sans-serif;
	}
	.tribe-events-page-template .tribe-common .tribe-common-cta--thin-alt {
		font-weight: normal;
		font-size: 14px;
		line-height: 145%;
		color: #fff ;
		font-family: 'Inter', sans-serif;
	}
	.tribe-events-page-template .tribe-events .tribe-events-calendar-day__event-datetime-featured-icon {
		display: none;
	}
	.tribe-events-page-template .tribe-events .tribe-events-calendar-day__event-datetime {
		font-weight: normal;
		font-size: 14px;
		line-height: 145%;
		color: #fff ;
		font-family: 'Inter', sans-serif;
	}
	.tribe-events-page-template .tribe-events .tribe-events-calendar-day__event-title-link {
		font-weight: bold;
		font-size: 18px;
		line-height: 145%;
		color: #fff ;
		font-family: 'Inter', sans-serif;
	}
	.tribe-events-page-template .tribe-events .tribe-events-calendar-day__event--featured:after {
		display: none;
	}
	.tribe-events-page-template .tribe-events .tribe-events-calendar-day__time-separator-text {
		font-weight: normal;
		font-size: 14px;
		line-height: 145%;
		color: #fff ;
		font-family: 'Inter', sans-serif;
	}
	
	.tribe-events-page-template .tribe-events .tribe-events-c-search__button {
		margin-top: 0px;
	}
	.tribe-events-page-template .tribe-events-notices {
		font-weight: bold;
		font-size: 18px;
		line-height: 145%;
		color: #fff ;
		font-family: 'Inter', sans-serif;
	}
	.tribe-events-page-template .tribe-events-schedule h2 {
		font-weight: normal;
		font-size: 14px;
		line-height: 145%;
		color: #fff ;
		font-family: 'Inter', sans-serif;
	}
	.tribe-events-page-template .tribe-events-single-event-title {
		font-weight: bold;
		font-size: 18px;
		line-height: 145%;
		color: #fff ;
		font-family: 'Inter', sans-serif;	
	}
	.tribe-events-page-template .tribe-events .tribe-events-c-top-bar__datepicker-button {
		font-weight: normal;
		font-size: 14px;
		line-height: 145%;
		color: #fff ;
		font-family: 'Inter', sans-serif;
	}
	.tribe-events-page-template .tribe-events-calendar-list__month-separator-text,
	.tribe-events-page-template .tribe-events-calendar-latest-past__heading {
		font-weight: normal;
		font-size: 16px;
		line-height: 145%;
		color: #fff ;
		font-family: 'Inter', sans-serif;
	}
	.tribe-events-page-template .tribe-events .tribe-events-calendar-list__event-row {
		background: rgba(255, 255, 255, 0.1);
		box-shadow: 0px 50px 150px rgb(0 0 0 / 25%);
		backdrop-filter: blur(25px);
		margin: 11px 0 18px;
	}
	.tribe-events-page-template .tribe-events .tribe-events-calendar-list__event-row--featured .tribe-events-calendar-list__event-date-tag-datetime:after {
		display: none;
	}
	.tribe-events-page-template .tribe-events-calendar-list__event-featured-image-wrapper {
		width: 100px;
	}
	.tribe-events-page-template .tribe-events .tribe-events-calendar-list__event-date-tag {
		width: 68px;
    	padding: 20px 0 0;
	}
	.tribe-events-page-template .tribe-events .tribe-events-calendar-list__event-date-tag-weekday {
		font-weight: normal;
		font-size: 12px;
		line-height: 15px;
	}
	.tribe-events-page-template .tribe-events .tribe-events-calendar-list__event-date-tag-daynum {
		margin-top: 4px;
		font-weight: bold;
		font-size: 18px;
		line-height: 22px;
	}
	.tribe-events-page-template .tribe-events .tribe-events-calendar-list__event-datetime {
		font-size: 12px;
   		line-height: 15px;
	}
	.tribe-events-page-template .tribe-events .tribe-events-calendar-list__event-title-link {
		font-size: 18px;
    	line-height: 22px;
	}
	.tribe-events-page-template .tribe-events-calendar-list__event-description,
	.tribe-events-page-template .tribe-events-calendar-list__event-description .read-more a {
		display: block !important;
		font-size: 12px;
		line-height: 15px;
		color: #FFFFFF;
		visibility: visible;
		margin-top: 8px;
	}
	
	.club-application-page .section-1 .title {
		font-weight: bold;
		font-size: 32px;
		line-height: 39px;
	}
	.club-application-page .frm_section_heading {
		padding: 40px 12px 60px;
		text-align: center;
	}
	.club-application-page .section-1 {
		padding: 109px 12px 120px;
	}
	.club-application-page .frm_top_container {
		width: 100%;
		padding: 0;
	}
	.club-application-page .frm_first + .frm_top_container,
	.club-application-page .frm4 + .frm4 {
		padding: 0;
	}
	.club-application-page .with_frm_style textarea {
		height: 180px;
	}
	.privacy-policy .entry-title {
		font-size: 32px;
	}
	.tribe-events-single {
		padding: 40px 0 0;
	}
	.tribe-events .tribe-events-header {
		margin-bottom: 50px;
	}
	.tribe-filter-bar-c-filter__container {
		display: block !important;
		visibility: visible !important;
	}
	.tribe-filter-bar .tribe-filter-bar-c-filter__toggle {
		display: none;
	}
	.tribe-events-header--has-event-search .tribe-filter-bar.tribe-filter-bar--horizontal {
		background: transparent;
		margin-top: 20px;
	}
	.tribe-events-page-template .tribe-events-calendar-list__event-featured-image-wrapper {
		display: none !important;
	}
	.page-template-template-home .tribe-events-header__events-bar {
		display: none !important;
	}
	.tribe-filter-bar .tribe-filter-bar-c-filter,
	.tribe-filter-bar .tribe-filter-bar__filters {
		border: 0;
	}
	.tribe-events .tribe-events-c-events-bar__filter-button-container {
		margin: 0;
		width: 0;
	}
	.tribe-events .tribe-events-c-events-bar__filter-button-icon {
		display: none;
	}
	.tribe-events-header--has-event-search .tribe-filter-bar.tribe-filter-bar--horizontal {
		display: block;
	}
	.tribe-events-pro-photo {
		margin-top: 0 !important;
	}
	.ui-tooltip-content {
		top: 0;
		left: 6px;
	}
	.ui-tooltip-content:before {
		border-left: 5px solid transparent;
		border-right: 5px solid transparent;
		border-bottom: 5px solid black;
		left: auto;
		right: 9px;
		top: -12px;
	}
	.resources-page .section-1 .decor-1 {
		display: none;
	}
	.resources-page .section-1:after {
		content: '';
		width: 285px;
		height: 28px;
		background-image: url(../img/decor15.svg);
		background-size: contain;
		background-position: top right;
		background-repeat: no-repeat;
		position: absolute;
		right: 0;
		bottom: 54px;
	}
	.club-application-page .decor-1,
	.contact-page .decor {
		display: none;
	}
	.sigPad {
		width: calc(100vw - 24px);
	}
	.member-page-modal {
		padding: 24px;
	}
	.member-page-modal .wrapper {
		padding: 40px 12px 46px;
	}
	.home-page .section-4-wrapper .link {
		top: 5px;
	}
	#rtec .rtec-form-field {
		width: 100%;
		padding: 0 !important;
	}
	.rtec-modal {
		top: 0;
		max-height: 100%;
		height: 100%;
	}
}

@media screen and (max-width: 414px) {
	
	.home-page .section-9-sponsors a {
		width: 100%;
	}
	
	.home-page .section-8 .item {
		width: 100%;
	}
	.home-page .section-8 .item .button {
		max-width: 180px;
		margin-top: 43px;
	}
	.home-page .section-8 .list {
		max-width: 180px;
		margin: 0 auto;
	}
	.network-page .section-2 .item {
		width: 100%;
		margin: 0 0 40px !important;
		padding-top: 100%;
	}
	.network-page .section-3-sponsors .img {
		padding: 0;
		width: 100%;
		margin: 0 auto;
		padding: 0 !important;
	}
	.network-page .section-3-sponsors .img + .img {
		margin-top: 60px;
	}
	.input-container {
		padding: 14px 12px 14px 21px;
	}
	.input-container input {
		width: calc(100% - 39px);
		padding: 0;
	}
	.input-container .button {
		position: absolute;
		top: calc(100% + 30px);
		left: 0;
		width: 100%;
		max-width: 100%;
	}
	.advisors-page .list {
		margin-top: 140px;
	}
	.network-page .section-3 .list {
		margin-top: 175px;
	}
	.about-page .section-3-wrapper .list {
		max-width: 330px;
	}
	.frm_half {
		width: 100%;
		padding: 0 !important;
	}
	.about-page .section-3-wrapper .list .img {
		width: 40px;
		height: 40px;
	}
	.club-application-page .frm_submit {
		text-align: center;
	}
	.footer-nav .menu-item {
		margin-right: 0;
	}
	.member-page-modal .close {
		top: 12px;
		right: 12px;
	}
	
}