* {
	margin: 0; 
	padding: 0; 
	box-sizing: border-box;
}

body {
	font-family: "Barlow", sans-serif;
	font-weight: 400; 
	font-size: 16px; 
	line-height: 1.7;
	color: #777;
	padding: 30px; /* add the white border around the image */
}

.header {
	height: 95vh; 
	background-image: linear-gradient(
		to right bottom,
			rgba(42, 128, 122, 0.881), 
			rgba(29, 90, 86, 0.93)), 
		url(../img/businesspeople.jpg);
	background-size: cover; /* whatever the width of the viewpoint it tries to fit the elment inside  */
	background-position: top;
	position: relative;

	clip-path: polygon(0 0, 100% 0, 100% 75vh, 0 100%)
}
.header__text-box {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center; }

.logo-box {
	position: absolute; 
	top: 40px; 
	left: 40px; 

}

.logo { 
	height: 35px; 
}

.text-box { 
	position: absolute; 
	top: 40%; 
	left: 50%;
	transform: translate(-50%, -50%)
}

.heading-primary {
	color: #fff; 
	text-transform: uppercase;
}

.heading-primary-main {
	display: block;
	font-size: 80px; 
	font-weight: 400; 
	letter-spacing: 38px;

}

.heading-primary-sub {
	display: block;
	font-size: 20px; 
	font-weight: 700; 
	letter-spacing: 10px;
	margin-bottom: 2rem
}

.btn, .btn:link, .btn:visited {
	text-transform: uppercase;
	text-decoration: none;
	padding: 1rem 2rem;
	display: inline-block;
	border-radius: 10rem;
	transition: all .2s;
	position: relative;
	font-size: 1.6rem;
	border: none;
	cursor: pointer; }
  
  .btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2); }
	.btn:hover::after {
	  transform: scaleX(1.4) scaleY(1.6);
	  opacity: 0; }
  
  .btn:active, .btn:focus {
	outline: none;
	transform: translateY(-1px);
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2); }
  
  .btn--white {
	background-color: #fff;
	color: #777; }
	.btn--white::after {
	  background-color: #fff; }
  
  .btn--green {
	background-color: #55c57a;
	color: #fff; }
	.btn--green::after {
	  background-color: #55c57a; }
  
  .btn::after {
	content: "";
	display: inline-block;
	height: 100%;
	width: 100%;
	border-radius: 10rem;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	transition: all .4s; }
  
  .btn--animated {
	animation: moveInBottom .5s ease-out .75s;
	animation-fill-mode: backwards; }
  
  .btn-text:link, .btn-text:visited {
	font-size: 1.6rem;
	color: #55c57a;
	display: inline-block;
	text-decoration: none;
	border-bottom: 1px solid #55c57a;
	padding: 3px;
	transition: all .2s; }
  
  .btn-text:hover {
	background-color: #55c57a;
	color: #fff;
	box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
	transform: translateY(-2px); }
  
  .btn-text:active {
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
	transform: translateY(0); }

.section-about {
	background-color: #f7f7f7;
	padding: 25rem 0;
	margin-top: -20vh; }

.u-center-text {
	text-align: center !important; }

.heading-secondary {
	font-size: 3.5rem;
	text-transform: uppercase;
	font-weight: 700;
	display: inline-block;
	background-image: linear-gradient(to right, #1f5f5b, #1f5f5b);
	-webkit-background-clip: text;
	color: transparent;
	letter-spacing: .2rem;
	transition: all .2s; }
	.heading-secondary:hover {
		transform: skewY(2deg) skewX(15deg) scale(1.1);
		text-shadow: 0.5rem 1rem 2rem rgba(0, 0, 0, 0.2); }

.feature-box {
	background-color: rgba(255, 255, 255, 0.8);
	font-size: 1.5rem;
	margin-left: 4rem;
	margin-right: 4rem;
	padding: 2.5rem;
	text-align: center;
	border-radius: 3px;
	box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
	transition: transform .3s; }
	.feature-box__icon {
		font-size: 6rem;
		margin-bottom: .5rem;
		display: inline-block;
		background-image: linear-gradient(to right, #7ed56f, #28b485);
		-webkit-background-clip: text;
		color: transparent; }
	.feature-box:hover {
		transform: translateY(-1.5rem) scale(1.03); }

@media (min-width: 1150px) {
	.navigation__desktop {
		display: block;
	}
	
	.navigation__search {
		display: block;
		margin: 0 0 0 auto;
	}
	
	.navigation__items {
		padding: 0 0 0 20px;
	}
	}
	
	.navigation__items > li {
	padding: 10px 0;
	color: white; 
	font: Barlow; 

	}
	
.navigation__items > li > a {
	color: var(--dark);
	font-family: var(--font--secondary);
	font-size: var(--font-md);
	line-height: 1.55;
	padding: 10px 0;
	}