/*======================
   01. Google fonts
========================*/
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;700&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;
}

body {
	line-height: 1.8;
	font-family: 'Rubik', sans-serif;
	background-color: #fff;
	color: #171A1A;
	font-weight: 400;
	font-size: 2.2rem;
}

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

.loader3 span {
	position: absolute;
	display: inline-block;
	width: 6.0rem;
	height: 6.0rem;
	border-radius: 100%;
	background: #FF9027;
	-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;
  	}
}

.logo{
	display: block;
	width: 26rem;
	padding: 2.5rem 3rem 3.5rem;
	background-color: #171A1A;
	border-radius: 0 0  2.5rem 2.5rem;
	position: relative;
	z-index: 3;
}
.home_area{
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	padding-bottom: 5rem;
	position: relative;
	z-index: 2;
}
.home_area::before{
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: -o-linear-gradient(227deg, rgba(251,251,251,0) 0%, rgba(0,0,0,1) 100%);
	background: linear-gradient(223deg, rgba(251,251,251,0) 0%, rgba(0,0,0,1) 100%);
	z-index: -1;
	opacity: 0.5;
}
.home_area ul{
	margin-top: 8rem;
}
.home_area ul li{
	font-size: 3.4rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.58;
	padding-left: 4.2rem;
	position: relative;
}
.home_area ul li::before{
	position: absolute;
	content: '';
	top: 1.2rem;
	left: 0;
	width: 2.8rem;
	height: 2.7rem;
	background-image: url(../img/check.svg);
	background-size: contain;
	background-repeat: no-repeat;
}
.content_box{
	padding-left: 4rem;
	max-width: 76.7rem;
	padding-bottom: 11rem;
	padding-top: 1rem;
	margin-top: 40rem;
}
.content_box p{
	margin-top: 4rem;
}
.button{
	display: inline-block;
	padding: 1.5rem 3rem;
	font-size: 2.6rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.19;
	background-color: #171A1A;
	border-radius: 5rem;
}
.button:hover{
	background-color: #FF9027;
	color: #171A1A;
}

.wijen_box{
	padding: 4.5rem 6rem 14rem;
	position: relative;
	z-index: 2;
}
.wijen_box::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: -1;
	background-color: #FF9027;
	border-top-left-radius: 2.5rem;
}
.wijen_box h2{
	font-size: 3.6rem;
	font-weight: 700;
	color: #fff;
}
.wijen_box ul{
	list-style: disc;
	padding-top: 3rem;
}
.wijen_box ul li{
	font-size: 2.4rem;
	font-weight: 500;
	color: #171A1A;
	margin-top: 2rem;
}
.wijen_box ul li::marker{
	color: #fff;
	font-size: 80%;
}
.black_box{
	padding: 6rem 7rem 14rem;
	position: relative;
	z-index: 1;
	color: #fff;
}
.black_box::before{
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	height: 100%;
	width: 300rem;
	border-top-left-radius: 2.5rem;
	background-color: #171A1A;
	z-index: -1;
}
.black_box h2{
	font-size: 5.2rem;
	font-weight: 700;
	color: #fff;
	border-bottom: 1px solid #fff;
	padding-bottom: 6.4rem;
	line-height: 1.3;
}
.black_box h2 span{
	color: #FF9027;
}
.black_box p{
	max-width: 27rem;
}
.black_box p a{
	color: #fff;
}
.black_box p a:hover{
	color: #FF9027;
}
.black_box p strong{
	width: 6.5rem;
	display: inline-block;
}
.black_box h4{
	font-size: 2.4rem;
	font-weight: 700;
	margin-bottom: 2rem;
}
.logo_box{
	position: absolute;
	top: 4rem;
	right: 15px;
	padding: 0;
	width: 14.2rem;
}
.content_row>div:first-child{
	max-width: 45%;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 45%;
	        flex: 0 0 45%;
}
.content_row>div:nth-child(2){
	max-width: 23%;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 23%;
	        flex: 0 0 23%;
}
.content_area{
	margin-top: -40rem;
	position: relative;
	z-index: 2;
}
.circle_text {
	height: 28rem;
	width: 28rem;
	background-color: #fff;
	border-radius: 50%;
	-webkit-box-shadow: 0.1rem 1rem 4rem rgba(0, 0, 0, 0.16);
	box-shadow: 0.1rem 1rem 4rem rgba(0, 0, 0, 0.16);
	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: 2rem 6rem;
	-webkit-transform: rotate(3deg);
	-ms-transform: rotate(3deg);
	transform: rotate(3deg);
	position: absolute;
	top: 7.5rem;
	z-index: 2;
	left: calc((100% - 1810px) / 2 + 45rem);
}
.circle_text h2{
	font-size: 3.6rem;
	font-weight: 700;
	color: #171A1A;
	line-height: 1.3;
}
.circle_text h2 span{
	text-transform: uppercase;
	color: #FF9027;
}
.social_icon{
	position: absolute;
	right: 4rem;
	top: 4rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.social_icon a{
	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;
	height: 8rem;
	width: 8rem;
	border-radius: 50%;
	background-color: #FF9027;
	padding: 1rem;
	margin-left: 1rem;
}
.social_icon a:hover{
	background-color: #171A1A;
}
.social_icon a img{
	max-width: 100%;
	max-height: 100%;
	-o-object-fit: contain;
	   object-fit: contain;
}