
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: #444444;
 
}

a {
  color: #6903aa;
  text-decoration: none;
}

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

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

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

.section-header {
  text-align: center;
  padding-bottom: 40px;
}

.section-header h2 {
  margin: 10px 0;
    padding: 10px 20px;
    font-size: 38px;
    line-height: 42px;
    font-weight: 700;
    color: #444;
    border-bottom: 4px solid #6903aa;
    display: inline-block;
}

.section-header p {
  font-size: 18px;
  margin: 0;
  color: #525252;

}

@media (max-width: 768px) {
  .section-header p {
    font-size: 28px;
    line-height: 32px;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #6903aa;
  min-height: 40px;
  margin-top: 82px;
  color: #fff;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 57px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 500;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol a {
  color: #fff;
  transition: 0.3s;
}

.breadcrumbs ol a:hover {
  text-decoration: underline;
}

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

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #6903aa;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6776f4;
  color: #fff;
}

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

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 40px 0;
}
.header .container{
  padding: 0 30px;
}
.header.header-scrolled {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}

.header .logo {
  line-height: 0;
}

.header .logo img {
  max-height: 80px;
  margin-right: 6px;
}

.header .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #6903aa;
  font-family: "Nunito", sans-serif;
  margin-top: 3px;
}

/*--------------------------------------------------------------
# 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, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 16px;
  font-weight: 600;
  color: #525252;
  white-space: nowrap;
  transition: 0.3s;
}

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

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #525252;
}

.btn{
  background: #fcc306;
  padding: 8px 20px!important;
  margin-left: 30px;
  border-radius: 25px;
  color: #fff;
}

.btn:hover {
  color: #fff!important;
  background: #593686;
}

.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: #fff;
  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;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
}

.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: #6903aa;
}

.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: #6903aa;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

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

@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: rgba(1, 22, 61, 0.9);
  transition: 0.3s;
}

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

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

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

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #6903aa;
}

.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: #fff;
  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: #6903aa;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  padding-top: 15px;
  padding-bottom: 90px;

  background: rgb(255,255,255);
  background: -moz-linear-gradient(25deg, rgba(255,255,255,1) 50%, rgba(221,199,253,1) 100%);
  background: -webkit-linear-gradient(25deg, rgba(255,255,255,1) 50%, rgba(221,199,253,1) 100%);
  background: linear-gradient(25deg, rgba(255,255,255,1) 50%, rgba(221,199,253,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ddc7fd",GradientType=1);

}
.hero .container{    border-radius: 30px;
  background-color: #fff;box-shadow: 0px 1px 8px #e3e3e3; padding-top: 100px;}
.hero img{
    margin-bottom: -110px;
}
.banner-content{padding:0 20px;}
.hero h1 {
  margin: 0;
  font-size: 48px;line-height:48px;
  font-weight: 700;
  color: #6903aa;
  background: #6903AA;
background: -webkit-linear-gradient(to bottom, #6903AA 0%, #BD01D9 100%);
background: -moz-linear-gradient(to bottom, #6903AA 0%, #BD01D9 100%);
background: linear-gradient(to bottom, #6903AA 0%, #BD01D9 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.hero h2 {
  color: #444444;
  margin: 15px 0 0 0;
  font-size:20px;
}


.hero .hero-img {
  text-align: right;
}

@media (min-width: 1024px) {

}

@media (max-width: 991px) {
  .hero {
    height: auto;
    padding: 120px 0 60px 0;
  }
  .hero .hero-img {
    text-align: center;
    margin-top: 80px;
  }
  .hero .hero-img img {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .hero {
    text-align: center;
  }
  .hero h1 {
    font-size: 32px;
  }
  .hero h2 {
    font-size: 24px;
  }
  .hero .hero-img img {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Index Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# What we do
--------------------------------------------------------------*/
#What_we_do{background-color: #f8f4ff;padding-bottom: 100px;}
#What_we_do > .container{margin-bottom:90px;}
.three-section{border-radius: 30px;
  background: rgb(255,255,255);
  background: -moz-linear-gradient(180deg, rgba(255,255,255,1) 51%, rgba(248,244,255,1) 95%);
  background: -webkit-linear-gradient(180deg, rgba(255,255,255,1) 51%, rgba(248,244,255,1) 95%);
  background: linear-gradient(180deg, rgba(255,255,255,1) 51%, rgba(248,244,255,1) 95%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#f8f4ff",GradientType=1);
}  
.three-section .middle{
  background: rgb(251,248,255);
  background: -moz-linear-gradient(180deg, rgba(251,248,255,1) 51%, rgba(248,244,255,1) 95%);
  background: -webkit-linear-gradient(180deg, rgba(251,248,255,1) 51%, rgba(248,244,255,1) 95%);
  background: linear-gradient(180deg, rgba(251,248,255,1) 51%, rgba(248,244,255,1) 95%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fbf8ff",endColorstr="#f8f4ff",GradientType=1);
}
.three-section .box {
  padding: 30px;
  margin-top: 10px;
  height: 100%;cursor: pointer;
}

.three-section .box h3 {
  font-size: 24px;
  color: #444;
  font-weight:600;
  margin-bottom: 18px;
}
.three-section .box h3, .three-section .box p {  text-align: center;}
.three-section .box img {
  padding: 30px 0px;
  transition: 0.5s;
  position: relative;top:0;left:50%;margin:0 0 0 -65px;
}
.three-section .box .hide{display:none;transition: 0.3s;}
.three-section .box:hover .hide{display:block;}
.three-section .box:hover {
  background-color: #6903aa;
  color: #fff;
  border-radius: 18px;
}
.three-section .box:hover h3 {color: #fff;}
.three-section .box:hover  img{
  position: absolute; transform: scale(1.5);
  top: 50%;margin: -65px 0 0 -65px;
  left: 50%;z-index: -1; opacity: 0.3;
}

.screen-shots{background: url(../images/features-bg.png) top center no-repeat;}
.screenshot{background-color: #fff;border-radius: 15px;box-shadow: 0px 0 10px #ccc;}
.screenshot-1{width: 90%;height: 310px;float: right;margin:0px 10% 0 20px;background:#fff url(../images/screemshot-1.jpg) top center no-repeat;}
.screenshot-2{width:80%;height:198px;float: right;margin: 20px 0 0 20px;background:#fff url(../images/screemshot-3.jpg) top center no-repeat;}
.screenshot-3{width:90%;height: 270px;margin:0px 0 20px 0;background:#fff url(../images/screemshot-2.jpg) top center no-repeat;}
.screenshot-4{width:90%;height: 270px;margin:0px 0 20px 10%;background:#fff url(../images/screemshot-4.jpg) top center no-repeat;}

.feature-icons .content .icon-box {margin: 0 0 20px 40px;border-bottom:1px solid #daceec;cursor: pointer;
}
.feature-icons .content .icon-box h4 {
  font-size:20px;
  font-weight:600;
  margin: 0 0 10px 0;
  color: #444;
}
.feature-icons .content .icon-box p {
  font-size: 15px;
  color: #525252;opacity: 60%;
}

.feature-icons .content .icon-box.highlight h4, .feature-icons .content .icon-box:hover h4{
  color: #6903aa;
}
.feature-icons .content .icon-box.highlight p , .feature-icons .content .icon-box:hover p{
  opacity:100%;
}

.feature-icons .accordion-item {background-color: transparent;border-width: 0 0 1px 0;}
.feature-icons .accordion-button {background-color: transparent;font-size:18px;font-weight: 600;padding: 1rem 0.25rem;}
.feature-icons .accordion-button:not(.collapsed) {color:#6903aa;background-color:transparent;box-shadow: inset 0 0px 0 rgb(0 0 0 / 13%);}
.feature-icons .accordion-button:focus {outline: none;}
.feature-icons .accordion-body {padding: 0.25rem;}
/*--------------------------------------------------------------
# discover
--------------------------------------------------------------*/
.discover{margin-top: -100px;display:none;}
.discover .container{background: url(../images/discover-bg.png) top center no-repeat;min-height: 215px;
  background-size: 100%;justify-content: center;align-items: center;display: flex;}
.discover h3{color: #fff;font-size: 38px;font-weight: 700;}
.discover .btn{margin: 20px auto 0;display: inherit;border:2px solid #fcc306;min-width: 150px;}
.discover .btn:hover{border:2px solid #fff;}


/*--------------------------------------------------------------
# Resources
--------------------------------------------------------------*/
.resources{display:none;}
.resources-img{border-radius: 15px;overflow: hidden;height:200px;}
.resources-title{ font-size: 20px;font-weight: 700;margin: 10px 0;}
.resources-box p{font-size: 15px;  color: #525252;opacity: 60%;}
.resources-box p.user{opacity:1;}
.resources-box p.user img{width: 55px;border-radius: 50%;margin-right: 15px;}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.fax {display: none;}
.contact{background-color: #6903aa;
  background: -webkit-linear-gradient(to bottom, #6903AA 0%,  #6903AA 80%, #9502c2 100%);
  background: -moz-linear-gradient(to bottom, #6903AA 0%,  #6903AA 80%, #9502c2 100%);
  background: linear-gradient(to bottom, #6903AA 0%,  #6903AA 80%, #9502c2 100%);}
.contact .section-header h2{color: #fff;border-bottom: 4px solid #fcc306;}
.disclaimer{color:#c9a3fb;font-size: 14px;}
.disclaimer a{color:#fff;}
.contact button{background: #fcc306;  padding: 8px 30px;  margin-left: 30px;  border-radius: 25px;border: 0px solid red;
  float: right;  color: #fff;}
  
.contact .email-form {
  height: 100%;
}

.contact .email-form input {
  box-shadow: none;
  font-size: 16px;
  border-radius: 20px;
  background-clip: border-box;
}

.contact .email-form input:focus {
  border-color: #6903aa;
}

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

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

.contact .php-email-form button[type="submit"] {
  background: #6903aa;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius:25px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #5c398a;
}

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

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


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: #f6f9ff;
  padding: 0 0 30px 0;
  font-size: 12px;
}

.footer .copyright {
  padding-top: 30px;
  color: #444;
}

.thankyou-container{height: 70vh;align-items: center;justify-content: center;display: flex;}
.thankyou-container .banner-content{
    text-align: center;
    /* padding: 100px 0; */
}

@media (max-width: 760px) {
  .header-button{margin:0 20px 20px;}
  .hero .hero-img {margin-top:20px;}
  .hero h1 {line-height: 36px; }
  .hero h2 {font-size: 18px;}
  .header {padding: 10px 0;}
  .hero {padding-top: 100px;}
  .hero .container {padding-top: 30px;}
  .section-header h2 {padding: 0px 10px;font-size: 30px;border-bottom: 3px solid #6903aa;}
  .section-header p {font-size: 20px;line-height: 26px;}
}

@media (min-width: 760px) and (max-width: 1000px) {
  .screen-shots {background-size: 100%;}
  .hero h1 {font-size: 36px;    line-height: 36px;}
  .hero h2 {font-size: 18px;}
  .hero .hero-img {margin-top:20px;}
  .hero .hero-img img {max-width: 400px;}
}
@media (min-width: 1001px) and (max-width: 1200px) {
  .hero h1 {font-size: 40px;line-height: 40px}
  .hero h2 {font-size: 16px;}
}