/*@font-face {
  font-family: 'AvenirLTStd-Heavy';
  src: url('../fonts/FontsFree-Net-AvenirLTStd-Heavy.woff2') format('woff2');
}

@font-face {
  font-family: 'AvenirLTStd-Book';
  src: url('../fonts/FontsFree-Net-AvenirLTStd-Book.woff2') format('woff2');
}
*/
@font-face {
  font-family: 'AvenirLTStd-Heavy';
  src: url('../fonts/AvenirLTStd-Heavy.ttf') format('truetype');
}

@font-face {
  font-family: 'AvenirLTStd-Book';
  src: url('../fonts/AvenirLTStd-Book.ttf') format('truetype');
}
@font-face {
  font-family: 'NunitoSans-Regular';
  src: url('../fonts/NunitoSans-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'NunitoSans-Bold';
  src: url('../fonts/NunitoSans-Bold.woff2') format('woff2');
}

@font-face {
  font-family: 'NunitoSans-Light';
  src: url('../fonts/NunitoSans-Light.woff2') format('woff2');
}

:root {
  --blue: #185454;
  --green: #53b14c;
  --grey: #303030;
  --lightGrey: #f2f4f6;
  --font: #444444;
}

html, body{
	min-height: 100vh;
}

body{
	font-size: 15px;
	display: flex;
	flex-direction: column;
	font-family: "NunitoSans-Regular", sans-serif;
	color: #000;
}

h1, h2, h3, h4, h5{
	font-family: "AvenirLTStd-Heavy", sans-serif;
	margin-top: 0;
}

h1{
	color: var(--blue);
}

h1.border-after::after{
	margin: 10px 0 50px 0;
}

*{
	line-height: 1.2;
}

a{
	text-decoration: none !important;
}

header{
	border-top: 20px solid var(--blue);
	border-bottom: 1px solid var(--blue);
	padding: 10px 0;
}

main{
	flex: 1;
}

main ul {
	padding: 0;
}

main ul li{
	background: url('../images/ul-pre-min.png') no-repeat left top; /* <-- change `left` & `top` too for extra control */
	padding: 10px 0px 10px 40px;
	/* reset styles (optional): */
	list-style: none;
	margin: 0;
}

.uk-container{
	max-width: 1280px;
}

.contact-bar{
	position: absolute;
	right: 0;
	z-index: 10;
}

.contact-bar-item{
	background-color: var(--green);
	color: #fff;

}

.uk-navbar-nav>li>a, .uk-navbar-dropdown-nav>li>a{
	color: var(--blue);
	font-size: 16px;
	font-family: "AvenirLTStd-Book", sans-serif;
}

.uk-navbar-dropdown-nav>li>a{
	padding: 10px 0;
}

.uk-navbar-dropdown.uk-open{
	top: 65px !important;
	box-shadow: none !important;
	background-image:url("../images/dropdown-menu-bg2-min.png");
    background-size: 100%;
	background-position: top right;
	background-repeat: no-repeat;
	border-left: 2px solid #53b14c;
	border-bottom: 2px solid #53b14c;
}

.uk-navbar-dropdown-nav>li + li{
	content:"";
	background-image:url("../images/dropdown-menu-item-separator-min.png");
    background-size: contain;
	background-repeat: no-repeat;
	width: 100%;
}

.standard-bar{
	background-color: var(--blue);
	padding: 20px 0;
	color: #fff;
}

.standard-title{
	font-size: 20px;
	border-right: 3px solid var(--green);
    margin-right: 20px;
}
.bannercont{
    height:35.5vw;
}

.banner{
	background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
	display: flex;
	align-items: center;
}

.banner::after{
	content: "";
	background-image: -webkit-linear-gradient(0deg, rgba(255,255,255,0) 0, rgba(255,255,255,1) 100%);
	background-image: -moz-linear-gradient(0deg, rgba(255,255,255,0) 0, rgba(255,255,255,1) 100%);
	background-image: linear-gradient(0deg, rgba(255,255,255,0) 0, rgba(255,255,255,1) 100%);
	background-position: 50% 50%;
	-webkit-background-origin: padding-box;
	background-origin: padding-box;
	-webkit-background-clip: border-box;
	background-clip: border-box;
	-webkit-background-size: auto auto;
	background-size: auto auto;
	position: absolute;
    top: 0;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 0;
}

.banner-text{
	z-index: 2;
	font-family: 'NunitoSans-Bold';
	font-size: 40px;
	color: var(--blue);
	position: absolute;
	top: 30px;
	left: 0;
	right: 0;
	text-align: center;
	max-width: 300px;
	margin: 0 auto;
	line-height: 1.2;
	text-shadow: 2px 2px 2px #fff;
}

.home-services{
	background: var(--blue);
	padding: 20px 0;
	z-index: 3;
	position: relative;
}

.home-services>.uk-flex{
	gap: 20px;
}

.highlight-service{
	padding: 90px 0;
	background: #fff;
}

.home-service-box{
	border: 2px solid var(--green);
	padding: 40px 50px 30px;
	text-align: center;
	color: #fff;
	max-width: 350px;
}

.home-service-title{
	font-size: 20px;
	font-weight: bold;
	height: 70px;
	margin-bottom: 30px;
}

.home-service-text{
	margin-bottom: 20px;
	flex: 1;
}

.border-after::after{
	content: "";
	display: block;
	width: 90px;
	border-bottom: 2px solid var(--green);
	margin: 20px auto;
}

.custom-link-button{
	width: 55px;
	height: 45px;
	background-image: url('../images/homebox-button-min.png');
	background-repeat: no-repeat;
	background-size: contain;
    display: block;
    margin: 0 auto;
}

.custom-link-button:hover{
	background-image: url('../images/homebox-button-hover-min.png');
}

.uk-slideshow-items{
	height: 100%;
	min-height: 100% !important;
}


.highlight-image-container{
	position: relative;
}

.highlight-image{
	background-size: cover;
    background-repeat: no-repeat;
    width: calc(100% - 100px);
    padding-top: 100%;
    margin-left: 50px;
    margin-top: 50px;
	position: relative;
	z-index: 3;
	padding-right: 50px;
	box-sizing: border-box;
}

.highlight-image-border{
	border: 5px solid var(--green);
	position: absolute;
	z-index: 2;
	width: calc(100% - 100px);
    height: calc(100% - 50px);
	box-sizing: border-box;
}

.highlight-image-background{
	position: absolute;
	z-index: 2;
	width: calc(100% - 100px);
    height: calc(100% - 50px);
	box-sizing: border-box;
	background-image: url('../images/img-dotted-shadow-min.png');
	background-repeat: no-repeat;
	background-size: contain;
    bottom: -15%;
    right: 20px;
}

.highlight-title{
	font-family: 'AvenirLTStd-Heavy';
	color: var(--blue);
	font-size: 40px;
}

.highlight-title.border-after::after{
	margin: 20px 0 50px 0;
}

.sub-banner{
	background-size: cover;
    background-repeat: no-repeat;
	background-position: center;
    height: 340px;
	position: relative;
	margin-bottom: 60px;
}

.sub-banner::after{
	content: "";
	background-image: -webkit-linear-gradient(0deg, rgba(255,255,255,0) 0, rgba(255,255,255,1) 100%);
	background-image: -moz-linear-gradient(0deg, rgba(255,255,255,0) 0, rgba(255,255,255,1) 100%);
	background-image: linear-gradient(0deg, rgba(255,255,255,0) 0, rgba(255,255,255,1) 100%);
	background-position: 50% 50%;
	-webkit-background-origin: padding-box;
	background-origin: padding-box;
	-webkit-background-clip: border-box;
	background-clip: border-box;
	-webkit-background-size: auto auto;
	background-size: auto auto;
	position: absolute;
    top: 0;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 0;
}

.content-image-container{
	float: right;
	position: relative;
	width: 50%;
	margin-bottom: 100px;
}

.content-image-container::after{
	float: none;
	clear: both;
}

.h1-subtitle{
	font-family: 'AvenirLTStd-Heavy';
	color: var(--green);
}

.content-with-sidebar{
	gap: 70px;
	margin-bottom: 90px;
}

.sidebar-menu{
	background-color: var(--lightGrey);
	margin-bottom: 30px;
}

.sidebar-title{
	padding: 30px;
	font-family: 'AvenirLTStd-Heavy';
	color: var(--blue);
	font-size: 30px;
}

.sidebar-menu-items>a{
	color: #000;
	display: block;
	padding: 20px 70px;
	font-family: 'AvenirLTStd-Book';
	border-left: 3px solid var(--green);
	border-bottom: 1px solid #fff;
}

.sidebar-menu-items>a.active, .sidebar-menu-items>a:hover{
	background-color: var(--green);
	color: #fff;
}

.sidebar-news-image-container{
	position: relative;
}

.sidebar-news-image{
	background-size: cover;
	background-repeat: no-repeat;
	padding-top: 100%;
    width: 100%;
    z-index: 1;
    position: relative;
}

.sidebar-news-overlay{
	background-image: url('../images/sidebar-img-ontop-min.png');
	background-size: cover;
	background-repeat: no-repeat;
	height: 100px;
	position: absolute;
    bottom: 0;
    z-index: 2;
    width: 100%;
}

.sidebar-content{
	background-color: var(--lightGrey);
	padding: 35px 35px 50px 35px;
	margin-bottom: 20px;
}

.sidebar-news-title{
	font-size: 25px;
	font-family: 'AvenirLTStd-Heavy';
	margin-bottom: 20px;
	color: var(--blue);
}

.sidebar-news-text{
	margin-bottom: 80px;
}

.sidebar-news-link{
	display: inline-block;
	border: 1px solid var(--green);
	padding: 10px 50px;
	margin: 0 auto;
	color: var(--font);
}

.sidebar-news-link:hover{
	background-color: var(--green);
	color: #fff;
}

.sidebar-download-link{
	background-color: var(--lightGrey);
	padding: 20px 10px 20px 50px;
	background-image: url('../images/pdf-icon.png');
	background-size: auto;
	background-repeat: no-repeat;
	background-position: 10px center;
}

.sidebar-download-btn{
	background-image: url('../images/download-link-btn.png');
	background-repeat: no-repeat;
	width: 55px;
    height: 51px;
}

.sidebar-download-btn:hover{
	background-image: url('../images/download-link-btn-hover.png');
}

.sidebar-download-link + .sidebar-download-link{
	margin-top: 20px;
}

.contact-icon{
	width: 50px;
	height: 50px;
	background-repeat: no-repeat;
	background-position: center center;
	display: block;
	background-color: var(--green);
	margin-top: 10px;
	position: relative;
}

.contact-icon::before{
	content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-right: 15px solid var(--green);
    position: absolute;
    left: -15px;
}

.contact-icon.contact-phone{
	background-image: url('../images/phone-icon-min.png');
}

.contact-icon.contact-mail{
	background-image: url('../images/mail-icon-min.png');
}

.contact-icon.contact-location{
	background-image: url('../images/poi-icon-min.png');
}


.footer-slider{
	background-color: #000;
	color: #fff;
	min-height: 100px;
}

.footer-reference-bar{
	background-color: var(--blue);
	padding: 50px 0;
	color: #fff;
	position: relative;
}

.footer-reference-bar::before{
	content: "";
	background-image: url('../images/referral-bg-2-min.png');
	background-size: cover;
    background-repeat: no-repeat;
	width: 45vw;
	height: 25vw;
	max-width: 500px;
    position: absolute;
    bottom: 0;
    left: 0;
	z-index: 1;
}

.footer-reference-bar::after{
	content: "";
	background-image: url('../images/referral-bg-1-min.png');
	background-size: cover;
    background-repeat: no-repeat;
	width: 450px;
	height: 100%;
    position: absolute;
    top: 0;
    right: 0;
	z-index: 1;
}

.footer-reference-bar div{
	z-index: 2;
}

.footer-reference-bar h3{
	color: #fff;
}

.reference-img-container{
	width: 255px;
}

.reference-text-container{
	border-left: 3px solid var(--green);
    margin-left: 20px;
	padding-left: 20px;
}

.glider-contain{
	width: calc(100% - 70px);
}

.glider{
	height: 100%;
}

.glider-prev, .glider-next{
	top: calc(50% - 70px);
}

.glider-next{
	right: -32px;
}

.glider-prev{
	left: -32px;
}

.slider-box{
	background-size: cover;
    background-repeat: no-repeat;
	height: 390px !important;
	padding: 20px;
	position: relative;
}

.slider-box::after{
	content: "";
	background-image: -webkit-linear-gradient(0deg, rgba(0, 0, 0,0) 0, rgba(0, 0, 0,1) 100%);
	background-image: -moz-linear-gradient(0deg, rgba(0,0,0,0) 0, rgba(0, 0, 0,1) 100%);
	background-image: linear-gradient(0deg, rgba(0,0,0,0) 0, rgba(0,0,0,1) 100%);
	background-position: 50% 50%;
	-webkit-background-origin: padding-box;
	background-origin: padding-box;
	-webkit-background-clip: border-box;
	background-clip: border-box;
	-webkit-background-size: auto auto;
	background-size: auto auto;
	position: absolute;
    top: 0;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 80px;
}

.slider-title{
	flex: 1;
	z-index: 2;
}


.footer-partner{
	padding: 70px 0;
}

.footer-partner > div{
	gap: 15px;
}

.footer-partner img{
	width: 10%;
    min-width: 85px;
	max-width: 150px;
}

.footer-content{
	background-color: var(--grey);
	padding: 30px 0;
	color: #fff;
}

.footer-content>.uk-flex{
	gap: 120px;
}

.footer-menu{
	gap: 20px;
}

.footer-menu > * + *{
	border-left: 1px solid #fff;
	padding-left: 20px;
}

.footer-menu + .footer-menu{
	margin-top: 20px;
}

.footer-copyright-bar{
	background-color: var(--green);
	padding: 10px 0;
}

.footer-copyright-bar a{
	color: var(--grey);
}

.footer-copyright-bar .uk-flex{
	gap: 10px;
}

/* RESPONSIVE */

.uk-offcanvas-bar{
	width: 280px;
	padding: 0;
	border-right: 5px solid var(--green);
	background: var(--blue);
}

.uk-offcanvas-bar .uk-nav{
	padding: 30px;
	font-size: 20px;
}

.uk-offcanvas-bar .uk-logo{
	border-top: 20px solid var(--blue);
    border-bottom: 1px solid var(--blue);
    padding: 10px 0;
    background: #fff;
}
.gallery{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
      gap: 10px;
}
.thumbnail {
  flex-basis: 300px;
  text-align:center;
}

.thumbnail img {
  max-width: 100%;
  max-height: 100%;
}

@media (max-width: 600px) {
  .thumbnail {
    max-width: 100%;
    max-height: none;
  }
}

@media screen and (max-width: 640px) {
	.banner-text{
		font-size: 30px;
	}

	.contact-icon {
		width: 26px;
		height: 26px;
		background-size: 20px;
	}

	.contact-icon.contact-location {
		background-size: 15px;
	}

	.home-service-box{
		padding: 20px;
	}

	.home-service-title{
		height: auto;
		margin-bottom: 20px;
	}

	.home-service-text{
		margin-bottom: 0;
	}

	.highlight-service{
		padding: 45px 0;
	}

	.contact-icon::before{
		border-top: 13px solid transparent;
		border-bottom: 13px solid transparent;
	}

	.highlight-title{
		font-size: 30px;
		line-height: 1.1;
	}

	.highlight-title.border-after::after{
		margin-bottom: 25px;
	}

	.footer-content>.uk-flex{
		gap: 30px;
	}

	.content-image-container{
		float: none;
		width: 100%;
	}

	.bannercont{
		height: 75vw;

	}
    .banner{
        padding-top: 0%;
		height: 75vw;
	}

	.sub-banner{
		height: 100px;
	}

	.highlight-service>div{
		flex-wrap: wrap;
	}
}
