/*======================
   01. Google fonts
========================*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');
/*======================
   02. Basic css
========================*/
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
	margin: 0;
	padding: 0;
}
a,
.button{
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

html{
	font-size: 62.5%;
}

body {
	font-size: 2.3rem;
	line-height: 1.56;
	font-family: 'Roboto', sans-serif;
	background-color: #fff;
	color: #010202;
	font-weight: 300;
	overflow-x:hidden !important;
}

ol,
ul {
	list-style: none;
}

a:hover {
	text-decoration: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus{
	outline: none;
}

/* page loader  */
#preloader {
	position: fixed;
	background: #fff;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	height: 100vh;
	width: 100vw;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.loader3 {
	width: 5rem;
	height: 5rem;
	display: inline-block;
	padding: 0px;
	text-align: left;
}

.loader3 span {
	position: absolute;
	display: inline-block;
	width: 5rem;
	height: 5rem;
	border-radius: 100%;
	background: #f33737;
	-webkit-animation: loader3 1.5s linear infinite;
	animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
	animation-delay: -0.9s;
	-webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
  	0% {
    	-webkit-transform: scale(0, 0);
    	        transform: scale(0, 0);
    	opacity: 0.8;
  	}
  	100% {
    	-webkit-transform: scale(1, 1);
    	        transform: scale(1, 1);
    	opacity: 0;
  	}
}

@-webkit-keyframes loader3 {
  	0% {
    	-webkit-transform: scale(0, 0);
    	opacity: 0.8;
  	}
  	100% {
    	-webkit-transform: scale(1, 1);
    	opacity: 0;
  	}
}
/*Hamburger-menu START CSS*/
.hamburger-menu {
	cursor: pointer;
	position: absolute;
	right: 15px;
	display: none;
	z-index: 999;
	top: -15px;
}
.hamburger-menu span {
	background: #000000;
	width: 33px;
	height: 5px;
	display: block;
	margin: .5rem 0;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.hamburger-menu:hover .line-top {
	-webkit-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
}
.hamburger-menu:hover .line-bottom {
	-webkit-transform: translateY(100%);
	-ms-transform: translateY(100%);
	transform: translateY(100%);
}
.hamburger-menu .line-top.current {
	-webkit-transform: translateY(200%) rotate(135deg);
	-ms-transform: translateY(200%) rotate(135deg);
	transform: translateY(200%) rotate(135deg);
}
.hamburger-menu .line-center.current {
	opacity: 0;
}
.hamburger-menu .line-bottom.current {
    -webkit-transform: translateY(-325%) rotate(-135deg);
    -ms-transform: translateY(-325%) rotate(-135deg);
    transform: translateY(-153%) rotate(-135deg);
}
/*ofcanvas-menu*/
.ofcavas-menu {
	position: fixed;
	width: 375px;
	min-height: 100vh;
	background: #C61A27;
	z-index: 1025;
	top: 0;
	display: none;
	right: -100%;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	text-align: left;
	overflow: auto;
}

.ofcavas-menu.current {
	right: 0;
}
.ofcavas-menu .menu_lsit li a {
    color: #fff;
    padding: 0;
    font-size: 28px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
}

.ofcavas-menu .menu_lsit li.accordion a::after {
  position: relative;
  content: '\f107';
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  transition: 0.4s;
	display:inline-block;
	left:20px;
}

ul#collapse4 li a::after, ul#collapse5 li a::after, ul#collapse6 li a::after {
	display:none !important;
}

.ofcavas-menu .menu_lsit li a:hover,
.ofcavas-menu .menu_lsit li a.active{
	color: #005B8F;
}
.ofcavas-menu .menu_lsit li{
	margin-bottom: 25px;
}

ul.collapse li a{
	font-size:24px !important;
	font-weight:300 !important;
}

.ofcavas-menu .menu_lsit li:last-child{
	margin-bottom: 0;
}
.ofcavas-menu .menu_lsit {
    margin-top: 108px;
    padding-left: 48px;
}
.cross_icon{
	position: absolute;
	right: 40px;
	top: 50px;
	cursor: pointer;
}
.cross_icon img{
	max-width: 35px;
}
.header_social{
	padding-left: 48px;
	padding-top: 130px;
	position: relative;
}
.header_social .phone_logo{
	position: absolute;
	bottom: 0;
	right: 39px;
}
.header_social ul li a{
	font-size: 38px;
	color: #fff;
}
.header_social ul li a:hover{
	color: #005B8F;
}
.header_social ul li{
	padding-right: 15px;
}
.header_social ul li:last-child{
	padding-right: 0;
}
.header_top{
	background-color: #C61A27;
}
.header_top_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 1.1rem 0;
}
.header_top_box{
	margin-right: 2.5rem;
}
.header_top_box_last{
	margin-right: 0 !important;
}
.header_top_img{
	display: inline-block;
}
.header_top_box img{
	margin-right: 1.3rem;
}
.header_top_box {
    display: inline-flex;
    font-size: 1.8rem;
    line-height: 1.2;
    color: #FFFFFF;
    letter-spacing: -0.6px;
    font-weight: 400;
    align-items: center;
    text-align: left !important;
}
header {
	position: fixed;
	top: 0;
	left: 0;
	padding: 3rem 0;
	z-index: 1024;
	width: 100%;
	-webkit-transition: background 0.3s;
	-o-transition: background 0.3s;
	transition: background 0.3s;
	background-color: #fff;

}

/*sticky START CSS*/
header.sticky {
	-webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, .1);
}
#menu{
	padding-left: 5rem;
}
#menu li {
    display: inline-block;
    color: #fff;
    position: relative;
    padding-left: 1.7rem;
    margin-left: 1.3rem;
}
#menu li:first-child{
	padding-left: 0;
	margin-left: 0;
}
#menu li + li::before{
	position: absolute;
	content: '';
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	height: 3rem;
	width: .2rem;
	background-color: #005B8F;
}

#menu li a {
	font-size: 2.8rem;
	text-transform: capitalize;
	color: #005B8F;
	padding: 0;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	font-weight: 400;
}

#menu li:last-child a{
	padding-right: 0;
}

#menu>li>a.active,
#menu>li>a:hover {
	color: #C61A27;
}
#menu .dropdown_menu{
	position: relative;
}
#menu .dropdown_menu ul {
    position: absolute;
    top: 111%;
    left: 0;
    min-width: 100%;
    background-color: #ffffff;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    -webkit-box-shadow: 0rem 0.3rem 1rem rgb(0 0 0 / 15%);
    box-shadow: 0rem 0.3rem 1rem rgb(0 0 0 / 15%);
    padding: 2rem 2rem 2rem 2rem;
}
#menu .dropdown_menu:hover ul{
	opacity: 1;
	visibility: visible;
}
#menu .dropdown_menu ul li::before{
	display: none;
}
#menu .dropdown_menu ul li {
    display: block;
    padding: 0;
    margin-left: 0;
}
#menu .dropdown_menu ul li:last-child{
	padding-bottom: 0;
}
#menu .dropdown_menu ul li a{
    white-space: nowrap;
    padding-bottom: 1rem;
    display: block;
    color: #005B8F;
}
#menu .dropdown_menu ul li a:hover,
#menu .dropdown_menu ul li a.active{
	color: #C61A27;
}

/*home area*/
.hero_wrapper{
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	height: 90.3rem;
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 82%, 50% 100%, 0 82%);
	        clip-path: polygon(0 0, 100% 0, 100% 82%, 50% 100%, 0 82%);
}
.hero_shape {
    text-align: right;
    padding-top: 9rem;
    position: relative;
    transform: rotate(3deg);
}
.hero_shape a img {
    -webkit-filter: drop-shadow( 2rem 2rem 1rem rgba(0, 0, 0, 0.5));
            filter: drop-shadow( 2rem 2rem 1rem rgba(0, 0, 0, 0.5));
    max-width: 30rem;
	transition:ease-in-out .3s;
}

.hero_shape h2 a {
    position: absolute;
    font-size: 4.0rem;
    line-height: 1.2;
    color: #F9B036;
    font-weight: 700;
    max-width: 18rem;
    right: 6.2rem;
    top: 14.5rem;
    text-align: center;
}

.hero_shape h2 a:hover{
	color:#fff;
}

.meets_content{
	text-align: center;
}
.title {
    font-size: 5rem;
    line-height: 1;
    color: #C61A27;
    font-weight: 300;
    margin-left: auto;
    margin-right: auto;
	margin-bottom:30px;
    
}
.meets_content h2{
	padding-top: 6rem;
	max-width: 100rem;
}
.meets_content h2 span{
	font-weight: 900;
}
.meets_content .p1{
	padding-top: 7rem;
}
.meets_content .p2{
	padding-top: 5.5rem;
}
.meets_content p {
    font-size: 2.2rem;
    max-width: 140rem;
    margin-left: auto;
    margin-right: auto;
	margin-bottom:40px;
	line-height:1.6;
}
.career_wrapper {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 86.7rem;
    -webkit-clip-path: polygon(0 0, 50% 10%, 100% 0, 100% 90%, 50% 100%, 0 90%);
    clip-path: polygon(0 0, 50% 10%, 100% 0, 100% 90%, 50% 100%, 0 90%);
    margin-top: 7rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.career_content{
	text-align: center;
}
.career_content h2{
	font-size: 7rem;
	line-height: 1.2;
	color: #fff;
	font-weight: 300;
	letter-spacing: -0.09rem;
	text-shadow: 0px 0px 1.1rem rgba(0, 0, 0, 0.75);
}
.career_content h2 span{
	font-weight: 900;
}
.career_box_wrapper {
    background-color: #005B8F;
    padding-bottom: 7.5rem;
    padding-top: 16rem;
    margin-top: -10.4rem;
}
.creer_box h3 {
    font-size: 3.4rem;
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
    max-width: 48rem;
}
.creer_box p{
	color: #fff;
	max-width: 42rem;
	padding-top: 4.5rem;
	font-size:2.2rem;
}

.creer_box ul{
	color: #fff;
	max-width: 40rem;
	padding-top: 4.5rem;
}

.creer_box ul li{
	margin-bottom:3px;
	list-style-type: disc;
}

.creer_box a{
	display: inline-block;
	font-size: 1.9rem;
	line-height: 1;
	color: #C61A27;
	font-weight: 900;
	padding: 1rem 1.5rem;
	background-color: #FFFFFF;
	margin-top: 3.5rem;
}
.creer_box a:hover{
	background-color: #C61A27;
	color: #ffffff;
}
.slider_wrapper{
	padding-top: 12.5rem;
}
.slider_heading {
	text-align: center;
	padding-bottom: 5rem;
}
.slider .owl-dots{
	text-align: center;
	width: 100%;
	margin-top: 3.5rem;
}
.slider .owl-dot{
	height: 2.5rem;
	width: 2.5rem;
	border-radius: 50%;
	padding: 0.1rem;
	border: 0.1rem solid #000000 !important;
	background-color: transparent;
}
.slider .owl-dot.active{
	background-color: #000000;
}
.slider .owl-dot{
	margin-right: 1rem;
}
.slider .owl-dot:last-child{
	margin-right: 0;
}
.banner_wrapper{
	background-color: #C61A27;
	margin-top: 10rem;
	height: 17.8rem;
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 66%, 50% 100%, 0 66%);
	        clip-path: polygon(0 0, 100% 0, 100% 66%, 50% 100%, 0 66%);
}
.banner_content, .sterretjes{
    padding-top: 30px;
}

.sterretjes{
	margin-left:-150px;
}

.banner_content h3{
	font-size: 3.8rem;
	line-height: 1.2;
	color: #ffffff;
	font-weight: 400;
}
.banner_content h3 span{
	font-weight: 900;
	color: #F9B036;
}

.banner_img{
	padding-top:15px;
}

.banner_img img{
		max-height:75px;
}

.review-slider{
	margin-top:40px;
}

/*riant area start*/
.meets_wrapper{
	padding-top: 7rem;
}
.riant_hero{
	height: 64.3rem;
}
.riant_content h2 span{
	font-weight: 900;
}
.riant_content p {
    max-width: 101rem;
	margin-bottom:25px;
	font-size:2.2rem;
}

.tekst100 p{
	max-width:100% !important;
}

.riant_content ul{
	margin-top:-20px
}

.riant_content ul li::before {
  content: "\2022";  
  color: #C61A27; 
  font-weight: bold; 
  display: inline-block; 
  width: 1em; 
  margin-left: -1em; 
}

.riant_content p a{
	color:#C61A27;
}

.riant_content p a:hover{
	text-decoration:underline;
}

.riant_content .p1{
	padding-top: 7.5rem;
}
.riant_content .p2{
	padding-top: 4.5rem;
}
.riant_service_box {
    background-color: #009FE3;
    border-radius: 1.2rem;
    padding: 3rem 1rem 3rem 3rem;
}
.riant_service_box h3{
	font-size: 4.1rem;
	line-height: 1.2;
	color: #fff;
	font-weight: 700;
	padding-bottom: 2rem;
}
.riante_service_list li, .riant_service_box > ul li {
    position: relative;
    font-size: 2.4rem;
	line-height: 1.2;
    color: #fff;
    font-weight: 500;
    padding-left: 3rem;
    margin-bottom: 2rem;
}
.riante_service_list li::before, .riant_service_box > ul li::before {
    position: absolute;
    content: '';
    height: .6rem;
    width: .6rem;
    border-radius: 50%;
    background-color: #ffffff;
    left: 0;
    top: 13px;
}

.riant_service_box > ul li a{
	color:#fff;
	text-decoration:underline;
}

.riant_career_wrapper{
	height: 77rem;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	-webkit-clip-path: polygon(50% 9%, 100% 0, 100% 100%, 0 100%, 0 0);
	        clip-path: polygon(50% 9%, 100% 0, 100% 100%, 0 100%, 0 0);
}
.riant_career_wrapper .career_content{
	padding-bottom: 5rem;
}
.header_top2 {
    background-color: #000000;
    position: relative;
    margin-top: -0.15rem;
}
.header_shape {
	position: absolute;
    right: 0.9%;
    bottom: -7rem;
    max-width: 38rem;
}
.contact_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}
.contact_box{
	padding-top: 0rem;
}
.contact_box1{
	padding-right: 9.5rem;
}
.contact_box .footer_heading h4{
	color: #010202;
}
.contact_box .footer_lsit, .contact_box > ul{
	padding-top: 2rem;
}
.contact_box .footer_lsit li,
.contact_box .footer_lsit li a, .contact_box > ul li, .contact_box > ul li a{
	color: #010202;
}

.contact_box .footer_lsit li, .contact_box .footer_lsit li a, .contact_box > ul li, .contact_box > ul li a{
	font-size:2.2rem;
}

.contact_box > ul li a:hover{
	color:#C61A27;
}

.map_img img{
	border-radius: 1.2rem;
}
/*content area start*/
.content_box_wrapper{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 3rem;
}
.content_box .content_img_box {
    height: 12.1rem;
    width: 12.1rem;
    background-color: #3FA535;
    border-radius: 1.7rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-right: auto;
    margin-left: auto;
}
.content_box{
	text-align: center;
	max-width: 18.1rem;
	width: 100%;
}
.content_box p {
    font-size: 1.7rem;
    line-height: 1.2;
    color: #005B8F;
    font-weight: 700;
    max-width: 15rem;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    padding-top: 2.3rem;
	text-transform:uppercase;
}

.content_box_last{
	margin-right: 0;
}
.riant_content .p3{
	padding-top: 6rem;
}

.contant_img {
    position: relative;
}
.content_box_wrapper{
	margin-top: 4rem;
	-webkit-clip-path: polygon(50% 6%, 100% 0, 100% 100%, 0 100%, 0 0);
	        clip-path: polygon(50% 6%, 100% 0, 100% 100%, 0 100%, 0 0);
	padding-top: 8rem;
}
.content_box_wrapper .creer_box{
	border-bottom: none;
	padding-bottom: 0;
}
/*footer area*/
.footer_wrapper{
	margin-top: 15rem;
	padding: 1.5rem 0 6.5rem;
	background-color: #3C3C3B;
}
.footer_main_wrapper{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.footer_heading h4{
	font-size: 2.8rem;
	line-height: 1.2;
	color: #fff;
	font-weight: 500;
}
.footer_lsit{
	padding-top: 4.5rem;
}
.footer_lsit li a,
.footer_lsit li{
	color: #fff;
}
.footer_lsit li a:hover{
	color: #C61A27;
}
.footer_social{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.footer_social li{
	padding-right: 1.5rem;
	line-height: 1;
}
.footer_social li:last-child{
	padding-right: 0;
}
.footer_social li a{
	font-size: 4.5rem;
	color: #fff;
}
.footer_social li a:hover{
	color: #C61A27;
}
.footer_social2{
	padding-top: 1.5rem !important;
}
.footer_partner{
	padding-top: 4.5rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.footer_partner .p2{
	padding-top: 1.5rem;
}
.footer_partner2{
	-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_partner2 img{
	-o-object-fit: contain;
	   object-fit: contain;
}
.footer_partner2 .c2{
	padding-left: 4.4rem;
}
.footer_wrapper2{
	background-color: #000000;
	padding: 4rem 0;
}
.footer_link ul{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.footer_link ul li a,
.footer_link ul li{
	color: #fff;
	font-size:2rem;
}
.footer_link ul li a:hover{
	color: #C61A27;
}
.footer_link ul li{
	padding-right: 5rem;
}
.footer_link ul li:last-child{
	padding-right: 0;
}

.footer_content_box > ul{
	padding-top: 4.5rem;
}

.footer_content_box > ul li{
	color:#fff;
	font-size:2.2rem;
}

.footer_content_box > ul li a{
	color:#fff;
}

.footer_content_box > ul li a:hover{
	color:#C61A27;
}


/*return-to-top START CSS*/

.back-to-top {
	font-size: 24px;
	width: 45px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	display: none;
	position: fixed;
	bottom: 30px;
	right: 20px;
	border-radius: 50%;
	background: #C61A27;
	z-index: 1000;
}

.back-to-top i {
	color: #fff;
}


/* ==== content page design ===== */

/* ofcavas dropdown menu*/

.ofcavas-menu .dropdown i{
	margin-left: 1rem;
}

.ofcavas-menu .dropdown_menu {
	position: relative;
	width: 100%;
	height: 0;
	padding-left: 1.5rem;
	transition: .4s;
	top: 0;
	opacity: 0;
}

.ofcavas-menu .dropdown_menu li {
	margin-bottom: 2rem;
}

.ofcavas-menu .dropdown_menu.active {
	opacity: 1;
	height: auto;
	margin: 3rem 0 2rem 0;
}


/* hero slider area start */

.content_body .hero_slider .item{
	max-height: 700px;
	position: relative;
}

.content_body .hero_slider .item::before {
	content: '';
	width: 70%;
	height: 26.5rem;
	position: absolute;
	left: -3rem;
	bottom: -20rem;
	background: #fff;
	transform: rotate(5deg);
}

.content_body .hero_slider .item::after {
	content: '';
	width: 70%;
	height: 26.5rem;
	position: absolute;
	right: -3rem;
	bottom: -20rem;
	background: #fff;
	transform: rotate(-5deg);
}

.content_body .hero_slider .owl-dots {
	text-align: center;
	width: 100%;
}

.content_body .hero_slider .owl-dot {
	height: 2.5rem;
	width: 2.5rem;
	border-radius: 50%;
	padding: 0.1rem;
	border: 0.1rem solid #000000 !important;
	background-color: transparent;
}

.content_body .hero_slider .owl-dot.active {
	background-color: #000000;
}

.content_body .hero_slider .owl-dot {
	margin-right: 1rem;
}

.content_body .hero_slider .owl-dot:last-child {
	margin-right: 0;
}

/* hero slider area end */
/* projects area start */

.content_body .projects{
	margin: 12rem 0 8rem;
}

.content_body .projects .title{
	font-weight: 900;
}

.content_body .projects a{
	display: block;
	margin: 1rem .3rem;
}

/* projects area end */
/* slider wrapper start */

.content_body .slider_wrapper{
	margin-bottom: 10rem;
	padding-top: 0rem;
}

.content_body .slider_wrapper .title{
	margin-bottom: 40px;
}

.riant_content{
	padding-bottom:50px;
}

img.corina{
	transition:ease-in-out .3s;
}

img.corina:hover{
	 transform: scale(1.1);
-ms-transform: scale(1.1); 
-webkit-transform: scale(1.1);
	transition: ease-in-out .3s;
}

.contactformulier{
	margin-left:-15px;
}

/* s
lider wrapper end */