:root {
  /* #region  */
  --primary-color: #5f0099;
  --primary-color-opacity-30: rgba(94, 0, 153, 0.30);
  --secondary-color: rgb(142, 30, 252);

  --gradient-primary-color: #7a60ff;
  --gradient-secondary-color: #cd9ffa;
  /* #endregion */

  --primary-color: hsl(255, 83%, 39%);
  --primary-color-200: hsl(255, 83%, 49%);
  --primary-color-700: hsl(255, 83%, 79%);
  --primary-color-opacity-30: rgba(94, 0, 153, 0.30);
  --secondary-color: hsl(292, 77%, 39%);

  --gradient-primary-color: #4815e4;
  --gradient-secondary-color: #c51dde;
}

* {
  padding: 0;
  margin: 0;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
}

a {
  color: var(--primary-color);
}

a:hover {
  color: var(--primary-color);
}

h1,
h2,
h3 {
  font-weight: 700;
}

h4,
h5 {
  font-weight: 600;
}

h6 {
  font-weight: 500;
}

.section-content {
  margin-top: 80px;
}

.line.white {
  background-color: #fafafa;
}

.line.white::after {
  border-bottom-color: #fafafa;
}

/* #region Utility Classes */
.white {
  color: #ffffff !important;
}

.black {
  color: #000000;
}

.media-right-margin {
  margin-right: 25px;
}

/* #endregion */

/* #region Download Button */
ul.download-section {
  display: flex;
  column-gap: 20px;
  row-gap: 10px;
}

@media (max-width: 350px) {
  ul.download-section {
    flex-direction: column;
  }
}

ul li a.download-btn {
  width: 180px;
  height: 55px;
  position: relative;
  display: flex;
  align-items: center;
  background-color: #fafafa;
  color: var(--primary-color);
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 20px;
  box-shadow:
    rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
    rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  transition: background-color 0.5s ease;
}

ul li a.download-btn::before {
  content: '';
  width: 6px;
  height: 50%;
  position: absolute;
  left: 0px;
  background: var(--gradient-primary-color);
  transition: background-color 1s ease;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

ul li a.download-btn .icon {
  width: 100%;
  max-height: 100%;
  border-radius: unset;
  margin-right: 12px;
}

ul li a.download-btn .icon path {
  fill: var(--gradient-primary-color);
}

ul li a.download-btn:hover {
  background-color: var(--primary-color-200);
  color: #fafafa;
}

ul li a.download-btn:hover::before,
ul li a.download-btn:hover::after {
  background-color: #fafafa;
}

ul li a.download-btn:hover .icon path {
  fill: #fafafa;
}

/* #endregion */

/* #region Navbar */
.navbar {
  position: fixed;
  right: 0;
  left: 0;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  min-height: 40px;
  line-height: 30px;
  background: transparent;
  z-index: 1030;
}

.navbar .container {
  max-width: 100%;
  padding-left: 180px;
  padding-right: 50px;
}

.navbar .container .navbar-logo img {
  max-height: 80px;
}

.navbar .active {
  color: #fafafa !important;
  border-bottom: 2px solid #fafafa;
}

.navbar .nav-item {
  margin: 0 5px;
  padding: 0;
}

.navbar .nav-item a {
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
}

.navbar .nav-item a:hover {
  color: #fafafa !important;
  border-bottom: 2px solid #fafafa;
}

.navbar .nav-link {
  position: relative;
  padding: 0;
}

.navbar .navbar-toggler {
  cursor: pointer;
}

.navbar .navbar-toggler span {
  color: #fff;
}

.navbar-style2 .active:after,
.navbar-style2 .nav-link:after {
  display: none;
}

.nav-scroll {
  background: #fff;
  -webkit-box-shadow: 0 1px 8px 3px rgba(0, 0, 0, 0.0509803922);
  box-shadow: 0 1px 8px 3px rgba(0, 0, 0, 0.0509803922);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.nav-scroll .navbar-nav>li>a {
  color: #333;
}

.nav-scroll .navbar-nav .nav-link:hover,
.nav-scroll .navbar-nav .nav-link.active {
  color: var(--primary-color) !important;
  border-bottom-color: var(--primary-color);
}

.nav-scroll .navbar-brand img {
  -webkit-transform: scale(1.03) !important;
  transform: scale(1.03) !important;
}

.nav-scroll .navbar-toggler {
  cursor: pointer;
}

.nav-scroll .navbar-toggler span {
  color: #333;
}

.nav-scroll .nav-link:hover:after {
  background-color: #2388ed;
}

.nav-scroll .active {
  position: relative;
}

/* #endregion */

/* #region Banner */
.banner .container {
  min-height: 496px;
  max-width: 100%;
  padding-left: 180px;
  padding-right: 50px;
  padding-bottom: 100px;
  overflow: hidden;
}

.banner {
  background: var(--gradient-primary-color);
  background: linear-gradient(to left, var(--gradient-primary-color), var(--gradient-secondary-color));
  background-color: #4158D0;
  padding: 100px 0px;
  position: relative;
}

.banner::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/pattern.png);
}

.banner a.weblink {
  color: #ffffff;
  border-bottom: 1px dotted #ffffff;
}

.banner a:hover {
  text-decoration: none;
}

.svg-wave {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.svg-wave img {
  width: 100%;
}

.banner-text {
  margin: 65px 0px 0px;
}

.banner-text p {
  margin: 40px 0px;
}

.banner-text ul {
  list-style: none;
}

.banner .app-images {
  box-shadow: var(--primary-color-opacity-30) 0px 8px 24px;
  border-radius: 10px;
  border: 6px solid #fafafa;
}

/* #endregion */

/* #region About */
.prelative {
  position: relative;
}

.section-padding {
  padding: 80px 0px;
}

.sectioner-header {
  width: 69%;
  margin: 0 auto;
}

.line {
  height: 2px;
  width: 50px;
  background: var(--secondary-color);
  display: block;
  margin: 20px auto 20px;
}

.line::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 150px;
  height: 2px;
  border-bottom: 2px dashed var(--secondary-color);
  margin-left: -75px;
}

.sectioner-header p {
  color: #818992;
  font-size: 17px;
}

.icon-box {
  margin-bottom: 50px;
}

.icon-box i {
  display: block;
  position: relative;
  width: 135px;
  height: 135px;
  border-radius: 100px;
  background: var(--gradient-primary-color);
  background: linear-gradient(to left, var(--gradient-primary-color), var(--gradient-secondary-color));
  color: #ffffff;
  font-size: 50px;
  line-height: 135px;
  margin: 0 auto;
}

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

.icon-box p {
  color: #818992;
  font-size: 14px;
  width: 80%;
  margin: 0 auto;
}

.download-btn-2 {
  color: var(--secondary-color);
  padding: 20px 20px;
  border: 2px solid var(--secondary-color);
  border-radius: 8px;
  margin-top: 30px;
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
}

.download-btn-2:hover {
  background: var(--secondary-color);
  color: #ffffff;
  text-decoration: none;
}

/* #endregion */

/* #region Video */
.video-section {
  background: url(../images/video-bg.jpg) no-repeat fixed center;
  background-size: cover;
  overflow: hidden;
}

.video-overlay {
  background: linear-gradient(to left,
      rgba(122, 96, 255, 0.9),
      rgba(205, 159, 250, 0.9));
}

.video-section h3 {
  font-weight: 600;
  font-size: 38px;
}

.video-section i {
  display: block;
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: 100px;
  background: #ffffff;
  color: var(--secondary-color);
  font-size: 30px;
  line-height: 70px;
  margin: 0 auto;
  cursor: pointer;
}

.video-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-content: center !important;
  -ms-flex-line-pack: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.video-popup .video-src {
  position: relative;
  width: 700px;
  max-width: 80%;
}

.video-popup .iframe-src {
  width: 100%;
  height: 0;
  padding-top: 56.3%;
  position: relative;
  display: none;
}

.video-popup .iframe-src iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* #endregion */

/* #region Team */
.team {
  background: #fafafa;
  border-top: 1px solid #e4e4e4;
}

.team-detail {
  margin-top: 40px;
}

.team-detail img {
  border-radius: 50%;
  width: 70%;
}

.team-detail h4 {
  color: var(--secondary-color);
  margin-top: 20px;
  font-size: 17px;
  margin-bottom: 0px;
}

/* #endregion */

/* #region Testimonial */
.testimonial {
  background: var(--gradient-primary-color);
  background: linear-gradient(to left, var(--gradient-primary-color), var(--gradient-secondary-color));
  padding: 100px 0px;
  position: relative;
}

.testimonial::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/pattern.png);
}

.bx-prev {
  left: -90px !important;
  background: url(../images/arrow-left.png) no-repeat !important;
  background-size: auto auto !important;
  background-size: 100% 100% !important;
}

.bx-next {
  right: -90px !important;
  background: url(../images/arrow-right.png) no-repeat !important;
  background-size: auto auto !important;
  background-size: 100% 100% !important;
}

.bx-wrapper {
  border: none !important;
  background: rgba(255, 255, 255, 0.81) !important;
  border-radius: 5px !important;
  box-shadow: none !important;
}

.bx-wrapper .bx-pager.bx-default-pager a.active {
  background: #fafafa;
}

.bx-wrapper .bx-pager.bx-default-pager a {
  background: #ffffffb5;
}

.slider-item {
  padding: 20px;
}

.slider .test-img img {
  border: 12px solid #fff;
  border-radius: 50%;
  width: 100%;
  height: auto;
}

.test-img {
  float: left;
  width: 20%;
  margin-right: 5%;
}

.test-text {
  float: left;
  width: 75%;
}

.slider .title {
  display: block;
  position: relative;
  margin: 0 0 20px;
  font-size: 1.125em;
  line-height: 1.25;
}

.slider .title span {
  display: block;
  font-size: 1.5em;
  font-weight: 700;
}

/* #endregion */

/* #region FAQ */
.faq {
  background: #fafafa;
  border-bottom: 1px solid #e4e4e4;
}

.faq-content {
  margin: 20px 0px;
}

.faq-content h4 {
  font-weight: 400;
  font-size: 20px;
}

.faq-content p {
  color: #818992;
  font-weight: 300;
  margin-top: 15px;
}

/* #endregion */

/* #region Contact */
#contact_form .form-input {
  border: 1px solid #e4e4e4;
}

input {
  height: 42px;
  padding: 0 1rem;
  background: #fff;
  border-radius: 30px;
  margin-bottom: 1rem;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: 0;
}

#contact_form textarea {
  resize: none;
  padding: 1rem;
  height: 150px;
  background: #fff;
  border: 0;
  border-radius: 30px;
  margin-bottom: 1rem;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn-grad {
  padding: 0.7rem 2rem;
  display: inline-block;
  color: #fff;
  border-radius: 2rem;
  border: 0;
  background: var(--gradient-primary-color);
  background: linear-gradient(to left, var(--gradient-primary-color), var(--gradient-secondary-color));
  cursor: pointer;
}

.contact-info {
  padding: 2rem 2rem 1rem;
  border-radius: 8px;
  background: var(--gradient-primary-color);
  background: linear-gradient(to left, var(--gradient-primary-color), var(--gradient-secondary-color));
}

.contact-item {
  margin: 23px 0px;
}

.contact-item i {
  font-size: 20px;
}

.contact-item p {
  line-height: 20px;
  margin: 0;
}

/* #endregion */

/* #region Download */
.download {
  background: var(--gradient-primary-color);
  background: linear-gradient(to left, var(--gradient-primary-color), var(--gradient-secondary-color));
  padding: 100px 0px;
  position: relative;
}

.download::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/pattern.png);
}

.download ul {
  list-style: none;
}

.download a:hover {
  text-decoration: none;
}

.download ul li {
  display: inline-block;
  margin: 0px 10px 10px 0px;
}

/* #endregion */

/* #region Footer */
.footer-copy {
  background: #ffffff;
  color: #242424;
  font-size: 13px;
  text-align: center;
  padding: 15px 0px;
}

.footer-copy p {
  margin-bottom: 0px;
}

/* #endregion */

@media all and (max-width: 991px) {

  /* #region Navbar */
  .navbar .navbar-collapse {
    overflow: auto;
    background: var(--primary-color-700);
    color: #fff !important;
    text-align: center;
    padding: 10px 0;
    border-top: 2px solid #fff;
  }

  .nav-scroll .navbar-collapse {
    background: #fff !important;
    border-top: 2px solid var(--secondary-color);
  }

  .navbar .nav-item {
    padding: 0px 35%;
  }

  /* #endregion */

  /* #region Contact */
  #contact_form {
    margin-bottom: 20px;
  }

  /* #endregion */
}

@media all and (max-width: 768px) {
  h2 {
    font-size: 25px;
  }

  h3 {
    font-size: 23px;
  }

  .section-content {
    margin-top: 40px;
  }

  /* #region Download Button */
  ul li a.download-btn {
    padding: 10px 10px;
    width: 150px;
  }

  ul li a.download-btn::before {
    width: 4px;
  }

  ul li a.download-btn .icon {
    margin-right: 6px;
  }

  /* #endregion */

  /* #region Navbar */
  .navbar .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .nav-scroll .navbar-brand img,
  .navbar-brand img {
    transform: scale(0.75) !important;
    -webkit-transform: scale(0.75) !important;
  }

  /* #endregion */

  /* #region Banner */
  .banner-text {
    padding-right: 0px;
    margin: 10px 0px 0px;
  }

  .banner .container {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    min-height: auto;
  }

  .banner-text p {
    margin: 25px 0px;
  }

  .banner-text ul li a img {
    width: 140px;
    border-radius: 7px;
  }

  /* #endregion */

  /* #region About */
  .section-padding {
    padding: 40px 0px;
  }

  .sectioner-header {
    width: 90%;
  }

  .sectioner-header p {
    font-size: 14px;
  }

  .download-btn-2 {
    padding: 10px 10px;
    margin-top: 0px;
    font-size: 18px;
  }

  /* #endregion */

  /* #region Team */
  .team-detail {
    margin-top: 20px;
  }

  .team-detail img {
    width: 50%;
  }

  /* #endregion */

  /* #region Testimonials */
  .bx-controls {
    display: none;
  }

  .bx-wrapper {
    margin: 0px 20px !important;
  }

  .slider .test-img img {
    margin: 0 auto;
  }

  .test-img {
    float: none;
    width: 200px;
    height: 200px;
    margin: 0 auto;
  }

  .test-text {
    float: none;
    width: 100%;
    text-align: center;
  }

  /* #endregion */

  /* #region FAQ */
  .faq-content {
    margin: 10px 0px;
  }

  .faq-content h4 {
    font-size: 16px;
  }

  .faq-content p {
    font-size: 13px;
  }

  /* #endregion */

  /* #region Contact */
  #contact_form {
    margin-bottom: 20px;
  }

  .contact-item {
    font-size: 12px;
  }

  /* #endregion */

  /* #region Download */
  .download ul li a img {
    width: 120px;
  }

  /* #endregion */

  /* #region Footer */
  .footer-copy p {
    font-size: 10px;
  }

  /* #endregion */
}

@media (min-width: 768px) and (max-width: 992px) {

  /* #region Navbar */
  .navbar .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* #endregion */

  /* #region Banner */
  .banner .container {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    min-height: auto;
  }

  .banner .container .app-images {
    margin-top: 65px;
  }

  /* #endregion */
}

@media (min-width: 992px) and (max-width: 1200px) {

  /* #region Navbar */
  .navbar .container {
    padding-left: 25px;
    padding-right: 25px;
  }

  /* #endregion */

  /* #region Banner */
  .banner .container {
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 25px;
    min-height: auto;
  }

  /* #endregion */
}