@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&family=Teko:wght@300;400;500;600;700&display=swap");

* {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

body {
  font-family: "Poppins", sans-serif;
  background: rgb(50, 50, 90);
  min-height: 100vh;
}

@-webkit-keyframes colorchange {
  0% {
    color: #ff00d4;
  }
  25% {
    color: #e6ebef;
  }
  50% {
    color: #e38347;
  }
  75% {
    color: #0bff2c;
  }
  100% {
    color: #d0e2bc;
  }
}
@keyframes colorchange {
  0% {
    color: #ff00d4;
  }
  25% {
    color: #e6ebef;
  }
  50% {
    color: #e38347;
  }
  75% {
    color: #0bff2c;
  }
  100% {
    color: #d0e2bc;
  }
}

.card img {
  height: 500px;
}

hr {
  height: 3px;
  background: #ffe102;
  border: none;
  width: 100%;
}

hr.hr1 {
  height: 2px;
  background-color: #f7a400;
  width: 45%;
  border: none;
}

hr.hr2 {
  height: 2px;
  background: #3ffd00d3;
  border: none;
  width: 55%;
  transition: all 0.5s cubic-bezier(0.39, 0.575, 0.565, 1);
}

footer {
  height: auto;
  width: 100%;
  padding-top: 40px;
  color: #e6ebef;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-content h3 {
  font-size: 1.8em;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 3rem;
}

.footer-content p {
  max-width: 500px;
  margin: 10px auto;
  line-height: 28px;
  font-size: 14px;
}

.footer-center {
  width: 100%;
  margin: 3px;
  text-align: center;
}

.footer-bottom {
  width: 100%;
  padding: 20px 0;
  text-align: center;
}

.footer-center p {
  font-size: 14px;
  word-spacing: 2px;
  text-transform: capitalize;
}

.footer-bottom p {
  font-size: 14px;
  word-spacing: 2px;
  text-transform: capitalize;
}

.footer-center a span {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom a span {
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: underline;
  color: #e6ebef;
}

.footer-bottom a span:hover {
  transition: all ease 0.3s;
  opacity: 1;
  color: #da22ff;
  text-decoration: underline;
  font-style: oblique;
}

.footer-center a span:hover {
  transition: all ease-in-out 0.3s;
  color: #f7a400;
  text-decoration: underline;
  font-style: oblique;
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(50, 50, 90);
  z-index: 40000;
  display: grid;
  place-items: center;
  transition: all 1s ease-in-out;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: all;
}

.loader {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  border: 7px solid rgb(126, 94, 6);
  border-bottom-color: #00ff00;
  animation: load 0.75s infinite;
}

@keyframes load {
  to {
    transform: rotate(360deg);
  }
}

.doraemon-hindi,
.shinchan-hindi {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.d-btn {
  background-image: linear-gradient(
    to right,
    #ff522fcf 0%,
    #f09619d7 51%,
    #ff522fd3 100%
  );
  margin: 50px;
  padding: 15px 45px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 100% auto;
  color: white;
  box-shadow: 0 0 35px #eeeeee;
  border-radius: 50px;
  width: auto;
  display: block;
  position: relative;
  left: 0px;
  right: 10px;
}

.d-btn:hover {
  background-position: right center; /* change the direction of the change here */
  color: #fff;
  text-decoration: underline;
  box-shadow: 0 0 15px #000000;
}

.btnScrollToTop {
  position: fixed;
  right: 30px;
  width: 60px;
  bottom: 30px;
  height: 60px;
  font-size: larger;
  border-radius: 50%;
  background: rgb(253, 95, 95);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  border: none;
  color: #000000;
  /* display: flex; */
  outline: none;
  /* display: none; */
  cursor: pointer;
  /* pointer-events: none; */
  transition: all 0.4s;
  opacity: 0;
}

.btnScrollToTop.active {
  pointer-events: auto;
  opacity: 1;
  bottom: 60px;
  border: none;
}

#btnBack {
  position: fixed;
  left: 30px;
  top: 30px;
  width: 150px;
  height: 50px;
  font-size: larger;
  border-radius: 4%;
  background: rgb(125, 125, 249);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  border: none;
  color: #000000;
  outline: none;
  cursor: pointer;

}

#btnScrollToTop:active {
  background: rgb(245, 73, 73);
}

#btnBack:active {
  background: rgb(95, 95, 255);
}

@media screen and (max-width: 1310px) {
  .btnScrollToTop {
    display: none;
  }

  .header-box {
    visibility: hidden;
  }

  .header-box1 h1 {
    visibility: visible;
    display: contents;
  }
}

@media screen and (max-width: 1450px) {
  #btnBack {
    display: none;
  }
}

@media screen and (max-width: 550px) {
  .popup {
    width: 100%;
    padding: 10px 15px 17px;
  }
}

.popup {
  position: absolute;
  left: 50%;
  top: -25%;
  visibility: hidden;
  background: #e6ebef;
  width: 490px;
  border-radius: 5px;
  padding: 13px 17px 20px;
  display: flex;
  border-top: 4px solid #ea4d67;
  transform: translateX(-50%);
  box-shadow: 0 10px 25px rgba(52, 87, 220, 0.1);
  transition: all 0.25s ease;
}

.popup.show {
  top: 0;
  visibility: visible;
}

.popup.online {
  border-color: #00ff00;
}

.popup.online .icon i {
  background: #00ff00;
}

.popup .icon i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ea4d67;
  color: #fff;
  font-size: 1.2rem;
  margin-right: 15px;
}

.popup .title {
  font-size: 1.2rem;
}

.popup .desc {
  color: darkolivegreen;
  margin: 3px 0 10px;
  font-size: 1.04rem;
}

.popup .reconnect {
  border: none;
  outline: none;
  color: #fff;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 13px;
  border-radius: 4px;
  background: rgb(67, 116, 239);
}

.popup.online .reconnect {
  background: #bfbfbf;
  pointer-events: none;
}

.header h1 {
  color: #6aff00;
  text-align: center;
  letter-spacing: 1px;
  animation: colorchange 1.5s infinite;
}
