/* Fonts Google */
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root {
	--green: #044E31;
	--yellow: #FFDD00;
	--black: #000;
	--font: 'Lato', sans-serif;
	--font-secondary: "Fira Sans", sans-serif;
}

#sp-header {
	.sp-contact-info {
		display: flex;
		align-items: center;
		
		li {
			display: flex;
			align-items: center;
			position: relative;
			
			> span {
				position: absolute;
				left: 15px;
			}
			
			a {
				padding: 10px 15px 10px 40px;
				border-radius: 17px;
				border: 2px solid var(--green);
				color: var(--green);
				background: var(--yellow);
				display: flex;
				align-items: center;
				min-height: 50px;
				font-family: var(--font-secondary);
			}
			
			a:hover {
				background: var(--green);
				color: white;
			}
		}
		
		li:hover {
			> span {
				color: yellow;
			}
		}
	}
}

#sp-main-body {
	line-height: 110%;
	
	h1, h2, h3, h4 {
		text-transform: uppercase;
		font-weight: 700;
		line-height: 100%;
	}
	h1 {
		font-size: 42px;
	}
	h2 {
		font-size: 36px;
	}	
	h3 {
		font-size: 24px;
		font-weight: 500;
		font-family: var(--font-secondary);
	}
	h4 {
		font-weight: 400;
		font-size: 20px;
		text-transform: initial;
	}
	
	
	p:first-child {margin-top: 0;}
	p:last-child {margin-bottom: 0;}
	
	/* Slidershow */
	.sp-slider-content-align-center {
		max-width: 550px;
		margin: 0 auto;
		
		h3.sppb-sp-slider-title {
			margin-bottom: 20px;
			font-size: 19px;
			font-weight: 400;
			font-family: var(--font);
		}
		h2.sppb-sp-slider-title {
			margin-bottom: 20px;
		}
	}
	div[data-arrow-content=icon_only].sp-slider .sp-nav-control .nav-control {
		width: 32px;
		height: 32px;
		background: var(--yellow);
		border-color: var(--yellow);
		color: var(--greeen);
		line-height: 26px;
	}
	div[data-arrow-content=icon_only] .sp-nav-control .nav-control i {
		line-height: normal;
		font-size: 21px;
		color: var(--green);
	}
	
	
	
	
	
	/* Pricings */
	.addon-root-pricing, .addon-root-pricing > div, .sppb-addon-pricing-table {
		height: 100%;
	}
	.sppb-pricing-box {
		box-shadow: 0px 0px 47px 0px rgb(0 0 0 / 13%);
		padding: 40px 25px 30px;
		height: 100%;
		position: relative;
		
		.sppb-pricing-header {
			text-align: center;
			
			.sppb-pricing-title {
				font-weight: 500;
				font-size: 16px;
				font-family: var(--font-secondary);
			}
			
			.sppb-pricing-price-container {
				padding-bottom: 12px;
				margin-bottom: 12px;
				display: flex;
				flex-direction: column;
				
				.sppb-pricing-price {
					font-family: var(--font-secondary);
					font-weight: 500;
					font-size: 32px;
					line-height: 100%;
					text-align: center;
					margin-bottom: 10px;
				}
				.sppb-pricing-duration {
					font-size: 17px;
				}
			}
		}
		
		.sppb-pricing-features {
			margin-bottom: 0px;
			margin-top: 20px;
			
			ul {
				display: flex;
				flex-direction: column;
				row-gap: 14px;
				
				li {
					margin-bottom: 0;
					font-size: 17px;
					font-weight: 400;
					font-family: var(--font);
					padding-left: 25px;
					position: relative;
				}
				
				li:before {
					content: '';
					display: block;
					width: 18px;
					height: 18px;
					background: url(img/check-icon.svg) no-repeat center;
					background-size: 100%;
					position: absolute;
					top: 0;
					left: 0;
				}
				
				
			}
		}
	}
	.popular .sppb-pricing-box:before {
		content: 'Popular';
		display: block;
		background: var(--yellow);
		color: var(--green);
		position: absolute;
		left: 0;
		top: 0;
		right: 0;
		width: 86px;
		border-radius: 0 0 7px 7px;
		min-height: 24px;
		text-align: center;
		font-size: 14px;
		line-height: 1;
		margin: 0 auto;
		padding: 5px 10px;
	}
	
	
	/* Overlay images */
	.addon-root-image-overlay {
		border-radius: 23px;
		overflow: hidden;
		
		.overlay-image-title {
			width: 100%;
			display: flex;
			flex-direction: column;
			align-items: end;
			
			.sppb-addon-title {
				opacity: 0;
			}
		}
		
	}
	.title-subtitle-bottom-left .sppb-addon-subtitle {
		opacity: 0;
	}
	.sppb-addon-overlay-image:hover .title-subtitle-bottom-left .sppb-addon-title, .sppb-addon-overlay-image:hover .title-subtitle-bottom-left .sppb-addon-subtitle {
		transform: translate3d(0,0,0);
		opacity: 1;
	}
}



/* Custom */
.title-section {
	.sppb-addon-title:after {
		content: '';
		display: block;
		width: 110px;
		height: 2px;
		background: var(--yellow);
		margin-top: 15px;
		margin-bottom: 10px;
	}
}
.title-center {
	.sppb-addon-title {
		text-align: center;
	}
	.sppb-addon-title:after {
		margin-left: auto;
		margin-right: auto;
	}
}
.card-gallon .sppb-addon-title {
	width: 72px;
	margin-bottom: 15px;
}
.list-featured {
	ul {
		display: flex;
		flex-direction: column;
		row-gap: 14px;
		list-style: none;
		padding-left: 0;
		
		li {
			margin-bottom: 0;
			font-size: 17px;
			font-weight: 400;
			font-family: var(--font);
			padding-left: 25px;
			position: relative;
		}
		
		li:before {
			content: '';
			display: block;
			width: 18px;
			height: 18px;
			background: url(img/check-icon.svg) no-repeat center;
			background-size: 100%;
			position: absolute;
			top: 0;
			left: 0;
		}
	}
}


/* Footer */
#sp-bottom {
	padding: 0;
	
	.container {
		max-width: 100%;
		padding: 0;
	}
	.sp-module {
		margin: 0;
	}
}
.menu-footer {
	ul#nav-menu {
		display: flex;
		
		li {
			font-size: 19px;
			margin-bottom: 0;
			line-height: 0.9;
		}
		li:not(:last-child) {
			margin-right: 12px;
			padding-right: 12px;
			border-right: 1px solid white;
		}
	}
}
.footer-phone span.sppb-icon-inner {
	display: flex;
	align-items: center;
	column-gap: 10px;
	
	i {
		background: var(--yellow);
		width: 33px;
		height: 33px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		color: black;
	}
	
	.sppb-form-label-visually-hidden {
		position: static;
		display: block;
		width: auto;
		height: auto;
		font-size: 24px;
		font-family: var(--font-secondary);
	}
}




@media (max-width: 1024px) {
	.sppb-row-container {
		padding-left: 25px;
		padding-right: 25px;
	}
	#sp-header {
		.sp-contact-info {
			li {
				margin: 0;
				
				a {
					padding: 8px 13px 8px 38px;
					min-height: 45px;
					font-size: 14px;
				}
			}
		}
	}
	.sp-megamenu-parent > li > a, .sp-megamenu-parent > li > span, .sp-megamenu-parent .sp-dropdown li.sp-menu-item > a {
		font-size: 14px;
	}
}
@media (max-width: 991px) {
	#sp-header {
		height: 85px;
	}
	#sp-header {
		.container, .container-inner, .row, .sp-column {
			height: 100%;
		}
	}
}


@media (max-width: 575px) {
	#sp-header {
		.sp-contact-info {
			li {
				a {
					padding: 6px 11px 6px 36px;
					min-height: 45px;
					font-size: 12px;
					border-radius: 14px;
				}
			}
		}
	}
	.logo-image {
		height: 50px;
	}
}


@media (min-width: 992px) {
	.container, .container-lg, .container-md, .container-sm, .container-xxl, .sppb-row-container {
		max-width: 1160px;
	}
}
@media (min-width: 1200px) {
	.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl, .sppb-row-container {
		max-width: 1200px;
	}
}
@media (min-width: 1400px) {
	.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl, .sppb-row-container {
		max-width: 1200px;
	}
}



