/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	-webkit-font-smoothing: antialiased;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

a {
	color: inherit;
}

.fonts {
	font-family: "Lato", sans-serif; // 400 700 900
	font-family: "Spline Sans", sans-serif; // 300 - 700
	font-family: "Chakra Petch", system-ui; // 500
}

p {
	font-size: 16px;
	line-height: 24px;
	&:not(:last-of-type) {
		margin-bottom: 1em;
	}
	@media screen and (min-width: 740px) {
		font-size: 20px;
		line-height: 28px;
	}
}

img {
	width: 100%;
	height: auto;
}

html {
	font-family: "Lato", sans-serif;
	background: #26444b;
	color: #26444b;
}

header {
	background: white;
	padding-top: 15px;
	padding-bottom: 15px;
}

header .container {
	display: flex;

	align-items: center;
	justify-content: space-between;

}

header .container .logo img {
	width: 100%;
	max-width: 620px;
	display: block;
}

header .container .contactDetails {
	display: flex;

	gap: 20px;
}

header .container .contactDetails a {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #26444b;
	text-decoration: none;
	font-size: 20px;
}

header .container .contactDetails a .icon {
	width: 40px;
	height: 40px;
	background: #a8cf39;
	display: block;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all ease 0.3s;
}

header .container .contactDetails a .icon img {
	width: 30px;
	height: 30px;
	display: block;
}

header .container .contactDetails a:hover .icon {
	background: #26444b;
}

.navigation ul {
	color: white;
}
@media screen and (min-width: 740px) {
	.navigation ul {
		display: flex;
		gap: 15px;
	}
	.navigation ul li:not(:last-of-type):after {
		content: "|";
		margin-left: 12px;
		color: #395961;
	}
}

.navigation ul li a {
	text-decoration: none;
	line-height: 24px;
}

.navigation ul li a:hover {
	color: #a7cf3a;
}

.navigation .container {
	padding-top: 15px;
	padding-bottom: 15px;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	width: 90%;
}

.pageBanner {
	position: relative;
	.h3 {
		font-weight: 900;
		font-size: 20px;
	}
	.h2 {
		font-size: 30px;
		text-transform: uppercase;
		font-weight: 900;
	}
	@media screen and (min-width: 740px) {
		.h3 {
			font-size: 38px;
			font-weight: bold;
			margin-bottom: 10px;
		}
		.h2 {
			font-size: 90px;
		}
	}
	@media screen and (min-width: 1200px) {
		.h3 {
			font-size: 44px;
			font-weight: bold;
		}
		.h2 {
			font-size: 110px;
		}
	}
}	

.pageBanner .text  {
	position: absolute;
	bottom: 0px;
	left: 0px;
	color: white;
	max-width: 720px;
	width: 80%;
	padding: 20px;
	@media screen and (min-width: 960px) {
		bottom: 50px;
		left: 50px;
	}
	
}

.dc_grid-1-2, .dc_grid-2-1 {
	.text {
		background: #a7cf3a;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 20px;
		.center {
			width: 90%;
			max-width: 640px;
			text-align: center;
			.h3, .h4 {
				font-size: 20px;
				line-height: 24px;
				font-weight: 900;
				margin-bottom: 20px;
			}
		}
	}
	.image {
	
		&.map {
			aspect-ratio: 4/3;
		}
	}
	@media screen and (min-width: 740px) {
		.image {
			img {
				width: 100%;
				height: 100%;
				object-fit: cover;
			}
		}
	}
}

.centeredText {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 40px auto;
	h2, h3, h4 {
		font-size: 20px;
		line-height: 24px;
		font-weight: 900;
		margin-bottom: 20px;
	}
	&.largeText {
		font-weight: 900;
		
	}
}

.services {
	color: white;
	padding-top: 50px;
	padding-bottom: 50px;
	ul {
		display: grid;
		gap: 40px;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		li {
			text-align: center;
			
			display: flex;
			flex-direction: column;
			justify-content: center;
			margin: 0 auto;
			img {
				max-width: 180px;
				margin-bottom: 20px;
			}
			p {
				max-width: 180px;
			}
			font-size: 18px;
			font-weight: 700;
		}
	}
}



.cms-textblock {
	width: 100%;
	max-width: 640px;
	margin: 0 auto;
	h4 {
		font-weight: 900;
		font-size: 20px;
		margin-bottom: 4px;
	}
	
}

.whyChoose {
	background: white;
	padding-top: 50px;
	padding-bottom: 50px;
	.cms-textblock {
		margin-bottom: 30px;
	}
	h2 {
		font-size: 30px;
	}
	h2 span {
		color: #a7cf3a;
		
	}
}

.imageGrid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	div {
		img {
			object-fit: cover;
			width: 100%;
			height: 100%;
		}
	}
}

.contactInfo {
	display: flex;
	flex-direction: column;
	gap: 5px;
	font-size: 20px;
	a {
		text-decoration: none;
	}
	h3 {
		color: #a8cf39;
		font-weight: 900
	}
	ul {
		display: flex;
		flex-direction: column;
		gap: 5px;
	}
	a.whatsApp {
		width: 50px;
		height: 50px;
		border-radius: 10px;
		background: #a8cf39;
		display: block;
		display: flex;
		justify-content: center;
		align-items: center;
		margin-top: 20px;
		img {
			width: 32px;
			height: 32px;
		}
	}
}

footer {
	padding-top:40px;
	padding-bottom: 40px;
	.container {
		display: flex;
		color: white;
		flex-direction: column;
		.logo {
			order: 1;
			margin-bottom: 30px;
			max-width: 280px;
		}
		.contactInfo {
			order: 2;
		}
	}
}

@media screen and (max-width: 739px) {
	header {
		.container {
			flex-direction: column;
			.logo {
				margin-bottom: 20px;
			}
		}
	}
	.pageBanner {
		background: black;
		img {
			opacity: 0.7;
		}
	}
}

@media screen and (min-width: 740px) {
	.dc_grid-1-2 {
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		grid-template-rows: minmax(0, 1fr);
		height: auto;
		
	}
	.dc_grid-2-1 {
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		grid-template-rows: minmax(0, 1fr);
		height: auto;
		
	}

	.largeText {
		p {
			font-size: 20px;
		}
		
	}

	footer {
		.container {
			flex-direction: row;
			justify-content: space-between;
			.logo {
				order: 2;
			}
			.contactInfo {
				order: 1;
			}
		}
	}
	
	.services {
		padding-top: 75px;
		padding-bottom: 75px;
		ul {
			display: grid;
			gap: 40px;
			grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
			li {
				p {
					font-size: 20px;
					line-height: 26px;
				}
			}
		}
	}

	.imageGrid {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
		.item {
			aspect-ratio: 5/3;
		}
	}
	
	
}

.introRow {
	background: #f5faea;
	padding: 40px 0;
}


.introRow h1 {
	font-size: 40px;
	font-weight: 900;
	color: #a7cf3a;
	margin-bottom: 10px;
}

.introRow {
	p {
		font-size: 20px;
	}
}

.genericRow {
	background: white;
	padding: 40px 0;
}

.genericTextBlock {

	h2 {
		font-size: 30px;
		font-weight: 900;
		color: #a7cf3a;
		margin-bottom: 10px;
		margin-top: 20px;
	}
	h3 {
		font-size: 26px;
		font-weight: 900;
		color: #a7cf3a;
		margin-bottom: 10px;
		margin-top: 20px;
	}
	p {
		font-size: 18px;
		line-height: 30px;
	}
}

.dc_button {
	background: #a7cf3a;
	text-decoration: none;
	padding: 15px 20px;
	border-radius: 10px;
	font-weight: bold;
	display: inline-block;
	color: #24444b;
	&:hover, &:focus {
		background: #26444b;
		color: #a7cf39;
	}
}

.feature {
	margin-top: 20px;
	margin-bottom: 20px;
	background: #24444b;
	border-radius: 15px;
	padding: 20px;
	.image {
		overflow: hidden;
		border-radius: 10px;
		margin-bottom: 20px;
	}
	.text {
		color: white;
	}
	h2, h3, h4 {
		color: #a8ce39;
		font-weight: 900;
		margin-bottom: 14px;
		font-size: 24px;
	}
	.dc_button {
		&:hover, &:focus {
			background: white;
		}
	}
}

.gridItems {
	margin-top: 40px;
	margin-bottom: 40px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
	.item {
		.image {
			overflow: hidden;
			border-radius: 10px;
			margin-bottom: 20px;
		}
		h2, h3, h4 {
			color: #a8ce39;
			font-weight: 900;
			margin-bottom: 0px;
			font-size: 20px;
		}
	}
}

@media screen and (min-width: 640px) {
	.gridItems {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 30px;
	}
}

@media screen and (min-width: 960px) {
	.gridItems {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		gap: 30px;
	}
}

@media screen and (min-width: 800px) {
	.feature {
		display: flex;
		gap: 20px;
		.image {
			width: 30%;
			margin-bottom: 0px;
			img {
				width: 100%;
				height: 100%;
				object-fit: cover;
			}
		}
		.text {
			width: calc(70% - 20px);
		}
	}
}

@media screen and (min-width: 1200px) {
	.feature {
		gap: 40px;
		padding: 30px;
	}
}


@media screen and (min-width: 1025px) {
	.introRow {
		padding: 80px 0;
		p {
			
			font-size: 24px;
			line-height: 32px;
		}
	}

	.genericRow {
		background: white;
		padding: 80px 0;
	}
}

@media screen and (min-width: 1025px) {
	.dc_grid-1-2 {
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
		.text {
			padding: 40px;
		}
	}
	.dc_grid-2-1 {
		display: grid;
		grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
		.text {
			padding: 40px;
		}
	}
}

@media only screen 
  and (min-device-width: 834px) 
  and (max-device-width: 834px) 
  and (orientation: portrait) 
  and (-webkit-min-device-pixel-ratio: 2) {
	.dc_grid-1-2, .dc_grid-2-1 {
		max-height: 600px;
	}
}
