html, body {

   background: #EB5757;  /* fallback for old browsers */
   background: -webkit-linear-gradient(to right, #000000, #EB5757);  /* Chrome 10-25, Safari 5.1-6 */
   background: linear-gradient(to right, #000000, #EB5757); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
   font-family: 'Architects Daughter', cursive;
    
    }

    *, *:before, *:after {
      box-sizing: border-box;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    
   
    
    .background {
      display: flex;
      min-height: 100vh;
    }
    
    .container {
      flex: 0 1 700px;
      margin: auto;
      
    }
    
    .screen {
      position: relative;
      /* background:   ; */
       border-radius: 15px;

       background: #232526;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #414345, #232526);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #414345, #232526); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

    }
    
    .screen:after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 20px;
      right: 20px;
      bottom: 0;
      border-radius: 15px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
      z-index: -1;
    }
    
    .screen-header {
      display: flex;
      align-items: center;
      padding: 10px 20px;
      background: #4d4d4f;
      border-top-left-radius: 15px;
      border-top-right-radius: 15px;
    }
    
    .screen-header-left {
      margin-right: auto;
    }
    
    .screen-header-button {
      display: inline-block;
      width: 8px;
      height: 8px;
      margin-right: 3px;
      border-radius: 8px;
      background: white;
    }
    
    .screen-header-button.close {
      background: black;
    }
    
    .screen-header-button.maximize {
      background: black;
    }
    
    .screen-header-button.minimize {
      background: black;
    }
    
    .screen-header-right {
      display: flex;
    }
    
    .screen-header-ellipsis {
      width: 3px;
      height: 3px;
      margin-left: 2px;
      border-radius: 8px;
      background: rgb(212, 13, 13);
    }
    
    .screen-body {
      display: flex;
    }
    
    .screen-body-item {
      flex: 1;
      padding: 50px;
    }
    
    .screen-body-item.left {
      display: flex;
      flex-direction: column;
    }
    
    .app-title {
      display: flex;
      flex-direction: column;
      position: relative;
      color: red;
      font-size: 26px;
    }
    
    .app-title:after {
      content: '';
      display: block;
      position: absolute;
      left: 0;
      bottom: -10px;
      width: 25px;
      height: 4px;
      background: red;
    }
    
    .app-contact {
      margin-top: auto;
      font-size: 8px;
      color: #888;
    }
    
    .app-form-group {
      margin-bottom: 15px;
    }
    
    .app-form-group.message {
      margin-top: 40px;
    }
    
    .app-form-group.buttons {
      margin-bottom: 0;
      text-align: right;
    }
    
    .app-form-control {
      width: 100%;
      padding: 10px 0;
      background: none;
      border: none;
      border-bottom: 1px solid #666;
      color: #ddd;
      font-size: 14px;
      text-transform: uppercase;
      outline: none;
      transition: border-color .2s;
    }
    
    .app-form-control::placeholder {
      color: #666;
    }
    
    .app-form-control:focus {
      border-bottom-color: #ddd;
    }
    
    .app-form-button {
      background: none;
      border: none;
      color: red;
      font-size: 14px;
      cursor: pointer;
      outline: none;
    }
    
    .app-form-button:hover {
      color: #b9134f;
    }
    
    .credits {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 20px;
      color: green;
      font-family: 'Roboto Condensed', sans-serif;
      font-size: 16px;
      font-weight: normal;
    }
    
    .credits-link {
      display: flex;
      align-items: center;
      color: #fff;
      font-weight: bold;
	  text-decoration: none;
	  
    }
    
    .dribbble {
      width: 20px;
      height: 20px;
      margin: 0 5px;
    }
    
    @media screen and (max-width: 520px) {
      .screen-body {
        flex-direction: column;
      }
    
      .screen-body-item.left {
        margin-bottom: 30px;
      }
    
      .app-title {
        flex-direction: row;
      }
    
      .app-title span {
        margin-right: 12px;
      }
    
      .app-title:after {
        display: none;
      }
    }
    
    @media screen and (max-width: 600px) {
      .screen-body {
        padding: 40px;
      }
    
      .screen-body-item {
        padding: 0;
      }
    }
    
    /* jumbotron */
.jumbotron.jumbotron-fluid {

background-color: transparent;
color: white;
font-family: 'Architects Daughter', cursive;

}
    

/* light text  */
:root {
	--white:#f1f1f1
}

/* div > span {
	opacity: 0.15;
} */
#I {
	opacity: 1;
	animation: flickerI 2s linear  reverse infinite;
}
#I::after {
	content: '';
	width: 150%;
	-webkit-box-shadow: -35px 0px 60px 8px rgba(255,255,255,1);
	-moz-box-shadow: -35px 0px 60px 8px rgba(255,255,255,1);
	box-shadow: -35px 0px 60px 8px rgba(255,255,255,1);
}
#L, #G {
	animation: flickerLG 2s linear reverse infinite;
	position: relative;
}
#L::after, 
#L::before  {
	content:' ';
	width: 100px;
	height: 100px;
	background: var(--white);
	position: absolute;
	top: -50%;
	left: 100%;
	border-radius: 100%;
	opacity: 0.05;
	filter: blur(10px);
}
#L::after {
	width: 200px;
	height: 200px;
	top: -150%;
	left: -5%;
	opacity: 0.1;
	filter: blur(10px);
}
#H {
	animation: flickerH 2s linear reverse infinite
}

#T {
	animation: flickerH 2s linear reverse infinite
}

@keyframes flickerI {
	0% {
		opacity: 0.4;
	}
	5% {
		opacity: 0.5;
	}
	10% {
		opacity: 0.6;
	}
	15% {
		opacity: 0.85;
	}
	25% {
		opacity: 0.5;
	}
	30% {
		opacity: 1;
	}
	35% {
		opacity: 0.1;
	}
	40% {
		opacity: 0.25;
	}
	45% {
		opacity: 0.5;
	}
	60% {
		opacity: 1;
	}
	70% {
		opacity: 0.85;
	}
	80% {
		opacity: 0.4;
	}
	90% {
		opacity: 0.5;
	}
	100% {
		opacity: 1;
	}
}

@keyframes flickerLG {
	0% {
		opacity: 0.19;
	}
	5% {
		opacity: 0.2;
	}
	10% {
		opacity: 0.25;
	}
	15% {
		opacity: 0.35;
	}
	25% {
		opacity: 0.2;
	}
	30% {
		opacity: 0.4;
	}
	35% {
		opacity: 0.1;
	}
	40% {
		opacity: 0.25;
	}
	45% {
		opacity: 0.2;
	}
	60% {
		opacity: 0.4;
	}
	70% {
		opacity: 0.35;
	}
	80% {
		opacity: 0.4;
	}
	90% {
		opacity: 0.2;
	}
	100% {
		opacity: 0.4;
	}
}

@keyframes flickerH {
	0% {
		opacity: 0.15;
	}
	5% {
		opacity: 0.2;
	}
	10% {
		opacity: 0.12;
	}
	15% {
		opacity: 0.2;
	}
	25% {
		opacity: 0.15;
	}
	30% {
		opacity: 0.4;
	}
	35% {
		opacity: 0.05;
	}
	40% {
		opacity: 0.12;
	}
	45% {
		opacity: 0.15;
	}
	60% {
		opacity: 0.3;
	}
	70% {
		opacity: 0.2;
	}
	80% {
		opacity: 0.3;
	}
	90% {
		opacity: 0.18;
	}
	100% {
		opacity: 0.3;
	}
}

@keyframes flickerT {
	0% {
		opacity: 0.01;
	}
	5% {
		opacity: 0.05;
	}
	10% {
		opacity: 0.03;
	}
	15% {
		opacity: 0.1;
	}
	25% {
		opacity: 0.07;
	}
	30% {
		opacity: 0.1;
	}
	35% {
		opacity: 0.05;
	}
	40% {
		opacity: 0.06;
	}
	45% {
		opacity: 0.1;
	}
	60% {
		opacity: 0.;
	}
	70% {
		opacity: 0.1;
	}
	80% {
		opacity: 0.;
	}
	90% {
		opacity: 0.0;
	}
	100% {
		opacity: 0.1;
	}
}
/* light text end  */

/* custom scroll bar  */
* {
	margin: 0;
	padding: 0;

  }
  
  section {
	padding: 6px;
	background: black;
  }
  
  section h2 {
	font-size: 2.5em;
	color: #fff;
  }
  
  section p {
	font-size: 1.2em;
	color: #fff;
  }
  
  ::-webkit-scrollbar {
	width: 0;
  }
  
  #scrollPath {
	position: fixed;
	top: 0;
	right: 0;
	width: 10px;
	height: 100%;
	background: rgba(255, 255, 255, 0.05);
  }
  
  #progressBar {
	position: fixed;
	top: 0;
	right: 0;
	width: 10px;
	background: linear-gradient(to top, #008aff, #00ffe7);
	animation: animate 5s linear infinite;
  }
  
  @keyframes animate {
	0%, 100% {
	  filter: hue-rotate(0);
	}
	50% {
	  filter: hue-rotate(360deg);
	}
  }
  
  #progressBar::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, #008aff, #00ffe7);
	filter: blur(10px);
  }
  
  #progressBar::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, #008aff, #00ffe7);
	filter: blur(30px);
  }
  /* scroll end  */

   /*  footer  */
 body {
	font-family: 'Architects Daughter', cursive;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.7;
	color: #eee;
  }
  
  .header {
	height: 100vh;
	background-image: 
	linear-gradient(to right bottom, 
	 rgba(15, 17, 17, 0.8),
	 rgba(255, 0, 0, 0.8)),
	 url("https://images.unsplash.com/photo-1549861833-c5932fd19229?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1191&q=80");
  background-size: cover;
	background-position: top;
	position: relative;
	font-family: 'Architects Daughter', cursive;
	clip-path: polygon(0 0, 100% 0, 100% 75vh, 0 100%);
  }
  
  .brand-box {
	position: absolute;
	top: 40px;
	left: 40px;
	font-family: 'Architects Daughter', cursive;
  }
  
  .brand { font-size: 20px; }
  
  .text-box {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	font-family: 'Architects Daughter', cursive;
  }
  
  .heading-primary {
	color: white;
	text-transform: uppercase;
	font-family: 'Architects Daughter', cursive;
	backface-visibility: hidden;
	margin-bottom: 30px;
  }
  
  .heading-primary-main {
	display: block;
	font-size: 26px;
	font-family: 'Architects Daughter', cursive;
	font-weight: 400;
	letter-spacing: 5px;
  }
  
  .heading-primary-sub {
	display: block;
	font-size: 18px;
	font-family: 'Architects Daughter', cursive;
	font-weight: 700;
	letter-spacing: 7.4px;
  }
  
  .btn:link,
  .btn:visited {
	text-transform: uppercase;
	text-decoration: none;
	font-family: 'Architects Daughter', cursive;
	padding: 10px 20px;
	display: inline-block;
	border-radius: 100px;
	transition: all .2s;
	position: relative;
  }
  
  .btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  .btn:active {
	transform: translateY(-1px);
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  }
  
  .btn-white {
	background-color: white;
	color: #777;
	font-family: 'Architects Daughter', cursive;
  font-size: 14px;
  }
   /* footer end */

    /* amate text  */
.link {
	outline: none;
	text-decoration: none;
	position: relative;
	font-size: 2em;
	font-family: 'Architects Daughter', cursive;
	line-height: 1;
	color: red;
	display: inline-block;
	padding-left: 42%;
	padding-bottom: 2%;
	}
	   
   .link--change {
	text-transform: uppercase;
	font-weight: 650;
	overflow: hidden;
	line-height: 0.75;
	color: black;
	font-family: 'Architects Daughter', cursive;
	}
	   
   .link--change:hover {
	color: transparent;
	font-family: 'Architects Daughter', cursive;
	}
	   
   .link--change::after {
	content: '';
	position: absolute;
	height: 8px;
	width: 100%;
	top: 50%;
	margin-top: -4px;
	right: 0;
	font-family: 'Architects Daughter', cursive;
	background: black;
	transform: translate3d(-50%,0,0);
	transition: transform .3s;
	transition-timing-function: cubic-bezier (0.7,0,0.3,1);
	}
	   
   .link--change:hover::after {
	transform: translate3d(100%,0,0);
	}
	   
   .link--change::before {
	content: attr(data-letters);
	position: absolute;
	z-index: 2;
	overflow: hidden;
	color: white;
	white-space: nowrap;
	width: 0%;
	transition: width 0.6s 0.5s;
	}
	   
   .link--change:hover::before {
	width: 100%;
	}
  /* end  */
  
   .nerd {
  
	font-family: 'Architects Daughter', cursive;
  
  } 

  /* test  */
  .jumbotron2   {

	background-image: url("https://images.unsplash.com/photo-1557075877-bf592ed513a7?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1150&q=60");
	background-repeat: no-repeat;
	background-size: cover;
		color: aliceblue;
	  }
	  
	  
	  
	  
	  
	  
	  /* form  */
	  input {
		margin-left: 0%;
		   padding: 1.3%;
		   width: 50%;
		   background-color: white;
		}
		   
		 .move {
	   margin-left: 5%;
	   font-size: large;
	   font-weight: bold;
		}
  
 