/* Loader 4 */
body {
	background-color: black;
}

.loader-wrapper {
    width: 99%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.074), rgba(30, 72, 107, 0.156));
    animation: fade-out 6s ease-in-out;
    z-index: 30;
}
.loader-4 {
	height: 100px;
	width: 32px;
}
.loader-4::after {
	content: "";
	display: block;
	position: absolute;
	top: 0; left: 0;
	bottom: 0; right: 0;
	margin: auto;
	width: 12px;
	height: 12px;
	top: 0; left: 0;
	bottom: 0; right: 0;
	margin: auto;
	background: #FFF;
	border-radius: 50%;
	-webkit-animation: loader-4-1 2s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
	        animation: loader-4-1 2s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
}
@-webkit-keyframes loader-4-1 {
	0%   { -webkit-transform: scale(0); opacity: 0; }
	50%  { -webkit-transform: scale(1); opacity: 1; }
	100% { -webkit-transform: scale(0); opacity: 0; }
}
@keyframes loader-4-1 {
	0%   { transform: scale(0); opacity: 0; }
	50%  { transform: scale(1); opacity: 1; }
	100% { transform: scale(0); opacity: 0; }
}
.loader-4 span {
	display: block;
	position: absolute;
	top: 0; left: 0;
	bottom: 0; right: 0;
	margin: auto;
	height: 32px;
	width: 32px;
	-webkit-animation: loader-4-2 2s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
	        animation: loader-4-2 2s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
}
@-webkit-keyframes loader-4-2 {
	0%   { -webkit-transform: rotate(0deg); }
	50%  { -webkit-transform: rotate(180deg); }
	100% { -webkit-transform: rotate(360deg); }
}
@keyframes loader-4-2 {
	0%   { transform: rotate(0deg); }
	50%  { transform: rotate(180deg); }
	100% { transform: rotate(360deg); }
}
.loader-4 span::before,
.loader-4 span::after {
	content: "";
	display: block;
	position: absolute;
	top: 0; left: 0;
	bottom: 0; right: 0;
	margin: auto;
	height: 12px;
	width: 12px;
	background: #FFF;
	border-radius: 50%;
	-webkit-animation: loader-4-3 2s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
	        animation: loader-4-3 2s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
}
@-webkit-keyframes loader-4-3 {
	0%   { -webkit-transform: translate3d(0, 0, 0) scale(1); }
	50%  { -webkit-transform: translate3d(-16px, 0, 0) scale(.5); }
	100% { -webkit-transform: translate3d(0, 0, 0) scale(1); }
}
@keyframes loader-4-3 {
	0%   { transform: translate3d(0, 0, 0) scale(1); }
	50%  { transform: translate3d(-16px, 0, 0) scale(.5); }
	100% { transform: translate3d(0, 0, 0) scale(1); }
}
.loader-4 span::after {
	-webkit-animation: loader-4-4 2s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
	        animation: loader-4-4 2s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
}
@-webkit-keyframes loader-4-4 {
	0%   { -webkit-transform: translate3d(0, 0, 0) scale(1); }
	50%  { -webkit-transform: translate3d(16px, 0, 0) scale(.5); }
	100% { -webkit-transform: translate3d(0, 0, 0) scale(1); }
}
@keyframes loader-4-4 {
	0%   { transform: translate3d(0, 0, 0) scale(1); }
	50%  { transform: translate3d(16px, 0, 0) scale(.5); }
	100% { transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes fade-out {
    from {
        opacity: 100%;
    }

    to {
        opacity: 0%;
    }
}

.line-1{
    position: relative;
    margin-top: 500px;
    width: 24em;
    border-right: 2px solid rgba(255,255,255,.75);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    transform: translateY(-50%);    
}

/* Animation */
.anim-typewriter{
  animation: typewriter 2s steps(44) 1s 1 normal both,
             blinkTextCursor 500ms steps(44) infinite normal;
}
@keyframes typewriter{
  from{width: 0;}
  to{width: 8em;}
}
@keyframes blinkTextCursor{
  from{border-right-color: rgba(255,255,255,.75);}
  to{border-right-color: transparent;}
}

.hover-underline-animation {
	display: inline-block;
	position: relative;
  }
  
  .hover-underline-animation:after {
	content: '';
	position: absolute;
	width: 100%;
	transform: scaleX(0);
	height: 2px;
	bottom: 0;
	left: 0;
	background-image: linear-gradient(45deg, rgb(222, 59, 255),rgb(90, 214, 255));
	transform-origin: bottom right;
	transition: transform 0.25s ease-out;
  }
  
  .hover-underline-animation:hover:after {
	transform: scaleX(1);
	transform-origin: bottom left;
  }
.hover-underline-animation1 {
	display: inline-block;
	position: relative;
  }
  
  .hover-underline-animation1:after {
	content: '';
	position: absolute;
	width: 100%;
	transform: scaleX(0);
	height: 4px;
	bottom: 0;
	left: 0;
	background-image: linear-gradient(45deg, rgb(59, 160, 255),rgb(255, 23, 209));
	transform-origin: bottom right;
	transition: transform 0.25s ease-out;
  }
  
  .hover-underline-animation1:hover:after {
	transform: scaleX(1);
	transform-origin: bottom left;
  }

  /*  */
.hover-underline-animation2 {
	display: inline-block;
	position: relative;
  }
  
  .hover-underline-animation2:after {
	content: '';
	position: absolute;
	width: 100%;
	transform: scaleX(0);
	height: 2px;
	border-radius: 50px;
	bottom: 0;
	left: 0;
	background-image: linear-gradient(45deg, rgb(59, 255, 170),rgb(23, 255, 255));
	transform-origin: bottom right;
	transition: transform 0.25s ease-out;
  }
  
  .hover-underline-animation2:hover:after {
	transform: scaleX(1);
	transform-origin: bottom left;
  }

 

  /*  */

  
  .typing-demo {
	color: white;
	width: 22ch;
	animation: typing 2s steps(22), blink .5s step-end infinite alternate;
	white-space: nowrap;
	overflow: hidden;
	border-right: 3px solid;
	font-family: monospace;
	font-size: 2em;
  }
  
  @keyframes typing {
	from {
	  width: 0
	}
  }
	  
  @keyframes blink {
	50% {
	  border-color: transparent
	}
  }

  /* bg */

  
  

  /* Dropdown Button */
.dropbtn {
	font-family:  Aeonik-light, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	background-color: #ffffff00;
	color: white;
	padding: 16px;
	font-size: 16px;
	border: none;
  }
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
	font-family:  Aeonik-light, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	position: relative;
	display: inline-block;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
	font-family:  Aeonik-light, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	display: none;
	position: absolute;
	background-color: rgb(28, 28, 28);
	border: 3px solid rgba(255, 255, 255, 0.167);
	border-radius: 4px;
	min-width: 280px;
	box-shadow: 0px 8px 100px 0px rgba(0, 0, 0, 0.374);
	z-index: 1;
    color: white;
    width: 200px;
    border-style: solid;
   
    transition: 300ms ease-in-out;
  }
  
  /*
  Links inside the dropdown */
  .dropdown-content a {
	color: white;
	font-family:  Aeonik-light, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	padding: 12px 16px;
	text-decoration: none;
	font-size: 16px;
	display: block;
	transition: 100ms ease-in-out;
	font-weight: 300;
  }
  
  @keyframes drop-down {
	from {
		transform: translateY(-20%);
		opacity: 0%;
	}
	to { 
		transform: translateY(0%);
		opacity: 100%;
	}
	
  }
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover  {background-color: rgba(0, 0, 0, 0.292); font-family: Aeonik-Light; font-size: 1;}
  .importantn:hover {
	
  }
  
  /* Show the dropdown menu on hover */
  
  .dropdown:hover .dropdown-content {display: block;  animation: drop-down  1s ; } 
  .dropdown:hover .importantn {
	font-size: 20px;
  }
  
  /* Change the background color of the dropdown button when the dropdown content is shown */
  .dropdown:hover .dropbtn {background-color: #ffffff00; }

  .career {
	color: white; 
  }

  .uil-bag-alt {
	font-family: Aeonik-light;
    color: white;
    color: white;
	
  
    transition: 300ms ease-in-out;

  }

.uil {

	font-size: 20px;
	background: -webkit-linear-gradient(30deg,rgb(65, 239, 255), rgb(255, 37, 240));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
  
.uil:hover {
}
  

@keyframes slide {
	from {
		transform: translateY(80%);
	}
	to {
		transform: translateY(0%);
	}
	
}

footer {
	width: calc(100%);
	height: 500px;
	box-shadow:rgb(40, 40, 40) 0px 0px 0px 2px;
	margin-left: auto;
	margin-right: auto;
	background-color: rgb(9, 9, 9);
	background-size: cover;
	background-repeat: no-repeat;
}

.footer-wrapper {
	width: calc(95% - 50px);
	margin-left: auto;
	margin-right: auto;
	display: flex;
}

.Lynxogo {
	width: 100%;
}

.logo-holder {
	width: 200px;
	height: 200px;
}
.navi-wrapper {
	margin-top: 30px;
	width: 80%;
	height: 250px;
	display: flex;
	margin-left: 100px;
	justify-content: space-evenly;

}

.navi-footer {
	width: 200px;
	height: 250px;
	
}

.footer-head {
	font-family: Aeonik;
	font-size: 17px;
	font-weight: 500;
	background: -webkit-linear-gradient(45deg,rgb(255, 111, 255), rgb(109, 228, 255));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.footer-nav {
	color: white;
	font-weight: 300;
	font-family: Aeonik-Light;
	font-size: 14px;
	font-style: normal;
	
	
}
.footer-nav2 {
	color: white;
	font-weight: 300;
	font-family: Aeonik-Light;
	font-size: 13px;
	font-style: normal;
	margin-left: 50px;
	text-decoration: none;
	
	
}

.nav-link-ft {
	font-style: normal;
	transition: 300ms ease;
	text-decoration: none;

}

.nav-link-ft:hover {
	margin-left: 10px;
	
}

a {
	text-decoration: none;
}
.opa3 {
	opacity: 9%;
	border-bottom: 1px solid rgb(255, 255, 255);
	border-top: 1px solid rgba(255, 0, 0, 0);

}

.wrappa3 {
	width: 85%;
	height: 20px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	align-items: center;
}

.social-media-wrap {
	width: 300px;
	height: 30px;
	margin-left: auto;
}

.social {
	border: 2px solid white;
	border-radius: 50px;
	padding: 10px 10px;
	transition: 300ms ease;
}

.btm-footer-nav {
	font-family: Aeonik-Reg;
	color: white;
   text-align: center;
   font-size: 13px;
}

/*  */.hover-underline-animation3 {
	display: inline-block;
	position: relative;
  }
  
  .hover-underline-animation3:after {
	content: '';
	position: absolute;
	width: 100%;
	transform: scaleX(0);
	height: 2px;
	bottom: 4;
	left: 0;
	background-image: linear-gradient(80deg, rgb(222, 59, 255),rgb(90, 214, 255));
	transform-origin: bottom right;
	transition: transform 0.25s ease-out;
  }
  
  .hover-underline-animation3:hover:after {
	transform: scaleX(1);
	transform-origin: bottom left;
  }

  .social-ico  {
	color: white;
	transition: 300ms ease;
  }

  .social:hover {
	background: -webkit-linear-gradient(45deg,rgb(255, 111, 255), rgb(109, 228, 255));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	box-shadow: rgb(255, 255, 255) 1px 1px 80px;
  }
