/*======================
   01. Google fonts
========================*/
@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:wght@400;700&family=Roboto:wght@400;700&display=swap');
@font-face {
	font-family: 'Gothambook';
	src: url('../webfonts/Gotham-BookItalic.eot');
	src: url('../webfonts/Gotham-BookItalic.eot?#iefix') format('embedded-opentype'),
	  url('../webfonts/Gotham-BookItalic.woff2') format('woff2'),
	  url('../webfonts/Gotham-BookItalic.woff') format('woff'),
	  url('../webfonts/Gotham-BookItalic.ttf') format('truetype'),
	  url('../webfonts/Gotham-BookItalic.svg#Gotham-BookItalic') format('svg');
	font-weight: 500;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'Gotham';
	src: url('../webfonts/Gotham-Light.eot');
	src: url('../webfonts/Gotham-Light.eot?#iefix') format('embedded-opentype'),
	url('../webfonts/Gotham-Light.woff2') format('woff2'),
	url('../webfonts/Gotham-Light.woff') format('woff'),
	url('../webfonts/Gotham-Light.ttf') format('truetype'),
	url('../webfonts/Gotham-Light.svg#Gotham-Light') format('svg');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

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


/*======================
   02. Basic css
========================*/
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;
}
/*font-family: 'Roboto', sans-serif;*/
body {
	line-height: 1.66;
	font-family: 'Albert Sans', sans-serif;
	background-color: #000;
	color: #000000;
	font-weight: 400;
	font-size: 2.4rem;
}

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

.loader3 span {
	position: absolute;
	display: inline-block;
	width: 7.0rem;
	height: 7.0rem;
	border-radius: 100%;
	background: #F7A10D;
	-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;
	z-index: 999;
	margin-left: 4.5rem;
}
.hamburger-menu span {
	background: #fff;
	width: 4rem;
	height: .35rem;
	display: block;
	margin: 0.6rem 0;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	border-radius: 1rem;
}
.hamburger-menu .line-top.current {
	-webkit-transform: translateY(1rem) rotate(135deg);
	-ms-transform: translateY(1rem) rotate(135deg);
	transform: translateY(1rem) rotate(135deg);
	background-color: #fff;
}
.hamburger-menu .line-center.current {
	opacity: 0;
}
.hamburger-menu .line-bottom.current {
	-webkit-transform: translateY(-0.96rem) rotate(-135deg);
	-ms-transform: translateY(-0.96rem) rotate(-135deg);
	transform: translateY(-0.96rem) rotate(-135deg);
	background-color: #fff;
}
header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1024;
	width: 100%;
	-webkit-transition: 0.3s;
	-o-transition:  0.3s;
	transition:  0.3s;
}

/*sticky START CSS*/
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);
   background-color: #000;
}
header .container{
	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;
}
.logo{
	background-color: #fff;
	width: 30rem;
	padding: 3rem 5rem;
}
header.sticky .logo{
	width: 22rem;
}
.menu_overlay{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.7);
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	opacity: 0;
	pointer-events: none;
}
.menu_overlay.current{
	opacity: 1;
	pointer-events: all;
}
.menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: 40rem;
	padding: 18rem 6rem 3rem;
	overflow: auto;
	height: 100vh;
	z-index: 2;
	background-color: #000;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.menu.current{
	right: 0;
}
#menu li {
	padding: 0.8rem 0rem;
}
#menu li a {
	font-size: 2.8rem;
	color: #fff;
	padding: 0;
}
#menu li>a.active,
#menu li>a:hover {
	color: #F7A10D;
}
.call_btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	color: #fff;
	font-weight: 700;
	margin-left: 31.5rem;
}
.icon_box{
	height: 6rem;
	width: 6rem;
	border-radius: 50%;
	background-color: #fff;
	margin-right: 1.5rem;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	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-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.icon_box img{
	height: 2.7rem;
}
.call_btn:hover{
	color: #F7A10D;
}
.call_btn:hover .icon_box{
	background-color: #F7A10D;
}
header .button{
	background-color: #F7A10D;
}
header .button:hover{
	background-color: #fff;
	color: #000;
}
.button{
	display: inline-block;
	font-size: 2.5rem;
	padding: 1.5rem 3.8rem !important;
	font-weight: 700;
	color: #fff;
	border-radius: 18rem;
	line-height: 1.2;
	border: none;
	background-color: #000;
}
.button:hover{
	color: #fff;
	background-color: #F7A10D;
}

.home_area{
	background-color: #000;
	color: #fff;
	position: relative;
	z-index: 1;
}
.home_content {
	padding: 21.5rem 0 14.5rem 4.5rem;
	max-width: 86rem;
	margin-left: auto;
	background-color: rgba(0, 0, 0, 0.5);
	position: relative;
	z-index: 1;
}
.home_content h1{
	font-size: 12rem;
	font-weight: 700;
	color: #F7A10D;
	line-height: 1.16;
	font-family: 'Gotham';
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
.home_content h1 span{
	color: #fff;
	font-weight: 300;
	width: 26.5rem;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	text-align: right;
}
.desc {
	max-width: 45rem;
	margin-left: auto;
	padding-right: 3rem;
	min-height: 240px;
}
.desc p{
	margin-top: 4rem;
}
.desc .button{
	border: 0.2rem solid #fff;
	margin-top: 5rem;
	background-color: transparent;
}
.desc .button:hover{
	border-color: #F7A10D;
	background-color: #F7A10D;
}
.bg_img{
	height: 100%;
	width: 100%;
	background-size: cover;
	background-position: center center;
	position: absolute;
	top: 0;
	left: 0;
}
.bg_img::before{
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.25);
}
.slider .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;
	position: absolute;
	bottom: 7.5rem;
	left: 50%;
	width: 30rem;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
	z-index: 3;
}
.slider .owl-dots button{
	height: 1.5rem;
	width: 1.5rem;
	border-radius: 50%;
	background-color: #fff;
	padding: 0.1rem;
	margin: 0 0.5rem;
}
.slider .owl-dots button.active{
	background-color: #F7A10D;
}
/*about area*/
.about_area{
	background-color: #F7A10D;
	padding: 11rem 0 18rem;
}
.about_area .button:hover{
	background-color: #fff;
	color: #000;
}
.about_area h2{
	font-size: 8rem;
	line-height: 1.2;
	color: #fff;
	font-weight: 300;
	font-family: 'Gotham';
}
.about_area h2 strong{
	font-weight: 700;
	color: #000;
	display: block;
}
.about_area p{
	margin-top: 4.5rem;
}
.about_area .row>div:first-child {
	width: 88.5rem;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 88.5rem;
	        flex: 0 0 88.5rem;
	padding-right: 15rem;
}
.about_area img{
	width: 100%;
	max-height: 78.5rem;
	-o-object-fit: cover;
	   object-fit: cover;
}
.quote_box{
	background-color: #000;
	color: #fff;
	padding: 6.2rem 6.8rem;
	position: absolute;
	bottom: -5rem;
	left: -4rem;
	width: 57rem;
}
.quote_box h3{
	font-size: 3.6rem;
	font-weight: 500;
	font-family: 'Gothambook';
	line-height: 1.38;
}
.about_shape{
	position: absolute;
	width: 100%;
	max-width: 104.8rem;
	top: -9.2rem;
	left: -12.1rem;
	z-index: -1;
}
.right_column{
	z-index: 1;
}
/*warr_area*/
.warr_kunnen_area{
	padding: 10rem 0 15rem;
	background-color:#fff;
}
.warr_img_box{
	width: 14rem;
	height: 14rem;
	border-radius: 50%;
	border: 0.2rem solid #F7A10D;
	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: 4.5rem;
}
.warr_img_box img{
	width: 6rem;
}
.warr_kunnen_area .media-body h3{
	font-size: 4rem;
	font-weight: 700;
	margin-bottom: 3.3rem;
	font-family: 'Gotham';
}
.warr_kunnen_area .media-body p{
	line-height: 1.66;
	margin-bottom: 4rem;
	max-width: 60.1rem;
}
.title h2{
	font-family: 'Gotham';
	font-size: 6rem;
	font-weight: 300;
	line-height: 1.2;
}
.title h2 strong{
	font-weight: 700;
	color: #f7a10d;
}
.warr_kunnen_area h2{
	padding-left: 18.4rem;
}
.warr_content{
	background: #f7a10d;
	padding: 4.5rem 5.5rem;
	position: relative;
	height: 100%;
}
.warr_content h3{
	font-size: 4rem;
	font-weight: 700;
	margin-bottom: 4.5rem;
	font-family: 'Gotham';
	max-width: 40rem;
	margin-bottom: 4rem;
}
.warr_content p{
	max-width: 40rem;
}
.warr_content .warr_men {
	position: absolute;
	right: -6rem;
	bottom: -15rem;
	width: 42rem;
	}
/*contact_area*/
.neem_contact{
	background-color: #e8e8e8;
	padding: 12rem 0 21rem;
}
.neem_contact p {
	margin-top: 3.8rem;
	max-width: 121.1rem;
}
.neem_radio>div {
   margin-right: 4rem;
}
.neem_radio input {
   display: none;
}
.neem_radio label {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.neem_radio label span {
	width: 5rem;
	height: 5rem;
	border-radius: 50%;
	background-color: #fff;
	display: block;
	position: relative;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	margin-right: 2rem;
}
.neem_radio input:checked + label span::before {
    opacity: 1;
}
.neem_radio label span::before {
	content: '';
	position: absolute;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	background: #f7a10d;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	opacity: 0;
}
.neem_contact input,
.neem_contact textarea,
.nice-select{
	width: 100%;
	padding: 0rem 4rem;
	color: #000;
	border: none;
	margin-top: 4rem;
	height: 7rem;
	font-size: 2rem;
	border-radius: 0;
}
.neem_contact input::-webkit-input-placeholder, .neem_contact textarea::-webkit-input-placeholder{
	color: #797979;
	opacity: 1
}
.neem_contact input::-moz-placeholder, .neem_contact textarea::-moz-placeholder{
	color: #797979;
	opacity: 1
}
.neem_contact input:-ms-input-placeholder, .neem_contact textarea:-ms-input-placeholder{
	color: #797979;
	opacity: 1
}
.neem_contact input::-ms-input-placeholder, .neem_contact textarea::-ms-input-placeholder{
	color: #797979;
	opacity: 1
}
.neem_contact input::placeholder,
.neem_contact textarea::placeholder{
	color: #797979;
	opacity: 1
}
.nice-select{
	line-height: 7rem;
}
.neem_contact textarea {
	height: 29rem;
	resize: none;
	padding-top: 2rem;
}
.neem_contact .row{
	margin-left: -2rem;
	margin-right: -2rem;
}
.neem_contact .row>div{
	padding-left: 2rem;
	padding-right: 2rem;
}
.nice-select:after {
	border-bottom: 0.2rem solid #000;
	border-right: 0.2rem solid #000;
	height: 0.8rem;
	right: 3rem;
	top: 50%;
	width: 0.8rem;
	}
/*footer_area*/
footer{
	background-color: #000;
	padding: 20.7rem 0 11rem;
	color: #fff;
	position: relative;
}
footer .footer_logo {
	position: absolute;
	top: -16rem;
	left: 50%;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
	max-width: 32.2rem;
}
footer .footer_men {
	position: absolute;
	left: -8.6rem;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	width: 70.4rem;
	height: 70.4rem;
	-o-object-fit: cover;
	   object-fit: cover;
	border-radius: 50%;
	-o-object-position: center center;
	   object-position: center center;
}
footer .footer_shape {
	position: absolute;
	right: -17.3rem;
	bottom: -3.8rem;
	width: 84.3rem;
}
footer a{
	color: #fff;
	line-height: 2;
}
footer a:hover{
	color: #f7a10d;
}
.contact_area{
	font-family: 'Roboto', sans-serif;
}
.contact_area p{
	max-width: 30rem;
	margin-bottom: 5.6rem;
	line-height: 2;
}
footer h3{
	font-family: 'Gotham';
	font-size: 3.6rem;
	font-weight: 700;
	line-height: 1;
	color: #f7a10d;
	margin-bottom: 3.5rem;
}
.contact_area ul li strong {
	display: inline-block;
	width: 5.6rem;
	margin-right: 1.5rem;
}
.social_icons a:not(:last-child) {
   margin-right: 1rem;
}
.social_icons {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.social_icons a {
	width: 6rem;
	height: 6rem;
	border-radius: 50%;
	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.2rem solid #fff;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	color: #fff;
}
.social_icons a:hover{
	background-color: #f7a10d;
	border-color: #f7a10d;
	color: #fff;
}
.footer_bottom p{
	font-size: 1.6rem;
	line-height: 1.62;
	margin-bottom: 1.8rem;
}
.footer_bottom ul li{
	font-size: 1.6rem;
	line-height: 1.62;
}
.footer_bottom ul{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.footer_bottom ul li:not(:first-child)::before {
	content: '/';
	display: inline-block;
	margin-left: 1rem;
	margin-right: 1rem;
	color: #F7A10D;
}
/*return-to-top START CSS*/

.back-to-top {
	font-size: 2.4rem;
	width: 4.5rem;
	height: 4.5rem;
	line-height: 4.5rem;
	text-align: center;
	display: none;
	position: fixed;
	bottom: 3.0rem;
	right: 2.0rem;
	border-radius: 50%;
	background: #F7A10D;
	z-index: 1000;
}

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