/*
    DEMO STYLE
*/
@import "fonts/fonts.css";

html {
  scroll-behavior: smooth;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  z-index: 99999999999;
  display: flex;
}

/* Preloader Style & Animation */
.preloader-circle {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin: auto;
  border-width: 2px;
  border-style: solid;
  border-color: #246c21 rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1);
  border-top-width: 3px;
  animation: rotate 1s 0s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

body {
  font-family: "Poppins", sans-serif;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

#sidebar {
  width: 250px;
  position: fixed;
  top: 0;
  left: -250px;
  height: 100vh;
  z-index: 999;
  background: #0e154a;
  color: #666666;
  transition: ease-in-out 0.2s;
  overflow-y: scroll;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

#sidebar.active {
  left: 0;
}

#dismiss {
  width: 20px;
  height: 20px;
  line-height: 22px;
  border-radius: 100%;
  text-align: center;
  background: white;
  color: #0e154a !important;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  box-shadow: 0px 0px 5px 3px rgb(0, 0, 0, 0.06);
}

#dismiss:hover {
  background: #0e154a;
  color: white !important;
}

.overlay {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.overlay.active {
  display: block;
  opacity: 1;
}

#sidebar .sidebar-header {
  padding: 20px;
  background: #0e154a;
}

#sidebar ul.components {
  border-bottom: 1px solid #0e154a;
}

#sidebar ul p {
  color: #fff;
  padding: 10px;
}

#sidebar ul li a {
  padding: 10px;
  font-size: 1.1em;
  display: block;
  color: #fff;
  font-family: "Khand";
  font-size: 20px;
}

#sidebar ul li a:hover,
.navbar-collapse li a:hover {
  color: #ffc854 !important;
}

#sidebar ul li a.no-hover:hover,
.navbar-collapse li.no-hover a:hover {
  color: #ffc854 !important;
}

#sidebar ul li.active > a,
a[aria-expanded="true"],
.navbar-collapse li.active a {
  color: #ffc854 !important;
}

a[data-toggle="collapse"] {
  position: relative;
}

.dropdown-toggle::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

ul ul a {
  font-size: 0.9em !important;
  padding-left: 30px !important;
  /* background: #6d7fcc; */
}

ul.CTAs {
  padding: 20px;
}

ul.CTAs a {
  text-align: center;
  font-size: 0.9em !important;
  display: block;
  border-radius: 5px;
  margin-bottom: 5px;
}

a.download {
  background: #fff;
  color: #7386d5;
}

a.article,
a.article:hover {
  background: #6d7fcc !important;
  color: #fff !important;
}

header {
  width: 100%;
  position: absolute;
  z-index: 10;
  padding: 20px 0px;
}

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#content {
  width: 100%;
  transition: all 0.3s;
}

/* ---------------------------------------------------
    BANNER
----------------------------------------------------- */
section.banner {
  background: url("../images/bg-lines.png") no-repeat 100% 100% / cover,
    rgb(14, 21, 74);
  background: url("../images/bg-lines.png") no-repeat 100% 100% / cover,
    linear-gradient(270deg, rgba(14, 21, 74, 1) 50%, rgba(28, 38, 115, 1) 50%);
  padding: 250px 0px 0px;
  height: 800px;
  /* margin-bottom: 250px; */
  position: relative;
}

ul.nav.navbar-nav li {
  margin: 0px 18px;
  font-family: "Khand";
  font-size: 18px;
}

ul.nav.navbar-nav li a {
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a.call-btn {
  font-family: "Khand";
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50px;
  padding: 5px 35px;
  box-shadow: 0px 3px 5px 3px rgb(0 0 0 / 71%);
  line-height: 30px;
  vertical-align: middle;
}

ul.nav.navbar-nav li:last-child {
  margin-right: 0;
}

ul.nav.navbar-nav li:first-child {
  margin-left: 0;
}

a.call-btn i {
  margin-right: 15px;
  font-size: 16px;
}

img.banner-vector {
  object-fit: contain;
  position: absolute;
  right: 0;
  bottom: -235px;
  height: auto;
  width: 62%;
}

h1.banner-heading-1 {
  color: #ffc854;
  font-family: "MorganiteBold";
  font-size: 80px;
  line-height: 1;
  text-transform: uppercase;
}

.white {
  color: #fff !important;
}

h4.banner-heading-4 {
  color: #fff;
  font-size: 30px;
  text-transform: uppercase;
}

p.banner-text {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

a.banner-link {
  font-family: "Khand";
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50px;
  padding: 5px 35px;
  line-height: 30px;
  vertical-align: middle;
}

section.section-2 {
  background: url("../images/section2-bg.png") no-repeat 100% 36%/ 70% 55%,
    #f6f7ff;
  padding: 300px 0px 500px;
  margin: 0;
}

.regular {
  font-weight: 400 !important;
}

img.sec2-vector {
  width: 100%;
}

h2.heading {
  font-family: "MorganiteBold";
  color: #0e1549;
  text-transform: uppercase;
  font-size: 80px;
}

.card-box.blue {
  background: #0e1549;
}

.card-box {
  text-align: center;
  position: relative;
  color: #fff;
  padding: 120px 10px 60px;
  border-radius: 10px;
}

.card-box.l-blue {
  background: #49529d;
}

section.section-3 {
  margin-bottom: 250px;
  margin-top: -360px;
  padding-top: 40px;
}

.card-box img.service-icon {
  position: absolute;
  top: -60px;
  right: 0;
  left: 0;
  width: 155px;
  margin: 0px auto;
  height: 149px;
  object-fit: contain;
}

.card-box h5 {
  font-family: "MorganiteBold";
  font-size: 60px;
  text-transform: uppercase;
}

.card-box a.go-card {
  position: absolute;
  bottom: -25px;
  color: #fff;
  background: #ffc854;
  left: 50%;
  transform: translateX(-50%);
  padding: 15px 20px;
  border-radius: 100px;
}

.mb-100 {
  margin-bottom: 60px;
}

a.services-more {
  text-transform: uppercase;
  font-family: "Khand";
  font-weight: 600;
  font-size: 18px;
  border: 2px solid #0e1549;
  color: #0e1549;
  border-radius: 50px;
  padding: 8px 60px;
  box-shadow: inset 0px 0px 7px 0px rgb(0 0 0 / 70%), 0 0px 6px 2px #0000007a;
}

section.section-4 {
  background-color: #f6f7ff;
  padding: 0px 0px 200px;
}

.block-wrap {
  background: url("../images/section-4bg.png") no-repeat center/cover;
  position: relative;
  top: -180px;
  padding: 80px 0 240px;
}

.content-box {
  text-align: center;
  color: #fff;
  padding: 30px 50px;
  border-radius: 10px;
  position: absolute;
  top: 30px;
}

.content-box.blue {
  background: #0e154a;
}

.content-box.l-blue {
  background: #49529d;
}

p.tool_name {
  font-family: "MorganiteBold";
  font-size: 56px;
  margin: 0;
  line-height: 1;
}

h4.tool_price {
  color: #ffc854;
  font-family: "MorganiteBold";
  font-size: 80px;
  text-transform: uppercase;
}

p.extra_info {
  font-size: 16px;
}

.border-break {
  width: 100%;
  border: 1px solid #27274b;
  margin-bottom: 10px;
  margin-top: 20px;
}

h5.another_price {
  font-family: "MorganiteBold";
  font-size: 60px;
}

.content-box.l-blue .border-break {
  border-color: #5c5e96;
}

h5.download {
  font-family: "MorganiteBold";
  font-size: 80px;
  text-transform: uppercase;
  color: #0e1549;
}

p.dl-app {
  color: #0e1549;
  font-size: 16px;
  font-weight: 500;
}

img.d-brand {
  width: 100%;
  height: auto;
  object-fit: cover;
}

section.section-5 {
  margin-top: -95px;
  background: url("../images/section5-bg.png") no-repeat 0% 0% / 110% 100%;
  padding: 0 0 220px;
  margin-bottom: 50px;
}

section.section-6 {
  background: url("../images/section6-bg.png") no-repeat 100% / cover;
  padding: 100px 0px 0;
}

section.section-6 h3.white-heading {
  color: #fff;
  font-family: "MorganiteBold";
  font-size: 80px;
  text-transform: uppercase;
}

section.section-6 p.msg {
  color: #fff;
  font-size: 18px;
  text-transform: capitalize;
}

.testimonial-slider {
}

.testimonial-slider .slick-arrow {
  color: #fff;
  position: absolute;
  top: 260px;
  width: 65px;
  height: 65px;
  border-radius: 100px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
}

.testimonial-slider .slick-next-has.slick-arrow {
  left: -400px;
  background: #ffc854;
}

.testimonial-slider .slick-prev-has.slick-arrow {
  background: #49529d;
  left: -480px;
}

.testimonial-slider .item {
  background: url("../images/quotes.png") no-repeat 90% 78%, #49529d;
  color: #fff;
  padding: 20px 30px 42px 30px;
  margin-right: 20px;
  position: relative;
}

.testimonial-slider .item p.testimonial-text {
  font-size: 16px;
  line-height: 34px;
}

.testimonial-slider .item p.client-name {
  font-family: "Jost";
  font-weight: 500;
  margin: 0;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 24px;
}

.testimonial-slider .item p.client-type {
  font-family: "Jost";
  text-transform: uppercase;
  font-weight: 400;
  font-size: 12px;
  line-height: 24px;
}

.testimonial-slider .item img.t-avatar {
  position: absolute;
  border-radius: 100px;
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.testimonial-slider .slick-list.draggable {
  padding-bottom: 70px;
}

img.mobiles {
  width: 100%;
}

footer.phooter {
  padding-top: 60px;
}

footer.phooter p.top-f {
  font-family: "MorganiteBold";
  color: #0e1549;
  font-size: 50px;
  margin: 0;
  line-height: 1;
}

h5.b-foot {
  color: #0e1549;
  font-family: "MorganiteBold";
  font-size: 80px;
  line-height: 1;
}

footer.phooter .input-group.mb-3 {
  margin-top: 20px;
}

footer.phooter .input-group.mb-3 input.form-control {
  border: 1px solid #d0d0d0;
  border-radius: 50px 0px 0px 50px;
  font-family: "Poppins";
  background-color: #f3f3f3;
  padding: 20px 20px;
}

footer.phooter .input-group.mb-3 .input-group-append {
}

footer.phooter .input-group.mb-3 .input-group-append button#button-addon2 {
  background-color: #0e1549;
  color: #fff;
  font-family: "MorganiteBold";
  font-size: 40px;
  letter-spacing: 1px;
  border-radius: 0 50px 50px 0px;
  padding: 5px 40px;
}

.border-white {
  border-right: 1px solid #272033 !important;
}

footer ul li {
  list-style: none;
}

footer ul li {
  color: white !important;
}

ul.social-icons li {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  text-align: center;
  line-height: 44px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

ul.social-icons li a:hover {
  border-bottom: none !important;
}

h6.f-head {
  font-family: "MorganiteBold";
  font-size: 45px;
  color: #251e31;
}

p.address {
  color: #272033;
  font-size: 14px;
}

ul.social-icons li:first-child {
  background: #272033;
}

ul.social-icons li a {
  color: #fff;
  font-size: 22px;
}

ul.social-icons li:nth-child(2) {
  background: #0e1549;
}

section.bottom.py-3 {
  text-align: center;
  background: #0e1549;
  color: #fff;
  margin-top: 20px;
}

/* ---------------------------------------------------
    ABOUT US PAGE
----------------------------------------------------- */

section.banner.inner-banner {
  height: auto;
  padding: 300px 0px;
}

section.section-5.inner-sec-5 {
  margin: 0 0 50px;
  padding-top: 100px;
}

section.section-2.inner-sec-2 {
  background: url(../images/section2-bg.png) no-repeat 100% 74%/ 70% 65%,
    #f6f7ff;
  padding: 400px 0px 200px;
}

section.team-slider-section.abt-wx {
  margin: 0;
  background-color: #f6f7ff;
}

section.section-4.inner-banner.abt-wz {
  padding: 100px 0 0 0;
}

section.team-slider-section.abt-wx .slick-arrow {
  top: -80px;
}

.section-new-3 {
  padding: 100px 0px;
}

/* ---------------------------------------------------
    PRICING PAGE
----------------------------------------------------- */

section.section-4.inner-banner {
  padding: 150px 0px 200px;
}

section.section-4.inner-banner .block-wrap {
  position: static;
}

section.banner.inner-banner img.banner-vector {
  width: 50%;
}

/* ---------------------------------------------------
    Services PAGE
----------------------------------------------------- */

section.section-3.inner-serv {
  margin: -160px 0 0 0;
}

section.section-3.inner-serv .card-box {
  margin-bottom: 140px;
}

.team-slider {
}

.team-slider .slick-arrow {
  position: absolute;
  top: -200px;
  z-index: 10;
  color: #fff;
  width: 67px;
  height: 67px;
  cursor: pointer;
  border-radius: 100px;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.team-slider .slick-prev-has.slick-arrow {
  right: 80px;
  background: #49529d;
}

.team-slider .slick-next-has.slick-arrow {
  right: 0;
  background: #ffc854;
}

section.team-slider-section {
  margin-top: -130px;
}

.team-slider .item {
  margin: 0px 10px;
  text-align: center;
}

.team-slider .item img {
  border-radius: 100%;
  object-fit: cover;
  width: 250px;
  height: 250px;
}

.team-slider .item h5 {
  font-family: "MorganiteBold";
  color: #0e154a;
  font-size: 40px;
  margin-top: 20px;
  margin-bottom: 0;
}

.team-slider .item p {
  margin: 0;
  font-size: 15px;
  color: #666666;
  font-weight: 400;
}

form.contact-form {
  background: url("../images/contact-form-bg.png") no-repeat 100% / cover;
  padding: 40px;
}

input.my-contact {
  width: 100%;
  margin-bottom: 20px;
  background: #0e154a;
  border: 0;
  padding: 20px;
  border-radius: 50px;
  color: #fff;
  font-family: "Khand";
  text-transform: uppercase;
}

textarea.my-textarea {
  resize: none;
  width: 100%;
  margin-bottom: 20px;
  background: #0e154a;
  border: 0;
  padding: 20px;
  border-radius: 10px;
  color: #fff;
  font-family: "Khand";
  text-transform: uppercase;
}

button.contact-form-button {
  min-width: 188px;
  background: transparent;
  color: #fff;
  font-family: "Khand";
  text-transform: uppercase;
  font-size: 18px;
  border: 2px solid #fff;
  border-radius: 50px;
  padding: 12px 10px;
  text-align: center;
  cursor: pointer;
  line-height: 1;
  vertical-align: middle;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.76);
}

input.my-contact::placeholder {
  color: #fff;
}

input.my-contact::-moz-placeholder {
  color: #fff;
}

input.my-contact::-webkit-input-placeholder {
  color: #fff;
}

textarea.my-textarea::placeholder {
  color: #fff;
}

textarea.my-textarea::-moz-placeholder {
  color: #fff;
}

textarea.my-textarea::-webkit-input-placeholder {
  color: #fff;
}

.bg-icon {
  background: url("../images/bg-serv.png");
  background-repeat: no-repeat;
  background-position: 90% 10%;
}

img.img-fluid.serv-inner-pc {
  position: absolute;
  bottom: 0;
  right: 0;
}

.mt-custom {
  margin-top: 100px;
}
.block-wrap.p-80 {
  padding: 80px 0px;
}
video {
  background-color: #000;
}
.contact-wrap {
  background: url(../images/section-4bg.png) no-repeat center/cover;
  padding: 40px 40px;
}

input.contact-input {
  width: 100%;
  height: 50px;
  margin-bottom: 20px;
  border-radius: 50px;
  border: 0;
  padding: 0 20px;
  background: #0e154a;
  color: #fff;
  font-weight: 600;
  font-family: "Khand";
}

textarea.text-contact {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 0;
  padding: 20px;
  background: #0e154a;
  font-weight: 600;
  color: #fff;
  font-family: "Khand";
  resize: none;
}

button.btn-submit-contact {
  font-family: "Khand";
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 50px;
  min-width: 200px;
  padding: 10px 0px;
  box-shadow: inset 0px 0px 6px 6px rgb(0 0 0 / 16%);
  cursor: pointer;
}
::-webkit-input-placeholder{
  color: #fff;
}
::placeholder{
  color: #fff;
}
::-moz-placeholder{
  color: #fff;
}
/* Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
section.section-4.inner-banner.frts {
  padding: 300px 0px 100px;
}