@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;500&display=swap');

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

body {
	padding: 0;
	margin: 0;
	background-color: #e1e1e1;
}

html {
	font-size: 10px;
	font-family: 'Josefin Sans', sans-serif;
}

a {
	text-decoration: none;
}

.container {
	min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

html,
body {
  position: relative;
  height: 100%;
}

body {
  background: #727272;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #000;
  margin: 0;
  padding: 0;
}

.h2 {
	margin-right: 100px;
}

.swiper {
  width: 86%;
  height: 60%;
  margin-top: 0px;
  padding-top: 10px;
}

h2 {
	padding-left: 10px;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: transparent;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 330px;
  height: 395px;
  padding: 10px;
  object-fit: cover;
}

/* Head Section */

#head {
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100vw;
	height: auto;
}

#head .head {
	min-height: 8vh;
	background-color: #202020
}

#head .nav-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	max-width: 1300px;
	padding: 0 10px;
}

#head .nav-list ul {
	list-style: none;
	position: absolute;
	background-color: rgb(31, 30, 30);
	width: 100vw;
	height: 100vh;
	left: 100%;
	top: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 1;
	overflow-x: hidden;
	transition: 0.5s ease left;
}


#head .nav-list ul.active {
	left: 0%;
}

#head .nav-list ul a {
	font-size: 2.5rem;
	font-weight: 500;
	letter-spacing: .2rem;
	text-decoration: none;
	color: #e1e1e1;
	text-transform: uppercase;
	padding: 20px;
	display: block;
}

#head .nav-list ul a::after {
	content: attr(data-after);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	color: rgba(62,61,61,0.45);
	font-size: 8rem;
	letter-spacing: 50px;
	z-index: -1;
	transition: 1s ease letter-spacing;
}

#head .nav-list ul li:hover a::after {
	transform: translate(-50%, -50%) scale(1);
	letter-spacing: initial;
}

#head .nav-list ul li:hover a {
	color: #FFFFFF;
}

#head .hamburger {
	height: 35px;
	width: 35px;
	display: inline-block;
	border: 1px solid #e1e1e1;
	border-radius: 10%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100;
	cursor: pointer;
	
}

#head .hamburger .bar {
	height: 2px;
	width: 20px;
	position: relative;
	background-color: #e1e1e1;
	z-index: -1;
}

#head .hamburger .bar::after,
#head .hamburger .bar::before {
	content: "";
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	background-color: #e1e1e1;
	transition: .3s ease;
	transition-property: top, bottom;
}


#head .hamburger .bar::after {
	top: 8px;
}

#head .hamburger .bar::before {
	bottom: 8px;
}

#head .hamburger .active .bar::before {
	bottom: 0;
}

#head .hamburger .active .bar::after {
	top: 0;
}
/* End of Head Section */


/* Header Section */

#header {
	background-image: url(./images/carousel1-01.png);
	background-size: cover;
	background-position: center;
	position: relative;
}

#header::after{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: #010101;
	opacity: .4;
	z-index: -1;
	
}

#header .header {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 50px;
	justify-content: flex-start;
}


.header h1 {
	display: block;
	width: fit-content;
	font-size: 8rem;
	position: relative;
	color: transparent;
	font-weight: 600;
	animation: text_reveal .5s ease forwards;
	animation-delay: 1.5s;
	
}

.header h2 {
	display: block;
	width: fit-content;
	font-size: 3rem;
	position: relative;
	color: transparent;
	font-weight: 350;
	animation: text_reveal .5s ease forwards;
	animation-delay: 1s;
	
}

.header h3 {
	display: block;
	width: fit-content;
	font-size: 10rem;
	position: relative;
	color: transparent;
	font-weight: 350;
	animation: text_reveal .5s ease forwards;
	animation-delay: 1s;
	
}

#header h1:nth-child(1) {
	animation-delay: 1s;
}

#header h2:nth-child(2) {
	animation-delay: 2s;
}

#header h2:nth-child(3) {
	animation-delay: 3s;
}

#header h1 span {
	position: absolute;
	top: 0;
	left: 0;
	height: 110%;
	width: 0%;
	background-color: #000000;
	animation: text_reveal_box 1s ease;
	animation-delay: 0.5s;
}

#header h1:nth-child(1) span {
	animation-delay: 0.5s
}

#header h2:nth-child(2) span {
	animation-delay: 1.5s
}

#header h2:nth-child(3) span {
	animation-delay: 2.5s
}

#header h2 span {
	position: absolute;
	top: 0;
	left: 0;
	height: 110%;
	width: 0%;
	background-color: #000000;
	animation: text_reveal_box 1s ease;
	animation-delay: 1s;
}

#header .cta {
	font-size: 10px;
	display: inline-block;
	padding: 15px 115px;
	color: #919191;
	background-color: #202020;
	border: 1px solid #202020;
	border-radius: 4px;
	text-transform: uppercase;
	letter-spacing: .1px;
	margin-top: 36px;
	transition: .3s ease background-color;
	transition-property: background-color, colour;
}

#header .cta:hover {
	color: #FFFFFF;
	background-color: #000000;
}


/* End of Header Section */


/* Keyframes */
@keyframes text_reveal_box {
	50% {
		width: 100%;
		left: 0;
	}
	100% {
		width: 0;
		left: 100%;
	}
}

@keyframes text_reveal {
	100% {
		color: #FFFAFA;
	}
}

@keyframes text_reveal_name {
	100% {
		color: #202020;
		font-weight: 500;
	}
}
/* End of Keyframes */

/* Card Section */

#about .about {
	flex-direction: column-reverse;
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 20px;
}

#about .col-left {
	width: 680px;
	height: 400px;
	margin-left: -200px;
}

#about .col-right {
	width: 100%;
	margin-left: 0px;
	margin-bottom: 100px;
}

#about .col-right h2 {
	font-size: 3rem;
	font-weight: 500;
	letter-spacing: .1rem;
	margin-bottom: 45px;
	color: #202020;
}

#about .col-right p {
	margin-bottom: 20px;
	letter-spacing: .2rem;
	color: #202020;
}

#about .cta {
	font-size: 10px;
	display: inline-block;
	padding: 15px 115px;
	color: #919191;
	background-color: #202020;
	border: 1px solid #202020;
	border-radius: 4px;
	text-transform: uppercase;
	letter-spacing: .1px;
	margin-top: 36px;
	transition: .3s ease background-color;
	transition-property: background-color, colour;
}

#about .cta:hover {
	color: #FFFFFF;
	background-color: #000000;
}

/* Card Section 2 */

#aboutt .about {
	flex-direction: column-reverse;
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 20px;
}

#aboutt .col-right {
	width: 680px;
	height: 400px;
	margin-left: -200px;
}

#aboutt .col-right .about-img {
	margin-left: 150px;
}

#aboutt .col-left {
	width: 100%;
	margin-left: 0px;
	margin-bottom: 150px;
	margin-top: 100px;
	
}

#aboutt .col-left h2 {
	font-size: 3rem;
	font-weight: 500;
	letter-spacing: .1rem;
	margin-bottom: 45px;
	color: #202020;
}

#aboutt .col-left p {
	margin-bottom: 20px;
	letter-spacing: .2rem;
	color: #202020;
}

#aboutt .cta {
	font-size: 10px;
	display: inline-block;
	padding: 15px 115px;
	color: #919191;
	background-color: #202020;
	border: 1px solid #202020;
	border-radius: 4px;
	text-transform: uppercase;
	letter-spacing: .1px;
	margin-top: 36px;
	transition: .3s ease background-color;
	transition-property: background-color, colour;
}

#aboutt .cta:hover {
	color: #FFFFFF;
	background-color: #000000;
}


 
@media only screen and (min-width: 1200px) {
	#head .hamburger {
		display: none;
	}
	#head .nav-list ul {
		position: initial;
		display: block;
		height: auto;
		width: fit-content;
		background-color: transparent;
	}
	#head .nav-list ul li {
		display: inline-block;
	}
	#head .nav-list ul li a {
		font-size: 1.5rem;
	}
	#head .nav-list ul a::after {
		display: none;
	}
	.swiper {
		position: absolute;
	}

	.swiper-slide {
		display: block;
		width: fit-content;
		position: fixed;
	}


}

/* Footer Section */

@import url(https://fonts.googleapis.com/css?family=Roboto:400,500,300,700);



.footer-distributed{
	background: #545454;
	box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
	box-sizing: border-box;
	width: 100%;
	font: bold 16px sans-serif;
	text-align: left;
	padding: 50px 60px 40px;
	overflow: hidden;
}



/* Footer left */

.footer-distributed .footer-left{
	float: left;
}

/* The company logo */

.footer-distributed h3{
	color:  #ffffff;
	margin: 0 0 10px;
}

.footer-distributed h3 span{
	color:  #5383d3;
}

/* Footer links */

.footer-distributed .footer-links{
	color:  #000000;
	margin: 0 00px 0px;
	padding: 10;
}

.footer-distributed .footer-links a{
	display:inline-block;
	line-height: 1.8;
	text-decoration: none;
	font-size: 16px;
	font-weight: 450;
	color:  inherit;
	margin: 10px;
}

.footer-distributed .footer-links a:hover {
	color: #ffffff;
}



.footer-distributed .footer-company-name{
	color:  #939393;
	font-size: 12px;
	font-weight: normal;
	margin: 0;
	margin-top: 20px;
	padding: 0 10px 00;
}

/* Footer social icons */

.footer-distributed .footer-icons{
	margin-top: 40px;
}

.footer-distributed .footer-icons a{
	display: inline-block;
	width: 35px;
	height: 35px;
	cursor: pointer;
	background-color:  #33383b;
	border-radius: 2px;

	font-size: 20px;
	color: #ffffff;
	text-align: center;
	line-height: 35px;

	margin-right: 3px;
	margin-bottom: 5px;
}

/* Footer Right */

.footer-distributed .footer-right{
	float: right;
}

.footer-distributed .footer-right p{
	display: inline-block;
	vertical-align: top;
	margin: 15px 42px 0 0;
	color: #000000;
	font-weight: 450;
	font-size: 16;
}

/* The contact form */

.footer-distributed form{
	display: inline-block;
}

.footer-distributed form input,
.footer-distributed form textarea{
	display: block;
	border-radius: 3px;
	box-sizing: border-box;
	background-color:  #1f2022;
	border: none;
	resize: none;

	font: inherit;
	font-size: 14px;
	font-weight: normal;
	color:  #d1d2d2;

	width: 400px;
	padding: 18px;
}

.footer-distributed ::-webkit-input-placeholder {
	color:  #5c666b;
}

.footer-distributed ::-moz-placeholder {
	color:  #5c666b;
	opacity: 1;
}

.footer-distributed :-ms-input-placeholder{
	color:  #5c666b;
}


.footer-distributed form input{
	height: 55px;
	margin-bottom: 15px;
}

.footer-distributed form textarea{
	height: 100px;
	margin-bottom: 20px;
}

.footer-distributed form button{
	border-radius: 3px;
	background-color:  #202020;
	color: #919191;
	border: 0;
	padding: 15px 50px;
	font-weight: bold;
	float: right;
}

.footer-distributed form button:hover {
	background-color:  #000000;
	color: #ffffff;	
}

/* If you don't want the footer to be responsive, remove these media queries */

@media (max-width: 1000px) {

	.footer-distributed {
		font: bold 14px sans-serif;
	}

	.footer-distributed .footer-company-name{
		font-size: 12px;
	}

	.footer-distributed form input,
	.footer-distributed form textarea{
		width: 250px;
	}

	.footer-distributed form button{
		padding: 10px 35px;
	}

}

@media (max-width: 800px) {

	.footer-distributed{
		padding: 30px;
	}

	.footer-distributed .footer-left,
	.footer-distributed .footer-right{
		float: none;
		max-width: 300px;
		margin: 0 auto;
	}

	.footer-distributed .footer-left{
		margin-bottom: 40px;
	}

	.footer-distributed form{
		margin-top: 30px;
	}

	.footer-distributed form{
		display: block;
	}

	.footer-distributed form button{
		float: none;
	}
}



@media only screen and (min-width: 768px) {
#about .about {
	flex-direction: row;
}

#about .col-left {
	width: 750px;
	height: 441px;
	padding-left: 60px;
}

#about .col-right {
	text-align: left;
	padding: 30px;
}

#about .col-right h1 {
	text-align: left;
	margin-left: 0px;
}
}

@media only screen and (min-width: 768px) {
	#aboutt .about {
		flex-direction: row;
	}
	
	#aboutt .col-right {
		width: 750px;
		height: 441px;
		padding-left: 60px;
	}
	
	#aboutt .col-left {
		text-align: right;
		padding: 30px;
	}
	
	#aboutt .col-left h1 {
		text-align: right;
		margin-left: 0px;
	}
	}