/*-------------------------------------------------------------------------------------
Theme Name: Business Consultant Application
Author: OG Web Solutions
Version: 1.1
-------------------------------------------------------------------------------------/
/**
@File: Business Consultant Application Theme Styles
This file contains the styling for the actual theme, this
is the file you need to edit to change the look of the
theme.

# General Style
    ## container
    ## Back To Top
	## Preloader Spinner
# Header
# Footer
# Home Page
	## Home banner section
	## Think Consultant section
	## Background consultant
	## Business consultant section
	## grow section
	## Testimonials section
	## Question-section
	## Ready section
	## Pop up section
# Order Page 
# OTO Page 
# Thank you page
# Privacy Policy & Term and Conditions page
**/

/* ================================================== */
/* # General Style */
/* ================================================== */


/* -----Google font----- */
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,400;1,600;1,700;1,800;1,900&amp;display=swap');





.btn_cookie {
    border-radius: 10px;
    padding: 12px 30px;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-direction: column;
    flex-direction: column;
	width: 20em;
    font-size: small;
}


.texto-left{
	text-align:left;		

}	


/* ## Benefit Section */

.benefit {
	padding: 66px 0 80px 0;
	background-color: #f0f0f0;
}

.benefit-parent {
	background-color: #ffffff;
	text-align: center;
	margin-top: 20px;
	padding: 42px 30px 16px 30px;
}

.benefit-parent h3 {
	font-size: 22px;
	line-height: 45px;
	color: #000000;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	margin-bottom: 4px;
}

.benefit-parent p {
	font-size: 16px;
	line-height: 25px;
	color: #000000;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
}

.benefit-parent img {
	margin-bottom: 15px;
}


/*----- General style -------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    font-size: 25px;
    line-height: 1.2;
    /* color: #ffffff; */
}

h1, h2, h3, h4 {
    padding: 0;
    margin: 0;
}

h1 {
    font-size: 100px;
}

h2 {
    font-size: 70px;
    font-weight: 800;
}

h3 {
    font-size: 54px;
}

h4 {
    font-size: 27px;
}

p {
    font-size: 21px;
}

a {
    text-decoration: none;
    outline: none;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

a:hover {
    text-decoration: none;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
}

/* -----Button----- */
.button-sec a, button {
    width: 100%;
    color: rgb(255, 255, 255);
    background: rgb(253, 192, 84);
    font-size: 27px;
    line-height: 20px;
    font-weight: 700;
    background: linear-gradient(180deg, rgba(224, 74, 15, 1) 0%, rgba(242, 134, 38, 1) 100%) !important;
    padding: 5px 5px 5px 5px;
    display: block;
    border-bottom: 5px solid #e6944c;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    text-align: center;
}

.button-sec .title {
    display: block;
    font-size: 25px;
    font-weight: 800;
}

.button-sec .subtitle {
    font-size: 16px;
    font-weight: 600;
}
/* -----container--------------*/

.container {
    max-width: 1170px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

/* -------- Back To Top ----------*/
.backtotop{
	position: fixed;
	right: 15px;
	bottom: 15px;
	height: 40px;
	width: 40px;
	background-color: #fff;
	cursor: pointer;
	border: 2px solid #02aee8;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,.2);
	border-radius: 10px;
	opacity: 0.9;
	transition: opacity 200ms linear;
	display: none;
}

.backtotop::after{
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -7px;
	margin-top: -4px;
	transform: rotate(-45deg);
	height: 0px;
	width: 0px;
	border-width: 3px 3px 0 0;
	border-style: solid;
	padding: 5px;
	border-color: #02aee8;
}

.backtotop:hover{
	opacity: 1;
	transition: opacity 200ms linear;
}

/* --------- Preload Spinner--------- */
.preloadSpinner{
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: #ffffff;
	z-index: 99999;
}

 .preloadSpinner::after{
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	margin-top: -50px;
	margin-left: -50px;
	width: 100px;
	height: 100px;
	background-color: #f5f7fa;
	border: 1px solid #3c3c3c;
	border-top: 10px dotted #02aee8;
	border-radius: 100%;    
	animation: spinner 500ms infinite ease-in-out;
} 


@keyframes spinner{
	to{
		transform: rotate(360deg);
	}
}

@media screen and (max-width:767.98px) {
	.preloadSpinner::after{
		width: 50px;
		height: 50px;
		margin-top: -25px;
		margin-left: -25px;
		border-top: 5px dotted #ff2600;
	}
}

/* ---------header------------ */

.header {
    padding: 10px 0 10px 0;
    background: #10384f;
    z-index: 1;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
}

.header img {
    width: 150px;
}

.mail-sec {
    color: #ffffff;
    font-size: 18px;

    text-align: right;
    padding: 6px 15px 6px 0;
    display: inline-block;
}

.mail-sec img {
    max-width: 20px;
}

.mail-sec a {
    margin-left: 10px;
    color: #fff;
}

.mail-sec a:hover {
    text-decoration: underline;
}

/*----- Header section ends---- */

/* ----Footer section start -----*/

.footer {
    padding-top: 20px;
    padding-bottom: 30px;
    font-size: 13px;
    color: rgb(255, 255, 255);
    background-color: rgb(9, 47, 72);
}

.footer-logo {
    margin-top: 15px;
}
.footer img{
    max-width: 200px;
}
.footer p {
    margin-top: 13px;
    font-size: 12px;
    text-align: center;
}

.footer ul {
    display: inline-flex;
    margin-top: 20px;
    text-align: center;
}

.footer ul li {
    text-align: center;
    padding-left: 10px;
    padding: 0 10px;
}

.footer li:nth-child(1), .footer li:nth-child(2), .footer li:nth-child(3) {
    border-right: 1px solid rgb(255, 255, 255);
}

.footer a {
    color: rgb(255, 255, 255);
}

.copy-right {
    text-align: center;
    font-size: 14px;
    color: #fff;
}

/*---- Footer section ends here ---*/

/* --------------------------
    Home page start hare
--------------------------- */

/*-----  Banner section start here ----*/

.home-banner {
    padding-top: 55px;
    padding-bottom: 0px;
    background-image: url(https://ileven.graxven.com/home-banner.webp); 
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-color: rgb(86, 236, 221);
    border-bottom: 5px solid #56ecde;
}

.home-banner h1 {
    margin-top: 45px;
    font-size: 105px;
    margin-bottom: 12px;
    padding: 16px;
    font-weight: 800;
    background-color: rgba(0, 0, 0, 0.3);
    text-align: center;
    color:#ffffff;
}

.heading-color {
    color: #41fec6;
}

.home-banner-left {
    text-align: center;
    margin-bottom: 50px;
}

.home-banner-left h2 {
    margin-top: 10px;
    font-weight: 700;
    font-size: 53px;
    color:#ffffff;
}

video {
    padding-top: 22px;
}

.home-banner-left h3 {
    margin-top: 10px;
    font-size: 24px;
    line-height: 33px;
    font-weight: 700;
    color: #ffffff;
}

.home-banner-left .button-sec {
    margin-top: 35px;
    position: relative;
}

.home-banner-left .button-sec a:hover {
    box-shadow: inset 0 2px 2px 0 rgb(255 255 255 / 22%), 0 233px 233px 0 rgb(255 255 255 / 12%) inset;
}

.arrow ::after {
    content: url(https://ileven.graxven.com/right-arrow.png);
    position: absolute;
    top: -21px;
    left: -83px;
}

.arrow ::before {
    content: url(https://ileven.graxven.com/left-arrow.png);
    position: absolute;
    top: -25px;
    right: -83px;
}

.home-banner-right {
    position: relative;
}

.home-banner-right img {
    position: absolute;
    padding: 0 15px;
    bottom: 0px;
    left: 0;
}

/*----- Home banner section ends here -----*/

/*----- Think Consultant section start here ----*/

.think-cons {
    padding: 70px 0 80px 0;
    color: #2a2a2a;
}

.think-cons h2 {
    font-size: 69px;
    line-height: 1.0;
}

.think-cons p {
    margin-top: 20px;
    font-size: 21px;
    margin-bottom: 10px;
}

.think-cons ul li {
    font-size: 21px;
    padding-top: 15px;
    padding-left: 50px;
    background: url(https://ileven.graxven.com/small-icon.png);
    background-repeat: no-repeat;
    background-position: 5px 18px;
}


.think-cons .heading-color {
    color: #02aee8;
}


/*----- Think Consultant section ends here ----*/

/*---- Background consultant start here  ----*/

.bg-consult {
    background-color: #e6f9ff;
    color: #2a2a2a;
    text-align: center;
    padding-top: 80px;
    padding-bottom: 80px;
}

.bg-consult h2 {
    font-size: 73px;
    line-height: 64px;
}

.bg-consult h4 {
    font-size: 22px;
    line-height: 64px;
}

.bg-consult p {
    font-weight: 600;
    padding-top: 40px;
    font-size: 25px;
}

.bg-consult .button-sec p {
    padding: 0;
    font-size: 16px;
}

.bg-consult img {
    padding-top: 20px;
}

.mid-border {
    border-color: rgb(1, 173, 231);
    max-width: 160px;
    margin-left: auto;
    margin-right: auto;
    border-top-width: 5px;
    border-top-style: solid;
}

.consult-exp {
    padding-top: 10px;
}

.consult-exp ul li {
    font-size: 21px;
    font-weight: 600;
    text-align: start;
    padding-bottom: 20px;
    padding-top: 15px;
    padding-left: 50px;
    background: url(https://ileven.graxven.com/small-icon.png);
    background-repeat: no-repeat;
    background-position: 5px 18px;
}

.consult-exp .heading-color {
    color: #02aee8;
}

.bg-consult .button-sec a, button {
    font-size: 27px;
}

.bg-consult .button-sec {
    margin-top: 30px;
    padding: 0;
}

/*---- Background consultant ends here  ----*/

/*----- Business consultant section start here  ----*/

/*----Business consultant section start here ------*/

/*---- grow section start here  -----*/

.grow-section {
    background: url(https://ileven.graxven.com/grow-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 85px;
    text-align: center;
    padding-bottom: 100px;
}

.grow-section h2 {
    font-size: 77px;
    line-height: 70px;
    color: #ffffff;
}

.grow-section h3 {
    padding-top: 25px;
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
}

.grow-section .button-sec {
    margin-top: 24px;
}

.grow-section ul li {
    font-size: 18px;
    padding-top: 15px;
    padding-left: 50px;
    background: url(https://ileven.graxven.com/small-icon.png);
    background-repeat: no-repeat;
    background-position: 5px 18px;
	color: #ffffff;
}

/*----- Grow section ends here -----*/

/*----- Achievers section start here -----*/

.achievers {
    color: #3c3c3c;
    padding: 65px 0 65px 0;
}

.achievers h2 {
    font-size: 77px;
    line-height: 65px;
}

.achievers h4 {
    font-size: 28px;
    font-weight: 600;
}

.achievers h3 {
    font-size: 24px;
    font-weight: 600;
}

.achievers p {
    font-size: 19px;
    font-style: italic;
    font-weight: 700;
    padding-top: 0;
}

.achievers h3 img {
    margin-left: 15px;
    margin-bottom: 5px;
}

.ach-name b {
    font-size: 18px;
    font-weight: 900;
}

.achievers .mid-border {
    margin-top: 17px;
}
.achievers-space ul li{
    padding-bottom:20px;
}

/*----- Achievers section Ends here -----*/

/*----- Question-section start here -----*/

.question-section {
    padding-top: 75px;
    padding-bottom: 70px;
    background-color: #d6f5ff;
}

.q-heading {
    background: url(https://ileven.graxven.com/ask-bg.png);
    padding: 15px 0 15px 0;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.q-heading h2 {
    font-size: 53px;
    text-align: center;
    color: #ffffff;
}

.faq i {
    color: #02aee8;
}

.faq b {
    font-size: 24px;
    font-weight: 800;
    padding-left: 15px;
    color: #2a2a2a;
}

.faq p {
    font-weight: 600;
    padding-top: 10px;
    font-size: 20px;
    padding-bottom: 25px;
    color: #3d4143;
    border-bottom: 1px solid #c8c8c8;
}

/*----- Question section ends here -----*/

/*----- Ready section start here -----*/

.ready {
    background: url(https://ileven.graxven.com/ready-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 85px 0 100px 0;
}

.ready h2 {
    color: #ffffff;
    font-size: 89px;
    font-weight: 800;
}

.ready h3 {
    /*color: #ffffff;
    font-size: 24px;
    padding-top: 20px;
    padding-bottom: 35px;
	*/
	
	margin-top: 10px;
    font-size: 24px;
    line-height: 33px;
    font-weight: 700;
    color: #ffffff;
}

.ready .button-sec {
    margin-top: 0;
	padding-top: 30px;
}


.ready ul li {
    font-size: 18px;
    padding-top: 15px;
    padding-left: 50px;
    background: url(https://ileven.graxven.com/small-icon.png);
    background-repeat: no-repeat;
    background-position: 5px 18px;
	color: #ffffff;
}


/*---- ready section ends here ----*/
/*------ Pop up section -----*/
/*----- Pop up section ends here----*/
/* --------------------------
    Home page ends hare
--------------------------- */


/* --------------------------
    order page start hare
--------------------------- */

/*----- banner page start here -----*/

/*----- banner page ends here -----*/

/*----- form-receive section start here -----*/

/* Firefox */
.achievers ul li img{
    border-radius: 50%;
}

/*----- Form-receive section ends here -----*/

/* -------------------------
    Order Page ends here
---------------------------- */

/*--------------------------
    OTO Page Start Here
 ------------------------- */

 button {
    font-size: 26px;
}

/*-------------------------
 OTO Page ends here
 ------------------------ */

/*-------------------------
 Thank you page start here
 ------------------------ */

/*-------------------------
Thank you page ends here
 ------------------------ */

/*-----------------------------------------------
# Privacy Policy & Term and Conditions page
-------------------------------------------------*/

@media (max-width:1279px) {
	
	.benefit-parent h3 {
		font-size: 21px;
		line-height: 43px;
	}
	.benefit-parent {
		padding: 40px 25px 16px 25px;
	}
}


@media (max-width:991px) {
	
	.benefit-parent h3 {
		font-size: 18px;
		line-height: 25px;
	}
	.benefit-parent {
		padding: 30px 15px 15px 15px;
	}
}

@media (max-width:767px) {
	
	.benefit-parent h3 {
		font-size: 24px;
	}
	.benefit-parent {
		padding: 30px 13px 15px 14px;
	}
	
	.title-section h2 {
		font-size: 31px;
		margin-bottom: 5px;
	}
	.title-section p {
		font-size: 17px;
	}
	

	
}

@media (max-width:399px) {
	
	.benefit-parent {
		padding: 25px 13px 15px 14px;
	}
	
}

