/*
 Theme Name:     Divi Child Theme
 Theme URI:      http://www.elegantthemes.com
 Description:    Child Theme for Divi Theme by Elegant Themes
 Author:         Divi.world
 Author URI:     http://divi.world
 Template:       Divi
 Version:        5.0.1
*/
 
/* =Ab hier kannst du deine CSS-Anpassungen eintragen
------------------------------------------------------- */


* {
	font-family: 'Raleway', sans-serif;
}

/* adjust position of passwort input field for password protected pages */
.et_password_protected_form{
	margin-top: 200px;
	margin-bottom: 80px;
}

/* makes the header on top of other content, to be changed, if things get overlayed without purpose */
.et_pb_section{
	z-index: 0 !important;
}

/* hides every overflow in x direction (useful whilst creating scaling animimations which would result in scrollbar otherwise)*/
#page-container {
  overflow-x: hidden;
}

/* disables max width of hero images*/
.et_pb_fullwidth_header .et_pb_fullwidth_header_container.center .header-content{
	max-width: none !important;
}

/* background animation used for links */
@keyframes bg {
	from {
    background-color: rgba(30, 176, 249, 0);
  	color: rgba(255, 255, 255, 1);
  }
	to {
    background-color: rgba(30, 176, 249, 1);
  	color: white;
	}
}

/* style links default*/
#page-container p a:not([style]), #page-container span a:not([mouseenter])  {
	text-decoration: none;
	background-color: rgba(30, 176, 249, 0);
	color: rgba(30, 176, 249, 1);
	font-style:bold !important;
	padding: 0 0px;
	font-weight: 700;
}

/*style links during hover*/
#page-container p a:hover, #page-container span a:not([mouseenter]):hover  {
	animation: bg 1s ease;
	background-color: none;
	color: #fff !important;
	padding: 0 0px;
	transition: padding 0.3s ease-out;
	text-decoration: underline;
}

/*
 *
 *
 * START OF EQUALIZING BLOG GRID
 *
 */

.bloggrid .et_pb_salvattore_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.bloggrid article {
        margin-bottom: 20px !important;
	-webkit-box-flex: 1;
	    -ms-flex: 1 0 auto;
	        flex: 1 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

.bloggrid .post-content {
	-webkit-box-flex: 1;
	    -ms-flex: 1 0 auto;
	        flex: 1 0 auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

.bloggrid .column {
        margin-bottom: 20px !important;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

/*
 *
 *
 * START OF EQUALIZING BLOG GRID
 *
 */




/*
 * 
 * 
 * START OF HEADER CUSTOMIZATION
 * 
 * 
 */

/********* Mobile Menu Collapse ********/
 
/**** This hides the sub menu items on mobile ****/
 
#main-header .et_mobile_menu li ul.hide {
	display: none !important;
}

/**** expand area of menu items  ****/
#main-header .et_pb_menu__wrap{
  flex-shrink: 0 !important;
}

@media only screen and (min-width: 981px){
	/**** center menu items on desktop  ****/
  	#main-header .et_pb_menu__wrap{
		justify-content: center !important;
	}
  
	/**** add margin to logo on desktop  ****/
	#main-header .et_pb_menu__logo{
		margin-left: 30px;
	}
}
 
/**** This adjusts the positioning and the background transparency of the parent menu item on mobile ****/
 
#mobile_menu1 .menu-item-has-children {
	position: relative;
}
#mobile_menu1 .menu-item-has-children > a {
	background: transparent;
}
 
/**** This styles the icon and moves it to the right ****/
 
#mobile_menu1 .menu-item-has-children > a + span {
	position: absolute;
	right: 0;
	top: 0;
	padding: 10px 20px;
	font-size: 20px;
	font-weight: 700;
	cursor: pointer;
	z-index: 3000;
}
 
/**** Here you can swap out the actual icons ****/
 
span.menu-closed:before {
	content: "\45";
	display: block;
	color: #fff;
	font-size: 16px;
	font-family: ETmodules;
}
 
span.menu-closed.menu-open:before {
	content: "\43";
}


/*** styles the top level and lower level current menu item ***/
#main-header .current_page_item>a, #main-header .current-menu-ancestor>a{
	color: #1eb0f9 !important;
	font-weight: 900;
}

/*** Moves dropdown icon of dropdown menu at the right place (second level dropdown) ***/

.et-menu li li.menu-item-has-children>a:first-child:after{
	top: 6px !important;
}

/*** Moves search icon to the right side of the menu and centers it vertically ***/
#main-header .et_pb_menu .et_pb_menu__wrap{
	flex-wrap: nowrap !important
}

/* style search input*/
#main-header .et_pb_menu__search input{
	color: #FFFFFF;
}

#main-header .et_pb_menu__search input:after{
	content: '';
}

/* styling the placeholder color of the search before scrolling*/
#main-header .et_pb_menu__search input::placeholder{
	color: rgba(255, 255, 255, 0.8);
}

#main-header .sub-menu a:hover{
	background-color: rgba(0,0,0,0.08);
	color: rgba(30, 176, 249,1) !important;
	opacity: 1;
}


/*** Set the styles of the unscrolled (transparent) and the scrolled (grey background) section that wraps the menu ***/
/*set the defautl background color of the header section*/
.header-menu-section {
	background-color: transparent !important;
	padding: 5px 0 !important;
	-webkit-transition: background-color 0.5s ease-out, padding 0.5s ease-out;
	-moz-transition: background-color 0.5s ease-out, padding 0.5s ease-out;
	-o-transition: background-color 0.5s ease-out, padding 0.5s ease-out;
	transition: background-color 0.5s ease-out, padding 0.5s ease-out;
}

/* Sets the default styles of menu if not scrolled (text and search button and nav icon) */
.header-menu-section a, .header-menu-section .et_pb_menu__icon.et_pb_menu__search-button, .header-menu-section .mobile_menu_bar::before, .header-menu-section{
		color: #fff !important;
}


/*set the background color of the fixed header when scrolling*/
.header-menu-section-scrolled {
	box-shadow: 0px 1px 10px rgba(31, 31, 31, 0.1) !important;
	background-color: #FFFFFF !important;
	/*padding: 5px 0 !important;*/
	-webkit-transition: background-color 0.5s ease-out, padding 0.5s ease-out;
	-moz-transition: background-color 0.5s ease-out, padding 0.5s ease-out;
	-o-transition: background-color 0.5s ease-out, padding 0.5s ease-out;
	transition: background-color 0.5s ease-out, padding 0.5s ease-out;
}

/* sets the stlyes of header content if header was scrolled (text and search button and nav icon)*/
.header-menu-section-scrolled a, .header-menu-section-scrolled .et_pb_menu__icon.et_pb_menu__search-button, .header-menu-section-scrolled .mobile_menu_bar::before, .header-menu-section-scrolled .et_pb_menu__search input, .header-menu-section-scrolled .et_pb_menu__icon.et_pb_menu__close-search-button{
		color: #fff !important;
}

/* styling the placeholder color of the search after scrolling*/
.header-menu-section-scrolled .et_pb_menu__search input::placeholder{
	color: rgba(53,53,53, 0.8) !important;
}


/* Sets new logo on scroll of header  */
/*.header-menu-section-scrolled .et_pb_menu__logo {
	background: url("https://xu-university.com/wp-content/uploads/2019/06/XU-Exponential-University-of-applied-sciences-Logo-black-2.png");
	background-size: contain;
}




.header-menu-section-scrolled .et_pb_menu__logo img{
	visibility: hidden;
}*/

/* make fixed mobile menu scrollable if expanded*/
.et_mobile_menu {   
    overflow-y:scroll!important;
	max-height: 90vh;
    -overflow-scrolling:touch!important;
    -webkit-overflow-scrolling:touch!important;
}

/*** remove weird left margin from header row ***/
.et_pb_row_0_tb_header{
	margin: 0 !important;
}

/*** remove padding from header section, so it sits snug against top ***/
.header-menu-section{
	padding: 0 !important;
}

/*** remove margin from main header at the top ***/
#main-header{
	margin: 0 !important;
}

/*** FOOTER ADJUSTMENT ***/
.et-l--footer {
	z-index: 1 !important;
}

/*
 * 
 * 
 * 
 * END OF HEADER CUSTOMIZATION
 * 
 * 
 */

/*
 * 
 * START OF HubSpot Form customization
 * 
 */

 .hs-form h1 {
        font-size: 34px;
        font-weight: 800;
    }

    .hs-form fieldset:nth-child(1n+2) h1 {
        margin-top: 40px;
    }

    .hs-form {
        font-size: 15px;
        font-weight: 500 !important;
    }

    .hs-form fieldset {
        max-width: 100% !important;
    }


    .hs-form input:not([type=file]):not([type=checkbox]):not([type=radio]):not([type=submit]),
    .hs-form textarea,
    .hs-form select {
        display: inline-block;
        width: 90%;
        font-size: 14px;
        height: 40px;
        line-height: 22px;
        color: #1f1f1f !important;
        border: 1px solid #1f1f1f !important;
        border-radius: 3px;
        outline: none;
    }

	.hs-form .hs-dateinput input, .hs-form input[type=date] {
        width: auto !important;
    }

    .hs-form .input>input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=date]),
    .hs-form textarea,
    .hs-form select {
        width: 100% !important;
        max-width: 100%;
    }

    .hs-form-field {
        margin-top: 18px;
    }

    .hs-form-field label {
        display: inline-block;
        margin-bottom: 6px;
    }

    .hs-form .inputs-list {
        list-style-type: none !important;
        list-style: none;
        padding: 0 !important;
        line-height: normal !important;
        margin: 10px 0;
    }

    .hs-form textarea {
        min-height: 70px;
    }

	@media only screen and (min-width: 481px){

		.form-columns-2 .hs-form-field {
			width: 47% !important;
		}

		.form-columns-2 .hs-form-field:last-child {
			margin-left: 6%;
		}
	}

    .hs-form input[type=checkbox],
    input[type=radio] {
        width: auto;
        height: auto;
        float: left;
        margin: 3px 5px 3px 0;
    }

    .hs-form-booleancheckbox-display {
        line-height: 1.6em;
    }

    .hs-form .actions input[type="submit"] {
        background-color: #1eb0f9;
        padding: 10px 20px;
        border-radius: 6px;
        outline: none;
        width: auto !important;
        margin-top: 22px;
        color: #FFF !important;
        border: none !important;
        cursor: pointer;
    }

    .hs-form .actions input[type="submit"]:hover {
        background-color: #2f29df;
    }

    .hs-form ul {
        list-style-type: none;
        list-style: none;
    }

    .hs-form .legal-consent-container {
        margin-top: 20px;
        font-size: 13px;
        line-height: 1.6em !important;
    }

    .hs-error-msg,
    .hs-error-msgs {
        display: inline-block;
        font-size: 15px !important;
        color: #e42d5b !important;
        margin-bottom: 10px;
    }

    .hs-form-required {
        font-weight: 700;
        margin-left: 3px;
        font-size: 18px !important;
        color: #e42d5b !important;
    }

    .hs-form-radio,
    .hs-form-checkbox {
        margin-bottom: 3px;
    }

/*** HS FORM DARK LAYOUT ***/

 #hs-form-dark .hs-form h1 {
        font-size: 34px;
        font-weight: 800;
    }

 #hs-form-dark .hs-form fieldset:nth-child(1n+2) h1 {
        margin-top: 40px;
    }

 #hs-form-dark .hs-form {
        font-size: 15px;
        font-weight: 500 !important;
    }

 #hs-form-dark .hs-form fieldset {
        max-width: 100% !important;
    }


     #hs-form-dark .hs-form input:not([type=file]):not([type=checkbox]):not([type=radio]):not([type=submit]),
     #hs-form-dark .hs-form textarea,
     #hs-form-dark .hs-form select {
        display: inline-block;
        width: 90%;
        font-size: 17px;
        height: 40px;
        line-height: 22px;
        color: #ccc !important;
        border-bottom: 2px solid #ccc !important;
        border-radius: 3px;
	    background-color: #333 !important;
        outline: none;
    }

	 #hs-form-dark.hs-form .hs-dateinput input,  #hs-form-dark.hs-form input[type=date] {
        width: auto !important;
    }

     #hs-form-dark.hs-form .input>input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=date]),
     #hs-form-dark.hs-form textarea,
     #hs-form-dark.hs-form select {
        width: 100% !important;
        max-width: 100%;
    }

     #hs-form-dark.hs-form-field {
        margin-top: 18px;
    }

     #hs-form-dark .hs-form-field label span {
        display: inline-block;
        margin-bottom: 6px;
		color: white !important;
    }

     #hs-form-dark .hs-form-field legend {
		color: white !important;
		padding-bottom: 10px;
    }

     #hs-form-dark .hs-form .inputs-list {
        list-style-type: none !important;
        list-style: none;
        padding: 0 !important;
        line-height: normal !important;
        margin: 10px 0;
    }

     #hs-form-dark .hs-form textarea {
        min-height: 70px;
    }

	@media only screen and (min-width: 481px){

		 #hs-form-dark .form-columns-2 .hs-form-field {
			width: 47% !important;
		}

		 #hs-form-dark .form-columns-2 .hs-form-field:last-child {
			margin-left: 6%;
		}
	}

     #hs-form-dark .hs-form input[type=checkbox],
    input[type=radio] {
        width: auto;
        height: auto;
        float: left;
        margin: 3px 5px 3px 0;
    }

     #hs-form-dark .hs-form-booleancheckbox-display {
        line-height: 1.6em;
    }

     #hs-form-dark .hs-form .actions input[type="submit"] {
        background-color: #1eb0f9;
        padding: 10px 20px;
        border-radius: 3px;
        outline: none;
        width: auto !important;
        margin-top: 22px;
        color: #FFF !important;
		font-size: 1.2rem;
        border: none !important;
        cursor: pointer;
    }

     #hs-form-dark .hs-form .actions input[type="submit"]:hover {
        background-color: #0a99e1;
    }

     #hs-form-dark .hs-form ul {
        list-style-type: none;
        list-style: none;
    }

     #hs-form-dark .hs-form .legal-consent-container {
        margin-top: 20px;
        font-size: 13px;
        line-height: 1.6em !important;
    }

     #hs-form-dark .hs-error-msg,
     #hs-form-dark .hs-error-msgs {
        display: inline-block;
        font-size: 15px !important;
        color: #e42d5b !important;
        margin-bottom: 10px;
    }

     #hs-form-dark .hs-form-required {
        font-weight: 700;
        margin-left: 3px;
        font-size: 18px !important;
        color: #e42d5b !important;
    }

     #hs-form-dark .hs-form-radio,
     #hs-form-dark .hs-form-checkbox {
        margin-bottom: 3px;
    }

     #hs-form-dark .hs-richtext {
	    color: #ccc;
    }

/*** END OF HS FORM DARK LAYOUT ***/
/*
 * 
 * END OF HubSpot Form customization
 * 
 */











/*
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * CAREFUL YOU ENTER THE DANGER ZONE
 * BAD, UNCOMMENTED CSS BELOW
 * BE SURE WHAT YOU DO
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 */

/*
 * 
 * START OF COMMENT

#et-secondary-nav .menu-item-has-children>a:first-child:after, #top-menu .menu-item-has-children>a:first-child:after {
	position: initial;
}
div.first_row {
	background: rgb(49, 49, 49);
	left: 0px;
	width: 100% !important;
	display:flex;
	flex-direction: auto;
	padding: 50px;
}
@media(max-width: 1200px) {
	div.first_row {
		flex-direction:column;
	}
}
@media (max-width: 800px) {
  #icons_accredited {
    flex-direction: column;
  }
}
@keyframes bg {
	from {
    background-color: rgba(31,24,218, 0);
  	color: rgba(255, 255, 255, 1);
  }
	to {
    background-color: rgba(31,24,218, 1);
  	color: white;
	}
	

}
p a:not([style]), span a:not([mouseenter])  {
  text-decoration: none;
  background-color: rgba(31,24,218, 0);
  color: rgba(31,24,218, 1) !important;
	font-style:bold !important;
	padding: 2px 5px;
}
p a:not([style]):hover, span a:not([mouseenter]):hover  {
  animation: bg 1s ease;
  background-color: rgba(31, 24, 218, 1);
  color: white !important;
}


END OF COMMENT
*/










/* PRELOADER */

/*
 * 
 * 
 * START OF COMMENT

@media(min-width:500px) {
	.preloader {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
	display: none !important;
   background-color: #fefefe;
   z-index: 100000;
   height: 100%;
   width: 100%;
   overflow: hidden !important;
}
.preloader .status {
   width: 150px;
   height: 150px;
   position: absolute;
   left: 50%;
   top: 50%;
   background-image: url("https://xu-university.com/staging/staging/wp-content/uploads/2020/05/compressed.gif");
   background-repeat: no-repeat;
   background-position: center;
   -webkit-background-size: cover;
   background-size: cover;
   margin: -50px 0 0 -50px;
}
}
#main-header {
position: fixed!important
}

#main-header.et-fixed-header {
top: 0!important
}
#top-menu .menu-item-has-children>a {
	padding-bottom: 10px !important;
}
.et_menu_container,#main-header {
height: 50px
}

.admin-bar #main-header:not(.et-fixed-header) #mobile_menu {
top: 97px;
line-height:0;
}

.admin-bar #main-header.et-fixed-header #mobile_menu {
top: 50px;
line-height:0;
}

#main-header .container.clearfix.et_menu_container {
width: 95%
}

#top-menu li.current-menu-ancestor>a,  #top-menu li.current-menu-item>a{
	color: #1f18da !important;
	font-weight: 900 !important;
}

#top-menu li a{
	font-weight: 400;
}

.mobile_menu_bar {
padding-bottom: 9px!important
}

div#et_mobile_nav_menu,div#et_top_search {
margin-top: -14px
}

.et_mobile_menu .menu-item-has-children>a {
background-color: transparent
}

#main-header .et_mobile_menu li ul, .et_pb_fullwidth_menu .et_mobile_menu li ul {
padding-left: 0px;
}

.et_mobile_menu li li {
	padding-left: 0px;
	font-size: 15px;
	margin-top: 7px;
	margin-bottom: 7px;
}

.et_mobile_menu .menu-item-has-children>a:after {
font-family: "ETmodules";
font-size: 22px;
font-weight: 800;
content: "3";
position: relative;
margin-left: 10px
}

.fa {
margin: 10px
}

@media screen and (max-width: 980px) {
.et_header_style_centered #main-header {
position:fixed
}

.et_header_style_centered #main-header .mobile_nav {
background-color: transparent
}

.mobile_nav.closed .select_page {
display: none
}
}

.et_mobile_menu {
top: 50px;
left: 0;
position: fixed;
z-index: 9998;
overflow: scroll!important;
background-color: rgba(10,10,10,0.9)!important;
margin-left: -30px;
padding: 0px;
height: 100%;
width: calc(100% + 60px);
border-top: none;
}

.et_mobile_menu li a {
text-align: center;
font-size: 16px;
border: 0;
padding: 20px 0;
text-transform: uppercase;
letter-spacing: 0;
color:#fff;
}

.mobile_nav ul#mobile_menu .current_page_item>a {
color: #789;
}

.mobile_nav ul#mobile_menu li ul li a {
	font-size: 1.05em!important;
	margin: auto;
	padding-top: 0.2em;
	position: relative;
}
.et_mobile_menu li a:hover {
color: #999;
-webkit-transition: all .2s ease-in-out;
transition: all .2s ease-in-out
}

.mobile_nav.opened .mobile_menu_bar:before {
content: "\4d";
color: #000
}

span.mobile_menu_bar {
z-index: 9999
}
#main-header .et_mobile_menu li ul.hide {
	height: 0px;
	overflow: hidden;
	opacity: 0;
	transition: opacity 0.5s, height 0.8s ease-in-out;
}
#main-header .et_mobile_menu li ul.visible {
	opacity: 1;
	height: 100% !important;
}

#top-menu li li {
	padding: 0;
}
#top-menu li {
	margin-bottom: 20px;
}
#main-header .nav li ul a {
	padding: 5px 20px !important;
}
#main-header .nav li ul {
	border: none !important;
	padding: 10px 0 !important;
	font-size: 12px !important;
	width: fit-content;
	width: -moz-fit-content;
}
header#main-header {
	height: fit-content;
	height: -moz-fit-content;
}
header#main-header .container.clearfix.et_menu_container {
	height: fit-content;
	height: -moz-fit-content;
}
img#logo {
	max-height: 70%;
}
@media only screen and (max-width: 1400px) {
	img#logo {
		max-height: 55% !important;
	}
}
#et-top-navigation {
	padding-left: 300px !important;
}
.et_pb_fullwidth_header_0.et_pb_fullwidth_header .header-content h1 {
	line-height: 5vh;
}
.et_pb_fullwidth_header_0.et_pb_fullwidth_header .et_pb_header_content_wrapper span {
	font-size:5vh;
	line-height:5vh;
}
#main-header .nav li ul li ul {
	top: 0;
	display: inline;
	position: absolute;
	left: 290px !important;
}
@media (max-width: 1000px) {
	.et_pb_fullwidth_header .et_pb_fullwidth_header_container.center .header-content {
		width: 100% !important;
	}
	.et_pb_fullscreen .et_pb_fullwidth_header_container {
		width: 100% !important;
	}
}
.et-fixed-header #logo {
	content: url('https://xu-university.com/staging/staging/wp-content/uploads/2019/06/XU-Exponential-University-of-applied-sciences-Logo-black-2.png');
}
#logo {
	content: url('https://xu-university.com/staging/staging/wp-content/uploads/2019/06/XU-Exponential-University-of-applied-sciences-Logo-white-2.png');
}
@media (max-width: 981px) {
	#logo {
	content: url('https://xu-university.com/staging/staging/wp-content/uploads/2019/06/XU-Exponential-University-of-applied-sciences-Logo-black-2.png');
}
}

div.footer_plus {
	width: 80vw;
	left: 0;
	position: absolute;
  top: 100%;
}
div.footer_wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

div.icons_footer div.img_wrap {
	height: 100%;
	margin: 20px;
}
#main-footer {
	min-height: 800px;
}
.et_pb_fullwidth_header_container {
	position: relative;
}





END OF COMMENT
*/

.et_pb_fullwidth_header_container .et_pb_button {
	
	/*position:absolute;*/
}


/*

@media (max-width: 1250px) {
	#main-footer {
		min-height: 910px;
	}
}
@media (max-width: 980px) {
	#main-footer {
		min-height: 1130px;
	}
}
@media (max-width: 800px) {
	#main-footer {
		min-height: 1320px;
	}
}
@media (max-width: 650px) {
	#main-footer {
		min-height: 1250px;
	}
}
#footer-bottom {
	display: none !important;
}
.lower_footer {
	width: fit-content;
	margin:auto;
	margin-top:50px;
	display:flex;
	flex-direction:column;
	height: 130px;
	justify-content:space-between;
}
.lower_footer ul {
	list-style: none;
	margin:auto;
}
.lower_footer ul li {
	display:inline;
	list-style:none;
}
.lower_footer div.icon-wrap {
	display:flex;
	flex-direction:column;
	justify-content:space-between;
}
#footer-widgets .footer-widget li:before {
	content: "";
	border:none;
	padding: 0;
}
p.copy-info {
	text-align: center;
}
#footer-widgets .footer-widget li {
	padding: 0;
}
div.icon-wrap>a {
	width:fit-content;
	margin: auto;
	cursor: pointer;
}
div.icon-wrap>a>i {
	font-size: 25px;
}
.custom_gallery .et_pb_gallery_item {
	padding: 5px;
}
.custom_gallery .et_pb_gallery_image {
	width: 100%;
	padding-top: 100%;
	position: relative;
	overflow: hidden;
}
.custom_gallery .et_pb_gallery_item img {
	position: absolute;
	top: -9999px;
	bottom: -9999px;
	left: -9999px;
	right: -9999px;
	margin: auto;
	min-width: 100%;
	min-height: 100%;
	max-width: 150%;
	max-height: 150%;
	height: auto;
	width: auto;
}
#switch_elem {
    opacity: 0;
    transition: opacity 0.5s ease;
}
.fullopacity {
    opacity: 1 !important;
}
img.new_logo {
	max-height: 90%;
}
.climate_neutral {
	font-size: 60px;
    line-height: 80px;
    position: absolute;
    text-align: center;
    width: 100%;
    left: 0;
    top: 25vh;
}
#top-menu li li a {
	padding: 5px 20px !important;
	font-size: 12px !important;
	width: 290px !important;
}
@media (max-width:1000px) {
	.climate_neutral {
		top:10vh;
	}
}
.round_icon {
    margin: auto;
    width: 4em;
    height: 4em;
    border: 3px #e42d5b solid;
    border-radius: 50%;
  }
.round_icon_master {
    margin: auto;
    width: 4em;
    height: 4em;
    border: 3px #00d8a3 solid;
    border-radius: 50%;
  }
.icon_span {
	color: #e42d5b;
	font-size: 2.15em;
	font-style: normal;
	font-weight: 400;
	line-height: 1!important;
	font-size-adjust: none;
	font-stretch: normal;
	-webkit-font-feature-settings: normal;
	font-feature-settings: normal;
	-webkit-font-language-override: normal;
	font-language-override: normal;
	-webkit-font-kerning: auto;
	font-kerning: auto;
	font-synthesis: weight style;
	font-variant: normal;
	text-rendering: auto;
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
.icon_span_master {
	color: #00d8a3;
	font-size: 2.15em;
	font-style: normal;
	font-weight: 400;
	line-height: 1!important;
	font-size-adjust: none;
	font-stretch: normal;
	-webkit-font-feature-settings: normal;
	font-feature-settings: normal;
	-webkit-font-language-override: normal;
	font-language-override: normal;
	-webkit-font-kerning: auto;
	font-kerning: auto;
	font-synthesis: weight style;
	font-variant: normal;
	text-rendering: auto;
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}

@media screen and (max-height: 690px) {
	.et_pb_fullwidth_header .et_pb_fullwidth_header_scroll {
		visibility: hidden;
	}
}
#notice-section {
	position: fixed;
	bottom:0;
	left: 0;
	z-index: 999;
	width: 100vw;
	height: fit-content;
}
.et_pb_fullwidth_header .et_pb_fullwidth_header_container.center .header-content {
	width: 90% !important;
	max-width: 90% !important;
	position: relative;
}
.et_pb_fullwidth_header .et_pb_fullwidth_header_container.center .header-content .et_pb_button {
	margin-left: 10px;
	margin-right: 10px;
}
p.title {
	font-size: 60px;
	line-height: 60px;
}
@media screen and (max-width: 1000px) {
	p.title {
		font-size: 40px;
		line-height: 40px;
	}
}
@media screen and (max-width: 700px) {
	p.title {
		font-size: 35px;
		line-height: 35px;
	}
}
#content_fade {
	position:absolute;
	top: 0;
	margin: auto;
	left: 0;
    width: 100%;
}
.content_fade_box {
	height: 100px;
	text-align: center;
    margin: auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
	margin: auto;
    
}

*/


/*
 * 
 * 
li.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-14583 {
	padding-right: 40px !important;
}


*/

.page-id-239268 img#logo {
content: url("https://xu-university.com/wp-content/uploads/2020/06/Logo_XU-School_HORIZONT.png");
}