@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Roboto:wght@100&display=swap');
*
{
	box-sizing: border-box;
	margin: 0;
	font-family: 'Roboto';
	scroll-behavior: smooth;
}
body
{
	background: #000;
}
::-webkit-scrollbar 
{
  width: 10px;
}

::-webkit-scrollbar-track 
{
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
 
::-webkit-scrollbar-thumb 
{
  background: #fff; 
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover 
{
  background: #757272; 
}
body.light::-webkit-scrollbar-thumb
{
	background: #000;
}
.logo
{
	top: 0;
	left: 0;
	padding: 30px;
	display: inline-block;
	cursor: pointer;	
	transition: 0.5s;
}
.logo:hover
{
opacity: 0.7;
}
body.light .logo 
{
	filter: invert(1);
}
.darkmode
{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.darkmode label 
{
	width: 100px;
	height: 40px;
	position: relative;
	display: block;
	background: #242424;
	border-radius: 200px;
	box-shadow: inset 0px 5px 15px rgba(0,0,0,0.4), inset 0px -5px 15px rgba(255,255,255,0.4);
	cursor: pointer;
	transition: 0.3s;
}
.darkmode label:after 
{
	content: "";
	width: 20px;
	height: 20px;
	position: absolute;
	top: 10px;
	left: 10px;
	background: linear-gradient(180deg,#ebebeb,#fff);
	border-radius: 20px;
	box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
	transition: 0.3s;
}
.darkmode label.active:before
{
	background: #000;
}
body.light
{
   background: #fff;
}
.darkmode input 
{
  width: 0;
  height: 0;
  visibility: hidden;
}
.darkmode input:checked + label 
{
  background: #fff;
}
.darkmode input:checked + label:after 
{
  left: 90px;
  transform: translateX(-100%);
  background: linear-gradient(180deg,#777,#3a3a3a);
}
.darkmode label:active:after
{ 
  width: 60px; 
}
.toggle
{
	position: fixed;
	top: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	background: url(menu.png);
	background-size: 30px;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 10px;
	cursor: pointer;
	z-index: 1000;
}
body.light .toggle
{
	filter: invert(1);
}

.toggle.active
{
	background: url(close.png);
	background-size: 25px;
	background-position: center;
	background-repeat: no-repeat;
}
.sidebar
{
	position: absolute;
	top: 0;
	right: 0;
	width: calc(100% - 500px);
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 100px;
	width: 50%;
}
.sidebar
{
	position: fixed;
	width: 100%;
	background: #ffffff10;
	backdrop-filter: blur(25px);
	-webkit-backdrop-filter:blur(25px);
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.5s;
	padding: 40px;
	z-index: 100;
	right: -100%;
}
.sidebar.active
{
	right: 0;
}
.sidebar ul 
{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.sidebar ul li 
{
	list-style: none;
}
.sidebar ul li a 
{
	color: #fbfbfb;
	text-decoration: none;
	font-size: 2em;
	margin: 10px 0;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
}
body.light .sidebar ul li a 
{
	color: #000;
}
.sidebar ul li a:hover
{
	color: #fff;
	filter: drop-shadow(0px 2px 2px #FFFFFF);
	transition: 0.5s;
}
body.light .sidebar ul li a:hover
{
	color: #000;
	filter: drop-shadow(0px 2px 2px #000);
	transition: 0.5s;
}
.watch 
{
	text-align: center;
	margin: auto;
	width: 100%;
	margin: 1rem auto;
	padding: 1rem rem;
}
.time 
{
	font-size: 7rem;
	font-weight: 800;
	color: #fff;
	-webkit-box-reflect:
	below 0
	-webkit-gradient( linear, left top, left bottom, from(transparent),
	color-stop(10%, transparent), to( rgba(255, 255, 255, 0.3)  ));
}
body.light .time 
{
	color: #000;
}
.text 
{
	margin-bottom: 4rem;
	color: #757272;
	font-weight: 700;
}
.controls
{
	margin: 10rem auto;
}
.controls button
{
	appearance: none;
	background: none;
	border: none;
	outline: none;
	user-select: none;
	cursor: pointer;
	color: #fff;
	font-size: 1.125rem;
	font-weight: 500;
	width: 150px;
	height: 50px;
	margin: 1rem;
	background-color: #000;
	padding: 0.5rem 1rem;
	border: 1px solid #FFFFFF;
	filter: drop-shadow(0px 2px 2px #FFFFFF);
	border-radius: 20px;
	transition: 0.4s;
}
body.light .controls button
{
	background: #fff;
	color: #000;
	border: 1px solid #242424;
	filter: drop-shadow(0px 2px 2px #808080);
}
.controls button:hover
{
	opacity: 0.7;
}

body.light .textbox .textarea
{
  background-color: #fff;
  filter: drop-shadow(0px 2px 2px #000);
  color: #1c1c1c;
}
body.light .textbox h1
{
	color: #000;
}
header h1 
{
	color: #fff;
	font-weight: 500;
}
body.light header h1 
{
	color: #000;
}
header, 
form 
{
    min-height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
form input, 
form button 
{
    padding: 0.5rem;
    padding-left: 1rem;
    font-size: 0.9rem;
    border: 1px solid #fff;
    color: #fff;
    filter: drop-shadow(0px 2px 2px #FFFFFF);
    background: #000;
    border-radius: 20px;
}
body.light
form input, 
form button
{
	border: 1px solid #242424;
    color: #000;
    filter: drop-shadow(0px 2px 2px #808080);
    background: #fff;
}
form button 
{
    color: #000;
    background: #fff;
    cursor: pointer;
    transition: all 0.5s ease;
    margin-left: 0.5rem;
}
body.light form button
{
	background: #000;
	color: #fff;
}
form button:hover 
{
    opacity: 0.7;
}

.fa-plus-circle 
{
	padding: 5px;
    margin-left: -8px;
}

.todo-container 
{
    display: flex;
    justify-content: center;
    align-items: center;
}

.todo-list 
{

    min-width: 20%;
    list-style: none;
    padding-left: 0;
}

.todo 
{
    margin: 0.5rem;
    padding-left: 0.5rem;
    background: #000;
    border: 1px solid #fff;
    color: #fff;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.5s;
    border-radius: 2rem;
}

body.light .todo
{
	background: #fff;
	color: #000;
    border: 1px solid #242424;
}
.todo li 
{
    flex: 1;
}

.trash-btn, 
.complete-btn 
{
    color: #fff;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.2rem;
}

.complete-btn 
{
    background: #000;
}
body.light .complete-btn 
{
	background: #fff;
	color: #000;
}
.trash-btn 
{
    border-top-right-radius: 1.75rem;
    border-bottom-right-radius: 1.75rem;
    background: #000;
}
body.light .trash-btn 
{
	background: #fff;
	color: #000;
}
.todo-item 
{
    padding: 0rem 0.5rem;
}

.fa-trash, 
.fa-check-circle 
{
    pointer-events: none;
}

.completed 
{
    text-decoration: line-through;
    opacity: 0.5;
}

.slide 
{
    transform: translateX(10rem);
    opacity: 0;
}

select 
{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    border: none;
}

.select 
{
    margin: 1rem;
    position: relative;
    overflow: hidden;
    border-radius: 50px;
}
select 
{
    color: #000;
    background: #fff;
    width: 10rem;
    height: 3.2rem;
    cursor: pointer;
    font-weight: 800;
    padding: 1rem;
}
body.light select
{
		color: #fff;
    background: #000;
}
body.light .select::after
{
	color: #fff;
}
.select::after 
{
    content: "\25BC";
    position: absolute;
    top: 0;
    right: 0;
    padding: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
}
option
{
	background: #000;
	color: #fff;
}
option:checked
{
		color: #808080;
}
body.light option
{
	background: #fff;
	color: #000;
}
.head2 h1
{
	padding-top: 10rem;
	padding-bottom: 2rem;
	display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
	font-weight: 500;
}
.note
{
	min-width: 50%;
	display: flex;
    justify-content: center;
    align-items: center;
}

.textarea {

  background-color: #000;
  filter: drop-shadow(0px 2px 2px #FFFFFF);
  color: #c0c0c0;
  padding: 1em;
  border-radius: 15px;
  border: 1px solid transparent;
  outline: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  width: 40rem;
  height: 20rem;
  transition: all 0.2s;
  resize: none;

}

.textarea:hover {
  cursor: pointer;
  border: 1px solid #242424;
}

.textarea:focus {
  cursor: text;
  color: #fff;
  border: none;

}
.iframe
{
	padding: 10rem 0 10rem 0;
	text-align: center;
	align-items: center;
	justify-content: center;
}
.iframe h1 
{
	color: #fff;
	font-weight: 500;
	padding-bottom: 2rem;
}
body.light .iframe h1 
{
	color: #000;
}
.iframe .one 
{
	padding-bottom: 4rem;
}
.iframe .one iframe
{
	width: 50rem;
	height: 30rem;
}
.iframe .three
{
	margin: 0 5rem 0 5rem;
}


main .slider
{
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	min-height: 60vh;
}
.title
{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.title h2
{
	position: relative;
	color: #fff;
	font-size: 1.8em;
	font-weight: 700;
	letter-spacing: 1px;
}
.title p 
{
	max-width: 700px;
	display: inline-block;
}
.title a 
{
	text-decoration: none;
	color: #808080;
}
.swiper 
{
      width: 100%;
      padding-top: 50px;
      padding-bottom: 200px;
    }

    .swiper-slide 
    {
      background-position: center;
      background-size: cover;
      width: 300px;
      height: 300px;
      -webkit-box-reflect: below 1px linear-gradient(transparent,transparent,#0006);
    }

    .swiper-slide img 
    {
      display: block;
      width: 100%;
    }



section .boxs 
{
	display: flex;
	justify-content: center;
	align-items: center;
}
.container 
{
	padding-top: 10rem;
	min-height: 80vh;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 80px;
}
.card2
{
	position: relative;
	width: 350px;
	height: 180px;
	background: #808080;
	transition: 1s;
	border-radius: 25px;
}
.card2:hover
{
	height: 450px;
}
.card2 .lines 
{
	position: absolute;
	inset: 0;
	background: #808080;
	overflow: hidden;
	border-radius: 25px;
}
body.light .card2 .lines 
{
	background: #808080;
}
.card2 .lines::before
{
	content:'';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 600px;
	height: 120px;
	background: linear-gradient(transparent,#000000,#434343,transparent);
	animation: animate 4s linear infinite;
	animation-play-state: paused;
}
	
.card2:hover .lines::before
{
	animation-play-state: running;
}
@keyframes animate
{
	0%{
		transform: translate(-50%,-50%) rotate(0deg);
	}
	100%{
		transform: translate(-50%,-50%) rotate(360deg);
	}
}
.card2 .lines::after 
{
	content: '';
	position: absolute;
	inset: 3px;
	background: #000;
	border-radius: 25px;
}
body.light .card2 .lines::after 
{
	background: #fff;
}
.card2 .imgBx
{
	position: absolute;
	top: -60px;
	left: 50%;
	width: 150px;
	height: 150px;
	transform: translate(-50%);
	background: #808080;
	transition: 0.5s;
	z-index: 10;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 25px;
}
body.light .card2 .imgBx
{
	background: #808080;
}
.card2:hover .imgBx
{
	top: 25px;
	width: 200px;
	height: 200px;
}
.card2 .imgBx::before
{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 500px;
	height: 150px;
	transform: translate(-50%,-50%);
	background: linear-gradient(transparent,#000000,#434343,transparent);
	animation: animate2 6s linear infinite;
	animation-play-state: paused;
}

.card2:hover .imgBx::before
{
	animation-play-state: running;
}
@keyframes animate2
{
	0%
	{
		transform: translate(-50%,-50%) rotate(360deg);
	}
	100%
	{
		transform: translate(-50%,-50%) rotate(0deg);
	}
}
.card2 .imgBx::after 
{
	content: '';
	position: absolute;
	inset: 3px;
	background: #000;
	border-radius: 25px;
}
body.light .card2 .imgBx::after 
{
	background: #fff;
}
.card2 .imgBx img 
{
	position: absolute;
	width: 100px;
	z-index: 1;
	filter: invert(1);
	opacity: 0.5;
	transition: 0.5s;
}
body.light .card2 .imgBx img 
{
	filter: invert(0);
}
.card2:hover .imgBx img 
{
	opacity: 1;
}
.card2 .content
{
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	overflow: hidden;
}
.card2 .content .details
{
	padding: 30px 20px;
	text-align: center;
	width: 100%;
	transition: 0.5s;
	transform: translateY(145px);
}
.card2:hover .content .details
{
	transform: translateY(0px);
}
.card2 .content .details h2 
{
	font-size: 1.5em;
	font-weight: 1500;
	color: #fff;
	line-height: 1.2em;
	
}
body.light .card2 .content .details h2 
{
	color: #000;
}
.card2 .content .details p 
{
	color: #fff;
	opacity: 0;
	transition: 0.5s;
	padding: 1rem 0 1rem 0;
}
body.light .card2 .content .details p 
{
	color: #000;
}
.card2 .content .details a 
{
	display: inline-block;
	padding: 8px 15px;
	background: #fff;
	border-radius: 15px;
	color: #000;
	margin-top: 10px;
	font-weight: 1500;
	text-decoration: none;
	opacity: 0;
	transition: 0.5s;
}
body.light .card2 .content .details a
{
	background: #000;
	color: #fff;
}
.card2:hover .content .details p,
.card2:hover .content .details a 
{
	opacity: 1;
} 

.footer
{
	position: relative;
	width: 100%;
	height: 40vh;
	overflow: hidden;
}
.footer .Logo
{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 3rem;
}
.footer .Logo img 
{
	width: 25rem;
	height: auto;
}
body.light .footer .Logo img 
{
	filter: invert(1);
}
.footer .wave
{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100px;
	background: url(wave.png);
	background-size: 1000px 100px;
}
.footer .wave.wave1
{
	z-index: 1000;
	opacity: 1;
	animation-delay: 0s;
	bottom: 0;
}
body.light .footer .wave.wave1
{
	filter: invert(1);
}
@media only screen and (min-width: 800px) {
  :root {
    --card-width: 250px;
    --card-height: 400px;
  }
}
@media(max-width: 1400px)
{
	.iframe .one iframe
	{
		width: 35rem;
		height: 15rem;
	}
}

@media(max-width: 770px)
{
	.iframe .three
	{
		margin: 0 0 0 0;
	}
	.textbox .textarea
	{
		width: 20rem;
		height: 15rem;
	}
}
@media(max-width: 565px)
{
	.iframe .one iframe
	{
		width: 20rem;
		height: 10rem;
	}
	.sidebar ul li
	{
		padding: 0.5rem 0 0.5rem 0;
	}
	.sidebar ul li a 
	{
		font-size: 1rem;
	}
	:root {
    --card-width: 150px;
    --card-height: 300px;
  }
}
@media(max-width: 540px)
{
	.sidebar ul
	{
		margin-right: 4vh;
	}
	.time 
	{
		font-size: 5rem;
	}
	form input, 
	form button 
 	{
		margin-left: 15px;
 	}
	.todo-list 
	{
		width: 100%;
	}
	
	header, 
	form
	{
		padding-left: 0;
	}
	.todo-container 
	{
		padding-left: 0;
	}
	.textbox .textarea
	{
		width: 20rem;
		height: 20rem;
	}
	.footer .Logo img 
	{
		width: 15rem;
	}
}