@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: #545454;
}

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: #919191;
 
  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: 0px;
}



/* 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 #000000;
	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: #000000;
	z-index: -1;
}

#head .hamburger .bar::after,
#head .hamburger .bar::before {
	content: "";
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	background-color: #000000;
	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 */


/* Card Section */

#about .about {
	font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
	flex-direction: column-reverse;
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
    margin-bottom: -10rem;
	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;
    margin-top: -1.4rem;
}

#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;
}

 
@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;
	}


}

#about .about {
	font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
	flex-direction: column-reverse;
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
    margin-bottom: -10rem;
	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;
}

 
@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;
	}


}


.bodyy .box-container .box h3 {
    color: #000000;
    font-size: 1.5rem;
    text-transform: uppercase;
    padding-left: 2.5rem;
}

.bodyy .box-container .box p {
    padding: 0 0 2.5rem;
    padding-left: 2.5rem;
}


@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;
	}

}

.center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    background: #e1e1e1;
    border-radius: .3rem;
}

.center h1 {
    text-align: center;
    padding: 0 0 20px 0;
    border-bottom: 1px solid silver;
    margin: 20px;
}

.center form {
    padding: 0 40px;
    box-sizing: border-box;
}

form .txt_field {
    position: relative;
    border-bottom: 2px solid #adadad;
    margin: 30px 0;
}

.txt_field input {
    width: 100%;
    padding: 0 5px;
    height: 40px;
    font-size: 10px;
    border: none;
    background: none;
    outline: none;
}

.txt_field label {
    position: absolute;
    top: 50%;
    left: 5px;
    color: #adadad;
    transform: translateY(-50%);
    font-size: 16px;
    pointer-events: none;
    transition: .5s;

}

.txt_field span::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #545454;
    transition: .5s;
}

.txt_field input:focus ~ label,
.txt_field input:valid ~ label {
    top: -5px;
    color: #202020;
}

.txt_field input:focus ~ span::before,
.txt_field input:valid ~ label::before {
    width: 100%;

}

.pass {
    margin: -5px 0 20px 5px;
    color: #000000;
    cursor: pointer;
}

.pass:hover {
    text-decoration: underline;
}

input[type="submit"] {
    width: 100%;
    height: 40px;
    border: 1px solid;
    background: #202020;
    border-radius: .5rem;
    color: #e1e1e1;
    outline: none;
}

input[type="submit"]:hover {
    border-color: #000000;
    transition: .5s;
}

.signup_link {
    margin: 30px 0;
    text-align: center;
    font-size: 16px;
    color: #666666;
}

    @media (max-width:991px) {
        html {
            font-size: 50%;
        }
        .body .box-container .box img {
            height: auto;
            width: 100%;
        } 
    }

    @media (max-width:991px) {
        html {
            font-size: 50%;
        }
        .bodyy .box-container .box img {
            height: auto;
            width: 100%;
        } 
    }

/* 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;
	}
	}