/*======================
   01.fonts
========================*/
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
:root{
	--yellow: #fd6930;
	--yellow: #f8bb21;
}
@font-face {
    font-family: 'Calibri';
    src: url('../webfonts/Calibri.eot');
    src: url('../webfonts/Calibri.eot?#iefix') format('embedded-opentype'),
        url('../webfonts/Calibri.woff2') format('woff2'),
        url('../webfonts/Calibri.woff') format('woff'),
        url('../webfonts/Calibri.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/*======================
   02. Basic css
========================*/
::-moz-selection{
	background-color: var(--yellow);
	color: #1F2430;
}
::selection{
	background-color: var(--yellow);
	color: #1F2430;
}
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.4;
	font-family: "Jost", serif;
	background-color:#fff;
	color: #1F2430;
	font-weight: 400;
	font-size: 2.4rem;
}

ol,
ul {
	list-style: none;
}
a{
	color: inherit;
}
a:hover {
	text-decoration: none;
	color: var(--yellow);
}
p a{
	color: inherit;
}
p a:hover{
	color: #fff;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus{
	outline: none;
}
h1{
	font-size: 8.2rem;
	font-weight: 700;
	line-height: 1;
}
h2{
	font-size: 5rem;
	font-weight: 700;
	line-height: 1.1;
}
h3{
	font-size: 3.8rem;
	font-weight: 700;
	line-height: 1.1;
}
h4{
	font-size: 3.2rem;
	font-weight: 700;
}
h5{
	font-size: 2.6rem;
	font-weight: 700;
}
h6{
	font-size: 2.2rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
}

/* 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: var(--yellow);
	-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;
  	}
}
.container{
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}
/*button*/
.button {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 1.8rem 2.5rem 1.6rem;
	color: #fff;
	border-radius: 0.5rem;
	font-weight: 700;
	font-size: 1.5rem;
	letter-spacing: 0.1rem;
	text-transform: uppercase;
	border: none;
	background-color: var(--yellow);
}
.button:hover{
	background-color: #1F2430;
	color: #fff;
	-webkit-box-shadow: 0.1rem 1rem 4rem rgba(0, 0, 0, 0.26);
	        box-shadow: 0.1rem 1rem 4rem rgba(0, 0, 0, 0.26);
}
.white_btn{
	background-color: #fff;
	color: #1F2430;
}
.white_btn:hover{
	color: #fff;
	background-color: #1F2430;
}
.black_btn{
	background-color: #1F2430;
	color: #fff;
}
.black_btn:hover{
	color: #fff;
	background-color: var(--yellow);
}
.button_wrapper{
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	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: 2.5rem;
	   -moz-column-gap: 2.5rem;
	        column-gap: 2.5rem;
	        row-gap: 1.5rem;
}
.button_wrapper .button{
	min-width: 20rem;
}
/*return-to-top START CSS*/
.back-to-top {
	font-size: 2.5rem;
	width: 5rem;
	height: 5rem;
	line-height: 5.2rem;
	text-align: center;
	display: none;
	position: fixed;
	bottom: 3.0rem;
	right: 2.0rem;
	border-radius: 50%;
	background: #1F2430;
	z-index: 1000;
}
.back-to-top i {
	color: var(--yellow);
}
/*Home area*/
.home_area {
}
.home_left {
    display: flex;
    align-items: center;
    /* justify-content: center; */
}
.home_right h1 {
	font-size: 10rem;
    text-transform: uppercase;
}
.home_right h2 {
    font-size: 8rem;
    margin-top: 2.4rem;
    font-weight: 600;
    color: #6a3f03;
}
.home_right {
	align-items: center;
	/* justify-content: center; */
	display: flex;
	height: 100%;
}
/*service area*/
.service_area{
	padding:10rem 0;
}
.service_area h2{
	font-size: 5rem;
	margin-bottom: 2rem;
}
.service_area ul{
	padding-top: 1rem;
}
.service_area p{
	margin-top: 3rem;
	font-size: 2.8rem;
}
.service_area p a{
	display: inline-block;
	margin-top: 1rem;
}
.service_area p strong{
	display: block;
	margin-bottom: 1rem;
}
.service_area ul li {
    margin-bottom: 3rem;
    font-size: 2.8rem;
    padding-left: 4rem;
    position: relative;
    font-weight: 500;
	font-family: "Calibri";
}
.service_area ul li span{
	font-weight: 700;
}
.service_area ul li::before {
    content: "⤞";
    margin-right: .8rem;
    font-size: 3.0rem;
    position: relative;
    top: -.5rem;
    position: absolute;
    left: 0;
}
.service_left img {
    width: 50rem;
    border-radius: 1.6rem;
}
/* Cta Area 
====================== */
.cta_area{
	background-color: var(--yellow);
	padding: 8rem 0;
}
.cta_content{
	text-align: center;
}
.cta_content h2 {
    font-size: 4rem;
    color: #000;
    margin-bottom: 2.5rem;
}
.cta_content a.button{
	background-color: #000;
}
/* How we work 
===================== */
.how_work_sec {
    background: #ffc1070a;
    padding: 10rem 0;
}
  .how_work_sec h2{
	text-align: center;
	margin-bottom: 4rem;
  }
  .how_work_sec p.note{
	font-size: 2.8rem;
	font-weight: 500;
	text-transform: capitalize;
	text-align: center;
	color:#000;
  }
  .main-timeline {
	position: relative;
  }
  .main-timeline:after {
	content: "";
	display: block;
	clear: both;
  }
  .main-timeline .timeline {
	width: 100%;
	margin: 0 0 30px 20px;
	float: right;
  }
  .main-timeline .timeline-content {
	color: #000;
	background: #fff;
	min-height: 125px;
	padding: 30px 20px 30px 60px;
	border-radius: 15px;
	border: 2px solid #000;
	display: block;
	position: relative;
  }
  .main-timeline .timeline-content:hover {
	text-decoration: none;
  }
  .main-timeline .timeline-icon {
	color: #fff;
	background-color: #ff4f00;
	font-size: 37px;
	line-height: 65px;
	height: 75px;
	width: 75px;
	border: 6px solid #fff;
	border-radius: 50%;
	transform: translateY(-50%);
	position: absolute;
	left: -38px;
	top: 50%;
	text-align: center;
  }
  .main-timeline .timeline-icon:before,
  .main-timeline .timeline-icon:after {
	content: "";
	background-color: #000;
	height: 7px;
	width: 7px;
	border-radius: 50%;
	transform: translateX(-50%);
	position: absolute;
	left: 50%;
	top: -12px;
  }
  .main-timeline .timeline-icon:after {
	top: calc(100% + 6px);
  }
.main-timeline .title {
    color: #000;
    font-size: 3.2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 1.4rem;
}
.main-timeline .description {
    font-size: 3rem;
    color: #333;
    margin: 0;
    font-weight: 500;
}
  .main-timeline .timeline:nth-child(even) {
	float: right;
	margin: 0 0 20px 0;
  }
  .main-timeline .timeline:nth-child(even) .timeline-content {
    padding: 30px 60px 30px 20px;
    text-align: right;
}
  .main-timeline .timeline:nth-child(even) .timeline-icon {
	right: -39px;
	left: auto;
  }
  .main-timeline .timeline:nth-child(4n + 2) .timeline-icon {
	background-color: #953fbe;
  }
  .main-timeline .timeline:nth-child(4n + 3) .timeline-icon {
	background-color: #00b29c;
  } 
  .main-timeline .timeline:nth-child(4n + 4) .timeline-icon {
	background-color: #02affe;
  }
  
  @media screen and (max-width: 767px) {
	.main-timeline .timeline {
	  width: 100%;
	  padding-top: 40px;
	}
  
	.main-timeline .timeline .timeline-content,
	.main-timeline .timeline:nth-child(even) .timeline-content {
	  padding: 45px 20px 20px;
	}
  
	.main-timeline .timeline .timeline-icon,
	.main-timeline .timeline:nth-child(even) .timeline-icon {
	  font-size: 28px;
	  left: 50%;
	  top: -39px;
	  right: auto;
	  transform: translateY(0) translateX(-50%);
	}
  
	.main-timeline .timeline .timeline-icon:before,
	.main-timeline .timeline .timeline-icon:after {
	  top: 50%;
	  left: -12px;
	  transform: translateY(-50%) translateX(0);
	}
  
	.main-timeline .timeline .timeline-icon:after {
	  left: calc(100% + 6px);
	}
  }
  
  @media screen and (max-width: 576px) {
	.main-timeline .title {
	  font-size: 18px;
	}
  }
.cancel{
	text-align: center;
	padding: 8rem 0;
}
.cancel img{
	width: 30rem;
}
.cancel .note{
	font-size: 3rem;
	font-weight: 600;
	text-transform: capitalize;
	margin-top: 3rem;
}
/* Terms Section 
===================== */
.terms{
	padding: 10rem 0;
	text-align: center;
}
.terms h2{
	font-size: 3.4rem;
	text-decoration: underline;
}
/* Contact section 
=================== */
.contact_sec{
	padding:10rem 0;
	text-align: center;
		background-color: #ffc1070a;
}
.contact_sec h2{
	margin-bottom: 2rem;
}
.card-style {
	border-radius: 1rem;
	padding: 3rem 2rem;
	box-shadow: 0 .2rem 3.6rem rgb(169 168 168 / 21%);
	margin-top: 3rem;
	text-align: center;
	background-color: #fff;
}
.card-style img{
	width: 6rem;
	margin-bottom: 2rem;
}
.card-style p a {
    color: var(--black);
    font-size: 2.8rem;
    font-weight: 500;
}
.card-style p a:hover{
	color: var(--yellow);
}
.contact_right img{
	width: 40rem;
}
/*footer*/
footer {
	padding: 5rem 0;
	background-color: #1F2430;
	color: #fff;
}
footer a{
	color: #fff;
}
footer h5{
	margin-bottom: 2rem;
}
footer a:hover{
	color: var(--yellow);
}
.copyright{
	text-align: center;
	font-size: 2.1rem;
	color: #a9a9a9;
}
.icon_box{
	margin-top: 2rem;
	margin-bottom: 3rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.icon_box a{
	width: 4.5rem;
	height: 4.5rem;
	font-size: 2.2rem;
	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;
	color: var(--yellow);
	fill: var(--yellow);
	border-radius: 50%;
	background-color: #fff;
}
.icon_box a svg{
	height: 1.6rem;
}
.icon_box a:hover {
	background-color: var(--yellow);
	color: #fff;
	fill: #fff;
}
.icon_box a:not(:last-child){
	margin-right: 0.7rem;
}

/* Terms Page css */
.terms_banner{
	text-align: center;
	padding: 10rem 0;
	background-color: #ffc1070a;
}
.back_btn{
	font-weight: 600;
	font-size: 2.4rem;
	text-decoration: underline;
	margin-top: 1rem;
	display: block;
}
.terms_sec {
    padding: 10rem 0;
}
.terms_sec h2{
	margin-bottom: 3rem;
}
.terms_content h2{
	margin-bottom: 5rem;
}
.terms_content h3{
	margin-bottom: 2rem;
}
.terms_content h4{
	margin: 6rem 2rem 0 0;
}
.terms_content p{
	margin-top: 2rem;
}
.terms_content ul{
	margin-top: 4rem;
	padding-left: 4rem;
}
.terms_content ul li{
	margin: 2rem 0;
	list-style: disc;
}

.service_imgs{
	padding: 6rem 0;
}
.service_imgs img{
	border-radius: 2rem;
	width:100%;
}