/*======================
   01.fonts
========================*/
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
:root{
	--blue: #5D9BFB;
	--blue-light: #5D9BFB;
}
@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(--blue);
	color: #1F2430;
}
::selection{
	background-color: var(--blue);
	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.5;
	font-family: 'Calibri';
	background-color:#fff;
	color: #1F2430;
	font-weight: 700;
	font-size: 2.5rem;
}

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

button:focus,
a:focus,
input:focus,
textarea:focus,
select: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: var(--blue);
	-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(--blue);
}
.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);
}
/*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(--blue);
}
/*Home area*/
h1,h2{
	font-family: "Jost", serif;
	color: var(--blue);
	font-weight: 700 !important;
	text-transform: capitalize;
}
.home_area {
    padding: 6rem 0;
    background-color: #F4F8FB;
    border-top: 1rem solid var(--blue-light);
}
.home_left {
    display: flex;
    align-items: center;
}
.home_left img{
	border-radius: 1rem;
}
.home_right {
    align-items: center;
    display: flex;
    height: 100%;
    /* text-align: center; */
}
.home_right h1 {
    font-size: 5rem;
    text-transform: uppercase;
	margin-bottom: 2rem;
	font-weight: 700;
}
.home_right p {
    font-size: 3rem;
}
.home_right strong{
	display: block;
	margin-top: 2rem;
	font-size: 3rem;
}
.home_right a{
	color: var(--blue);
	text-decoration: underline;
}
/*second area*/
.second_area{
	padding:6rem 0;
}
.second_area p{
	font-size: 2.8rem;
}
.second_area img {
    width: 45rem;
    border-radius: 1.6rem;
}
/* Third Area  */
.third_area{
    padding: 6rem 0;
    background-color: #F4F8FB;
}
.third_area h2{
	font-size: 4rem;
	font-weight: 700;
	margin-bottom: 2rem;
}
.third_area p{
	font-size: 2.8rem;
}
.third_area img{
	width: 60rem;
	border-radius: 1rem;
}
/* Fourth Area  */
.fourth_area{
	padding: 8rem 0;
}
.fourth_content{
	text-align: center;
}
.fourth_content h2{
	font-size: 4rem;
	font-weight: 700;
	margin-bottom: 2rem;
}
.fourth_content p{
	font-size: 2.8rem;
}
.fourth_content a{
	font-size: 2.8rem;
	color: var(--blue);
	text-decoration: underline;
}
/* Fifth Area  */
.fifth_area{
	padding: 6rem 0;
    background-color: #F4F8FB;
}
.fifth_area h2{
	font-size: 4rem;
	font-weight: 700;
	margin-bottom: 2rem;
}
.fifth_area p{
	font-size: 2.8rem;
}
.fifth_area img{
	border-radius: 1rem;
}
/* Sixth Area  */
.sixth_area{
	padding: 6rem 0;
}
.sixth_area h2{
	font-size: 4rem;
	font-weight: 700;
	margin-bottom: 2rem;
}
.sixth_area{
		font-size: 2.8rem;
}
/* Terms Section 
===================== */
.terms{
	padding: 10rem 0;
	text-align: center;
}
.terms h2{
	font-size: 3.4rem;
	text-decoration: underline;
}
/* Contact section 
=================== */
.contact_sec{
	padding:6rem 0;
	text-align: center;
    background-color: #F4F8FB;
}
.contact_sec h2{
	margin-bottom: 4rem;
	font-size: 3rem;
	font-weight: 700;
	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: 700;
}
.card-style p a:hover{
	color: var(--blue);
}
.contact_right img{
	width: 40rem;
}
/*footer*/
footer {
	padding: 5rem 0;
	background-color: #1F2430;
	background-color: var(--blue-light);
	color: #fff;
}
footer a{
	color: #fff;
}
footer h5{
	margin-bottom: 2rem;
}
footer a:hover{
	color: var(--blue);
}
.copyright{
	text-align: center;
	font-size: 2.1rem;
	color: #000;
}
/* Terms Page css */
.terms_banner{
	text-align: center;
	padding: 10rem 0;
    padding: 6rem 0;
    background-color: #F4F8FB;
    border-top: 1rem solid var(--blue);

}
.back_btn{
	font-weight: 600;
	font-size: 2.4rem;
	text-decoration: underline;
	margin-top: 1rem;
	display: block;
}
.terms_banner h2{
	font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
}
.terms_sec {
    padding: 10rem 0;
}
.terms_sec h2{
	margin-bottom: 3rem;
	font-size: 5rem;
    font-weight: 700;
}
.terms_content h3{
	margin-bottom: 5rem;
	font-size: 3.8rem;
    font-weight: 700;
}
.terms_content h3{
	margin-bottom: 2rem;
}
.terms_content h4{
	margin: 6rem 2rem 0 0;
	font-size: 3.2rem;
    font-weight: 700;
}
.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;
}

  