/*
  Theme Name: Xeolit - SEO & Digital Marketing HTML5 Templete
  Author: Dope Theme
  Support: support@dopetheme.com
  Description: SEO & Digital Marketing HTML5 Templete.
  Version: 1.0
*/
/*----------------------------------------*/
/*  Basics
/*----------------------------------------*/
body {
  font-family: "Source Sans Pro", sans-serif;
  color: #6a7c92;
  font-size: 14px;
  line-height: 24px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Source Sans Pro", sans-serif;
  color: #0b193b;
  line-height: 1;
  font-weight: 500;
}

h1 {
  font-size: 40px;
  font-weight: 700;
}

h4 {
  font-size: 24px;
  font-weight: 700;
}

p {
  font-family: "Source Sans Pro", sans-serif;
  color: #6a7c92;
  font-size: 16px;
  line-height: 24px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input {
  color: #888888;
}

input::-webkit-input-placeholder {
  color: #888888;
}

input:-ms-input-placeholder {
  color: #888888;
}

input::-ms-input-placeholder {
  color: #888888;
}

input::placeholder {
  color: #888888;
}

._keyfocus :focus,
input:not([disabled]):focus,
textarea:not([disabled]):focus,
select:not([disabled]):focus {
  outline: 0;
}

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

img {
  max-width: 100%;
}

.img-full {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: block;
}

a {
  color: #333333;
}

a:hover {
  color: #fed100 !important;
  text-decoration: none;
}

a:not([href]):not([tabindex]):hover {
  color: #fed100;
}

a,
a:hover,
a:focus,
a:active,
button,
button:focus,
input,
select,
textarea {
  outline: none;
}

button {
  cursor: pointer;
  border: none;
  padding: 0;
  outline: none;
  background: transparent;
}

.section-gap {
  padding: 100px 0px;
}

.section-gap-top {
  padding-top: 100px;
}

.section-gap-bottom {
  padding-bottom: 100px;
}

.section-title {
  text-align: center;
}

.section-title h1 {
  margin-bottom: 15px;
}

.section-title p {
  font-size: 14px;
  width: 440px;
  margin: 0 auto;
}

/*----------------------------------------*/
/*  Buttons Style
/*----------------------------------------*/
.btn-style {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  border-radius: 3px;
  padding: 10px 25px;
  display: inline-block;
  background-size: 300% 100%;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.btn-style:hover {
  color: #fff !important;
  background-position: 100% 0;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.blue-btn {
  background-image: -webkit-gradient(linear, left top, right top, from(#0172d0), color-stop(#19a9fe), color-stop(#19a9fe), to(#0172d0));
  background-image: linear-gradient(to right, #0172d0, #19a9fe, #19a9fe, #0172d0);
}

.red-btn {
  background-image: -webkit-gradient(linear, left top, right top, from(#ff3c68), color-stop(#fa9ba0), color-stop(#fa9ba0), to(#ff3c68));
  background-image: linear-gradient(to right, #ff3c68, #fa9ba0, #fa9ba0, #ff3c68);
}

.purple-btn {
  background-image: -webkit-gradient(linear, left top, right top, from(#5818f5), color-stop(#a838ff), color-stop(#a838ff), to(#5818f5));
  background-image: linear-gradient(to right, #5818f5, #a838ff, #a838ff, #5818f5);
}

/*----------------------------------------*/
/*  Pre-loader
/*----------------------------------------*/
.pre-loader-wrap {
  background-color: #fff;
  z-index: 9999;
  position: fixed;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}

.pre-loader {
  --path: #5628EE;
  --dot: #2F3545;
  --duration: 3s;
  width: 44px;
  height: 44px;
  position: relative;
}

.pre-loader:before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  display: block;
  background: var(--dot);
  top: 37px;
  left: 19px;
  -webkit-transform: translate(-18px, -18px);
          transform: translate(-18px, -18px);
  -webkit-animation: dotRect var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
          animation: dotRect var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}

.pre-loader span {
  display: block;
  margin-top: 10px;
}

.pre-loader svg {
  display: block;
  width: 100%;
  height: 100%;
}

.pre-loader svg rect,
.pre-loader svg polygon,
.pre-loader svg circle {
  fill: none;
  stroke: var(--path);
  stroke-width: 10px;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.pre-loader svg polygon {
  stroke-dasharray: 145 76 145 76;
  stroke-dashoffset: 0;
  -webkit-animation: pathTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
          animation: pathTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}

.pre-loader svg rect {
  stroke-dasharray: 192 64 192 64;
  stroke-dashoffset: 0;
  -webkit-animation: pathRect 3s cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
          animation: pathRect 3s cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}

.pre-loader svg circle {
  stroke-dasharray: 150 50 150 50;
  stroke-dashoffset: 75;
  -webkit-animation: pathCircle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
          animation: pathCircle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}

.pre-loader.triangle {
  width: 48px;
}

.pre-loader.triangle:before {
  left: 21px;
  -webkit-transform: translate(-10px, -18px);
          transform: translate(-10px, -18px);
  -webkit-animation: dotTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
          animation: dotTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}

@-webkit-keyframes pathTriangle {
  33% {
    stroke-dashoffset: 74;
  }
  66% {
    stroke-dashoffset: 147;
  }
  100% {
    stroke-dashoffset: 221;
  }
}

@keyframes pathTriangle {
  33% {
    stroke-dashoffset: 74;
  }
  66% {
    stroke-dashoffset: 147;
  }
  100% {
    stroke-dashoffset: 221;
  }
}

@-webkit-keyframes dotTriangle {
  33% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  66% {
    -webkit-transform: translate(10px, -18px);
            transform: translate(10px, -18px);
  }
  100% {
    -webkit-transform: translate(-10px, -18px);
            transform: translate(-10px, -18px);
  }
}

@keyframes dotTriangle {
  33% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  66% {
    -webkit-transform: translate(10px, -18px);
            transform: translate(10px, -18px);
  }
  100% {
    -webkit-transform: translate(-10px, -18px);
            transform: translate(-10px, -18px);
  }
}

@-webkit-keyframes pathRect {
  25% {
    stroke-dashoffset: 64;
  }
  50% {
    stroke-dashoffset: 128;
  }
  75% {
    stroke-dashoffset: 192;
  }
  100% {
    stroke-dashoffset: 256;
  }
}

@keyframes pathRect {
  25% {
    stroke-dashoffset: 64;
  }
  50% {
    stroke-dashoffset: 128;
  }
  75% {
    stroke-dashoffset: 192;
  }
  100% {
    stroke-dashoffset: 256;
  }
}

@-webkit-keyframes dotRect {
  25% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(18px, -18px);
            transform: translate(18px, -18px);
  }
  75% {
    -webkit-transform: translate(0, -36px);
            transform: translate(0, -36px);
  }
  100% {
    -webkit-transform: translate(-18px, -18px);
            transform: translate(-18px, -18px);
  }
}

@keyframes dotRect {
  25% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(18px, -18px);
            transform: translate(18px, -18px);
  }
  75% {
    -webkit-transform: translate(0, -36px);
            transform: translate(0, -36px);
  }
  100% {
    -webkit-transform: translate(-18px, -18px);
            transform: translate(-18px, -18px);
  }
}

@-webkit-keyframes pathCircle {
  25% {
    stroke-dashoffset: 125;
  }
  50% {
    stroke-dashoffset: 175;
  }
  75% {
    stroke-dashoffset: 225;
  }
  100% {
    stroke-dashoffset: 275;
  }
}

@keyframes pathCircle {
  25% {
    stroke-dashoffset: 125;
  }
  50% {
    stroke-dashoffset: 175;
  }
  75% {
    stroke-dashoffset: 225;
  }
  100% {
    stroke-dashoffset: 275;
  }
}

.pre-loader {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/*----------------------------------------*/
/*  Scroll Top
/*----------------------------------------*/
.scroll-top {
  width: 44px;
  line-height: 44px;
  position: fixed;
  right: 60px;
  bottom: 60px;
  z-index: 999;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: none;
  background: #000;
  border-radius: 3px;
  -webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.25);
  -webkit-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
}

/*----------------------------------------*/
/*  Main Menu Style
/*----------------------------------------*/
.mobile-menu-btn {
  width: 25px;
  float: right;
}

.mobile-menu-btn:hover {
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 100%;
  height: 2px;
  background: #fff;
  display: block;
  margin-bottom: 5px;
}

.mobile-menu-btn span:last-child {
  margin-bottom: 0px;
}

.mobile-menu-btn span:nth-child(2) {
  width: 60% !important;
}

.mobile-menu-btn span:nth-child(3) {
  width: 80% !important;
}

.offcanvus-menu {
  position: fixed;
  top: 0;
  left: -480px;
  z-index: 9999;
  width: 480px;
  max-width: calc(100% - 60px);
  height: 100%;
  padding: 64px 16px 48px 24px;
  overflow-y: scroll;
  overflow-x: hidden;
  background: #f4f7f6;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.offcanvus-menu.show {
  left: 0;
}

.offcanvus-menu .mobile-menu-wrap {
  padding: 20px;
}

.offcanvus-menu .main-menu {
  display: block;
}

.offcanvus-menu .main-menu li {
  display: block !important;
  text-align: left;
  border-bottom: 1px solid #e2eaf6;
  margin: 0px !important;
}

.offcanvus-menu .main-menu li a {
  color: #000;
  padding: 8px 0px;
  font-size: 14px;
  font-weight: 600;
  display: block;
}

.offcanvus-menu .main-menu li a:hover {
  color: #000 !important;
}

.offcanvus-menu .main-menu .sub-menu {
  -webkit-box-shadow: none;
          box-shadow: none;
  position: relative;
  border-top: 1px solid #e2eaf6;
  height: 0px;
  overflow: hidden;
  -webkit-transition: height 0.5s;
  transition: height 0.5s;
}

.offcanvus-menu .main-menu .sub-menu-show > .sub-menu {
  height: 100%;
  -webkit-transition: height 0.5s;
  transition: height 0.5s;
}

.offcanvus-menu .main-menu .item-has-children {
  border: none;
}

.offcanvus-menu .close {
  position: absolute;
  right: 32px;
  top: 32px;
  width: 32px;
  height: 32px;
  opacity: 0.3;
}

.offcanvus-menu .close:hover {
  cursor: pointer;
}

.offcanvus-menu .close:hover {
  opacity: 1;
}

.offcanvus-menu .close:before,
.offcanvus-menu .close:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 33px;
  width: 2px;
  background-color: #333;
}

.offcanvus-menu .close:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.offcanvus-menu .close:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.offcanvus-menu .item-has-children > a {
  position: relative;
}

.offcanvus-menu .item-has-children > a:after {
  display: inline;
  font-family: "IcoFont";
  content: "\eaca";
  font-weight: 600;
  text-shadow: none;
  display: inline-block;
  font-size: 20px;
  position: absolute;
  right: 0;
}

.offcanvus-menu .sub-menu-show > a::after {
  content: "\eac8";
}

.overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  content: " ";
  width: auto;
  height: auto;
  background-color: rgba(0, 0, 0, 0.65);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

.menu-btn {
  display: none;
}

.overlay-show {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1199px) {
  .menu-wrap .main-menu li {
    display: inline-block;
    margin-right: 30px;
  }
}

@media (min-width: 992px) {
  .home-one .main-menu > li > a,
  .page-header .main-menu > li > a {
    color: #fff;
  }
  .home-one .main-menu > li > a:hover,
  .page-header .main-menu > li > a:hover {
    color: #000;
  }
  .home-one .main-menu > li > a:after,
  .page-header .main-menu > li > a:after {
    background: #ffc000;
  }
  .home-one .menu-btn,
  .page-header .menu-btn {
    background: #ffc000;
  }
  .home-two .main-menu > li > a {
    color: #000;
  }
  .home-two .main-menu > li > a:hover {
    color: #000 !important;
  }
  .home-two .main-menu > li > a:after {
    background: #621cf6;
  }
  .home-two .menu-btn {
    background: #621cf6;
  }
  .main-menu {
    text-align: right;
  }
  .main-menu a {
    display: block;
  }
  .main-menu > li .sub-menu .sub-menu {
    right: -100%;
    top: 35%;
  }
  .main-menu > li > a {
    display: block;
    padding: 20px 0px;
  }
  .main-menu > li > a:hover {
    color: #fff !important;
  }
  .main-menu > li > a:hover:after {
    width: 100%;
  }
  .main-menu > li > a:after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    -webkit-transition: width .3s;
    transition: width .3s;
  }
  .main-menu .item-has-children:hover > .sub-menu {
    left: auto;
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    visibility: visible;
  }
  .main-menu li {
    display: inline-block;
    margin-right: 42px;
  }
  .main-menu li:last-child {
    margin-right: 0px;
  }
  .main-menu li a {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    font-weight: 600;
    font-size: 16px;
  }
  .main-menu .sub-menu {
    -webkit-box-shadow: -1px 2px 19px 3px rgba(14, 0, 40, 0.05);
            box-shadow: -1px 2px 19px 3px rgba(14, 0, 40, 0.05);
    position: absolute;
    top: 100%;
    left: -999em;
    background: #fff;
    z-index: 99999;
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    border-radius: 3px;
    padding: 5px 0px;
    width: 200px;
  }
  .main-menu .sub-menu a {
    color: #000;
    padding: 5px 20px;
  }
  .main-menu .sub-menu a:hover {
    color: #000 !important;
  }
  .main-menu .sub-menu li {
    text-align: left;
    margin: 0px;
    display: block;
    border-bottom: 1px solid #f3f3f3;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .main-menu .sub-menu li:hover {
    margin-left: 5px;
  }
  .main-menu .sub-menu li:last-child {
    border-bottom: none;
  }
  .menu-btn {
    margin-left: 32px;
    display: inline;
    border-radius: 26px;
    -webkit-box-shadow: 0px 11px 15px 0px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 11px 15px 0px rgba(0, 0, 0, 0.1);
    color: #fff;
    padding: 8px 25px;
    font-weight: 600;
  }
  .menu-btn:hover {
    color: #fff !important;
  }
  .mobile-menu-btn {
    display: none;
  }
}

@media (max-width: 991px) {
  .menu-wrap {
    padding: 20px 0px;
  }
  .mobile-menu-btn {
    display: block;
  }
  .main-menu {
    display: none;
  }
}

.banner-section {
  background: url(../img/banner-bg.jpg) no-repeat center center;
  background-size: cover;
}

.banner-section h1 {
  color: #fff;
  padding: 45px 0px;
  font-size: 56px;
}

.banner-section h1 span {
  font-style: italic;
}

.banner-section .btn-style {
  border: 2px solid #fff;
  margin-right: 10px;
  padding: 8px 25px;
}

.banner-section .btn-style:hover {
  border-color: #19a9fe;
  background: #19a9fe;
}

.home-demo-section .single-demo {
  display: block;
  text-align: center;
  margin-top: 60px;
  -webkit-box-shadow: rgba(34, 48, 102, 0.1) -3px 6px 21.1px -4px;
          box-shadow: rgba(34, 48, 102, 0.1) -3px 6px 21.1px -4px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border-radius: 5px;
  overflow: hidden;
}

.home-demo-section .single-demo img {
  width: 100%;
}

.home-demo-section .single-demo .details {
  background: #f9fdff;
  padding: 20px 0px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.home-demo-section .single-demo:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  cursor: pointer;
  -webkit-box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.1);
}

.home-demo-section .thumb {
  position: relative;
}

.home-demo-section .soon .tag {
  position: absolute;
  background: #621cf6;
  z-index: 9999;
  color: #fff;
  font-size: 12px;
  padding: 5px 15px;
  border-radius: 5px;
  top: 15px;
  right: 15px;
}

.home-demo-section .soon img {
  opacity: .5;
}

.features-section {
  background: #f9fafd;
}

.features-section .single-feature {
  background: #fff;
  -webkit-box-shadow: rgba(34, 48, 102, 0.1) -3px 6px 21.1px -4px;
          box-shadow: rgba(34, 48, 102, 0.1) -3px 6px 21.1px -4px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  margin-top: 50px;
  text-align: center;
  border-radius: 5px;
  overflow: hidden;
  padding: 30px;
}

.features-section .single-feature h4 {
  font-size: 18px;
}

.features-section .single-feature img {
  width: 46px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.otherpage-section {
  background: #fff;
}

.otherpage-section .single-page {
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  margin-top: 60px;
  display: block;
}

.otherpage-section .single-page img {
  border-radius: 5px;
  overflow: hidden;
  -webkit-box-shadow: rgba(34, 48, 102, 0.1) -3px 6px 21.1px -4px;
          box-shadow: rgba(34, 48, 102, 0.1) -3px 6px 21.1px -4px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.otherpage-section .single-page img:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  cursor: pointer;
  -webkit-box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.1);
}

.otherpage-section .single-page h5 {
  font-weight: 600;
  padding: 20px 0;
}

.cta-section {
  background-image: -webkit-gradient(linear, left top, right top, from(#0172d0), color-stop(#19a9fe), color-stop(#19a9fe), to(#0172d0));
  background-image: linear-gradient(to right, #0172d0, #19a9fe, #19a9fe, #0172d0);
}

.cta-section .btn-style {
  border: 1px solid #fff;
  margin-top: 50px;
}

.cta-section .btn-style:hover {
  background: #ffc000;
  border-color: #ffc000;
}

.cta-section h1 {
  color: #fff;
}

.footer-section {
  padding: 20px 0px;
}

.footer-section p {
  margin-bottom: 0px;
}
/*# sourceMappingURL=style.css.map */