@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");
* {
  font-family: "Poppins", sans-serif !important;
}

a#mode {
  display: none;
}
.home-1 span.ring1 img,
.home-1 span.ring2 img,
.home-1 span.ring3 img,
.home-1 span.ring5 img,
.home-1 span.ring4 img,
.home-1 span.ring6 img {
  border: 2px solid #00a611 !important;
}
.bg-light {
  background-color: #00c76036 !important;
}
.bg-light-2 {
  background-color: #fff !important;
}
.home-1 {
  padding-top: 20px !important;
}
@media (min-width: 200px) and (max-width: 1024px) {
  .home-1 {
    padding-top: 40px !important;
  }
}
.rounded-logo {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}
.rounded-logo img {
  border-radius: 50%;
}
.home-1 .home-heading .home-title {
  font-size: 52px;
  font-weight: 600;
  line-height: 60px;
}
.home-1 .home-heading .home-sub-title {
  font-size: 28px;
  font-weight: 400;
  line-height: 35px !important;
}
@media (min-width: 200px) and (max-width: 1024px) {
  .home-title {
    font-size: 48px !important;
  }
  .home-1 .home-heading .home-sub-title {
    font-size: 24px !important;
    line-height: 28px !important;
  }
}

.home-1 .home-heading .para-desc {
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}
.features .features-box .features-icon {
  color: #00a611 !important;
}
.features .features-box:hover .features-icon {
  background-color: rgba(0, 199, 96, 0.151) !important;
}
.features .features-box:hover .features-icon {
  border: 2px solid #00a611 !important;
}

.bg-soft-primary {
  background-color: #00a61113 !important;
  color: #00a611 !important;
  border: 1px solid #00a611 !important;
}

.bg-gradiant {
  background: radial-gradient(
    circle,
    rgb(55, 190, 69) 26%,
    rgba(0, 166, 17, 1) 89%
  );
  border-color: #00c760 !important;
  color: #fff !important;
}

/* Home Button */

.view-channel-button {
  display: flex;
  justify-content: start;
}
@media (min-width: 200px) and (max-width: 1024px) {
  .display-4{
    text-align: center;
  }
  .view-channel-button {
    display: flex;
    justify-content: center;
  }
}
button {
  font-family: inherit;
  font-size: 18px;
  background: #26a5e4;
  color: white;
  padding: 0.5em 1em;
  padding-left: 0.9em;
  display: flex;
  align-items: center;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.2s;
  cursor: pointer;
}

button span {
  display: block;
  margin-left: 0.3em;
  transition: all 0.3s ease-in-out;
}

button svg {
  display: block;
  transform-origin: center center;
  transition: transform 0.3s ease-in-out;
}

button:hover .svg-wrapper {
  animation: fly-1 0.6s ease-in-out infinite alternate;
}

button:hover svg {
  transform: translateX(3.7em) rotate(45deg) scale(1.1);
}

button:hover span {
  transform: translateX(9em);
}

button:active {
  transform: scale(0.95);
}

@keyframes fly-1 {
  from {
    transform: translateY(0.1em);
  }

  to {
    transform: translateY(-0.1em);
  }
}
