/* ------------------------------------------------------------
* Template Name    : CryptoPulse - Landing Page
* Author           : WebFolio
* Version          : 1.0
------------------------------------------------------------ */

/* ======================================================================
  Table of Content:
 
  01. Common
  02. Header
  03. Home
  04. About
  05. Services
  06. Token
  07. Roadmap
  08. Team
  09. FAQ
  10. App
  11. Blog
  12. Contact
  13. Footer
====================================================================== */

/* ----------------------------------------
01. Common
---------------------------------------- */

@import url("https://fonts.googleapis.com/css2?family=Cabin:wght@300;400;500;600;700;800&display=swap");

:root {
  --dark-color: #0c0938; /* 0c0938 081241 */
  --light-color: #130f50; /* 130f50 0b1753 */
  --main-color: #6332f0;
  --main-color-dark: #4312d0;
  --second-color: #ff9b08;

  --bg-color: var(--dark-color);
  --card-color: var(--light-color);
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  overflow-x: hidden;
}
body {
  font-family: "Cabin", sans-serif;
  color: #fff;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: #fff;
}
p {
  font-size: 16px;
  font-weight: normal;
  color: #fffc;
  line-height: 1.6;
}
ul {
  list-style: none;
}
img {
  user-select: none;
}
.btn {
  display: inline-block;
  text-transform: capitalize;
  background-color: var(--main-color);
  color: #fff;
  outline: none;
  border: none;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  transform: translateZ(0);
}
.btn::before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--main-color-dark);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: all 0.3s ease-out;
}
.btn:hover::before {
  transform: scaleX(1);
}

section {
  padding: 100px 0;
  background-color: var(--bg-color);
}
section:nth-child(odd) {
  --bg-color: var(--light-color);
  --card-color: var(--dark-color);
}
section .container {
  width: 80%;
  margin: auto;
}
section .wrapper {
  margin-top: 50px;
}
section .title {
  text-align: center;
}
section .title h2 {
  font-size: 38px;
  font-weight: 600;
}
section .title h3 {
  color: var(--main-color);
  font-size: 22px;
}
section .wrapper .title {
  text-align: unset;
}
.logo {
  display: flex;
}
.logo img {
  width: 200px;
}

#scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--main-color);
  cursor: pointer;
  transition: transform 1s ease-out, background-color 0.3s;
  z-index: 1;
  transform: translateY(-100vh) rotate(180deg);
}
#scroll-top:hover {
  background-color: var(--main-color-dark);
}

/* ------------ Preloader ------------ */

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg-color);
  z-index: 999999;
}

.sk-folding-cube {
  position: absolute;
  top: 48%;
  left: 48%;
  width: 40px;
  height: 40px;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

.sk-folding-cube .sk-cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.sk-folding-cube .sk-cube:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--main-color);
  -webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
  animation: sk-foldCubeAngle 2.4s infinite linear both;
  -webkit-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}

.sk-folding-cube .sk-cube2 {
  -webkit-transform: scale(1.1) rotateZ(90deg);
  transform: scale(1.1) rotateZ(90deg);
}

.sk-folding-cube .sk-cube3 {
  -webkit-transform: scale(1.1) rotateZ(180deg);
  transform: scale(1.1) rotateZ(180deg);
}

.sk-folding-cube .sk-cube4 {
  -webkit-transform: scale(1.1) rotateZ(270deg);
  transform: scale(1.1) rotateZ(270deg);
}

.sk-folding-cube .sk-cube2:before {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.sk-folding-cube .sk-cube3:before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.sk-folding-cube .sk-cube4:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

@-webkit-keyframes sk-foldCubeAngle {
  0%,
  10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%,
  75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }
  90%,
  100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}

@keyframes sk-foldCubeAngle {
  0%,
  10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%,
  75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }
  90%,
  100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}

/* ----------------------------------------
02. Header
---------------------------------------- */

header {
  width: 100%;
  height: 14vh;
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  transition: 0.25s;
  user-select: none;
}
header#sticky {
  background-color: var(--card-color);
  position: fixed;
  height: 10vh;
  box-shadow: 0 -6px 10px 5px #0008;
}
nav {
  width: 80%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav .list {
  display: flex;
  align-items: center;
}
nav .list li {
  padding: 10px 14px;
}
nav .list a {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.25s;
  position: relative;
}
nav .list a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  background-color: var(--second-color);
  width: 100%;
  height: 1px;
  border-radius: 5px;
  transform: scaleX(0);
  transition: 0.3s;
}
nav .list a.active,
nav .list a:hover {
  color: var(--second-color);
}
nav .list a.active::after,
nav .list a:hover::after {
  transform: scaleX(1);
}
#menu-btn {
  display: none;
}

@media screen and (max-width: 1010px) {
  #menu-btn {
    display: block;
  }
  nav {
    position: relative;
    height: 100%;
  }
  nav .list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 10px;
    background-color: var(--bg-color);
    transform-origin: top right;
    transform: scale(0);
    transition: 0.3s;
  }
  nav .list#open {
    transform: scale(1);
  }
}

/* ----------------------------------------
03. Home
---------------------------------------- */

.home {
  height: 100vh;
}
.home .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home .text {
  width: 50%;
}
.home .text h1 {
  font-size: 44px;
  line-height: 1.5;
}
.home .text p {
  margin-top: 20px;
  margin-bottom: 40px;
}
.home .text .btn-group {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 20px;
}
.home .text .play-btn {
  display: inline-block;
  background-color: transparent;
  display: flex;
  align-items: center;
  gap: 10px;
}
.home .text .play-btn img {
  width: 40px;
  height: 40px;
  background-color: transparent;
}
.home .image {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.home .image img {
  width: 600px;
  position: absolute;
  right: -5vw;
}

/* ------------ Responsive ------------ */

@media (max-width: 1120px) {
  .home {
    height: auto;
  }
  .home .container {
    flex-direction: column;
    margin-top: 100px;
  }
  .home .text {
    width: 100%;
    z-index: 1;
    text-align: center;
  }
  .home .text h1 {
    font-size: 36px;
  }
  .home .text .btn-group {
    margin: auto;
  }
  .home .image img {
    position: static;
    width: 100%;
  }
}

/* ----------------------------------------
04. About
---------------------------------------- */

.about .container {
  display: flex;
}
.about .wrapper {
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about .text {
  width: 50%;
}
.about .text .title {
  margin-bottom: 10px;
}
.about .text .title h2 {
  margin-bottom: 10px;
}
.about .text ul {
  margin-top: 20px;
}
.about .text ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.about .text ul li i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #fff2;
  margin-right: 10px;
  font-size: 14px;
}
.about .text .btn {
  margin-top: 20px;
}
.about .image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
}
.about .image img {
  width: 100%;
}

/* ------------ Responsive ------------ */

@media (max-width: 1120px) {
  .about .wrapper {
    flex-direction: column;
  }
  .about .text {
    width: 100%;
  }
  .about .image {
    width: 100%;
    margin-top: 20px;
  }
}
@media (max-width: 650px) {
  .about .image img {
    width: 100%;
  }
}

/* ----------------------------------------
05. Services
---------------------------------------- */

.services .wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.services .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 30px;
  background-color: var(--card-color);
  transition: 0.3s;
}
.services .card:hover img {
  transform: translateY(-5px);
}
.services img {
  width: 80px;
  transition: 0.3s ease-out;
}
.services h4 {
  font-size: 24px;
}

/* ------------ Responsive ------------ */

@media (max-width: 1000px) {
  .services .wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .services .wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ----------------------------------------
06. Token
---------------------------------------- */

.token .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.token .text {
  width: 50%;
}
.token .text p {
  margin-bottom: 30px;
}
.token ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.token .listtopie-link-color-out {
  display: flex;
}
.token .listtopie-link-color {
  display: flex;
  position: static;
  width: 100%;
  height: 100%;
}
.token .chart {
  width: 400px;
}

/* ------------ Responsive ------------ */

@media (max-width: 850px) {
  .token .wrapper {
    flex-direction: column;
  }
  .token .text,
  .token .image {
    width: 100%;
  }
  .token .chart {
    width: 100%;
  }
}

/* ----------------------------------------
07. Roadmap
---------------------------------------- */

.roadmap .wrapper {
  overflow: hidden;
  user-select: none;
}
.roadmap .h-bar {
  width: 100%;
  height: 4px;
  background: var(--main-color);
  margin-top: 181px;
}
.roadmap .item {
  text-align: center;
  padding: 0 15px;
}
.roadmap .box {
  text-align: center;
  position: relative;
  margin-top: -12px;
}
.roadmap h5 {
  position: absolute;
  bottom: 100%;
  width: 100%;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 600;
}
.roadmap .item .map {
  overflow: hidden;
}
.roadmap .map .junction {
  background: var(--main-color);
  border: 3px solid #fff;
  border-radius: 50%;
  height: 20px;
  width: 20px;
  position: relative;
  left: 50%;
  margin-right: 10px;
  margin-left: -10px;
  z-index: 1;
}
.roadmap .item .map .v-bar {
  background: var(--main-color);
  height: 50px;
  width: 4px;
  position: relative;
  left: 50%;
  margin-right: 2px;
  margin-left: -2px;
  overflow: hidden;
}
.roadmap .item .detail {
  margin-top: 10px;
}
.roadmap .item .detail h4 {
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.roadmap .item .detail p {
  margin-bottom: 0px;
}

.roadmap .owl-item:nth-child(even) .item .detail {
  position: absolute;
  bottom: 100%;
  margin-top: 0;
}
.roadmap .owl-item:nth-child(even) .item .detail p {
  margin-bottom: 10px;
}
.roadmap .owl-item:nth-child(even) .item .box {
  padding-top: 50px;
  margin-top: -62px;
}
.roadmap .owl-item:nth-child(even) .item h5 {
  top: 100%;
}
.roadmap .owl-item:nth-child(even) .item .map {
  transform: rotate(180deg);
  margin-top: -50px;
  display: inline-block;
}
.roadmap .owl-item:nth-child(even) .item .v-bar {
  margin-left: -2px;
}
.roadmap .owl-item {
  float: left;
}
.roadmap .owl-nav {
  display: none;
}

/* ----------------------------------------
08. Team
---------------------------------------- */

.team .wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.team .card {
  width: 100%;
}
.team .card .image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.team .card .overlay {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #000;
  opacity: 0;
  transition: 0.3s;
}
.team .card .overlay:hover {
  opacity: 0.8;
}
.team .card .social-icons {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  opacity: 0;
  transition: 0.3s;
}
.team .card .social-icons i {
  font-size: 22px;
}
.team .card .image:hover .social-icons {
  opacity: 1;
}
.team .card .image img {
  width: 100%;
  transition: 0.3s;
}
.team .card .image:hover img {
  transform: scale(1.05);
}

.team .card h4 {
  margin-top: 20px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}
.team .card h5 {
  margin-top: 10px;
  text-align: center;
  font-size: 16px;
  font-weight: normal;
  color: var(--second-color);
}

/* ------------ Responsive ------------ */

@media (max-width: 800px) {
  .team .wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ----------------------------------------
09. FAQ
---------------------------------------- */

.faq .wrapper {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.faq ul {
  width: 100%;
}
.faq li {
  background-color: var(--card-color);
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 30px;
}
.faq li .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  cursor: pointer;
}
.faq li .header i {
  transition: 0.3s;
}
.faq li .header.active i {
  transform: rotate(180deg);
}
.faq li .content {
  border-top: 1px solid #fff2;
  margin-top: 20px;
  padding-top: 20px;
  display: none;
}

/* ------------ Responsive ------------ */

@media (max-width: 950px) {
  .faq .wrapper {
    flex-direction: column;
    gap: 0;
  }
}

/* ----------------------------------------
10. App
---------------------------------------- */

.app .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.app .text {
  width: 50%;
}
.app .text .title h3 {
  color: var(--second-color);
}
.app .text .title h2 {
  margin-top: 10px;
}
.app .text p {
  margin-top: 20px;
}
.app .text .images {
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
}
.app .text .images img {
  width: 160px;
}
.app .image {
  display: flex;
  width: 50%;
}
.app .image img {
  width: 100%;
}

/* ------------ Responsive ------------ */

@media (max-width: 850px) {
  .app .wrapper {
    flex-direction: column;
  }
  .app .text {
    width: 100%;
  }
  .app .image {
    width: 100%;
    margin-top: 20px;
  }
}

/* ----------------------------------------
11. Blog
---------------------------------------- */

.blog .wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.blog .card {
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
  background-color: var(--card-color);
}
.blog .card .image {
  display: flex;
  cursor: pointer;
  overflow: hidden;
}
.blog .card .image img {
  width: 100%;
  transition: 0.3s;
}
.blog .card .image:hover img {
  transform: scale(1.05);
}
.blog .text {
  display: flex;
  flex-direction: column;
  padding: 30px 20px;
  gap: 20px;
}
.blog .text h5 {
  font-size: 14px;
  font-weight: normal;
}
.blog .text h5 span:first-child::after {
  content: "|";
  margin: 0 8px;
}
.blog .text h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}
.blog .text a {
  display: flex;
  align-items: center;
  gap: 5px;
  transition: 0.3s;
}
.blog .text a:hover {
  gap: 10px;
  color: var(--second-color);
}

/* ------------ Responsive ------------ */

@media (max-width: 1000px) {
  .blog .wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .blog .wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ----------------------------------------
12. Contact
---------------------------------------- */

.contact form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 76%;
  margin: auto;
}
.contact form .full-width {
  grid-column: 1 / 3;
}
input,
textarea {
  outline: none;
  border: none;
  width: 100%;
  padding: 16px 20px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: normal;
  font-family: "Cabin", sans-serif;
  color: #fff;
  background-color: var(--card-color);
}
textarea {
  resize: vertical;
}
.contact button {
  width: fit-content;
}

/* ------------ Responsive ------------ */

@media (max-width: 1000px) {
  .contact form {
    width: 100%;
  }
}

/* ----------------------------------------
13. Footer
---------------------------------------- */

footer {
  background-color: #080625;
  padding-top: 100px;
}
footer .container {
  width: 80%;
  margin: auto;
}
footer .wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
}

/* Info */
footer .info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-right: 100px;
}
footer .info .social-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}
footer .info .social-icons i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  background-color: var(--main-color);
  font-size: 18px;
  transition: 0.3s;
}
footer .info .social-icons i:hover {
  background-color: var(--main-color-dark);
}

/* Lists */
footer h5 {
  font-size: 18px;
  margin-bottom: 30px;
}
footer ul li {
  font-size: 16px;
  margin-bottom: 20px;
}
footer ul li a {
  display: flex;
  transition: 0.3s;
  width: fit-content;
}
footer ul li a::before {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  content: "\f101";
  font: var(--fa-font-solid);
  margin-right: 4px;
}
footer ul li a:hover {
  transform: translateX(2px);
  color: var(--main-color);
}

/* News Letter */
footer .news-letter input {
  background-color: #fff;
  color: #000;
  margin-bottom: 10px;
  border-radius: 30px;
}
footer .news-letter button {
  width: 100%;
}

/* Copy Right */
footer .copyright {
  width: 100%;
  height: 10vh;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #fff2;
  margin-top: 40px;
}

/* ------------ Responsive ------------ */

@media (max-width: 1000px) {
  footer .wrapper {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }
}
@media (max-width: 650px) {
  footer .wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* New Code Start */
/* ----------- Solutions Menu And Dropdown ------------- */
.solutions-li{
  position: relative;
}
.solutions-li .dropdown {
  /* display: none; */
  position: absolute;
  top: 103%;
  left: -72%;
  background-color: var(--card-color);
  box-shadow: 0 4px 8px rgb(0 0 0 / 74%);
  min-width: 245px;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.3s ease;
}

.solutions-li .dropdown::before {
  content: '';
  position: absolute;
  top: 0;
  left: 47%; /* Adjust to align center under parent */
  transform: translateY(-100%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--card-color);
}

.solutions-li .dropdown li a {
  display: block;
  padding: 0px 10px;
  color: #fff;
  text-decoration: none;
}

.solutions-li .dropdown li a:hover {
  /* background-color: #f2f2f2; */
  color: var(--second-color);
}

/* Show dropdown on hover */
.solutions-li:hover .dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.stable-token-dd {
  /* display: none; */
  padding-left: 10px;
  /* background: #f9f9f9; */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}

.stable-token-dd.active {
  max-height: 500px;
}
.has-submenu{
  display: flex !important;
  justify-content: space-between;
}

/* Caret indicator */
.has-submenu::after {
  content: '▼';
  font-size: 0.6em;
  margin-left: 6px;
}

.stable-token-dd li {
  padding: 8px 14px !important;
}

.chevron-icon {
  display: inline-block;
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 1;
}

/* Rotate up when submenu is active */
.chevron-icon.rotate-up {
  transform: rotate(180deg); /* flips the arrow */
}
.color-white{
  color: #fff !important;
}

/* Margin Classes */
.m-1{margin: .25rem !important;}
.m-2{margin: .50rem !important;}
.m-3{margin: 1rem !important;}
.m-4{margin: 1.5rem !important;}
.m-5{margin: 3rem !important;}

.mt-1{margin-top: .25rem !important;}
.mt-2{margin-top: .50rem !important;}
.mt-3{margin-top: 1rem !important;}
.mt-4{margin-top: 1.5rem !important;}
.mt-5{margin-top: 3rem !important;}

.mb-1{margin-bottom: .25rem !important;}
.mb-2{margin-bottom: .50rem !important;}
.mb-3{margin-bottom: 1rem !important;}
.mb-4{margin-bottom: 1.5rem !important;}
.mb-5{margin-bottom: 3rem !important;}

.ml-1{margin-left: .25rem !important;}
.ml-2{margin-left: .50rem !important;}
.ml-3{margin-left: 1rem !important;}
.ml-4{margin-left: 1.5rem !important;}
.ml-5{margin-left: 3rem !important;}

.mr-1{margin-right: .25rem !important;}
.mr-2{margin-right: .50rem !important;}
.mr-3{margin-right: 1rem !important;}
.mr-4{margin-right: 1.5rem !important;}
.mr-5{margin-right: 3rem !important;}

.mx-1{ margin-left: .25rem !important; margin-right: .25rem !important;}
.mx-2{ margin-left: .50rem !important; margin-right: .50rem !important;}
.mx-3{ margin-left: 1rem !important; margin-right: 1rem !important;}
.mx-4{ margin-left: 1.5rem !important; margin-right: 1.5rem !important;}
.mx-5{ margin-left: 3rem !important; margin-right: 3rem !important;}

.my-1{ margin-top: .25rem !important; margin-bottom: .25rem !important;}
.my-2{ margin-top: .50rem !important; margin-bottom: .50rem !important;}
.my-3{ margin-top: 1rem !important; margin-bottom: 1rem !important;}
.my-4{ margin-top: 1.5rem !important; margin-bottom: 1.5rem !important;}
.my-5{ margin-top: 3rem !important; margin-bottom: 3rem !important;}

/* Padding Classes */
.p-1{padding: .25rem !important;}
.p-2{padding: .50rem !important;}
.p-3{padding: 1rem !important;}
.p-4{padding: 1.5rem !important;}
.p-5{padding: 3rem !important;}

.pt-1{padding-top: .25rem !important;}
.pt-2{padding-top: .50rem !important;}
.pt-3{padding-top: 1rem !important;}
.pt-4{padding-top: 1.5rem !important;}
.pt-5{padding-top: 3rem !important;}

.pb-1{padding-bottom: .25rem !important;}
.pb-2{padding-bottom: .50rem !important;}
.pb-3{padding-bottom: 1rem !important;}
.pb-4{padding-bottom: 1.5rem !important;}
.pb-5{padding-bottom: 3rem !important;}

.pl-1{padding-left: .25rem !important;}
.pl-2{padding-left: .50rem !important;}
.pl-3{padding-left: 1rem !important;}
.pl-4{padding-left: 1.5rem !important;}
.pl-5{padding-left: 3rem !important;}

.pr-1{padding-right: .25rem !important;}
.pr-2{padding-right: .50rem !important;}
.pr-3{padding-right: 1rem !important;}
.pr-4{padding-right: 1.5rem !important;}
.pr-5{padding-right: 3rem !important;}

.px-1{ padding-left: .25rem !important; padding-right: .25rem !important;}
.px-2{ padding-left: .50rem !important; padding-right: .50rem !important;}
.px-3{ padding-left: 1rem !important; padding-right: 1rem !important;}
.px-4{ padding-left: 1.5rem !important; padding-right: 1.5rem !important;}
.px-5{ padding-left: 3rem !important; padding-right: 3rem !important;}

.py-1{ padding-top: .25rem !important; padding-bottom: .25rem !important;}
.py-2{ padding-top: .50rem !important; padding-bottom: .50rem !important;}
.py-3{ padding-top: 1rem !important; padding-bottom: 1rem !important;}
.py-4{ padding-top: 1.5rem !important; padding-bottom: 1.5rem !important;}
.py-5{ padding-top: 3rem !important; padding-bottom: 3rem !important;}


@media (min-width: 300px) {
  .col-sm-0 { display: none !important; }
  .col-sm-1 { flex: 0 0 auto; width: 8.333333%; }
  .col-sm-2 { flex: 0 0 auto; width: 16.666667%; }
  .col-sm-3 { flex: 0 0 auto; width: 25%; }
  .col-sm-4 { flex: 0 0 auto; width: 33.333333%; }
  .col-sm-5 { flex: 0 0 auto; width: 41.666667%; }
  .col-sm-6 { flex: 0 0 auto; width: 50%; }
  .col-sm-7 { flex: 0 0 auto; width: 58.333333%; }
  .col-sm-8 { flex: 0 0 auto; width: 66.666667%; }
  .col-sm-9 { flex: 0 0 auto; width: 75%; }
  .col-sm-10 { flex: 0 0 auto; width: 83.333333%; }
  .col-sm-11 { flex: 0 0 auto; width: 91.666667%; }
  .col-sm-12 { flex: 0 0 auto; width: 100%; }
}

@media (min-width: 768px) {
  .col-md-1 { flex: 0 0 auto; width: 8.333333%; }
  .col-md-2 { flex: 0 0 auto; width: 16.666667%; }
  .col-md-3 { flex: 0 0 auto; width: 25%; }
  .col-md-4 { flex: 0 0 auto; width: 33.333333%; }
  .col-md-5 { flex: 0 0 auto; width: 41.666667%; }
  .col-md-6 { flex: 0 0 auto; width: 50%; }
  .col-md-7 { flex: 0 0 auto; width: 58.333333%; }
  .col-md-8 { flex: 0 0 auto; width: 66.666667%; }
  .col-md-9 { flex: 0 0 auto; width: 75%; }
  .col-md-10 { flex: 0 0 auto; width: 83.333333%; }
  .col-md-11 { flex: 0 0 auto; width: 91.666667%; }
  .col-md-12 { flex: 0 0 auto; width: 100%; }
}

@media (min-width: 992px) {
  .col-sm-0 { display: flex !important; }
  .col-lg-1 { flex: 0 0 auto; width: 8.333333%; }
  .col-lg-2 { flex: 0 0 auto; width: 16.666667%; }
  .col-lg-3 { flex: 0 0 auto; width: 25%; }
  .col-lg-4 { flex: 0 0 auto; width: 33.333333%; }
  .col-lg-5 { flex: 0 0 auto; width: 41.666667%; }
  .col-lg-6 { flex: 0 0 auto; width: 50%; }
  .col-lg-7 { flex: 0 0 auto; width: 58.333333%; }
  .col-lg-8 { flex: 0 0 auto; width: 66.666667%; }
  .col-lg-9 { flex: 0 0 auto; width: 75%; }
  .col-lg-10 { flex: 0 0 auto; width: 83.333333%; }
  .col-lg-11 { flex: 0 0 auto; width: 91.666667%; }
  .col-lg-12 { flex: 0 0 auto; width: 100%; }
}

@media (min-width: 1200px) {
  .col-xl-1 { flex: 0 0 auto; width: 8.333333%; }
  .col-xl-2 { flex: 0 0 auto; width: 16.666667%; }
  .col-xl-3 { flex: 0 0 auto; width: 25%; }
  .col-xl-4 { flex: 0 0 auto; width: 33.333333%; }
  .col-xl-5 { flex: 0 0 auto; width: 41.666667%; }
  .col-xl-6 { flex: 0 0 auto; width: 50%; }
  .col-xl-7 { flex: 0 0 auto; width: 58.333333%; }
  .col-xl-8 { flex: 0 0 auto; width: 66.666667%; }
  .col-xl-9 { flex: 0 0 auto; width: 75%; }
  .col-xl-10 { flex: 0 0 auto; width: 83.333333%; }
  .col-xl-11 { flex: 0 0 auto; width: 91.666667%; }
  .col-xl-12 { flex: 0 0 auto; width: 100%; }
}

@media (min-width: 1400px) {
  .col-xxl-1 { flex: 0 0 auto; width: 8.333333%; }
  .col-xxl-2 { flex: 0 0 auto; width: 16.666667%; }
  .col-xxl-3 { flex: 0 0 auto; width: 25%; }
  .col-xxl-4 { flex: 0 0 auto; width: 33.333333%; }
  .col-xxl-5 { flex: 0 0 auto; width: 41.666667%; }
  .col-xxl-6 { flex: 0 0 auto; width: 50%; }
  .col-xxl-7 { flex: 0 0 auto; width: 58.333333%; }
  .col-xxl-8 { flex: 0 0 auto; width: 66.666667%; }
  .col-xxl-9 { flex: 0 0 auto; width: 75%; }
  .col-xxl-10 { flex: 0 0 auto; width: 83.333333%; }
  .col-xxl-11 { flex: 0 0 auto; width: 91.666667%; }
  .col-xxl-12 { flex: 0 0 auto; width: 100%; }
}

@media (min-width: 300px) {
  section .title h2 {
    font-size: 25px;
    font-weight: 600;
  }
  section .title h3{
    font-size: 25px;
    font-weight: 600;
  }
  .demo-section-div .title{
    font-size: 25px !important;
    font-weight: 600 !important;
  }
  .pain-point-title{
    text-align: center;
  }
  .demo-section-div{
    padding: 7% 3% !important;
  }
}
@media (min-width: 768px) {
  section .title h2 {
    font-size: 30px;
    font-weight: 600;
  }
  section .title h3{
    font-size: 30px;
    font-weight: 600;
  }
  .demo-section-div .title{
    font-size: 30px !important;
    font-weight: 600 !important;
  }
  .pain-point-title{
    text-align: center;
  }
  .demo-section-div{
    padding: 7% 3% !important;
  }
  .page-title-section {
    padding: 130px 0 50px 0 !important;
  }
}
@media (min-width: 992px) {
  section .title h2 {
    font-size: 38px;
    font-weight: 600;
  }
  .pain-point-title{
    text-align: left;
  }
  .demo-section-div .title{
    font-size: 38px !important;
    font-weight: bold !important;
  }
  .demo-section-div{
    padding: 3% !important;
  }
  .page-title-section {
      padding: 130px 0 50px 0 !important;
  }
}
/* Flex Class */
/* Flex Containers */
.d-flex {
  display: flex;
}

.d-inline-flex {
  display: inline-flex;
}

/* Flex Direction */
.flex-row {
  flex-direction: row;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-column {
  flex-direction: column;
}

.flex-column-reverse {
  flex-direction: column-reverse;
}

/* Flex Wrap */
.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

/* Justify Content (Main Axis) */
.justify-content-start {
  justify-content: flex-start;
}

.justify-content-end {
  justify-content: flex-end;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-around {
  justify-content: space-around;
}

.justify-content-evenly {
  justify-content: space-evenly;
}

/* Align Items (Cross Axis) */
.align-items-start {
  align-items: flex-start;
}

.align-items-end {
  align-items: flex-end;
}

.align-items-center {
  align-items: center;
}

.align-items-baseline {
  align-items: baseline;
}

.align-items-stretch {
  align-items: stretch;
}

/* Align Self (Individual Flex Items) */
.align-self-start {
  align-self: flex-start;
}

.align-self-end {
  align-self: flex-end;
}

.align-self-center {
  align-self: center;
}

.align-self-baseline {
  align-self: baseline;
}

.align-self-stretch {
  align-self: stretch;
}

/* Order of Flex Items */
.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-first {
  order: -1;
}

.order-last {
  order: 1;
}

/* Flex Grow, Shrink, and Basis */
.flex-grow-0 {
  flex-grow: 0;
}

.flex-grow-1 {
  flex-grow: 1;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.flex-shrink-1 {
  flex-shrink: 1;
}

.flex-fill {
  flex: 1 1 auto;
}

.flex-auto {
  flex: 1 1 auto;
}

.flex-none {
  flex: none;
}

/* Responsive Flex Classes */
@media (min-width: 576px) {
  .d-sm-flex {
    display: flex;
  }
}

@media (min-width: 768px) {
  .d-md-flex {
    display: flex;
  }
}

@media (min-width: 992px) {
  .d-lg-flex {
    display: flex;
  }
}

@media (min-width: 1200px) {
  .d-xl-flex {
    display: flex;
  }
}


.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.d-flex{
  display: flex;
}

.text-center{
  text-align: center !important;
}

.page-title-section{
  padding: 120px 0 50px 0 !important;
}

.demo-section-div{
  /* background-color:var(--light-color); */
  display: inline-block;  
  width:80%; 
  padding:3%; 
  border-radius: 15px;
}

.text-uppercase{
  text-transform: uppercase;
}

nav .list a.force-active {
  color: var(--second-color);
}
nav .list a.force-active::after {
  transform: scaleX(1);
}

#solutions-owl .item{
  background: #0c0938;
  padding: 30px 0px;
  margin: 10px;
  color: #FFF;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  text-align: center;
}

.owl-controls {
  display: none !important;
}
.owl-controls.material-controls {
  display: block !important;
}

div.owl-next, div.owl-prev {
  visibility: hidden;
}

/* to remove slide effect  css */
 .animated  {
    -webkit-animation-duration : 0 ms  !important;
    animation-duration : 0 ms  !important;
    -webkit-animation-fill-mode : both  !important;
    animation-fill-mode : both  !important;
  }  
  
  
  .fadeOut  {
    -webkit-animation-name : fadeOut  ;
    animation-name : fadeOut  ;
  }  
  @-webkit-keyframes  fadeOut  {
    0% {
      opacity : 0   ;
    }  
    100% {
      opacity : 0   ;
    }  
  }
  @keyframes  fadeOut  {
    0% {
      opacity : 0   ;
    }  
    100% {
      opacity : 0   ;
    }  
  }

#solutions-owl .item {
    display: block;
    /* position: absolute; */
    background: #000;
    width: 275px;
    height: 160px;
    font-size: 20px;
    text-align: center;
    color: #333f84;
    opacity: 0.95;
    border-radius: 10px;
    width: 97%;
}

.w-100{
  width : 100%;
}

.solutions-owl-controls .owl-prev{
  position: absolute;
  top: -110px;
  left: -50px;
}
.solutions-owl-controls .owl-next{
  position: absolute;
  top: -110px;
  right: -50px;
}
@media (max-width: 600px) {
  .solutions-owl-controls .owl-prev{
    left: 0px !important;
    top: 0px !important;
  }
  .solutions-owl-controls .owl-next{
    right: -0px !important;
    top: 0px !important;
  }
}