@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Calistoga&display=swap');
body {
	margin: 0;
	padding: 0;
	font-family: 'Poppins', sans-serif;
	background: linear-gradient(#0000008f,rgb(0, 0, 0)),url("../images/bg_1.gif");
	background-repeat: no-repeat;
	/* background-size: cover; */
	background-position: center center;
	background-attachment: fixed;
}
ul {
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
}
html {
  scroll-behavior: smooth;
}
.logo {
	text-align: center;
	margin: 30px 0px;
}
/*backround_start*/
canvas {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
 z-index: -1;
}

/*clock_start*/
.clock_section {
	height: 300px;
}
@keyframes animate{
	0%,100%{
		transform: translateY(10px);
	}
	50%{
		transform: translateY(-10px);
	}
}

.container{
	position:relative;
}

/*
.container::before{
	content:"";
	position:absolute;
	bottom:-150px;
	width:100%;
	height:60px;
	background:radial-gradient(rgba(0,0,0,0.2), transparent,transparent);
	border-radius:50%;
}
*/

.box {
	position: absolute;
	z-index: 1;
	width: 250px;
	height: 250px;
	backdrop-filter: blur(25px);
	border-radius: 50%;
	border: 1px solid rgba(51,51,51,0.5);
	animation: animate 5s ease-in-out infinite;
	animation-delay: -2.5s;
	left: 0;
	right: 0;
	margin: auto;
	top: 30px;
}
/*
.clock {
	position: absolute;
	top: 10px;
	left: 10px;
	right: 10px;
	bottom: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #333 url("../images/clock_img.png");
	background-size: cover;
	border-radius: 50%;
	backdrop-filter: blur(25px);
	border: 1px solid rgba(255,255,255,0.5);
	border-bottom: none;
	border-right: none;
	box-shadow: -10px -10px 20px rgba(255,255,255,0.1), 10px 10px 20px rgba(0,0,0,0.1), 0px 40px 50px rgba(0,0,0,0.2);
}
*/

.clock{
	position:absolute;
	top: 10px;
	left: 10px;
	right:10px;
	bottom:10px;
	display:flex;
	justify-content:center;
	align-items:center;
	background:radial-gradient(transparent,rgba(255,255,255,0.2)), url(https://i.imgur.com/4vCk1uy.png);
	background-size:cover;
	border-radius:50%;
	backdrop-filter:blur(25px);
	border:1px solid rgba(255,255,255,0.5);
	border-bottom:none;
	border-right:none;
	box-shadow:-10px -10px 20px rgba(255,255,255,0.1), 10px 10px 20px rgba(0,0,0,0.1), 0px 40px 50px rgba(0,0,0,0.2);
}

.clock::before{
	content:"";
	position:absolute;
	width:15px;
	height:15px;
	background:#fff;
	border-radius:50%;
	z-index:10000;
}

.hour,.min,.sec{
	position:absolute;
}

.hour, .hr{
	width:160px;
	height:160px;
}

.min, .mn{
	width:190px;
	height:190px;
}

.sec, .sc{
	width:230px;
	height:230px;
}

.hr,.mn,.sc{
	display:flex;
	justify-content:center;
/* 	align-items:center; */
	position:absolute;
	border-radius:50%;
}

.hr::before {
	content: "";
	position: absolute;
	width: 8px;
	height: 80px;
	background: #ff9224;
	z-index: 11;
	border-radius: 6px;
}
.mn::before{
	content:"";
	position:absolute;
	width:4px;
	height:90px;
	background:#fff;
	z-index:12;
	border-radius:6px;
}

.sc::before{
	content:"";
	position:absolute;
	width:2px;
	height:150px;
	background:#fff;
	z-index:12;
	border-radius:6px;
}
/*clock_end*/
/*title_section_start*/
.demos_section {
	margin-top: 30px;
}
.boxs {
	background: #fff;
	padding: 5px;
	margin: 15px 0px;
}
.demo_text a {
	text-align: center;
	font-size: 16px;
	color: #000;
	font-weight: 500;
	display: inline-block;
	background: #fff;
	padding: 7px 10px;
	/* border-radius: 30px; */
	transition: all 0.8s ease;
}
.do_you_title {
	text-align: center;
	font-size: 40px;
	font-weight: 600;
	letter-spacing: 0.50px;
	text-transform: uppercase;
	margin-bottom: 10px;
	color: #fff;
	font-family: 'Calistoga', cursive;
}
/*text_start*/
    .char{
            font-size: 40px;
            height: 40px;
            animation: an 1s ease-out 1 both;
            display: inline-block;
        }

 @keyframes an{
    from{
                opacity: 0;
                transform: perspective(500px) translate3d(-35px, -40px, -150px) rotate3d(1, -1, 0, 35deg);
            }
            to{
                opacity: 1;
                transform: perspective(500px) translate3d(0, 0, 0);
            }
        }
/*text_end*/
.main_section p {
	color: #fff;
	text-align: center;
	font-size: 18px;
	letter-spacing: 1px;
	text-transform: capitalize;
}

.demos_inner::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0,0,0,0.6);
	z-index: 0;
	opacity: 0;
	transition: all 0.8s ease;
	border: 5px solid #fff;
}
.demo_text {
	position: absolute;
	top: 50%;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	text-align: center;
	z-index: 1;
	opacity: 0;
	transition: all 0.8s ease;
}
.demos_inner:hover .demo_text,.demos_inner:hover::after{
	opacity: 1;
}
.demo_text a:hover {
	background: #0077d2;
	color: #fff;
}
.demos_inner {
	position: relative;
}
/*title-section_end*/
#footer {
	text-align: center;
	padding: 20px 0px;
	position: relative;
	margin-top: 50px;
}
.copyright {
	color: #aca3a3;
	font-size: 15px;
	letter-spacing: 0.50px;
	line-height: 35px;
	text-transform: capitalize;;
}
.copyright a:hover {
	color: #0077d2;
}
.copyright a {
	color: #fff;
	transition: all 0.8s ease;
}
#footer::after {
	content: '';
	position: absolute;
	height: 2px;
	width: 80%;
	left: 0;
	right: 0;
	background: #aca3a3;
	top: 0;
	margin: auto;
}
@media screen and (max-width:400px){

.do_you_title {
	font-size: 30px;
}
.copyright a {
	font-size: 12px;
}
}