html{
	font-family: 'Montserrat', sans-serif;
}
.section{
	max-width: 100%;
	min-height: 100vh;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.section-background{
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url('desktop.jpg');
}
.section-background:after{
	content: "";
	background-color: rgba(0, 0, 0, .4);
	top:0;
	left:0;
	right:0;
	bottom:0;
	position: absolute;
	z-index:1;
}
.section-background>div{
	z-index: 2;
}
.section-primary{
	background: #10AC84;
}
.section-primary>*{
	color: white;
}
.section-white{
	background: white;
}
.section-white>*{
	color: black;
}
.section-grey{
	background: #E7E7E7;
}
.section-grey>*{
	color: #4C4C4C;
}
.section-black{
	background: #1A1A1A;
}
.section-black>*{
	color: white;
}
.logo{
	position: absolute;
	margin:2rem;
	top:0;
	left:0;
}
.logo>img{
	width:160px;
}
.menu{
	position: absolute;
	margin:2rem;
	top:0;
	right:0;
}
.menu a{
	display: flex;
	flex-direction: row;
	align-items: center;
}
.menu .text{
	font-size: .8em;
	margin-right: .8rem;
	line-height: .8em;
}
.menu .icon{
	font-size: 1.6em;
}
.content{
	padding:4rem;
	max-width: 960px;
	margin:0 auto;
}
.content>p{
	font-size: 1.2em;
	line-height: 1.8em;
	color: rgba(0, 0, 0, .5);
}
.content>ul{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.content>ul>li{
	width:50%;
	margin-bottom:3rem;
	padding: 0 2rem;
	box-sizing: border-box;
}
.content>ul>li .service{
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 2rem;
}
.content>ul>li .service>.writing{
	text-align: left;
}
.content>ul>li .service>.writing>h3{
	font-size: 2em;
	margin-bottom: 1rem;
}
.content>ul>li .service>.writing>p{
	font-size: 1.1em;
	line-height: 1.4em;
	opacity: .6;
}
.content>ul>li .service>.icon{
	font-size: 2em;
}
.content>ul>li .service>.icon i{
	color: #10AC84;
}
.section-background *{
	color: white;
}
.has-text-centered{
	text-align: center;
}
.subtitle{
	text-transform: uppercase;
	letter-spacing: .4em;
	font-size: .9em;
	line-height: 2em;
}
.subtitle.alternative{
	color: rgba(0, 0, 0, .5);
}
.subtitle.primary{
	color: #10AC84;
}
.underline-alternative{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
	margin-bottom:3rem;
}
.underline-alternative:after{
	content: "";
	width: 60%;
	height: 1px;
	background: rgba(0, 0, 0, .2);
}
.underline-alternative.switch:after{
	background: rgba(255,255,255, .1);
}
.title{
	font-weight: 700;
	font-size: 3.6em;
	line-height: 1.4em;
}
.buttons{
	margin-top: 3rem;
}
.button{
	background: white;
	color: #10AC84;
	display: inline-block;
	padding: 1.6rem;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: .3em;
	font-size: .7em;
}

.header-social{
	position: absolute;
	top:50%;
	right:0;
	transform:translate(0,-50%);
	margin: 2rem;
	
}
.header-social>ul{
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.header-social>ul>li>a{
	display: block;
	width:40px;
	height:40px;
	line-height: 40px;
	border-radius: 50%;
	border: 1px solid white;
	text-align: center;
}
.header-social>ul>li>a:hover{
	background:white;
	color: #10AC84;
}
.header-social>ul>li>a:hover>i{
	color:inherit;
}
.scroll-down{
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 1rem;
	position: absolute;
	right:3rem;
	bottom: -120px;
	z-index: 1;
}
.scroll-down>.writing{
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 1rem;
}
.scroll-down>.writing>.text{
	text-transform: uppercase;
	letter-spacing: .3em;
	font-size: .7em;
}
.scroll-down>.two-lines{
	display:flex;
	flex-direction: column;
}
.scroll-down>.two-lines>*{
	width: 1px;
	height: 120px;
}
.scroll-down>.two-lines>.line-green{
	background: #10AC84;
}
.scroll-down>.two-lines>.line-white{
	background: white;
}
.brands-carousel .brand{
	width: 25%;
	display: block;
}
.brands-carousel .brand img{
	height: 50px;
	transition: all 400ms ease;
	filter: grayscale(100%);
}
.brands-carousel .brand:hover img{
	filter: grayscale(0);
}
.brands-carousel .flickity-page-dots{
	position: static;
	margin-top: 4rem;
}
.brands-carousel .flickity-page-dots .dot{
	background: #10AC84;
}
.contact-us{
	max-width: 960px;
	margin:0 auto;
	display: flex;
	flex-direction: row;
	align-items: stretch;
	background-color: rgba(0, 0, 0, .2);
}
.contact-us>.photo{
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url('building.jpg');
	width:70%;
}
.contact-us>.info{
	padding:4rem;
	background: black;
	text-align: left;
}
.contact-us>.info>h2{
	margin-bottom: 1.8rem;
}
.contact-us>.info>h3{
	color: #10AC84;
	font-size: 1.2em;
	font-weight: 500;
	margin-bottom: 1rem;
}
.contact-us>.info>ul{
	margin-bottom: 2rem;
}
.contact-us>.info>ul>li{
	line-height: 1.6em;
}
.contact-us>.info a{
	color: white;
}
.contact-us>.info>.social{
	display: flex;
	flex-direction: row;
	gap: 2rem;
}

footer{
	background: black;
}
footer *{
	color: rgba(255,255,255, .4);
	line-height: 1.6em;
}
footer .columns{
	display: flex;
	flex-direction:row;
	margin:3rem 0;
}
footer .columns>.column{
	width: 50%;
}
footer .columns>.column .social{
	display: flex;
	flex-direction: row;
	gap: 2rem;
}