/*** RESET ***/
:root{
	--accentColor: #FE920E;
	--accentColor600: #ec870c;
	--accentGradient: linear-gradient(180deg, #F0E9E1 0%, rgba(240, 233, 225, 0) 100%), #FF8D00;
	--green500:#4E614F;
	--green600:#415142;
	--gray100:#FFF7ED;
	--gray200:#F0E9E1;
	--gray300:#EBEFF2;
	--gray350:#DFE8EE;
	--gray400:#C8D7E1;
	--gray450:#6E8698;	
	--gray500:#3E464C;
	--gray800:#2A343B;
	--primaryFont: 'Cera Pro';
	--swiper-pagination-color:var(--accentColor);
}

html,body{
	margin:0;
	padding:0;
	font-size:16px;
	line-height:100%;
}

body{
	line-height: 100%;
	font-family: var(--primaryFont);
	color: var(--gray500);
	background: #FFF;
}

*{
	box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h5{
	width:100%;
	display: inline-block;
	margin: 0 0 20px 0;
	line-height: 100%;
}
ul, ol{
	font-size: 18px;
	line-height: 170%;
	padding-left: 1.1em;
}
p{
	display: inline-block;
	width: 100%;
	font-size: 16px;
	margin: 0 0 20px 0;
	line-height: 170%;
	font-weight: 300;
}
p:last-child{
	margin-bottom: 0;
}
img{
	max-width: 100%;
	border:none;
	outline:none;
}
a{
	color: currentColor;
}
a, a:hover{
	text-decoration:none
}
.svg_icon{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1em;
	height: 1em;
}
input,
select,
textarea,
button{
	font-family: var(--primaryFont);
	outline: none;
}
.spacer{
	float:left;
	width:100%;
}

/*** SCROLL BAR ***/
::-webkit-scrollbar {
	width:5px;
}
::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
}
::-webkit-scrollbar-thumb {
	background-color: rgba(0, 0, 0, 0.3);
}

/*** MISC ***/
#page_wrapper{
	float:left;
	width:100%;
	padding-top: 86px;
	overflow: hidden;
}
.button{
	--btnColor:  none;
	--btnTextColor: #FFF;
	display: inline-block;
	position: relative;
	background: var(--btnColor);
	color: var(--btnTextColor);
	border: none;
	cursor: pointer;
	font-weight: 700;
	font-size: 16px;
	line-height: 150%;
	padding: 16px 35px;
	text-align: center;
	border-radius: 99px;
	overflow:hidden;
}
.button::before{
	content: '';
	background: linear-gradient(245deg, #F0E9E1 -15%, rgba(240, 233, 225, 0) 40%), #FF8D00;
	position: absolute;
	top: 0;
	left: 0;
	width: 150%;
	height: 100%;
	border-radius: 99px;
	z-index: -1;
	transition: all 0.3s;
	transform: translateX(-33%);
}
.button:hover::before{
	transform:translateX(0%)
}
.button i{
	display: inline-block;
	margin-left: 10px;
}
.button.ghost_button{
	background: none;
	border: 1px solid var(--btnColor);
	color: var(--btnColor);
}
.button.ghost_button:hover{
	background: var(--btnColor);
	color: var(--green500);
}
.button.button_green{
	--btnColor: var(--green500);
	--btnColorHover: var(--green600);
}

.dark_button{
	--btnColor:var(--gray800);
}

.fullwidth_button{
	width:100%;
	padding: 16px 0;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	justify-content: center;
}

.buttons_list{
	gap: 20px;
}

.section_title{
	font-weight: 700;
	font-size: 60px;
	line-height: 100%;
	color: var(--gray800);
	opacity: 0.9;
}
.section_title strong{
	color: var(--accentColor);
}

.section_subtitle{
	font-weight: 700;
	font-size: 44px;
	line-height: 100%;
}
.ball{
	width:300px;
	height: 300px;
	border-radius: 50%;
	background: var(--accentGradient);
}
.container{
	max-width: 1220px;
}

/*** GRAVITY FORMS ***/
.gform_description:empty{
	display: none;
}

/*** HEADER ***/
#header{
	position: fixed;
	top:0;
	left:0;
	padding: 15px 0;
	background: #FFF;
	z-index: 9;
}
#header_logo{
	position: relative;
	display: inline-block;
	width: 114px;
}
#header_menu{
	font-weight: 700;
	font-size: 16px;
	line-height: 170%;
	color: var(--gray800);
	gap:60px;
}
#header_menu a{
	transition: all 0.5s;;
}
#header_menu a:hover{
	color: var(--green500);
}
#header_buttons{
	gap: 15px;
}

/*** MOBILE MENU **/
#mobile_menu_trigger{
	position: relative;
	width: 30px;
	height: 22px;
	cursor: pointer;
}
#mobile_menu_trigger::after{
	content: '';
	position: absolute;
	top: calc(50% - 2px);
	left:0;
	width: 100%;
	height: 4px;
	background: currentColor;
	border-radius:2px;
	transition:all 0.5s;
}
.menu_open #mobile_menu_trigger::after{
	transform: translateX(100%);
	opacity: 0;
}
#mobile_menu_trigger i{
	position: absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}
#mobile_menu_trigger i::before{
	content: '';
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 4px;
	background: currentColor;
	border-radius:2px;
	transition:all 0.5s;
}
.menu_open #mobile_menu_trigger i::before{
	transform: rotate(45deg) translate(6px, 5px);
}
#mobile_menu_trigger i::after{
	content: '';
	position: absolute;
	bottom:0;
	left:0;
	width: 100%;
	height: 4px;
	background: currentColor;
	border-radius:2px;
	transition:all 0.5s;
}
.menu_open #mobile_menu_trigger i::after{
	transform: rotate(-45deg) translate(7px, -7px);
}
#mobile_menu_wrapper{
	position: fixed;
	top:0;
	left:0;
	width:100%;
	height: 100vh;
	background: var(--gray800);
	color: #FFF;
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s;
}
.menu_open #mobile_menu_wrapper{
	visibility: visible;
	opacity: 1;
}
#mobile_menu{
	position: absolute;
	top:50%;
	left:50%;
	line-height: 130%;
	text-align: center;
	transform: translate(-50%, -50%);
	font-size: 35px;
	gap:20px;
}

/*** FOOTER ***/
#footer_contact{
	padding:50px 0;
	margin-top: 90px;
	background: var(--accentColor);
	color: #FFF;
}
.footer_contact_image{
	position: absolute;
	border-radius: 30px 30px 0 0;
	top: -140px;
	left: 0;
	height: calc(100% + 190px);
	width: 100%;
	max-width: 400px;
	background-size: cover;
	background-position: center;
}
.footer_contact_content{
	padding-left: 100px;
}
#footer{
	background: var(--gray100);
}
#footer_menu{
	font-weight: 700;
	font-size: 16px;
	line-height: 170%;
	color: var(--gray800);
	gap:60px;
}
#footer_menu a{
	transition: all 0.5s;;
}
#footer_menu a:hover{
	color: var(--green500);
}

/*** LANDING ***/
.landing_section{
	padding:60px 0 60px;
}
.landing_section img{
	height:300px
}
.landing_section .ball{
	position: absolute;
	bottom: 0;
	right: 0;
	transform: translateY(28px) translateX(67px);
}
.landing_section p {
	font-size: 24px;
	line-height: 160%;
	color: var(--green500);
	font-weight: 500;
	opacity: 0.7;
}

/*** CENTERED TEXT BOX SECTION ***/
.centered_text_box_section{
	padding:40px 0;
}
.box{
	padding:50px;
	background: var(--gray800);
	color: #FFF;
	border-radius: 45px;
}
.box p{
	font-size: 20px;
	font-weight: 400;
	opacity: 0.7;
}

/*** BOXES GRID SECTION ***/
.boxes_grid_section{
	padding: 60px 0;
}

.boxes_grid_header p{
	font-size: 23px;
	line-height: 180%;
	text-align: center;
	color: var(--green500);
	font-weight: 500;
	opacity: 0.7;
}

.boxes_grid{
	margin-top:80px
}
.boxes_grid_item{
	padding: 40px;
	background: var(--gray200);
	color: var(--gray500);
}
.boxes_grid .col:nth-child(even) .boxes_grid_item{
	border-radius: 30px;
	background: var(--green600);
	color: #FFF;
}
.bullet{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	font-size: 40px;
	color: #000;
	font-weight: bold;
	background: #FFF;
	border-radius: 50%;
}
.bullet_wrapper{
	margin-bottom: 40px;
}
.boxes_grid_item h3{
	font-weight: 700;
	font-size: 29px;
	line-height: 150%;
}

/*** TEXT IMAGE SECTION ***/
.text_image_section{
	padding: 80px 0;
}
.text_image_section_image img{
	box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
	border-radius: 30px;
}
.text_image_section_image .ball{
	position: absolute;
	bottom: -25px;
	left: -30px;
	width: 150px;
	height: 150px;
}

/*** REGULAR PAGES ***/
.page_content_wrapper{
	padding: 80px 0;
	color: var(--green500);
}
.page_title{
	font-weight: 700;
	font-size: 65px;
	margin-bottom: 60px;
	line-height: 100%;
	color: var(--gray800);
}
.page_content .ball{
	position: absolute;
	top:50%;
	left:0;
	transform: translateX(-70%);
	z-index: -1;
}

@media(max-width:992px) {
	.section_title {
		font-size: 48px;
	}
	.landing_section .ball {
		width: 200px;
		height: 200px;
	}
	.section_subtitle {
		font-size: 36px;
	}
	.box {
		padding: 50px 30px;
	}
	.bullet_wrapper {
		margin-bottom: 25px;
	}
	.boxes_grid_item h3 {
		font-size: 27px;
	}
	#footer_contact {
		margin-top:0;
	}
	.footer_contact_content{
		padding: 0 40px;
	}
	.footer_contact_image{
		position: relative;
		left: -0.75rem;
		top: -50px;
		height: 300px;
		width: calc(100% + 1.5rem);
		max-width: calc(100% + 1.5rem);
		border-radius: 0;
	}
	#footer_menu {
		gap: 10px;
	}
	.page_title {
		font-size: 35px;
	}
}