/* ==================================================
   CSS Imports
================================================== */

@import url("reset.css");
@import 'https://fonts.googleapis.com/css2?family=Dosis:wght@200;300;400;500;600;700;800&display=swap';

/* ==================================================
   Icon Fonts
================================================== */

@import url("fonts/fontawesome/font-awesome.css");

/* ==================================================
   Google Fonts
================================================== */

@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,300italic,400,400italic,600,600italic,700,700italic,900,900italic");

/* ==================================================
   Global Styles
================================================== */

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html, body {
	padding: 0;
	margin: 0;
}

html {
	height: 100%;
	overflow: auto;
	scroll-behavior: smooth;

	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body {
	font-family: 'Dosis', sans-serif;
	font-size: 20px;
	line-height: 32px;
	font-weight: 300;
	color: #999;
	background: #FFF;

	text-rendering: optimizeLegibility;
	vertical-align: baseline;
}


::selection {
	background: #ff3f00;
	color: #FFF;
}

::-moz-selection {
	background: #149077;
	color: #FFF;
}

a {
	color: #FFF;
	text-decoration: none;
}

a:hover {
	color: #AFF;
}

.logo {
	height: 30%;
	width: 30%;
	margin-bottom: 20px;
	transition: all 0.5s ease-in;

}

/* ==================================================
   Default Typography
================================================== */

p {
	margin: 0 0 20px 0;
}

strong {
	font-weight: 600;
}

em {
	font-style: italic;
}

h1, h2, h3 {
	font-size: 60px;
	line-height: 60px;
	margin: 0 0 0px 0;
	letter-spacing: -1px;
	font-weight: 400;

}

h2 {
	font-size: 38px;
	line-height: 38px;
	color: #000;

}

h3 {
	font-size: 32px;
	line-height: 32px;
}

#portfolio {
	text-align: center;
	color: #000;
	text-transform: uppercase;
}

/* ==================================================
   Background Colours
================================================== */

.colour1 {
	background: #ff6b00;
}

.colour2 {
	background: #feb52e;
}

.colour3 {
	background: #EEE;
}

/* ==================================================
   DropDown
================================================== */
.header-bottom {

	text-align: center;
	transition: all 0.4s ease;
	background-color: #eeeeee;
}

/* Dropdown Button */
.header-bottom .dropbtn {
	background-color: #FFF;
	color: #000;
	padding: 16px;
	font-size: 20px;
	border: none;
	cursor: pointer;
	background-color: #eeeeee;
}

/* The container <div> - needed to position the dropdown content */
.header-bottom .dropdown {
	position: relative;
	display: inline-block;
	z-index: 5;
	
}

/* Dropdown Content (Hidden by Default) */
.header-bottom .dropdown-content {
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	min-width: 190px;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
	text-align: center;
	margin-left: 10px;
	line-height: 2em;
}

/* Links inside the dropdown */
.header-bottom .dropdown-content a {
	color: #1abc9c;
	text-decoration: none;
	line-height: 1.3em;
	display: block;
	padding-bottom: 2px;
	font-size: 15px;
}

/* Change color of dropdown links on hover */
.header-bottom .dropdown-content a:hover {
	color: #3e8e41
}

/* Show the dropdown menu on hover */
.header-bottom .dropdown:hover .dropdown-content {
	display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.header-bottom .dropdown:hover .dropbtn {
	color: #3e8e41;
}


/* ==================================================
   Separator Arrows
================================================== */

.arrow-separator {
	position: relative;
}

.arrow-separator:after {
	top: 100%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-width: 12px;
	left: 50%;
	margin-left: -12px;
	z-index: 11;
}

.arrow-white:after {
	border-color: #FFF rgba(255, 255, 255, 0) rgba(255, 255, 255, 0) rgba(255, 255, 255, 0);
	/** Using RGB to remove dark line in Firefox **/
}

.arrow-theme:after {
	border-color: #ff6b00 rgba(22, 160, 133, 0) rgba(22, 160, 133, 0) rgba(22, 160, 133, 0);
}

.arrow-themelight:after {
	border-color: #1ABC9C rgba(26, 188, 156, 0) rgba(26, 188, 156, 0) rgba(26, 188, 156, 0);
}

.arrow-grey:after {
	border-color: #EEE rgba(238, 238, 238, 0) rgba(238, 238, 238, 0) rgba(238, 238, 238, 0);
}

/* ==================================================
   General Layout Styles
================================================== */

.header-top {

	margin-top: 10px;
	text-align: center;
	margin-right: 15px;
	transition: all 0.4s ease;


}

.header-top p {
	color: #000;
	margin-bottom: 0px;
	font-family: 'Dosis', sans-serif;
	font-size: 12px;
	line-height: 1.5em;
	display: inline;
}

.header-top .social {
	height: 25px;
	width: 25px;
	vertical-align: middle;
}




.fullwidth {
	width: 100%;
	padding: 60px 30px;
	min-width: 280px;
}

.fullwidth .bodycontainer {
	margin: 0 auto;
	width: 100%;
	max-width: 1200px;
	text-align: center;
}

.box {
	padding: 30px 30px !important;
}

#topcontainer {}

#topcontainer h1 {
	padding: 6px 0 10px 0;
	margin-bottom: 0;
	letter-spacing: -1.5px;
	color: #444;
	font-weight: 400;
}

#topcontainer h1 span {
	font-size: 70px;
	line-height: 70px;
	letter-spacing: -1.4px;
	font-weight: 300;
}

#topcontainer p {
	margin-bottom: 0;
	color: #999;
}

#topcontainer p span {
	font-size: 90px;
	line-height: 90px;
	color: #1abc9c;
}

#services {
	color: #005675;
	font-weight: 800;
	font-size: 2rem
}

#services #servicescont {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	scroll-margin-top: 180px;

}

#services #servicescont p {
	padding-top: 1rem;
	color: #fff;
	line-height: 1.4;
	font-size: 20px;
	max-width: 900px;
	margin: 0 auto;
	font-weight: 400;

}

#services #servicescont ul#countscript li {
	float: left;
	width: 33.3%;
	padding: 30px 0;
	margin: 0;
	list-style-type: none;
}

#services #servicescont ul#countscript li span {
	font-size: 25px;
	line-height: 10px;
	font-weight: 300;
	color: #FFF;
}

#services #servicescont ul#countscript li p {
	color: rgba(255, 255, 255, 0.6);
	font-weight: 300;
	text-transform: uppercase;
	font-size: 18px;
	line-height: 18px;
	margin: 0;
}

footer {
	width: 100%;
	min-width: 280px;
	background: #2a293e;
}

.ft-title {
	color: #F68719;
	font-size: 1.625rem;
	padding-bottom: 0.625rem;
	/* text-decoration: underline;
	text-decoration-color: #f78b24; */
}

.ft-main {
	padding: 1.25rem 1.5rem 0;
	margin-bottom: -30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.ft-main-item {
	padding: 1.225rem;
	min-width: 15rem;
}

.ft-main-item ul li {
	font-size: 1rem;
	margin: 0 0 -8px 0;
	color: #fff;
}

.ft-main-item p {
	display: inline-block;
	width: 200px;
	font-size: 1rem;
	line-height: 1.4;
	color: #fff;
}

.ft-icon {
	display: inline-block;
	margin-right: 5px;
	vertical-align: middle;
}

.ft-icon img {
	width: 32px;
}

.ft-social-icons li {
	display: inline;
}

.ft-social-icons li a img {
	width: 30px;
}

.ft-bottom {
	padding: 0 10rem 10px 10rem;
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

.ft-line {
	display: block;
	width: 100%;
	margin: 10px auto;
	border-top: 1px solid #DFDFDF;
}

.ft-bottom p {
	font-size: 1rem;
}


.slideshow-container {
	max-width: 1000px;
	position: relative;
	margin: auto;
	padding: 0.5rem 0 0 0;
}

.slideshow-slide {
	display: none;
}


/* Next & previous buttons */
.prev, .next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	margin-top: -22px;
	padding: 16px;
	color: white;
	font-weight: bold;
	font-size: 18px;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
	user-select: none;
}

/* Position the "next button" to the right */
.next {
	right: 0;
	border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
	background-color: rgba(0, 0, 0, 0.3);
}

/* The dots/bullets/indicators */
.dot {
	cursor: pointer;
	height: 5px;
	width: 5px;
	margin: 2px 2px;
	background-color: #bbb;
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.6s ease;
}

.active, .dot:hover {
	background-color: #717171;
}

/* Fading animation */
.fade {
	-webkit-animation: fade 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
	animation: fade 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

@-webkit-keyframes fade {
	0% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}

@keyframes fade {
	0% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}

.contact-form {
	max-width: 65%;
	margin: auto;
}

.contact-form h2 {
	text-align: center;
	color: #000;
	text-transform: uppercase;
	padding-bottom: 2rem;
}

.contact-form .row {
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.contact-form .row input[type="text"] {
	font-size: 1.5rem;
	height: 2rem;
	outline: none;
	width: 100%;
	border: none;
	border-bottom: 1px solid #1abc9c;
	background: #EEE;
}

.contact-form .row input[type="text"]:first-of-type {
	margin-right: 3rem;
}

.contact-form input[type="textarea"] {
	margin-top: 2rem;
	font-size: 1.5rem;
	height: 2rem;
	outline: none;
	width: 100%;
	border: none;
	border-bottom: 1px solid #1abc9c;
	background: #EEE;
}

.contact-form .row .form-btn {
	margin-top: 2rem;
	padding: 10px 3rem;
	background-color: #1BBA93;
	font-size: 1.5rem;
	border: none;
	border-radius: 5px;
	margin-left: auto;
	color: #fff;
}

.contact-form .row .form-btn-file {
	margin-top: 1.5rem;
	padding: 10px 3rem;
	background-color: #1BBA93;
	cursor: pointer;
	color: #fff;
	font-size: 1.5rem;
	border: none;
	border-radius: 5px;
	margin-right: auto;
}

.contact-form .row .form-btn-file input[type="file"] {
	display: none;
}

.body-why {
	display: flex;
	pading: 0 20px;
	flex-wrap: wrap;
	margin: 0 auto;
	justify-content: center;
	align-items: center;
}

.body-why .right-cnt {
	padding-left: 25px;
	width: 100%;
	max-width: 650px;
}

.body-why .right-cnt h1 {
	color: #005675;
	font-size: 3rem;
	font-weight: 800;
}

.body-why .right-cnt .block {
	padding: 15px 0;
	display: flex;
	flex-basis: 1 auto;
	align-items: center;
}

.body-why .right-cnt .block .combined {
	padding: 0px 20px;
}

.body-why .right-cnt .block .title {
	color: #FE8300;
	font-size: 1.5rem;
	font-weight: 600;
}

.body-why .right-cnt .block .circle svg {
	color: #000;
	heigth: 20px;
	min-width: 40px;
	max-width: 40px;
}

.body-why .right-cnt .block .circle {
	background-color: #fef6ed;
	border-radius: 50%;
	min-width: 50px;
	max-width: 50px;
	height: 50px;
	padding: 4px 0;
	text-align: center;
}

.body-why .right-cnt .block span {
	color: #000;
}

.features {
	display: flex;
	padding: 0 20px;
	flex-wrap: wrap;
	margin: 0 auto;
	justify-content: center;
	flex-basis: auto;
}

.features_p {
	font-size: 1.2rem;
	font-weight: 300;
	color: #000;
	display: inline;
	margin-bottom: 0.4rem !important;
}

.features_i {
	padding: 0 10px;
	margin-top: -4px;
}

.features_i::before {
	content: "\2713\0a";
	font-size: 1rem;
	font-weight: 400;
	color: #ff6a00;
}

.features .left-cnt {
	width: 100%;
	max-width: 500px;
}

.feat {
	display: flex;
}


.features .right-cnt {
	padding-left: 20px;
	width: 100%;
	max-width: 500px;
}


#cform {
	padding-top: 20px;
}

.t-before {
	position: absolute;
	top: 45%;
	left: 6%;
	z-index: 5;
	padding: 5px 5px;
	background-color: #0000007d;
	transform: translateX(-50%);
	color: #fff;
}

.t-after {
	position: absolute;
	top: 45%;
	right: -3%;
	z-index: 5;
	padding: 5px 5px;
	background-color: #0000007d;
	transform: translateX(-50%);
	color: #fff;
}


.comparison-slider-wrapper {
	position: relative;
	width: 100%;
	margin: 20px 0;
	background-color: #ffffff;
}

.comparison-slider-wrapper .comparison-slider {
	position: relative;
	width: 100%;
	margin: 0;
	border: 5px #ffffff solid;
	box-sizing: border-box;
}

.comparison-slider-wrapper .comparison-slider>img {
	width: 100%;
	height: auto;
	display: block;
}

.comparison-slider-wrapper .comparison-slider .overlay {
	display: none;
	position: absolute;
	width: 100%;
	height: 100%;
}

@media screen and (min-width: 767px) {
	.comparison-slider-wrapper .comparison-slider .overlay {
		display: block;
	}
}

.comparison-slider-wrapper .comparison-slider .resize {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 50%;
	overflow: hidden;
}

.comparison-slider-wrapper .comparison-slider .resize>img {
	display: block;
}

.comparison-slider-wrapper .comparison-slider .divider {
	position: absolute;
	width: 2px;
	height: 100%;
	background-color: #262b2f88;
	left: 50%;
	top: 0;
	bottom: 0;
	cursor: ew-resize;
}

.comparison-slider-wrapper .comparison-slider .divider:before {
	content: "";
	position: absolute;
	width: 40px;
	height: 40px;
	left: -18px;
	top: 50%;
	margin-top: -20px;
	border-radius: 50%;
	background-color: #262b2f88;
	transition: all 0.1s ease-in-out;
}

.comparison-slider-wrapper .comparison-slider .divider:after {
	content: "\2039\a0\203A";
	position: absolute;
	font-size: 28px;
	top: 50%;
	margin-top: -20px;
	margin-left: -9px;
	color: #fff;
	font-weight: 900;
	text-align: center;
	transition: all 0.1s ease-in-out;
}

.comparison-slider-wrapper .comparison-slider .divider.draggable:before {
	width: 60px;
	height: 60px;
	left: -28px;
	margin-top: -30px;
}


.gallery {
	width: 65%;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(3, 15vw);
	grid-gap: 1.5rem;
	margin: 0 auto;
}

.gallery_block {
	position: relative;
}

.gallery__img {
	border: 5px #ffffff solid;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.galley_bottom_text {
	position: absolute;
	bottom: 12px;
	left: 12px;
	right: 12px;
	color: #000;
	font-weight: 400;
	font-size: 1rem;
	padding: 0px 5px;
	margin: 0 auto;
	text-align: center;
	background-color: rgba(255, 255, 255, 0.9);
}


/* ==================================================
   Responsive Media Queries - Tablets
================================================== */

@media screen and (max-width: 768px) {

	.logo {
		height: 30%;
		width: 30%;
		z-index: 100;
	}

	body {
		font-size: 23px;
		line-height: 29px;
	}

	#topcontainer h1 {
		font-size: 54px;
		line-height: 54px;
		letter-spacing: -1.2px;
	}

	#topcontainer h1 span {
		font-size: 70px;
		line-height: 70px;
	}

	#services #servicescont {
		max-width: 400px;
		margin-left: 30%;
		margin-top: 0px;
	}


	#services #servicescont ul#countscript li {
		width: 55%;
		padding: 1px 0 10px 0;
	}

	#services #servicescont ul#countscript li span {
		font-size: 25px;
		line-height: 25px;
	}

	h2 {
		font-size: 20px;
		line-height: 20px;
		color: #000;
	}

	.gallery {
		max-width: 1200px;
		margin: 0 auto;
		display: grid;
		grid-gap: 1rem;
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(8, 1fr);
	}



}

/* ==================================================
   Responsive Media Queries - Mobiles
================================================== */

@media screen and (max-width: 480px) {

	.logo {
		height: 45%;
		width: 45%;
	}

	body {
		font-size: 20px;
		line-height: 27px;
	}

	#topcontainer h1 {
		font-size: 36px;
		line-height: 36px;

	}

	#topcontainer h1 span {
		font-size: 50px;
		line-height: 50px;
	}

	#services #servicescont {
		max-width: 400px;
		margin-left: 23%;
	}

	#services #servicescont ul#countscript li {
		width: 55%;
		padding: 16px 0;

	}

	#services #servicescont ul#countscript li span {
		font-size: 20px;
		line-height: 25px;
	}

	#services #servicescont ul#countscript li p {
		font-size: 16px;
		line-height: 16px;
	}

	h2 {
		font-size: 15px;
		line-height: 15px;
		color: #000;

	}

	.gallery {
		max-width: 1200px;
		margin: 0 auto;
		display: grid;
		grid-gap: 1rem;
		grid-template-columns: auto;
		grid-template-rows: auto;
	}
}