/*======================
   01.fonts
========================*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
	font-family: 'All Round Gothic';
	src: url('../fonts/AllRoundGothic-Bold.eot');
	src: url('../fonts/AllRoundGothic-Bold.eot?#iefix') format('embedded-opentype'),
	  url('../fonts/AllRoundGothic-Bold.woff2') format('woff2'),
	  url('../fonts/AllRoundGothic-Bold.woff') format('woff'),
	  url('../fonts/AllRoundGothic-Bold.ttf') format('truetype');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

:root{
	--dark_main: #000;
	--red_main: #EA5C35;
	--olive_main: #707952;
	--light_red: #FADED6;
	--secondary: #C3922B;
	scroll-behavior: inherit;
}

/*======================
   02. Basic css
========================*/
::-moz-selection{
	background-color: var(--red_main);
	color: #fff;
}
::selection{
	background-color: var(--red_main);
	color: #fff;
}
html{
	font-size: 62.5%;
}
a, button, img{
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
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;
}
body {
	line-height: 1.5;
	font-family: "Roboto", sans-serif;
	background-color: #fff;
	color: var(--dark_main);
	font-weight: 400;
	font-size: 2rem;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus{
	outline: none;
}
a{
	color: inherit;
}
a:hover{
	color: var(--red_main);
}
h1, h2, h3, h4, h5, h6{
	font-family: 'All Round Gothic';
	font-weight: 700;
}
h1 span, h2 span, h3 span, h4 span, h5 span, h6 span{
	color: var(--red_main);
}
h1{
	font-size: 7rem;
	line-height: 1;
}
h2{
	font-size: 7rem;
	line-height: 1.1;
}
h3{
	font-size: 6rem;
	line-height: 1.1;
}
h4{
	font-size: 4.4rem;
	line-height: 1.1;
}
h5{
	font-size: 3.4rem;
	line-height: 1.1;
}
h6{
	font-size: 3rem;
	line-height: 1.1;
}


/* 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: 5.0rem;
	height: 5.0rem;
	display: inline-block;
	padding: .0rem;
	text-align: left;
}

.loader3 span {
	position: absolute;
	display: inline-block;
	width: 5.0rem;
	height: 5.0rem;
	border-radius: 100%;
	background: var(--red_main);
	-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;
	display: none;
	z-index: 999;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.hamburger-menu span {
	background: var(--red_main);
	width: 3.5rem;
	height: .2rem;
	display: block;
	margin: .4rem 0;
	border-radius: 2rem;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.hamburger-menu .line-top.current {
   -webkit-transform: translateY(1rem) rotate(45deg);
       -ms-transform: translateY(1rem) rotate(45deg);
           transform: translateY(1rem) rotate(45deg);
}
.hamburger-menu .line-center.current {
   opacity: 0;
}
.hamburger-menu .line-bottom.current {
   -webkit-transform: translateY(-0.95rem) rotate(-45deg);
       -ms-transform: translateY(-0.95rem) rotate(-45deg);
           transform: translateY(-0.95rem) rotate(-45deg);
}
main.overflow-hidden {
   padding-top: 11.9rem;
}
header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1024;
	width: 100%;
	-webkit-transition: 0.3s;
	-o-transition:  0.3s;
	transition:  0.3s;
	background-color: #fff;
}
header.sticky {
   -webkit-box-shadow: 0 .8rem 2.0rem 0 rgba(0, 0, 0, .1);
   box-shadow: 0 .8rem 2.0rem 0 rgba(0, 0, 0, .1);
}
.logo{
	width: 100%;
	max-width: 50rem;
}
.menu{
	padding-top: 2.1rem;
	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;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	-webkit-column-gap: 6rem;
	   -moz-column-gap: 6rem;
	        column-gap: 6rem;
}
.menu>ul{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	list-style: none;
	-webkit-column-gap: 3rem;
	   -moz-column-gap: 3rem;
	        column-gap: 3rem;
}
.menu>ul>li {
   padding: 1.9rem 3rem 4.9rem;
   -webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.menu>ul>li>a {
	font-size: 2.2rem;
	text-decoration: none;
	font-weight: 700;
	color: var(--dark_main);
	line-height: 1.2;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.menu>ul>li.active>a,
.menu>ul>li>a:hover {
	color: var(--red_main) !important;
}
.menu>ul>li.dropdown_wrap{
	position: relative;
	border-radius: 2rem 2rem 0 0;
}
.menu>ul>li.dropdown_wrap:hover{
	background-color: var(--olive_main);
	color: #fff;
}
.menu>ul>li.dropdown_wrap:hover>a{
	color: #fff !important;
}
.menu>ul>li.dropdown_wrap>a::after{
	content: '\EA4E';
	font-family: 'remixicon';
	margin-left: 0.3rem;
	font-size: 80%;
	position: relative;
	font-weight: 600;
	top: 0.1rem;
}
.menu>ul>li.dropdown_wrap>ul {
	position: absolute;
	left: 0;
	top: 100%;
	background-color: var(--olive_main);
	padding: 1rem 0 2rem;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	opacity: 0;
	pointer-events: none;
	list-style: none;
	min-width: 100%;
	border-radius: 0 0 2rem 2rem;
}
.menu>ul>li.dropdown_wrap:hover>ul{
	opacity: 1;
	pointer-events: all;
}
.menu>ul>li.dropdown_wrap>ul>li>a{
	color: #fff;
	white-space: nowrap;
	padding: 0.3rem 3rem;
	display: block;
	text-decoration: none;
}
.menu>ul>li.dropdown_wrap>ul>li>a:hover,
.menu>ul>li.dropdown_wrap>ul>li.active>a{
	color: var(--red_main);
}
.header_btn{
	padding-bottom: 2.5rem;
}
header .button{
	font-size: 2.2rem;
}

/*button*/
.button {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	padding: 1rem 2rem;
	color: #FFFFFF;
	border: 0.2rem solid transparent;
	border-radius: 1rem;
	font-weight: 700;
	min-width: 17.3rem;
	text-decoration: none;
	line-height: 1.2;
	text-align: center;
	background-color: var(--red_main);
	-webkit-column-gap: 1.5rem;
	   -moz-column-gap: 1.5rem;
	        column-gap: 1.5rem;
}
.button::after{
	content: '\EA6C';
	font-family: 'remixicon';
	margin-right: -0.4rem;
	margin-left: -0.2rem;
}
.button:hover{
	background-color: #fff;
	color: var(--red_main);
	border-color: var(--red_main);
	-webkit-box-shadow: 0rem 0rem 2rem rgba(0, 0, 0, 0.16);
	        box-shadow: 0rem 0rem 2rem rgba(0, 0, 0, 0.16);
}
.button.white_btn{
	background-color: #fff;
	color: var(--secondary);
}
.button.white_btn:hover{
	background-color: var(--dark_main);
	border-color: var(--dark_main);
	color: #fff;
}
.white_outline{
	background-color: transparent;
	color: #fff;
	border-color: #fff;
}
.white_outline:hover{
	background-color: var(--dark_main);
	border-color: var(--dark_main);
	color: #fff;
}
.black_btn{
	background: var(--dark_main);
	color: #fff;
}
.button_wrapper{
	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: 3rem;
	   -moz-column-gap: 3rem;
	        column-gap: 3rem;
}
/*return-to-top START CSS*/
.back-to-top {
	font-size: 2rem;
	width: 4rem;
	height: 4rem;
	line-height: 4rem;
	text-align: center;
	display: none;
	position: fixed;
	bottom: 3.0rem;
	right: 2.0rem;
	border-radius: 50%;
	background: var(--red_main);
	z-index: 1000;
	text-decoration: none;
}
.back-to-top i {
	color: #fff;
}
/*Home area*/
.home_area{
    background-color: var(--red_main);
}
.hero_slider .owl-stage{
    display: flex;
}
.slider_item {
	padding: 6.5rem 0;
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	height: 100%;
}
.hero_slider .owl-stage,
.hero_slider .owl-stage-outer{
	height: 100%;
}
.hero_slider img,
.hero_slider video{
    position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: -2;
	height: 100%;
	display: block;
	z-index: -2;
	-o-object-fit: cover;
	   object-fit: cover;
}
.home_content{
	max-width: 50rem;
}
.white_card{
	background-color: #fff;
	padding: 3.5rem 5.5rem;
	border-radius: 2rem;
	margin-bottom: 4rem;
	position: relative;
	font-family: 'All Round Gothic';
	font-size: 7rem;
	font-weight: 700;
	line-height: 1;
}
.white_card::after {
	position: absolute;
	content: '';
	width: 0;
	height: 0;
	border-left: 3rem solid transparent;
	border-right: 3rem solid transparent;
	border-top: 6rem solid #fff;
	left: 5.5rem;
	top: 99%;
	-webkit-transition: inherit;
	-o-transition: inherit;
	transition: inherit;
}
.orange_card{
	background-color: var(--red_main);
	color: #fff;
	padding: 4.7rem 5.5rem 6rem;
	border-radius: 2rem;
}
.orange_card h2{
	font-size: 4rem;
	line-height: 1.15;
}
.hero_slider .owl-dots{
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 3rem;
}
.hero_slider .owl-dots button{
	background-color: #fff;
	border-color: #fff !important;
}

.controls_inner{
	display: inline-block;
	position: relative;
	padding: 0 5rem;
}
.owl-dots {
	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;
	-webkit-column-gap: 1rem;
	   -moz-column-gap: 1rem;
	        column-gap: 1rem;
	        row-gap: 1rem;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	    margin-top: 3rem;
}
.owl-dots button{
	height: 1rem;
	width: 1rem;
	border-radius: 50%;
	background-color: var(--secondary);
	padding: 0.1rem;
	border: 0.2rem solid var(--secondary) !important;
}
.owl-dots button.active{
	background-color: transparent;
}
.owl-nav button{
	position: absolute;
	top: 45%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	padding: 0;
	background-color: var(--dark_main);
	color: #fff;
	width: 7rem;
	height: 5.5rem;
	font-size: 2.5rem;
	border: none;
	line-height: 1;
}
.owl-nav button:hover{
	background-color: var(--red_main);
}
.owl-nav button.owl-prev{
	left: 0rem;
}
.owl-nav button.owl-next{
	right: 0rem;
}

/*cta area*/
.cta_area{
	background-color: var(--secondary);
	padding: 10rem 0;
	position: relative;
	z-index: 1;
	color: #fff;
}
.cta_area p{
	max-width: 76rem;
	font-size: 2.4rem;
	font-weight: 500;
}
.cta_area .button{
	min-width: 19rem;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.cta_bg{
	position: absolute;
	right: 0;
	bottom: 0;
	height: 100%;
	width: 45%;
	background-size: cover;
	background-position: center center;
	z-index: -1;
}
.cta_bg::before{
	position: absolute;
	content: '';
	left: -0.1rem;
	top: 0;
	height: 100%;
	width: 95%;
	background: -webkit-gradient(linear, left top, right top, from(var(--secondary)), to(rgba(255, 255, 255, 0)));
	background: -o-linear-gradient(left, var(--secondary) 0%, rgba(255, 255, 255, 0) 100%);
	background: linear-gradient(90deg, var(--secondary) 0%, rgba(255, 255, 255, 0) 100%);
}
.py_110{
	padding-top: 11rem;
	padding-bottom: 11rem;
}

/*project area*/
.link{
	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-weight: 700;
	color: var(--red_main);
	text-decoration: none;
	line-height: 1;
}
.link::after{
	content: '\EA6C';
	font-family: 'remixicon';
}
.link:hover{
	color: var(--dark_main);
}
.slider1 .owl-stage{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.project_card{
	display: block;
	text-align: left;
	position: relative;
	height: 100%;
	text-decoration: none;
	color: inherit !important;
}
.project_card .project_img{
	border-radius: 2rem;
}
.project_card .project_img img{
	aspect-ratio: 5.1/3.2;
	-o-object-fit: cover;
	   object-fit: cover;
}
.project_card:hover .project_img img{
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}
.project_content{
	padding: 3rem 0 5rem;
}
.project_content h3{
	font-size: 3rem;
	text-wrap: balance;
}
.project_card .link{
	position: absolute;
	left: 0;
	bottom: 0;
}

/*request area*/
.request_area{
	background-color: var(--olive_main);
	padding: 5.6rem 0;
	color: #fff;
}
.request_area .container{
	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;
	-webkit-column-gap: 12rem;
	   -moz-column-gap: 12rem;
	        column-gap: 12rem;
}
.request_area .container img{
	width: 38.6rem;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}
.request_content{
	width: 58.1rem;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}
.request_content p{
	font-size: 2.4rem;
	font-weight: 500;
	margin-top: 2.4rem;
}

/*news area*/
.news_area{
	background-color: var(--light_red);
}
.news_card{
	background-color: #fff;
	border-radius: 2rem;
}
.news_card .project_img{
	border-radius: 2rem 2rem 0 0;
}
.news_card .project_content{
	padding: 3rem 4rem 9rem;
}
.news_card .project_content .link{
	bottom: 4rem;
	left: 4rem;
}

/*footer*/
footer{
	padding: 5rem 0 10rem;
	background-color: var(--dark_main);
	color: #fff;
	line-height: 1.7;
}
footer ul{
	list-style: none;
	margin-top: 2.5rem;
}
footer p{
	margin-top: 2.5rem;
}
footer a{
	color: #fff;
	text-decoration: none;
}
footer a:hover{
	color: var(--red_main);
}
.footer_item{
	max-width: 25%;
}
.footer_item form{
	padding-top: 1.5rem;
}
.footer_item form input{
	width: 100%;
	height: 5rem;
	background-color: #fff;
	border-radius: 1rem;
	margin-top: 2rem;
	display: block;
	padding: 0 2rem;
	border: none;
	font-size: 1.8rem;
}
.icon_box{
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.icon_box a{
	width: 4rem;
	height: 4rem;
	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;
	position: relative;
	border: 0.2rem solid #fff;
	border-radius: 0.5rem;
	text-decoration: none;
	color: #fff;
}
.icon_box a:hover {
	background-color: var(--red_main);
	color: #fff;
	border-color: var(--red_main);
}
.icon_box a:not(:last-child){
	margin-right: 2rem;
}
.footer_bottom {
	margin-top: 10rem;
}
.footer_bottom ul{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 4.5rem;
	   -moz-column-gap: 4.5rem;
	        column-gap: 4.5rem;
}
.footer_bottom ul li:not(:first-child){
	position: relative;
	padding-left: 5rem;
}
.footer_bottom ul li:not(:first-child)::after{
	position: absolute;
	line-height: 0;
	content: '';
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	height: 0.5rem;
	width: 0.5rem;
	border-radius: 50%;
	background-color: var(--red_main);
}


.inner_home{
	background-size: cover;
	background-position: center center;
	padding-bottom: 0;
	min-height: 31rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}
.button.back_link{
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	    -ms-flex-direction: row-reverse;
	        flex-direction: row-reverse;
	min-width: auto;
	background-color: transparent;
	border-color: var(--dark_main);
	color: var(--dark_main);

}
.button.back_link::after{
	-webkit-transform: rotate(-180deg);
	    -ms-transform: rotate(-180deg);
	        transform: rotate(-180deg);
}
.button.back_link:hover{
	background-color: var(--dark_main);
	color: #fff;
}
.breadcrumb_area{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	margin-bottom: 1rem;
}
.breadcrumb{
	padding: 0;
	border-radius: 0;
	background-color: transparent;
	margin-bottom: 0;
}
.breadcrumb-item+.breadcrumb-item::before {
	color: var(--dark_main);
}
.breadcrumb li,
.breadcrumb li.active,
.breadcrumb li a{
	color: var(--dark_main);
	text-decoration: none;
	font-size: 1.8rem;
}
.breadcrumb li a:hover{
	color: var(--red_main);
}
.intro_area{
	background-color: var(--light_red);
	padding: 5rem 0 7.5rem;
	min-height: 42rem;
}
.intro_content h1{
	font-size: 6rem;
	color: var(--red_main);
}
.intro_content p{
	margin-top: 2rem;
	max-width: 142rem;
	font-weight: 500;
	font-size: 2.4rem;
}
.gap_75{
	--bs-gutter-x: 7.5rem;
	--bs-gutter-y: 7.5rem;
}
.gap_50{
	--bs-gutter-x: 5rem;
	--bs-gutter-y: 5rem;
}
.pagination_wrap{
	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;
	-webkit-column-gap: 12rem;
	   -moz-column-gap: 12rem;
	        column-gap: 12rem;
	margin-top: 10rem;
}
.pagination_wrap>a{
	height: 4rem;
	width: 4rem;
	border: 0.2rem solid var(--secondary);
	color: var(--secondary);
	text-decoration: none;
	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;
	border-radius: 0.5rem;
	font-weight: 500;
}
.pagination_wrap>a:hover{
	background-color: var(--secondary);
	color: #fff;
}
.pagination_wrap ul{
	list-style: none;
	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;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-column-gap: 2rem;
	   -moz-column-gap: 2rem;
	        column-gap: 2rem;
	row-gap: 1rem;
}
.pagination_wrap ul li a{
	text-decoration: none;
	font-weight: 700;
}
.pagination_wrap ul li a.active,
.pagination_wrap ul li a:hover{
	color: var(--secondary);
}
.light_bg{
	background-color: rgba(250, 222, 214, 0.4);
}
.bg_light_secondary{
	background-color: rgba(195, 146, 43, 0.2);
}
.project_details_content{
	max-width: 143rem;
}
.project_details_content h3{
    font-size: 3rem;
    color: var(--red_main);
}
.project_details_content h6:not(:first-child),
.project_details_content h3:not(:first-child){
	margin-top: 5rem;
}
.project_details_content p:not(:first-child){
	margin-top: 2rem;
}
.project_details_content p a,
.project_details_content ul a,
.project_details_content ol a{
	color: var(--red_main);
}
.project_details_content p a:hover,
.project_details_content ul a:hover,
.project_details_content ol a:hover{
	color: var(--dark_main);
}
.project_details_content ul{
	padding-left: 2rem;
}
.project_details_content ol{
	padding-left: 2rem;
	margin-top: 2rem;
}
.project_details_content ul li::marker{
	color: var(--red_main);
}
.share_box p{
	font-size: 2.6rem;
	font-weight: 700;
	font-family: 'All Round Gothic';
	margin-bottom: 2rem;
}
.share_icon{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 1rem;
	   -moz-column-gap: 1rem;
	        column-gap: 1rem;
	row-gap: 1rem;
}
.share_icon a{
	height: 4rem;
	width: 4rem;
	border-radius: 0.5rem;
	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;
	border: 0.1rem solid var(--dark_main);
	text-decoration: none;
}
.share_icon a:hover{
	background-color: var(--dark_main);
	color: #fff;
}
.bg_share{
	background-color: var(--light_red);
	padding: 5.5rem;
	max-width: 40rem;
}
.gallery_wrap{
	margin-top: 7.5rem;
}
.gallery_wrap h6{
	margin-bottom: 5rem;
}
.gallery {
    display: block;
    border-radius: 2rem;
    overflow: auto;
    position: relative;
    text-decoration: none;
}
.gallery i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #f03;
    font-size: 7rem;
    z-index: 1;
}
.gallery img{
	width: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	aspect-ratio: 5.1/3.2;
}
.gallery iframe {
    display: block;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 5.1/3.2;
    height: auto;
}
.news_details_content{
	max-width: 84rem;
}
.news_details_content p:not(:first-child){
	margin-top: 4rem;
}
.news_details_content p:first-child strong{
	font-size: 2.4rem;
}


.team_card{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-webkit-column-gap: 3rem;
	   -moz-column-gap: 3rem;
	        column-gap: 3rem;
}
.team_card>img{
	width: 12rem;
	aspect-ratio: 1/1;
	border-radius: 50%;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}
.team_card h6{
	color: var(--red_main);
}
.team_card p a:first-child{
	text-decoration: none;
}
.team_card p a:last-child{
	color: var(--red_main);
	text-decoration: underline;
}
.team_card p:not(:first-child){
	margin-top: 1.5rem;
}
.team_card p a:hover{
	color: var(--dark_main);
}
.team_card p:last-child strong{
	display: inline-block;
	margin-top: 3rem;
}
.team_area h4{
	margin-bottom: 4rem;
}
.team_area h4:not(:first-child){
	margin-top: 10rem;
}

/*contact area*/
.contact_area p{
	margin-top: 2.5rem;
}
.contact_area p a {
    color: var(--red_main);
}
.contact_area p a:hover{
    color: var(--dark_main);
}
.contact_area .icon_box a{
	color: var(--red_main);
	border-color: var(--red_main);
}
.contact_area .icon_box a:hover{
	color: #fff;
}
.map iframe{
	width: 100%;
	border: none;
	display: block;
	aspect-ratio: 5.1 / 3.2;
	height: auto;
	border-radius: 2rem;
}
.contact_area img{
	width: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	aspect-ratio: 5.1 / 3.2;
	border-radius: 2rem;
}
.aanvraag_content .button{
	min-width: auto;
}
.aanvraag_content>ul>li{
	margin-top: 4rem;
}
.aanvraag_content>ul>li ul{
	list-style: none;
	padding-left: 0;
	margin-top: 3rem;
}
.project_details_content .request_form p{
	margin-top: 5rem;
}
.form-check{
	margin-bottom: 0;
	margin-top: 2rem;
	padding-left: 3.5rem;
}
.form-check input.form-check-input{
	height: 2.5rem;
	width: 2.5rem;
	border-color: #707070;
	border-radius: 0.3rem;
	-webkit-box-shadow: none !important;
	        box-shadow: none !important;
	margin-top: 0.1rem;
	margin-left: -3.5rem;
}
.form-check input.form-check-input:checked {
	background-color: var(--red_main);
	border-color: var(--red_main);
}

.project_come_area{
	background-color: var(--light_red);
	text-align: center;
}
.project_come_area ul {
	text-align: left;
	padding-left: 2rem;
	column-count: 3;
	column-gap: 2rem;
	margin-top: 5rem;
	line-height: 1.8;
	font-weight: 700;
}
.project_come_area ul li::marker{
    color: var(--red_main);
}

.light_btn{
	background-color: #EAEAEA;
	color: var(--dark_main);
}
.prev_btn{
	flex-direction: row-reverse;
}
.prev_btn::after{
	transform: rotate(-180deg);
}
.question_box{
	border: 0.1rem solid #707070;
	border-radius: 1rem;
	padding: 4rem;
	margin-top: 3rem;
}
.question_box p:first-child{
	margin-top: 0!important;
}
.question_box p{
	margin-top: 4rem !important;
}
.aanvraag_content{
	max-width: 100%;
}
.request_form .progress{
	height: 3rem;
	border: 0.1rem solid #707070;
	border-radius: 0.3rem;
	margin-top: 4.5rem;
	background-color: transparent;
}
.request_form .progress .progress-bar{
	background-color: var(--red_main);
	font-size: 2rem;
	border-radius: 0 0.3rem 0.3rem 0;
}
.request_form .tab .form-label+input,
.request_form .tab textarea,
.request_form .tab select,
.request_form .tab .nice-select,
.file-input-wrapper input[type="file"]{
	display: block;
	width: 100%;
	border: 0.1rem solid #707070;
	border-radius: 0.3rem;
	resize: none;
	padding: 0 2rem;
	height: 5rem;
	margin-top: 1.5rem;
	font-size: 1.8rem;
}
.request_form .tab textarea{
	padding-top: 1rem;
}
.request_form .tab textarea,
.request_form .tab .form-label+input[type="file"],
.file-input-wrapper input[type="file"]{
	height: 10rem;
}
.gap_40{
	--bs-gutter-x: 4rem;
	--bs-gutter-y: 4rem;
}
.form-label{
	font-size: 1.8rem;
	font-weight: 700;
	position: relative;
}
.form-label.required::after{
	content: ' *';
	color: var(--red_main);
}
.nice-select{
	line-height: 5rem;
}
.nice-select:after {
	border-bottom: .2rem solid #999;
	border-right: .2rem solid #999;
	height: .8rem;
	margin-top: -.4rem;
	right: 2rem;
	width: .8rem;
}
.nice-select.open .list{
	width: 100%;
}
.request_form .tab .form-label+input[type="file"],
.file-input-wrapper input[type="file"]{
	padding-top: 2.4rem;
	padding-bottom: 2.4rem;
}
.request_form .tab .form-label+input[type="file"]::file-selector-button,
.file-input-wrapper input[type="file"]::file-selector-button {
  background: var(--red_main);
  color: #fff;
  padding: 1.1rem 2rem;
  border: none;
  border-radius: 1rem;
  cursor: pointer;
  transition: 0.2s;
  font-weight: 700;
  line-height: 1.35;
  margin-right: 2rem;
  font-size: 2rem;
}

.request_form .tab .form-label+input[type="file"]::file-selector-button:hover, 
.file-input-wrapper input[type="file"]::file-selector-button:hover {
  background: var(--dark_main);
  color: #fff;
}
.is-invalid {
  border-color: red !important;
}
.control-buttons{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}
.control-buttons .button{
    cursor: pointer;
}
.control-buttons .button::after{
    display: none;
}
.project_details_content .request_form p.upload_info {
    margin-top: 2rem;
    font-size: 1.6rem;
}