/*------------------------------------------------------------------

-------------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
#0.1	Theme Reset Style
#0.2	Global Elements
#0.3	header
#0.4	hero-slider
#0.5	footer
#0.6	features-section
#0.7	cta-section
#0.8	site-analysis-section
#0.9	services-section
#1.0	cta-s2-section
#1.1	pricing-plan-section
#1.2	testimonials-section
#1.3	case-study-section
#1.4	partners-section
#1.5	newsletter-section
#1.6	recent-blog-section


--------------------------------------------------------------
	home style 2
--------------------------------------------------------------
#2.0	features-section-s2
#2.1	work-process-section
#2.2	site-analysis-section-s2
#2.3	services-section-s2
#2.4	cta-s3-section
#2.5	testimonials-section-s2
#2.6	newsletter-section-s2


--------------------------------------------------------------
	about page
--------------------------------------------------------------
#3.0	about-pg-section
#3.1	mission-vision-section
#3.2	features-section-s3
#3.3	about-pg-history
#3.4	fun-fact-section
#3.5 	team-section


--------------------------------------------------------------
	#contact page
--------------------------------------------------------------
#4.0	contact-page-section
#4.1	contact-map-section


--------------------------------------------------------------
	#service single page
--------------------------------------------------------------
#5.0	service-single-section


--------------------------------------------------------------
	#case single page
--------------------------------------------------------------
#6.0	case-single-section


--------------------------------------------------------------
	#blog page
--------------------------------------------------------------
#7.0	blog-pg-section


--------------------------------------------------------------
	#blog single page
--------------------------------------------------------------
#8.0	blog-single-section


--------------------------------------------------------------
	#case stydy page
--------------------------------------------------------------
#9.0	case-study-page-section


--------------------------------------------------------------
	#testimonials page
--------------------------------------------------------------
#10.0	testimonials-page-section


--------------------------------------------------------------
	#404 page
--------------------------------------------------------------
#11.0 	error-404-section


----------------------------------------------------------------*/
/*---------------------------
	Fonts
----------------------------*/
@import url("https://fonts.googleapis.com/css?family=Nunito:400,400i,600,700,800");
/*--------------------------------------------------------------
#0.1    Theme Reset Style
--------------------------------------------------------------*/
html {
  font-size: 16px;
}

body {
  font-family: "Nunito", sans-serif;
  background-color: #fff;
  font-size: 16px;
  font-size: 1rem;
  color: #6c6c6c;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (max-width: 767px) {
  body {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

p {
  color: #6c6c6c;
  line-height: 1.7em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #192224;
  font-weight: bold;
}

ul {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}

a,
button {
  text-decoration: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

a:hover,
a:focus,
button,
button:focus {
  text-decoration: none;
  outline: none;
}

img {
  max-width: 100%;
}

.round-circle {
  width: 400px;
  height: 400px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.round-circle .round-2,
.round-circle .round-3 {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.round-circle .round-2 {
  width: 80%;
  height: 80%;
}

.round-circle .round-3 {
  width: 60%;
  height: 60%;
}

/*--------------------------------------------------------------
#0.2    Global Elements
--------------------------------------------------------------*/
.page-wrapper {
  position: relative;
  overflow: hidden;
}

.wow {
  visibility: hidden;
}

.fi:before {
  margin: 0;
}

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

@media (max-width: 991px) {
  .section-padding {
    padding: 70px 0;
  }
}

@media (max-width: 767px) {
  .section-padding {
    padding: 60px 0;
  }
}

/*** contact form error handling ***/
.contact-validation-active .error-handling-messages {
  margin-top: 15px;
}

.contact-validation-active label.error {
  color: red;
  font-size: 0.875rem;
  font-weight: normal;
  margin: 5px 0 0 0;
  text-align: left;
  display: block;
}

.contact-validation-active #loader {
  display: none;
  margin-top: 10px;
}

.contact-validation-active #loader i {
  font-size: 30px;
  font-size: 1.875rem;
  color: #5533ff;
  display: inline-block;
  -webkit-animation: rotating linear 2s infinite;
  animation: rotating linear 2s infinite;
}

.contact-validation-active #success,
.contact-validation-active #error {
  width: 100%;
  color: #fff;
  padding: 5px 10px;
  font-size: 16px;
  text-align: center;
  display: none;
}

@media (max-width: 767px) {
  .contact-validation-active #success,
  .contact-validation-active #error {
    font-size: 15px;
  }
}

.contact-validation-active #success {
  background-color: #009a00;
  border-left: 5px solid green;
  margin-bottom: 5px;
}

.contact-validation-active #error {
  background-color: #ff1a1a;
  border-left: 5px solid red;
}

/*** back to top **/
.back-to-top {
  background-color: rgba(85, 51, 255, 0.9);
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  display: none;
  position: fixed;
  z-index: 999;
  right: 15px;
  bottom: 15px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  border-radius: 3px;
}

@media (max-width: 991px) {
  .back-to-top {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}

.back-to-top:hover {
  background-color: #5533ff;
}

.back-to-top i {
  font-size: 18px;
  font-size: 1.125rem;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.rotating {
  -webkit-animation: rotating 5s alternate infinite;
  animation: rotating 5s alternate infinite;
}

/** for popup image ***/
.mfp-wrap {
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 99999;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}

/*** for fancybox video ***/
.fancybox-overlay {
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999 !important;
}

.fancybox-wrap {
  z-index: 99999 !important;
}

.section-title, .section-title-s2, .section-title-s3 {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2, .section-title-s2 h2, .section-title-s3 h2 {
  font-size: 38px;
  font-size: 2.375rem;
  color: #fff;
  margin: -.22em 0 0.65em;
}

@media (max-width: 991px) {
  .section-title h2, .section-title-s2 h2, .section-title-s3 h2 {
    font-size: 32px;
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .section-title h2, .section-title-s2 h2, .section-title-s3 h2 {
    font-size: 28px;
    font-size: 1.75rem;
  }
}

.section-title p, .section-title-s2 p, .section-title-s3 p {
  font-size: 17px;
  font-size: 1.0625rem;
  color: #fff;
  margin: 0;
}

@media screen and (min-width: 1200px) {
  .section-title p, .section-title-s2 p, .section-title-s3 p {
    padding: 0 45px;
  }
}

@media (max-width: 991px) {
  .section-title p, .section-title-s2 p, .section-title-s3 p {
    font-size: 16px;
    font-size: 1rem;
  }
}

.section-title-s2 h2, .section-title-s3 h2 {
  color: #192224;
}

.section-title-s2 p, .section-title-s3 p {
  color: #6c6c6c;
}

.section-title-s3 {
  text-align: left;
}

.section-title-s3 p {
  padding: 0;
}

.theme-btn {
  background-color: #7043d4;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  height: 50px;
  line-height: 50px;
  color: #fff;
  padding: 0 22px;
  border: 0;
  border-radius: 50px;
  display: inline-block;
  text-transform: capitalize;
}

.theme-btn:hover, .theme-btn:focus, .theme-btn:active {
  background-color: #14326b;
  color: #fff;
}

@media (max-width: 991px) {
  .theme-btn {
    font-size: 14px;
    font-size: 0.875rem;
    height: 45px;
    line-height: 45px;
    padding: 0 18px;
    border-radius: 45px;
  }
}

.form input,
.form textarea,
.form select {
  border-color: #bfbfbf;
  border-radius: 0;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #595959;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  border-color: #5533ff;
  -webkit-box-shadow: 0 0 5px 0 #8066ff;
  -o-box-shadow: 0 0 5px 0 #8066ff;
  -ms-box-shadow: 0 0 5px 0 #8066ff;
  box-shadow: 0 0 5px 0 #8066ff;
}

.form ::-webkit-input-placeholder {
  font-style: 14px;
  font-style: italic;
  color: #595959;
}

.form :-moz-placeholder {
  font-style: 14px;
  font-style: italic;
  color: #595959;
}

.form ::-moz-placeholder {
  font-style: 14px;
  font-style: italic;
  color: #595959;
}

.form :-ms-input-placeholder {
  font-style: 14px;
  font-style: italic;
  color: #595959;
}

.form select {
  font-style: italic;
  background: url(../images/select-icon.png) no-repeat right center;
  display: inline-block;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  cursor: pointer;
}

.form select::-ms-expand {
  /* for IE 11 */
  display: none;
}

/******************************
	#page title
******************************/
.page-title {
  background: url("../images/page-title.jpg") center center/cover no-repeat local;
  width: 100%;
  height: 480px;
  text-align: center;
  position: relative;
}

@media (max-width: 991px) {
  .page-title {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .page-title {
    height: 220px;
  }
}

.page-title:before {
  content: "";
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#7400B8), color-stop(50%, #5390D9));
  background: linear-gradient(left, #7400B8, #5390D9 50%);
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.95;
}

.page-title .container {
  height: 100%;
  display: table;
}

.page-title .container > .row {
  vertical-align: middle;
  display: table-cell;
}

.page-title h2,
.page-title ol {
  color: #fff;
}

.page-title h2 {
  font-size: 60px;
  font-size: 3.75rem;
  font-weight: bold;
  margin: -0.12em 0 0.30em;
  text-transform: capitalize;
}

@media (max-width: 991px) {
  .page-title h2 {
    font-size: 50px;
    font-size: 3.125rem;
  }
}

@media (max-width: 767px) {
  .page-title h2 {
    font-size: 40px;
    font-size: 2.5rem;
  }
}

@media screen and (min-width: 992px) {
  .page-title h2 {
    margin-top: 145px;
  }
}

.page-title .breadcrumb {
  background-color: transparent;
  padding: 0;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .page-title .breadcrumb {
    text-align: center;
  }
}

.page-title .breadcrumb li {
  font-size: 16px;
  font-size: 1rem;
  color: #7043d4;
  margin-right: 5px;
}

@media (max-width: 767px) {
  .page-title .breadcrumb li {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.page-title .breadcrumb li a {
  color: #fff;
}

.page-title .breadcrumb li a:hover {
  color: #2b00ff;
}

.page-title .breadcrumb > li + li:before {
  font-family: "themify";
  content: "\e628";
  color: #fff;
  margin-right: 5px;
}

.preloader {
  background-color: #fff;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 1000;
}

.preloader .sk-fading-circle {
  width: 60px;
  height: 60px;
  position: absolute;
  left: calc(50% - 30px);
  top: calc(50% - 30px);
}

.preloader .sk-fading-circle .sk-circle {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.preloader .sk-fading-circle .sk-circle:before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 15%;
  height: 15%;
  background-color: #5533ff;
  border-radius: 50%;
  -webkit-animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
  animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
}

.preloader .sk-fading-circle .sk-circle2 {
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
}

.preloader .sk-fading-circle .sk-circle3 {
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
}

.preloader .sk-fading-circle .sk-circle4 {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.preloader .sk-fading-circle .sk-circle5 {
  -webkit-transform: rotate(120deg);
  transform: rotate(120deg);
}

.preloader .sk-fading-circle .sk-circle6 {
  -webkit-transform: rotate(150deg);
  transform: rotate(150deg);
}

.preloader .sk-fading-circle .sk-circle7 {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.preloader .sk-fading-circle .sk-circle8 {
  -webkit-transform: rotate(210deg);
  transform: rotate(210deg);
}

.preloader .sk-fading-circle .sk-circle9 {
  -webkit-transform: rotate(240deg);
  transform: rotate(240deg);
}

.preloader .sk-fading-circle .sk-circle10 {
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.preloader .sk-fading-circle .sk-circle11 {
  -webkit-transform: rotate(300deg);
  transform: rotate(300deg);
}

.preloader .sk-fading-circle .sk-circle12 {
  -webkit-transform: rotate(330deg);
  transform: rotate(330deg);
}

.preloader .sk-fading-circle .sk-circle2:before {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.preloader .sk-fading-circle .sk-circle3:before {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.preloader .sk-fading-circle .sk-circle4:before {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.preloader .sk-fading-circle .sk-circle5:before {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

.preloader .sk-fading-circle .sk-circle6:before {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}

.preloader .sk-fading-circle .sk-circle7:before {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}

.preloader .sk-fading-circle .sk-circle8:before {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

.preloader .sk-fading-circle .sk-circle9:before {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}

.preloader .sk-fading-circle .sk-circle10:before {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}

.preloader .sk-fading-circle .sk-circle11:before {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}

.preloader .sk-fading-circle .sk-circle12:before {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}
a.link-email:hover {
 color: #000000;
}

@-webkit-keyframes sk-circleFadeDelay {
  0%, 39%, 100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}

@keyframes sk-circleFadeDelay {
  0%, 39%, 100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}

/****************************************
	blog sidebar
****************************************/
.blog-sidebar {
  /*** search-widget ***/
  /*** categories-widget ***/
  /*** popular-product-widget ***/
  /*** tag-widget ***/
}

@media screen and (min-width: 1200px) {
  .blog-sidebar {
    padding-left: 20px;
  }
}

@media (max-width: 991px) {
  .blog-sidebar {
    max-width: 300px;
    margin-top: 70px;
  }
}

.blog-sidebar > .widget + .widget {
  margin-top: 65px;
}

.blog-sidebar .widget {
  border: 1px solid #eee;
  padding: 40px 30px;
}

@media (max-width: 991px) {
  .blog-sidebar .widget {
    padding: 35px 25px;
  }
}

.blog-sidebar .widget > h3 {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: bold;
  text-transform: capitalize;
  padding-bottom: 0.65em;
  margin: 0 0 0.8em;
  position: relative;
}

.blog-sidebar .widget ul {
  list-style: none;
}

.blog-sidebar .search-widget div {
  position: relative;
}

.blog-sidebar .search-widget button {
  background: transparent;
  font-size: 20px;
  font-size: 1.25rem;
  color: #5533ff;
  border: 0;
  outline: 0;
  padding: 0;
  margin: 0;
  position: absolute;
  right: 15px;
  top: 55%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.blog-sidebar .search-widget input {
  background-color: #fbfbfb;
  height: 50px;
  padding: 6px 40px 6px 20px;
  border: 1px solid rgba(85, 51, 255, 0.4);
  border-radius: 50px;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.blog-sidebar .categories-widget ul li {
  position: relative;
  color: #727780;
}

.blog-sidebar .categories-widget ul li span {
  background: rgba(85, 51, 255, 0.2);
  width: 25px;
  height: 25px;
  line-height: 25px;
  font-size: 13px;
  font-size: 0.8125rem;
  text-align: center;
  color: #707070;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.blog-sidebar .categories-widget ul li a {
  color: #727780;
}

.blog-sidebar .categories-widget ul > li + li {
  margin-top: 15px;
}

.blog-sidebar .categories-widget ul li a:hover {
  color: #5533ff;
}

.blog-sidebar .popular-post-widget ul li {
  overflow: hidden;
}

.blog-sidebar .popular-post-widget ul > li + li {
  margin-top: 20px;
}

.blog-sidebar .popular-post-widget .post-image {
  width: 70px;
  float: left;
}

.blog-sidebar .popular-post-widget .post-info {
  width: calc(100% - 70px);
  float: left;
  padding-left: 20px;
}

.blog-sidebar .popular-post-widget .post-title {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3em;
}

@media (max-width: 991px) {
  .blog-sidebar .popular-post-widget .post-title {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

.blog-sidebar .popular-post-widget .date {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #5533ff;
}

.blog-sidebar .popular-post-widget .post-info > a {
  color: #192224;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.blog-sidebar .popular-post-widget .post-info > a:hover {
  color: #5533ff;
}

.blog-sidebar .tag-widget .tagcloud a {
  font-size: 14px;
  font-size: 0.875rem;
  color: #727780;
  display: inline-block;
  border: 1px solid #e8e8e8;
  padding: 6px 15px;
  border-radius: 32px;
  margin: 0 5px 5px 0;
}

.blog-sidebar .tag-widget .tagcloud a:hover {
  background-color: #5533ff;
  border-color: #5533ff;
  color: #fff;
}

@media screen and (min-width: 1200px) {
  .blog-with-left-sidebar .blog-sidebar {
    padding: 0 20px 0 0;
  }
}

/**** pagination ****/
.pagination-wrapper {
  max-height: 45px;
  text-align: center;
  margin-top: 60px;
}

@media (max-width: 991px) {
  .pagination-wrapper {
    text-align: left;
    margin-top: 45px;
  }
}

.pagination-wrapper .pg-pagination {
  display: inline-block;
  overflow: hidden;
  list-style-type: none;
  text-align: center;
}

.pagination-wrapper .pg-pagination li {
  float: left;
  margin-right: 10px;
}

@media (max-width: 767px) {
  .pagination-wrapper .pg-pagination li {
    margin-right: 5px;
  }
}

.pagination-wrapper .pg-pagination li:last-child {
  margin-right: 0;
}

.pagination-wrapper .pg-pagination li a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  font-size: 20px;
  font-size: 1.25rem;
  border: 1px solid transparent;
  color: #192224;
  display: block;
  border-radius: 50%;
}

@media (max-width: 991px) {
  .pagination-wrapper .pg-pagination li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.pagination-wrapper .pg-pagination .active a,
.pagination-wrapper .pg-pagination li a:hover {
  border-color: #5533ff;
  color: #5533ff;
}

.pagination-wrapper-left {
  text-align: left;
}

.pagination-wrapper-right {
  text-align: right;
}

@media screen and (min-width: 1200px) {
  .pagination-wrapper-right {
    padding-right: 50px;
  }
}

@media (max-width: 991px) {
  .pagination-wrapper-right {
    margin-top: 45px;
    text-align: left;
  }
}

/*--------------------------------------------------------------
#0.3	header
--------------------------------------------------------------*/
.site-header {
  /* navigation open and close btn hide for width screen */
  /* style for navigation less than 992px */
  /*navbar collaps less then 992px*/
}

.site-header .navbar-brand {
  height: auto;
}

.site-header .navigation {
  background-color: #fff;
  margin-bottom: 0;
  border: 0;
  border-radius: 0;
}

.site-header .navigation > .container {
  position: relative;
}

.site-header #navbar {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  /*** mega-menu style ***/
}

.site-header #navbar > ul li a:hover,
.site-header #navbar > ul li a:focus,
.site-header #navbar > ul > li .sub-menu a:hover {
  text-decoration: none;
  color: #5533ff;
}

@media screen and (min-width: 992px) {
  .site-header #navbar {
    /*** hover effect ***/
  }
  .site-header #navbar li {
    position: relative;
  }
  .site-header #navbar > ul > li > a {
    font-size: 16px;
    font-size: 1rem;
    padding: 40px 15px;
  }
  .site-header #navbar > ul .sub-menu {
    background-color: #fff;
    width: 260px;
    position: absolute;
    left: 0;
    top: 130%;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .site-header #navbar > ul > li .sub-menu li {
    border-bottom: 1px solid #f2f2f2;
  }
  .site-header #navbar > ul > li .sub-menu a {
    display: block;
    padding: 16px 20px;
    font-weight: 600;
    color: #6c6c6c;
  }
  .site-header #navbar > ul > li > .sub-menu .sub-menu {
    left: -100%;
    top: 0;
  }
  .site-header #navbar > ul > li > .sub-menu > .menu-item-has-children > a {
    position: relative;
  }
  .site-header #navbar > ul > li > .sub-menu > .menu-item-has-children > a:before {
    font-family: "themify";
    content: "\e649";
    font-size: 11px;
    font-size: 0.6875rem;
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .site-header #navbar > ul > li:hover > .sub-menu {
    top: 100%;
    visibility: visible;
    opacity: 1;
  }
  .site-header #navbar .sub-menu > li:hover > .sub-menu {
    left: -100%;
    visibility: visible;
    opacity: 1;
  }
}

@media (max-width: 991px) {
  .site-header #navbar > ul > li a {
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
  }
  .site-header #navbar > ul > li .sub-menu li {
    border-bottom: 1px solid #e6e6e6;
  }
  .site-header #navbar > ul .sub-menu > li:last-child {
    border-bottom: 0;
  }
  .site-header #navbar > ul > li > .sub-menu a {
    padding: 8px 15px 8px 45px;
  }
  .site-header #navbar > ul > li > .sub-menu .sub-menu a {
    padding: 8px 15px 8px 65px;
  }
  .site-header #navbar > ul .menu-item-has-children > a {
    position: relative;
  }
  .site-header #navbar > ul .menu-item-has-children > a:before {
    font-family: "themify";
    content: "\e64b";
    font-size: 11px;
    font-size: 0.6875rem;
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

@media screen and (min-width: 992px) {
  .site-header #navbar {
    /*** hover effect ***/
  }
  .site-header #navbar .has-mega-menu {
    position: static;
  }
  .site-header #navbar .mega-menu,
  .site-header #navbar .half-mega-menu {
    background-color: #fff;
    padding: 20px;
    border-top: 2px solid #5533ff;
    position: absolute;
    right: 0;
    top: 120%;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .site-header #navbar .mega-menu {
    width: 1140px;
    right: 15px;
  }
  .site-header #navbar .half-mega-menu {
    width: 585px;
  }
  .site-header #navbar .mega-menu-box-title {
    font-size: 14px;
    font-size: 0.875rem;
    text-transform: uppercase;
    font-weight: bold;
    display: block;
    padding-bottom: 7px;
    margin-bottom: 7px;
    border-bottom: 1px solid #e6e6e6;
  }
  .site-header #navbar .mega-menu-list-holder li {
    border-bottom: 1px solid #f2f2f2;
  }
  .site-header #navbar .mega-menu-list-holder li a {
    display: block;
    padding: 16px 20px;
    margin-left: -8px;
    color: #6c6c6c;
    text-transform: capitalize;
  }
  .site-header #navbar .mega-menu-list-holder > li:last-child {
    border-bottom: 0;
  }
  .site-header #navbar .has-mega-menu:hover > ul {
    top: 100%;
    visibility: visible;
    opacity: 1;
  }
}

@media (max-width: 1199px) {
  .site-header #navbar > ul .mega-menu {
    width: 950px;
    right: 15px;
  }
  .site-header #navbar > ul .half-mega-menu {
    width: 485px;
  }
}

@media (max-width: 991px) {
  .site-header #navbar > ul .mega-menu,
  .site-header #navbar > ul .half-mega-menu {
    width: auto;
  }
  .site-header #navbar > ul .mega-menu .row,
  .site-header #navbar > ul .half-mega-menu .row {
    margin: 0;
  }
  .site-header #navbar .mega-menu-content > .row > .col {
    margin-bottom: 25px;
  }
}

@media (max-width: 991px) {
  .site-header #navbar .mega-menu .mega-menu-list-holder a {
    padding: 5px 15px 5px 40px;
  }
  .site-header #navbar .mega-menu .mega-menu-box-title {
    font-size: 14px;
    font-size: 0.875rem;
    text-transform: uppercase;
    display: block;
    border-bottom: 1px dotted #b3b3b3;
    padding: 0 0 4px 5px;
    margin: 0 25px 8px 25px;
  }
}

@media screen and (min-width: 992px) {
  .site-header .navbar-header .open-btn {
    display: none;
  }
  .site-header #navbar .close-navbar {
    display: none;
  }
}

@media (max-width: 991px) {
  .site-header {
    /* class for show hide navigation */
  }
  .site-header .container {
    width: 100%;
  }
  .site-header .navbar-header button {
    background-color: #ffffff;
    width: 40px;
    height: 35px;
    border: 0;
    padding: 5px 10px;
    border-radius: 3px;
    outline: 0;
    position: absolute;
    right: 15px;
    top: 24px;
    z-index: 20;
  }
  .site-header .navbar-header button span {
    background-color: #6f25bf;
    display: block;
    height: 2px;
    margin-bottom: 5px;
  }
  .site-header .navbar-header button span:last-child {
    margin: 0;
  }
  .site-header #navbar {
    background: #fff;
    display: block !important;
    width: 280px;
    height: 100% !important;
    margin: 0;
    padding: 0;
    border-left: 1px solid #cccccc;
    border-right: 1px solid #cccccc;
    position: fixed;
    right: -300px;
    top: 0;
    z-index: 100;
  }
  .site-header #navbar ul a {
    color: #000;
  }
  .site-header #navbar ul a:hover,
  .site-header #navbar ul li.current a {
    color: #5533ff;
  }
  .site-header #navbar .navbar-nav {
    height: 100%;
    overflow: auto;
  }
  .site-header #navbar .close-navbar {
    background-color: #7043d4;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 0;
    color: #fff;
    border: 0;
    border-radius: 50%;
    outline: none;
    position: absolute;
    left: -18px;
    top: 10px;
    z-index: 20;
  }
  .site-header #navbar > ul > li {
    border-bottom: 1px solid #cccccc;
  }
  .site-header #navbar > ul > li > a {
    padding: 10px 15px 10px 35px;
  }
  .site-header .slideInn {
    right: 0 !important;
  }
}

@media (max-width: 767px) {
  .site-header .navbar-header .navbar-brand {
    font-size: 24px;
  }
  .site-header #navbar .navbar-nav {
    margin: 0;
  }
}

@media (max-width: 991px) {
  .site-header .navbar-collapse.collapse {
    display: none;
  }
  .site-header .navbar-collapse.collapse.in {
    display: block;
  }
  .site-header .navbar-header .collapse,
  .site-header .navbar-toggle {
    display: block;
  }
  .site-header .navbar-header {
    float: none;
  }
  .site-header .navbar-right {
    float: none;
  }
  .site-header .navbar-nav {
    float: none;
  }
  .site-header .navbar-nav > li {
    float: none;
  }
}

/************************************************
	header-style-1
**************************************************/
.header-style-1, .header-style-2, .header-style-3 {
  /*** topbar ***/
  /*** navigation ***/
}

@media screen and (min-width: 992px) {
  .header-style-1, .header-style-2, .header-style-3 {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 100;
  }
}

@media (max-width: 991px) {
  .header-style-1, .header-style-2, .header-style-3 {
    background-color: #7025bf;
    position: relative;
    z-index: 10;
  }
  .header-style-1 .navigation, .header-style-2 .navigation, .header-style-3 .navigation {
    background-color: #7025bf;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.header-style-1 .topbar > .container, .header-style-2 .topbar > .container, .header-style-3 .topbar > .container {
  padding: 17px 15px 13px;
  position: relative;
}

.header-style-1 .topbar > .container .separator, .header-style-2 .topbar > .container .separator, .header-style-3 .topbar > .container .separator {
  background-color: rgba(255, 255, 255, 0.1);
  width: calc(100% - 30px);
  height: 1px;
  position: absolute;
  left: 15px;
  bottom: 0;
}

.header-style-1 .topbar .contact-info ul, .header-style-2 .topbar .contact-info ul, .header-style-3 .topbar .contact-info ul {
  overflow: hidden;
}

@media (max-width: 767px) {
  .header-style-1 .topbar .contact-info ul, .header-style-2 .topbar .contact-info ul, .header-style-3 .topbar .contact-info ul {
    display: inline-block;
  }
}

.header-style-1 .topbar .contact-info ul li, .header-style-2 .topbar .contact-info ul li, .header-style-3 .topbar .contact-info ul li {
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
  float: left;
}

@media (max-width: 767px) {
  .header-style-1 .topbar .contact-info ul li, .header-style-2 .topbar .contact-info ul li, .header-style-3 .topbar .contact-info ul li {
    float: none;
  }
}

.header-style-1 .topbar .contact-info ul > li + li, .header-style-2 .topbar .contact-info ul > li + li, .header-style-3 .topbar .contact-info ul > li + li {
  margin-left: 35px;
}

@media (max-width: 767px) {
  .header-style-1 .topbar .contact-info ul > li + li, .header-style-2 .topbar .contact-info ul > li + li, .header-style-3 .topbar .contact-info ul > li + li {
    margin: 5px 0 0;
  }
}

.header-style-1 .topbar .contact-info ul li i, .header-style-2 .topbar .contact-info ul li i, .header-style-3 .topbar .contact-info ul li i {
  display: inline-block;
  padding-right: 5px;
  position: relative;
}

.header-style-1 .topbar .contact-info ul > li:last-child i, .header-style-2 .topbar .contact-info ul > li:last-child i, .header-style-3 .topbar .contact-info ul > li:last-child i {
  top: 2px;
}

.header-style-1 .topbar .social-links, .header-style-2 .topbar .social-links, .header-style-3 .topbar .social-links {
  float: right;
}

@media (max-width: 767px) {
  .header-style-1 .topbar .social-links, .header-style-2 .topbar .social-links, .header-style-3 .topbar .social-links {
    float: none;
    margin-top: 10px;
  }
  .header-style-1 .topbar .social-links ul, .header-style-2 .topbar .social-links ul, .header-style-3 .topbar .social-links ul {
    display: inline-block;
  }
}

.header-style-1 .topbar .social-links ul li, .header-style-2 .topbar .social-links ul li, .header-style-3 .topbar .social-links ul li {
  float: left;
}

.header-style-1 .topbar .social-links ul a, .header-style-2 .topbar .social-links ul a, .header-style-3 .topbar .social-links ul a {
  color: #fff;
}

.header-style-1 .topbar .social-links ul > li + li, .header-style-2 .topbar .social-links ul > li + li, .header-style-3 .topbar .social-links ul > li + li {
  margin-left: 10px;
}

.header-style-1 .topbar .social-links a:hover, .header-style-2 .topbar .social-links a:hover, .header-style-3 .topbar .social-links a:hover {
  color: #2c9fdf;
}

@media (max-width: 767px) {
  .header-style-1 .topbar, .header-style-2 .topbar, .header-style-3 .topbar {
    text-align: center;
  }
}

@media screen and (min-width: 992px) {
  .header-style-1 .navbar-brand, .header-style-2 .navbar-brand, .header-style-3 .navbar-brand {
    margin-top: 7px;
  }
  .header-style-1 .navigation, .header-style-2 .navigation, .header-style-3 .navigation {
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .header-style-1 #navbar > ul > li > a, .header-style-2 #navbar > ul > li > a, .header-style-3 #navbar > ul > li > a {
    font-size: 14px;
    font-size: 0.875rem;
    padding: 40px 12px;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    position: relative;
  }
  .header-style-1 #navbar > ul > li > a:before, .header-style-2 #navbar > ul > li > a:before, .header-style-3 #navbar > ul > li > a:before {
    content: "";
    width: 0;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .header-style-1 #navbar > ul > li > a:hover:before, .header-style-2 #navbar > ul > li > a:hover:before, .header-style-3 #navbar > ul > li > a:hover:before {
    width: 100%;
  }
  .header-style-1 #navbar > ul > li > a:hover, .header-style-2 #navbar > ul > li > a:hover, .header-style-3 #navbar > ul > li > a:hover {
    color: #fff;
  }
}

@media screen and (min-width: 1200px) {
  .header-style-1 #navbar > ul > li > a, .header-style-2 #navbar > ul > li > a, .header-style-3 #navbar > ul > li > a {
    font-size: 16px;
    font-size: 1rem;
    padding: 40px 15px;
  }
}

@media screen and (min-width: 992px) {
  .header-style-1 #navbar, .header-style-2 #navbar, .header-style-3 #navbar {
    margin-right: 80px;
  }
}

/************************************************
	header-style-2
**************************************************/
@media screen and (min-width: 992px) {
  .header-style-2, .header-style-3 {
    position: relative;
    z-index: 10;
  }
  .header-style-2 .topbar, .header-style-3 .topbar {
    background-color: #5533ff;
  }
  .header-style-2 #navbar > ul > li > a, .header-style-3 #navbar > ul > li > a {
    color: #192224;
  }
  .header-style-2 #navbar > ul > li > a:hover, .header-style-3 #navbar > ul > li > a:hover {
    color: #5533ff;
  }
}

.header-style-2 .navigation, .header-style-3 .navigation {
  background-color: #fff;
}

.header-style-2 .side-info .search-toggle-btn .fi, .header-style-3 .side-info .search-toggle-btn .fi {
  color: #192224;
}

.header-style-2 .side-info .info-bars span, .header-style-3 .side-info .info-bars span {
  background-color: #192224;
}

/************************************************
	header-style-3
**************************************************/
.header-style-3 .topbar {
  background-color: #fff;
  border-bottom: 1px solid #ebebeb;
}

.header-style-3 .topbar .contact-info ul li {
  color: #192224;
}

.header-style-3 .topbar .social-links ul a {
  color: #474848;
}

.side-info {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
}

@media (max-width: 991px) {
  .side-info {
    right: 70px;
  }
}

.side-info button {
  background: transparent;
  padding: 0;
  border: 0;
  outline: 0;
}

.side-info .fi {
  font-size: 30px;
  font-size: 1.875rem;
  color: #192224;
}

.side-info .search-toggle-btn .fi {
  color: #fff;
}

.side-info > div {
  float: left;
  position: relative;
}

.side-info > div + div {
  margin-left: 25px;
}

.side-info .header-search-form {
  position: absolute;
  width: 250px;
  right: -25px;
  top: 75px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-box-shadow: 0px 15px 60px -19px black;
          box-shadow: 0px 15px 60px -19px black;
}

@media (max-width: 991px) {
  .side-info .header-search-form {
    top: 68px;
  }
}

@media (max-width: 767px) {
  .side-info .header-search-form {
    top: 63px;
    right: 15px;
  }
}

.side-info .header-search-form-wrapper .fi:before {
  font-size: 22px;
  font-size: 1.375rem;
}

.side-info form div {
  position: relative;
}

.side-info form div button {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.side-info input {
  width: 100%;
  height: 50px;
  padding: 6px 20px;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.side-info .info-bars {
  margin-top: 10px;
}

@media (max-width: 991px) {
  .side-info .info-bars {
    display: none;
  }
}

.side-info .info-bars span {
  background: #fff;
  width: 30px;
  height: 2px;
  display: block;
}

.side-info .info-bars > span + span {
  margin-top: 7px;
}

.side-info .info-bars > span:first-child {
  width: 20px;
  margin-left: 10px;
}

.side-info .header-search-content-toggle {
  opacity: 1;
  visibility: visible;
  right: 0;
}

.side-info-wrapper {
  background: #000;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .4s ease-in-out .8s;
  transition: all .4s ease-in-out .8s;
}

.side-info-wrapper-toggle {
  visibility: visible;
  opacity: 0.8;
}

.side-info-wrapper.side-info-wrapper-toggle {
  -webkit-transition: all .4s;
  transition: all .4s;
}

.side-info-wrapper-toggle .side-info-inner {
  -webkit-transition: all .8s ease-in-out .4s;
  transition: all .8s ease-in-out .4s;
}

.side-info-inner {
  background-color: #5533ff;
  width: 400px;
  height: 100%;
  padding: 70px 50px;
  position: fixed;
  right: -400px;
  top: 0;
  z-index: 9999;
  -webkit-transition: all .8s ease-in-out;
  transition: all .8s ease-in-out;
}

@media (max-width: 991px) {
  .side-info-inner {
    display: none;
  }
}

.side-info-inner .side-info-close-btn {
  background-color: transparent;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  padding: 0;
  border: 2px solid #fff;
  border-radius: 50%;
  position: absolute;
  left: 20px;
  top: 20px;
}

.side-info-inner .side-info-close-btn:hover,
.side-info-inner .side-info-close-btn:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.side-info-inner .logo {
  text-align: center;
  margin-bottom: 50px;
}

.side-info-inner .logo img {
  display: inline-block;
}

.side-info-inner .logo span {
  font-size: 25px;
  font-size: 1.5625rem;
  color: #fff;
  font-weight: bold;
  display: block;
  margin: 0.3em 0 1em;
}

.side-info-inner p {
  color: #fff;
  margin: 0 0 2em;
}

.side-info-inner .info li {
  font-size: 16px;
  font-size: 1rem;
  color: #d9d9d9;
  margin: 0 0 8px;
}

.side-info-inner .info li:nth-child(2) {
  color: #f2f2f2;
}

.side-info-inner .social-links {
  margin-top: 40px;
}

.side-info-inner .social-links a {
  font-size: 18px;
  font-size: 1.125rem;
  color: #fff;
}

.side-info-inner .social-links a:hover {
  color: #2c9fdf;
}

.side-info-inner .social-links li {
  float: left;
  margin-right: 12px;
}

.side-info-inner .social-links li:last-child {
  margin-right: 0;
}

.toggle-side-info {
  right: 0;
}

/*--------------------------------------------------------------
#0.4	hero slider
--------------------------------------------------------------*/
.hero {
  position: relative;
  height: 100vh;
  /** slider controls **/
  /*** hero slider animation ***/
}

/* @media (max-width: 767px) {
  .hero {
    min-height: 420px;
  }
} */

.hero .slide {
  min-height: 100vh;
  position: relative;
  background-repeat: no-repeat;
  position: relative;
}

.hero .slide .slider-bg {
  display: none;
}

.hero .slide:focus {
  outline: none;
}

.hero .slide .container {
  height: 100%;
  display: table;
}

.hero .slide .row {
  display: table-cell;
  vertical-align: middle;
}

.hero .slick-prev,
.hero .slick-next {
  background-color: rgba(25, 62, 133, 0.3);
  width: 55px;
  height: 55px;
  z-index: 10;
  border-radius: 50%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.hero .slick-prev:hover,
.hero .slick-next:hover {
  background-color: rgba(25, 62, 133, 0.6);
}

@media (max-width: 991px) {
  .hero .slick-prev,
  .hero .slick-next {
    display: none !important;
  }
}

.hero .slick-prev {
  left: -100px;
}

.hero .slick-prev:before {
  font-family: "themify";
  content: "\e629";
  opacity: 1;
}

.hero .slick-next {
  right: -100px;
}

.hero .slick-next:before {
  font-family: "themify";
  content: "\e628";
  opacity: 1;
}

.hero:hover .slick-prev {
  left: 25px;
}

.hero:hover .slick-next {
  right: 25px;
}

.hero .slick-dots {
  bottom: 30px;
}
.hero-style-1 , .hero-style-2, .hero-style-1 .slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-style-1 .slide .container{
  width: 100%;
  margin: 0 auto;
  padding: 0 50px;
}


@media screen and (min-width: 992px) {
  .hero .slick-dots {
    display: none !important;
  }
  
}

.hero .slick-dots li {
  margin: 0;
}

.hero-style-1 .slider-picture, .hero-style-2 .slider-picture {
  display: flex;
}

.hero-style-1 .slider-pic, .hero-style-2 .slider-pic {
}


.hero .slick-dots button {
  background-color: #5533ff;
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-radius: 50%;
}

.hero .slick-dots button:before,
.hero .slick-dots button:before {
  display: none;
}

.hero .slide-caption > div {
  overflow: hidden;
}

.hero .slide-caption > div * {
  -webkit-animation: fadeOutLeft 1s both;
  animation: fadeOutLeft 1s both;
}

.hero .slide-caption > .slider-pic * {
  -webkit-animation: fadeOutRight 1s both;
  animation: fadeOutRight 1s both;
}

.hero .slide-caption > div.slide-title * {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.hero .slide-caption > div.slide-subtitle * {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.hero .slide-caption > div.btns * {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.hero .hero-slider .slick-current .slide-caption > div * {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

.hero .hero-slider .slick-current .slide-caption > .slider-pic * {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

.hero .hero-slider .slick-current .slide-caption > div.slide-title * {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.hero .hero-slider .slick-current .slide-caption > div.slide-subtitle * {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.hero .hero-slider .slick-current .slide-caption > div.btns * {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.hero .hero-slider .slick-current .slide-caption > div.slider-pic * {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

/************************************************
	hero-style-1
**************************************************/
.hero-style-1, .hero-style-2 {
  min-height: 100vh;
  position: relative;
}

.hero-style-1:before, .hero-style-2:before {
  content: "";
  width: 100%;
  height: 110%;
  position: absolute;
  left: 0;
  top: -10%;
  /* background: -webkit-gradient(linear, left top, left bottom, from(#5390D9), color-stop(50%, #7400B8));
  background: linear-gradient(top, #5390D9, #7400B8 50%); */
  background: -webkit-gradient(linear, left top, left bottom, from(#7400B8), color-stop(50%, #5390D9));
  background: linear-gradient(left, #7400B8, #5390D9 50%);
  -webkit-transform: skewY(-2deg);
  transform: skewY(-2deg);
}
@media (max-width: 991px) {
  .hero-style-1, .hero-style-2 {
    min-height: 750px;
    position: relative;
  }
  .hero-style-1 .slide .container{
    padding: 0 20px;
  }
}

/* @media (max-width: 1199px) {
  .hero-style-1, .hero-style-2 {
    height: 750px;
  }
}

@media (max-width: 991px) {
  .hero-style-1, .hero-style-2 {
    height: 550px;
  }
}

@media (max-width: 767px) {
  .hero-style-1, .hero-style-2 {
    height: 450px;
  }
} */

/* .hero-style-1 .slide, .hero-style-2 .slide {
  height: 900px;
} */

/* @media (max-width: 1199px) {
  .hero-style-1 .slide, .hero-style-2 .slide {
    height: 750px;
  }
}



@media (max-width: 767px) {
  .hero-style-1 .slide, .hero-style-2 .slide {
    height: 450px;
  }
} */

.hero-style-1 .slide .row, .hero-style-2 .slide .row {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}
.hero-style-1 .slide-picture .slider-pic {
  width: 100%;
  max-width: 430px;
}

@media screen and (min-width: 992px) {
  .hero-style-1 .slide-caption, .hero-style-2 .slide-caption {
    margin-top: 85px;
  }
  
}

.hero-style-1 .slide-caption h2, .hero-style-2 .slide-caption h2 {
  font-size: 55px;
  font-size: 3.4375rem;
  color: #fff;
  margin: 0 0 0.45em;
}

@media (max-width: 991px) {
  .hero-style-1 .slide-caption {
    text-align: center;
  }
  .hero-style-1 .slide-caption {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  .hero-style-1 .slide-picture {
    width: 100%;
    margin: 0 auto;
    margin-top: 40px;
    text-align: center;
  }
  .hero-style-1 .slide-picture .slider-pic {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  .hero-style-1 .slide-caption h2, .hero-style-2 .slide-caption h2 {
    font-size: 45px;
    font-size: 2.8125rem;
  }
  .hero-style-1 .slide .row, .hero-style-2 .slide .row {
    padding: 40px 20px;
  }
}

@media (max-width: 767px) {
  .hero-style-1 .slide-caption h2, .hero-style-2 .slide-caption h2 {
    font-size: 35px;
    font-size: 2.1875rem;
  }
}

.hero-style-1 .slide-caption p, .hero-style-2 .slide-caption p {
  color: #fff;
  margin: 0 0 2.8em;
}


@media (max-width: 991px) {
  .hero-style-1 .slider-pic, .hero-style-2 .slider-pic {
    max-width: 350px;
    right: -60%;
    bottom: 8px;
  }
}

@media (max-width: 767px) {
  /* .hero-style-1 .slider-pic, .hero-style-2 .slider-pic {
    display: none;
  } */
}

/************************************************
	hero-style-2
**************************************************/
.hero-style-2 {
  position: relative;
}

.hero-style-2:before {
  display: none;
}

.hero-style-2 .slide {
  background: #efedfc;
  position: relative;
}

.hero-style-2 .slide:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: url("../images/slider/curve.png") center bottom/100% no-repeat local;
  z-index: 1;
}

.hero-style-2 .slide .container {
  position: relative;
  z-index: 10;
}

@media screen and (min-width: 992px) {
  .hero-style-2 .slide-caption {
    margin-top: 0;
  }
}

.hero-style-2 .slide-caption h2 {
  color: #192224;
  margin-top: -0.15em;
}

.hero-style-2 .slide-caption p {
  color: #192224;
}

/************************************************
	hero-style-3
**************************************************/
.hero-style-3 {
  position: relative;
  height: 850px;
  text-align: center;
  background: -webkit-gradient(linear, left top, left bottom, from(#7400B8), color-stop(50%, #5390D9));
  background: linear-gradient(left, #7400B8, #5390D9 50%);
}

@media (max-width: 991px) {
  .hero-style-3 {
    height: 600px;
  }
}

@media (max-width: 767px) {
  .hero-style-3 {
    height: 450px;
  }
}

.hero-style-3 .hero-outer {
  height: 850px;
  position: relative;
}

@media (max-width: 991px) {
  .hero-style-3 .hero-outer {
    height: 600px;
  }
}

@media (max-width: 767px) {
  .hero-style-3 .hero-outer {
    height: 450px;
  }
}

.hero-style-3 .hero-outer .container {
  height: 100%;
  display: table;
}

.hero-style-3 .hero-outer .row {
  display: table-cell;
  vertical-align: middle;
}

.hero-style-3 .hero-text {
  margin-top: 60px;
}

@media (max-width: 991px) {
  .hero-style-3 .hero-text {
    margin-top: 40px;
  }
}

.hero-style-3 .hero-text > span {
  font-weight: bold;
  color: #7043d4;
  text-transform: uppercase;
  letter-spacing: 5px;
}

@media (max-width: 767px) {
  .hero-style-3 .hero-text > span {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.hero-style-3 .hero-text h2 {
  font-size: 48px;
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  margin: 0.5em 0 0.8em;
}

@media (max-width: 991px) {
  .hero-style-3 .hero-text h2 {
    font-size: 40px;
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .hero-style-3 .hero-text h2 {
    font-size: 32px;
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  /* .hero-style-3 .img-holder {
    display: none;
  } */
}

.hero-bg-slider:before {
  display: none;
}

/*--------------------------------------------------------------
#0.5	footer
--------------------------------------------------------------*/
.site-footer {
  background-color: #5E60CE;
  position: relative;
  /*** upper contact area ***/
  /*** about-widget ***/
  /*** link-widget ***/
  /*** service-link-widget ***/
  /*** newsletter-widget ***/
  /*** lower-footer ***/
}

@media screen and (min-width: 992px) {
  .site-footer {
    margin-top: 60px;
  }
}

.site-footer ul {
  list-style: none;
}

.site-footer p,
.site-footer li {
  color: #fff;
}

.site-footer .upper-contact-area {
  position: absolute;
  width: 100%;
  top: -63px;
  z-index: 10;
}

@media (max-width: 991px) {
  .site-footer .upper-contact-area {
    display: none;
  }
}

.site-footer .upper-contact-area .contact-grids {
  background-color: #7443c4;
  border-radius: 10px;
  padding: 40px 34px;
  overflow: hidden;
}

.site-footer .upper-contact-area .contact-grids .grid {
  width: 33.33%;
  float: left;
  padding-left: 60px;
  position: relative;
}

.site-footer .upper-contact-area .contact-grids > .grid + .grid {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 95px;
}

.site-footer .upper-contact-area .contact-grids > .grid + .grid .icon {
  left: 30px;
}

.site-footer .upper-contact-area .icon {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 40px;
  font-size: 2.5rem;
  color: #fff;
}

.site-footer .upper-contact-area h5 {
  font-size: 18px;
  font-size: cacl-rem-value(18);
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.2em;
}

.site-footer .upper-contact-area p {
  font-size: 15px;
  font-size: 0.9375rem;
  margin: 0;
  color: #efefef;
}

.site-footer .upper-footer {
  padding: 90px 0;
}

@media screen and (min-width: 992px) {
  .site-footer .upper-footer {
    padding-top: 160px;
  }
}

@media (max-width: 991px) {
  .site-footer .upper-footer {
    padding: 90px 0 20px;
  }
}

@media (max-width: 767px) {
  .site-footer .upper-footer {
    padding: 80px 0 10px;
  }
}

@media (max-width: 991px) {
  .site-footer .upper-footer .col {
    min-height: 235px;
    margin-bottom: 70px;
  }
}

@media (max-width: 767px) {
  .site-footer .upper-footer .col {
    min-height: auto;
    margin-bottom: 60px;
  }
}

.site-footer .widget-title {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .site-footer .widget-title {
    margin-bottom: 20px;
  }
}

.site-footer .widget-title h3 {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: blod;
  color: #fff;
  margin: 0;
  padding-bottom: 0.4em;
  text-transform: capitalize;
  position: relative;
}

@media (max-width: 767px) {
  .site-footer .widget-title h3 {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

@media screen and (min-width: 1200px) {
  .site-footer .about-widget {
    padding-right: 75px;
    position: relative;
  }
  .site-footer .about-widget:after {
    content: "";
    background: rgba(255, 255, 255, 0.05);
    width: 1px;
    height: 100%;
    position: absolute;
    right: 35px;
    top: 0;
  }
}

@media (max-width: 1199px) {
  .site-footer .about-widget .logo {
    max-width: 90%;
  }
}

.site-footer .about-widget p {
  margin-bottom: 0.8em;
  line-height: 1.9em;
}

.site-footer .about-widget p:last-child {
  margin-bottom: 0;
}

.site-footer .about-widget .social-icons ul {
  overflow: hidden;
  padding-top: 15px;
}

@media (max-width: 767px) {
  .site-footer .about-widget .social-icons ul {
    padding-top: 8px;
  }
}

.site-footer .about-widget .social-icons ul li {
  float: left;
}

.site-footer .about-widget .social-icons ul > li + li {
  margin-left: 15px;
}

.site-footer .about-widget .social-icons ul a {
  color: #fff;
}

.site-footer .about-widget .social-icons ul a:hover {
  color: #5533ff;
}

@media (max-width: 1199px) {
  .site-footer .link-widget {
    padding-left: 20px;
  }
}

@media (max-width: 991px) {
  .site-footer .link-widget {
    padding-left: 0;
  }
}

.site-footer .link-widget ul li {
  position: relative;
  padding-left: 15px;
}

.site-footer .link-widget ul li:before {
  content: "";
  background-color: #fff;
  width: 5px;
  height: 1px;
  position: absolute;
  left: 0;
  top: 9px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.site-footer .link-widget ul li:hover:before {
  background: #5533ff;
}

.site-footer .link-widget ul a {
  color: #fff;
}

.site-footer .link-widget ul a:hover,
.site-footer .link-widget ul li:hover:before {
  color: #2c9fdf;
}

.site-footer .link-widget ul > li + li {
  margin-top: 17px;
}

@media screen and (min-width: 1200px) {
  .site-footer .service-link-widget {
    padding-left: 25px;
  }
}

.site-footer .newsletter-widget form {
  margin-top: 25px;
  position: relative;
}

.site-footer .newsletter-widget form input {
  background-color: #172e5e;
  height: 50px;
  color: #fff;
  padding: 6px 15px;
  border: 1px solid #263964;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.site-footer .newsletter-widget form .submit {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.site-footer .newsletter-widget form .submit button {
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 20px;
  color: #fff;
}

.site-footer .lower-footer {
  text-align: center;
}

.site-footer .lower-footer .row {
  padding: 20px 0;
  position: relative;
}

.site-footer .lower-footer .row .separator {
  background: rgba(255, 255, 255, 0.05);
  width: calc(100% - 30px);
  height: 1px;
  position: absolute;
  left: 15px;
  top: 0;
}

.site-footer .lower-footer .copyright {
  float: left;
  font-size: 14px;
  font-size: 0.875rem;
  margin: 7px 0 0;
}

@media (max-width: 991px) {
  .site-footer .lower-footer .copyright {
    float: none;
    margin: 7px 0 20px;
  }
}

.site-footer .lower-footer ul {
  display: inline-block;
  overflow: hidden;
  float: right;
}

@media (max-width: 991px) {
  .site-footer .lower-footer ul {
    float: none;
  }
}

.site-footer .lower-footer ul li {
  float: left;
}

.site-footer .lower-footer ul > li + li {
  margin-left: 15px;
  position: relative;
}

@media (max-width: 767px) {
  .site-footer .lower-footer ul > li + li {
    margin-left: 15px;
  }
}

.sticky-header {
  width: 100%;
  position: fixed;
  left: 0;
  top: -200px;
  z-index: 9999;
  opacity: 0;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}

.sticky-on {
  opacity: 1;
  top: 0;
}

.header-style-1 .sticky-header, .header-style-2 .sticky-header, .header-style-3 .sticky-header {
  background-color: #7121be;
  border-bottom: 0;
}

.header-style-2 .sticky-header, .header-style-3 .sticky-header {
  background-color: #fff;
  border-bottom: 0;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
#0.6	features-section
--------------------------------------------------------------*/
.features-section, .features-section-s2, .features-section-s3 {
  padding-bottom: 90px;
}

@media (max-width: 991px) {
  .features-section, .features-section-s2, .features-section-s3 {
    padding-bottom: 70px;
  }
}

@media (max-width: 767px) {
  .features-section, .features-section-s2, .features-section-s3 {
    padding-bottom: 60px;
  }
}

.features-section .feature-grids, .features-section-s2 .feature-grids, .features-section-s3 .feature-grids {
  margin: 0 -15px;
}

@media (max-width: 991px) {
  .features-section .feature-grids, .features-section-s2 .feature-grids, .features-section-s3 .feature-grids {
    margin: 0;
  }
}

.features-section .grid, .features-section-s2 .grid, .features-section-s3 .grid {
  background-color: #fff;
  width: calc(33.33% - 30px);
  float: left;
  margin: 0 15px 30px;
  padding: 40px 40px 50px;
  -webkit-box-shadow: 0px 0px 26.66px 16.34px rgba(0, 0, 0, 0.03);
          box-shadow: 0px 0px 26.66px 16.34px rgba(0, 0, 0, 0.03);
  border-radius: 5px;
  text-align: center;
}

@media (max-width: 991px) {
  .features-section .grid, .features-section-s2 .grid, .features-section-s3 .grid {
    width: 100%;
    float: none;
    padding: 30px 35px 40px;
    margin: 0 0 30px;
  }
}

.features-section .grid h3, .features-section-s2 .grid h3, .features-section-s3 .grid h3 {
  font-size: 22px;
  font-size: 1.375rem;
  margin: 0.5em 0 0.68em;
}

@media (max-width: 991px) {
  .features-section .grid h3, .features-section-s2 .grid h3, .features-section-s3 .grid h3 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.features-section .fi:before, .features-section-s2 .fi:before, .features-section-s3 .fi:before {
  font-size: 65px;
  font-size: 4.0625rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#7400B8), color-stop(50%, #5390D9));
  background: linear-gradient(left, #7400B8, #5390D9 50%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

@media (max-width: 991px) {
  .features-section .fi:before, .features-section-s2 .fi:before, .features-section-s3 .fi:before {
    font-size: 55px;
    font-size: 3.4375rem;
  }
}

.features-section .grid p, .features-section-s2 .grid p, .features-section-s3 .grid p {
  margin: 0;
}

/*--------------------------------------------------------------
#0.7	cta-section
--------------------------------------------------------------*/
.cta-section {
  padding-bottom: 120px;
}

@media (max-width: 991px) {
  .cta-section {
    padding-bottom: 100px;
  }
}

@media (max-width: 767px) {
  .cta-section {
    padding-bottom: 90px;
    text-align: center;
  }
}

.cta-section .img-holder {
  margin-top: 30px;
}
.cta-section .cta-text h2 {
  font-size: 38px;
  font-size: 2.375rem;
  line-height: 1.2em;
  margin: -.22em 0 0.79em;
}

@media (max-width: 991px) {
  .cta-section .cta-text h2 {
    font-size: 32px;
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .cta-section .cta-text h2 {
    font-size: 26px;
    font-size: 1.625rem;
  }
}

.cta-section .cta-text p {
  margin-bottom: 2.5em;
}

@media (max-width: 991px) {
  .cta-section .cta-text {
    margin-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .cta-section .cta-text {
    margin-bottom: 0;
  }
  /* .cta-section .img-holder {
    display: none;
  } */
}

/*--------------------------------------------------------------
#0.8	site-analysis-section
--------------------------------------------------------------*/
.site-analysis-section, .site-analysis-section-s2 {
  position: relative;
}

.site-analysis-section .container, .site-analysis-section-s2 .container {
  position: relative;
  z-index: 1;
}

.site-analysis-section:before, .site-analysis-section-s2:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#7400B8), color-stop(50%, #5390D9));
  background: linear-gradient(left, #7400B8, #5390D9 50%);
  -webkit-transform: skewY(1deg);
  transform: skewY(1deg);
}

.site-analysis-section .analysis-form, .site-analysis-section-s2 .analysis-form {
  text-align: center;
}

.site-analysis-section form, .site-analysis-section-s2 form {
  position: relative;
}

.site-analysis-section form:before, .site-analysis-section-s2 form:before {
  content: "";
  background: #cacaca;
  width: 1px;
  height: 31px;
  position: absolute;
  left: 50%;
  top: 12px;
  z-index: 1;
}

@media (max-width: 767px) {
  .site-analysis-section form:before, .site-analysis-section-s2 form:before {
    height: 25px;
  }
}

.site-analysis-section form .input-1, .site-analysis-section-s2 form .input-1,
.site-analysis-section form .input-2,
.site-analysis-section-s2 form .input-2 {
  width: 50%;
  float: left;
  position: relative;
}

.site-analysis-section form .input-1, .site-analysis-section-s2 form .input-1 {
  left: 25px;
}


.site-analysis-section form .input-2,
.site-analysis-section-s2 form .input-2 {
  right: 25px;
}

.site-analysis-section form .input-2 input, .site-analysis-section-s2 form .input-2 input {
  padding-left: 45px;
}

.site-analysis-section form input, .site-analysis-section-s2 form input {
  background-color: #fff;
  height: 55px;
  padding: 6px 25px;
  border: 0;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 55px;
}

@media (max-width: 767px) {
  .site-analysis-section form input, .site-analysis-section-s2 form input {
    height: 48px;
    padding: 6px 15px;
    border-radius: 48px;
  }
}

.site-analysis-section form input:focus, .site-analysis-section-s2 form input:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media (max-width: 500px) {
  .site-analysis-section form input, .site-analysis-section-s2 form input {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.site-analysis-section form .submit, .site-analysis-section-s2 form .submit {
  clear: both;
  padding-top: 30px;
}

/*--------------------------------------------------------------
#0.9	services-section
--------------------------------------------------------------*/
.services-section .grid, .services-section-s2 .grid {
  width: 50%;
  text-align: center;
  float: left;
  padding: 60px 30px;
  border: none;
}

@media (max-width: 991px) {
  .services-section .grid, .services-section-s2 .grid {
    width: 50%;
    padding: 40px 30px;
    margin-left: -1px;
    margin-top: -1px;
  }
}

@media (max-width: 767px) {
  .services-section .grid, .services-section-s2 .grid {
    border: 1px solid #eeeeee;
    width: 100%;
    padding: 40px 20px;
  }
}

.services-section .icon, .services-section-s2 .icon {
  width: 90px;
  height: 90px;
  line-height: 90px;
  margin: 0 auto 40px;
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 20px 5px rgba(85, 51, 255, 0.05);
          box-shadow: 0px 0px 20px 5px rgba(85, 51, 255, 0.05);
}

@media (max-width: 767px) {
  .services-section .icon, .services-section-s2 .icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
  }
}

.services-section .fi:before, .services-section-s2 .fi:before {
  font-size: 40px;
  font-size: 2.5rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#7400B8), color-stop(50%, #5390D9));
  background: linear-gradient(left, #7400B8, #5390D9 50%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

@media (max-width: 767px) {
  .services-section .fi:before, .services-section-s2 .fi:before {
    font-size: 36px;
    font-size: 2.25rem;
  }
}

.services-section .grid h3, .services-section-s2 .grid h3 {
  font-size: 22px;
  font-size: 1.375rem;
  margin: 0 0 0.9em;
  text-transform: capitalize;
}

@media (max-width: 991px) {
  .services-section .grid h3, .services-section-s2 .grid h3 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.services-section .grid h3 a, .services-section-s2 .grid h3 a {
  color: #192224;
}

.services-section .grid h3 a:hover, .services-section-s2 .grid h3 a:hover {
  color: #5533ff;
}

.services-section .grid p, .services-section-s2 .grid p {
  font-size: 15px;
  font-size: 0.9375rem;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
#1.0	cta-s2-section
--------------------------------------------------------------*/
.cta-s2-section, .cta-s3-section {
  position: relative;
  color: #fff;
}

.cta-s2-section .container, .cta-s3-section .container {
  position: relative;
  z-index: 1;
}

.cta-s2-section:before, .cta-s3-section:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#7400B8), color-stop(50%, #5390D9));
  background: linear-gradient(left, #7400B8, #5390D9 50%);
  -webkit-transform: skewY(1deg);
  transform: skewY(1deg);
}

.cta-s2-section .cta-text h2, .cta-s3-section .cta-text h2 {
  font-size: 38px;
  font-size: 2.375rem;
  color: #fff;
  line-height: 1.2em;
  margin: -.22em 0 0.79em;
}

@media (max-width: 991px) {
  .cta-s2-section .cta-text h2, .cta-s3-section .cta-text h2 {
    font-size: 32px;
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .cta-s2-section .cta-text h2, .cta-s3-section .cta-text h2 {
    font-size: 26px;
    font-size: 1.625rem;
  }
}

@media (max-width: 991px) {
  .cta-s2-section .cta-text, .cta-s3-section .cta-text {
    margin-top: 60px;
  }
}

.cta-s2-section .cta-text p, .cta-s3-section .cta-text p {
  font-size: 18px;
  font-size: 1.125rem;
  color: #fff;
  margin-bottom: 2.5em;
}

@media (max-width: 991px) {
  .cta-s2-section .cta-text p, .cta-s3-section .cta-text p {
    font-size: 16px;
    font-size: 1rem;
  }
}

.cta-s2-section ul li, .cta-s3-section ul li {
  position: relative;
  padding-left: 35px;
}

.cta-s2-section ul li i, .cta-s3-section ul li i {
  position: absolute;
  left: 0;
  top: 3px;
}

.cta-s2-section ul > li + li, .cta-s3-section ul > li + li {
  margin-top: 15px;
}

/*--------------------------------------------------------------
#1.1	pricing-plan-section
--------------------------------------------------------------*/
.pricing-plan-section {
  padding-bottom: 90px;
  /*** pricing featured style ***/
  /*** pricing slider ***/
}

@media (max-width: 991px) {
  .pricing-plan-section {
    padding-bottom: 70px;
  }
}

@media (max-width: 767px) {
  .pricing-plan-section {
    padding-bottom: 60px;
  }
}

.pricing-plan-section .pricing-tab {
  position: relative;
}

.pricing-plan-section .pricing-grids {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  margin: 0 -15px;
}

@media (max-width: 991px) {
  .pricing-plan-section .pricing-grids {
    margin: 0 -7.5px;
  }
}

.pricing-plan-section .pricing-grids .grid {
  width: calc(33.33% - 30px);
  float: left;
  margin: 0 15px 30px;
  text-align: center;
  padding: 20px 30px 40px;
  -webkit-box-shadow: 0px 0px 38.44px 23.56px rgba(0, 0, 0, 0.03);
          box-shadow: 0px 0px 38.44px 23.56px rgba(0, 0, 0, 0.03);
  border-radius: 5px;
}

@media (max-width: 991px) {
  .pricing-plan-section .pricing-grids .grid {
    width: calc(50% - 15px);
    margin: 0 7.5px 30px;
  }
}

@media (max-width: 650px) {
  .pricing-plan-section .pricing-grids .grid {
    width: calc(100%);
  }
}

.pricing-plan-section .pricing-header {
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.pricing-plan-section .pricing-header .fi:before {
  font-size: 80px;
  font-size: 5rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#7400B8), color-stop(50%, #5390D9));
  background: linear-gradient(left, #7400B8, #5390D9 50%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

@media (max-width: 991px) {
  .pricing-plan-section .pricing-header .fi:before {
    font-size: 60px;
    font-size: 3.75rem;
  }
}

.pricing-plan-section .pricing-body {
  border-bottom: 1px solid #eee;
  padding: 35px 0;
}

.pricing-plan-section .pricing-body i {
  font-size: 14px;
  font-size: 0.875rem;
  display: inline-block;
  padding-right: 5px;
}

.pricing-plan-section .pricing-body .ti-check {
  color: green;
}

.pricing-plan-section .pricing-body .ti-close {
  color: red;
}

.pricing-plan-section .pricing-body ul > li + li {
  margin-top: 15px;
}

@media (max-width: 991px) {
  .pricing-plan-section .pricing-body li {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.pricing-plan-section .pricing-value {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 30px;
}

.pricing-plan-section .pricing-value h2 {
  font-size: 48px;
  font-size: 3rem;
  margin: 0;
  display: inline-block;
  position: relative;
}

@media (max-width: 991px) {
  .pricing-plan-section .pricing-value h2 {
    font-size: 40px;
    font-size: 2.5rem;
  }
}

.pricing-plan-section .pricing-value h2 span {
  font-size: 24px;
  font-size: 1.5rem;
  position: absolute;
  right: -20px;
  top: 8px;
}

.pricing-plan-section .grid h3 {
  font-size: 24px;
  font-size: 1.5rem;
  margin: 0;
}

@media (max-width: 991px) {
  .pricing-plan-section .grid h3 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.pricing-plan-section .pricing-grids .featured {
  background: -webkit-gradient(linear, left top, left bottom, from(#7400B8), color-stop(50%, #5390D9));
  background: linear-gradient(left, #7400B8, #5390D9 50%);
}

.pricing-plan-section .pricing-grids .featured .fi:before {
  color: #fff;
  background: #fff;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

.pricing-plan-section .pricing-grids .featured h3,
.pricing-plan-section .pricing-grids .featured ul li,
.pricing-plan-section .pricing-grids .featured h2,
.pricing-plan-section .pricing-grids .featured .ti-check {
  color: #fff;
}

.pricing-plan-section .pricing-grids .featured .pricing-header,
.pricing-plan-section .pricing-grids .featured .pricing-body,
.pricing-plan-section .pricing-grids .featured .pricing-value {
  border-color: rgba(255, 255, 255, 0.1);
}

.pricing-plan-section .active-grid {
  position: relative;
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.pricing-plan-section .pricing-switcher-wrapper {
  text-align: center;
  position: relative;
  margin-bottom: 60px;
}

@media (max-width: 991px) {
  .pricing-plan-section .pricing-switcher-wrapper {
    margin-bottom: 40px;
  }
}

.pricing-plan-section .pricing-switcher-wrapper .tablist span {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #000;
}

@media (max-width: 991px) {
  .pricing-plan-section .pricing-switcher-wrapper .tablist span {
    font-size: 16px;
    font-size: 1rem;
  }
}

.pricing-plan-section .pricing-switcher-wrapper .tablist .active {
  color: #5533ff;
}

.pricing-plan-section .pricing-switcher-wrapper .tablist span:first-child {
  margin-right: 155px;
}

@media (max-width: 991px) {
  .pricing-plan-section .pricing-switcher-wrapper .tablist span:first-child {
    margin-right: 125px;
  }
}

.pricing-plan-section .pricing-switcher-wrapper .tablist span:last-child {
  position: relative;
  left: -15px;
}

.pricing-plan-section .switch {
  width: 100px;
  height: 45px;
  position: absolute;
  left: 50%;
  top: -10px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (max-width: 991px) {
  .pricing-plan-section .switch {
    width: 80px;
    height: 38px;
    top: -7px;
  }
}

.pricing-plan-section .slider {
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  border-radius: 34px;
  cursor: pointer;
  -webkit-box-shadow: 0px 0px 5px 2.28px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 5px 2.28px rgba(0, 0, 0, 0.05);
}

.pricing-plan-section .slider:before {
  background-color: #5533ff;
  position: absolute;
  content: "";
  width: 35px;
  height: 35px;
  left: 7px;
  bottom: 5px;
  border-radius: 50%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

@media (max-width: 991px) {
  .pricing-plan-section .slider:before {
    width: 22px;
    height: 22px;
  }
}

.pricing-plan-section .slide-off:before {
  -webkit-transform: translateX(48px);
  transform: translateX(48px);
}

@media (max-width: 991px) {
  .pricing-plan-section .slide-off:before {
    -webkit-transform: translateX(44px);
    transform: translateX(44px);
  }
}

/*--------------------------------------------------------------
#1.2	testimonials-section
--------------------------------------------------------------*/
.testimonials-section, .testimonials-section-s2, .testimonials-page-section {
  position: relative;
}

.testimonials-section .container, .testimonials-section-s2 .container, .testimonials-page-section .container {
  position: relative;
  z-index: 1;
}

.testimonials-section:before, .testimonials-section-s2:before, .testimonials-page-section:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#7400B8), color-stop(50%, #5390D9));
  background: linear-gradient(left, #7400B8, #5390D9 50%);
  -webkit-transform: skewY(-1deg);
  transform: skewY(-1deg);
}

.testimonials-section .grid .quote, .testimonials-section-s2 .grid .quote, .testimonials-page-section .grid .quote {
  text-align: center;
}

.testimonials-section .grid .quote p, .testimonials-section-s2 .grid .quote p, .testimonials-page-section .grid .quote p {
  font-size: 22px;
  font-size: 1.375rem;
  color: #fff;
  font-style: italic;
  margin: 0;
}

@media (max-width: 991px) {
  .testimonials-section .grid .quote p, .testimonials-section-s2 .grid .quote p, .testimonials-page-section .grid .quote p {
    font-size: 17px;
    font-size: 1.0625rem;
  }
}

.testimonials-section .client-pic, .testimonials-section-s2 .client-pic, .testimonials-page-section .client-pic {
  max-width: 80px;
  margin: 0 auto;
  position: relative;
}

@media screen and (min-width: 768px) {
  .testimonials-section .client-pic:before, .testimonials-section-s2 .client-pic:before, .testimonials-page-section .client-pic:before, .testimonials-section .client-pic:after, .testimonials-section-s2 .client-pic:after, .testimonials-page-section .client-pic:after {
    content: "";
    background: url("../images/testimonials/quote.png") center center/100% no-repeat local;
    position: absolute;
    top: 10px;
    left: -130px;
    width: 70px;
    height: 50px;
  }
  .testimonials-section .client-pic:after, .testimonials-section-s2 .client-pic:after, .testimonials-page-section .client-pic:after {
    left: auto;
    right: -130px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}

.testimonials-section .client-pic img, .testimonials-section-s2 .client-pic img, .testimonials-page-section .client-pic img {
  width: auto;
  border: 4px solid #8fccee;
  border-radius: 50%;
}

.testimonials-section .client-info, .testimonials-section-s2 .client-info, .testimonials-page-section .client-info {
  text-align: center;
  margin-top: 35px;
}

.testimonials-section .client-info h5, .testimonials-section-s2 .client-info h5, .testimonials-page-section .client-info h5 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: normal;
  color: #fff;
  margin: 1em 0 0.2em;
}

.testimonials-section .client-info h5 + span, .testimonials-section-s2 .client-info h5 + span, .testimonials-page-section .client-info h5 + span {
  font-size: 13px;
  font-size: 0.8125rem;
  color: #fff;
}

.testimonials-section .owl-theme .owl-controls, .testimonials-section-s2 .owl-theme .owl-controls, .testimonials-page-section .owl-theme .owl-controls {
  margin-top: 20px;
}

.testimonials-section .owl-dots, .testimonials-section-s2 .owl-dots, .testimonials-page-section .owl-dots {
  height: 10px;
}

.testimonials-section .owl-dots .owl-dot, .testimonials-section-s2 .owl-dots .owl-dot, .testimonials-page-section .owl-dots .owl-dot {
  border: 1px solid #e5e5e5;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  text-align: center;
  margin-right: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.testimonials-section .owl-dots .owl-dot span, .testimonials-section-s2 .owl-dots .owl-dot span, .testimonials-page-section .owl-dots .owl-dot span {
  background-color: #e5e5e5;
  width: 6px;
  height: 6px;
  margin: 3px auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.testimonials-section .owl-dots .owl-dot.active, .testimonials-section-s2 .owl-dots .owl-dot.active, .testimonials-page-section .owl-dots .owl-dot.active {
  border: 1px solid #5533ff;
}

.testimonials-section .owl-dots .owl-dot.active span, .testimonials-section-s2 .owl-dots .owl-dot.active span, .testimonials-page-section .owl-dots .owl-dot.active span,
.testimonials-section .owl-dots .owl-dot:hover span,
.testimonials-section-s2 .owl-dots .owl-dot:hover span,
.testimonials-page-section .owl-dots .owl-dot:hover span {
  background-color: #5533ff;
  border-color: #5533ff;
}

/*--------------------------------------------------------------
#1.3	case-study-section
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .case-study-section, .case-study-page-section {
    padding-bottom: 70px;
  }
}

@media (max-width: 767px) {
  .case-study-section, .case-study-page-section {
    padding-bottom: 60px;
  }
}

.case-study-section .case-grids .grid, .case-study-page-section .case-grids .grid {
  width: 33.33%;
  float: left;
}

@media (max-width: 991px) {
  .case-study-section .case-grids .grid, .case-study-page-section .case-grids .grid {
    width: 50%;
    margin-bottom: 30px;
  }
}

@media (max-width: 600px) {
  .case-study-section .case-grids .grid, .case-study-page-section .case-grids .grid {
    width: 100%;
  }
}

.case-study-section .grid h3, .case-study-page-section .grid h3 {
  font-size: 20px;
  font-size: 1.25rem;
  margin: 0 0 0.4em;
}

@media (max-width: 991px) {
  .case-study-section .grid h3, .case-study-page-section .grid h3 {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.case-study-section .grid h3 a, .case-study-page-section .grid h3 a {
  color: #192224;
}

.case-study-section .grid h3 a:hover, .case-study-page-section .grid h3 a:hover {
  color: #5533ff;
}

.case-study-section .grid .cat, .case-study-page-section .grid .cat {
  margin: 0;
}

.case-study-section .grid .details, .case-study-page-section .grid .details {
  background: #fff;
  padding: 35px 35px 30px;
  -webkit-box-shadow: 0px 0px 26.66px 16.34px rgba(0, 0, 0, 0.03);
          box-shadow: 0px 0px 26.66px 16.34px rgba(0, 0, 0, 0.03);
}

@media (max-width: 991px) {
  .case-study-section .grid .details, .case-study-page-section .grid .details {
    padding: 25px 20px 20px;
  }
}

.case-study-section .case-grids > .grid:nth-child(2), .case-study-page-section .case-grids > .grid:nth-child(2) {
  z-index: 2;
}

.case-study-section .case-grids > .grid:nth-child(3), .case-study-page-section .case-grids > .grid:nth-child(3) {
  z-index: 3;
}

/*--------------------------------------------------------------
#1.4	partners-section
--------------------------------------------------------------*/
.partners-section {
  background-color: #f4f5fd;
  padding: 90px 0;
}

.partners-section .owl-carousel .owl-item img {
  width: auto;
}

/*--------------------------------------------------------------
#1.5	newsletter-section
--------------------------------------------------------------*/
.newsletter-section, .newsletter-section-s2 {
  position: relative;
}

.newsletter-section:before, .newsletter-section-s2:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#7400B8), color-stop(50%, #5390D9));
  background: linear-gradient(left, #7400B8, #5390D9 50%);
  -webkit-transform: skewY(-1deg);
  transform: skewY(-1deg);
}

.newsletter-section:after, .newsletter-section-s2:after {
  background: #5533ff;
  content: "";
  width: 100%;
  height: 20%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: skewY(1deg);
  transform: skewY(1deg);
  z-index: -1;
}

.newsletter-section .container, .newsletter-section-s2 .container {
  position: relative;
  z-index: 1;
}

.newsletter-section form, .newsletter-section-s2 form {
  position: relative;
}

.newsletter-section form input, .newsletter-section-s2 form input {
  height: 60px;
  padding: 6px 20px;
  border: 0;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 60px;
}

@media (max-width: 991px) {
  .newsletter-section form input, .newsletter-section-s2 form input {
    height: 50px;
    border-radius: 50px;
  }
}

.newsletter-section .submit, .newsletter-section-s2 .submit {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.newsletter-section .submit button, .newsletter-section-s2 .submit button {
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 20px;
  color: #5533ff;
}

/*--------------------------------------------------------------
#1.6	recent-blog-section
--------------------------------------------------------------*/
.recent-blog-section {
  padding-bottom: 90px;
}

@media (max-width: 991px) {
  .recent-blog-section {
    padding-bottom: 70px;
  }
}

@media (max-width: 767px) {
  .recent-blog-section {
    padding-bottom: 60px;
  }
}

.recent-blog-section .news-grids {
  margin: 0 -15px;
}

.recent-blog-section .news-grids .grid {
  width: calc(33.33% - 30px);
  margin: 0 15px 30px;
  float: left;
}

@media (max-width: 1199px) {
  .recent-blog-section .news-grids .grid {
    width: calc(50% - 30px);
  }
}

@media (max-width: 650px) {
  .recent-blog-section .news-grids .grid {
    width: calc(100% - 30px);
  }
}

.recent-blog-section .grid .entry-details {
  padding: 35px;
  -webkit-box-shadow: 0px 0px 26.66px 16.34px rgba(0, 0, 0, 0.03);
          box-shadow: 0px 0px 26.66px 16.34px rgba(0, 0, 0, 0.03);
}

@media (max-width: 991px) {
  .recent-blog-section .grid .entry-details {
    padding: 25px;
  }
}

.recent-blog-section .grid .entry-details h3 {
  font-size: 20px;
  font-size: 1.25rem;
  margin: 0 0 1em;
  line-height: 1.2em;
}

@media (max-width: 991px) {
  .recent-blog-section .grid .entry-details h3 {
    font-size: 16px;
    font-size: 1rem;
  }
}

.recent-blog-section .grid .entry-details h3 a {
  color: #192224;
}

.recent-blog-section .grid .entry-details h3 a:hover {
  color: #5533ff;
}

.recent-blog-section .grid .entry-details ul {
  overflow: hidden;
}

.recent-blog-section .grid .entry-details ul li {
  font-size: 14px;
  font-size: 0.875rem;
  float: left;
}

.recent-blog-section .grid .entry-details li a {
  color: #6c6c6c;
}

.recent-blog-section .grid .entry-details li a:hover {
  color: #5533ff;
}

.recent-blog-section .grid .entry-details ul > li + li {
  margin-left: 20px;
}

.recent-blog-section .grid .entry-details li i {
  display: inline-block;
  padding-right: 3px;
  color: #5533ff;
}

.recent-blog-section .grid .entry-details ul li:last-child i {
  position: relative;
  top: 2px;
}

.recent-blog-section .right-col-posts {
  -webkit-box-shadow: 0px 0px 26.66px 16.34px rgba(0, 0, 0, 0.03);
          box-shadow: 0px 0px 26.66px 16.34px rgba(0, 0, 0, 0.03);
  padding: 35px 38px;
}

@media (max-width: 991px) {
  .recent-blog-section .right-col-posts {
    padding: 25px;
  }
}

.recent-blog-section .right-col-posts > .post + .post {
  border-top: 1px solid #eee;
  padding-top: 26px;
  margin-top: 26px;
}

.recent-blog-section .right-col-posts h3 {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3em;
  margin: 0 0 0.9em;
}

@media (max-width: 1199px) {
  .recent-blog-section .right-col-posts h3 {
    font-size: 16px;
    font-size: 1rem;
  }
}

.recent-blog-section .right-col-posts h3 a {
  color: #192224;
}

.recent-blog-section .right-col-posts h3 a:hover {
  color: #5533ff;
}

.recent-blog-section .right-col-posts ul {
  overflow: hidden;
}

.recent-blog-section .right-col-posts ul li {
  font-size: 14px;
  font-size: 0.875rem;
  float: left;
}

@media (max-width: 1199px) {
  .recent-blog-section .right-col-posts ul li {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}

.recent-blog-section .right-col-posts li a {
  color: #6c6c6c;
}

.recent-blog-section .right-col-posts li a:hover {
  color: #5533ff;
}

.recent-blog-section .right-col-posts ul > li + li {
  margin-left: 20px;
}

.recent-blog-section .right-col-posts li i {
  display: inline-block;
  padding-right: 3px;
  color: #5533ff;
}

.recent-blog-section .right-col-posts ul li:last-child i {
  position: relative;
  top: 2px;
}

/*--------------------------------------------------------------
	home style 2
--------------------------------------------------------------*/
/*--------------------------------------------------------------
#2.0	features-section-s2
--------------------------------------------------------------*/
.features-section-s2 .grid {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #eee;
}

/*--------------------------------------------------------------
#2.1	work-process-section
--------------------------------------------------------------*/
.work-process-section, .work-process-section-s2 {
  padding-top: 0;
}

.work-process-section .grids h3, .work-process-section-s2 .grids h3 {
  font-size: 24px;
  font-size: 1.5rem;
  margin: 0 0 0.6em;
  text-transform: capitalize;
}

.work-process-section .grids h3 > span, .work-process-section-s2 .grids h3 > span {
  display: none;
}

@media screen and (min-width: 992px) {
  .work-process-section .left-grid, .work-process-section-s2 .left-grid {
    text-align: right;
    padding-top: 0;
  }
  .work-process-section .left-grid .grid, .work-process-section-s2 .left-grid .grid {
    padding: 60px 15px 30px 15px;
  }
  .work-process-section .right-grid, .work-process-section-s2 .right-grid {
    padding-top: 0;
  }
  .work-process-section .right-grid .grid, .work-process-section-s2 .right-grid .grid {
    padding: 60px 15px 30px 15px;
  }
}

@media screen and (min-width: 1200px) {
  .work-process-section .left-grid, .work-process-section-s2 .left-grid {
    text-align: right;
    padding-top: 50px;
  }
  .work-process-section .left-grid .grid, .work-process-section-s2 .left-grid .grid {
    padding: 60px 45px 30px 50px;
  }
  .work-process-section .right-grid, .work-process-section-s2 .right-grid {
    padding-top: 50px;
  }
  .work-process-section .right-grid .grid, .work-process-section-s2 .right-grid .grid {
    padding: 60px 50px 30px 45px;
  }
}

@media (max-width: 991px) {
  .work-process-section, .work-process-section-s2 {
    padding-bottom: 60px;
  }
  .work-process-section .grids, .work-process-section-s2 .grids {
    margin: 0 -15px;
    overflow: hidden;
  }
  .work-process-section .grid, .work-process-section-s2 .grid {
    width: 50%;
    float: left;
    padding: 0 15px 30px;
  }
  .work-process-section .grid h3, .work-process-section-s2 .grid h3 {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .work-process-section .grid h3 span, .work-process-section-s2 .grid h3 span {
    display: inline-block;
    padding-right: 10px;
  }
  /* .work-process-section .img-holder, .work-process-section-s2 .img-holder {
    display: none;
  } */
  .work-process-section .grid p, .work-process-section-s2 .grid p {
    margin: 0;
  }
}

@media (max-width: 767px) {
  .work-process-section, .work-process-section-s2 {
    padding-bottom: 50px;
  }
}

@media (max-width: 550px) {
  .work-process-section .grid, .work-process-section-s2 .grid {
    width: 100%;
    float: none;
  }
}

.work-process-section-s2 {
  padding: 120px 0;
}

@media (max-width: 991px) {
  .work-process-section-s2 {
    padding: 100px 0;
  }
}

@media (max-width: 767px) {
  .work-process-section-s2 {
    padding: 90px 0;
  }
}

/*--------------------------------------------------------------
#2.2	site-analysis-section-s2
--------------------------------------------------------------*/
.site-analysis-section-s2 {
  background: -webkit-gradient(linear, left top, left bottom, from(#7400B8), color-stop(50%, #5390D9));
  background: linear-gradient(left, #7400B8, #5390D9 50%);
}

.site-analysis-section-s2:before {
  display: none;
}

/*--------------------------------------------------------------
#2.3	services-section-s2
--------------------------------------------------------------*/
.services-section-s2 {
  padding-bottom: 90px;
}

@media (max-width: 991px) {
  .services-section-s2 {
    padding-bottom: 70px;
  }
}

@media (max-width: 767px) {
  .services-section-s2 {
    padding-bottom: 60px;
  }
}

.services-section-s2 .service-grids {
  margin: 0 -15px;
}

.services-section-s2 .col .service-grids .grid {
  border: 0;
  -webkit-box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.03);
          box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.03);
  width: calc(33.33% - 30px);
  margin: 0 15px 30px;
  padding: 40px 30px;
}

@media (max-width: 991px) {
  .services-section-s2 .col .service-grids .grid {
    width: calc(50% - 30px);
  }
}

@media (max-width: 650px) {
  .services-section-s2 .col .service-grids .grid {
    width: calc(100% - 30px);
    float: none;
    padding: 30px 20px;
  }
}

/*--------------------------------------------------------------
#2.4	cta-s3-section
--------------------------------------------------------------*/
.cta-s3-section {
  background: -webkit-gradient(linear, left top, left bottom, from(#7400B8), color-stop(50%, #5390D9));
  background: linear-gradient(left, #7400B8, #5390D9 50%);
}

.cta-s3-section:before {
  display: none;
}

.cta-s3-section .img-holder {
  text-align: right;
}

/*--------------------------------------------------------------
#2.5	testimonials-section-s2
--------------------------------------------------------------*/
.testimonials-section-s2, .testimonials-page-section {
  background: -webkit-gradient(linear, left top, left bottom, from(#7400B8), color-stop(50%, #5390D9));
  background: linear-gradient(left, #7400B8, #5390D9 50%);
}

.testimonials-section-s2:before, .testimonials-page-section:before {
  display: none;
}

/*--------------------------------------------------------------
#2.6	newsletter-section-s2
--------------------------------------------------------------*/
.newsletter-section-s2 {
  background: -webkit-gradient(linear, left top, left bottom, from(#7400B8), color-stop(50%, #5390D9));
  background: linear-gradient(left, #7400B8, #5390D9 50%);
}

.newsletter-section-s2:before {
  display: none;
}

/*--------------------------------------------------------------
	about page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
#3.0	about-pg-section
--------------------------------------------------------------*/
.about-pg-section {
  padding-bottom: 100px;
}

@media (max-width: 1199px) {
  .about-pg-section {
    padding-bottom: 30px;
  }
}

@media (max-width: 991px) {
  .about-pg-section {
    padding-bottom: 80px;
  }
}

@media (max-width: 767px) {
  .about-pg-section {
    padding-bottom: 70px;
  }
}

.about-pg-section .about-text h2 {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1.2em;
  margin: -0.27em 0 0.8em;
  text-transform: capitalize;
}

@media screen and (min-width: 1200px) {
  .about-pg-section .about-text h2 {
    padding-right: 50px;
  }
}

@media (max-width: 991px) {
  .about-pg-section .about-text h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

@media (max-width: 767px) {
  .about-pg-section .about-text h2 {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}

.about-pg-section .about-text p {
  margin-bottom: 1.7em;
}

.about-pg-section .video-holder {
  margin-left: 10px;
  position: relative;
}

.about-pg-section .video-holder:before {
  content: "";
  background-color: rgba(255, 255, 255, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

@media screen and (min-width: 1200px) {
  .about-pg-section .video-holder {
    margin-left: 100px;
  }
}

@media (max-width: 991px) {
  .about-pg-section .video-holder {
    max-width: 570px;
    margin: 60px 0 0;
  }
}

.about-pg-section .video-holder .fi:before {
  font-size: 70px;
  font-size: 4.375rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#7400B8), color-stop(50%, #5390D9));
  background: linear-gradient(left, #7400B8, #5390D9 50%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

@media (max-width: 767px) {
  .about-pg-section .video-holder .fi:before {
    font-size: 50px;
    font-size: 3.125rem;
  }
}

.about-pg-section .video-holder a {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/*--------------------------------------------------------------
#3.1	mission-vision-section
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .mission-vision-section .row > .col + .col {
    margin-top: 40px;
  }
}

.mission-vision-section h3 {
  font-size: 28px;
  font-size: 1.75rem;
  margin: -0.17em 0 0.6em;
  text-transform: capitalize;
}

@media (max-width: 991px) {
  .mission-vision-section h3 {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

@media (max-width: 767px) {
  .mission-vision-section h3 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

/*--------------------------------------------------------------
#3.2	features-section-s3
--------------------------------------------------------------*/
.features-section-s3 {
  padding-top: 100px;
}

@media (max-width: 991px) {
  .features-section-s3 {
    padding-top: 80px;
  }
}

@media (max-width: 767px) {
  .features-section-s3 {
    padding-top: 70px;
  }
}

/*--------------------------------------------------------------
#3.3	about-pg-history
--------------------------------------------------------------*/
.about-pg-history {
  border-top: 1px solid #e6e6e6;
  padding-bottom: 30px;
}

.about-pg-history .section-title, .about-pg-history .section-title-s2, .about-pg-history .section-title-s3 {
  padding-left: 0;
}

.about-pg-history .history-grids .grid {
  width: calc(50% - 70px);
  float: left;
  padding: 0 0 0 50px;
  margin-bottom: 80px;
  position: relative;
}

@media (max-width: 991px) {
  .about-pg-history .history-grids .grid {
    width: calc(50% - 10px);
    margin-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .about-pg-history .history-grids .grid {
    width: 100%;
    margin-bottom: 50px;
  }
}

.about-pg-history .history-grids .grid:before {
  content: "";
  background-color: #dcdcdc;
  width: 1px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.about-pg-history .history-grids .grid:after {
  content: "";
  background-color: #5533ff;
  width: 13px;
  height: 13px;
  border: 2px solid #fff;
  border-radius: 50%;
  position: absolute;
  left: -6px;
  top: 32px;
}

.about-pg-history .history-grids .grid:nth-child(odd) {
  width: calc(50% + 70px);
  padding-right: 150px;
}

@media (max-width: 991px) {
  .about-pg-history .history-grids .grid:nth-child(odd) {
    width: calc(50% + 10px);
    padding-right: 35px;
  }
}

@media (max-width: 767px) {
  .about-pg-history .history-grids .grid:nth-child(odd) {
    width: 100%;
  }
}

.about-pg-history .history-grids .date {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  color: #5533ff;
}

.about-pg-history .history-grids .grid h3 {
  font-size: 18px;
  font-size: calc(18);
  margin: 0.5em 0 1em;
  position: relative;
  text-transform: capitalize;
}

.about-pg-history .history-grids .grid h3:before {
  content: "";
  background-color: #dcdcdc;
  width: 33px;
  height: 1px;
  position: absolute;
  left: -50px;
  top: 7px;
}

/*--------------------------------------------------------------
#3.4	fun-fact-section
--------------------------------------------------------------*/
.fun-fact-section {
  background: url("../images/fun-fact-bg.jpg") center center/cover no-repeat fixed;
  padding: 90px 0 100px;
  position: relative;
}

.fun-fact-section:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#7400B8), color-stop(50%, #5390D9));
  background: linear-gradient(left, #7400B8, #5390D9 50%);
  opacity: 0.95;
}

@media (max-width: 991px) {
  .fun-fact-section {
    padding: 70px 0 20px;
  }
}

.fun-fact-section .funfact-grids {
  overflow: hidden;
}

.fun-fact-section .funfact-grids .grid {
  width: 25%;
  float: left;
  position: relative;
  padding-left: 70px;
}

@media (max-width: 1199px) {
  .fun-fact-section .funfact-grids .grid {
    padding-left: 60px;
  }
}

@media (max-width: 991px) {
  .fun-fact-section .funfact-grids .grid {
    width: 50%;
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .fun-fact-section .funfact-grids .grid {
    padding-left: 50px;
  }
}

@media (max-width: 500px) {
  .fun-fact-section .funfact-grids .grid {
    width: 100%;
    float: none;
  }
}

.fun-fact-section .icon {
  position: absolute;
  left: 0;
  top: 5px;
}

.fun-fact-section .fi:before {
  font-size: 50px;
  font-size: 50px;
  color: #fff;
}

@media (max-width: 1199px) {
  .fun-fact-section .fi:before {
    font-size: 40px;
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .fun-fact-section .fi:before {
    font-size: 35px;
    font-size: 35px;
  }
}

.fun-fact-section h3 {
  font-size: 60px;
  font-size: 60px;
  font-weight: 300;
  color: #fff;
  margin: 0;
  line-height: 0.9em;
}

@media (max-width: 1199px) {
  .fun-fact-section h3 {
    font-size: 50px;
    font-size: 50px;
  }
}

@media (max-width: 991px) {
  .fun-fact-section h3 {
    font-size: 45px;
    font-size: 45px;
  }
}

@media (max-width: 767px) {
  .fun-fact-section h3 {
    font-size: 40px;
    font-size: 40px;
  }
}

.fun-fact-section p {
  font-size: 18px;
  font-size: 1.125rem;
  color: #fff;
  margin: 0;
}

@media (max-width: 991px) {
  .fun-fact-section p {
    font-size: 16px;
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .fun-fact-section p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

/*--------------------------------------------------------------
#3.5 	team-section
----------------------------------------------------------------*/
.team-section {
  padding-bottom: 70px;
}

@media (max-width: 991px) {
  .team-section {
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .team-section {
    padding-bottom: 50px;
  }
}

.team-section .team-grids .grid {
  width: calc(25% - 1px);
  float: left;
  margin: 0 1px 30px 0;
}

@media (max-width: 991px) {
  .team-section .team-grids .grid {
    width: calc(50% - 1px);
  }
}

@media (max-width: 500px) {
  .team-section .team-grids .grid {
    width: calc(100% - 1px);
    float: none;
  }
}

.team-section .grid .details {
  padding: 30px;
  -webkit-box-shadow: 0px 8px 48.38px 10.62px rgba(0, 0, 0, 0.03);
          box-shadow: 0px 8px 48.38px 10.62px rgba(0, 0, 0, 0.03);
  text-align: center;
}

@media (max-width: 767px) {
  .team-section .grid .details {
    padding: 20px;
  }
}

.team-section .grid .details h3 {
  font-size: 20px;
  font-size: 1.25rem;
  margin: 0 0 0.4em;
}

@media (max-width: 767px) {
  .team-section .grid .details h3 {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.team-section .grid .details h3 + span {
  color: #2c9fdf;
}

/*--------------------------------------------------------------
	#contact page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
#4.0	contact-page-section
--------------------------------------------------------------*/
.contact-page-section {
  position: relative;
  padding-bottom: 105px;
  /*** contact-info-area ***/
}

@media (max-width: 991px) {
  .contact-page-section {
    padding-bottom: 85px;
  }
}

@media (max-width: 767px) {
  .contact-page-section {
    padding-bottom: 75px;
  }
}

.contact-page-section .contact-form {
  position: relative;
}

.contact-page-section .contact-form form > div {
  margin-bottom: 35px;
}

.contact-page-section .contact-form form > div:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 767px) {
  .contact-page-section .contact-form form > div:first-child,
  .contact-page-section .contact-form form > div:nth-child(2) {
    width: calc(50% - 10px);
    float: left;
  }
  .contact-page-section .contact-form form > div:first-child {
    margin-right: 10px;
  }
  .contact-page-section .contact-form form > div:nth-child(2) {
    margin-left: 10px;
  }
  .contact-page-section .contact-form form > div:nth-child(3) {
    clear: both;
  }
}

.contact-page-section .contact-form input,
.contact-page-section .contact-form textarea {
  background-color: #fbfbfb;
  font-size: 15px;
  font-size: 0.9375rem;
  height: 50px;
  padding: 6px 15px;
  border: 1px solid #e4e4e4;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.contact-page-section .contact-form input:focus,
.contact-page-section .contact-form textarea:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media (max-width: 767px) {
  .contact-page-section .contact-form input,
  .contact-page-section .contact-form textarea {
    font-size: 14px;
    font-size: calc(14);
  }
}

.contact-page-section .contact-form textarea {
  height: 150px;
}

.contact-page-section .contact-form .submit-btn-wrapper {
  margin-bottom: 0;
}

.contact-page-section .contact-form .submit-btn-wrapper button {
  border: 0;
}

.contact-page-section .contact-info-area {
  padding-left: 100px;
  background: url("../images/contact-dotted-map.png") center center/100% no-repeat local;
}

@media (max-width: 1199px) {
  .contact-page-section .contact-info-area {
    padding-left: 60px;
  }
}

@media (max-width: 991px) {
  .contact-page-section .contact-info-area {
    margin-top: 70px;
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .contact-page-section .contact-info-area {
    padding: 40px 20px;
    margin-top: 60px;
  }
}

.contact-page-section .contact-info-area .title h3 {
  font-size: 32px;
  font-size: 2rem;
  margin: 0 0 0.56em;
  text-transform: capitalize;
}

@media (max-width: 991px) {
  .contact-page-section .contact-info-area .title h3 {
    font-size: 28px;
    font-size: 1.75rem;
  }
}

.contact-page-section .contact-info ul {
  list-style: none;
  margin-top: 45px;
}

@media (max-width: 991px) {
  .contact-page-section .contact-info ul {
    margin-top: 45px;
  }
}

@media (max-width: 767px) {
  .contact-page-section .contact-info ul {
    margin-top: 35px;
  }
}

.contact-page-section .contact-info ul li {
  position: relative;
  padding-left: 75px;
  padding-top: 5px;
  color: #595757;
}

.contact-page-section .contact-info ul > li + li {
  margin-top: 40px;
}

.contact-page-section .contact-info ul .icon {
  background: #fff;
  width: 60px;
  height: 60px;
  line-height: 70px;
  text-align: center;
  border: 1px solid rgba(85, 51, 255, 0.2);
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.18);
          box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.18);
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 767px) {
  .contact-page-section .contact-info ul .icon {
    width: 50px;
    height: 50px;
    line-height: 60px;
  }
}

.contact-page-section .contact-info ul .icon i {
  font-size: 25px;
  font-size: 1.5625rem;
  color: #5533ff;
}

@media (max-width: 767px) {
  .contact-page-section .contact-info ul .icon i {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.contact-page-section .contact-info ul p {
  line-height: 1.4em;
  font-weight: normal;
  color: #595757;
  margin: 0;
  min-height: 50px;
}

@media (max-width: 991px) {
  .contact-page-section .contact-info ul p {
    font-size: 16px;
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
#4.1	contact-map-section
--------------------------------------------------------------*/
.contact-map-section {
  padding-top: 0;
}

.contact-map-section .contact-map {
  width: 100%;
  height: 450px;
}

@media (max-width: 767px) {
  .contact-map-section .contact-map {
    height: 350px;
  }
}

.contact-map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
}

/*--------------------------------------------------------------
	#service single page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
#5.0	service-single-section
--------------------------------------------------------------*/
.service-single-section .tablinks {
  text-align: center;
}

.service-single-section .tablinks li {
  display: inline-block;
}

.service-single-section .tablinks li a {
  color: #676767;
  display: block;
  padding: 35px 20px;
  margin-left: -3px;
  -webkit-box-shadow: 0px 0px 51px 0px rgba(0, 0, 0, 0.06);
          box-shadow: 0px 0px 51px 0px rgba(0, 0, 0, 0.06);
}

@media (max-width: 991px) {
  .service-single-section .tablinks li a {
    font-size: 14px;
    font-size: 0.875rem;
    padding: 15px;
  }
}

.service-single-section .tablinks li.active a {
  background-color: #7043d4;
  color: #fff;
}

.service-single-section .tab-content {
  padding-top: 70px;
}

@media (max-width: 991px) {
  .service-single-section .tab-content {
    padding-top: 50px;
  }
}

.service-single-section .service-details h3 {
  font-size: 26px;
  font-size: 1.625rem;
  margin: 0 0 1em;
}

@media (max-width: 991px) {
  .service-single-section .service-details h3 {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

.service-single-section .service-details p {
  margin-bottom: 1.5em;
}

.service-single-section .service-details ul {
  margin-bottom: 35px;
}

.service-single-section .service-details ul li {
  position: relative;
  padding-left: 25px;
}

.service-single-section .service-details ul li i {
  position: absolute;
  left: 0;
  top: 2px;
  color: #5533ff;
}

.service-single-section .service-details ul > li + li {
  margin-top: 12px;
}

.service-single-section .service-single-img-holder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (max-width: 991px) {
  .service-single-section .service-single-img-holder {
    display: none;
  }
}

.service-single-section .service-single-img-holder img {
  display: inline-block;
}

/*--------------------------------------------------------------
	#case single page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
#6.0	case-single-section
--------------------------------------------------------------*/
.case-single-section .content h2 {
  font-size: 28px;
  font-size: 1.75rem;
  margin-bottom: 0.8em;
}

@media (max-width: 991px) {
  .case-single-section .content h2 {
    font-size: 26px;
    font-size: 1.625rem;
  }
}

.case-single-section .content h3 {
  font-size: 24px;
  font-size: 1.5rem;
  margin: 1.2em 0;
}

.case-single-section .content p {
  margin-bottom: 1.5em;
  line-height: 2em;
}

.case-single-section .content ul {
  list-style: none;
  padding-top: 10px;
}

.case-single-section .content ul > li + li {
  margin-top: 12px;
}

.case-single-section .content ul li {
  position: relative;
  padding-left: 25px;
  line-height: 1.7em;
  color: #192224;
}

.case-single-section .content ul li i {
  color: #5533ff;
  position: absolute;
  left: 0;
  top: 5px;
}

.case-single-section .overview-info {
  overflow: hidden;
  margin-top: 70px;
}

@media (max-width: 991px) {
  .case-single-section .overview-info {
    margin-top: 60px;
  }
}

@media (max-width: 767px) {
  .case-single-section .overview-info {
    margin-top: 50px;
  }
}

.case-single-section .overview-info .overview {
  width: calc(100% - 340px);
  float: left;
  padding-right: 55px;
}

@media (max-width: 991px) {
  .case-single-section .overview-info .overview {
    width: 100%;
    float: none;
    padding-right: 0;
  }
}

.case-single-section .overview-info .project-info {
  width: 340px;
  border-left: 1px solid #eee;
  padding-left: 55px;
  margin-top: 50px;
  float: right;
}

@media (max-width: 991px) {
  .case-single-section .overview-info .project-info {
    width: 100%;
    float: none;
    border-left: 2px solid #eee;
    padding-left: 45px;
    margin-bottom: 35px;
  }
}

@media (max-width: 767px) {
  .case-single-section .overview-info .project-info {
    padding-left: 20px;
    margin-bottom: 35px;
  }
}

.case-single-section .overview-info .project-info span {
  color: #000;
  font-weight: bold;
}

.case-single-section .project-info ul {
  list-style: none;
  padding: 0;
}

.case-single-section .project-info ul li {
  padding-left: 0;
  line-height: 1.7em;
}

@media (max-width: 1199px) {
  .case-single-section .project-info ul li {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.64em;
  }
}

.case-single-section .project-info ul > li + li {
  margin-top: 12px;
}

.case-single-section .project-info ul li span {
  color: #192224;
  font-weight: 500;
}

.case-single-section .prev-next {
  max-height: 45px;
  text-align: center;
  margin-top: 60px;
}

.case-single-section .prev-next ul {
  list-style: none;
  overflow: hidden;
  display: inline-block;
}

.case-single-section .prev-next ul li {
  display: inline-block;
}

.case-single-section .prev-next ul a {
  background-color: #5533ff;
  display: block;
  padding: 12px 25px 12px 15px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
}

.case-single-section .prev-next ul a i {
  display: inline-block;
  padding: 0 5px;
}

.case-single-section .prev-next ul a:hover {
  background-color: #401aff;
}

.case-single-section .prev-next ul li:last-child a {
  padding: 12px 15px 12px 25px;
}

.case-single-section .owl-controls {
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0;
}

.case-single-section .owl-controls .owl-nav [class*=owl-] {
  background: rgba(85, 51, 255, 0.5);
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  margin: 0;
  border-radius: 50%;
}

@media (max-width: 767px) {
  .case-single-section .owl-controls .owl-nav [class*=owl-] {
    width: 45px;
    height: 45px;
    line-height: 45px;
  }
}

.case-single-section .owl-controls .owl-nav [class*=owl-]:hover {
  background-color: #5533ff;
}

.case-single-section .owl-controls .owl-nav .owl-next,
.case-single-section .owl-controls .owl-nav .owl-prev {
  position: absolute;
  left: 15px;
  top: -25px;
}

@media (max-width: 767px) {
  .case-single-section .owl-controls .owl-nav .owl-next,
  .case-single-section .owl-controls .owl-nav .owl-prev {
    top: -22px;
  }
}

.case-single-section .owl-controls .owl-nav .owl-next {
  left: auto;
  right: 15px;
}

/*--------------------------------------------------------------
	#blog page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
#7.0	blog-pg-section
--------------------------------------------------------------*/
.blog-pg-section .post {
  position: relative;
}

.blog-pg-section .blog-content > .post + .post {
  margin-top: 100px;
}

@media (max-width: 991px) {
  .blog-pg-section .blog-content > .post + .post {
    margin-top: 70px;
  }
}

@media (max-width: 767px) {
  .blog-pg-section .blog-content > .post + .post {
    margin-top: 60px;
  }
}

.blog-pg-section .post .entry-media {
  margin-bottom: 22px;
}

.blog-pg-section .entry-body {
  background-color: #fff;
  position: relative;
  z-index: 10;
}

.blog-pg-section .post h3 {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1.3em;
  margin: 1em 0;
}

@media (max-width: 991px) {
  .blog-pg-section .post h3 {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

@media (max-width: 767px) {
  .blog-pg-section .post h3 {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

.blog-pg-section .post h3 a {
  color: #192224;
  display: inline-block;
}

.blog-pg-section .post h3 a:hover {
  color: #5533ff;
}

.blog-pg-section .post .meta {
  list-style: none;
  overflow: hidden;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}

@media (max-width: 767px) {
  .blog-pg-section .post .meta {
    padding-bottom: 10px;
  }
}

.blog-pg-section .post .meta li {
  font-size: 13px;
  font-size: 0.8125rem;
  float: left;
  color: #192224;
  position: relative;
  margin-right: 25px;
}

@media (max-width: 767px) {
  .blog-pg-section .post .meta li {
    margin-right: 20px;
    margin-bottom: 5px;
  }
}

.blog-pg-section .post .meta > li:last-child {
  margin-right: 0;
}

.blog-pg-section .post .meta a,
.blog-pg-section .post .meta i {
  color: #192224;
  font-weight: normal;
}

.blog-pg-section .post .meta i {
  color: #5533ff;
  display: inline-block;
  padding-right: 5px;
}

.blog-pg-section .post .meta a:hover {
  color: #5533ff;
}

.blog-pg-section .entry-details {
  margin-top: 25px;
}

@media (max-width: 991px) {
  .blog-pg-section .entry-details {
    margin-top: 20px;
  }
}

.blog-pg-section .entry-details p {
  margin: 0 0 1.5em;
}

.blog-pg-section .entry-details a {
  font-weight: bold;
}

.blog-pg-section .post-slider {
  position: relative;
}

.blog-pg-section .post-slider .owl-controls {
  width: 100%;
  margin: 0;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.blog-pg-section .post-slider .owl-controls .owl-nav [class*=owl-] {
  background: rgba(85, 51, 255, 0.8);
  width: 30px;
  height: 50px;
  line-height: 50px;
  padding: 0;
  margin: 0;
  border-radius: 0;
}

.blog-pg-section .post-slider .owl-controls .owl-nav .owl-prev,
.blog-pg-section .post-slider .owl-controls .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.blog-pg-section .post-slider .owl-controls .owl-nav .owl-prev {
  left: 0;
}

.blog-pg-section .post-slider .owl-controls .owl-nav .owl-next {
  right: 0;
}

.blog-pg-section .video-post .video-holder {
  position: relative;
  text-align: center;
}

.blog-pg-section .video-post .video-holder:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.blog-pg-section .video-post .video-holder:hover:before {
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.blog-pg-section .video-post .video-holder a {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.blog-pg-section .video-post .video-holder .fi {
  padding-left: 8px;
}

.blog-pg-section .video-post .video-holder .fi:before {
  font-size: 80px;
  font-size: 5rem;
  color: #fff;
}

@media (max-width: 767px) {
  .blog-pg-section .video-post .video-holder .fi:before {
    font-size: 60px;
    font-size: 3.75rem;
  }
}

.blog-pg-section .quote-post {
  background-color: #fff;
  padding: 45px;
  border: 1px solid #eee;
}

@media (max-width: 767px) {
  .blog-pg-section .quote-post {
    padding: 35px 25px;
  }
}

.blog-pg-section .quote-post .quote-icon {
  background-color: #5533ff;
  padding: 7px 10px;
  position: absolute;
  right: 0;
  top: 0;
}

.blog-pg-section .quote-post .quote-icon:before {
  content: "";
  border: 28px solid transparent;
  border-top: 25px solid #5533ff;
  position: absolute;
  left: 0;
  bottom: -100%;
}

.blog-pg-section .quote-post .quote-icon i {
  font-size: 35px;
  font-size: 2.1875rem;
  color: #fff;
}

/*--------------------------------------------------------------
	#blog single page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
#8.0	blog-single-section
--------------------------------------------------------------*/
.blog-single-section {
  /*** tag-share ***/
  /*** author-box ***/
  /*** more-posts ***/
  /*** comments area ***/
  /*** comment-respond ***/
}

@media screen and (min-width: 992px) {
  .blog-single-section .blog-content {
    padding-right: 20px;
  }
}

.blog-single-section .post {
  position: relative;
}

.blog-single-section .post .entry-media {
  margin-bottom: 22px;
}

.blog-single-section .post h2 {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: bold;
  text-transform: capitalize;
  line-height: 1.3em;
  margin: 1em 0;
}

@media (max-width: 991px) {
  .blog-single-section .post h2 {
    font-size: 26px;
    font-size: 1.625rem;
  }
}

@media (max-width: 767px) {
  .blog-single-section .post h2 {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

.blog-single-section .post h3 {
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: bold;
  text-transform: capitalize;
  line-height: 1.4em;
  margin: 1.8em 0 1em;
}

@media (max-width: 991px) {
  .blog-single-section .post h3 {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

@media (max-width: 767px) {
  .blog-single-section .post h3 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.blog-single-section .post .meta {
  list-style: none;
  overflow: hidden;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}

@media (max-width: 767px) {
  .blog-single-section .post .meta {
    padding-bottom: 10px;
  }
}

.blog-single-section .post .meta li {
  font-size: 13px;
  font-size: 0.8125rem;
  float: left;
  color: #192224;
  position: relative;
  margin-right: 25px;
}

@media (max-width: 767px) {
  .blog-single-section .post .meta li {
    margin-right: 20px;
    margin-bottom: 5px;
  }
}

.blog-single-section .post .meta > li:last-child {
  margin-right: 0;
}

.blog-single-section .post .meta a,
.blog-single-section .post .meta i {
  color: #192224;
  font-weight: normal;
}

.blog-single-section .post .meta i {
  display: inline-block;
  padding-right: 5px;
  color: #5533ff;
}

.blog-single-section .post .meta a:hover {
  color: #5533ff;
}

.blog-single-section .entry-details {
  margin-top: 35px;
}

@media (max-width: 991px) {
  .blog-single-section .entry-details {
    margin-top: 20px;
  }
}

.blog-single-section .entry-details p {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.9em;
  margin: 0 0 1.5em;
}

@media (max-width: 991px) {
  .blog-single-section .entry-details p {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

.blog-single-section .entry-details blockquote {
  background-color: rgba(85, 51, 255, 0.1);
  font-size: 20px;
  font-size: 1.25rem;
  font-style: italic;
  color: #494949;
  line-height: 1.7em;
  padding: 30px 25px;
  margin: 50px 0;
  border-color: rgba(85, 51, 255, 0.2);
}

@media (max-width: 767px) {
  .blog-single-section .entry-details blockquote {
    font-size: 18px;
    font-size: 1.125rem;
    padding: 25px 20px;
  }
}

.blog-single-section .tag-share {
  min-height: 59px;
  border-top: 1px solid #ebebf1;
  border-bottom: 1px solid #ebebf1;
  margin: 60px 0 70px;
  overflow: hidden;
}

.blog-single-section .tag-share ul {
  list-style: none;
}

@media (max-width: 767px) {
  .blog-single-section .tag-share {
    border-right: 1px solid #ebebf1;
  }
}

.blog-single-section .tag-share .tag,
.blog-single-section .tag-share .share {
  min-height: 59px;
  line-height: 59px;
  display: inline-block;
  padding-left: 80px;
  position: relative;
}

@media (max-width: 767px) {
  .blog-single-section .tag-share .tag,
  .blog-single-section .tag-share .share {
    display: block;
  }
}

.blog-single-section .tag-share .tag > i,
.blog-single-section .tag-share .share > i {
  background: #ebebf1;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
}

.blog-single-section .tag-share .tag {
  float: left;
}

@media (max-width: 767px) {
  .blog-single-section .tag-share .tag {
    float: none;
  }
}

.blog-single-section .tag-share .tag a {
  font-size: 17px;
  font-size: 1.0625rem;
  color: #848484;
}

.blog-single-section .tag-share .tag a:hover {
  color: #5533ff;
}

.blog-single-section .tag-share .tag ul li {
  padding-right: 5px;
  position: relative;
}

.blog-single-section .tag-share .tag ul li:after {
  content: ",";
  position: absolute;
  right: 0;
  bottom: 0;
}

.blog-single-section .tag-share .tag ul li:last-child:after {
  display: none;
}

.blog-single-section .tag-share .tag ul > li + li {
  margin-left: 10px;
}

.blog-single-section .tag-share .share {
  float: right;
}

@media (max-width: 767px) {
  .blog-single-section .tag-share .share {
    float: none;
    border-top: 1px solid #ebebf1;
    margin-top: 1px;
  }
}

.blog-single-section .tag-share .share ul > li + li {
  margin-left: 15px;
}

.blog-single-section .tag-share .share a {
  color: #848484;
}

.blog-single-section .tag-share .share a:hover {
  color: #5533ff;
}

.blog-single-section .tag-share ul {
  overflow: hidden;
}

.blog-single-section .tag-share ul li {
  float: left;
}

.blog-single-section .author-box {
  padding: 45px 50px;
  margin: 70px 0;
  border: 1px solid #eaeaea;
}

@media (max-width: 991px) {
  .blog-single-section .author-box {
    padding: 35px 40px;
  }
}

@media (max-width: 767px) {
  .blog-single-section .author-box {
    padding: 25px;
  }
}

.blog-single-section .author-box .author-avatar {
  float: left;
}

@media (max-width: 767px) {
  .blog-single-section .author-box .author-avatar {
    float: none;
  }
}

.blog-single-section .author-box .author-avatar img {
  border-radius: 50%;
}

.blog-single-section .author-box .author-content {
  display: block;
  overflow: hidden;
  padding-left: 25px;
}

@media (max-width: 767px) {
  .blog-single-section .author-box .author-content {
    padding: 0;
    margin: 15px 0 0 0;
  }
}

.blog-single-section .author-box .author-content p {
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 20px;
}

.blog-single-section .author-box .author-name {
  font-size: 22px;
  font-size: 1.375rem;
  display: inline-block;
  margin-bottom: 10px;
  color: #192224;
}

@media (max-width: 991px) {
  .blog-single-section .author-box .author-name {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.blog-single-section .author-box .social-lnk {
  display: inline-block;
  list-style: none;
}

.blog-single-section .author-box .social-lnk li {
  float: left;
  margin-right: 15px;
}

.blog-single-section .author-box .social-lnk a {
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  color: #777;
}

.blog-single-section .author-box .social-lnk a:hover {
  color: #5533ff;
}

.blog-single-section .more-posts {
  overflow: hidden;
  border-top: 1px solid #ebebf1;
  border-bottom: 1px solid #ebebf1;
}

@media (max-width: 767px) {
  .blog-single-section .more-posts {
    border-left: 1px solid #ebebf1;
    border-right: 1px solid #ebebf1;
  }
}

.blog-single-section .more-posts > div {
  width: 50%;
  float: left;
}

@media (max-width: 767px) {
  .blog-single-section .more-posts > div {
    width: 100%;
    float: none;
  }
}

.blog-single-section .more-posts > div > a {
  display: inline-block;
}

.blog-single-section .more-posts .previous-post,
.blog-single-section .more-posts .next-post {
  padding: 40px 0;
}

@media (max-width: 767px) {
  .blog-single-section .more-posts .previous-post,
  .blog-single-section .more-posts .next-post {
    padding: 25px 15px !important;
  }
}

.blog-single-section .more-posts .next-post {
  text-align: right;
  border-left: 1px solid #e8e8e8;
  padding-left: 15px;
  padding-right: 5px;
}

@media (max-width: 767px) {
  .blog-single-section .more-posts .next-post {
    border-left: 0;
    text-align: left;
    border-top: 1px solid #e8e8e8;
  }
}

.blog-single-section .more-posts .previous-post {
  padding-right: 15px;
  padding-left: 5px;
}

.blog-single-section .more-posts .previous-post > a > span,
.blog-single-section .more-posts .next-post > a > span {
  display: block;
}

.blog-single-section .more-posts .post-control-link {
  color: #a7a7a7;
}

.blog-single-section .more-posts .post-name {
  font-size: 20px;
  font-size: 1.25rem;
  color: #192224;
  margin: 0.5em 0 0;
}

@media (max-width: 991px) {
  .blog-single-section .more-posts .post-name {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.blog-single-section .more-posts a:hover .post-control-link {
  color: #5533ff;
}

.blog-single-section .comments-area {
  margin-top: 70px;
}

.blog-single-section .comments-area ul,
.blog-single-section .comments-area ol {
  list-style: none;
}

.blog-single-section .comments-area .comments {
  border: 1px solid #ebebf1;
  border-bottom: 0;
}

.blog-single-section .comments-area li > div {
  border-bottom: 1px solid #ebebf1;
  padding: 35px 25px;
}

.blog-single-section .comments-area ol {
  list-style-type: none;
  padding-left: 0;
}

.blog-single-section .comments-area ol ul {
  padding-left: 30px;
}

.blog-single-section .comments-area .comments-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: capitalize;
  margin: 0 0 1.5em;
}

@media (max-width: 991px) {
  .blog-single-section .comments-area .comments-title {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

.blog-single-section .comments-area li > div {
  position: relative;
}

.blog-single-section .comments-area .comment-theme {
  position: absolute;
  left: 25px;
}

@media (max-width: 767px) {
  .blog-single-section .comments-area .comment-theme {
    position: static;
  }
}

.blog-single-section .comments-area .comment-theme img {
  border-radius: 50%;
}

.blog-single-section .comments-area .comment-main-area {
  padding-left: 100px;
}

@media (max-width: 767px) {
  .blog-single-section .comments-area .comment-main-area {
    padding-left: 0;
    margin-top: 25px;
  }
}

.blog-single-section .comments-area .comment-main-area p {
  margin-bottom: 20px;
}

.blog-single-section .comments-area .comments-meta h4 {
  font-size: 18px;
  font-size: 1.125rem;
  color: #6d6d6d;
  margin: 0 0 1em;
}

.blog-single-section .comments-area .comments-meta h4 span {
  font-family: "Nunito", sans-serif;
  font-weight: normal;
  color: #949494;
  text-transform: none;
  display: inline-block;
  margin-left: 15px;
  font-size: 16px;
  font-size: 1rem;
}

.blog-single-section .comments-area .comment-reply-link {
  background: #5533ff;
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
  display: inline-block;
  padding: 0 5px;
}

.blog-single-section .comments-area .comment-reply-link:hover {
  background-color: #2b00ff;
}

.blog-single-section .comment-respond {
  margin-top: 70px;
}

.blog-single-section .comment-respond .comment-reply-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: capitalize;
  margin: 0 0 1.5em;
}

@media (max-width: 991px) {
  .blog-single-section .comment-respond .comment-reply-title {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

.blog-single-section .comment-respond form input,
.blog-single-section .comment-respond form textarea {
  background-color: #f8f8f8;
  width: 100%;
  height: 50px;
  border: 1px solid #f8f8f8;
  padding: 6px 15px;
  margin-bottom: 15px;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.blog-single-section .comment-respond form input:focus,
.blog-single-section .comment-respond form textarea:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #5533ff;
}

@media (max-width: 991px) {
  .blog-single-section .comment-respond form input,
  .blog-single-section .comment-respond form textarea {
    height: 40px;
  }
}

.blog-single-section .comment-respond form textarea {
  height: 220px;
  padding: 15px;
}

@media (max-width: 991px) {
  .blog-single-section .comment-respond form textarea {
    height: 150px;
  }
}

.blog-single-section .comment-respond .form-inputs {
  overflow: hidden;
}

.blog-single-section .comment-respond .form-inputs > input:nth-child(2) {
  width: 49%;
  float: left;
}

@media (max-width: 767px) {
  .blog-single-section .comment-respond .form-inputs > input:nth-child(2) {
    width: 100%;
    float: none;
  }
}

.blog-single-section .comment-respond .form-inputs > input:nth-child(3) {
  width: 49%;
  float: right;
}

@media (max-width: 767px) {
  .blog-single-section .comment-respond .form-inputs > input:nth-child(3) {
    width: 100%;
    float: none;
  }
}

.blog-single-section .comment-respond .form-submit input {
  max-width: 180px;
  background-color: #7043d4;
  color: #fff;
  font-weight: bold;
  margin-bottom: 0;
  border: 0;
  border-radius: 50px;
  outline: 0;
  text-transform: uppercase;
}

.blog-single-section .comment-respond .form-submit input:hover {
  background-color: #153470;
}

@media screen and (min-width: 992px) {
  .blog-single-with-left-sidebar .blog-sidebar,
  .blog-with-left-sidebar .blog-sidebar {
    padding: 0 20px 0 0;
  }
}

.entry-details ul {
  margin: 0 0 1.5em;
}

.entry-details ul li {
  position: relative;
  padding-left: 25px;
}

.entry-details ul li i {
  position: absolute;
  left: 0;
  top: 2px;
  color: #5533ff;
}

.entry-details ul > li + li {
  margin-top: 12px;
}

/*--------------------------------------------------------------
	#case stydy page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
#9.0	case-study-page-section
--------------------------------------------------------------*/
.case-study-page-section {
  padding-bottom: 90px;
}

@media (max-width: 991px) {
  .case-study-page-section {
    padding-bottom: 70px;
  }
}

@media (max-width: 767px) {
  .case-study-page-section {
    padding-bottom: 60px;
  }
}

.case-study-page-section .case-grids > .grid {
  margin-bottom: 30px;
}

/*--------------------------------------------------------------
	#testimonials page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
#10.0	testimonials-page-section
--------------------------------------------------------------*/
.testimonials-page-section {
  background: #f8f8f8;
  padding-bottom: 40px;
}

@media (max-width: 991px) {
  .testimonials-page-section {
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .testimonials-page-section {
    padding-bottom: 50px;
  }
}

.testimonials-page-section .testimonials-grids > .grid {
  margin-bottom: 80px;
}

.testimonials-page-section .grid .quote p {
  color: #333;
  margin-top: -0.3em;
}

.testimonials-page-section .client-info h5 {
  color: #5533ff;
}

.testimonials-page-section .client-info h5 + span {
  color: #000;
}

/*--------------------------------------------------------------
	#404 page
----------------------------------------------------------------*/
/*--------------------------------------------------------------
#11.0 	error-404-section
----------------------------------------------------------------*/
.error-404-section .content {
  text-align: center;
}

.error-404-section .content h2 {
  font-size: 200px;
  font-size: 12.5rem;
  color: #5533ff;
  line-height: 0.73em;
  margin: 0 0 0.4em;
}

@media (max-width: 991px) {
  .error-404-section .content h2 {
    font-size: 150px;
    font-size: 9.375rem;
  }
}

@media (max-width: 767px) {
  .error-404-section .content h2 {
    font-size: 120px;
    font-size: 7.5rem;
  }
}

.error-404-section .content h3 {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: normal;
  margin: 0 0 1.5em;
}

.error-404-section .content h3 span {
  color: #5533ff;
}

@media (max-width: 991px) {
  .error-404-section .content h3 {
    font-size: 25px;
    font-size: 1.5625rem;
    line-height: 1.3em;
  }
}

@media (max-width: 767px) {
  .error-404-section .content h3 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.error-404-section .content p {
  font-size: 18px;
  font-size: 1.125rem;
  margin: 0 0 2em;
}

@media (max-width: 991px) {
  .error-404-section .content p {
    font-size: 17px;
    font-size: 1.0625rem;
  }
}

@media (max-width: 767px) {
  .error-404-section .content p {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
/*# sourceMappingURL=style.css.map */