* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -moz-box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  margin: 0 auto;
  color: #5c5c5c;
  margin: 0 auto;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", sans-serif;
  color: #554d89;
}

h1 {
  font-size: 3.5em;
  font-weight: 900;
}

h2 {
  font-size: 3em;
  font-weight: 800;
}

h3 {
  font-size: 1.8em;
  font-weight: 800;
}

h4 {
  font-size: 1.2em;
  font-weight: 800;
}

h5, h6 {
  font-size: 1.5em;
  font-weight: 600;
}

img {
  width: 100%;
}

a {
  color: #212529;
  list-style-type: none;
  text-decoration: none;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  font-family: "Roboto", sans-serif;
}

a:hover {
  color: #554d89;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  font-weight: 800;
  margin-left: 3px;
  cursor: pointer;
}

.nav-bar h2 {
  font-size: 3em;
}

.site-title {
  line-height: 12px;
}

.site-description {
  font-size: 12px;
}

.grey-left-border {
  border-left: 2px solid #eee;
}

.blue-bg {
  background-image: url("../../images/blue-bg.jpg");
}

.primary {
  position: relative;
  color: #eee;
  border-radius: 50px;
  padding: 8px 25px;
  background-image: linear-gradient(25deg, #0065ff, #6942ef, #6554c0, #008cff, #7700ff, #6942ef);
  background-size: 400%;
  background-position: 0% 0%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-animation: gradientRotate 2s infinite;
          animation: gradientRotate 2s infinite;
}

.primary:hover {
  -webkit-animation: gradientRotate 2s infinite;
          animation: gradientRotate 2s infinite;
  color: #eee;
  background-image: -webkit-gradient(linear, left top, right top, from(#008cff), color-stop(#6554c0), color-stop(#6942ef), color-stop(#0065ff), color-stop(#6942ef), to(#6554c0));
  background-image: linear-gradient(90deg, #008cff, #6554c0, #6942ef, #0065ff, #6942ef, #6554c0);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.primary:hover::before {
  opacity: 1;
  -webkit-animation: gradientRotate 2s infinite;
          animation: gradientRotate 2s infinite;
}

.primary:active {
  color: #eee;
}

.primary:focus::before {
  opacity: 1;
}

.search form {
  border: 1px solid #857eaf;
  border-radius: 50px;
  background-color: white;
  height: 40px;
  -webkit-box-shadow: 3px 4px 4px rgba(0, 0, 0, 0.13);
          box-shadow: 3px 4px 4px rgba(0, 0, 0, 0.13);
  overflow: hidden;
}

.search form .form-control:active,
.search form .form-control:focus {
  border: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.search form button {
  height: 100%;
  border-radius: 50px;
  background-color: #857eaf;
}

.top-header {
  background-color: #090e2c;
  padding: 1em 0;
  color: #eee;
  font-size: 13px;
}

.top-header .top-header-inner {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr;
  font-weight: 700;
}

.top-header .top-header-inner i {
  -webkit-transition: 0.5 ease-in-out;
  transition: 0.5 ease-in-out;
  font-size: 20px;
  margin: 0 .3em;
  color: #eee;
}

.top-header .top-header-inner i:hover {
  color: #8D14FF;
  -webkit-transition: 0.5 ease-in-out;
  transition: 0.5 ease-in-out;
}

.top-header .top-header-inner .message {
  font-weight: normal;
}

.top-header .top-header-inner .message, .top-header .top-header-inner .contact {
  text-align: start;
}

.top-header .top-header-inner .address, .top-header .top-header-inner .social {
  text-align: end;
}

.top-header .top-header-inner .phone-number {
  text-align: end;
  padding: 0 1em 0 0;
}

.nav-bar {
  background-color: #fff;
  width: 100%;
}

.nav-bar dl, .nav-bar ol, .nav-bar ul {
  margin: 0px;
  padding: 0px;
}

.nav-bar ul li {
  margin: 0;
}

.nav-bar .search {
  display: inline-block;
  margin-left: 4em;
}

.nav-bar .right-nav-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: right;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.nav-hold {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  overflow: hidden;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1em 0 0 0;
}

.nav-logo {
  display: inline-block;
  padding: 0;
  font-weight: 600;
}

.nav-logo a {
  font-size: 1.6rem;
  font-weight: 900;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  color: #554d89;
  line-height: 1;
}

.nav-items {
  float: right;
}

.nav-items li {
  display: block;
  float: left;
}

.nav-items li a {
  line-height: 4.5rem;
  color: #646464;
  padding: 0 1.3em;
  font-size: 0.9em;
  font-weight: 500;
  text-transform: uppercase;
}

.nav-items li a:hover {
  color: #8D14FF;
}

.nav-items .active {
  border-top: 2px solid #8D14FF;
  border-bottom: 0px solid #8D14FF;
}

.nav-items .active a {
  color: #554d89;
  font-weight: 700;
}

.right-sidebar h2 {
  font-size: 15px;
  font-weight: 700;
  margin-top: 15px;
  text-transform: uppercase;
}

.right-sidebar ol, .right-sidebar ul, .right-sidebar .wp-block-latest-posts.wp-block-latest-posts__list {
  margin: 5px 0 0 0;
  padding: 0 0 0 10px;
}

.right-sidebar li {
  list-style: none;
}

.right-sidebar li a {
  margin: 10px 0;
}

.right-sidebar li ::before {
  content: "\f105";
  font-family: FontAwesome;
  margin-right: 5px;
}

.main-cards {
  padding: 1em;
}

.main-cards .card {
  padding: 1.5em;
  border: 0px solid #eee;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0), 0 3px 6px rgba(0, 0, 0, 0.23);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0), 0 3px 6px rgba(0, 0, 0, 0.23);
  border-radius: 10px;
  text-align: center;
  display: inline-block;
  -webkit-transition: 1s;
  transition: 1s;
  width: 100%;
}

.main-cards .card:hover {
  color: #eee;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
          box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  background: #554d89;
  margin-top: -15px;
  cursor: pointer;
}

.main-cards .card:hover i, .main-cards .card:hover h4, .main-cards .card:hover a {
  color: #eee;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.main-cards .card:hover .read-more {
  display: block;
  font-size: 12px;
}

.main-cards .card:hover .read-more .read-more-i {
  padding-left: 0.5em;
}

.main-cards .card .icon {
  font-size: 3em;
  color: #554d89;
}

.main-cards .card .read-more {
  display: block;
  font-size: 12px;
}

.grid-container {
  display: -ms-grid;
  display: grid;
  grid-gap: 5px;
  padding: 0;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
}

.card-wrapper {
  background-color: #fff;
  text-align: center;
  padding: 0;
}

.card-1 {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
}

.card-2 {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 1;
  grid-row: 1;
}

.card-3 {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 2;
  grid-row: 2;
}

.card-4 {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 2;
  grid-row: 2;
}

.side-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  text-align: start;
  -ms-grid-column: 3;
  grid-column: 3;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1 / span 2;
}

.highlight-wrapper {
  display: block;
  padding: 2em;
}

.highlight-wrapper .highlight-inner {
  display: block;
}

.highlight-wrapper h3 {
  font-size: 2.3em;
  margin-bottom: 0.7em;
}

.hidden {
  display: none;
}

.video {
  display: block;
}

.video .content {
  width: 35%;
  display: block;
  padding: 5px;
}

.video .content h3 {
  font-size: 3rem;
  color: #92a1d3;
}

.video .content p {
  color: #cfcfcf;
}

.video .video-iframe-wraper {
  width: 100%;
  height: -webkit-fill-available;
  z-index: 999;
  padding: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #121d2fbd;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.video .video-iframe-wraper .inner-wrapper {
  width: 70%;
  margin: 0 auto;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.video .video-iframe-wraper .inner-wrapper .close {
  width: 100%;
  display: block;
  text-align: end;
  position: relative;
}

.video .video-iframe-wraper .inner-wrapper .close span:hover i {
  color: #8D14FF;
  cursor: pointer;
}

.video .video-iframe-wraper .video-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}

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

.video-bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../../images/finance-video-bg.jpg");
}

.overlay {
  background-color: #000000af;
  padding: 6rem 0;
}

.play {
  display: block;
}

.play .play-btn {
  border-radius: 50px;
  padding-bottom: 1.2rem;
}

.play .play-btn i {
  font-size: 4.5rem;
  color: #554d89;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.play .play-btn i:hover {
  color: #8D14FF;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.stats {
  margin-top: -120px;
}

.single {
  width: 33%;
  display: inline-block;
  padding: 0.5rem 0.8em;
  background-color: transparent;
}

.single .card:hover {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  background-color: #fff;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#ffffff), color-stop(#ffffff), color-stop(#ffffff), color-stop(#ffffff), color-stop(#ffffff), to(#ffffff));
  background-image: linear-gradient(0deg, #ffffff, #ffffff, #ffffff, #ffffff, #ffffff, #ffffff);
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0), 0 3px 6px rgba(0, 0, 0, 0.23);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0), 0 3px 6px rgba(0, 0, 0, 0.23);
  text-align: center;
  color: #646464;
  -webkit-transition: 1s;
  transition: 1s;
  margin-top: -15px;
  cursor: auto;
}

.single .card:hover .card-inner {
  background-color: #fff;
}

.single h2.card-stats {
  color: #8D14FF;
  font-weight: normal;
  border-bottom: 1px solid #8D14FF;
  display: inline-block;
  padding: 0.2em 0;
  margin-bottom: 0.3em;
}

.single h5 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 1em;
}

.inner-wrapper {
  padding: 1em;
  text-align: left;
}

.inner-wrapper i {
  font-size: 2.5em;
  color: #857eaf;
  padding-left: .1em;
}

.inner-wrapper h4 {
  margin-bottom: 1em;
}

.cta {
  min-height: 174px;
  position: relative;
  z-index: 2;
  background: #fff;
  padding: 33px 55px;
  margin: -90px 0 50px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0), 0 3px 6px rgba(0, 0, 0, 0.23);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0), 0 3px 6px rgba(0, 0, 0, 0.23);
  border-radius: 5px;
}

.cta .icon_box_06 {
  position: relative;
  padding: 0 0 0 104px;
}

.cta .icon_box_06 .ib_box {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 5px;
  font-size: 70px;
  line-height: 70px;
  color: #8D14FF;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.cta .orcta {
  display: inline-block;
  position: relative;
  text-align: center;
  width: 70px;
  height: 70px;
  line-height: 48px;
  border-radius: 50%;
  background: linear-gradient(25deg, #0065ff, #6942ef, #6554c0, #008cff, #7700ff, #6942ef);
  padding: 10px;
  margin-top: 8px;
}

.cta .orcta p {
  color: #8D14FF;
  background: #fff;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  width: 100%;
  height: 100%;
}

.cta .orcta:after {
  width: 10px;
  height: 174px;
  background: linear-gradient(25deg, #0065ff, #6942ef, #6554c0, #008cff, #7700ff, #6942ef);
  left: 0;
  right: 0;
  top: -41px;
  margin: auto;
  content: '';
  z-index: -1;
  position: absolute;
}

.grid-container h3 {
  margin-bottom: 0.8em;
  font-size: 2.2em;
}

.grid-container a.similar {
  font-size: 14px;
  margin: 0 0 0 1.5em;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.grid-container a.similar:hover {
  margin-left: 2.2em;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.service-overview .grid-container {
  grid-gap: 0;
  padding: 0;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -ms-grid-rows: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.service-overview .grid-container .section-text-to-img {
  display: -ms-grid;
  display: grid;
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
  margin-top: 3.5em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
      grid-template-rows: auto;
}

.service-overview .grid-container .section-text-to-img .sec-img {
  -ms-grid-column: 3;
  -ms-grid-column-span: 5;
  grid-column: 3 / span 5;
}

.service-overview .grid-container .section-text-to-img .sec-img .img-control {
  padding: 0 0 0 6em;
}

.service-overview .grid-container .section-text-to-img .sec-content {
  padding: 0.5em;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1 / span 2;
  -ms-grid-row: 1;
  grid-row: 1;
}

.service-overview .grid-container .section-img-to-text {
  display: -ms-grid;
  display: grid;
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 2;
  grid-row: 2;
  margin: 3.5em 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
      grid-template-rows: auto;
}

.service-overview .grid-container .section-img-to-text .sec-img {
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1 / span 3;
}

.service-overview .grid-container .section-img-to-text .sec-img .img-control {
  padding: 0 6em 0 0;
}

.service-overview .grid-container .section-img-to-text .sec-content {
  padding: 0.5em;
  -ms-grid-column: 4;
  -ms-grid-column-span: 5;
  grid-column: 4 / span 5;
  -ms-grid-row: 1;
  grid-row: 1;
}

#owl-demo .item {
  display: block;
  width: 100%;
  height: auto;
}

#owl-demo .item img {
  width: 100%;
  display: block;
}

.slider-wrapper, .slider-inner {
  width: 100%;
  display: block;
  position: relative;
}

.slider-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider-inner .slider-1 {
  background-image: url("../../images/slide-1.jpg");
}

.slider-inner .slider-2 {
  background-image: url("../../images/slide-2.jpg");
}

.slider-inner .slider-3 {
  background-image: url("../../images/slide-3.jpg");
}

.slider-inner .slider-1, .slider-inner .slider-2, .slider-inner .slider-3 {
  background-size: cover;
  height: 100vh;
}

.slider-inner .slider-1 .overlay, .slider-inner .slider-2 .overlay, .slider-inner .slider-3 .overlay {
  height: 100vh;
}

.slider-inner .slider-outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.slider-inner .slider-content {
  position: absolute;
  width: 65%;
  text-align: start;
  margin-top: calc(-13%);
}

.slider-inner .slider-content h2 {
  font-size: 5em;
  color: #ffffff;
  text-transform: capitalize;
}

.slider-inner .slider-content p {
  color: #eee;
  margin: 2em 0 1.7em 0;
}

.owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: absolute;
  top: 40%;
  left: 95%;
}

.owl-theme .owl-dots .owl-dot {
  zoom: 1.5 !important;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #664dd1 !important;
}

.testimonial-bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../../images/testimonial-bg.jfif");
}

.testimonial-bg .overlay {
  background-color: #ffffffd1;
}

.testimonial-wrapper {
  padding: 0;
}

.testimonial-wrapper .testimonial-inner {
  width: 100%;
  display: block;
}

.testimonial-wrapper .testimonial-inner .testimonial {
  display: block;
  padding: 5px;
}

.testimonial-wrapper .testimonial-inner .testimonial .item {
  margin: 0 auto;
  text-align: center;
  padding: 2em 1em;
}

.testimonial-wrapper .testimonial-inner .testimonial .item .para {
  color: #554d89;
  font-size: 18px;
}

.testimonial-wrapper .testimonial-inner .testimonial .item:hover .author {
  background-color: #8d14ff3b;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.testimonial-wrapper .testimonial-inner .testimonial .item:hover .author img {
  opacity: 1;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  opacity: .5;
}

.testimonial-wrapper .testimonial-inner .testimonial .item .author {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  display: block;
  position: relative;
  text-align: center;
  margin: 0 auto;
  border: 3px solid #554d89;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.testimonial-wrapper .testimonial-inner .testimonial .item .author .author-image {
  width: 100%;
  height: 100%;
  padding: 5px;
}

.testimonial-wrapper .testimonial-inner .testimonial .item .author .author-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 5px solid #857eaf;
}

.testimonial-wrapper .testimonial-inner .testimonial .item .author-info {
  margin: 1.5em 0;
  font-family: "Roboto", sans-serif;
}

.testimonial-wrapper .testimonial-inner .testimonial .item .author-info .author-name {
  font-size: 1.2em;
  color: #554d89;
  font-weight: 800;
  margin-bottom: 0.2em;
}

.testimonial-wrapper .testimonial-inner .testimonial .item .author-info .author-profession {
  font-weight: 600;
  color: #868686;
}

.testimonial-wrapper .testimonial-inner .testimonial .item .author-info .author-profession span {
  font-style: italic;
}

.testimonial-wrapper .testimonial-inner .ratting-star {
  color: #8D14FF;
}

.testimonial-wrapper .owl-theme .owl-nav {
  margin-top: -30px;
}

.testimonial-wrapper .owl-theme .owl-nav [class*='owl-'] {
  padding: 10px 20px !important;
  font-size: 3em !important;
  line-height: 0.8;
  border-radius: 50%;
  color: #857eaf;
  margin: .2em .5em;
}

.testimonial-wrapper .owl-theme .owl-nav [class*='owl-']:hover {
  color: #8D14FF;
  background-color: transparent !important;
}

.facts {
  color: #eee;
  padding-bottom: 8em !important;
}

.facts h4, .facts i {
  color: #eee;
}

.call-to-action {
  background-size: cover;
  background-repeat: no-repeat;
  padding: 50px 0;
}

.call-to-action .cta-text {
  color: #fff;
  font-size: 25px;
  line-height: 35px;
  margin: 0;
  font-weight: 700;
}

.call-to-action span {
  color: #8D14FF;
}

.call-to-action .btn-wrapper {
  text-align: end;
}

#msform {
  text-align: center;
  position: relative;
  margin-top: 20px;
}

#msform fieldset {
  background: transparent;
  border: 0 none;
  border-radius: 0.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding-bottom: 20px;
  position: relative;
}

#msform .title {
  display: block;
}

#msform .form-card {
  text-align: center;
  display: block;
}

#msform fieldset:not(:first-of-type) {
  display: none;
}

#msform input, #msform textarea {
  padding: 8px 15px 8px 15px;
  border: 1px solid #ccc;
  border-radius: 50px;
  margin-bottom: 25px;
  margin-top: 2px;
  width: 45%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: montserrat;
  color: #2C3E50;
  background-color: #ECEFF1;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
}

#msform input:focus, #msform input:focus, #msform textarea:focus, #msform textarea:focus {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: 1px solid #673AB7;
  outline-width: 0;
}

#msform .action-button {
  width: 100px;
  background: #673AB7;
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 50px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 0px 10px 5px;
  float: right;
}

#msform .action-button:hover, #msform .action-button:focus {
  background-color: #311B92;
}

#msform .action-button-previous {
  width: 100px;
  background: #616161;
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 50px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 5px 10px 0px;
  float: right;
}

#msform .action-button-previous:hover, #msform .action-button-previous:focus {
  background-color: #212529;
}

#msform #progressbar {
  margin-bottom: 30px;
  overflow: hidden;
  color: lightgrey;
}

#msform #progressbar .active {
  color: #673AB7;
}

#msform #progressbar li {
  list-style-type: none;
  font-size: 15px;
  width: 25%;
  float: left;
  position: relative;
  font-weight: 400;
}

#msform #progressbar li .active:before, #msform #progressbar li .active:after {
  background: #673AB7;
}

#msform #progressbar li:after {
  content: '';
  width: 100%;
  height: 2px;
  background: lightgray;
  position: absolute;
  left: 0;
  top: 25px;
  z-index: 1;
}

#msform #progressbar li:before {
  width: 50px;
  height: 50px;
  line-height: 45px;
  display: block;
  font-size: 20px;
  color: #8D14FF;
  background: lightgray;
  border-radius: 50%;
  margin: 0 auto 10px auto;
  padding: 2px;
  z-index: 2;
  position: relative;
}

#msform #progressbar #account:before {
  font-family: FontAwesome;
  content: "\f13e";
}

#msform #progressbar #personal:before {
  font-family: FontAwesome;
  content: "\f007";
}

#msform #progressbar #payment:before {
  font-family: FontAwesome;
  content: "\f030";
}

#msform #progressbar #confirm:before {
  font-family: FontAwesome;
  content: "\f00c";
}

#msform .fs-title {
  font-size: 25px;
  color: #673AB7;
  margin-bottom: 15px;
  font-weight: normal;
  text-align: left;
}

#msform .purple-text {
  color: #673AB7;
  font-weight: normal;
}

#msform .steps {
  font-size: 25px;
  color: gray;
  margin-bottom: 10px;
  font-weight: normal;
  text-align: right;
}

#msform .fieldlabels {
  color: gray;
  text-align: left;
}

#msform .progress {
  height: 20px;
}

#msform .progress-bar {
  background-color: #673AB7;
}

#msform .fit-image {
  width: 40%;
  -o-object-fit: cover;
     object-fit: cover;
}

.contact {
  padding: 3em 0 1em 0;
}

.contact ul {
  padding: 1em;
}

.contact ul li {
  display: inline-block;
  padding: 0 3em;
  cursor: pointer;
}

.contact i {
  font-size: 35px;
  color: #554d89;
}

.contact i:hover {
  color: #8D14FF;
}

.footer {
  background-color: #121d2f;
  padding: 0;
}

.footer .call-to-action {
  background-color: transparent;
  color: #eee;
}

.footer .call-to-action .container {
  border-bottom: 1px solid #22334d;
  padding-bottom: 80px;
}

.footer .call-to-action .cta-text {
  color: #fff;
  font-size: 50px;
  line-height: 65px;
  margin: -7px 0 0;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

.footer .call-to-action .cta-text span {
  color: #554d89;
}

.footer .call-to-action .search form {
  height: 70px;
}

.footer .bottom-footer {
  padding-top: 80px;
}

.footer .bottom-footer h3 {
  color: #eee;
}

.footer .bottom-footer .footer-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 30px;
  font-weight: 900;
  color: #eee;
  margin: 30px 0;
}

.footer .bottom-footer p {
  color: darkgray;
}

.footer .bottom-footer .footer-nav ul {
  padding-left: 0.2em;
}

.footer .bottom-footer .footer-nav ul li {
  list-style-type: none;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  color: darkgrey;
}

.footer .bottom-footer .footer-nav ul li a {
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  color: darkgrey;
  font-family: "Roboto", sans-serif;
}

.footer .bottom-footer .footer-nav ul li:hover {
  color: #857eaf;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  font-weight: 800;
  margin-left: 3px;
}

.footer .bottom-footer .footer-nav ul li:hover a {
  color: #857eaf;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.footer .bottom-footer .footer-nav ul li i {
  font-size: 20px;
  margin-right: 10px;
}

.secTitle span {
  color: #8D14FF;
}

.subTitle {
  font-weight: 500;
  font-size: 18px;
  line-height: .9;
  color: #8D14FF;
  margin: 0 0 24px;
}

.subTitle span {
  display: inline-block;
  width: 50px;
  height: 2px;
  background: #8D14FF;
  margin-right: 20px;
  position: relative;
  top: -5px;
}

.subTitle .bright {
  margin-right: 0;
  margin-left: 20px;
}

.testimonialSection01 .secTitle {
  margin-bottom: 40px;
}

.goToTop {
  position: absolute;
  right: 0;
  bottom: 5px;
  padding: 0px;
  margin: 20px 40px;
  cursor: pointer;
  z-index: 9;
  position: fixed;
}

.goToTop i {
  color: #857eaf;
  font-size: 50px;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.goToTop i:hover {
  color: #8D14FF;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.nav-menu {
  display: none;
}

.nav-open {
  height: auto;
}

@media screen and (max-width: 992px) {
  .top-header .top-header-inner {
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
  }
  .top-header .top-header-inner .message {
    display: none;
  }
  .top-header .top-header-inner .address {
    -ms-grid-column: 1;
    grid-column: 1;
    text-align: center;
  }
  .top-header .top-header-inner .phone-number {
    -ms-grid-column: 2;
    grid-column: 2;
    text-align: end;
  }
  .top-header .top-header-inner .social {
    -ms-grid-column: 3;
    grid-column: 3;
  }
  .nav-items li a {
    padding: 0 5.5px;
  }
  .slider-wrapper h2 {
    font-size: calc(5.5em - 40 * ((100vw - 320px) / 680)) !important;
  }
  .slider-wrapper .slider-content {
    width: 65%;
  }
}

@media screen and (max-width: 768px) {
  .no-mob-tablet {
    display: none !important;
  }
  .top-header {
    display: nonde;
  }
  .top-header .top-header-inner {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    grid-row-gap: 10px;
  }
  .top-header .top-header-inner .address {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / span 2;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  .top-header .top-header-inner .phone-number {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
    text-align: start;
  }
  .top-header .top-header-inner .social {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 2;
    grid-row: 2;
  }
  .nav-bar .right-nav-wrapper {
    display: block;
    line-height: 0;
  }
  .nav-bar .right-nav-wrapper .nav-menu {
    display: block;
    color: #554d89;
  }
  .nav-bar .right-nav-wrapper .nav-items {
    margin-top: 33px;
  }
  .nav-bar .right-nav-wrapper .nav-items .active {
    border: 0px;
  }
  .nav-bar .right-nav-wrapper .nav-items li {
    width: 100%;
    display: block;
    padding: 0 80px;
  }
  .nav-bar .right-nav-wrapper .nav-items li a {
    line-height: 40px;
  }
  .services .grid-container {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto;
        grid-template-rows: auto;
  }
  .services .grid-container .side-info {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / span 2;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  .services .grid-container .card-1 {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
  }
  .services .grid-container .card-2 {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 2;
    grid-row: 2;
  }
  .services .grid-container .card-3 {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 3;
    grid-row: 3;
  }
  .services .grid-container .card-4 {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 3;
    grid-row: 3;
  }
  .video {
    text-align: center;
  }
  .video .content {
    width: 100%;
  }
  .video .video-iframe-wraper {
    padding: 40px;
  }
  .video .video-iframe-wraper .inner-wrapper {
    width: 100%;
  }
  .stats .single {
    width: 100%;
    margin-bottom: 20px;
  }
  .service-overview .grid-container {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .service-overview .grid-container .section-text-to-img, .service-overview .grid-container .section-img-to-text {
    margin-top: 0.5em;
  }
  .service-overview .grid-container .section-text-to-img .sec-content, .service-overview .grid-container .section-text-to-img .sec-img, .service-overview .grid-container .section-img-to-text .sec-content, .service-overview .grid-container .section-img-to-text .sec-img {
    -ms-grid-column: 1;
    -ms-grid-column-span: 5;
    grid-column: 1 / span 5;
  }
  .service-overview .grid-container .section-text-to-img .sec-content .img-control, .service-overview .grid-container .section-text-to-img .sec-img .img-control, .service-overview .grid-container .section-img-to-text .sec-content .img-control, .service-overview .grid-container .section-img-to-text .sec-img .img-control {
    padding: 0;
  }
  .cta {
    text-align: center;
  }
  .cta .icon_box_06 {
    padding: 2em 0;
  }
  .cta .orcta {
    margin: 30px;
  }
  .cta .orcta:after {
    height: 125px;
    top: -30px;
  }
}

@media screen and (max-width: 540px) {
  .slider-wrapper h2 {
    font-size: calc(3em - 40 * ((100vw - 320px) / 680)) !important;
  }
  .slider-wrapper .slider-content {
    width: 80%;
    margin-top: calc(-49%);
    padding-left: 15px;
  }
  .nav-bar .mob-nav-items {
    height: 100vh;
  }
  .nav-bar .mob-nav-items li {
    padding: 0 14px !important;
  }
  .services {
    padding: .5em 0 !important;
  }
  .services .grid-container {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-rows: auto;
        grid-template-rows: auto;
  }
  .services .grid-container .side-info {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  .services .grid-container .card {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
  }
  .services .card-wrapper {
    border: 0px;
  }
  .service-overview {
    padding: 0  !important;
    margin: 0  !important;
  }
  .service-overview .grid-container {
    text-align: center;
  }
  .facts .inner-wrapper {
    text-align: center;
  }
  .footer .call-to-action {
    text-align: center;
  }
  .footer .call-to-action .cta-text {
    font-size: 30px;
    line-height: inherit;
    margin-bottom: 30px;
  }
}
/*# sourceMappingURL=style.css.map */