@charset "utf-8";
/* CSS Document */

/******************************

[Table of Contents]

1. Fonts
2. Body and some general stuff
3. Header
	3.1 Top Bar
	3.2 Header Content
	3.3 Logo
4. Menu
5. Home
6. Boxes
7. About
8. Departments
9. Services
10. CTA
11. Footer



******************************/

/***********
1. Fonts
***********/

@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900');

/*********************************
2. Body and some general stuff
*********************************/

*
{
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
body
{
	font-family: 'Roboto', sans-serif;
	font-size: 15px;
	font-weight: 500;
	background: #FFFFFF;
	color: #696969;
	
}
div
{
	display: block;
	position: relative;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
ul
{
	list-style: none;
	margin-bottom: 0px;
}
p
{
	font-family: 'Roboto', sans-serif;
	font-size: 15px;
	line-height: 2;
	font-weight: 500;
	color: #696969;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
p:last-of-type
{
	/* margin-bottom: 0; */
}
a
{
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
a, a:hover, a:visited, a:active, a:link
{
	text-decoration: none;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
a:hover
{
	color: #20d34a !important;
}
::selection
{
	color: #20d34a;
}
p::selection
{
	
}
h1{font-size: 48px;}
h2{font-size: 36px;}
h3{font-size: 24px;}
h4{font-size: 18px;}
h5{font-size: 14px;}
h1, h2, h3, h4, h5, h6
{
	font-family: 'Roboto', sans-serif;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
h1::selection, 
h2::selection, 
h3::selection, 
h4::selection, 
h5::selection, 
h6::selection
{
	
}
.form-control
{
	color: #db5246;
}
section
{
	display: block;
	position: relative;
	box-sizing: border-box;
}
.clear
{
	clear: both;
}
.clearfix::before, .clearfix::after
{
	content: "";
	display: table;
}
.clearfix::after
{
	clear: both;
}
.clearfix
{
	zoom: 1;
}
.float_left
{
	float: left;
}
.float_right
{
	float: right;
}
.trans_200
{
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.trans_300
{
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.trans_400
{
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
}
.trans_500
{
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}
.fill_height
{
	height: 100%;
}
.super_container
{
	width: 100%;
	overflow: hidden;
}
.prlx_parent
{
	overflow: hidden;
}
.prlx
{
	height: 130% !important;
}
.parallax-window
{
    min-height: 400px;
    background: transparent;
}
.nopadding
{
	padding: 0px !important;
}
.button
{
	display: inline-block;
	height: 51px;
	/* background: #283290; */
	background: #339f44;
}
.button::after
{
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 3px;
	background: #20d34a;
	content: '';
	z-index: 0;
	-webkit-transition: all 400ms cubic-bezier(.33,.68,.59,.99);
	-moz-transition: all 400ms cubic-bezier(.33,.68,.59,.99);
	-ms-transition: all 400ms cubic-bezier(.33,.68,.59,.99);
	-o-transition: all 400ms cubic-bezier(.33,.68,.59,.99);
	transition: all 400ms cubic-bezier(.33,.68,.59,.99);
}
.button a
{
	display: block;
	position: relative;
	line-height: 51px;
	font-size: 14px;
	font-weight: 900;
	color: #FFFFFF;
	padding-left: 39px;
	padding-right: 45px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	z-index: 10;
}
.button:hover::after
{
	height: 100%;
}
.button:hover a
{
	color: #FFFFFF !important;
}
.section_title
{
	padding-top: 17px;
}
.section_title h2
{
	font-size: 35px;
	font-weight: 600;
	color: #232323;
}
.section_title::before
{
	display: block;
	position: absolute;
	left: 1px;
	top: 0;
	width: 54px;
	height: 3px;
	background: #20d34a;
	content: '';
}
.section_title_light h2
{
	color: #FFFFFF;
}

/*********************************
3. Header
*********************************/

.header
{
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #FFFFFF;
	z-index: 100;
}
.header.scrolled
{
	top: -48px;
}

/*********************************
3.1 Top Bar
*********************************/

.top_bar
{
	width: 100%;
	/* background: #283290; */
	background: #339f44;
}
.top_bar_content
{
	width: 100%;
	height: 48px;
	padding-left: 214px;
}
.top_bar_item
{
	margin-left: 33px;
}
.top_bar_item i{
	color: #fff;
	font-size: 18px;
	font-weight: 400;
	padding-right: 5px;
}
.top_bar_item a
{
	font-size: 17px;
	font-weight: 600;
	color: #FFFFFF;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.top_bar_item:first-child
{
	margin-left: 37px;
}

@media(max-width:998px){
	.top_bar_item:first-child{
		margin-left: 25px;
	}
}

.emergencies
{
	height: 100%;
	/* background: #ff0030; */
	color: #FFFFFF;
	font-size: 14px;
	font-weight: 700;
	/* padding-left: 38px;
	padding-right: 38px; */
	padding: 0 15px;
}

.emergencies ul li i{
	font-size: 22px;
	padding: 8px;
	color: #fff;
}
.emergencies ul li i:hover{
	color: #086c3a;
}

/*********************************
3.2 Header Content
*********************************/

.header_container
{
	width: 100%;
	background: #FFFFFF;
	border-bottom: 2px solid #339f44;
}
.header_content
{
	width: 100%;
	height: 102px;
}
.header.scrolled .header_content
{
	/* height: 80px; */
}
.main_nav ul li
{
	display: inline-block;
}
.main_nav ul li:not(:first-child)
{
	margin-left: 32px;
}
@media(max-width:1198px){
	.main_nav ul li:not(:first-child){
		margin-left: 20px;
	}
}
@media(max-width:1026px){
  .main_nav ul li:not(:first-child){
    margin-left: 18px;
  }
}

.main_nav ul li a
{
	font-size: 17.5px;
	font-weight: 500;
	color: #323232;
}
.hamburger
{
	display: none;
	cursor: pointer;
}
.hamburger i
{
	font-size: 24px;
	color: #272727;
}

.dropdown {
  position: relative;
}

.dropdown i{
	padding-left: 3px;
	font-size: 17px;
}

ul.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  width: 230px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  padding: 15px 20px;
}

ul.dropdown-content li{
	width: 100%;
}

ul.dropdown-content li a{
	font-size: 16px;
	padding: 5px;
	line-height: 2;
	text-align: left;
}

.dropdown:hover ul.dropdown-content {
  display: block;
}

@media (min-width: 768px) {
  .menu_mm .dropdown:hover .dropdown-content {
    display: block;
  }
}


/*********************************
3.3 Logo
*********************************/

.logo_container_outer
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
.logo_container
{
	position: absolute;
	top: 0;
	left: 15px;
	width: 216px;
	/* height: 177px; */
	height: 149px;
	background: #FFFFFF;
	box-shadow: 0px 31px 29px rgba(0,0,0,0.09);
	z-index: 10;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.header.scrolled .logo_container
{
	top: 48px;
	/* height: 120px; */
	height: 102px;
}

.header.scrolled .logo_container .logo_content img.site-logo{
	width: 200px;
	object-fit: cover;
}

.logo_container a
{
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
}
.logo_content
{
	width: 100%;
	height: 100%;
	/* padding-left: 36px; */
}
.logo_line
{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 4px;
	background: #20d34a;
}
.logo
{
	margin-top: 27px;
}
.logo span
{
	color: #20d34a;
}
.logo_container a .logo:hover
{
	color: #283290;
}
.logo_text
{
	font-size: 30px;
	font-weight: 500;
	color: #283290;
	line-height: 0.75;
}
.logo_box
{
	display: inline-block;
	width: 23px;
	height: 23px;
	background: #20d34a;
	color: #FFFFFF;
	font-size: 24px;
	line-height: 23px;
	text-align: center;
	-webkit-transform: translateY(-2px);
	-moz-transform: translateY(-2px);
	-ms-transform: translateY(-2px);
	-o-transform: translateY(-2px);
	transform: translateY(-2px);
	margin-left: 1px;
}
.logo_sub
{
	font-size: 14px;
	font-weight: 400;
	color: #8f8e8e;
	padding-left: 3px;
	margin-top: 2px;
}

/* SITE LOGO */
.logo_content img {
  width: 400px;  
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .logo_content img {
    width: 180px;
	height: auto;
	object-fit: cover;
  }
  .logo_container{
	box-shadow: none;
  }
  .haeder.scrolled .logo_container{
	box-shadow: 0px 31px 29px rgba(0,0,0,0.09);
  } 
}

/*********************************
4. Menu
*********************************/

.menu_container
{
	position: fixed;
	top: 0;
	right: -50vw;
	width: 50vw;
	height: 100vh;
	background: #FFFFFF;
	z-index: 101;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
	-ms-transition: all 0.6s ease;
	-o-transition: all 0.6s ease;
	transition: all 0.6s ease;
	visibility: hidden;
	opacity: 0;
}
.menu_container.active
{
	visibility: visible;
	opacity: 1;
	right: 0;
}
.menu
{
	position: absolute;
	top:150px;
	left: 0;
	/* padding-left: 15%; */
	padding-left: 10%;
}
.menu_inner
{
	width: 100%;
	height: 100%;
}
.menu_list
{
	-webkit-transform: translateY(1.5rem);
	-moz-transform: translateY(1.5rem);
	-ms-transform: translateY(1.5rem);
	-o-transform: translateY(1.5rem);
	transform: translateY(1.5rem);
	-webkit-transition: all 1000ms 400ms ease;
	-moz-transition: all 1000ms 400ms ease;
	-ms-transition: all 1000ms 400ms ease;
	-o-transition: all 1000ms 400ms ease;
	transition: all 1000ms 400ms ease;
	opacity: 0;
}
.menu_container.active .menu_list
{
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	-ms-transform: translateY(0px);
	-o-transform: translateY(0px);
	transform: translateY(0px);
	opacity: 1;
}
.menu_item
{
	margin-bottom: 6px;
}
.menu_item.dropdown{
	font-size: 18px;
	color: #333;
	font-weight: 600;
}

.dropdown-btn {
  background: none;
  border: none;
  color: #333;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
  text-align: left;
}
.dropdown-btn:hover {
  color: #147334;
}


.menu_item a
{
	font-family: 'Roboto', sans-serif;
	/* font-size: 36px; */
	font-size: 18px;
	font-weight: 700;
	color: #272727;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.menu_item a:hover
{
	color: #ffb606;
}
.menu_close_container
{
	position: absolute;
	/* top: 86px;
	right: 79px; */
	top: 30px;
	right: 30px;
	width: 21px;
	height: 21px;
	/* width: 150px; */
	/* height: 30px; */
	transform: none;
	cursor: pointer;
	z-index: 10;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

.menu_close
{
	top: 9px;
	width: 21px;
	height: 3px;
	background: #3a3a3a;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.menu_close::after
{
	display: block;
	position: absolute;
	top: -9px;
	left: 9px;
	content: '';
	width: 3px;
	height: 21px;
	background: #3a3a3a;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.menu_close_container:hover .menu_close,
.menu_close_container:hover .menu_close::after
{
	background: #20d34a;
}
.menu_extra
{
	position: absolute;
	left: 0;
	/* bottom: 0; */
	bottom: -10px;
	padding-left: 12%;
	padding-bottom: 25px;
}
/* .menu_appointment a
{
	font-size: 18px;
	color: #000;
}
.menu_emergencies
{
	font-size: 13px;
	color: #272727;
} */

/* menu contact */
.panel_footer {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 99999;
  padding: 0 25px;
  font-size: 14px;
}
/* .phone_element {
  border-top: 1px solid #d9e1e6;
  padding: 20px 0 20px 0;
  margin-top: 20px;
  position: relative;
  line-height: 1.4;
} */
.phone_element img{
	width: 200px;
}
.menu_extra a {
  display: flex;
  align-items: center;
}
.menu_extra a span {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 800;
  color: #1a3023;
}

.menu_extra a span:hover{
  color: #147334;
}

.menu_extra a span em {
  color: #444;
  display: block;
  font-style: inherit;
  text-transform: uppercase;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 2px;
}
.menu_extra a i {
  margin-right: 15px;
  font-size: 30px;
  font-size: 1.875rem;
  color: #147334;
}
.menu_extra.no_borders {
  padding-top: 5px;
  border-top: none;
}

/*********************************
5. Home
*********************************/

.home
{
	width: 100%;
	/* height: 900px; */
	height: 800px;
}
.home_slider_container
{
	width: 100%;
	height: 100%;
}
.home_slider_background
{
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.home_slider_progress
{
	position: absolute;
	left: 0;
	bottom: 0px;
	width: 0;
	max-width: 100%;
	height: 2px;
	background: #20d34a;
	z-index: 1;
}
.home_content
{
	position: absolute;
	top: 39.8%;
	/* top: 33.8%; */
	/* left: 0; */
	width: 100%;
}
.home_content_inner
{
	width: 550px;
}
.home_title h1
{
	/* font-size: 69.24px; */
	font-size: 54px;
	font-weight: 900;
	/* color: #272727; */
	color: #fff;
	line-height: 1.0398;
}
.home_text
{
	padding-right: 20px;
	margin-top: 10px;
	padding-left: 3px;
}
.home_text p
{
	font-size: 16px;
	font-weight: 500;
	/* color: #112; */
	color: #eee;
	line-height: 1.75;
}
.home_button
{
	margin-top: 34px;
	margin-left: 3px;
}
.banner_logo{

}

/*********************************
6. Boxes
*********************************/

.boxes
{
	width: 100%;
	background: transparent;
	z-index: 10;
	padding-bottom: 35px;
}
.box_col
{
	margin-top: -59px;
}
.box
{
	width: 100%;
	/* height: 287px; */
	height: 180px;
	background: #147334;
	padding-left: 42px;
	/* padding-top: 29px; */
	padding-top: 15px;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.box::after
{
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 4px;
	background: #20d34a;
	content: '';
}
.box:hover
{
	box-shadow: 0px 15px 49px rgba(0,0,0,0.59);
}
.box_title
{
	font-size: 30px;
	font-weight: 500;
	color: #FFFFFF;
	margin-top: 11px;
}
.working_hours
{
	/* padding-top: 29px; */
	padding-top: 16px;
	padding-right: 60px;
}
.working_hours_list
{
	margin-top: 40px;
}
.working_hours_list ul li
{
	font-size: 14px;
	font-weight: 400;
	color: #FFFFFF;
}
.working_hours_list ul li:not(:last-child)
{
	margin-bottom: 15px;
}
.box_icon
{
	width: 37px;
	height: 37px;
}
.box_icon img
{
	/* max-width: 100%; */
	max-width: 135%;
}
.box_text
{
	font-size: 22px;
	line-height: 2;
	color: #FFFFFF;
	font-weight: 400;
	margin-top: 7px;
}
.box_phone
{
	font-size: 30px;
	font-weight: 400;
	color: #20d34a;
	margin-top: 20px;
}
.box_appointments
{
	padding-right: 30px;
}
.box_emergency
{
	padding-right: 30px;
}
.box_emergency_text
{
	font-size: 14px;
	line-height: 2.14;
	color: #FFFFFF;
	font-weight: 400;
	margin-top: 18px;
}

/*********************************
7. About
*********************************/

.about
{
	width: 100%;
	background: #f9f9f9;
	padding-top: 92px;
	padding-bottom: 92px;
}
.about_text
{
	margin-top: 20px;
}
.about_text p{
	margin-bottom: 10px;
	font-size: 16px;
	color: #444;
}
.about_button
{
	margin-top: 30px;
}
.about_image
{
	/* position: absolute; */
	right: 0;
	bottom: 0;
}
.about_image img
{
	max-width: 100%;
}

/*********************************
8. Departments
*********************************/

.departments
{
	width: 100%;
	background: transparent;
	padding-top: 75px;
	padding-bottom: 65px;	
}
.departments_background
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.departments_row
{
	margin-top: 79px;
}
.dept_col
{
	margin-bottom: 30px;
}
.dept
{
	width: 100%;
	height: 100%;
}
.dept_image
{
	width: 100%;
}
.dept_image img
{
	max-width: 100%;
}
.dept_content
{
	padding-top: 48px;
	padding-bottom: 55px;
	background: #FFFFFF;
}
.dept_content::after
{
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: #20d34a;
	content: '';
}
.dept_title
{
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	color: #232323;
}
.dept_subtitle
{
	font-size: 14px;
	font-weight: 400;
	color: #696969;
	margin-top: 5px;
}
.dept_text p
{
	color: #FFFFFF;
	-webkit-transform: translateY(-9px);
	-moz-transform: translateY(-9px);
	-ms-transform: translateY(-9px);
	-o-transform: translateY(-9px);
	transform: translateY(-9px);
}
.dept_button
{
	position: absolute;
	bottom: 0;
	left: 0;
	background: #FFFFFF;
}
.dept_button a
{
	color: #272727;
}

/*********************************
9. Services
*********************************/

.services
{
	width: 100%;
	background: #FFFFFF;
	padding-top: 95px;
	padding-bottom: 65px;
}
.services_row
{
	margin-top: 95px;
}
.service_col
{
	margin-bottom: 30px;
}
.service
{
	width: 100%;
	background: #f5f7fa;
	padding-top: 46px;
	padding-left: 30px;
	padding-right: 30px;
	padding-bottom: 57px;
}
.service:hover
{
	background: #283290;
}
.service::after
{
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 4px;
	background: #20d34a;
	content: '';
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.service:hover::after
{
	visibility: visible;
	opacity: 1;
}
.service_icon
{
	width: 61px;
	height: 61px;
	margin-left: auto;
	margin-right: auto;
}
.service_icon svg
{
	width: 61px;
	height: 61px;
}
.service_icon img
{
	max-width: 100%;
}
.svg path,
.svg rect,
.svg polygon
{
	fill: #20d34a;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.service:hover .svg path,
.service:hover .svg rect,
.service:hover .svg polygon
{
	fill: #FFFFFF;
}
.service_text
{
	margin-top: 16px;
}
.service_text p
{
	color: #696969;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.service_title
{
	font-size: 20px;
	font-weight: 700;
	color: #232323;
	padding-top: 41px;
	margin-top: 26px;
}
.service_title::before
{
	display: block;
	position: absolute;
	left: 50%;
	top: 0;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 54px;
	height: 3px;
	background: #20d34a;
	content: '';
}
.service:hover .service_title
{
	color: #FFFFFF;
}
.service:hover .service_text p
{
	color: rgba(255,255,255,0.65);
}

/*********************************
10. CTA
*********************************/

.cta
{
    width: 100%;
	padding-top: 131px;
	padding-bottom: 116px;
}
.cta_background
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.cta_content
{
	max-width: 768px;
	margin-left: auto;
	margin-right: auto;
}
.cta_content h2
{
	font-size: 48px;
	font-weight: 700;
	color: #FFFFFF;
}
.cta_content p
{
	font-size: 14px;
	font-weight: 500;
	color: #FFFFFF;
	margin-top: -3px;
}
.cta_button
{
	margin-top: 38px;
}

/*********************************
11. Footer
*********************************/

.footer
{
	width: 100%;
}
.footer_container
{
	width: 100%;
	/* background: #060b3a; */
	background: #000;
	padding-bottom: 77px;
}
.footer_logo_container
{
	width: 100%;
	height: 157px;
	background: #FFFFFF;
}
.footer_logo_container::after
{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: #20d34a;
	content: '';
}
.footer_logo_container a
{
	display: block;
	width: 100%;
	height: 100%;
}
.footer_logo_container .logo_content
{
	display: inline-block;
	padding-left: 0;
	width: auto;
	height: auto;
}

.footer_logo_container .logo_content img{
	width: 250px;
}

.footer_logo_container .logo
{
	margin-top: 10px;
}
.footer_about_text
{
	margin-top: 36px;
}
.footer_about_text p
{
	font-size: 15px;
	color: #eee;
}

.footer_about_list
{
	margin-top: 32px;
}
.footer_about_list li:not(:last-child)
{
	margin-bottom: 9px;
}
.footer_about_icon
{
	display: inline-block;
	width: 35px;
	height: 35px;
	/* background: #20d34a; */
	background: #147334;
	text-align: center;
	vertical-align: middle;
}
.footer_about_icon img
{
	position: absolute;
	width: 25px;
	height: 25px;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.footer_about_list li span
{
	font-size: 16px;
	font-weight: 500;
	color: #ddd;
	padding-left: 10px;
}
.footer_column
{
	padding-top: 138px;
}
.footer_title
{
	font-size: 24px;
	font-weight: 700;
	color: #ffffff;
	margin-left: 20px;
}
.footer_title i{
	font-size: 28px;
	font-weight: 600;
	padding-right: 5px;
} 
.footer_links ul
{
	-webkit-columns: 2;
	-moz-columns: 2;
	columns: 2;
	margin-top: 35px;
}
.footer_links ul li:not(:last-child)
{
	margin-bottom: 20px;
}
.footer_links ul li a
{
	font-size: 16.5px;
	font-weight: 600;
	color: #eee;
}
.footer_news ul
{
	margin-top: 35px;
}
.footer_news_title{
	font-size: 17px;
	color: #ddd;
}
.footer_news_title a
{
	font-size: 16px;
	font-weight: 500;
	color: #fff;
}
.footer_news_date
{
	font-size: 14px;
	font-weight: 500;
	color: #20d34a;
	margin-top: 7px;
}

.footer_news ul li:not(:last-child)
{
	margin-bottom: 15px;
}
.copyright
{
	width: 100%;
	/* background: #020523; */
	background: #222;
}
.copyright_content
{
	width: 100%;
	height: 62px;
}
.cr
{
	font-size: 14px;
	font-weight: 500;
	color: #ccc;
}

.cr a{
	color: #44b24c;
}

.cr a:hover{
	color: #086c3a;
}

.footer_social ul
{
	margin-right: -5px;
}
.footer_social ul li
{
	display: inline-block;
}
.footer_social ul li:not(:last-child)
{
	margin-right: 19px;
}
.footer_social ul li a i
{
	color: #20d34a;
	padding: 5px;
	font-size: 22px;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.footer_social ul li a i:hover
{
	color: #FFFFFF;
}

/* SIDE BUTTONS */
.side-button {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: #8e3838;
  color: #fff;
  font-weight: 600;
  border-radius: 8px 0 0 8px;
  cursor: pointer;
  transition: 0.3s ease;
  z-index: 999;
  writing-mode:sideways-lr;
  text-orientation: mixed;
  padding: 12px 8px;
}
.side-button a {
  text-decoration: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 1px;
}
.side-button:hover {
  background: #328e44;
}
.side-button i {
  font-size: 18px;
}

.modal-header{
	background: #147334;
}

@media(max-width: 1024px){
	.side-button{
		top: 50%;
	}
}

@media (max-width: 768px) {
  .side-button {
    top: 40%;
    writing-mode: sideways-lr;
    text-orientation: mixed;
    border-radius: 10px 0 0 10px;
    padding: 10px 5px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .side-button span {
    font-size: 14px;
  }
}

/* BENEFITS - HOME */
.why-us h2 {
  font-size: 42px;
  text-align: center;
  color: #111;
  margin: 20px 0;
  margin-bottom: 35px;
}

.why-us {
  max-width: 1170px;
  width: 100%;
  padding: 60px 20px;
  margin: 0 auto;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  justify-items: center;
}

.benefits{
   transform: scale(1.05);	
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.benefit {
  background-color: #f9f9f9;
  border-radius: 3px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding: 10px;
  width: 100%;
  max-width: 350px;
}

.benefit:hover{
	transform: scale(1.03);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.benefits-col{
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
}

.benefit img{
	width: 60px;
	height: 60px;
	margin-left: 10px;
}

.number {
  display: inline-block;
  background-color: #147334;
  -webkit-text-stroke: 2px #fff;
  color: #fff;
  font-size: 1.7em;
  font-weight: bold;
  width: 50px;
  height: 50px;
  line-height: 50px; 
  letter-spacing: 2;
  border-radius: 50%;
  margin-bottom: 15px;
}

.benefit h3 {
  color: #376639;
  font-size: 23px;
  margin: 10px 0;
}

.benefit p {
  color: #333;
  font-size: 15px;
  line-height: 2;
  margin: 0;
}

@media (max-width: 768px) {
  .benefit {
    max-width: 100%;
  }
}

/* HOME VIDEO SECTION */
.video-container {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  /* max-width: 960px; */
  max-width: 1200px;
  margin: 20px auto;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  background: #000;
}

.video-container::before {
  content: "";
  display: block;
  /* padding-top: 56.25%; */
  padding-top: 45%;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 3px;
}

@media (max-width: 768px) {
  .video-container {
    max-width: 100%;
    margin: 10px auto;
    border-radius: 5px;
  }
}

/* SERVICES */
.tabbed-services {
  padding: 100px 20px;
  background: #f9f9f9;
}

.tabbed-services .container{
	padding: 10px;
}

.section-title {
  text-align: center;
  font-size: 2.4rem;
  color: #1a4d2e;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  font-size: 15px;
  color: #444;
  margin-bottom: 50px;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.tab {
  background: #e8f5e9;
  border: none;
  color: #2e7d32;
  padding: 12px 28px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
}

.tab.active, .tab:hover {
  background: #388e3c;
  color: #fff;
}

.tab-content-wrapper {
  position: relative;
  overflow: hidden;
}

.tab-content {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.tab-content.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.tab-info {
  flex: 1 1 45%;
}

.tab-info h3 {
  color: #1a4d2e;
  font-size: 2.4rem;
  margin-bottom: 15px;
}

.tab-info p {
  color: #444;
  font-size: 16px;
  margin-bottom: 20px;
}

.tab-info ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.tab-info li {
  margin: 10px 0;
  color: #333;
  font-size: 17px;
}

.tab-info li i {
  color: #388e3c;
  font-size: 18px;
  margin-right: 8px;
}

.tab-image {
  flex: 1 1 45%;
  text-align: center;
}

.tab-image img {
  width: 100%;
  /* max-width: 500px; */
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.tab-image img:hover {
  transform: scale(1.05);
}

.btn {
  background: #388e3c;
  color: white;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #2e7d32;
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .tab-content {
    flex-direction: column;
    text-align: center;
  }
  .tab-info, .tab-image {
    flex: 1 1 100%;
  }
  .tab-info ul {
    text-align: left;
    margin: 0 auto;
    display: inline-block;
  }
  .tab-info h3{
    font-size: 2.2rem;
  }
}

/* HOME Testimonials */
    .testimonials {
      position: relative;
      overflow: hidden;
      padding: 80px 0;
      color: #fff;
      text-align: center;
    }

    .testimonials_background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        z-index: -1;
        filter: brightness(0.4);
    }

    .section_title_light h2 {
        color: #fff;
        font-size: 40px;
        margin-bottom: 50px;
        position: relative;
		text-align: left;
    }

    .testimonial {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        padding: 40px 25px;
        margin: 0 auto;
        max-width: 700px;
        position: relative;
        display: none;
        animation: fade 0.7s ease-in-out;
    }

    .testimonial.active {
        display: block;
    }

    @keyframes fade {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .test_icon img {
        width: 20px;
        margin-bottom: 15px;
    }

    .test_text {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 25px;
    }

    .test_author {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .test_author_image img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        border: 3px solid #00b4ff;
        object-fit: cover;
    }

    .test_author_name a {
        color: #fff;
		font-size: 18px;
        font-weight: bold;
        text-decoration: none;
    }

    .test_author_name span {
        color: #ccc;
        font-size: 14px;
    }

    .testimonial-nav {
        margin-top: 20px;
    }

    .testimonial-dot {
        display: inline-block;
        width: 12px;
        height: 12px;
        background-color: #888;
        border-radius: 50%;
        margin: 0 5px;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    .testimonial-dot.active {
        background-color: #147334;
    }

    .arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        font-size: 28px;
        color: #fff;
        cursor: pointer;
        background-color: rgba(255, 255, 255, 0.15);
        border-radius: 50%;
        padding: 10px 20px;
        transition: background 0.3s;
    }

    .arrow:hover {
        background-color: rgba(255, 255, 255, 0.35);
    }

    .arrow.left { left: 20px; }
    .arrow.right { right: 20px; }

    .google-review-btn {
        display: inline-block;
        margin-top: 70px;
        /* padding: 12px 24px; */
		padding: 0px 10px 0 0;
        background-color: #4285F4;
        color: #fff;
        border-radius: 6px;
        text-decoration: none;
		font-size: 17px;
        font-weight: 600;
        transition: background-color 0.3s;
    }

	.google-review-btn img{
		width: 50px;
		height: 50px;
		border-radius: 10px;
		padding-left: -10px;
	}

    a.google-review-btn:hover {
        background-color: #357ae8;
		color: #fff;
    }

    @media (max-width: 768px) {
        .testimonial {
            max-width: 90%;
        }
        .arrow.left, .arrow.right {
            top: auto;
            bottom: 70px;
            transform: none;
            font-size: 20px;
        }
        .arrow.left { left: 30%; }
        .arrow.right { right: 30%; }
    }

/* HOME PARTNERS SECTION */
.logo-slider {
  padding: 10px 0;
  background: #f9f9f9;
  /* margin:20px 0; */
  overflow: hidden;
}
.logo-slider h2{
  font-size: 2.6rem;
   background: -webkit-linear-gradient(#0d6d32, #40b048);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 10px;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 10px;
}

.logo-track {
  display: flex;
  width: calc(250px * 100);
  animation: scroll 80s linear infinite;
}

.logo-slide {
  display: flex;
  gap: 30px;
  align-items: center;
}

.logo-slide img {
  width: 180px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s;
}

.logo-slide img:hover {
  transform: scale(1.1);
}

.brand-track{
	display: flex;
	width: calc(250px * 100);
	animation: scroll 180s linear infinite;
}

.brand-slide {
  display: flex;
  gap: 30px;
  align-items: center;
}

.brand-slide img {
  width: 190px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s;
}

.brand-slide img:hover {
  transform: scale(1.1);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* SINGLE-SERVICES PAGE */
.solar-service-section {
  text-align: center;
  padding: 50px 20px;
  background: #f9f9f9;
}

.solar-service-section .subtitle {
  color: #147334;
  font-size: 17px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  position: relative;
}

/* .solar-service-section .subtitle::before,
.solar-service-section .subtitle::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #147334;
  vertical-align: middle;
  margin: 0 8px;
} */

.solar-service-section .main-title {
  font-size: 36px;
  font-weight: 700;
  color: #222;
  margin-bottom: 50px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  justify-content: center;
  align-items: stretch;
}

.service-card {
  /* background: #fff; */
  border-radius: 3px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); */
}

.img-box{
	position: relative;
}

.img-box img {
  width: 100%;
  height: 280px; 
  /* object-fit: cover; */
}

.content-box {
  background: linear-gradient(to right, #106b33, #42b14a);
  color: #fff;
  padding: 0px 25px 10px;
  text-align: left;
  position: relative;
  overflow: hidden;
  bottom: 25px;
  left: 50%;
  width: 95%;
  transform: translateX(-50%);
}

.content-box::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.icon-box {
  background: #fff;
  color: #147334;
  width: 80px;
  height: 80px;
  border-radius: 0px 0px 40px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-box i{
	font-size: 34px;
}

.content-box h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.content-box p {
  font-size: 16px;
  color: #fff;
  line-height: 1.7;
}

.content-box .read-more {
  color: #fff;
  background: #086c3a;
  font-weight: 500;
  font-size: 18px;
  margin-top: 20px;
  text-decoration: none;
}

.content-box .read-more i {
  margin-left: 6px;
  transition: transform 0.3s;
}

.content-box .read-more:hover i {
  transform: translateX(4px);
  background: #fff;
  color: #000;
}

@media (max-width: 768px) {
  .solar-service-section .main-title {
    font-size: 28px;
	margin-bottom: 30px;
  }
}

/* SOLAR BENEFITS */
.solar-benefits-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.solar-benefits-section .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.benefits-left {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 30px; 
}

.benefit-box {
  background-color: #fff;
  border-left: 5px solid #147334;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.benefit-box:hover {
  transform: translateY(-5px);
}
.benefit-box img{
	width: 60px;
	padding-right: 15px;
}

.benefit-box h3 {
  font-size: 1.3rem;
  color: #222;
  margin-bottom: 8px;
}

.benefit-box p {
  font-size: 1rem;
  color: #555;
}

.benefits-right {
  flex: 1 1 400px;
}

.benefits-right h4{
	font-size: 16px;
	font-weight: 500;
	text-align: center;
	letter-spacing: 2px;
	color: #147334;
}

.benefits-right h2 {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #111;
  text-align: center;
  margin-bottom: 20px;
}

.benefits-right p {
  font-size: 17px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
}

.btn-learn-more {
  display: inline-block;
  padding: 12px 25px;
  background-color: #147334;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.btn-learn-more:hover {
  background-color: #44b24c;
}

@media (max-width: 900px) {
 .solar-benefits-section .container {
    flex-direction: column;
    gap: 30px;
  }
  .benefits-right h2{
	font-size: 1.6rem;
  }
}

/* PARTNERS PAGE */
.brands-section {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.brands-section h2 {
  font-size: 45px;
  margin-bottom: 25px;
  font-weight: 800;
  text-transform: uppercase;
  background: -webkit-linear-gradient(#0d6d32, #40b048);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  align-items: center;
  justify-items: center;
}

.brand-logos-grid img {
  max-width: 100%;
  width: 200px;
  height: auto;
  transition: transform 0.3s ease;
}

.brand-logos-grid img:hover {
  transform: scale(1.05);
  filter: grayscale(0);
}

@media(max-width:768px){
	.brands-section h2{
      font-size: 38px;
	}
}

/* PORTFOLIO */
.portfolio-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.portfolio-style1 {
	background: #fff;
    border-radius: 0px;
    overflow: hidden;
    transition: transform 0.4s, box-shadow 0.4s;
    margin-bottom: 30px;
}

.portfolio-style1:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.portfolio-img{
	position: relative;
}

.portfolio-img iframe {
    width: 100%;
    /* height: auto; */
    display: block;
}

.portfolio-img img{
	width: 100%;
	height: auto;
	display: block;
}

.portfolio-content {
    padding: 20px;
}

.portfolio-category {
    display: inline-block;
    font-size: 18px;
    color: #147334;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.portfolio-title2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111;
}

.portfolio-energy {
    margin-top: 10px;
}

.portfolio-energytotal {
    font-size: 20px;
    font-weight: 700;
    color: #20d34a;
}

.portfolio-energytext {
    font-size: 14px;
    color: #555;
}

.portfolio-section .row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.portfolio-section .col-xl-6, .col-md-6 {
    padding: 15px;
    flex: 0 0 50%;
    max-width: 50%;
}

@media (max-width: 991px) {
    .portfolio-section .col-xl-6, .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .portfolio-section {
        padding: 40px 20px;
    }
    .portfolio-energytotal {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .portfolio-section {
        padding: 30px 15px;
    }
    .portfolio-energytotal {
        font-size: 16px;
    }
}

/* BLOGS PAGE */
.news
{
	width: 100%;
	background: #FFFFFF;
	padding-top: 94px;
	padding-bottom: 91px;
}
.news_post
{
	width: 100%;
	background: #f5f7fa;
	padding: 20px;
}
.news_post:not(:last-child)
{
	margin-bottom: 43px;
}
.news_image{
	width: 100%;
}

.news_image img
{
	max-width: 100%;
}
.news_date
{
	position: absolute;
	left: 22px;
	top: 21px;
	width: 69px;
	height: 69px;
	background: #20d34a;
}
.news_day
{
	display: inline-block;
	font-size: 30px;
	font-weight: 700;
	color: #FFFFFF;
	line-height: 0.75;
}
.news_month
{
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	color: #FFFFFF;
	line-height: 0.75;
	margin-top: 10px;
}
.news_body
{
	padding-top: 63px;
	padding-left: 53px;
	padding-bottom: 51px;
	padding-right: 54px;
}
.news_title
{
	padding-top: 17px;
}
.news_title a
{
	font-size: 30px;
	font-weight: 500;
	line-height: 1.2;
	font-size: 30px;
	color: #111;
}
.news_title a:hover{
	color: #147334;
}
.news_title::before
{
	display: block;
	position: absolute;
	left: 1px;
	top: 0;
	width: 54px;
	height: 3px;
	background: #147334;
	content: '';
}
.news_info
{
	margin-top: 4px;
	padding-left: 3px;
}
.news_info ul li
{
	display: inline-block;
	position: relative;
}
.news_info ul li:not(:last-child)::after
{
	display: inline-block;
	content: '|';
	margin-left: 5px;
	margin-right: 2px;
	font-size: 12px;
	font-weight: 400;
}
.news_info ul li span,
.news_info ul li a
{
	font-size: 12px;
	font-weight: 400;
}
.news_comments a
{
	color: #696969;
}
.news_author a,
.news_tags a
{
	color: #20d34a;
}
.news_text
{
	font-size: 16px;
	color: #222;
	margin-top: 28px;
}
.news_link
{
	margin-top: 26px;
}
.news_link a
{
	display: inline-block;
	position: relative;
	font-size: 15px;
	font-weight: 400;
	color: #20d34a;
	line-height: 0.75;
}
.news_link a::after
{
	display: block;
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 1px;
	background: #20d34a;
	content: '';
}
.news_page_nav
{
	margin-top: 90px;
}
.news_page_nav ul li
{
	display: inline-block;
}
.news_page_nav ul li:not(:last-child)
{
	margin-right: 8px;
}
.news_page_nav ul li a
{
	font-size: 15px;
	font-weight: 500;
	color: #232323;
	line-height: 0.75;
}
.news_page_nav ul li.active a
{
	color: #20d34a;
}

.sidebar
{
	width: 100%;
	background: #FFFFFF;
}

@media (max-width:768px){
	.news_body{
		padding: 20px;
	}
}


/* PRIVACY */
.privacy-policy-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
  color: #333;
}

.privacy-policy-section .container {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.privacy-policy-section h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #086c3a;
  text-align: center;
  font-weight: 600;
}

.privacy-policy-section h2 {
  margin-top: 30px;
  font-size: 1.5rem;
  color: #147334;
  border-left: 4px solid #147334;
  padding-left: 10px;
  font-weight: 600;
}

.privacy-policy-section p {
  line-height: 1.8;
  margin-top: 10px;
  color: #444;
}

@media (max-width: 768px) {
  .privacy-policy-section .container {
    padding: 25px 20px;
  }

  .privacy-policy-section h1 {
    font-size: 1.8rem;
  }

  .privacy-policy-section h2 {
    font-size: 1.3rem;
  }
}

/* WHATSAPP */
.whatsapp-button {
  position: fixed;
  bottom: 30px;
  right: 0;
  z-index: 9999;
}

.whatsapp-button:hover {
  transform: translateY(-2px);
}

.whatsapp-icon {
  width: 150px;	 
  margin-right: 10px;
}

.whatsapp-icon:hover{
	transform: scale(1.1);
}

@media (max-width: 768px) {
  .whatsapp-button {
    right: 10px;
	bottom: 20px;
  }
  .whatsapp-icon {
    width: 120px;
    margin-right: 8px;
  }
}

/* BLOGS PAGE */
.blog-section{
	padding: 60px 20px;
}
.blog-section .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.6rem;
	font-weight: 600;
    margin-bottom: 1.3rem;
    color: #086c3a;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-post {
    background: #fff;
    border: 1px solid #ddd;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.post-image {
    width: 100%;
    height: 250px;
    display: block;
}

.post-content {
    padding: 1.5rem;
}

.post-title {
    font-size: 1.5rem;
	font-weight: 600;
    margin-bottom: 1rem;
    color: #111;
}

.post-excerpt {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.read-more {
    display: inline-block;
    padding: 8px 16px;
    background: #086c3a;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s ease;
}

.read-more:hover {
    background: #44b24c;
    color: #fff;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .blog-section .container{
        width: 100%;
    }
    .post-image{
        width: 320px;
        padding: 10px;
    }
}

/* SOLAR ICONS */
.solar-icons{
	display: flex;
	gap: 18px;
	padding: 5px;
}
.solar-icons img{
	width: 100px;
}
.solar-icons img:hover{
	transform: scale(1.1);
}