@font-face {
  font-family: Blinker;
  src: url(../fonts/Blinker/Blinker-Regular.woff2);
}

@font-face {
  font-family: Blinker-Extra-Light;
  src: url(../fonts/Blinker/Blinker-ExtraLight.woff2);
}




@font-face {
  font-family: IbmPlexSans;
  src: url(../fonts/IbmPlexSans/IBMPlexSans-Regular.woff2);
}

@font-face {
  font-family: SourceSans;
  src: url(../fonts/SourceSans/SourceSans3-Regular.woff2);
}


html,
body{
	max-width: 100%;
	overflow-x: hidden;
	margin: 0;
}

.container{
	max-width: 1240px;
	margin: 0 auto;
}

header{
	font-family: SourceSans;
	position: fixed;
    top: 0px;
    z-index: 3;
    width: 100%;
	width: 100%;
    padding-top: 20px;
    padding-bottom: 10px;
}

.header_overlay{
	position: absolute;
    transform: translateY(-200px);
    transition-duration: 0.75s;
    background-color: #fff;
    width: 100%;
    height: 100%;
    left: 0;
}

header .container{
	display: flex;
}

header nav{
	display: flex;
    justify-content: space-between;
    align-items: center;
}



#menu{
	display: flex;
	align-items: center;
	list-style-type: none;
}

.menu-item{
	margin: 0 10px;
}

.menu-item a{
	color: #fff;
	font-size: 18px;
	font-weight: 400;
	line-height: 27px;
	text-decoration: none;
	transition-duration: 0.75s;
}

.cta_button.menu-item a{
	transition-duration: 0.75s;
}


header.scrolled .header_overlay {
    position: absolute;
    transform: translateY(0);
    transition-duration: 0.75s;
    background-color: #fff;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

header.scrolled .menu-item a {
    color: #000064;
    transition-duration: 0.75s;
}

header.scrolled .cta_button.menu-item a{
	color: #995300;
	border: 3px solid var(--german-uds-primary-orange-700, #995300);
	transition-duration: 0.75s;
}

header.scrolled #logo{
	opacity: 0;
	position: absolute;
}

#site_logo_sticky {
    transition-duration: 0;
    opacity: 0;
    position: absolute;
    transition-delay: 0;
}

header.scrolled #site_logo_sticky {
    position: static;
    opacity: 1;
    transition-duration: 0.5s;
    transition-delay: 0.5s; 
}


header.scrolled .hamburger .line{
	background-color: #000064;
}

.menu_open header.scrolled .hamburger .line{
	background-color: #fff;
}

.menu_open header.scrolled #logo{
	opacity: 1;
}

.homeslider_section{
	position: relative;
}

.home_slide.slick-slide {
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
}

.home_slide.slick-slide.slick-current.slick-active{
	display: flex;
	align-items: center;
	justify-content: center;
}

.home_slide.slick-slide .home_slide_text{
	visibility: hidden;
}

.home_slide.slick-slide.slick-current.slick-active .home_slide_text{
	width: 100%;
    max-width: 1240px;
    visibility: visible;
}

.home_slide_text h1{
	color: var(--base-colours-white, #FFF);
	font-family: Blinker;
	font-size: 80px;
	font-weight: 400;
	line-height: 90px;
	margin: 0;
}

.home_slide_text h2 {
    color: #FFF;
    font-family: Blinker-Extra-Light;
    font-size: 72px;
    font-weight: 200;
    line-height: 84px;
    margin: 0;
    max-width: 900px;
    margin-bottom: 50px;
}


.home_slide_text p {
    color: #FFF;
    font-family: SourceSans;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    margin-left: 0;
    margin-bottom: 10px;
}
.home_slide_buttons {
    display: flex;
    align-items: center;
    padding-top: 25px;
}

.home_slide_buttons a{
	display: flex;
	padding: 16px 48px;
	justify-content: center;
	align-items: center;
	gap: 8px;
	border-radius: 0px 0px 12px 0px;
	background: var(--german-uds-primary-orange-500, #FF8B00);
	font-family: SourceSans;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 27px; /* 150% */
	text-decoration: none;
	margin-right: 24px;
}


.home_slide_buttons .join{
	background: var(--german-uds-primary-orange-500, #FF8B00);
	color: #000064;
	border: 3px solid #FF8B00;
	border-radius: 0px 0px 12px 0px;
	margin-right: 24px;
}

.home_slide_buttons .join:hover{
	background-color: #995300;
	color: #fff;
	border: 3px solid #995300;
}


.home_slide_buttons .download{
	background: transparent;
	color: var(--base-colours-white, #FFF);
	border: 3px solid #FFF;
	border-radius: 0px 0px 12px 0px;

}

.home_slide_buttons .download:hover{
	background-color: #995300;
	color: #fff;
	border: 3px solid #995300;
}

@-webkit-keyframes ani-mouse {
	0% {
	opacity: 1;
	top: 29%;
	}
	15% {
	opacity: 1;
	top: 50%;
	}
	50% {
	opacity: 0;
	top: 50%;
	}
	100% {
	opacity: 0;
	top: 29%;
	}
}
@-moz-keyframes ani-mouse {
	0% {
	opacity: 1;
	top: 29%;
	}
	15% {
	opacity: 1;
	top: 50%;
	}
	50% {
	opacity: 0;
	top: 50%;
	}
	100% {
	opacity: 0;
	top: 29%;
	}
}
@keyframes ani-mouse {
	0% {
	opacity: 1;
	top: 29%;
	}
	15% {
	opacity: 1;
	top: 50%;
	}
	50% {
	opacity: 0;
	top: 50%;
	}
	100% {
	opacity: 0;
	top: 29%;
	}
}

.scroll-btn {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    bottom: 30px;
}

.scroll-btn > * {
	display: inline-block;
	line-height: 18px;
	font-size: 13px;
	font-weight: normal;
	color: #7f8c8d;
	color: #ffffff;
	letter-spacing: 2px;
}
.scroll-btn > *:hover,
.scroll-btn > *:focus,
.scroll-btn > *.active {
	color: #ffffff;
}
.scroll-btn > *:hover,
.scroll-btn > *:focus,
.scroll-btn > *:active,
.scroll-btn > *.active {
	opacity: 0.8;
	filter: alpha(opacity=80);
}

.scroll-btn .mouse {
    position: relative;
    display: block;
    width: 30px;
    height: 48px;
    margin: 0 auto 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 3px solid white;
    border-radius: 23px;
}

.scroll-btn .mouse > * {
	position: absolute;
	display: block;
	top: 29%;
	left: 50%;
	width: 8px;
	height: 8px;
	margin: -4px 0 0 -4px;
	background: white;
	border-radius: 50%;
	-webkit-animation: ani-mouse 2.5s linear infinite;
	-moz-animation: ani-mouse 2.5s linear infinite;
	animation: ani-mouse 2.5s linear infinite;
}


.watch_video {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 20px;
    right: 5%;
	color: var(--base-colours-white, #FFF);
	font-family: SourceSans;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 27px;
}

.watch_video img{
	margin-right: 16px;
}


.partners_section{
	padding: 40px 0;
}

.partners_carousel .slick-slide {
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 64px;
}


.partners_carousel .slick-slide img {
    filter: grayscale(100%);
}

.partners_carousel .slick-slide img {
  transition: filter 0.3s ease;
}




section .section_container{
	display: flex;
}

section h4{
	color: var(--german-uds-primary-blue-500, #000064);
	font-family: IbmPlexSans;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 24px;
	margin: 0;
}

section h2 {
    color: var(--german-uds-primary-blue-500, #000064);
    font-family: Blinker;
    font-size: 48px;
    font-style: normal;
    font-weight: 300;
    line-height: 56px;
    margin: 0;
    max-width: 550px;
    margin-bottom: 25px;
}

section p{
	color: var(--german-uds-primary-light-blue-900, #344864);
	font-family: SourceSans;
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: 36px;
}

.section_2{
	background-color: #e7f1ff;
	padding-top: 150px;
	padding-bottom: 200px;
}

.section_2 .column_left {
    padding-right: 5vw;
    max-width: 612px;
}

.section_3 .section_container {
    align-items: center;
    margin-top: 30vh;
}

.section_3 .column_left{
	position: absolute;
	left: 0;
	animation-duration: 2.5s;
}

.section_3 .img_bg .img_container{
	background-image: url(../images/section-3.png);
}

.section_3 .column_left img{
	z-index: 2;
	position: relative;
}

.section_3 .img_bg {
    width: 745px;
    height: 523px;
    position: relative;
}

.section_3 .column_right{
	max-width: 612px;
    margin-left: auto;
}

.section_3 h2{
	max-width: 500px;
}

.section_4 {
    padding-top: 150px;
    padding-bottom: 200px;
    margin-top: 100px;
    position: relative;
    background-image: url(../images/vector-left.svg);
    background-repeat: no-repeat;
    background-size: 300px;
    background-position: 0% 30%;
}

.section_4 h2{
	max-width: 900px;
}

.section_4 .column_left {
    padding-right: 5vw;
    max-width: 900px;
}

.section_4 .column_left h2{
	animation-duration: 2s;
}

.section_4 .column_right .vector {
    position: absolute;
    right: 0;
    top: 0;
    animation-duration: 1.5s;
}

.values_container{
	flex-direction: column;
}

.value_item {
    display: flex;
    align-items: flex-start;
}

.value_item:nth-child(2n+2){
	justify-content: flex-end;
}

.value_item img{
	margin: 40px 0;
	margin-right: 40px;
}

.value_item_text{
	max-width: 364px;
}

.value_item_text h3 {
    color: #000064;
    font-family: Blinker;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    margin-bottom: 16px;
}

.value_item_text p{
	color: #344864;
	font-family: SourceSans;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 27px; /* 150% */
}

.section_5 .section_container {
    align-items: center;
}

.section_5 .column_left{
	position: absolute;
	left: 0;
}

.section_5 .column_right{
	max-width: 612px;
    margin-left: auto;
}

.section_5 	.mobile_screen{
	display: none;
}

.section_cta{
	max-width: fit-content;
	display: flex;
	padding: 16px 48px;
	justify-content: center;
	align-items: center;
	gap: 8px;
	color: #995300;
	font-family: SourceSans;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 27px;
	text-decoration: none;
	border-radius: 0px 0px 12px 0px;
	border: 3px solid var(--german-uds-primary-orange-700, #995300);
	margin-top: 25px;
}

.section_cta:hover{
	background-color: #995300;
	color: #fff;
}

.section_6 {
    background: #E7F1FF;
    padding: 120px 0;
    padding-bottom: 100px;
    border-radius: 80px 0px;
    margin-top: 30vh;
    animation-duration: 1.5s;
}

.team_member:hover{
	cursor: pointer;
}

.section_6 h2 {
    color: var(--german-uds-primary-blue-500, #000064);
    font-family: Blinker;
    font-size: 48px;
    font-style: normal;
    font-weight: 300;
    line-height: 56px;
    margin: 0;
    max-width: 300px;
}

.leaders_container{
	justify-content: space-between;
	align-items: center;
}

.leaders_container .column_right{
	display: flex;
}

.leaders_container .column_right .leader_item{
	margin: 0 40px;
}

section h5{
	color: #000064;
	font-family: Blinker;
	font-size: 32px;
	font-style: normal;
	font-weight: 600;
	line-height: 40px;
	margin: 15px 0;
	margin-top: 25px;
}

section h6{
	color: #344864;
	 font-family: SourceSans;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 27px;
	margin: 0;
}

.team_carousel{
	margin-top: 64px;
}

.team_carousel_item.slick-slide{
	margin-right: 64px;
}

.team_carousel_item.slick-slide img {
    display: block;
    width: fit-content;
    height: 267px;
}

section .team_carousel_item h5{
	color: var(--german-uds-primary-blue-500, #000064);
	font-family: Blinker;
	font-size: 23px;
	font-weight: 600;
	line-height: 31px; 
}

section .team_carousel_item p{
	color: var(--german-uds-primary-light-blue-900, #344864);
	font-family: SourceSans;
	font-size: 18px;
	font-weight: 400;
	line-height: 27px; 
	margin: 0 !important;
}

.custom_dots .slick-dots li {
    width: 80px;
    height: 2px;
    margin-right: 0px;
}

.custom_dots .slick-dots li button:before {
    display: block;
	border-radius: 2px 0px 0px 2px;
	background: #9DB7DD;
    color: transparent !important;
    opacity: 1 !important;
}

.custom_dots .slick-dots li.slick-active button:before {
    background-color: #000064;
    width: 80px;
    height: 2px;
}

.custom_dots .slick-dots {
    position: static;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: left;
    margin-top: 60px;
    margin-left: 20px;
}

.custom_dots .slick-dots li button:before {
	width: 80px;
	height: 2px;
}

.custom_dots .slick-dots li.slick-active button:after {
   font-weight: 700;
}

.custom_dots .slick-dots li:nth-child(1) button:after {
    content: '01';
    top: -15px;
    left: -30px;
    position: relative;
    color: #000064;
	font-family: SourceSans;
	font-size: 18px;
	line-height: 27px; 
}

.custom_dots .slick-dots li:nth-child(2) button:after {
    content: '02';
    top: -15px;
    right: -80px;
    position: relative;
    color: #000064;
    font-family: SourceSans;
	font-size: 18px;
	line-height: 27px; 
}

#popupOverlay{
	display: none;
	position: fixed;
    top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 100, 0.65);
	z-index: 5;
}

.popup {
	  display: none;
	  position: fixed;
	  top: 50%;
	  left: 50%;
	  transform: translate(-50%, -50%);
	  background-color: white;
	  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	  z-index: 1000;
	  width: 1000px;
	  max-width: 100%;
	  border-radius: 0 0 40px 0;
}

.social_media {
    display: none;
    list-style-type: none;
    justify-content: flex-start;
    align-items: center;
    padding-left: 0;
    margin-bottom: 50px;
}

.social_media li{
	background-color: #FF8B00;
	padding: 10px;
	border-radius: 5px;
	margin-right: 8px;
}

.social_media li img{
	width: 20p !Important;
	height: 20px !Important;
}

.team_member_desc{
	display: none;
}

.popup .team_member_desc{
	display: block;
}

#popupContent {
    display: flex;
    width: 100%;
}

#popupContent .social_media{
	display: flex;
}

.popup_column{
	width: 50%;
}

.popup_column.left {
    background-color: #000064;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 33%;
}

.popup_column.left img {
	display: block;
    max-width: 100%;
}

.popup_column.right {
    padding: 0 40px;
    width: 67%;
}

.popup_column.right::-webkit-scrollbar {
  width: 12px;
}

.popup_column.right::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 10px;
}

.popup_column.right::-webkit-scrollbar-track {
  background-color: #000064;
}


.popup_column h2 {
    color: #000064;
    font-family: Blinker;
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
    margin-top: 50px;
    margin-bottom: 0;
}

.popup_column p{
	color: #344864;
	font-family: SourceSans;
	font-size: 18px;
	font-weight: 400;
	line-height: 27px;
	margin-top: 10px;
}

.close_popup {
    position: absolute;
    top: 50px;
    right: 50px;
    z-index: 2;
    cursor: pointer;
}

.section_7{
	padding: 120px 0;
	padding-bottom: 240px;
}

.section_7 .section_container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-end;
}

.section_7 .img_filter{
	background-image: none;
	left: 50%;
	right: 0;
}

.section_7 a{
	text-decoration: none;
}


.container.section_container.course_container{
	max-width: 1540px;
	margin-top: 80px;
}

.course_item{

}

.course_item:nth-child(2) {
    position: relative;
    top: 120px;
    margin: 0 25px;
}

.course_item:nth-child(3){
	position: relative;
	top: 40px;
}

.course_item:nth-child(4) {
    position: relative;
    top: 40px;
	margin: 0 25px;
}
.course_item:nth-child(5) {
    position: relative;
    top: -30px;
	margin: 0 25px;
}

.course_img_container{
	position: relative;
}

.course_item img {
    transition-duration: 1s;
    z-index: 2;
    position: relative;
    margin: 0 auto;
    display: block;
    max-width: 100%;
}

.course_img_container .img_filter{
	border-radius: 0px 0px 40px 0px;
}

.course_img_container:hover > img{
	transform: translate(-2%, -2%);
	transition-duration: 1s;
	z-index: 2;
	position: relative;
}

.course_img_container:hover > .img_filter{
	background-color: #82b4fa;
	transform: translate(2%, 2%);
	transition-duration: 1s;
}

.section_8 {
    position: relative;
    padding: 120px 0;
    padding-bottom: 160px;
}

.section_8 .column_left {
    max-width: 612px;
    margin-right: auto;
}

.section_8 .column_right{
	position: absolute;
	top: 0;
	right: 0;
}

.section_8 img{
	position: relative;
	z-index: 2;
}

.section_9{
	background-color: #000064;
	background-image: url(../images/Background_Be-Part.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.section_9 .section_container {
    padding: 80px 0;
    align-items: center;
    justify-content: space-between;
}

.section_9 h2{
	color: #fff;
	font-family: Blinker-Extra-Light;
	font-size: 48px;
	font-style: normal;
	font-weight: 300;
	line-height: 56px;
}

.section_9 p {
    color: #fff;
    margin: 0;
}

.section_9 #sib_signup_form_1{
	width: 50%;
}

#sib_signup_form_1 p{
	color: #fff;
	font-size: 16px;
	line-height: 24px;
}

#sib_signup_form_1 p a{
	color: #fff;
	font-family: SourceSans;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px; 
}

#sib_signup_form_1 input{
	width: 100%;
	max-width: 525px;
	color: #fff;
	background-color: transparent;
	border: 0 none;
	border-bottom: 1px solid #fff;
	padding-bottom: 10px;
	margin-bottom: 25px;
	outline: none;
}

#sib_signup_form_1 ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
 	color: #fff;
	font-family: SourceSans;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px; 
}

#sib_signup_form_1 ::-moz-placeholder { /* Firefox 19+ */
  	color: #fff;
	font-family: SourceSans;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
}

#sib_signup_form_1 :-ms-input-placeholder { /* IE 10+ */
  	color: #fff;
	font-family: SourceSans;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
}

#sib_signup_form_1 :-moz-placeholder { /* Firefox 18- */
    color: #fff;
	font-family: SourceSans;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
}

#sib_signup_form_1 input[type='checkbox'] { 
	width: 20px;
    height: 20px;
    margin-right: 15px;
    position: relative;
    top: 4px;
}

#sib_signup_form_1 .sib-default-btn {
	max-width: fit-content;
    background-color: #ceced6;
    color: #67679d;
    font-size: 16px;
    line-height: 24px;
    padding-bottom: 0;
    padding: 15px 45px;
    border-radius: 0 0 20px 0;
    margin-top: 30px;
    cursor: pointer;
}

.section_10{
	padding: 120px 0;
	padding-top: 160px;
	background-image: url(../images/section-9-vector.png);
	background-repeat: no-repeat;
	background-position: 0 33%;
	animation-duration: 3s;
}

.youtube-player {
    position: relative;
    width: 640px;
    height: 501px;
    margin: auto;
    cursor: pointer;
}

.youtube-player img {
    width: 100%;
    position: absolute;
    top: 0;
}

.youtube-player.pristine::before {
    content: url('../images/play.svg');
    position: relative;
    z-index: 100000;
    left: 50%;
    top: 43%;
    transition: opacity .2s ease;
    border: 5px solid #82b4fa;
    padding: 0;
    border-radius: 50%;
    width: 63px;
    height: 63px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.youtube-player.pristine:hover::before {
}

.section_10 .column_right{
	display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 132px;
}

.strategy_section{
	background: var(--German-UDS-Primary-Light-Blue-100, #E7F1FF);
	padding-top: 120px;
	padding-bottom: 120px;
}

.strategy_section h2{
	color: var(--German-UDS-Primary-Blue-500, #000064);
	font-family: Blinker;
	font-size: 48px;
	font-weight: 300;
	line-height: 56px; 
	text-align: center;
	margin-bottom: 64px;
}

.strategy_carousel_item{
	position: relative;
}

.strategy_section .slick-slide img {
    display: block;
    width: 100%;
    border-radius: 0px 0px 40px 0px;
    max-height: 370px;
    max-width: calc(100% - 20px);
}

.strategy_carousel_text{
	position: absolute;
	bottom: 0px;
	padding: 40px;
}

section.strategy_section h5{
	color: #FFF;
	font-family: font-family: SourceSans;
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
}

section.strategy_section h6{
	color: var(--Base-Colours-White, #FFF);
	font-family: Blinker;
	font-size: 24px;
	font-weight: 600;
	line-height: 32px; 
}

.strategy_carousel.custom_dots .slick-dots {
    position: absolute;
    bottom: -120px;
}

.strategy_section .section_cta {
    margin-left: auto;
    margin-top: 60px;
}

.strategy_section .section_cta:hover{
	background-color: #995300;
    color: #fff;
}

.section_12{
	background-color: #E7F1FF;
	border-radius: 80px 0px 0px 0px;
	padding: 100px 0;
	position: relative;
}

.section_12 .column_left{
	max-width: 512px;
}

.section_12 .column_right {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.section_12 .column_right img {
    max-width: 85%;
    margin-left: 15%;
}

footer{
	background-color: #000064;
}

footer section h2{
	color: #fff;
	margin-bottom: 50px;
}

footer section h4{
	color: #fff;
}

.footer_top {
    padding: 100px 0;
    background-image: url(../images/footer_bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
    border-bottom: 1px solid #4D4D93;
}

.footer_top .section_container {
    justify-content: space-between;
    padding-bottom: 60px;
}

.footer_row {
    display: flex;
    margin-bottom: 38px;
    flex-direction: column;
}

.footer_row.contactinfo {
    flex-direction: row;
    align-items: flex-start;
}

.footer_item{
	display: flex;
	align-items: center;
	color: var(--Base-Colours-White, #FFF);
	font-family: SourceSans;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px; 
	margin-right: 64px;
	width: 100%;
}

.footer_item.tel{
	margin-bottom: 30px;
}

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

.footer_item img{
	margin-right: 15px;
}

.follow {
    margin-left: 15px;
}

.timetable{
	width: 100%;
}

.time_row{
	display: flex;
}

.time_column {
    margin-right: 50px;
    min-width: 30%;
}

.follow{
	font-family: SourceSans;
	color: #fff;
	font-weight: 700;
}

.footer_bottom{
	padding: 20px 0;
}

.footer_bottom .section_container{
	display: flex;
	justify-content: space-between;
	color: var(--Base-Colours-White, #FFF);
	font-family: SourceSans;
	font-size: 14px;
	font-weight: 400;
	line-height: 21px;
}

.footer_bottom .section_container a {
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}


footer form {
    display: flex;
    width: 611px;
    padding: 32px 40px;
    flex-direction: column;
    align-items: flex-start;
    background-color: #fff;
    border-radius: 0 0 40px 0;
}

footer form h2 {
    color: var(--German-UDS-Primary-Blue-500, #000064);
    font-family: Blinker;
    font-size: 32px;
    font-weight: 300;
    line-height: 40px;
    margin-bottom: 24px;
}

footer .wpcf7-form-control{
	height: 40px;
    display: flex;
    padding: 8px 0px;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
    border: 0 none;
    border-bottom: 1px solid var(--German-UDS-Primary-Blue-500, #000064);
    margin-bottom: 8px;
    width: 100%;
    outline: none;
}

footer .checkbox_container .wpcf7-form-control{
	border-bottom: none;
}

footer form p{
	width: 100%;
	margin: 0;
}

footer .checkbox_container p{
	display: flex;
	align-items: center;
	font-size: 14px;
}

footer ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
 	color: var(--German-UDS-Primary-Blue-300, #4D4D93);
	font-family: SourceSans;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px; 
}

footer ::-moz-placeholder { /* Firefox 19+ */
  	color: var(--German-UDS-Primary-Blue-300, #4D4D93);
	font-family: SourceSans;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
}

footer :-ms-input-placeholder { /* IE 10+ */
  	color: var(--German-UDS-Primary-Blue-300, #4D4D93);
	font-family: SourceSans;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
}

footer :-moz-placeholder { /* Firefox 18- */
    color: var(--German-UDS-Primary-Blue-300, #4D4D93);
	font-family: SourceSans;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
}

footer .wpcf7-form-control.wpcf7-checkbox.wpcf7-validates-as-required {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    margin-right: 10px;
}

footer .wpcf7-list-item {
    display: flex;
    margin-left: 0;
}

.wpcf7-list-item input{
	width: 20px;
	height: 20px;
	position: relative;
	top: 10px;
	margin-right: 12px;
}

.checkbox_container{
	color: #4d4d93;
	font-size: 16px;
    line-height: 24px;
}

.checkbox_container a {
    color: #995300;
    text-decoration: none;
    font-size: 16px;
    line-height: 24px;
}

footer .wpcf7-form-control.wpcf7-submit {
    display: block;
    width: 150px;
    height: 60px;
    background-color: #ff8b00;
    color: #000064;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    border: none;
    border-radius: 0 0 24px 0px;
    margin-top: 30px;
    cursor: pointer;
}

footer .wpcf7-not-valid-tip{
	font-size: 14px;
}

.checkbox_container .wpcf7-not-valid-tip{
	position: absolute;
    width: 100%;
    min-width: 400px;
    top: 40px;
}

.img_bg {
    width: 530px;
    height: 708px;
    position: relative;
}

.img_bg_outer{
	position: relative;
	height: 100%;
}

.img_bg .img_container {
    background-image: url(../images/normal-university.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    transition-duration: 2s;
}


.img_filter{
	  position: absolute;
	  top: 0;
	  left: 0;
	  width: 100%;
	  height: 100%;
	  transition-duration: 2s;
	  z-index: 1;
}


.section_3 .img_filter {
    background-image: url(../images/hover-background-mission.png);
}

.section_8 .img_filter{
	background-image: url(../images/hover-background-your-german-uds.png);
}

.section_10 .img_bg .img_container{
	background-image: url(../images/video-preview.png);
}

.section_10 .img_filter {
    background-image: url(../images/hover-background-video-preview.png);
}

.section_12 .img_bg_outer {
    position: relative;
    width: 632px;
    height: 500px;
}

.section_12 .img_container {
    background-image: url(../images/proud-partner.png);
    height: 100%;
    z-index: 2;
    position: relative;
    transition-duration: 2s;
}

.section_12 .img_bg {
    width: 530px;
    height: 708px;
    position: relative;
}

.section_12 .img_filter {
    background-image: url(../images/section-12-filter.png);
    visibility: hidden;
}

.section_12 .img_bg_outer:hover > .img_filter{
	transition-duration: 2s;
}



/* Privacy & Cookie Policy */
.post-id-468 header,
.post-id-471 header{
	background-color: #000064;
}

.post-id-468 main,
.post-id-471 main {
    margin-top: 150px;
}

.post-id-468 main section p,
.post-id-471 main section p {
	font-size: 20px;
	line-height: 28px;
    text-align: left;
    margin: 0;
    margin-bottom: 10px;
}



/* Responsive Design */


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

	.strategy_carousel.custom_dots .slick-dots {
	    display: none !important;
	}

	.strategy_section .section_cta {
	    margin-left: 0;
	    margin: 0 auto;
	    margin-top: 60px;
	}


	/* Animations */
	.img_bg_outer .img_container:hover{
		transform: translate(-2%, -2%);
		transition-duration: 2s;
	}

	.img_bg_outer img{
		transition-duration: 2s;
		position: relative;
		z-index: 2;
	}

	.img_filter{
		background-image: url(../images/hover-background-why-uds.png);
		background-size: contain;
    	background-repeat: no-repeat;
		transition-duration: 2s;
	}

	.img_bg_outer:hover .img_filter {
		background-repeat: no-repeat;
	    background-size: contain;
		transform: translate(3%, 3%);
		transition-duration: 2s;
	}


	.section_5 .img_container:hover > .img_filter {
	    background-image: none;
	}

	.section_8 .img_container:hover > .img_filter {
	    transform: translate(-3%, -3%);
	    background-image: url(../images/hover-background-video-preview.png);
	    background-size: contain;
	    background-repeat: no-repeat;
	}


	.footer_top .column_left{
		width: 60%;
	}


}

@media only screen and (max-width: 1680px) {

	.section_4 .column_left h2 {
	    max-width: 800px;
	}
  
	.section_5 .column_right {
	    max-width: 40%;
	}


}

@media only screen and (max-width: 1600px) {
  
	.section_6 {
	    margin-top: 20vh;
	}

}


@media only screen and (max-width: 1580px) {


	.container.section_container.course_container {
	    max-width: calc(100% - 100px);
	    padding: 0 50px;
	    align-items: center;
	    justify-content: center;
	}

	.course_item{
		width: 33.333%;
	}


}


@media only screen and (max-width: 1480px) {
  
	.section_3 .column_right {
	    max-width: 40%;
	}

	.section_5 .column_left img{
		max-width: 90%;
	}

}


@media only screen and (max-width: 1440px) {

	.section_4 .column_left h2 {
	    max-width: 750px;
	}

	.section_8 .column_left p {
	    max-width: 450px;
	    margin-left: 0;
	}

}

@media only screen and (max-width: 1340px) {

	.footer_row.contactinfo {
	    flex-wrap: wrap;
	}


}


@media only screen and (max-width: 1280px) {

	#logo {
	    max-width: 180px;
	}

	.home_slide_text .container{
		width: 100%;
		max-width: 90%;
		margin: 0 auto;
	}

	.section_3 .column_right {
	    max-width: 33%;
	}

	.section_3 .img_container img {
	    max-width: 90%;
	}

	.section_4 {
	    background-size: 200px;
	    background-position: 0% 50%;
	    padding-bottom: 120px;
	}

	.section_4 .column_left h2 {
	    max-width: 650px;
	}

	.container.section_container.course_container {
	    margin-top: 30px;
	}

	.section_5 .column_left img{
		max-width: 80%;
	}

	.section_6 {
	    padding-bottom: 60px;
	}

	.section_7 {
	    padding: 100px 0;
	    padding-bottom: 100px;
	}

	.section_7 .section_container {
	    max-width: 90%;
	}

	.section_8 .column_right {
	    top: unset;
	}

	.section_10{
		background-image: none;
		padding: 100px 0;
	}

	.strategy_section {
	    padding-top: 100px;
	    padding-bottom: 100px;
	}

	.section_12{
		padding-bottom: 0;
	}

	.section_12 .section_container {
	    justify-content: space-between;
	}

	.strategy_section h2 {
	    width: 100%;
	    max-width: 100%;
	    text-align: center;
	    margin-bottom: 40px;
	}

	.footer_top .section_container {
	    padding-bottom: 0;
	}


}


@media only screen and (max-width: 1200px) {


	header .container {
	    flex-direction: column;
	    justify-content: center;
	    align-items: center;
	}

	.menu {
	    align-items: center;
	    justify-content: center;
	}


	.home_slide_text h1 {
	    font-size: 50px;
	    line-height: 60px;
	}

	.home_slide_text h2 {
	    font-size: 40px;
	    line-height: 50px;
	    margin-bottom: 25px;
	}

	.container {
	    max-width: 90%;
	    margin: 0 auto;
	}

	section h2 {
	    font-size: 28px;
	    line-height: 36px;
	    max-width: 400px;
	}

	.section_4 .column_right .vector {
	    max-width: 450px;
	}

	.section_6 h2 {
	    font-size: 28px;
	    line-height: 36px;
	}

	.section_9 h2 {
	    font-size: 28px;
	    line-height: 36px;
	}

	.strategy_section h2 {
	    font-size: 28px;
	    line-height: 36px;
	    max-width: 100%;
	}

	section h5 {
	    font-size: 24px;
	    line-height: 32px;
	}

	.section_2 .column_left {
	    padding-right: 5vw;
	    max-width: calc(50% - 5vw);
	}

	.section_4 {
	    padding-top: 100px;
	    padding-bottom: 100px;
	}

	.section_5 .column_left img {
	    max-width: 70%;
	}

	section .team_carousel_item h5 {
	    font-size: 18px;
	    line-height: 28px;
	}

	.course_item:nth-child(5) {
	    top: 0;
	}

}


@media only screen and (max-width: 1080px) {

	.section_2 {
	    padding-bottom: 00px;
	}

	.section_2 .column_left {
	    margin-bottom: 50px;
	}

	.section_3 .section_container {
	    margin-top: 100px;
	}

	section .section_container {
	    flex-direction: column;
	}

	.section_6 h2 {
	    width: 100%;
	    max-width: 100%;
	}

	.leaders_container .column_right {
	    margin-top: 30px;
	}

	.section_7 .section_container {
	    align-items: center;
	}

	.section_10 .img_bg {
	    height: 500px;
	}

}


@media only screen and (max-width: 1024px) {

	/* Animations */
	.img_filter{
		display: none;
	}

	header .container {
	    flex-direction: row;
	    align-items: center;
	    justify-content: space-between;
	}

	#logo_container{
		z-index: 3;
	}

	header.scrolled .menu-item a {
    color: #fff;
    transition-duration: 0.75s;
	}

	header.scrolled .cta_button.menu-item a{
		color: #fff;
		border: 3px solid var(--german-uds-primary-orange-700, #fff);
		transition-duration: 0.75s;
	}

	.mobile li a {
	     flex: 3;
	     text-align: center;
	     text-decoration: none;
	     padding: 10px;
	}

	.cta_button.menu-item a {
	    background-color: ;
	    max-width: 300px;
	    margin: 20px auto;
	}

	.partners_carousel .slick-slide img {
	    max-width: 100px;
	}

	.section_2 {
	    padding-top: 80px;
	    padding-bottom: 80px;
	}

	.section_2 .img_bg{
		position: static;
	}

	.section_3{
		padding-top: 80px;
	}

	.section_3 .section_container {
	    flex-direction: column;
	   	margin-top: 0;
	}

	.section_3 .column_left {
	    position: static;
	}

	.section_3 .column_right {
	    max-width: 100%;
	    margin: 0 auto;
	    margin-top: 40px;
	}

	.section_4 {
	    display: flex;
	    background-image: none;
	    flex-direction: column;
	    width: 100%;
	    max-width: 100%;
	    padding-top: 0;
	    padding-bottom: 30px;
	   	margin-top: 60px;
	}

	section h2{
		max-width: 100%;
	}

	.section_4 .column_right .vector {
	    display: none;
	}

	section .section_container{
		width: 100%;
	}

	.value_item:nth-child(2n+2) {
	    justify-content: flex-start;
	}

	.value_item_text {
	    display: flex;
	    flex-grow: 1;
	    flex-direction: column;
	    max-width: 600px;
	}

	.section_5 .column_left {
	    position: static;
	}

	.section_5 .section_container {
	    flex-direction: column;
	}

	.section_5 .column_left img {
	    max-width: 100%;
	    margin: 0 auto;
	    display: block;
	}

	.section_5 .column_right {
	    max-width: 100%;
	    margin: 0;
	}

	.section_6 {
	    padding-top: 60px;
	    padding-bottom: 30px;
	    border-radius: 32px 0 0 0px;
	   	margin-top: 80px;
	}

	.section_6 .container{
		flex-direction: column;
	}

	.section_6 h2 {
	    max-width: 100%;
	    margin-bottom: 40px;
	}

	.popup_column.right {
	    max-height: 100vh;
	    overflow-y: scroll;
	}

	.custom_dots .slick-dots {
	    text-align: center;
	    margin-left: 0px;
	}

	.custom_dots .slick-dots li {
	    width: auto;
	    height: 2px;
	    margin-right: 0px;
	}

	.custom_dots .slick-dots li:nth-child(1) button:after {
	    display: none;
	}

	.custom_dots .slick-dots li:nth-child(2) button:after {
	    display: none;
	}

	.custom_dots .slick-dots li button:before {
	    width: 10px;
	    height: 10px;
	    border-radius: 50%;
	}

	.custom_dots .slick-dots li.slick-active button:before {
	    width: 10px;
	    height: 10px;
	    border-radius: 50%;
	}

	.section_7{
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.container.section_container.course_container {
	    align-items: flex-start;
	}

	.course_item {
    	width: 100%;
    	margin: 0 !important;
    	margin-bottom: 50px !important;
    	top: 0 !important;
	}

	section.section_7 h5{
		text-align: center;
	}

	section.section_7 h6{
		text-align: center;
	}

	.section_8 {
	  padding-top: 30px;
	  padding-bottom: 60px;
	}

	.section_8 .section_container{
		flex-direction: column;
	}

	.section_8 .column_right{
		position: static;
	}

	.section_8 .column_right img {
	    position: static;
	    margin-top: 60px;
	    margin-bottom: 30px;
	}

	.section_10{
		padding-top: 50px;
	}

	.section_10 .section_container{
		display: flex;
		flex-direction: column;
	}

	.section_10 .img_bg {
	    width: auto;
	    height: 280px;
	    position: relative;
	    margin: 0 auto;
	}

	.section_10 .img_bg .img_container {
	    background-image: url(../images/video-preview.png);
	    background-size: contain;
	}

	.section_10 .column_right {
	    padding: 0;
	    margin-top: 40px;
	}

	.strategy_section{
		padding-bottom: 60px;
	}

	.strategy_section .slick-slide img {
	    height: 300px;
	}

	.strategy_carousel.custom_dots .slick-dots {
	    position: static;
	}

	.strategy_section .section_cta {
	    margin: 0 auto;
	}

	.section_12 .section_container {
	    justify-content: flex-start;
	    align-items: flex-start;
	    flex-direction: column;
	}

	.section_12 .column_right {
	    margin-left: 0;
	    margin-top: 50px;
	}

	footer{
		padding-top: 60px;
		padding-bottom: 0;
	}

	.footer_top .section_container {
	    flex-direction: column;
	    padding-bottom: 0px;
	}

	footer form {
	    width: 100%;
	    max-width: calc(100% - 80px);
	    margin-top: 40px;
	}

	.footer_top{
		padding-top: 0;
		padding-bottom: 0;
	}

	#footer_menu_container{
		justify-content: flex-start;
	}




}


@media only screen and (max-width: 991px) {

	.home_slide.slick-slide {
	    height: 80vh;
	}

	.scroll-btn {
	    bottom: 10px;
	}

	.section_2{
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.section_2 .section_container{
		flex-direction: column;
	}

	.section_2 .column_left {
	    max-width: 100%;
	    margin-bottom: 40px;
	}

	.section_2 .img_bg {
	  	margin: 0 auto;
	}

	.section_4 {
	    margin-top: 30px;
	}

	.popup {
	    display: none;
	    position: fixed;
	    top: 0;
	    left: 0;
	    transform: unset;
	    height: 100vh;
	}

	.close_popup {
	    top: 270px;
	    right: 50px;
	}

	#popupContent {
	    background-color: transparent;
	    flex-direction: column;
	}

	.popup_column.left {
	    width: 100%;
	    margin-top: 0;
	    height: 250px;
	}

	.popup_column.left img {
	    display: block;
	    width: auto;
	    max-width: 300px;
	    height: 200px;
	    margin: 0 auto;
	}

	.popup_column.right {
	    width: 80%;
	    max-height: 60vh;
	    padding: 0px 10%;
	    margin: 0 auto;
	    margin-top: 20px;
	}

	.popup_column h2 {
	    font-size: 24px;
	    line-height: 32px;
	    margin-top: 50px;
	}

	.section_8 .column_right img {
		max-width: 100%;
	   	display: block;
	    margin: 0 auto;
	    margin-top: 60px;
	}

	.section_10 img{
		display: block;
		margin: 0 auto;
	}

	.section_12 .column_right{
		width: 100%;
	}

	.section_12 .column_right .img_container{
		margin: 0 auto;
	}

	.strategy_section {
	    padding-top: 60px;
	}

	.footer_top .section_container {
	    padding-bottom: 0;
	}

	/* Privacy & Cookie Policy */
	.post-id-468 .text_editor_section .container,
	.post-id-471 .text_editor_section .container
	 {
	    display: flex;
	    flex-direction: column;
	    max-width: 80%;
	}


	.post-id-468 main ,
	.post-id-471 main{
		padding-bottom: 0px;
		margin-top: 100px; 
	}



}

@media only screen and (max-width: 962px) {

	.section_2 .img_bg {
	    height: 500px;
	}

	.section_7 {
	    padding-bottom: 0;
	}


}



@media only screen and (max-width: 768px) {

	.section_2 .img_bg .img_container{
		background-position: center;
	}

	.section_4 {
	    padding-bottom: 0;
	}

	.section_7 {
	    padding-bottom: 30px;
	}

	.section_8 .column_left p {
	    max-width: 100%;
	}

	.section_12 {
	    padding-bottom: 60px;
	}

	.section_12 .section_container {
	    flex-direction: column;
	}

	.section_12 .column_right img {
	    max-width: 100%;
	    margin-left: 0;
	    margin-top: 50px;
	}

}


@media only screen and (max-width: 767px) {

	header.scrolled .menu-item a {
    	color: #fff;
	}

	header.scrolled .cta_button.menu-item a {
	    color: #fff;
	    border: 3px solid var(--german-uds-primary-orange-700, #fff);
	    transition-duration: 0.75s;
	}

	.cta_column{
		width: 100%;
	}

	.section_cta {
	    width: 100%;
	    max-width: calc(100% - 100px);
	}

	.home_slide.slick-slide {
	    padding-bottom: 100px;
	    max-height: 60vh;
	}

	.home_slide_text{
		padding-top: 100px;
	}

	.home_slide_text h1{
		font-size: 32px;
		line-height: 40px;
		max-width: 320px;
	}

	.home_slide_text h2{
		font-size: 32px;
		line-height: 40px;
		max-width: 320px;
	}

	.home_slide_text p{
		color: var(--Base-Colours-White, #FFF);
		font-size: 18px;
		line-height: 26px;
		font-weight: 400;
		margin-bottom: 30px;
	}

	.home_slide_buttons {
	    flex-direction: column;
	    align-items: flex-start;
	}

	.home_slide_buttons a {
	    width: 100%;
	    max-width: 280px;
	    margin-bottom: 16px;
	    padding: 10px 20px;
	}

	.scroll-btn {
    	z-index: 2;
	}
	
	.section_2 .column_50.column_right{
		overflow: hidden;
	}

	.section_2{
		padding-top: 60px;
		padding-bottom: 0px;
	}

	.section_2 .section_container{
		flex-direction: column;
	}

	.section_2 .column_left {
	    max-width: 100%;
	    margin-bottom: 40px;
	}

	.section_2 .img_bg {
	    margin: 0 auto;
	    height: 530px;
	}

	.img_bg{
		background-color: unset;
	}

	.img_bg .img_container {
	    background-image: url(../images/normal-university-mobile.png);
	    background-size: auto;
	    background-repeat: no-repeat;
	    position: static;
	}

	.section_3 {
    	padding-top: 30px;
	}

	.section_3 .section_container {
	    flex-direction: column-reverse;
	}

	.section_3 .column_left img {
	    display: block;
	    max-width: 90%;
	    margin: 0;
	    margin-top: 30px;
	    margin-bottom: 60px;
	}

	.section_3 .column_left img {
	    max-width: 100%;
	    margin-left: -20px;
	}

	.section_3 .img_bg {
	    width: 100vw;
	    height: 50vh;
	    margin: 40px 0;
	}

	.value_item {
	    display: flex;
	    align-items: center;
	    flex-direction: column;
	    align-items: flex-start;
	    margin-bottom: 30px;
	}

	.value_item img {
	    margin-top: 0;
	    margin-bottom: 0;
	    width: 120px;
	}

	.section_4 {
	    padding-bottom: 0;
	    margin-top: 0;
	}

	.section_5 .section_cta {
	    width: 100%;
	    max-width: calc(100% - 100px);
	}

	.desktop_screen{
		display: none !important;
	}

	.mobile_screen{
		display: block;
	}

	.leaders_container .column_right {
	    display: flex;
	    flex-direction: column;
	}

	.leaders_container .column_right .leader_item {
	    margin: 0px;
	}

	.leader_item.team_member img{
		max-width: 100%;
	}

	.team_carousel_item.slick-slide {
	    margin-right: 0;
	}

	.team_carousel_item.slick-slide img {
	    margin: 0 auto;
	}

	section .team_carousel_item h5{
		text-align: center;
	}

	section .team_carousel_item h6{
		text-align: center;
	}

	.section_7 {
		padding-bottom: 30px;
	}

	.section_7 .section_container {
	    flex-direction: column;
	    align-items: flex-start;
	}

	.section_7 h2{
		margin-bottom: 0;
	}

	.course_item {
	    width: 100%;
	    padding-bottom: 25px;
	}

	.course_item:nth-child(2) {
	    margin: 0;
	}

	.section_8 {
	    padding-top: 0;
	    padding-bottom: 30px;
	}

	.section_8 .column_right img {
	    max-width: 100%;
	}

	.section_8 .section_cta {
	    width: 100%;
	    max-width: calc(100% - 100px);
	}

	.section_9 .section_container {
	    flex-direction: column;
	    padding: 64px 0;
	}

	.section_9 #sib_signup_form_1 {
	    width: 100%;
	    margin-top: 40px;
	}

	.section_10{
		padding-bottom: 60px;
	}

	.section_10 .column_left{
		overflow: hidden;
	}

	.section_10 .section_cta {
	    max-width: calc(100% - 100px);
	}

	.section_11 .section_cta {
	    max-width: calc(100% - 60px);
	    padding: 20px 30px;
	}

	.youtube-player.pristine::before {
	    left: 38vw;
	    top: 43%;
	}

	.strategy_section {
	    padding-bottom: 50px;
	    padding-top: 25px;
	}

	.strategy_section h2 {
	    margin-bottom: 30px;
	}

	.strategy_section .slick-slide img {
	    width: auto;
	    margin: 0 auto;
	}

	.strategy_section .slick-slide img {
	    width: 100%;
	    height: auto;
	    margin: 0 auto;
	}

	section.strategy_section h6 {
	    font-size: 18px;
	    line-height: 28px;
	}

	.section_10 .column_left img{
		max-width: 100%;
	}

	.section_12 {
	    padding-top: 60px;
	    padding-bottom: 10px;
	}

	.section_12 .section_container {
	    width: 100%;
	    flex-direction: column;
	}

	.section_12 .column_right img {
	    margin-top: 0;
	}

	.section_12 .section_cta {
	    max-width: calc(100% - 100px);
	}

	footer{
		padding-top: 30px;
		padding-bottom: 30px;
	}

	.time_column {
	    min-width: 50%;
	}

	footer .checkbox_container p {
	    display: block;
	    width: 100%;
	    max-width: 100%;
	    line-height: 22px;
	}

	footer .wpcf7-form-control.wpcf7-submit{
		width: 100%;
	}

	.wpcf7-spinner{
		position: absolute;
	}

	.footer_top {
	    border-bottom: none;
	}

	.footer_bottom{
		border-top: 1px solid var(--German-UDS-Primary-Blue-300, #4D4D93);
		padding-top: 30px;
		margin-top: 40px;
	}

	.footer_bottom .section_container {
	    flex-direction: column;
	}

	.footer_bottom_right{
		margin-top: 20px;
	}

}


@media only screen and (max-width: 668px) {


	.section_5 .column_left {
	    width: 100%;
	}

	.section_5 .column_left img {
	    width: 100%;
	}

	.container.section_container.course_container {
	    max-width: calc(100% - 40px);
	    padding: 0 20px;
	}


}


@media only screen and (max-width: 400px) {

	.scroll-btn .mouse {
	    width: 25px;
	    height: 40px;
	    margin-bottom: 0;
	}

	.section_2 .img_bg .img_container {
	    background-position: left;
	}

	.course_item {
	    padding-bottom: 0;
	    margin-bottom: 25px !important;
	}

}




.partners_section {
  display: none;
}