/* ======== index ========
1. RESET
2. BODY LAYOUT
3. COMMON
4. UI KIT
  4.1 ACCORDION
  4.2 BATTON
  4.3 SECTION TITLE
  4.4 CARD
  4.5 TABS
  4.6 LIST STYLE
  4.7 MEDIA STYLE
  4.8 ICON STYLE
  4.9 IMAGE STYLE
  4.10 CAROUSEL
5. HEADER
6. HOME
  6.1 BANNER CONTENT
  6.2 FEATURES STYLE ONE
  6.3 PRICING TABLE
  6.4 PROME VIDEO SECTION
  6.5 CONTACT
  6.6 TESTIMONIAL
7. FOOTER
===================== */
/* ================================================
--> 1. RESET
================================================== */
@import url("https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700|Poppins:400,500,600,700");
* {
  outline: 0;
  margin: 0;
  padding: 0;
}

html, * {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 21px;
  color: #929292;
  font-weight: 400;
  position: relative;
}

ul {
  margin: 0;
  padding: 0;
}

ul li {
  list-style-type: none;
}

p {
  color: #929292;
  font-weight: 400;
  margin-bottom: 0;
}

@media (min-width: 320px) {
  p {
    font-size: 12px;
    line-height: 22px;
  }
}

@media (min-width: 768px) {
  p {
    font-size: 14px;
    line-height: 24px;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  font-weight: 400;
  color: #1d2025;
}

h1 {
  font-size: 40px;
  line-height: 1.1;
}

h2 {
  font-size: 32px;
  line-height: 1.1;
}

h3 {
  font-size: 26px;
  line-height: 1.1;
}

h4 {
  font-size: 22px;
  line-height: 1.1;
}

h5 {
  font-size: 20px;
  line-height: 1.1;
}

h6 {
  font-size: 16px;
  line-height: 1.1;
}

/* ================================================
--> 2. BODY LAYOUT
================================================== */
.default {
  background-image: url("../img/patterns/pattern1.png");
  background-repeat: repeat;
  background-attachment: fixed;
  background-position: center;
}

.pattern-01 {
  background-image: url("../img/patterns/pattern2.png");
  background-repeat: repeat;
  background-attachment: fixed;
  background-position: center;
}

.pattern-02 {
  background-image: url("../img/patterns/pattern3.png");
  background-repeat: repeat;
  background-attachment: fixed;
  background-position: center;
}

.pattern-03 {
  background-image: url("../img/patterns/pattern4.png");
  background-repeat: repeat;
  background-attachment: fixed;
  background-position: center;
}

.pattern-04 {
  background-image: url("../img/patterns/pattern5.png");
  background-repeat: repeat;
  background-attachment: fixed;
  background-position: center;
}

.pattern-06 {
  background-image: url("../img/patterns/006.png");
  background-repeat: repeat;
  background-attachment: fixed;
  background-position: center;
}

.pattern-07 {
  background-image: url("../img/patterns/007.png");
  background-repeat: repeat;
  background-attachment: fixed;
  background-position: center;
}

.pattern-05 {
  background-image: url("../img/patterns/005.png");
  background-repeat: repeat;
  background-attachment: fixed;
  background-position: center;
}

/* ================================================
--> 3. COMMON
================================================== */
/* Font faces */
.form-control:focus {
  box-shadow: none 1px 2px #CCC;
}

/*  Comoon element style */
a {
  color: #929292;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}

a:hover, a:focus, a:active {
  box-shadow: none;
  outline: none;
  text-decoration: none;
  color: #889cef;
}

.bg-image-holder, .bg-image {
  background-size: cover !important;
  background-position: 50% 50% !important;
  transition: all 0.5s ease-in-out;
  background-color: #f5f5f5;
  position: relative;
}

::-moz-selection {
  background-color: #889cef;
  color: #ffffff;
}

::selection {
  background-color: #889cef;
  color: #ffffff;
}

::-moz-selection {
  background-color: #889cef;
  color: #ffffff;
}

.letter-spacing {
  letter-spacing: 7px;
}

/* Main Wrapper */
.main-wrapper {
  overflow-x: hidden;
  background-color: #ffffff;
}

/* Height Vertical 100% */
.vh100 {
  height: 100vh;
}

/* padding */
.no-padding {
  padding: 0 !important;
}

.pv100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pt30 {
  padding-top: 30px;
}

.pb30 {
  padding-bottom: 30px;
}

.pb50 {
  padding-bottom: 50px;
}

.pv30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.pt100 {
  padding-top: 100px;
}

.pb100 {
  padding-bottom: 100px;
}

.pb55 {
  padding-bottom: 55px;
}

@media (min-width: 768px) {
  .t-pl-50 {
    padding-left: 50px;
  }
}

@media (min-width: 768px) {
  .t-pr-50 {
    padding-right: 50px;
  }
}

/* All margins */
.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

/* Mobile Margin */
.m-mt-20 {
  margin-top: 20px;
}

@media (min-width: 992px) {
  .m-mt-20 {
    margin-top: 0;
  }
}

.m-mt-50 {
  margin-top: 50px;
}

@media (min-width: 768px) {
  .m-mt-50 {
    margin-top: 0;
  }
}

.m-mb-20 {
  margin-bottom: 20px;
}

@media (min-width: 992px) {
  .m-mb-20 {
    margin-bottom: 0;
  }
}

.m-mb-50 {
  margin-bottom: 50px;
}

@media (min-width: 768px) {
  .m-mb-50 {
    margin-bottom: 0;
  }
}

/* Tablet Margin Top */
@media (min-width: 768px) {
  .t-mt-50 {
    margin-top: 50px;
  }
}

@media (min-width: 768px) {
  .t-mt-60 {
    margin-top: 60px;
  }
}

@media (min-width: 768px) {
  .t-mt-70 {
    margin-top: 70px;
  }
}

@media (min-width: 768px) {
  .t-mt-80 {
    margin-top: 80px;
  }
}

@media (min-width: 768px) {
  .t-mt-80 {
    margin-top: 80px;
  }
}

/* Large desktops */
@media (min-width: 768px) {
  .t-ml-100 {
    margin-left: 100px;
  }
}

@media (min-width: 768px) {
  .t-mr-100 {
    margin-right: 100px;
  }
}

/* Large Margin Top */
@media (min-width: 992px) {
  .lg-mt-70 {
    margin-top: 70px;
  }
}

@media (min-width: 992px) {
  .lg-mt-80 {
    margin-top: 80px;
  }
}

@media (min-width: 992px) {
  .lg-mt-90 {
    margin-top: 90px;
  }
}

/* Font Weight */
.light {
  font-weight: 300;
}

.normal {
  font-weight: 400;
}

.mid {
  font-weight: 500;
}

.mid-bold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

/* Common class shared */
body.boxed {
  margin: 0 auto;
  position: relative;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
}

@media (min-width: 992px) {
  body.boxed {
    max-width: 970px;
  }
}

@media (min-width: 1200px) {
  body.boxed {
    max-width: 1260px;
  }
}

body.boxed .main-wrapper {
  background: #ffffff;
}

/* Color */
.text-primary {
  color: #889cef !important;
}

.text-white {
  color: #ffffff !important;
}

.text-dark {
  color: #1d2025 !important;
}

.light-gray {
  color: #d2d0d0;
}

.white-color {
  color: #ffffff;
}

/* Background Color */
.bg-white {
  background-color: #ffffff;
}

.bg-dark {
  background-color: #000000;
}

.bg-water {
  background-color: transparent;
}

.bg-sand {
  background-color: #f5f5f5;
}

.bg-primary {
  background-color: #889cef !important;
}

.bg-whiteSmoke {
  background-color: #F8F8F8;
}

/*  BG GRADIENT */
.bg-gradient {
  background: #968FF4;
  background: linear-gradient(135deg, #968FF4 45%, #6AB6E5 70%);
}

/* Overflow Hidden */
.overflow {
  overflow: hidden;
}

/*==== MAIN WRAPPER ====*/
.main-wrapper {
  overflow-x: hidden;
  background-color: #ffffff;
}

/*============ PRELOADER =============*/
.smooth-loader-wrapper {
  background: #968FF4;
  background: linear-gradient(135deg, #968FF4 45%, #6AB6E5 70%);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 600000;
}

.smooth-loader-wrapper .smooth-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2100;
  line-height: 0;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  /* spinner style */
  /* spinner-1 styles */
}

.smooth-loader-wrapper .smooth-loader .spinner-eff {
  position: relative;
  width: 70px;
  height: 70px;
}

.smooth-loader-wrapper .smooth-loader .spinner-eff:before, .smooth-loader-wrapper .smooth-loader .spinner-eff:after {
  content: "";
  display: block;
}

.smooth-loader-wrapper .smooth-loader .spinner-eff .spinner-bar:before, .smooth-loader-wrapper .smooth-loader .spinner-eff .spinner-bar:after {
  content: "";
  display: block;
}

@-webkit-keyframes rotation-top {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    opacity: 0.5;
  }
  20% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    opacity: 0.5;
  }
}

@keyframes rotation-top {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    opacity: 0.5;
  }
  20% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    opacity: 0.5;
  }
}

@-webkit-keyframes rotation-right {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    opacity: 0.5;
  }
  20% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    opacity: 0.5;
  }
  40% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    opacity: 0.5;
  }
}

@keyframes rotation-right {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    opacity: 0.5;
  }
  20% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    opacity: 0.5;
  }
  40% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    opacity: 0.5;
  }
}

@-webkit-keyframes rotation-bottom {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    opacity: 0.5;
  }
  40% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    opacity: 0.5;
  }
  60% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    opacity: 0.5;
  }
}

@keyframes rotation-bottom {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    opacity: 0.5;
  }
  40% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    opacity: 0.5;
  }
  60% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    opacity: 0.5;
  }
}

@-webkit-keyframes rotation-left {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    opacity: 0.5;
  }
  60% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    opacity: 0.5;
  }
  80% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    opacity: 0.5;
  }
}

@keyframes rotation-left {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    opacity: 0.5;
  }
  60% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    opacity: 0.5;
  }
  80% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    opacity: 0.5;
  }
}

.smooth-loader-wrapper .smooth-loader .spinner-eff.spinner-eff-1 .bar {
  width: 0;
  height: 0;
  border: 35px solid transparent;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  opacity: 0.5;
}

.smooth-loader-wrapper .smooth-loader .spinner-eff.spinner-eff-1 .bar-top {
  border-top: 35px solid #ffffff;
  -webkit-animation: rotation-top 3.6s linear 0s infinite;
          animation: rotation-top 3.6s linear 0s infinite;
}

.smooth-loader-wrapper .smooth-loader .spinner-eff.spinner-eff-1 .bar-right {
  border-right: 35px solid #ffffff;
  -webkit-animation: rotation-right 3.6s linear 0s infinite;
          animation: rotation-right 3.6s linear 0s infinite;
}

.smooth-loader-wrapper .smooth-loader .spinner-eff.spinner-eff-1 .bar-bottom {
  border-bottom: 35px solid #ffffff;
  -webkit-animation: rotation-bottom 3.6s linear 0s infinite;
          animation: rotation-bottom 3.6s linear 0s infinite;
}

.smooth-loader-wrapper .smooth-loader .spinner-eff.spinner-eff-1 .bar-left {
  border-left: 35px solid #ffffff;
  -webkit-animation: rotation-left 3.6s linear 0s infinite;
          animation: rotation-left 3.6s linear 0s infinite;
}

.loaded #preloader {
  opacity: 0;
  visibility: hidden;
  transition: all 0.7s ease-out;
}

/* Custom animation */
.reveal-text {
  position: relative;
  white-space: nowrap;
  -webkit-animation-name: reveal-text;
          animation-name: reveal-text;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(1, 0.01, 0, 1);
          animation-timing-function: cubic-bezier(1, 0.01, 0, 1);
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
}

.reveal-text::after {
  content: "";
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(136, 156, 239, 0.3);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
          transform-origin: 0 50%;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(1, 0.01, 0, 1);
          animation-timing-function: cubic-bezier(1, 0.01, 0, 1);
  -webkit-animation-name: revealer-text;
          animation-name: revealer-text;
}

@-webkit-keyframes reveal-text {
  from {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}

@keyframes reveal-text {
  from {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}

@-webkit-keyframes revealer-text {
  0%, 50% {
    -webkit-transform-origin: 0 50%;
            transform-origin: 0 50%;
  }
  51%, 100% {
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
  }
  50% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

@keyframes revealer-text {
  0%, 50% {
    -webkit-transform-origin: 0 50%;
            transform-origin: 0 50%;
  }
  51%, 100% {
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
  }
  50% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

/* ======  CUSTOM KEYFRAMES ======*/
@-webkit-keyframes tafFadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-35%, 0, 0);
    transform: translate3d(-35%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes tafFadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-35%, 0, 0);
    transform: translate3d(-35%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.tafFadeInLeft {
  -webkit-animation-name: tafFadeInLeft;
  animation-name: tafFadeInLeft;
}

@-webkit-keyframes tafFadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(30%, 0, 0);
    transform: translate3d(30%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes tafFadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(30%, 0, 0);
    transform: translate3d(30%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.tafFadeInRight {
  -webkit-animation-name: tafFadeInRight;
  animation-name: tafFadeInRight;
}

@-webkit-keyframes tafFadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes tafFadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.tafFadeInUp {
  -webkit-animation-name: tafFadeInUp;
  animation-name: tafFadeInUp;
}

@-webkit-keyframes tafFlipInY {
  from {
    -webkit-transform: perspective(600px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(600px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(600px) rotate3d(0, 1, 0, 45deg);
    transform: perspective(600px) rotate3d(0, 1, 0, 45deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(600px) rotate3d(0, 1, 0, 20deg);
    transform: perspective(600px) rotate3d(0, 1, 0, 20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(600px) rotate3d(0, 1, 0, 0deg);
    transform: perspective(600px) rotate3d(0, 1, 0, 0deg);
  }
  to {
    -webkit-transform: perspective(600px);
    transform: perspective(600px);
  }
}

@keyframes tafFlipInY {
  from {
    -webkit-transform: perspective(600px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(600px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(600px) rotate3d(0, 1, 0, 45deg);
    transform: perspective(600px) rotate3d(0, 1, 0, 45deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(600px) rotate3d(0, 1, 0, 20deg);
    transform: perspective(600px) rotate3d(0, 1, 0, 20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(600px) rotate3d(0, 1, 0, 0deg);
    transform: perspective(600px) rotate3d(0, 1, 0, 0deg);
  }
  to {
    -webkit-transform: perspective(600px);
    transform: perspective(600px);
  }
}

.tafFlipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: tafFlipInY;
  animation-name: tafFlipInY;
}

/* ================================================
--> 4. UI KIT
================================================== */
/* ======== 4.1 ACCORDION ======== */
.card.card-accordion {
  border: 0;
  margin: 15px 0;
}

.card.card-accordion .card-header {
  padding: 0px;
  border-radius: 0px;
  border: none;
}

.card.card-accordion .card-header h6 {
  position: relative;
}

.card.card-accordion .card-header h6 a:after {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.card.card-accordion .card-header a {
  display: block;
  padding: 15px 27px 15px 20px;
  line-height: 24px;
  transition: unset;
  background: #968FF4;
  background: linear-gradient(135deg, #968FF4 45%, #6AB6E5 70%);
  color: #ffffff;
}

.card.card-accordion .card-header a[data-toggle=collapse]:after {
  font-family: 'ElegantIcons';
  content: "\32";
  font-style: normal;
  speak: none;
  display: inline-block;
  float: right;
  line-height: 1;
  width: 22px;
  font-size: 20px;
  text-align: center;
  position: absolute;
  right: 15px;
}

.card.card-accordion .card-header a.collapsed {
  line-height: 24px;
  color: #1d2025;
  background: #ffffff;
  background: linear-gradient(180deg, #ffffff, #ffffff);
  border: 0;
}

.card.card-accordion .card-header a[data-toggle=collapse].collapsed:after {
  font-family: 'ElegantIcons';
  content: "\33";
  font-style: normal;
  speak: none;
  display: inline-block;
}

.card.card-accordion .card-block {
  padding: 30px 20px;
  font-size: 14px;
  line-height: 26px;
  border-radius: 0;
}

/* ======== 4.2 BATTON ======== */
.btn {
  border: none;
  border-radius: 2px;
  height: 52px;
  padding: 0 25px;
  font-size: 12px;
  line-height: 52px;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  color: #ffffff;
  transition: all 0.5s ease-in-out;
}

@media (min-width: 992px) {
  .btn {
    font-size: 14px;
  }
}

.btn.focus, .btn:focus, .btn.active, .btn:active, .btn:hover {
  box-shadow: none;
}

.btn.btn-rounded {
  border-radius: 40px;
}

.btn i {
  font-size: inherit;
}

.btn-primary {
  background-color: #889cef;
  border: 1px solid #889cef;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 14px;
  border-radius: 2px;
}

.btn-primary:hover {
  border: 1px solid #889cef;
  color: #889cef;
  background-color: transparent;
}

.btn-primary:active, .btn-primary:focus {
  box-shadow: none !important;
  background-color: transparent !important;
  color: #889cef;
  border-color: #889cef;
}

.btn-outline-white {
  font-size: 14px;
  border-radius: 2px;
  border: 1px solid #ffffff;
}

.btn-outline-white:hover {
  background-color: #ffffff;
  color: #889cef;
}

.btn-outline-primary {
  font-size: 14px;
  border-radius: 2px;
  border: 1px solid #889cef;
  color: #889cef;
}

.btn-outline-primary:hover {
  background-color: #889cef;
  color: #ffffff;
  border-color: #889cef;
}

.btn-outline-primary:active {
  background-color: #889cef !important;
  color: #ffffff !important;
  box-shadow: none;
}

.btn-icon {
  height: 77px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  border-radius: 5px;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

.btn-icon:hover {
  border: 1px solid transparent;
  box-shadow: 0px 7px 15px 0px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
}

.btn-icon:hover .icon .brand-icon-svg {
  fill: #889cef;
}

.btn-icon:hover .text h6,
.btn-icon:hover .text span {
  color: #889cef;
}

.btn-icon .icon {
  padding-right: 20px;
}

.btn-icon .icon .brand-icon-svg {
  fill: #ffffff;
  transition: all 0.5s ease-in-out;
}

.btn-icon .text {
  padding-right: 20px;
  text-align: left;
}

.btn-icon .text h6 {
  color: #ffffff;
  transition: all 0.5s ease-in-out;
}

.btn-icon .text span {
  display: block;
  font-weight: 500;
  color: #ffffff;
  font-size: 20px;
  transition: all 0.5s ease-in-out;
}

.brand-icon-svg {
  fill: #ffffff;
  fill-rule: evenodd;
}

.btn-transparent {
  border: 1px solid #ffffff;
  position: relative;
  z-index: 1;
  font-size: 14px;
}

.btn-transparent:hover {
  border: 1px solid transparent;
  box-shadow: 0px 7px 15px 0px rgba(0, 0, 0, 0.1);
  color: #889cef;
  background-color: #ffffff;
}

.scroll-btn-aria {
  position: relative;
}

.scroll-btn-aria .btn-scroll-down {
  position: absolute;
  top: -80px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 26px;
  height: 66px;
  line-height: 60px;
  display: block;
  border: 2px solid rgba(233, 233, 233, 0.5);
  border-radius: 30px;
  z-index: 100;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

@media (min-width: 768px) {
  .scroll-btn-aria .btn-scroll-down {
    top: -110px;
    width: 28px;
    height: 68px;
    line-height: 90px;
  }
}

.scroll-btn-aria .btn-scroll-down i {
  color: #ffffff;
  display: inline-block;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  position: relative;
}

@media (min-width: 768px) {
  .scroll-btn-aria .btn-scroll-down i {
    font-size: 24px;
  }
}

.scroll-btn-aria .btn-scroll-down:hover i {
  -webkit-animation: fadeInDown 2s infinite;
          animation: fadeInDown 2s infinite;
}

.btn-social {
  width: 45px;
  height: 45px;
  text-align: center;
  padding: 0;
  border-radius: 2px;
  margin: 0 auto;
  line-height: 48px;
  display: inline-block;
  background-color: rgba(106, 200, 208, 0);
  border: 1px solid #e5e5e5;
  transition: all .5s ease-in-out;
  position: relative;
  z-index: 1;
}

.btn-social i {
  margin-right: 0px;
  color: #929292;
  transition: all .5s ease-in-out;
  font-size: 15px;
}

.btn-social:hover {
  background-color: #889cef;
  border: 1px solid #889cef;
}

.btn-social:hover i {
  color: #ffffff;
}

/* ======== 4.3 SECTION TITLE ======== */
[class*="heading-"] {
  position: relative;
}

h3.section-title {
  position: relative;
  font-size: 26px;
  line-height: 26px;
  font-weight: 500;
  padding-bottom: 15px;
}

h3.section-title:after {
  position: absolute;
  left: 0;
  bottom: 5px;
  background: #968FF4;
  background: linear-gradient(135deg, #968FF4 45%, #6AB6E5 70%);
  content: "";
  width: 100px;
  height: 1px;
}

h3.section-title.text-white:after {
  background: #ffffff;
  background: linear-gradient(180deg, #ffffff, #ffffff);
}

h3.section-title-center {
  position: relative;
  font-size: 26px;
  line-height: 26px;
  font-weight: 500;
  padding-bottom: 15px;
}

h3.section-title-center:after {
  position: absolute;
  left: 50%;
  bottom: 5px;
  background: #968FF4;
  background: linear-gradient(135deg, #968FF4 45%, #6AB6E5 70%);
  content: "";
  width: 100px;
  height: 1px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.section-padding {
  padding-top: 70px;
  padding-bottom: 70px;
}

@media (min-width: 992px) {
  .section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.section_top-padding {
  padding-top: 70px;
}

@media (min-width: 992px) {
  .section_top-padding {
    padding-top: 90px;
  }
}

.section_bottom-padding {
  padding-bottom: 70px;
}

@media (min-width: 992px) {
  .section_bottom-padding {
    padding-bottom: 90px;
  }
}

/* ======== 4.4 CARD ======== */
.card.team {
  border: 0;
  padding: 13px;
}

.card.team .card-img {
  position: relative;
}

.card.team .card-img img {
  border-radius: 50%;
  width: 100%;
}

.card.team .card-img .card-img-overlay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #968FF4;
  background: linear-gradient(135deg, #968FF4 45%, #6AB6E5 70%);
  border-radius: 50%;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$value)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0);
          transform: scale(0);
  transition: all .5s ease-in-out;
}

.card.team .card-img .card-img-overlay .social-link {
  margin: 0;
}

.card.team .card-img .card-img-overlay .social-link .btn-social {
  width: 40px;
  height: 40px;
  line-height: 43px;
}

.card.team .card-img .card-img-overlay .social-link .btn-social i {
  color: #ffffff;
  font-size: 14px;
}

.card.team .card-img .card-img-overlay .social-link .btn-social::after {
  background-image: none;
}

.card.team .card-img .card-img-overlay .social-link .btn-social:hover {
  background-color: #ffffff !important;
  border: 1px solid #ffffff;
}

.card.team .card-img .card-img-overlay .social-link .btn-social:hover i {
  color: #889cef;
}

.card.team .card-body a {
  display: block;
  text-align: center;
  padding: 10px;
}

.card.team .card-body a h5 {
  font-size: 20px;
}

.card.team .card-body span {
  display: block;
  color: #929292;
  text-align: center;
  text-transform: capitalize;
}

.card.team:hover .card-img .card-img-overlay {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$value)";
  filter: alpha(opacity=1);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.card.team:hover .card-img .card-img-overlay .social-link .btn-social {
  background-color: transparent;
}

/* ======== 4.5 TABS ======== */
.nav-tabs.feature-tabs {
  border-bottom: 0;
}

@media (min-width: 992px) {
  .nav-tabs.feature-tabs {
    margin-top: 25px;
  }
}

.nav-tabs.feature-tabs .nav-item {
  width: 100%;
}

.nav-tabs.feature-tabs .nav-item .nav-link {
  margin-right: 0;
  background-color: transparent;
  border: 0;
  padding: 0;
  margin: 0;
}

.nav-tabs.feature-tabs .nav-item .nav-link.active {
  border-top-color: transparent;
}

/* Tab Image Frame */
.image-frame {
  position: relative;
  text-align: center;
  padding: 0px 20px;
  height: 604px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 96%;
  top: 50px;
}

@media (min-width: 1200px) {
  .image-frame {
    background-size: 79%;
    top: 0;
  }
}

.tab-content.scren-image {
  position: absolute;
  left: 50%;
  top: 49.5%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 252px;
}

.tab-content.scren-image .tab-pane.show {
  display: block;
}

.tab-content.scren-image .tab-pane img {
  max-width: 100%;
}

/* ======== 4.6 LIST STYLE ======== */
@media (min-width: 768px) {
  .list-style {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: 65px;
  }
}

.list-style li {
  color: #1d2025;
  line-height: 24px;
  padding: 3px 0;
}

.list-style li i {
  color: #1d2025;
  margin-right: 10px;
  font-size: 18px;
  font-weight: 300;
}

/* List Style 2 */
.list-style2 li {
  padding-bottom: 10px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
}

.list-style2 li i {
  color: #ffffff;
  margin-right: 5px;
  font-size: 18px;
}

/*  List Style 3 */
.list-style3 li {
  color: #cbd0d8;
  margin-bottom: 20px;
}

.list-style3 li a {
  text-decoration: none;
  color: #cbd0d8;
  text-transform: uppercase;
}

.list-style3 li a:hover {
  color: #889cef;
}

.list-style3 li i {
  margin-right: 20px;
  color: #889cef;
}

/*======== 4.7 MEDIA STYLE ========*/
/* Media Style One */
.media-style-01 {
  transition: all .05s ease-in-out;
  padding: 15px 0;
}

@media (min-width: 768px) {
  .media-style-01 {
    padding: 20px 0;
  }
}

@media (min-width: 992px) {
  .media-style-01 {
    padding: 30px 0;
  }
}

.media-style-01 .media-body h5 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.media-style-01 .media-body p {
  font-weight: 400;
}

.media-style-01:hover .icon-style-1 .icon:before {
  visibility: visible;
  opacity: 1;
}

.media-style-01:hover .icon-style-1 i {
  background: white;
  background: linear-gradient(135deg, white, white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Media Style Two */
.media-style-02 .media-body h5 {
  font-size: 16px;
  font-weight: 500;
}

@media (min-width: 768px) {
  .media-style-02 .icon-style-3.custom-ml {
    margin-left: 20px;
  }
}

@media (min-width: 768px) {
  .media-style-02 .icon-style-3.custom-mr {
    margin-right: 20px;
  }
}

.media-style-02 .icon-style-3 i {
  color: #333;
}

/*======== 4.8 ICON STYLE ========*/
.icon-style-1 {
  position: relative;
  width: 72px;
  height: 72px;
  line-height: 68px;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #F3F3F3;
  transition: all .5s ease-in-out;
  margin-right: 20px;
}

@media (min-width: 768px) {
  .icon-style-1 {
    margin: auto;
  }
}

@media (min-width: 768px) {
  .icon-style-1.custom-mr {
    margin-right: 20px;
  }
}

@media (min-width: 768px) {
  .icon-style-1.custom-ml {
    margin-left: 20px;
  }
}

.icon-style-1 .icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  position: relative;
}

.icon-style-1 .icon:before {
  border-radius: 50%;
  position: absolute;
  left: 3px;
  top: 3px;
  bottom: 0;
  right: 0;
  content: "";
  background: #968FF4;
  background: linear-gradient(45deg, #968FF4, #6AB6E5);
  visibility: hidden;
  opacity: 0;
  transition: all .5s ease-in-out;
}

.icon-style-1 i {
  margin-left: 3px;
  font-size: 25px;
  text-align: center;
  line-height: 68px;
  display: inline-block;
  transition: all .5s ease-in-out;
  position: relative;
  z-index: 1000;
  background: #968FF4;
  background: linear-gradient(135deg, #968FF4, #6AB6E5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*======== 4.9 IMAGE STYLE ========*/
.simple-img {
  text-align: center;
}

.simple-img img {
  width: 100%;
}

@media (min-width: 768px) {
  .image-style-1 {
    position: absolute;
    right: 0;
    bottom: -115px;
  }
  .image-style-1 img {
    max-width: 100%;
  }
}

@media (min-width: 768px) and (min-width: 1200px) {
  .image-style-1 img {
    max-width: none;
  }
}

@media (min-width: 992px) {
  .image-style-1 {
    bottom: -170px;
  }
}

@media (min-width: 768px) {
  .image-style-2 {
    margin-top: 50px;
  }
}

@media (min-width: 992px) {
  .image-style-2 {
    margin-right: 40px;
    margin-top: 0;
  }
}

.image-style-2 img {
  max-width: 100%;
  margin-top: -50px;
}

@media (min-width: 1200px) {
  .image-style-2 img {
    max-width: none;
  }
}

.screen-shot-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url("../img/products/frame.png");
  z-index: 1000;
}

/*======== 4.10 CAROUSEL ========*/
/* Product */
.product-slider {
  position: relative;
}

.product-slider:after {
  position: absolute;
  top: 16px;
  left: 57%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: " ";
  background-image: url(../img/products/frame.png);
  width: 267px;
  height: 100%;
  height: 558px;
  background-repeat: no-repeat;
  background-size: 88%;
}

@media (min-width: 768px) {
  .product-slider:after {
    z-index: 100;
    top: 37px;
    left: 61%;
    background-size: 59%;
  }
}

@media (min-width: 992px) {
  .product-slider:after {
    top: 24px;
    left: 53%;
    background-size: 83%;
  }
}

@media (min-width: 1200px) {
  .product-slider:after {
    left: 50%;
    background-size: 100%;
  }
}

.product-slider {
  padding-top: 54px;
  padding-bottom: 110px;
  position: relative;
}

@media (min-width: 768px) {
  .product-slider {
    padding-top: 60px;
  }
}

@media (min-width: 992px) {
  .product-slider {
    padding-top: 58px;
  }
}

@media (min-width: 1200px) {
  .product-slider {
    padding-top: 66px;
  }
}

.product-slider .single-item {
  transition: -webkit-transform .5s ease-in-out;
  transition: transform .5s ease-in-out;
  transition: transform .5s ease-in-out, -webkit-transform .5s ease-in-out;
}

@media (min-width: 768px) {
  .product-slider .single-item {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}

.product-slider .single-item img {
  width: 100%;
  padding: 10px;
}

@media (min-width: 480px) {
  .product-slider .single-item img {
    width: 65%;
  }
}

@media (min-width: 768px) {
  .product-slider .single-item img {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .product-slider .single-item.slick-active.slick-center {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

/* Slick Dots */
.slick-dots {
  bottom: 0;
  z-index: 1000;
}

@media (min-width: 768px) {
  .slick-dots {
    bottom: 25px;
  }
}

@media (min-width: 992px) {
  .slick-dots {
    bottom: 10px;
  }
}

@media (min-width: 1200px) {
  .slick-dots {
    bottom: -20px;
  }
}

.slick-dots li {
  margin: 0;
}

.slick-dots li button {
  border-radius: 50%;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(29, 32, 37, 0.2);
}

.slick-dots li button:before {
  color: transparent;
}

.slick-dots li.slick-active button {
  background-color: #889cef;
  border: 1px solid #889cef;
  opacity: 1;
}

.slick-dots li.slick-active button:before {
  color: transparent;
}

/* Slick Arrow	*/
button.slick-prev,
button.slick-next {
  top: auto;
  bottom: -115px;
  width: 40px;
  height: 40px;
  background-color: rgba(165, 165, 165, 0.4);
  border: 0;
  transition: all .5s ease-in-out;
  bottom: -15px;
  border-radius: 2px;
  display: none;
}

button.slick-prev:active, button.slick-prev:focus, button.slick-prev:hover,
button.slick-next:active,
button.slick-next:focus,
button.slick-next:hover {
  background-color: #5b77e9;
}

@media (min-width: 768px) {
  button.slick-prev,
  button.slick-next {
    display: block;
  }
}

button.slick-prev {
  left: 0;
}

@media (min-width: 768px) {
  button.slick-prev {
    left: 42.5%;
  }
}

@media (min-width: 992px) {
  button.slick-prev {
    left: 44.5%;
  }
}

@media (min-width: 1200px) {
  button.slick-prev {
    left: 45%;
  }
}

button.slick-next {
  right: 0;
}

@media (min-width: 768px) {
  button.slick-next {
    right: 42.5%;
  }
}

@media (min-width: 992px) {
  button.slick-next {
    right: 44.5%;
  }
}

@media (min-width: 1200px) {
  button.slick-next {
    right: 45%;
  }
}

.slick-prev:before {
  content: '\34';
}

.slick-next:before {
  content: '\35';
}

.slick-prev:before,
.slick-next:before {
  font-family: 'ElegantIcons';
  font-size: 20px;
  line-height: 1;
  opacity: 1;
  color: white;
}

.header {
  position: relative;
}

/* Fixed navber when scroll up */
.up-scroll .navbar-scrollUp.navbar-sticky {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  transition: .3s ease-in-out;
}

nav.navbar {
  transition: .4s ease-in-out;
  z-index: 1000;
}

nav.navbar.navbar-sticky {
  position: fixed;
  top: 0;
  width: 100%;
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
  background: #968FF4;
  background: linear-gradient(135deg, #968FF4 45%, #6AB6E5 70%);
}

nav.navbar.navbar-sticky .navbar-brand .svgLogo {
  height: 42px;
}

nav.navbar.navbar-sticky .nav-item a.nav-link {
  padding-left: 20px;
}

@media (min-width: 768px) {
  nav.navbar.navbar-sticky .nav-item a.nav-link {
    padding: 20px 10px;
  }
  nav.navbar.navbar-sticky .nav-item a.nav-link.active::after {
    bottom: 20px;
  }
}

@media (min-width: 992px) {
  nav.navbar.navbar-sticky .nav-item a.nav-link {
    padding: 25px 20px;
  }
}

@media (min-width: 1200px) {
  nav.navbar.navbar-sticky .nav-item a.nav-link {
    padding: 25px;
  }
}

@media (min-width: 768px) {
  nav.navbar.navbar-sticky .btn-outline-white {
    margin-top: 10px;
  }
}

@media (min-width: 992px) {
  nav.navbar.navbar-sticky .btn-outline-white {
    margin-top: 9px;
  }
}

nav.navbar .navbar-toggler {
  border: 1px solid #ffffff;
  padding: 0px;
  color: #ffffff;
}

nav.navbar .navbar-toggler i {
  font-size: 40px;
}

nav.navbar .navbar-toggler:focus {
  outline: none;
}

nav.navbar .navbar-toggler:focus {
  outline: none;
}

nav.navbar > .container {
  position: relative;
}

.navbar .container .collapse,
.navbar .container .collapsing {
  background: #968FF4;
  background: linear-gradient(135deg, #968FF4, #6AB6E5);
  margin-left: -15px;
  margin-right: -15px;
}

@media (min-width: 768px) {
  .navbar .container .collapse,
  .navbar .container .collapsing {
    background-image: none;
    background-color: transparent;
    padding-bottom: 0;
  }
}

.navbar-nav.site_nav {
  padding-top: 15px;
  padding-bottom: 15px;
}

@media (min-width: 768px) {
  .navbar-nav.site_nav {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}

.navbar-nav.site_nav .nav-item a.nav-link {
  display: block;
  font-weight: 400;
  padding: 10px 15px;
  font-size: 12px;
  color: #ffffff;
  text-transform: uppercase;
  position: relative;
}

@media (min-width: 768px) {
  .navbar-nav.site_nav .nav-item a.nav-link {
    padding: 30px 15px;
    font-size: 10px;
  }
}

@media (min-width: 992px) {
  .navbar-nav.site_nav .nav-item a.nav-link {
    padding: 30px 20px;
    font-size: 14px;
  }
}

@media (min-width: 1200px) {
  .navbar-nav.site_nav .nav-item a.nav-link {
    padding: 44px 25px;
  }
}

@media (min-width: 768px) {
  .navbar-nav.site_nav .nav-item a.nav-link.active::after {
    position: absolute;
    width: 65%;
    bottom: 34px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    content: "";
    background-color: #ffffff;
    height: 2px;
  }
}

@media (min-width: 1200px) {
  .navbar-nav.site_nav .nav-item.dropdown {
    padding: 0 5px;
  }
}

.navbar-nav.site_nav .nav-item.dropdown .dropdown-toggle:after {
  font-family: 'ElegantIcons';
  font-size: 20px;
  content: "\33";
  border: 0px;
  margin-left: 0px;
  vertical-align: 0;
  font-weight: 700;
  position: absolute;
  right: 5px;
  top: 49%;
  -webkit-transform: translateY(-49%);
          transform: translateY(-49%);
  width: auto;
  height: auto;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
}

@media (min-width: 768px) {
  .navbar-nav.site_nav .nav-item.dropdown .dropdown-toggle:after {
    right: 0px;
    font-size: 16px;
  }
}

@media (min-width: 992px) {
  .navbar-nav.site_nav .nav-item.dropdown .dropdown-toggle:after {
    right: 5px;
    font-size: 18px;
  }
}

@media (min-width: 1200px) {
  .navbar-nav.site_nav .nav-item.dropdown .dropdown-toggle:after {
    font-size: 20px;
  }
}

.navbar-nav.site_nav .nav-item.dropdown.show .dropdown-toggle:after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
  right: 5px;
}

@media (min-width: 768px) {
  .navbar-nav.site_nav .nav-item.dropdown.show .dropdown-toggle:after {
    right: 0;
  }
}

@media (min-width: 992px) {
  .navbar-nav.site_nav .nav-item.dropdown.show .dropdown-toggle:after {
    right: 5px;
  }
}

.navbar-nav.site_nav .nav-item .dropdown-menu {
  background: transparent;
  border-radius: 0px;
  padding: 0px 20px;
  margin: 0;
  min-width: 228px;
  border: 0;
}

@media (min-width: 768px) {
  .navbar-nav.site_nav .nav-item .dropdown-menu {
    background: #ffffff;
    padding: 10px 10px;
    min-width: 175px;
    box-shadow: 0px 12px 25px 0px rgba(0, 0, 0, 0.08);
  }
}

@media (min-width: 992px) {
  .navbar-nav.site_nav .nav-item .dropdown-menu {
    min-width: 228px;
    padding: 10px 20px;
  }
}

.navbar-nav.site_nav .nav-item .dropdown-menu a {
  color: #1d2025;
}

.navbar-nav.site_nav .nav-item .dropdown-menu a:hover {
  background: transparent;
  color: #1d2025;
}

.navbar-nav.site_nav .nav-item .dropdown-menu li a {
  color: #ffffff;
  padding: 5px;
  font-size: 13px;
  display: block;
}

@media (min-width: 768px) {
  .navbar-nav.site_nav .nav-item .dropdown-menu li a {
    color: #1d2025;
    padding: 10px 5px;
  }
}

@media (min-width: 992px) {
  .navbar-nav.site_nav .nav-item .dropdown-menu li a {
    font-size: 14px;
  }
}

.navbar-nav.site_nav .nav-item .dropdown-menu li a:hover {
  color: #889cef;
}

.navbar-nav.site_nav .nav-item .dropdown-menu li a.active {
  background: transparent;
}

@media (min-width: 768px) {
  .navbar-nav.site_nav .nav-item .dropdown-menu li a.active {
    color: #889cef;
  }
}

.navbar-nav.site_nav .nav-item .dropdown-menu li:last-child {
  border-bottom: 0px;
}

.navbar-nav.site_nav .btn-outline-white {
  display: none;
}

@media (min-width: 768px) {
  .navbar-nav.site_nav .btn-outline-white {
    display: block;
    margin-top: 22px;
    font-size: 10px;
    height: 35px;
    line-height: 35px;
    padding: 0 20px;
  }
}

@media (min-width: 992px) {
  .navbar-nav.site_nav .btn-outline-white {
    font-size: 14px;
    height: 45px;
    line-height: 45px;
    margin-top: 17px;
    padding: 0 30px;
  }
}

@media (min-width: 1200px) {
  .navbar-nav.site_nav .btn-outline-white {
    margin-top: 31px;
  }
}

/*Navbar Transparent*/
.navbar-transparent {
  position: absolute;
  width: 100%;
  background-image: none;
}

/* Fixed navber when scroll up */
.static .navbar-sticky {
  display: none;
}

/* Make header width same with as body when position is set to fixed */
@media (min-width: 992px) {
  body.boxed .navbar-sticky {
    max-width: 970px;
  }
}

@media (min-width: 1200px) {
  body.boxed .navbar-sticky {
    max-width: 1260px;
  }
}

/* Header logo Svg*/
.svgLogo .cls-1 {
  fill: #ffffff;
}

.svgLogo .cls-1, .svgLogo .cls-2 {
  fill-rule: evenodd;
}

.svgLogo .cls-2 {
  fill: #ffffff;
}

/* ================================================
--> 6. HOME
================================================== */
/*======== 6.1 BANNER CONTENT ========*/
/*Bubles*/
.bubbles-section {
  display: none;
}

@media (min-width: 768px) {
  .bubbles-section {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 720px;
  }
}

.banner-bg-right {
  display: none;
}

@media (min-width: 992px) {
  .banner-bg-right {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
  }
  .banner-bg-right .right-bg-svg {
    fill: #fff;
    fill-opacity: 0.06;
    fill-rule: evenodd;
  }
}

.bubbles-container {
  position: relative;
}

.bubbles-container .single-bubbles {
  position: absolute;
}

.bubbles-container .single-bubbles .circle {
  fill: #000;
  fill-opacity: 0.04;
}

#circle-2 {
  left: 0;
  top: 135px;
}

#circle-3 {
  left: 82px;
  top: 147px;
}

#circle-4 {
  left: 256px;
  top: 152px;
}

#circle-5 {
  left: 480px;
  top: 100px;
}

#circle-6 {
  left: 165px;
  top: 216px;
}

#circle-7 {
  left: 227px;
  top: 295px;
}

#circle-8 {
  left: 169px;
  top: 416px;
}

#circle-9 {
  left: 169px;
  top: 570px;
}

/* Banner Text content */
.banner-text-content {
  margin-top: 80px;
  color: #ffffff;
}

@media (min-width: 768px) {
  .banner-text-content {
    margin-top: 0;
  }
}

.banner-text-content h5 {
  font-size: 14px;
  letter-spacing: 5px;
  font-weight: 500;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 20px;
  cursor: default;
}

@media (min-width: 768px) {
  .banner-text-content h5 {
    font-size: 16px;
    letter-spacing: 10px;
    margin-bottom: 5px;
  }
}

@media (min-width: 992px) {
  .banner-text-content h5 {
    font-size: 18px;
  }
}

.banner-text-content h1 {
  font-size: 40px;
  font-weight: 600;
  line-height: 40px;
  text-transform: uppercase;
  text-transform: uppercase;
  color: #ffffff;
  cursor: default;
}

@media (min-width: 768px) {
  .banner-text-content h1 {
    font-size: 40px;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 15px;
  }
}

@media (min-width: 992px) {
  .banner-text-content h1 {
    font-size: 55px;
    line-height: 55px;
  }
}

@media (min-width: 1200px) {
  .banner-text-content h1 {
    font-size: 78px;
    line-height: 78px;
  }
}

.banner-text-content p {
  /*display: none;*/
  color: #ffffff;
  cursor: default;
}

@media (min-width: 768px) {
  .banner-text-content p {
    display: block;
    font-size: 14px;
    line-height: 25px;
    color: #ffffff;
  }
}

@media (min-width: 992px) {
  .banner-text-content p {
    font-size: 16px;
  }
}

.banner-text-content .btn-icon {
  margin-top: 50px;
}

/*======== 6.3 PRICING TABLE ========*/
.pricing {
  padding: 50px 50px;
  text-align: center;
  border-color: #e5e5e5;
  border-radius: 3px;
  transition: all .5s ease-in-out;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .pricing {
    padding: 30px 25px;
    margin-bottom: 0;
  }
}

@media (min-width: 992px) {
  .pricing {
    padding: 40px 35px;
  }
}

@media (min-width: 1200px) {
  .pricing {
    padding: 50px 60px;
  }
}

.pricing .card-header {
  background-color: transparent;
  padding-top: 0;
  padding-bottom: 30px;
  border-color: #e5e5e5;
}

.pricing .card-header h3 {
  font-size: 24px;
}

.pricing .card-body ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.pricing .card-body ul li {
  padding: 9px 10px;
  font-size: 14px;
  color: #1d2025;
}

.pricing .card-body ul li span {
  font-size: 50px;
  line-height: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  background: #968FF4;
  background: linear-gradient(135deg, #968FF4 45%, #6AB6E5 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-top: 15px;
  padding-bottom: 20px;
  display: block;
}

@media (min-width: 768px) {
  .pricing .card-body .btn-outline-primary,
  .pricing .card-body .btn-outline-white {
    padding: 0 15px;
  }
}

@media (min-width: 992px) {
  .pricing .card-body .btn-outline-primary,
  .pricing .card-body .btn-outline-white {
    padding: 0 25px;
  }
}

.pricing:hover {
  box-shadow: 0px 7px 15px 0px rgba(0, 0, 0, 0.1);
  border: 1px solid transparent;
}

.pricing.center {
  border: 0;
  z-index: 100;
}

.pricing.center .card-header span {
  display: block;
  font-size: 14px;
  letter-spacing: 5px;
  color: #ffffff;
  padding-bottom: 20px;
  text-transform: uppercase;
}

.pricing.center .card-header h3 {
  color: #ffffff;
}

.pricing.center .card-body ul li {
  color: #ffffff;
}

.pricing.center .card-body ul li span {
  -webkit-text-fill-color: #ffffff;
}

.pricing.center .card-body .btn-primary {
  border: 1px solid #ffffff;
  color: #ffffff;
}

.pricing.center .card-body .btn-primary:hover {
  background-color: #ffffff;
  color: #889cef !important;
}

/*======== 6.4 PROME VIDEO SECTION ========*/
.home-promo-video .promo-video {
  padding-top: 50px;
  padding-bottom: 100px;
  position: relative;
}

.home-promo-video .text {
  display: block;
  text-align: center;
  color: #ffffff;
  font-size: 26px;
  line-height: 26px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  padding-bottom: 20px;
  padding-top: 25px;
}

.home-promo-video a.video-link {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  text-align: center;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  border: 20px solid rgba(255, 255, 255, 0.149);
}

.home-promo-video a.video-link span {
  width: 98px;
  height: 98px;
  background-color: #ffffff;
  display: block;
  border-radius: 50%;
}

.home-promo-video a.video-link span .video-icon {
  fill: #889cef;
}

.home-promo-video a.video-link i {
  line-height: 120px;
  display: block;
}

/*======== 6.5 CONTACT ========*/
.contact .media i {
  font-size: 16px;
  display: inline-block;
  width: 20px;
  margin-top: 5px;
  z-index: 1;
  color: #889cef;
}

.contact .media .media-body {
  margin-left: 15px;
}

.social-link {
  margin-top: 30px;
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .social-link {
    margin-bottom: 0;
  }
}

.contact-form input.form-control {
  height: 52px;
  border: 1px solid #efeff3;
  border-radius: 2px;
  padding: 20px;
  margin-bottom: 10px;
}

.contact-form input.form-control:active, .contact-form input.form-control:focus {
  border: 1px solid #f5f5f7;
  box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.05);
}

.contact-form textarea.form-control {
  border: 1px solid #efeff3;
  border-radius: 2px;
  padding: 20px;
  margin-bottom: 15px;
  min-height: 192px;
}

.contact-form textarea.form-control:active, .contact-form textarea.form-control:focus {
  border: 1px solid #f5f5f7;
  box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.05);
}

/*======== 6.6 TESTIMONIAL ========*/
@media (min-width: 768px) {
  .testimonial-carousel {
    padding-bottom: 90px;
  }
}

.testimonial-carousel .testimonial-content p {
  margin-top: 40px;
  color: #222222;
}

.testimonial-carousel .testimonial-content h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: #222222;
  margin-top: 35px;
  font-weight: 500;
}

.testimonial-carousel .testimonial-content h4 span {
  font-weight: 400;
  font-size: 14px;
}

/* ================================================
--> 7. FOOTER
================================================== */
.footer-logo {
  display: block;
  text-align: center;
}
