@font-face {
    font-family: Bold;
    src: url(Font/Bold.ttf);
}
@font-face {
    font-family: ExtraBold;
    src: url(Font/ExtraBold.ttf);
}
@font-face {
    font-family: Regular;
    src: url(Font/Regular.ttf);
}
@font-face {
    font-family: Thin;
    src: url(Font/Regular.ttf);
}

.loader2 {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	cursor: not-allowed;
	scale: 0.7;
  }
  
  .central {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 10em;
	height: 10em;
	border-radius: 50%;
	box-shadow: 0.5em 1em 1em #011640,
	  -0.5em 0.5em 1em white,
	  0.5em -0.5em 1em #011640,
	  -0.5em -0.5em 1em white;
  }
  
  .external-shadow {
	width: 10em;
	height: 10em;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	box-shadow: 0.5em 0.5em 3em blue,
	  -0.5em 0.5em 3em #011640,
	  0.5em -0.5em 3em white,
	  -0.5em -0.5em 3em #011640;
	z-index: 999;
	animation: rotate 3s linear infinite;
	background-color: #011640;
  }
  
  .intern {
	position: absolute;
	color: white;
	z-index: 9999;
  }
  
  .intern::before {
	content: "100%";
	animation: percent 2s ease-in-out infinite;
  }
  
  @keyframes rotate {
	0% {
	  transform: rotate(0deg);
	}
  
	50% {
	  transform: rotate(180deg);
	}
  
	100% {
	  transform: rotate(360deg);
	}
  }
  
  @keyframes percent {
	0% {
	  content: 'Generating';
	}
  
	50% {
	  content: 'Your';
	}
  
	100% {
	  content: 'Course';
	}
  }

li {
	font-family: Regular;
	color: white;
}
.code {
	background-color: black;
	font-family: monospace;
	color: white;
	text-align: left;
	border-radius: 20px;
	padding: 15px;
	width: 94%;
}
h1 {
    font-family: Bold;
    color: white;
}

p {
    font-family: Regular;
    color: white;

}

* {
	box-sizing: border-box;
}
body {
	font-family: bold;
	line-height: 1.6;
	margin: 0;
	min-height: 100vh;
	background-color: #011640;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h2,
h3,
a {
	color: white;
	font-family: bold;
	transition: transform 250ms; 
}

a {
	text-decoration: none;
}

.logo {
	margin: 0;
	font-size: 1.45em;
}

.CoursesBTN {
	display: none;
}

.main-nav {
	margin-top: 5px;

}
.logo a,
.main-nav a {
	padding: 10px 15px;
	text-transform: uppercase;
	text-align: center;
	display: block;
}

.main-nav a {
	color: white;
	font-size: .99em;
	transition: transform 250ms; 
}

.main-nav a:hover {
	color: #718daa;
	transform: translateY(-4px);
}



.header {
	padding-top: .5em;
	padding-bottom: .5em;
    background-color: #011640;
	-webkit-box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.75);
	box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.75);
}

@media (min-width: 769px) {
	.header,
	.main-nav {
		display: flex;
	}
	.header {
		flex-direction: column;
		align-items: center;
    	.header{
		width: 80%;
		margin: 0 auto;
		max-width: 1150px;
	}
	}

}

@media (min-width: 1025px) {
	.header {
		flex-direction: row;
		justify-content: space-between;
	}

}

input[type=text] {
	border-radius: 50px;
	border: #00000000;
	font-family: bold;
	font-size: 1.5vw;
	color: white;
	padding: 15px 40px;
	box-shadow: 15px 7px 15px 3px rgba(0,0,0,.8);
	background-color: #011640;
}

.Account {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.Account input[type=email] {
	border-radius: 15px;
	border: white;
	font-family: bold;
	font-size: 1.5vw;
	color: white;
	padding: 15px 40px;
	box-shadow: 15px 7px 15px 3px rgba(0,0,0,.8);
	background-color: #011640;
}

.Account button {
	border-radius: 15px;
	border: #00000000;
	font-family: bold;
	padding: 15px, 40px;
	font-size: 1.5vw;
	box-shadow: 15px 7px 15px 3px rgba(0,0,0,.8);
	background-color: #011640;
	color: white;
	transition: 250ms;
}
.Account button:hover {
	transform: scale(1.1);
	background-color: white;
	color: #011640;
}

.Account .Google {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px; /* space between logo and text */
}
.Account .bigText {
	font-size: 4vw;
}

.Account .Google img {
	width: 24px; /* consistent size */
	height: auto;
}


.code textarea {
	border-radius: 50px;
	border: #00000000;
	font-family: monospace;
	font-size: 1.5vw;
	color: white;
	padding: 15px 40px;
	box-shadow: 15px 7px 15px 3px rgba(0,0,0,.8);
	background-color: #000000;
}

textarea {
	border-radius: 50px;
	border: #00000000;
	font-family: bold;
	font-size: 1.5vw;
	color: white;
	padding: 15px 40px;
	box-shadow: 15px 7px 15px 3px rgba(0,0,0,.8);
	background-color: #011640;
}


.background-image {
    height: 100vh;
    width: 100vw;
    object-fit: cover;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}

button {
	border-radius: 50px;
	border: #00000000;
	font-family: bold;
	padding: 15px;
	font-size: 1.5vw;
	box-shadow: 15px 7px 15px 3px rgba(0,0,0,.8);
	background-color: #011640;
	color: white;
	transition: 250ms; 
}
button:hover {
	transform: scale(1.1);
	background-color: white;
	color: #011640;
}

.bigText {
	font-size: 8vw;
}
h2 {
	color: white;
}

.card {
	width: 90%;
	padding: 15px;
	background-color: #011640;
	border-radius: 20px;
	background-color: rgba(0, 0, 0, 0.61);
	backdrop-filter: blur(15px);
	-webkit-box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.75);
	box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.75);  
}

.card2 {
	width: 90%;
	padding: 15px;
	background-color: #011640;
	border-radius: 20px;
	background-color: rgba(0, 0, 0, 0.61);
	backdrop-filter: blur(15px);
	-webkit-box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.75);
	box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.75);  
}

.card2 p, h2, li {
	text-align: left;
}

.card2 h2 {
	text-align: center;
}

.card3 {
    width: 100%;
    min-height: 100vh; /* Ensures it takes full screen height */
    overflow: auto; /* Enables scrolling */
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.61);
    backdrop-filter: blur(15px);
    box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.75);
}


.card4 {
	z-index: 999999;
    width: 100vw;
    min-height: 100vh;
	position: fixed; /* Ensures it takes full screen height */
    overflow: auto; /* Enables scrolling */
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.61);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.75);
}

.card5 {
	z-index: 999999;
    width: 75vh;
    min-height: 75vh;
	position: fixed; /* Ensures it takes full screen height */
    overflow: auto; /* Enables scrolling */
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.61);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.75);
}



.card3 .sidenav {
  	width: 160px; /* Set the width of the sidebar */
  	position: fixed; /* Fixed Sidebar (stay in place on scroll) */
  	z-index: 1; /* Stay on top */
  	top: 0; /* Stay at the top */
  	left: 0;
  	background-color: #011640;
  	overflow-x: hidden; /* Disable horizontal scroll */
  	padding-top: 20px;
	padding-bottom: 20px;
	border-radius: 20px;

}

.card3 .sidenav a {
		padding: 6px 8px 6px 16px;
		text-decoration: none;
		font-size: 25px;
		color: #818181;
		display: block;
}

.card3 .sidenav a:hover {
	color: #f1f1f1;
}

.card3 .main {
	margin-left: 160px; /* Same as the width of the sidebar */
	padding: 0px 10px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 35px;
    height: 0;
    overflow: hidden;
}


.video-container iframe {
    position: absolute;
    top:0;
    left: 0;
    width: 90%;
    height: 90%;
	position: center;
	align-self: center;
	align-items: center;
}


img {
	border-radius: 20px;
}

#loading {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	text-align: center;
	background-color: #011640;
	z-index: 99;
	display: flex;
    justify-content: center;
    align-items: center; 
	transition: 0.5s;
    opacity: 1;    
}
#loading.faded-out {
	opacity: 0;
}

#loading-image {
	max-width: 100%;
	height: auto;
	animation: breathing;
	animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear; 
}

@keyframes breathing {
	0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
	
}

iframe {
    border-radius: 50px;
}

/* HTML: <div class="loader"></div> */
.loader {
	width: 50px;
	aspect-ratio: 1;
	display: grid;
	border-radius: 50%;
	background:
	linear-gradient(0deg ,rgb(0 0 0/50%) 30%,#0000 0 70%,rgb(0 0 0/100%) 0) 50%/8% 100%,
	linear-gradient(90deg,rgb(0 0 0/25%) 30%,#0000 0 70%,rgb(0 0 0/75% ) 0) 50%/100% 8%;
	background-repeat: no-repeat;
	animation: l23 1s infinite steps(12);
}
.loader::before,
.loader::after {
	content: "";
	grid-area: 1/1;
	border-radius: 50%;
	background: inherit;
	opacity: 0.915;
	transform: rotate(30deg);
}
.loader::after {
	opacity: 0.83;
	transform: rotate(60deg);
}
@keyframes l23 {
	100% {transform: rotate(1turn)}
}
.bold {
	font-weight: bold;
	font-family: Bold;
}

.hamburger {
    display: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: white;
}

/* Dropdown Button */
.dropbtn {
	color: white;
	padding: 16px;
	font-size: 16px;
	border: none;
  }
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
	position: relative;
	display: inline-block;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
	display: none;
	position: absolute;
	background-color: #011640;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
	border-radius: 23px;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
	color: white;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {background-color: #ddd; color: #011640;}
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {display: block;}
  
@media only screen and (max-width: 768px) {

	.Account {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	
	.Account input[type=email] {
		border-radius: 15px;
		border: white;
		font-family: bold;
		font-size: 4vw;
		color: white;
		padding: 15px 40px;
		box-shadow: 15px 7px 15px 3px rgba(0,0,0,.8);
		background-color: #011640;
	}
	
	.Account button {
		border-radius: 15px;
		border: white;
		font-family: bold;
		padding: 15px;
		font-size: 4vw;
		box-shadow: 15px 7px 15px 3px rgba(0,0,0,.8);
		background-color: #011640;
		color: white;
		transition: 250ms; 
	}

	.Account button:hover {
		transform: scale(1.1);
		background-color: white;
		color: #011640;
	}

	.Account .bigText {
		font-size: 8vw;
	}	

		
    .main-nav {
        position: fixed;
        left: -100%;
        top: 5rem;
        flex-direction: column;
		background-color: rgba(0, 0, 0, 0.61);
		backdrop-filter: blur(15px);
		-webkit-box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.75);
		-moz-box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.75);
		box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.75); 
		z-index: 999999;
        width: 100%;
		height: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow:
            0 10px 27px rgba(0, 0, 0, 0.05);
    }

    .main-nav.active {
        left: 0;
    }

    li {
        margin: 2.5rem 0;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

	.CoursesBTN {
		display: flex;
	}	

	.card3 .main {
		margin-left: 0px; /* Same as the width of the sidebar */
	}

	.sidenav {
		display: none;
	}

	.logo{
		font-size: 1.45em;
		width: 25%;
		display: flex;
		justify-content: center;
		margin: auto;
	}

	input[type=text] {
		border-radius: 50px;
		border: #00000000;
		font-family: bold;
		font-size: 4vw;
		color: white;
		padding: 6px 6px;
		box-shadow: 15px 7px 15px 3px rgba(0,0,0,.8);
		background-color: #011640;
	}

	.code textarea {
		border-radius: 50px;
		border: #00000000;
		font-family: monospace;
		font-size: 4vw;
		color: white;
		padding: 15px 40px;
		box-shadow: 15px 7px 15px 3px rgba(0,0,0,.8);
		background-color: #000000;
	}
	
	textarea {
		border-radius: 50px;
		border: #00000000;
		font-family: bold;
		font-size: 4vw;
		color: white;
		padding: 15px 40px;
		box-shadow: 15px 7px 15px 3px rgba(0,0,0,.8);
		background-color: #011640;
	}
	
	

	button {
		border-radius: 50px;
		border: #00000000;
		font-family: bold;
		padding: 6px;
		font-size: 4vw;
		box-shadow: 15px 7px 15px 3px rgba(0,0,0,.8);
		background-color: #011640;
		color: white;
		transition: 250ms; 
	}

	.bigText {
		font-size: 13vw;
	}

	h1 {
		font-family: Bold;
		color: white;
		font-size: 5vw;
	}
    
    .card {
	   width: 100%;
	   padding: 15px;
	   background-color: #011640;
	   border-radius: 20px;
	   background-color: rgba(0, 0, 0, 0.61);
	   backdrop-filter: blur(15px);
	   -webkit-box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.75);
	   -moz-box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.75);
	   box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.75);  
   
     }

    .card2 {
	   width: 100%;
	   padding: 15px;
	   background-color: #011640;
	   background-color: rgba(0, 0, 0, 0.61);
	   backdrop-filter: blur(15px);
	   -webkit-box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.75);
	   -moz-box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.75);
	   box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.75);  
    }
	
	.card3 .sidenav {
		padding-top: 15px;
	}

	.card3 .sidenav a {
		font-size: 18px;
	}
    
    p{
       font-size: 4vw;
    }
	
	

}