/*Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1920px) { 
	.container{
		max-width: 1710px;
	}
}
@media (min-width: 1600px) and (max-width: 1919.98px){
	html{
		font-size: 57%;
	}
	.container{
		max-width: 1480px;
	}
}
@media (min-width: 1366px) and (max-width: 1599.98px){
	html{
		font-size: 48%;
	}
	.container{
		max-width: 1290px;
	}
}
@media (min-width: 1200px) and (max-width: 1365.99px){
	html{
		font-size: 43%;
	}
	.container{
		max-width: 1170px;
	}
}
@media (min-width: 992px) and (max-width: 1199.98px){
	html{
		font-size: 37%;
	}
	.container{
		max-width: 970px;
	}
}
@media (max-width: 991.98px) {
	.top_header{
		display: none;
	}
	html{
		font-size: 59%;
	}
	.logo {
	    padding: 2.5rem 0rem 2.5rem 0;
	}
	main {
	    padding-top: 16rem;
	}
	header{
		position: fixed;
		padding: 2.5rem 0;
	}
	header::before{
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: #fff;
		z-index: -1;
	}
	.menu_wrapper{
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
	}
	.menu_wrapper{
		position: fixed;
		top: 0;
		height: 100vh;
		width: 100%;
		left: -100%;
		background-color: var(--dark);
		z-index: -2;
		-webkit-transition: 0.3s;
		-o-transition: 0.3s;
		transition: 0.3s;
		overflow: auto;
		padding-top: 25rem !important;
		padding-bottom: 2rem;
		display: block;
		background-size: cover;
		background-position: center center;
		background-repeat: no-repeat;
		padding-right: calc((100% - 720px) / 2 + 15px);
		padding-left: calc((100% - 720px) / 2 + 15px);
	}
	.menu_wrapper.current{
		left: 0;
	}
	.menu_wrapper::before{
		position: absolute;
		content: '';
		top: 0;
		left: 50%;
		-webkit-transform: translateX(-50%);
		    -ms-transform: translateX(-50%);
		        transform: translateX(-50%);
		width: 0.1rem;
		height: 100%;
		background-color: #666983;
	}
	.hamburger-menu {
		display: -webkit-inline-box;
		display: -ms-inline-flexbox;
		display: inline-flex;
	}
	.menu{
		display: block;
	}
	.menu>ul>li.dropdown_wrap>a::after {
	    -webkit-transform: rotate(-90deg);
	        -ms-transform: rotate(-90deg);
	            transform: rotate(-90deg);
	}
	.menu>ul{
		display: block;
		margin-bottom: 3rem;
	}
	.menu>ul>li{
		max-width: 32rem;
        padding: 0rem !important;
        margin-bottom: 5rem;
	}
	.menu>ul>li.dropdown_wrap>ul {
		background-color: transparent;
		padding-bottom: 0;
	}
	.menu>ul>li.dropdown_wrap:hover {
	    background-color: transparent;
	}
	.menu>ul>li>a {
	    font-size: 2.5rem;
	    font-weight: 700;
	    color: #fff;
	    -webkit-box-pack: justify;
	        -ms-flex-pack: justify;
	            justify-content: space-between;
	    display: -webkit-box;
	    display: -ms-flexbox;
	    display: flex;
	}
	.menu>ul>li.dropdown_wrap{
		padding-left: 0;
		padding-right: 0;
		-webkit-box-shadow: none !important;
		        box-shadow: none !important;
	}
	.menu>ul>li.dropdown_wrap>ul {
	    padding: 0 0rem;
	    -webkit-transition: none;
	    -o-transition: none;
	    transition: none;
	    opacity: 1;
	    pointer-events: all;
	    width: 100%;
	    display: none;
	    top: 0;
	    left: 125%;
	    -webkit-box-shadow: none;
	            box-shadow: none;
	}
	.menu>ul>li.dropdown_wrap>ul>li>a{
		font-size: 2.3rem;
		color: #fff;
	}
	.menu>ul>li.dropdown_wrap:hover>a {
	    color: var(--green) !important;
	}
	.menu>ul>li.dropdown_wrap>ul>li>a:hover,
	.menu>ul>li.dropdown_wrap>ul>li.active>a{
		color: var(--green);
	}
	.menu_bottom {
	    display: -webkit-box;
	    display: -ms-flexbox;
	    display: flex;
	    margin-top: 14rem;
	}
	.menu_bottom ul{
		width: 43.2rem;
	}
	.menu_bottom ul li a{
		color: #fff;
		font-size: 2rem;
		display: inline-block;
		margin-bottom: 1.4rem;
	}
	.menu_bottom ul li a:hover{
		color: var(--green);
	}
	.contact {
	   -webkit-box-orient: vertical;
	   -webkit-box-direction: normal;
	       -ms-flex-direction: column;
	           flex-direction: column;
	   -webkit-box-align: start;
	       -ms-flex-align: start;
	           align-items: flex-start;
	}
	.fa-phone{
		-webkit-transform: rotate(90deg);
		    -ms-transform: rotate(90deg);
		        transform: rotate(90deg);
	}
	.menu_bottom .contact a{
		color: #fff;
		display: -webkit-inline-box;
		display: -ms-inline-flexbox;
		display: inline-flex;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		-webkit-column-gap: 1rem;
		   -moz-column-gap: 1rem;
		        column-gap: 1rem;
		font-size: 1.9rem;
		margin-bottom: 1.5rem;
	}
	.menu_bottom .contact a:hover{
		color: var(--green);
	}
	.menu_bottom .icon_box a {
	    color: #fff;
	    background-color: var(--green);
    	height: 3.8rem;
    	width: 3.8rem;
    	font-size: 1.9rem;
	}
	.menu_bottom .icon_box a:hover{
		color: var(--green);
		background-color: #fff;
	}

	.top_btn{
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
	.right_menu{
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}
	.top_btn .button{
		min-width: 16.2rem;
	}
	.top_btn .button.black_btn{
		margin-bottom: 1.2rem;
	}

	/*	future area*/
	h2, h3{
	    font-size: 4rem;
	}
	.home_area h1 {
	    max-width: 42rem;
	    font-size: 5rem;
	}
	.hero_circle {
	    font-size: 3rem;
	    height: 24rem;
	    width: 24rem;
	}
	.future_box img {
	    height: 5.5rem;
	    margin-bottom: 2.5rem;
	}
	.nature_area{
		background-position: left center;
		padding-top: 0;
	}
	.nature_content {
		padding-top: 8rem;
	}
	.nature_content p {
	    max-width: 70rem;
	}
	.button {
	    min-width: 22rem;
	}
	.project_content {
	    padding: 2.5rem 3rem 8rem;	
	}
	.project_footer {
	    padding: 0 2rem 2rem 3rem;
	}
	.project_box h4 {
	    font-size: 2.4rem;	
	}
	.mt_100 {
	    margin-top: 5rem;
	}
	.news_card h4 {
	    font-size: 2.4rem;
	}
	.mt_70 {
	    margin-top: 3rem;
	}
	.accordion {
		margin-top: 0;
	}
	.cta_title h2 {
	    max-width: 100%;
	    margin-bottom: 1.5rem;
	}

	.cta_area .button_wrapper{
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
	.cta_area .button_wrapper .black_btn{
		margin-bottom: 2rem;
	}
	.support_wrap img {
	    width: 19rem;
	}

	.footer_top{
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
	}
	.footer_top .footer_item{
		max-width: 50%;
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 50%;
		        flex: 0 0 50%;
	}	
	.footer_top .footer_item.mobile_two_list{
		max-width: 100%;
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
	}
	.footer_top .footer_item.mobile_two_list ul{
		-webkit-column-count: 2;
		   -moz-column-count: 2;
		        column-count: 2;
		-webkit-column-gap: 0;
		   -moz-column-gap: 0;
		        column-gap: 0;
	}
	.footer_bottom{
		text-align: center;
		display: block;
		margin-top: 6rem;
	}
	.footer_client {
	    -webkit-column-gap: 5.5rem;
	       -moz-column-gap: 5.5rem;
	            column-gap: 5.5rem;
	}
	footer {
	    padding: 3rem 0 8rem;
	    background-color: var(--dark);
	    color: #fff;
	    line-height: 1.8;
	}
	.project_area::before {
	    height: 38rem;
	}
	.project_area .mt_70{
		margin-top: 5rem;
	}
	.inner_content h1 {
	    font-size: 4rem;
	}
	.contact_area iframe {
	    height: 41rem;
	}
	.consult_box {
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
	}
	.consult_box img{
		width: 100%;
		max-height: 30rem;
	}
	.consult_content {
	    width: 100%;
	    padding: 5rem 5rem;
	}
}

/*Medium devices (tablets, 767px and down)*/
@media (max-width: 767.98px) {
	html{
		font-size: 43%;
	}
	.menu_wrapper{
		padding-right: calc((100% - 540px) / 2 + 15px);
		padding-left: calc((100% - 540px) / 2 + 15px);
	}
}

/*Small devices (landscape phones, 575px and down)*/
@media (max-width: 575.98px) {
	html{
		font-size: 1.7vw;
	}
	.container,
	.menu_wrapper{
		padding-left: 3.5rem;
		padding-right: 3.5rem;
	}
	.logo,
	header.sticky .logo {
	    max-width: 30rem;
	    padding: 1.5rem 0;
	}
	main {
	    padding-top: 13.5rem;
	}
	.right_menu .top_btn{
		display: none;
	}
	.hero_circle{
		display: none;
	}
	.menu_bottom {
	    margin-top: 7rem;
	}
	.menu_bottom .icon_box a {
	    height: 4rem;
	    width: 4rem;
	    font-size: 2rem;
	}
	.dropdown_wrap>*{
		position: relative !important;
		left: auto !important;
		top: auto !important;
		margin-top: 1.5rem;
	}
	.menu>ul>li.dropdown_wrap>ul>li>a{
		padding: 0;
	}
	.mega_wrapper .row{
		margin-left: 0;
		margin-right: 0;
	}
	.mega_wrapper .container{
		padding-left: 0;
		padding-right: 0;
	}
	.mega_content p {
	    font-weight: 400;
	    line-height: 2;
	}
	.mega_wrapper .col{
		margin-bottom: 0;
	}
	.menu>ul>li.dropdown_wrap>a::after {
	    -webkit-transform: rotate(0deg);
	        -ms-transform: rotate(0deg);
	            transform: rotate(0deg);
	}
	.feature_row {
	    margin-top: -6.5rem;
	}
	.future_area::after {
	    height: calc(100% - 6rem);
	}
	.future_area .mt_40 {
	    margin-top: 2rem;
	}
	.future_box{
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		-webkit-column-gap: 2rem;
		   -moz-column-gap: 2rem;
		        column-gap: 2rem;
		text-align: left;
	    border-radius: 2.5rem;
	    padding: 2rem 2rem 2rem;
	}
	.future_box img {
	    margin-bottom: 0;
	    height: 4.5rem;
	    width: 6rem;
	    -o-object-fit: contain;
	       object-fit: contain;
	    -ms-flex-negative: 0;
	        flex-shrink: 0;
	}
	.future_box br{
		display: none;
	}
	.home_area h1 {
	    margin-bottom: 5rem;
	}
	.title_wrap img {
	    width: 26.7rem;
	}
	.future_main {
	    padding: 2rem 0 7rem;
	}
	.video_box {
	    height: 35rem;
	}
	.feature_card img {
	    height: 6.6rem;
	    width: 6.6rem;
	}
	.project_button{
		text-align: center;
		margin-top: 4rem;
	}
	.project_button .button {
	    position: relative;
	    right: auto;
	    top: auto;
	}
	.project_area::before {
	    height: 44.7rem;
	}
	.news_card {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: flex-start;
	}
	.news_card .news_img{
		width: 100%;
		margin-bottom: 2rem;
	}
	.news_card .news_img img{
		max-height: 22rem;
		-o-object-fit: cover;
		   object-fit: cover;
	}
	.support_wrap {
	    position: relative;
	    right: 0;
	    bottom: 0;
	    -webkit-box-pack: center;
	        -ms-flex-pack: center;
	            justify-content: center;
	    font-size: 2.4rem;
	    margin-top: 5rem;
	}
	.cta_content{
		padding-bottom: 0;
	}
	.support_content {
	    padding-top: 3rem;
	}
	.footer_top .footer_item {
	    max-width: 100%;
	    -webkit-box-flex: 0;
	        -ms-flex: 0 0 100%;
	            flex: 0 0 100%;
	}
	.cta_area .button_wrapper{
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		    -ms-flex-direction: row;
		        flex-direction: row;
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: flex-start;
	}
	.footer_top .footer_item.mobile_two_list ul {
	    -webkit-column-count: 1;
	       -moz-column-count: 1;
	            column-count: 1;
	}
	.menu_wrapper::before{
		display: none;
	}
	.menu>ul>li{
		max-width: 100%;
	}
	.menu_bottom{
		display: block;
	}
	.menu_bottom ul{
		width: auto;
	}
	.mobile_menu{
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: flex-start;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
		margin-bottom: 3rem;
	}
	.mobile_menu .white_btn{
		margin-bottom: 1.2rem;
	}
	.menu_wrapper{
		padding-top: 19rem !important;
	}
	.consult_content {	    
		padding: 4rem 4rem;
	}
	.number_box {
	    left: 0;
	    top: -0.5rem;
	}
	.diensten_area .button_wrapper{
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
	}
	.diensten_area .button_wrapper .button{
		width: 100%;
		margin-top: 2rem;
	}
	.future_box i {
	    font-size: 3.2rem;
	    display: block;
	}
}