/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background-color:  #080808;
  font-family: "Open Sans", sans-serif;
  color: white;
  scroll-behavior: smooth;
}

a {
  color: black;
  text-decoration: none;
}

a:hover {
  color: #bb2d2d;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Krub", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: rgb(0, 0, 0);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: rgb(255, 255, 255);
  line-height: 0;
}
.back-to-top i:hover{
  font-size: 28px;
  color: rgb(0, 0, 0);
  line-height: 0;
}

.back-to-top:hover {
  background: rgb(255, 255, 255);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #111;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ff0000;
  border-top-color: #9b9b9b;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader .8s linear infinite;
  animation: animate-preloader .8s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(90deg);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(270deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(90deg);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(270deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #0a0a0a;
  border-bottom: 1px solid orangered;
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}

#header .logo {
  font-size: 18px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 3px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: whitesmoke
}

#header .logo img {
  max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Krub", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #8a8a8a;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar li:hover > a {
  color: white;
}

.navbar .getstarted {
  background: #e2e5fe;
  padding: 9px 25px;
  margin-left: 30px;
  border-radius: 5px;
  font-weight: 600;
  color: red;;
  color: #ff3434;
}

.navbar .getstarted:hover {
  color: red;;
  background: #ff3636;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: red;;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
  font-weight: 500;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #ff362f;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #ff6600;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: red;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #2f2f2f;
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 15px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #111111;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: white;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: orangered;
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: orange;;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #ff1919;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  min-height: 100vh;
  background: #080808;
  border-bottom: 1px solid orangered;
  text-align: center;
  display: flex;
  align-items: center;
}

#features{
    border-bottom: 1px solid orangered;
}

#hero .container {
  padding: 80px 15px 50px 15px;
  max-width: 1200px;
}

#hero h1 {
  margin: 0 auto 20px auto;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;
  line-height: 1.2;
  max-width: 100%;
  background: linear-gradient(90deg, rgba(253,29,29,1) 50%, rgba(252,176,69,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#hero h2 {
  color: orangered;
  margin: 0 auto 30px auto;
  font-size: clamp(1rem, 4vw, 1.5rem);
  max-width: 800px;
  line-height: 1.4;
  background: -webkit-linear-gradient(45deg,orange,orangered );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#hero .hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

#hero .btn-get-started {
  font-family: "Krub", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 25px;
  transition: all 0.3s ease;
  color: #fff;
  background: linear-gradient(45deg,orange,orangered);
  text-decoration: none;
  border: none;
  cursor: pointer;
  min-width: 120px;
  text-align: center;
}

#hero .btn-get-started:hover {
  background: linear-gradient(45deg,rgb(124, 81, 0),rgb(121, 32, 0));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 69, 0, 0.3);
}

#hero .hero-img {
  max-width: 100%;
  width: auto;
  height: auto;
  margin-top: 40px;
  max-height: 50vh;
  object-fit: contain;
}

@media (max-width: 992px) {
  #hero {
    min-height: 80vh;
    padding: 60px 0;
  }
  
  #hero .container {
    padding: 60px 20px 40px 20px;
  }
  
  #hero h1 {
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: 15px;
  }
  
  #hero h2 {
    font-size: clamp(0.9rem, 3vw, 1.2rem);
    margin-bottom: 25px;
    padding: 0 10px;
  }
  
  #hero .hero-img {
    max-width: 85%;
    max-height: 40vh;
    margin-top: 30px;
  }
  
  #hero .hero-buttons {
    gap: 10px;
    margin-bottom: 30px;
  }
  
  #hero .btn-get-started {
    margin: 0;
    padding: 10px 25px;
    font-size: 14px;
    min-width: 110px;
  }
}

@media (max-width: 768px) {
  #hero {
    min-height: 70vh;
    padding: 40px 0;
  }
  
  #hero .container {
    padding: 40px 15px 30px 15px;
  }
  
  #hero h1 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 12px;
  }
  
  #hero h2 {
    font-size: clamp(0.8rem, 2.5vw, 1rem);
    margin-bottom: 20px;
    padding: 0 5px;
  }
  
  #hero .hero-img {
    max-width: 90%;
    max-height: 35vh;
    margin-top: 25px;
  }
  
  #hero .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
  }
  
  #hero .btn-get-started {
    margin: 0;
    padding: 10px 20px;
    font-size: 13px;
    min-width: 140px;
  }
}

@media (max-width: 480px) {
  #hero {
    min-height: 60vh;
    padding: 30px 0;
  }
  
  #hero .container {
    padding: 30px 10px 20px 10px;
  }
  
  #hero h1 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 10px;
  }
  
  #hero h2 {
    font-size: clamp(0.7rem, 2vw, 0.9rem);
    margin-bottom: 15px;
  }
  
  #hero .hero-img {
    max-width: 95%;
    max-height: 30vh;
    margin-top: 20px;
  }
  
  #hero .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
  }
  
  #hero .btn-get-started {
    margin: 0;
    padding: 8px 18px;
    font-size: 12px;
    min-width: 130px;
  }
}

@media (max-height: 768px) {
  #hero {
    min-height: auto;
    padding: 50px 0;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #080808;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: whitesmoke;
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: yellow;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  background: #111111;
  background-size: cover;
  padding: 60px 0;
  position: relative;
  color: red;;
}

.about .content {
  padding: 30px 30px 30px 0;
}

.about .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: red;;
  margin-bottom: 30px;
}

.about .content p {
  margin-bottom: 30px;
}

.about .content .about-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 30px 8px 30px;
  color: red;;
  border-radius: 50px;
  transition: 0.3s;
}

.about .content .about-btn i {
  font-size: 14px;
}

.about .content .about-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.about .icon-boxes .icon-box {
  margin-top: 30px;
}

.about .icon-boxes .icon-box i {
  font-size: 40px;
  color: #b6bdfc;
  margin-bottom: 10px;
}

.about .icon-boxes .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.about .icon-boxes .icon-box p {
  font-size: 15px;
}

@media (max-width: 1200px) {
  .about .content {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .about {
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
  padding: 80px 0;
  background: #080808;
  border-bottom: 1px solid orangered;
}

.features .overview {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.features .section-title {
  text-align: center;
  margin-bottom: 60px;
}

.features .section-title h2 {
  color: #ffffff;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
}

.features .section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(45deg, orange, orangered);
  border-radius: 2px;
}

.features .content + .content {
  margin-top: 80px;
}

.features .content h3 {
  font-weight: 600;
  font-size: 26px;
  color: #ffffff;
  margin-bottom: 20px;
}

.features .content ul {
  list-style: none;
  padding: 0;
}

.features .content img {
  border-radius: 25px;
  width: 100%;
  height: auto;
  max-width: 500px;
  box-shadow: 0 10px 30px rgba(255, 69, 0, 0.2);
  transition: transform 0.3s ease;
}

.features .content img:hover {
  transform: scale(1.05);
}

.features .content ul li {
  padding-bottom: 10px;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.6;
}

.features .content ul i {
  font-size: 20px;
  padding-right: 8px;
  color: #ff2b2b;
}

.features .content p:last-child {
  margin-bottom: 0;
}

/* Responsive Features */
@media (max-width: 768px) {
  .features {
    padding: 60px 0;
  }
  
  .features .overview {
    padding: 0 15px;
  }
  
  .features .content + .content {
    margin-top: 60px;
  }
  
  .features .content h3 {
    font-size: 22px;
    text-align: center;
  }
  
  .features .row.content {
    margin-bottom: 40px;
  }
  
  .features .content ul {
    text-align: center;
  }
  
  .features .content img {
    margin-bottom: 20px;
  }
  
  .steps {
    padding: 60px 0;
  }
  
  .steps .content-item {
    padding: 25px 20px;
    margin: 10px 5px;
    min-height: 220px;
  }
  
  .steps .content-item span {
    font-size: 32px;
  }
  
  .steps .content-item h4 {
    font-size: 20px;
  }
  
  .steps .content-item p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .features .content h3 {
    font-size: 20px;
  }
  
  .features .content ul li {
    font-size: 14px;
    padding-bottom: 8px;
  }
  
  .steps .content-item {
    padding: 20px 15px;
    margin: 8px 3px;
    min-height: 200px;
  }
  
  .steps .content-item span {
    font-size: 28px;
    margin-bottom: 10px;
  }
  
  .steps .content-item h4 {
    font-size: 18px;
    margin: 10px 0;
  }
  
  .steps .content-item p {
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# Steps
--------------------------------------------------------------*/
.steps {
  padding: 80px 0;
  background: #080808;
  border-bottom: 1px solid orangered;
}

.steps .section-title {
  text-align: center;
  margin-bottom: 60px;
}

.steps .section-title h2 {
  color: #ffffff;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
}

.steps .section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(45deg, orange, orangered);
  border-radius: 2px;
}

.steps .row {
  overflow: hidden;
  justify-content: center;
}

.steps .content-item {
  background: linear-gradient(135deg, #ffab07, #ff8c00);
  padding: 30px 25px;
  margin: 15px;
  border-radius: 25px;
  border: 3px solid transparent;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(255, 171, 7, 0.2);
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.steps .content-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 69, 0, 0.1), rgba(255, 140, 0, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.steps .content-item:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: #ff4500;
  box-shadow: 0 20px 40px rgba(255, 69, 0, 0.4);
}

.steps .content-item:hover::before {
  opacity: 1;
}

.steps .content-item span {
  display: block;
  font-size: 40px;
  font-weight: 700;
  color: #ff4500;
  margin: 0 0 15px 0;
  position: relative;
  z-index: 2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.steps .content-item h4 {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin: 15px 0;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.steps .content-item:hover h4 {
  color: #fff;
}

.steps .content-item p {
  color: #333;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.steps .content-item:hover p {
  color: #fff;
}

.steps .content-item p a {
  color: #ff4500;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.steps .content-item:hover p a {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .steps .content-item {
    padding: 40px 0;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
  background: #080808;
  padding-bottom: 80px;
  border-bottom: 1px solid orangered;
}

.services .section-title h2, .services .section-title p {
  color: rgb(211, 211, 211);;
}

.services .section-title h2::after {
  background: yellow;
}

.services .icon-box {
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
  background: #ffab07;
  transition: all 0.3s;
  border-radius: 25px;
  text-align: center;
}

.services .icon-box:hover {
  transform: scale(1.08);
}

.services .icon {
  margin-bottom: 15px;
}

.services .icon i {
  font-size: 32px;
  line-height: 1;
  color: rgb(255, 67, 10);
  background: rgb(39, 39, 39);
  padding: 20px;
  border-radius: 50px;
  transition: all 0.3s;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #000000;
  transition: 0.3s;
}

.services .title a:hover {
  color: rgb(255, 0, 0);
}

.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: #080808;
  padding: 60px 0;
    border-top: 1px solid orangered;
}

.team .member {
  text-align: center;
  margin-bottom: 20px;
  background: #343a40;
  border-radius: 3%;
  position: relative;
  overflow: hidden;
}

.team .member .member-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

.team .member .member-info-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  transition: bottom 0.4s;
}

.team .member .member-info-content h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: whitesmoke;;
}

.team .member .member-info-content span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: orangered;;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: -38px;
  right: 0;
  height: 48px;
  transition: bottom ease-in-out 0.4s;
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 10px;
  display: inline-block;
}

.team .member .social a:hover {
  color: red;;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .member:hover .member-info {
  background: linear-gradient(0deg, rgba(12, 17, 26, 0.9) 0%, rgba(20, 29, 43, 0.8) 20%, rgba(0, 212, 255, 0) 100%);
  opacity: 1;
  transition: 0.4s;
}

.team .member:hover .member-info-content {
  bottom: 60px;
  transition: bottom 0.4s;
}

.team .member:hover .social {
  bottom: 0;
  transition: bottom ease-in-out 0.4s;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;
    border-top: 1px solid orangered; 
    border-bottom: 1px solid orangered; 
}

.faq .faq-list {
  padding: 20px;
  list-style: none;
    background: linear-gradient(180deg, rgba(253,29,29,1) 50%, rgba(252,176,69,1) 100%);
    border-radius: 20px;

}

.faq .faq-list li {
  border-bottom: 1px solid black;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq .faq-list .question {
  display: block;
  position: relative;
  font-family: #ff9100;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
  color: black;
  transition: 0.3s;
}

.faq .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list .collapsed {
  color: black;
}

.faq .faq-list .collapsed:hover {
  color: rgb(211, 162, 0);
}

.faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #222222;
  text-align: center;
  padding: 20px 0 30px 0;
  background: orange;
    border-radius: 20px;
}

.contact .info-box i {
  font-size: 32px;
  color: red;
  padding: 8px;
}

.contact .info-box h3 {
  font-size: 25px;
  color: black;
  font-weight: 1000;
  margin: 20px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: red;;
  background: #ff0080;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: red;;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 5px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #8ea5ca;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  background: green;
  border: 0;
  padding: 10px 24px;
  color: white;
  transition: 0.4s;
  border-radius: 10px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: rgb(41, 226, 41);
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  margin-top: 70px;
  padding: 10px 0;
  box-shadow: 0px 2px 15px rgba(45, 64, 95, 0.06);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #3d5782;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: black;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  font-size: 15px;
  background: linear-gradient(90deg, rgba(253,29,29,1) 50%, rgba(252,176,69,1) 100%);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: red;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  color: #2d405f;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Krub", sans-serif;
  color: #4e6fa4;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #2d405f;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #6c7afa;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #3b4ef8;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #2d405f;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: red;;
  padding: 6px 10px;
  position: relative;
  border-radius: 5px;
  text-align: left;
  border: 1px solid #9da7fc;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: -1px;
  right: -2px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #3b4ef8;
  color: red;;
  transition: 0.3s;
  border-radius: 0 5px 5px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: yellow;
}

#footer .credits {
  padding-top: 10px;
  font-size: 14px;
  color: black;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #fff;
  color: #000000;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 5px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: black;
  color: white;;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Download-Section
--------------------------------------------------------------*/
.containerr
{
  position: relative;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.containerr .cardd
{
  position: relative;
  width: 300px;
  height: 420px;
  background: rgb(29, 29, 29);
  margin: 20px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 25px rgb(0,0,0,0.2);
  transition: 0.5s;
}
.containerr:hover .cardd
{
  filter: blur(20px);
  transform: scale(0.9);
  opacity: 0.5;
}
.containerr .cardd:hover
{
  filter: blur(0px);
  transform: scale(1.1);
  opacity: 1;
}
.containerr .cardd .circlee
{
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
  clip-path: circle(180px at center 0);
  text-align: center;
}
.containerr .cardd .circlee h2
{
  color: #fff;
  font-size: 2.5em;
  padding: 50px 0;
  font-weight: bolder;
}
.containerr .cardd .circlee h3
{
  color: #fff;
  font-size: 2em;
  padding: 70px 0;
  font-weight: bolder;
}
.containerr .cardd .contentt
{
  position: absolute;
  bottom: 10px;
  padding: 20px;
  text-align: center;
}
.containerr .cardd .contentt p
{
  color: rgb(230, 230, 230);
  text-align: left;
}
.containerr .cardd .contentt a
{
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  background: #000;
  color: #000;
  border-radius: 40px;
  text-decoration: none;
  margin-top: 20px;
}
.containerr .cardd:nth-child(1) .circlee,
.containerr .cardd:nth-child(1) .contentt a
{
  background: radial-gradient(circle, rgba(238,174,202,1) 0%, rgba(148,187,233,1) 100%);
}
.containerr .cardd:nth-child(2) .circlee,
.containerr .cardd:nth-child(2) .contentt a
{
  background: radial-gradient(circle, rgba(238,174,202,1) 0%, rgba(148,187,233,1) 100%);
}
.containerr .cardd:nth-child(3) .circlee,
.containerr .cardd:nth-child(3) .contentt a
{
  background: radial-gradient(circle, rgba(238,174,202,1) 0%, rgba(148,187,233,1) 100%);
}
.containerr .cardd:nth-child(4) .circlee,
.containerr .cardd:nth-child(4) .contentt a
{
  background: radial-gradient(circle, rgba(238,174,202,1) 0%, rgba(148,187,233,1) 100%);
}
.containerr .cardd .contentt a:hover
{
  color: #fff;
}

/*--------------------------------------------------------------
# Support-Section
--------------------------------------------------------------*/
.containerrs
{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-gap: 50px;
  padding: 50px;
  box-sizing: border-box;
}
.containerrs .boxxx
{
  position: relative;
  background: #fff;
  padding: 40px 40px 40px;
  text-align: left;
  overflow: hidden;
  border-radius: 20px;
}
.containerrs .boxxx:nth-child(1)
{
  background: linear-gradient(to right top, #051937, #004d7a, #008793, #00bf72, #a8eb12);
}
.containerrs .boxxx:nth-child(2)
{
  background: linear-gradient(to right top, #051937, #004d7a, #008793, #00bf72, #a8eb12);
}
.containerrs .boxxx h2
{
  position: relative;
  margin: 0;
  padding: 0;
  font-size: 60px;
  color: #fff;
  z-index: 1;
  opacity: 0.4;
}
.containerrs .boxxx a
{
  margin: 0;
  padding: 0;
  color: #fff;
  font-size: 16px;
}

/*--------------------------------------------------------------
# Hero Section [Support]
--------------------------------------------------------------*/
#heroo {
  width: 100%;
  height: 100vh;
  background: #080808;
  text-align: center;
}

#heroo .container {
  padding-top: 70px;
}

#heroo h1 {
  margin: 0;
  font-size: 80px;
  font-weight: 700;
  line-height: 66px;
  width: 70%;
  background: linear-gradient(to right top, #051937, #004d7a, #008793, #00bf72, #a8eb12);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#heroo h2 {
  color: #466393;
  margin: 15px 0 0 0;
  font-size: 24px;
  background: linear-gradient(to right top, #051937, #004d7a, #008793, #00bf72, #a8eb12);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#heroo .btn-get-started {
  font-family: "Krub", sans-serif;
  font-weight: 1200;
  font-size: 16px;
  letter-spacing: 1px;
  display: block;
  padding: 8px 32px 10px 32px;
  margin-top: 25px;
  border-radius: 5px;
  transition: 0.5s;
  color: #fff;
  background: red;
}

#heroo .btn-get-started:hover {
  background: rgba(151, 0, 0, 0.712);
}

#heroo .hero-img {
  max-width: 60%;
  margin-top: 40px;
}

@media (max-width: 992px) {
  #heroo h1 {
    font-size: 36px;
    line-height: 42px;
    width: 100%;
  }
  #heroo h2 {
    font-size: 20px;
    line-height: 24px;
  }
  #heroo .hero-img {
    max-width: 90%;
  }
}

@media (max-height: 768px) {
  #heroo {
    height: auto;
  }
}
/*--------------------------------------------------------------
# Footer Support Page
--------------------------------------------------------------*/
#footerr {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  color: #fff;
  font-size: 15px;
  background: linear-gradient(to right top, #051937, #004d7a, #008793, #00bf72, #a8eb12);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footerr .footer-top {
  padding: 60px 0 30px 0;
  background: linear-gradient(to right top, #051937, #004d7a, #008793, #00bf72, #a8eb12);
}

#footerr .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footerr .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  color: #2d405f;
}

#footerr .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Krub", sans-serif;
  color: #4e6fa4;
}

#footerr .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #2d405f;
  position: relative;
  padding-bottom: 12px;
}

#footerr .footer-top .footer-links {
  margin-bottom: 30px;
}

#footerr .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footerr .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #6c7afa;
  font-size: 18px;
  line-height: 1;
}

#footerr .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footerr .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footerr .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footerr .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #3b4ef8;
}

#footerr .footer-newsletter {
  font-size: 15px;
}

#footerr .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #2d405f;
  position: relative;
  padding-bottom: 12px;
}

#footerr .footer-newsletter form {
  margin-top: 30px;
  background: red;;
  padding: 6px 10px;
  position: relative;
  border-radius: 5px;
  text-align: left;
  border: 1px solid #9da7fc;
}

#footerr .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footerr .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: -1px;
  right: -2px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #3b4ef8;
  color: red;;
  transition: 0.3s;
  border-radius: 0 5px 5px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footerr .footer-newsletter form input[type="submit"]:hover {
  background: yellow;
}

#footerr .credits {
  padding-top: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

#footerr .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #fff;
  color: #000000;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 5px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footerr .social-links a:hover {
  background: black;
  color: white;;
  text-decoration: none;
}
/*--------------------------------------------------------------
# Header Support Page
--------------------------------------------------------------*/
#headerr {
  background: #0a0a0a;
  border-bottom: 1px solid #051937;
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}
#headerr .logo {
  font-size: 18px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 3px;
  font-family: "Poppins", sans-serif;
}
#headerr .logo a {
  color: #A8EB12;
  font-weight: 600;
}
#headerr .logo img {
  max-height: 40px;
}
/*--------------------------------------------------------------
# Footer New Download/Device added page
--------------------------------------------------------------*/
#footerrr {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  color: black;
  font-size: 15px;
  background: radial-gradient(circle, rgba(238,174,202,1) 0%, rgba(148,187,233,1) 100%);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footerrr .footer-top {
  padding: 60px 0 30px 0;
  background: red;;
}

#footerrr .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footerrr .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  color: #2d405f;
}

#footerrr .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Krub", sans-serif;
  color: #4e6fa4;
}

#footerrr .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #2d405f;
  position: relative;
  padding-bottom: 12px;
}

#footerrr .footer-top .footer-links {
  margin-bottom: 30px;
}

#footerrr .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footerrr .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #6c7afa;
  font-size: 18px;
  line-height: 1;
}

#footerrr .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footerrr .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footerrr .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footerrr .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #3b4ef8;
}

#footerrr .footer-newsletter {
  font-size: 15px;
}

#footerrr .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #2d405f;
  position: relative;
  padding-bottom: 12px;
}

#footerrr .footer-newsletter form {
  margin-top: 30px;
  background: red;;
  padding: 6px 10px;
  position: relative;
  border-radius: 5px;
  text-align: left;
  border: 1px solid #9da7fc;
}

#footerrr .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footerrr .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: -1px;
  right: -2px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #3b4ef8;
  color: red;;
  transition: 0.3s;
  border-radius: 0 5px 5px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footerrr .footer-newsletter form input[type="submit"]:hover {
  background: yellow;
}

#footerrr .credits {
  padding-top: 10px;
  font-size: 14px;
  color: black;
}

#footerrr .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #fff;
  color: #000000;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 5px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footerrr .social-links a:hover {
  background: black;
  color: white;;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Hero Section [Download-New]
--------------------------------------------------------------*/
#heroox {
  width: 100%;
  height: 100vh;
  background: #080808;
  text-align: center;
}

#heroox .container {
  padding-top: 70px;
}

#heroox h1 {
  margin: 0;
  font-size: 80px;
  font-weight: 700;
  line-height: 66px;
  width: 70%;
  background: radial-gradient(circle, rgba(238,174,202,1) 0%, rgba(148,187,233,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#heroox h2 {
  color: #466393;
  margin: 15px 0 0 0;
  font-size: 24px;
  background: linear-gradient(19deg, #21D4FD 0%, #B721FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#heroox .btn-get-started {
  font-family: "Krub", sans-serif;
  font-weight: 1200;
  font-size: 16px;
  letter-spacing: 1px;
  display: block;
  padding: 8px 32px 10px 32px;
  margin-top: 25px;
  border-radius: 5px;
  transition: 0.5s;
  color: #fff;
  background: red;
}

#heroox .btn-get-started:hover {
  background: rgba(151, 0, 0, 0.712);
}

#heroox .hero-img {
  max-width: 60%;
  margin-top: 40px;
}

@media (max-width: 992px) {
  #heroox h1 {
    font-size: 36px;
    line-height: 42px;
    width: 100%;
  }
  #heroox h2 {
    font-size: 20px;
    line-height: 24px;
  }
  #heroox .hero-img {
    max-width: 90%;
  }
}

@media (max-height: 768px) {
  #heroox {
    height: auto;
  }
}

/*--------------------------------------------------------------
# Header Download Page New
--------------------------------------------------------------*/
#headerx1 {
  background: #0c0c0c;
  border-bottom: 1px solid rgb(238,174,202);
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}

#headerx1 .logo {
  font-size: 18px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 3px;
  font-family: "Poppins", sans-serif;
}

#headerx1 .logo a {
  color: whitesmoke
}

#headerx1 .logo img {
  max-height: 40px;
}

/* VIOLET DOWNLOAD PAGE */
/*--------------------------------------------------------------
# Download-Section (VIOLET)
--------------------------------------------------------------*/
.containerrx
{
  position: relative;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.containerrx .carddx
{
  position: relative;
  width: 300px;
  height: 420px;
  background: rgb(29, 29, 29);
  margin: 20px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 25px rgb(0,0,0,0.2);
  transition: 0.5s;
}
.containerrx:hover .carddx
{
  filter: blur(20px);
  transform: scale(0.9);
  opacity: 0.5;
}
.containerrx .carddx:hover
{
  filter: blur(0px);
  transform: scale(1.1);
  opacity: 1;
}
.containerrx .carddx .circleex
{
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
  clip-path: circle(180px at center 0);
  text-align: center;
}
.containerrx .carddx .circleex h2
{
  color: #fff;
  font-size: 2.5em;
  padding: 50px 0;
  font-weight: bolder;
}
.containerrx .carddx .circleex h3
{
  color: #fff;
  font-size: 2em;
  padding: 70px 0;
  font-weight: bolder;
}
.containerrx .carddx .contenttx
{
  position: absolute;
  bottom: 10px;
  padding: 20px;
  text-align: center;
}
.containerrx .carddx .contenttx p
{
  color: rgb(230, 230, 230);
  text-align: left;
}
.containerrx .carddx .contenttx a
{
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  background: #000;
  color: #fff;
  border-radius: 40px;
  text-decoration: none;
  margin-top: 20px;
}
.containerrx .carddx:nth-child(1) .circleex,
.containerrx .carddx:nth-child(1) .contenttx a
{
  background: linear-gradient(to right top, #6bcdd1, #6dd5c8, #7adcbb, #90e1ab, #abe59a, #bcdd82, #cfd36e, #e2c75e, #ebad4a, #f29141, #f67244, #f54f4f);
}
.containerrx .carddx:nth-child(2) .circleex,
.containerrx .carddx:nth-child(2) .contenttx a
{
  background: linear-gradient(to right top, #6bcdd1, #6dd5c8, #7adcbb, #90e1ab, #abe59a, #bcdd82, #cfd36e, #e2c75e, #ebad4a, #f29141, #f67244, #f54f4f);
}
.containerrx .carddx:nth-child(3) .circleex,
.containerrx .carddx:nth-child(3) .contenttx a
{
  background: linear-gradient(to right top, #6bcdd1, #6dd5c8, #7adcbb, #90e1ab, #abe59a, #bcdd82, #cfd36e, #e2c75e, #ebad4a, #f29141, #f67244, #f54f4f);
}
.containerrx .carddx:nth-child(4) .circleex,
.containerrx .carddx:nth-child(4) .contenttx a
{
  background: linear-gradient(to right top, #6bcdd1, #6dd5c8, #7adcbb, #90e1ab, #abe59a, #bcdd82, #cfd36e, #e2c75e, #ebad4a, #f29141, #f67244, #f54f4f);
}
.containerrx .carddx .contenttx a:hover
{
  color: rgb(0, 0, 0);
}

/*--------------------------------------------------------------
# Header Violet Page
--------------------------------------------------------------*/
#headerx2 {
  background: #0e0e0e;
  border-bottom: 1px solid #90e1ab;
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}

#headerx2 .logo {
  font-size: 18px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 3px;
  font-family: "Poppins", sans-serif;
}

#headerx2 .logo a {
  color: whitesmoke
}

#headerx2 .logo img {
  max-height: 40px;
}

/*--------------------------------------------------------------
# Footer New Download/Device added page
--------------------------------------------------------------*/
#footerrrx {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  color: black;
  font-size: 15px;
  background: linear-gradient(to right top, #6bcdd1, #6dd5c8, #7adcbb, #90e1ab, #abe59a, #bcdd82, #cfd36e, #e2c75e, #ebad4a, #f29141, #f67244, #f54f4f);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footerrrx .footer-top {
  padding: 60px 0 30px 0;
  background: red;;
}

#footerrrx .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footerrrx .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  color: #2d405f;
}

#footerrrx .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Krub", sans-serif;
  color: #4e6fa4;
}

#footerrrx .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #2d405f;
  position: relative;
  padding-bottom: 12px;
}

#footerrrx .footer-top .footer-links {
  margin-bottom: 30px;
}

#footerrrx .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footerrrx .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #6c7afa;
  font-size: 18px;
  line-height: 1;
}

#footerrrx .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footerrrx .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footerrrx .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footerrrx .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #3b4ef8;
}

#footerrrx .footer-newsletter {
  font-size: 15px;
}

#footerrrx .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #2d405f;
  position: relative;
  padding-bottom: 12px;
}

#footerrrx .footer-newsletter form {
  margin-top: 30px;
  background: red;;
  padding: 6px 10px;
  position: relative;
  border-radius: 5px;
  text-align: left;
  border: 1px solid #9da7fc;
}

#footerrrx .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footerrrx .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: -1px;
  right: -2px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #3b4ef8;
  color: red;;
  transition: 0.3s;
  border-radius: 0 5px 5px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footerrrx .footer-newsletter form input[type="submit"]:hover {
  background: yellow;
}

#footerrrx .credits {
  padding-top: 10px;
  font-size: 14px;
  color: black;
}

#footerrrx .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #fff;
  color: #000000;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 5px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footerrrx .social-links a:hover {
  background: black;
  color: white;;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Hero Section [Download-New]
--------------------------------------------------------------*/
#herooxx {
  background: #080808;
  text-align: center;
}

#herooxx .container {
  padding-top: 70px;
}

#herooxx h1 {
  margin: 0;
  font-size: 80px;
  font-weight: 700;
  line-height: 76px;
  width: 80%;
  background: linear-gradient(to right top, #6bcdd1, #6dd5c8, #7adcbb, #90e1ab, #abe59a, #bcdd82, #cfd36e, #e2c75e, #ebad4a, #f29141, #f67244, #f54f4f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#herooxx .btn-get-started {
  font-family: "Krub", sans-serif;
  font-weight: 1200;
  font-size: 16px;
  letter-spacing: 1px;
  display: block;
  padding: 8px 32px 10px 32px;
  margin-top: 25px;
  border-radius: 5px;
  transition: 0.5s;
  color: #fff;
  background: red;
}

#herooxx .btn-get-started:hover {
  background: rgba(151, 0, 0, 0.712);
}

#herooxx .hero-img {
  max-width: 60%;
  margin-top: 40px;
}

@media (max-width: 992px) {
  #herooxx h1 {
    font-size: 36px;
    line-height: 42px;
    width: 100%;
  }
  #herooxx h2 {
    font-size: 20px;
    line-height: 24px;
  }
  #herooxx .hero-img {
    max-width: 90%;
  }
}

@media (max-height: 768px) {
  #herooxx {
    height: auto;
  }
}

/* Custom-Scroll-Bar */

::-webkit-scrollbar{
  width: 6px;
}

::-webkit-scrollbar-thumb{
  border-radius: 30px;
  background: -webkit-gradient(linear, left top, left bottom, from(#ff8a00),to(#da1b60));
  box-shadow: inset 2px 2px 2px rgba(255,255,255,0.25), inset -2px -2px -2px rgba(0,0,0,0.25);
}

/*::-webkit-scrollbar-track{
  background: linear-gradient(to right, #201c29, #201c29 1px, #100e17 1px ,#100e17);
}*/