* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  transition: 0.2s;
}
@font-face {
  font-family: fontBold;
  src:  url('../fonts/gilroy-extrabold.otf');
}
@font-face {
  font-family: fontLight;
  src:  url('../fonts/gilroy-light.otf');
}
body {
  /*font-family: -apple-system, BlinkMacSystemFont, Gilroy, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;*/
  font-family: fontLight, Gilroy, Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

p, li, a, button, label {
  /*font-family: fontLight;*/
}
.showcase-tittle , .hero-tittle
{
  font-family: fontBold;
}
html {
  font-size: 14px;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: currentColor;
}
.wrapper {
  width: 80%;
  margin: auto;
}
header {
  position: fixed;
  width: 100%;
  top: 0;
  height: auto;
  background: #fff;
  z-index: 30;
  transition: 0.3s;
}
header.active {
  box-shadow: 0px 4px 7px rgba(17, 17, 17, 0.094);
}
.section-pad, .hero-pad {
  padding: 45px 0;
}
.section-pad {
  padding: 25px 0;
}
.light-bg {
  /*background: #f8e7ff;*/
  background: #fff5ff;
}
.flex {
  display: flex;
  flex-wrap: wrap;
}
.flex.items-center {
  align-items: center;
}
.nav-wrapper {
  height: 80px;
}
.flex-1 {
  flex: 1;
}
.nav-links {
  text-transform: capitalize;
}
.nav-links li {
  display: inline-block;
  margin: 0 0.5em;
  color: rgba(51, 51, 51, 0.659);
}
.primary-links li.active {
  font-family: fontBold;
  color: #111;
}
.primary-links {
  margin: auto;
}
.nav-links a {
  display: block;
}
a:hover {
  transform: scale(1.1);
}
.secondary-links li a {
  padding: 8px 16px;
}
.secondary-links li {
  border: 1px solid rgba(0, 0, 255, 0.127);
  border-radius: 30px;
  box-shadow: 2px 3px 4px rgba(17, 17, 17, 0.108);
}
.secondary-links li.active-link {
  background: #9900cc;
  color: #fff;
  font-weight: bold;
}
.flex.center {
  justify-content: center;
}
.hero {
  /* min-height: calc(100vh - 80px); */
  margin-top: 80px;
}
.gap-24 {
  gap: 24px;
}
.hero-tittle {
  font-size: 3.1em;
  line-height: 1.2em;
  text-transform: capitalize;
  margin-bottom: 32px;
  color: #444;
}
.hero-text {
  margin-bottom: 24px;
  font-size: 1.2em;
  font-weight: bold;
  color: rgba(17, 17, 17, 0.606);
}

.hero-btn {
  display: inline-block;
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 255, 0.127);
  border-radius: 25px;
  box-shadow: 2px 3px 4px rgba(17, 17, 17, 0.108);
  background: black;
  color: #eee;
  font-size: 14px;
}
.hero-btn:hover {
  background: #444;
}
.hero-btn.active {
  background: #222;/*rgba(0, 0, 255, 0.702);*/
  color: #fff;
  margin-right: 1em;
}
.logo {
  width: 140px;
}
.mx-top {
  margin-top: 64px;
}
p {
  font-size: 16px;
}
.showcase {
  /*background: #e6e6e6;*/
  background: #9900cc; /* url("../img/Moon.svg") */
  height: 352px;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  color: #fff;
}
.showcase-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  text-align: center;
  justify-content: center;
}
img {
  width: 100%;
}
.showcase-content p {
  width: 50%;
  text-align: center;
  font-size: 16px;
  line-height: 2em;
}
.xx-header {
  font-size: 3em;
}
.showcase-tittle {
  margin: 64px 0;
  font-size: 2em;
  text-transform: capitalize;
  text-align: center;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}
.feature {
  width: calc(33% - 8px);
  min-height: auto;
  /*box-shadow: 0px 7px 15px rgba(17, 17, 17, 0.14);*/
  box-shadow: 2px 4px 8px rgba(17, 17, 17, 0.14);
  padding: 24px;
  margin: 4px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.feature::before {
  position: absolute;
  content: "";
  z-index: -1000;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 0, 0.095);
  left: 0;
  top: 98%;
}
.feature-icon {
  display: flex;
  align-items: center;
  gap: 16px;
  text-transform: capitalize;
  margin-bottom: 24px;
  color: rgba(0, 0, 0, 0.667);
}
.feature-icon .icon {
  color: #ff6699;
  font-size: 2.7em;
}
.feature {
  background: #fff;
}
.feature p {
  opacity: 0.7;
  text-align: justify;
}
footer {
  height: 72px;
  background: #222;
  color: #fff;
  display: grid;
  place-items: center;
}
.sub-hero {
  padding: 25px 0px;
  /*margin: 34px 0px;*/
}
.menu-btn {
  justify-self: flex-start;
  display: none;
  position: absolute;
  right: 0;
  font-size: 1.5em;
  z-index: 11;
}
.nav-wrapper {
  position: relative;
}
.text {
  margin-bottom: 24px;
}
.c-blue {
  color: #9900cc;
}
.showcase-3 {
  background: #f2f2f2;
  color: #222;
}
.sm-header {
  font-size: 1.9em;
}
.list {
  font-size: 1.2em;
  margin-bottom: 32px;
  display: flex;
  gap: 8px;
  flex-direction: column;
}
.list li {
  line-height: 1.7em;
}
p {
  line-height: 1.7em;
}
.form {
  width: 100%;
  height: auto;
  background: #fff;
  box-shadow: 5px 7px 14px rgba(17, 17, 17, 0.19);
  /*margin-top: -56px;*/
  padding: 32px;
  border-radius: 16px;
}
.form-header h1 {
  font-size: 1.7em;
  text-transform: uppercase;
}
.form-header p {
  color: rgba(34, 34, 34, 0.605);
}
.col-3 {
  width: 33%;
}
.col-1 {
  width: 100%;
}
.form-group {
  text-transform: capitalize;
  gap: 4px;
  margin-bottom: 16px;
}
.form-header {
  margin-bottom: 24px;
}
.gap-16 {
  gap: 4px;
}
.form-group input {
  padding: 12px;
  border: 1px solid #dedede;
  outline-color: blue;
  border-radius: 6px;
}
.coloumn {
  flex-direction: column;
}
.modal {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  background: rgba(17, 17, 17, 0.067);
  z-index: 10000;
  display: none;
}
button {
  cursor: pointer;
}
.modal.active {
  display: flex;
}
.white {
  background: white;
}
.col-2 {
  width: 50%;
}
.yellow {
  background-color: yellow !important;
  color: #111 !important;
}
.modal-content {
  padding: 24px;
  position: relative;
}
.close-btn {
  position: absolute;
  right: -16px;
  font-size: 1.2em;
  top: -24px;
  padding: 8px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  background: #fff;
  border-radius: 50%;
}
.close-btn:hover .icon {
  transform: scale(1.5);
}
.modal h1 {
  font-size: 1.5em;
  margin-bottom: 24px;
  text-transform: capitalize;
}
.no-wrap {
  flex-wrap: nowrap;
}
.no-border {
  border: none;
  outline: none;
}
.testimonial-slider {
  height: auto;
}
.testimonials {
  height: 100%;
  background: #9900cc;
  border-radius: 8px;
  height: 300px;
  padding: 2em;
  /* position: relative; */
  /* #9900cc7c */
}
.testimony-header {
  color: white;
  text-transform: capitalize;
  font-size: 2em;
  margin-bottom: 64px;
}
.slider-item {
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 7px 15px rgba(17, 17, 17, 0.14);
  margin-bottom: 32px;
  display: flex;
  min-height: 300px !important;
  gap: 16px;
  justify-content: center;
  align-items: center;
  position: relative;
}
.testimonial {
  min-height: 450px;
  margin-bottom: 64px;
}
.comment-icon {
  position: absolute;
  top: 4px;
  right: 2em;
  color: #9900cc;
  opacity: 0.3;
  font-size: 24px;
}
.slider-item p {
  opacity: 0.8;
  padding: 1.2em;
  text-align: justify;
  font-size: 14px;
}
.slider-img {
  height: 100%;
  /* width: 500px; */
  /* background: #4d4d4d; */
  /* color: #fff; */
  display: flex;
  padding: 16px;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
  flex-direction: column;
  gap: 16px;
}
.slider-img h3 {
  font-size: 13px;
  text-align: center;
  font-weight: 400;
}
.slider-img img {
  border-radius: 100%;
  width: 100px;
  /* border: 3px solid rgba(255, 255, 255, 0.471); */
  height: 100px;
}
.mx-bottom {
  margin-bottom: 64px;
}
.mx-bottom-32 {
  margin-bottom: 32px;
}
.partners {
  display: grid;
  /*grid-template-columns: repeat(4, 1fr);*/
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-transform: uppercase;
}
.partners div {
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*
 ____________________________________
 SIGNUP STYLES  
 ____________________________________
*/
.form-container {
  margin-top: 72px;
  gap: 32px;
  margin-bottom: 40px;
}
.validate {
  color: red;
  padding-left: 12px;
}
.gap-8 {
  gap: 8px;
}
.form-container .col-2 {
  width: 48%;
}
.p-bt {
  padding: 64px 0px;
}
.s-between {
  justify-content: space-between;
}
.p-32 {
  padding: 32px;
}
.form-header h1 {
  text-transform: capitalize;
  margin-bottom: 16px;
  font-size: 2.2em;
}
.form-container label {
  font-weight: bold;
}
.form-container a {
  font-weight: 400;
  color: #4d4d4d;
}
.form-container button a {
  color: #fff;
}
.form-group input,
.form-group select {
  border: none;
  padding: 16px;
  outline-color: blue;
  background: rgba(238, 238, 238, 0.346);
}
.relative {
  position: relative;
}
.pwd-visibility {
  position: absolute;
  right: 16px;
  top: calc(50% - 8px);
  cursor: pointer;
  padding: 4px;
  color: red;
}
.pwd-visibility i {
  color: #9900cc;
}
.dashboard-details {
  min-height: 250px;
  background: #fafafa;
  padding: 32px 16px;
  margin-top: 72px;
}
.btn {
  background: #9900cc;
  color: #fff;
  text-transform: capitalize;
  padding: 16px;
}
.dashboard-details div > .col-2 {
  width: 35%;
}
.dashboard-details div > .features {
  padding: 32px 4em;
  border-radius: 4px;
  text-transform: uppercase;
}

.dashboard-details h1 {
  font-size: 1.2em;
}
.dashboard-details h2 {
  font-weight: 400;
  font-size: 1.5em;
  margin: 8px 0px;
}
.table {
  padding: 32px;
  min-width: 100%;
  border-collapse: collapse;
  width: auto;
}
.overflow {
  overflow: auto;
}
.table th,
.table td {
  text-align: center;
  border-top: 1px solid #dedede;
  padding: 16px;
  text-transform: capitalize;
  border-radius: 8px;
}
@media (max-width: 820px) {
  .testimonial-slider {
    padding-bottom: 32px;
  }
  .hidden {
    display: none;
  }
  .modal-content {
    width: 80% !important;
  }
  .col-2,
  .col-3 {
    width: 49%;
  }
  .primary-links {
    margin: 0;
  }
  .nav-links li {
    display: block;
    margin: 24px 0;
  }
  .nav-links {
    position: fixed;
    width: 100%;
    left: 0;
    top: 72px;
    height: 0;
    overflow: hidden;
    justify-content: center;
    gap: 24px;
    flex-direction: column;
    background: #fff;
    text-align: center;
    align-items: center;
    box-shadow: 4px 8px 16px rgba(17, 17, 17, 0.038);
  }
  .nav-links.active {
    height: 352px;
  }
  .secondary-links {
    display: flex;
    gap: 24px;
  }
  .menu-btn {
    display: block;
    cursor: pointer;
  }
  .wrapper {
    width: 95%;
  }
  .feature {
    width: 48%;
  }
  .hero-tittle {
    font-size: 1.7em;
  }
}
@media (max-width: 500px) {
  .dashboard-details div > .features {
    padding:64px 2em;
    /* width: 300px !important; */
  }
  .dashboard-details div > .col-2 {
    width: 100%;
  }
  .partners {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .slider-item {
    flex-direction: column;
    min-height: 350px !important;
    /* padding:16px 6px; */
    gap: 0px !important;
  }
  .slider-img{
    padding: 0px;
  }
  .form-container .col-2 {
    width: 100%;
  }
  .col-1,
  .col-2,
  .col-3 {
    width: 100%;
  }
  .showcase-2 {
    margin: 32px 0px;
  }
  .reverse {
    flex-direction: column-reverse !important;
  }
  .wrapper {
    width: 90%;
  }
  .feature {
    width: 100%;
  }
  .hero {
    padding: 64px 0px;
  }
  .showcase p {
    width: 100%;
  }
  .xx-header {
    margin: 32px 0px;
    font-size: 2em;
  }
  .hero-wrapper {
    flex-direction: column;
  }
} 
@media (max-width: 430px) {
  .hero {
    margin-top: 40px;
  }
  .section-pad, .hero-pad {
    padding: 25px 0;
  }
}

.alert {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    min-width: 350px;
    padding: 5px;
    border-radius: 4px;
    min-height: 50px;
    /*line-height: 50px;*/
    background: #ac00e6;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    z-index: 1001;
    box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.05);
    transition: all 2s ease;
}
.alert .close {
    color: #fff;
    padding: 8px;
    font-size: 20px;
    border-radius: 15px;
    cursor: pointer;
    float: right;
}
#movetop {
  display: none;
  position: fixed;
  bottom: 115px;
  right: 15px;
  z-index: 99;
  border: 1px solid #fff;
  outline: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  background: #9900cc;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -o-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  padding: 0;
}
#movetop span.fa {
  line-height: 24px;
  color: #fff;
  font-size: 22px;
}

#whatsapp {
  position: fixed;
  bottom: 98px;
  right: 15px;
  z-index: 99;
  font-size: 16px;
  border: none;
  outline: none;
  cursor: pointer;
  color: #fff;
  width: 40px;
  height: 40px;
  background: ;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -o-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  padding: 0;
}

a span.fa-whatsapp {
  vertical-align: middle;
  padding-left: 3px;
  padding-right: 3px;
  font-size: 40px;  
  color: #fff;
  background-color: #33cc33;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -o-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
}
.se-pre-con {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: url(../img/Preloader_11.gif) center no-repeat rgba(255, 255, 255, 0.80);
}

.loader-success {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: url(../img/success.gif) center no-repeat rgba(255, 255, 255, 0.80);
}

.invalid {
  /*background-color: #ffdddd;*/
  /*border-color: red;*/
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.valid {
  /*background-color: #ffdddd;*/
  border-color: transparent;
}