@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');

/* Variables */
:root {
  /* Colors */
    --overlay-color: #333;
    --accent-color: #03a9f4;  
}

/* reset */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
/*  */
    box-sizing:border-box;
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    -webkit-font-smoothing:antialiased;
    -moz-font-smoothing:antialiased;
    -o-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
}


.showcase {
  position: absolute;
  right: 0;
  width: 100%;
  min-height: 100vh;
  padding: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  color: #fff;
  z-index: 2;
  transition: 0.5s;
}

.showcase.active {
  right: 300px;
}

.showcase header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 100px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  text-transform: uppercase;
  cursor: pointer;
  max-width: 350px;
}

.toggle {
  position: relative;
  width: 60px;
  height: 60px;
  background: url('assets/menu.svg');
  background-repeat: no-repeat;
  background-size: 30px;
  background-position: center;
  cursor: pointer;
}

.toggle.active {
  background: url('assets/close.svg');
  background-repeat: no-repeat;
  background-size: 28px;
  background-position: center;
}

.showcase video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8; 
  /* opacity for video */
}

.showcase .backgroundd {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0,8;
}

.a.cellphone {
  background: blue;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--overlay-color);
  mix-blend-mode: overlay;
}


.text {
  position: relative;
  z-index: 10;
  padding-top: 100px;
}

.text h2 {
  font-size: 5em;
  font-weight: 800;
  line-height: 1em;;
  text-transform: uppercase;
}

.text h3 {
  font-size: 4em;
  font-weight: 600;
  line-height: 1em;;
  text-transform: uppercase;
}
.text h4 {
  font-size: 3em;
  font-weight: 400;
  line-height: 1em;
  text-transform: uppercase;
}

.text h5 {
  font-size: 2em;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  z-index: 800;
}

.text p {
  font-size: 1.1em;
  margin: 20px 0;
  font-weight: 400;
  max-width: 700px;
}

.text a {
  display: inline-block;
  font-size: 1em;
  /* background: #fff; */
  padding: 10px 30px;
  text-decoration: none;
  color: #FFF;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: 0.2s;
}

.text a:hover {
  letter-spacing: 6px;
}

.social {
  position: absolute;
  bottom: 20px;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.social li {
  list-style: none;
}

.social li a {
  display: inline-block;
  filter: invert(1);
  margin-right: 20px;
  transform: scale(0.9);
  transition: 0.5s;
}

.social li a:hover {
  transform: scale(1.5) translateY(-10px);
}


.menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu ul {
  position: relative;
  list-style: none;
  
}


.menu ul li a {
  text-decoration: none;
  font-size: 24px;
  color: #111;
}

.menu ul li a:hover {
  color: var(--accent-color);
}

/* Contact FOrm */

.container {
	padding-top: 200px;
  max-width:600px;
	width:100%;
	margin:0 auto;
	position:relative;
}

#contact input[type="text"],
#contact input[type="email"], 
#contact input[type="tel"], 
#contact input[type="url"], 
#contact textarea, 
#contact button[type="submit"] { 
  font:400 12px/16px "Open Sans", Helvetica, Arial, sans-serif;
}


#contact {
	background:#F9F9F9;
	padding:25px;
	margin:50px 0;
}


#contact h3 {
	color: rgb(230, 70, 70);
	display: flex;
	font-size: 30px;
	font-weight: 400;
  justify-content: center;
  font-family: 'Poppins';
}

#contact h4 {
	margin:5px 0 15px;
	display:block;
	font-size:13px;
}

fieldset {
	border: medium none !important;
	margin: 0 0 10px;
	min-width: 100%;
	padding: 0;
	width: 100%;
}

#contact input[type="text"], #contact input[type="email"], #contact input[type="tel"], #contact input[type="url"], #contact textarea {
	width:100%;
	border:1px solid #CCC;
	background:#FFF;
	margin:0 0 5px;
	padding:10px;
}

#contact input[type="text"]:hover, #contact input[type="email"]:hover, #contact input[type="tel"]:hover, #contact input[type="url"]:hover, #contact textarea:hover {
	-webkit-transition:border-color 0.3s ease-in-out;
	-moz-transition:border-color 0.3s ease-in-out;
	transition:border-color 0.3s ease-in-out;
	border:1px solid #AAA;
}

#contact textarea {
	height:100px;
	max-width:100%;
  resize:none;
}

#contact button[type="submit"] {
  justify-content: center;
  cursor:pointer;
  font-family: 'Poppins';
	width: 100%;
	border:none;
	background:#000;
	color:#FFF;
	margin:0 0 5px;
	padding:10px;
	font-size: 25px;
}

#contact button[type="submit"]:hover {
	background:#09C;
	-webkit-transition:background 0.3s ease-in-out;
	-moz-transition:background 0.3s ease-in-out;
	transition:background-color 0.3s ease-in-out;
}

#contact button[type="submit"]:active { box-shadow:inset 0 1px 3px rgba(0, 0, 0, 0.5); }

#contact input:focus, #contact textarea:focus {
	outline:0;
	border:1px solid #999;
}
::-webkit-input-placeholder {
 color:#888;
}
:-moz-placeholder {
 color:#888;
}
::-moz-placeholder {
 color:#888;
}
:-ms-input-placeholder {
 color:#888;
}



/* Media Query  */

@media(max-width: 1000px) {
  .showcase, .showcase header {
    padding: 40px;
  }

  .logo {
    max-width: 250px;
  }

  .text h2 {
    font-size: 3em;
  }

  .text h3 {
    font-size: 2em;
  }

}


@media(max-width: 798px) {
  .showcase, .showcase header {
    padding: 40px;
  }

  .logo {
    max-width: 200px;
  }

  .text h2 {
    font-size: 3em;
  }

  .text h3 {
    font-size: 2em;
  }

}

@media(max-width: 600px) {
  .showcase, .showcase header {
    padding: 40px;
  }

  .logo {
    max-width: 250px;
  }

  .text h2 {
    font-size: 3em;
  }

  .text h3 {
    font-size: 2em;
  }

}