:root {
	--base : #007A37;
	--text : #fff;
}

* {
	transition: .4s ease;
	box-sizing: border-box;
	text-decoration: none;
	color: var(--text);
}

/*html {
	scroll-behavior: smooth;
}*/

html, body {
	position: relative;
	margin: 0;
	padding: 0;
}

body {
	background-color: var(--base);
	font-family: 'Lato', sans-serif;
	width: 100%;
	overflow-x: hidden;
}

#logo-brand {
	display: none;
}

/* -- Base Grid -- */
.grid {
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
	/*overflow: hidden;*/
}

nav {
	background-color: white;
	width: 100%;
	height: 100px;
	display: flex;
	align-items: center;
	position: fixed;
	top: 0;
	z-index: 5;
}

nav .grid {
	display: flex;
	justify-content: space-between;
}

nav a {
	color: var(--base);
	font-weight: 900;
	font-size: 22px;

	text-transform: uppercase;
	position: relative;
	display: flex;
	align-items: center;
}

nav .web-logo img {
	width: auto;
	height: 40px;
}

nav a:not(.web-logo)::before {
	position: absolute;
	width: 0;
	height: 3px;
	background: var(--base);

	content: '';
	margin: 0 auto;
	left: 0;
	right: 0;
	transform: translateY(1rem);
	transition: .4s ease;
}

nav a:hover::before {
	width: 100%;
}

nav a:hover {
	color: #FCD70E;
}

nav a:hover::before {
	background: #FCD70E;
}

header {
	margin-top: 100px;
}

header .grid {
	display: flex;
	justify-content: center;
	flex-direction: column;
	position: relative;
}

header .headline{
	/*line-height: 0;*/
	font-size: 18vw;
	margin: 0;
	text-transform: uppercase;
	opacity: .85;
}

.glasses {
	display: flex;
	justify-content: space-around;
	margin-top: -11em;
	z-index: 1;
}

.glass:nth-child(2), .glass:nth-child(4) {
	padding-top: 3em;
}

.glass:nth-child(3) {
	margin-top: -2.5em;
	margin-left: -5em;
}

section#ph1 {
	margin-top: 8em;
}

section#ph1 .grid {
	position: relative;
}

.bubble {
	content: '';
	border-radius: 50%;

	position: absolute;
	right: 0;
	width: 750px;
	height: 750px;
	z-index: -2;

}

.bubble.circle1 {
	top: 14%;
	background: #EEE313;
}

.bubble.circle2 {
	background: #FFFB10;
	width: 1250px;
	height: 1250px;
	top: 5%;
	right: -55%;
}

section#ph1 h1{
	font-size: 5em;
	font-weight: 900;
	letter-spacing: 12px;
}

section#ph1 p, section#ph2 p {
	font-weight: 700;
	font-size: 24px;
	line-height: calc(24px*1.6);
}

section#ph2 .grid {
	display: grid;
	grid-template-columns: 1fr 3fr;
	grid-column-gap: 3em;
}

section#ph2 h1 {
	font-weight: 900;
	font-size: 8em;
	line-height: 1em;
	margin-top: 10px;
}

section#ph2 p {
	margin: 0;
}

section#ph2 {
	margin-top: 20em;
}

section#ph3 {
	width: 100%;
	position: relative;
	margin-top: -5px;
	background-color: white;
	height: calc(100vh - 100px);
	z-index: 2;
	background-image: url('../img/splash.png');
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: right;
}

section#ph3 .grid{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

section#ph3 h1 {
	color: var(--base);
	font-weight: 900;
	text-transform: uppercase;font-size: 5vw;
}

section#ph4 {
	width: 100%;
	height: calc(100vh - 100px);
	display: flex;
}

.divide {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	position: relative;
}

.divide:last-child {
	background-color: #FFFB10;
}

.kiri .tagline {
	display: flex;
	align-items: flex-end;
	transform: scale(.75);
}

.kiri .tagline h1 {
	text-transform: uppercase;
	font-size: 11vh;
	margin: 0;
	margin-left: -15px;
	z-index: -1;
	line-height: calc(11vh * 0.9);
}

.kiri .tagline img {
	margin-left: -30px;
	height: 100%;
}

.kiri p {
	font-size: 28px;
}

.kanan p, .kanan h1 {
	color: var(--base);
}

.kanan h1 {
	text-transform: uppercase;
	font-weight: 900;
	font-size: 10vh;
	line-height: 0;
	margin: .6em 0;
}

.kanan p {
	font-size: 32px;
	font-weight: 700;
}

.kanan p:last-child {
	text-align: right;
}

.kanan .btn {
	background-color: var(--base);
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	line-height: 0;
	position: absolute;
	bottom: 4em;

}

@keyframes arrow {
	0% {
		transform: translateY(-1em);
		opacity: 0;
	}

	65%{
		
		transform: translateY(-.25em);
	}

	80% {
		transform: translateY(.25em);
	}

	87%{
		opacity: 1;
		transform: translateY(-.10em);
	}

	90% {
		transform: translateY(1);
	}

	100% {
		opacity: 0;
		transform: translateY(1);
	}
}

.kanan .btn i {
	font-size: 1.5em;
	margin-top: -5px;
	animation: arrow linear 1s 1s infinite;
}

.kanan .btn:hover {
	background-color: #fff;
	transform: scale(.95);
	box-shadow: 10px 10px 20px 0 rgba(0,0,0,.3);
}

.kanan .btn:hover i {
	color: var(--base);
}

#mixing {
	background-color: white;
	height: calc(90vh - 100px);
}

#mixing .grid {
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
}

#mixing h1, #mixing li {
	color: black;
}

#mixing ul {
	width: 100%;
	max-width: 900px;
	margin: 5em auto;
	/*background-color: black;*/
	/*margin: 0;*/
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 4em;
}

#mixing li {
	padding-left: 1em;
	font-size: 24px;
	font-weight: 700;
	color: var(--base);
	text-transform: uppercase;
	list-style-image: url(../img/list.png); 
}

#mixing h1 {
	color: var(--base);
	text-transform: uppercase;
	text-align: center;
	font-size: 8vh;
	font-weight: 900;
	line-height: 0;
}

#mixing a {
	background-color: var(--base);
}

#mixing .btn {
	text-align: center;
	padding: 10px 0;
	font-size: 20px;
	font-weight: 700;
	border: 2px solid var(--base);
}

#mixing .btn:hover {
	background-color: white;
	color: var(--base);
}

#client {
	height: 55vh;
}

.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-slide {
	position: relative;
	width: calc(100vw / 3 + 400px);
	text-align: center;
	font-size: 18px;
	background: #FFFB10;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	color: black;
}

.swiper-slide img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.swiper-slide .overlay {
	position: absolute;
	background-color: rgba(0,0,0,.75);
	width: 95%;
	height: 90%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	transform: scale(1.1);
	filter: blur(20px);
	opacity: 0;
	z-index: 1;
}

.swiper-slide:hover .overlay {
	opacity: 1;
	transform: scale(1);
	filter: blur(0);
}



.overlay p {
	font-weight: 900;
	text-transform: uppercase;
	font-size: 32px;
}

.overlay a {
	border: 1px solid white;
	padding: 10px 2em;
}

.overlay a:hover {
	background-color: white;
	color: black;
}

footer {
	height: 75vh;
	/*padding: 2em 0;*/
	padding-top: 10em;
	padding-bottom: 2em;
	position: relative;
	overflow: hidden;
}

footer .grid {
	height: 100%;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}

footer .content h1{
	font-size: 5vw;
	text-transform: uppercase;
	font-weight: 900;
	line-height: 1em;
}

footer .content .btn {
	margin-top: 2em;
	background-color: #FFFB10;
	padding: 10px 4em;
	color: var(--base);
	font-weight: 900;
	font-style: italic;
	font-size: 30px;
	text-transform: uppercase;
}

footer .content .btn:hover {
	background-color: transparent;
	border: 2px solid white;
	color: white;
	margin-left: 1em;
}

footer .bg {
	z-index: -1;
	position: absolute;
	background-color: var(--base);
	opacity: .8;
	bottom: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

footer .bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	mix-blend-mode: screen;
}

footer .notice {
	position: absolute;
	bottom: 0;
	right: 4em;
}

footer .notice img {
	height: 250px;
}