@charset "UTF-8";
/*-----------------------------------------------------------------------------------
     INDEX
    ===================
    *. Responsive
    1. Theme default
    2. Header
    3. Hero
    4. Sponsor
    5. Features
    6. About
    7. How We Help
    8. How It Works
    9. Fun Fact
    10. Integration
    11. Invention
    12. Testimonial
    13. Pricing
    14. Blog
    15. Portfolio
    16. Services
    17. FAQ
    18. Contact
    19. Error
    20. Newsletter
    21. Footer
    22. RTL 
-----------------------------------------------------------------------------------*/
/*----------------------------------------*/
/*  1. Theme default CSS
/*----------------------------------------*/
:root {
  /**
  @font family declaration
  */
  --tp-ff-body: 'Plus Jakarta Sans', sans-serif;
  --tp-ff-heading: 'Plus Jakarta Sans', sans-serif;
  --tp-ff-fontawesome: Font Awesome 5 Pro;
  --tp-ff-mont: 'Montserrat Alternates', sans-serif;
  --tp-ff-urban: 'Urbanist', sans-serif;
  --tp-ff-dm: 'DM Serif Display', serif;
  /**
  @color declaration
  */
  --tp-common-white: #ffffff;
  --tp-common-black: #000229;
  --tp-common-orange: #FF7A41;
  --tp-common-purple: #FF75F9;
  --tp-common-green: #5FC33B;
  --tp-common-green-2: #21B641;
  --tp-common-yellow: #FFAB0A;
  --tp-common-yellow-2: #FFCE57;
  --tp-common-yellow-3: #F8FF35;
  --tp-common-yellow-4: #FFC530;
  --tp-common-blue: #6865FF;
  --tp-common-blue-2: #1117A0;
  --tp-common-blue-3: #5138EE;
  --tp-common-blue-4: #600EE4;
  --tp-common-red: #FF3C82;
  --tp-heading-primary: #000229;
  --tp-grey-1: #5F6368;
  --tp-grey-2: #9A9DA7;
  --tp-grey-3: #F5F5F5;
  --tp-grey-4: #F2F3F5;
  --tp-grey-5: #888B95;
  --tp-grey-6: #EEEEF5;
  --tp-grey-7: #F6F5FA;
  --tp-grey-8: #F7F9FB;
  --tp-text-body: #5F6368;
  --tp-theme-1: #6865FF;
  --tp-theme-2: #AEE87C;
  --tp-theme-3: #FFA8B8;
  --tp-theme-4: #F1A0AF;
  --tp-border-1: #EDF5FA;
  --tp-border-2: #EBECF0;
}
/* pulse effect animation */
@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes section_stroke {
  0% {
    stroke-dashoffset: 560;
  }
  50% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -560;
  }
}
@keyframes section-animation {
  0% {
    width: 0;
  }
  15% {
    width: 100%;
  }
  85% {
    opacity: 1;
  }
  90% {
    width: 100%;
    opacity: 0;
  }
  to {
    width: 0;
    opacity: 0;
  }
}
@keyframes about-sm {
  100% {
    transform: translateY(60px);
  }
  100% {
    transform: translateY(50px);
  }
}
@keyframes hero-thumb-animation {
  0% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes tpleftright {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    -o-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}
@keyframes tprotate {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
@keyframes tptranslateY2 {
  0% {
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px);
  }
}
@-webkit-keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes lineDash {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 1000;
  }
}
@keyframes lineDash {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 1000;
  }
}
@-webkit-keyframes lineDash-2 {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -1000;
  }
}
@keyframes lineDash-2 {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -1000;
  }
}
@keyframes scroll {
  0% {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(8px);
    -moz-transform: translateY(8px);
    -ms-transform: translateY(8px);
    -o-transform: translateY(8px);
    transform: translateY(8px);
  }
}
@keyframes RL_smooth {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slide_up_down {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
@keyframes tptranslateX2 {
  0% {
    -webkit-transform: translateX(-30px);
    -moz-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    -o-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    -webkit-transform: translatXY(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
    transform: translateX(20px);
  }
}
@keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes scale_up_down {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes dash {
  to {
    stroke-dashoffset: 0px;
    stroke-dasharray: 3000;
  }
}
@keyframes tpupdown {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
@keyframes tpswing {
  0% {
    -webkit-transform: rotate(6deg);
    -moz-transform: rotate(6deg);
    -ms-transform: rotate(6deg);
    -o-transform: rotate(6deg);
    transform: rotate(6deg);
  }
  100% {
    -webkit-transform: rotate(-6deg);
    -moz-transform: rotate(-6deg);
    -ms-transform: rotate(-6deg);
    -o-transform: rotate(-6deg);
    transform: rotate(-6deg);
  }
}
@keyframes borderanimate2 {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}
@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes moving {
  0% {
    transform: translatey(0px);
  }
  25% {
    transform: translatex(20px);
  }
  50% {
    transform: translatey(-20px);
  }
  75% {
    transform: translatex(-20px);
  }
  100% {
    transform: translatey(0px);
  }
}
@keyframes about-circle {
  0% {
    -webkit-transform: translateX(100px);
    -moz-transform: translateX(100px);
    -ms-transform: translateX(100px);
    -o-transform: translateX(100px);
    transform: translateX(100px);
  }
  100% {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
  }
}
@keyframes services-triangle {
  0% {
    -webkit-transform: rotate(0deg) translateX(-50px);
    -moz-transform: rotate(0deg) translateX(-50px);
    -ms-transform: rotate(0deg) translateX(-50px);
    -o-transform: rotate(0deg) translateX(-50px);
    transform: rotate(0deg) translateX(-50px);
  }
  100% {
    -webkit-transform: rotate(360deg) translateY(100px);
    -moz-transform: rotate(360deg) translateY(100px);
    -ms-transform: rotate(360deg) translateY(100px);
    -o-transform: rotate(360deg) translateY(100px);
    transform: rotate(360deg) translateY(100px);
  }
}
@keyframes hero-3-dot-2 {
  0% {
    transform: translateY(-50px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes tfLeftToRight {
  49% {
    transform: translateX(30%);
  }
  50% {
    opacity: 0;
    transform: translateX(-30%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes tfLeftToRight2 {
  0% {
    transform: translateX(30%) translateY(1px);
  }
  49% {
    transform: translateX(30%) translateY(1px);
  }
  50% {
    opacity: 0;
    transform: translateX(-30%) translateY(1px);
  }
  51% {
    opacity: 1;
  }
}
@keyframes rotate2 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotate3 {
  from {
    transform: rotateZ(0deg);
  }
  to {
    transform: rotateZ(360deg);
  }
}
@keyframes circle-animations {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes moving {
  0% {
    transform: translatey(0px);
  }
  20% {
    transform: translateX(-50px);
  }
  50% {
    transform: translatey(-40px);
  }
  100% {
    transform: translatey(0px);
  }
}
@keyframes leftright {
  0% {
    transform: translatex(0);
  }
  50% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes movinglight {
  0% {
    transform: translatey(0px);
  }
  20% {
    transform: translateX(-70px);
  }
  50% {
    transform: translatey(-70px);
  }
  100% {
    transform: translatey(0px);
  }
}
@keyframes movinglight2 {
  0% {
    transform: translatey(0px);
  }
  20% {
    transform: translateX(70px);
  }
  50% {
    transform: translatey(70px);
  }
  100% {
    transform: translatey(0px);
  }
}
@keyframes movingtop {
  0% {
    transform: translatey(0px);
  }
  20% {
    transform: translatey(70px);
  }
  50% {
    transform: translatey(-70px);
  }
  100% {
    transform: translatey(0px);
  }
}
@keyframes circle-animation {
  0% {
    right: 0;
  }
  50% {
    right: 100%;
  }
  100% {
    right: 0%;
  }
}
@keyframes section_stroke {
  0% {
    stroke-dashoffset: 560;
  }
  50% {
    stroke-dashoffset: 560;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }
  100% {
    margin-top: 0;
  }
}
@keyframes movingleftright1 {
  0% {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
  40% {
    -webkit-transform: translateX(50px) translateY(-50px);
    transform: translateX(50px) translateY(-50px);
  }
  75% {
    -webkit-transform: translateX(200px);
    transform: translateX(200px);
  }
  100% {
    -webkit-transform: translateY(0) translateX(0);
    transform: translateY(0) translateX(0);
  }
}
@keyframes circle-animation-2 {
  0% {
    left: 0;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 0%;
  }
}
@keyframes scroll1 {
  0% {
    top: 0%;
  }
  50% {
    top: 95%;
  }
  100% {
    top: 0%;
  }
}
@keyframes movingX {
  0% {
    -webkit-transform: translateY(0) rotateX(0deg);
    transform: translateY(0) rotateX(0deg);
  }
  50% {
    -webkit-transform: translateY(calc(100vh - 100%));
    transform: translateY(calc(100vh - 100%));
  }
  51% {
    -webkit-transform: translateY(calc(100vh - 100%)) rotateX(180deg);
    transform: translateY(calc(100vh - 100%)) rotateX(180deg);
  }
  100% {
    -webkit-transform: translateY(0) rotateX(180deg);
    transform: translateY(0) rotateX(180deg);
  }
}
@keyframes tracking-in-contract-bck {
  0% {
    letter-spacing: 20px;
    -webkit-transform: translateZ(150px);
    transform: translateZ(150px);
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes tracking-in-contract-bck-2 {
  0% {
    letter-spacing: 20px;
    -webkit-transform: translateZ(150px) translateY(150px);
    transform: translateZ(150px) translateY(150px);
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes animationglob {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes zoom {
  0% {
    transform: scale(0.7);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.7);
  }
}
@keyframes sliderShape {
  0%, 100% {
    border-radius: 42% 58% 70% 30%/45% 45% 55% 55%;
    transform: translate3d(0, 0, 0) rotateZ(0.01deg);
  }
  34% {
    border-radius: 36% 64% 41% 59%/54% 41% 59% 46%;
    transform: translate3d(1px, 5px, 2px) rotateZ(0.01deg);
  }
  50% {
    transform: translate3d(0, 0, 0) rotateZ(0.01deg);
  }
  67% {
    border-radius: 100% 60% 60% 100%/100% 100% 60% 60%;
    transform: translate3d(-1px, -3px, -2px) rotateZ(0.01deg);
  }
}
@keyframes zoom2 {
  0% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.9);
  }
}
@keyframes wobble-vertical {
  10% {
    transform: translateY(-10px);
  }
  50% {
    transform: skew(15deg);
  }
  80% {
    transform: rotate(10deg);
  }
  100% {
    transform: translate(0);
  }
}
@-webkit-keyframes section-highlight {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-moz-keyframes section-highlight {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-ms-keyframes section-highlight {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes section-highlight {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes widthcalc {
  0% {
    width: 20%;
  }
  50% {
    width: 50%;
  }
  75% {
    width: 90%;
  }
  90% {
    opacity: 75%;
  }
  90% {
    opacity: 100%;
  }
}
/* right bounce */
@keyframes bounceRight {
  0%, 20%, 50%, 80%, 100% {
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -ms-transform: translateY(-35px);
    transform: translateY(-35px);
  }
  60% {
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
/* /right bounce */
@keyframes icon-bounce {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
@keyframes light-one {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.6;
  }
  75% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}
/*--- preloader ---*/
.dark #preloader {
  background-color: var(--tp-theme-1);
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f7f7f7;
  z-index: 999999;
}

.preloader {
  width: 50px;
  height: 50px;
  display: inline-block;
  padding: 0px;
  text-align: left;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -25px;
  margin-top: -25px;
}

.preloader span {
  position: absolute;
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: var(--tp-theme-1);
  -webkit-animation: preloader 1.3s linear infinite;
  animation: preloader 1.3s linear infinite;
}

.preloader span:last-child {
  animation-delay: -0.9s;
  -webkit-animation-delay: -0.9s;
}

@keyframes preloader {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
@-webkit-keyframes preloader {
  0% {
    -webkit-transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1, 1);
    opacity: 0;
  }
}
.clear {
  clear: both; }

::-moz-selection {
  background: #00b0ff;
  color: #fff;
  text-shadow: none; }

::selection {
  background: #00b0ff;
  color: #fff;
  text-shadow: none; }

.no-mar {
  margin: 0 !important; }

.no-pad {
  padding: 0 !important; }

div#preloader {
  background: #fff url(../img/loader.gif) no-repeat scroll center center;
  height: 100%;
  left: 0;
  overflow: visible;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99999; }

header.navbar-fixed-top {
  animation-duration: 0.8s;
  animation-name: fadeInDown;
  animation-timing-function: ease-in-out;
  box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.75);
  left: 0;
  position: fixed !important;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 999; }

.mar-bot-50 {
  margin-bottom: 50px; }

.mar-bot-40 {
  margin-bottom: 40px; }

.mar-bot-35 {
  margin-bottom: 35px; }

.mar-bot-30 {
  margin-bottom: 30px; }

.mar-top-30 {
  margin-top: 30px; }

.mar-top-40 {
  margin-top: 40px !important; }

.mar-top--40 {
  margin-top: -40px !important; }

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

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

.mar-top-55 {
  margin-top: 55px; }

.mar-top-108 {
  margin-top: 108px; }

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

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

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

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

*:focus {
  outline: 0; }

html {
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased; }

body {
  background: #fff;
  font-weight: normal;
  font-size: 15px;
  letter-spacing: 1.5px;
  color: #717484;
  line-height: 30px;
  -webkit-font-smoothing: antialiased;
  /* Fix for webkit rendering */
  -webkit-text-size-adjust: 100%; }

img {
  max-width: 100%;
  height: auto; }

button,
input,
textarea {
  letter-spacing: 1px; }

.section-padding {
  position: relative;
  padding: 60px 0px; }

.pad-top-120 {
  padding-top: 120px; }

.pad-bot-120 {
  padding-bottom: 120px; }

.pad-top-100 {
  padding-top: 100px; }

.pad-bot-100 {
  padding-bottom: 100px; }

/* 
Table Of Contents
=========================
- Default Typography
- Custom Typography
=========================
*/
/* 
--------------------------
- Default Typography
--------------------------
*/
body {
  font-family: "Nunito", sans-serif; }

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #000;
  letter-spacing: 1.5px; }

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  font-weight: inherit;
  font-family: "Poppins", sans-serif; }

h1 {
  font-size: 36px;
  line-height: 70px;
  letter-spacing: 1px;
  margin-bottom: 0px; }

h2 {
  font-size: 22px;
  line-height: 24px;
  margin-bottom: 0px; }

h3 {
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 0px; }

h4 {
  font-size: 20px;
  line-height: 27px; }

h5 {
  font-size: 16px;
  line-height: 24px; }

h6 {
  font-size: 14px;
  line-height: 24px; }

p {
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0;
  line-height: 28px;
  margin: 0; }

p img {
  margin: 0; }

span {
  font-family: "Nunito", sans-serif; }

/* em and strong */
em {
  font: 15px/30px; }

strong,
b {
  font: 15px/30px; }

small {
  font-size: 11px;
  line-height: inherit; }

/*  blockquotes */
blockquote {
  border-left: 0 none;
  font-family: "Nunito", sans-serif;
  margin: 10px 0;
  padding-left: 40px;
  position: relative; }
  blockquote:before {
    color: #717484;
    content: "´äì";
    font-family: FontAwesome;
    font-size: 36px;
    left: 20px;
    line-height: 0;
    margin: 0;
    opacity: 0.5;
    position: absolute;
    top: 20px; }
  blockquote p {
    font-style: italic;
    padding: 0;
    font-size: 18px;
    line-height: 36px; }
  blockquote cite {
    display: block;
    font-size: 12px;
    font-style: normal;
    line-height: 18px; }
    blockquote cite a,
    blockquote cite a:visited {
      color: #8B9798;
      border: none; }
    blockquote cite:before {
      content: "\2014 \0020"; }

/* abbreviations */
abbr {
  color: #444;
  font-weight: 700;
  font-variant: small-caps;
  text-transform: lowercase;
  letter-spacing: .6px; }
  abbr:hover {
    cursor: help; }

/* links */
a,
a:visited {
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-size: 12px;
  color: #111;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  outline: 0; }

a:hover, a:active {
  color: #00b0ff;
  text-decoration: none;
  outline: 0; }
a:focus {
  text-decoration: none;
  outline: 0; }

p a,
p a:visited {
  line-height: inherit;
  outline: 0; }

a.active-page {
  color: #e6ae48 !important; }

i[class^="flaticon-"]:before {
  font-size: inherit;
  margin: 0; }

/* list */
ul,
ol {
  margin-bottom: 0px;
  margin-top: 0px; }

ul {
  margin: 0; }

ol {
  list-style: decimal; }

ol,
ul.square,
ul.circle,
ul.disc {
  margin-left: 0px; }

ul.square {
  list-style: square outside; }

ul.circle {
  list-style: circle outside; }

ul.disc {
  list-style: disc outside; }

ul ul,
ul ol,
ol ol,
ol ul {
  margin: 0; }

ul ul li,
ul ol li,
ol ol li,
ol ul li {
  margin-bottom: 0px; }

li {
  line-height: 18px;
  margin-bottom: 0px; }

/* definition list */
dl {
  margin: 12px 0; }

dt {
  margin: 0;
  color: #11ABB0; }

dd {
  margin: 0 0 0 20px; }

.section-title {
  position: relative;
  max-width: 600px;
  text-align: center;
  margin: 25px auto;
  padding: 25px 0px; }
  .section-title h3 {
    font-size: 36px;
    color: #4d5375;
    letter-spacing: 0px;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 40px; }
    @media (max-width: 991px) {
      .section-title h3 {
        font-size: 24px;
        margin-bottom: 5px; } }
  .section-title p {
    font-size: 16px;
    color: #707383;
    line-height: 22px;
    font-weight: 600; }

.section-text {
  position: relative; }
.section-text .st-title {
    font-size: 54px;
    letter-spacing: 0px;
    font-weight: 900;
    margin-bottom: 2px;
    display: inline-block;
    color: #000000;
}
  .section-text h3 {
    font-size: 24px;
    color: #4d5375;
    letter-spacing: 0px;
    font-weight: 600;
    line-height: 38px;
    margin-bottom: 30px; }
  .section-text p {
    font-size: 16px;
    letter-spacing: 0px;
    color: #717484;
    line-height: 26px;
    margin-bottom: 30px; }
    @media (max-width: 991px) {
      .section-text p {
        font-size: 14px;
        line-height: 22px; } }
  .section-text .section-title {
    text-align: left;
    margin: 0 auto;
    padding-top: 0px; }
    @media (max-width: 767px) {
      .section-text .section-title {
        text-align: center; } }
    .section-text .section-title h3 {
      font-size: 36px;
      font-weight: 500;
      line-height: 48px;
      margin-bottom: 0px; }
      @media (max-width: 991px) {
        .section-text .section-title h3 {
          font-size: 24px;
          margin-bottom: 5px;
          line-height: 34px; } }

.section-img {
  position: relative; }

.section-btn {
  position: relative; }
  .section-btn a {
    margin-right: 25px; }
    @media (max-width: 991px) {
      .section-btn a {
        margin-right: 15px;
        margin-bottom: 15px; } }
  .section-btn a:last-child {
    margin-right: 0px; }

.breadcrumb-area {
	position: relative;
	background-image: url(../img/bg/hero-bg-1.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 64px 0px 40px;
	overflow: hidden;
	text-align: center;
}
  @media (max-width: 991px) {
    .breadcrumb-area {
      padding: 80px; } }
  .breadcrumb-area:before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    opacity: .90; }
  .breadcrumb-area:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 0px;
    bottom: 0;
    left: 0;
    background-color: #fff;
    z-index: 0; }
  .breadcrumb-area .page-title {
    position: relative;
    margin: 25px auto;
    padding: 12px 0px; }
.breadcrumb-area .page-title h3 {
	font-size: 50px;
	letter-spacing: 0px;
	color: #fff;
	font-weight: 600;
	/* height: 48px; */
	padding-bottom: 20px;
}
.breadcrumb-area .page-title p {
	font-size: 28px;
	letter-spacing: 0px;
	color: #fff;
	font-weight: 600;
}
      @media (max-width: 991px) {
        .breadcrumb-area .page-title h3 {
          font-size: 36px;
          height: auto;
          line-height: 44px; } }
      @media (max-width: 479px) {
        .breadcrumb-area .page-title h3 {
          font-size: 20px;
          line-height: 28px; } }

/* ------Button Styles CSS------ */
.btn-style-1 {
  color: #4d5375 !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  letter-spacing: 0px;
  border: 1px solid #ff6c57;
  padding: 10px 30px;
  border-radius: 25px;
  display: inline-block; }
  .btn-style-1:hover {
    color: #fff !important;
    border: 1px solid #ff6c57 !important;
    box-shadow: 0px 0px 60px 0px rgba(150, 17, 17, 0.3); }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .btn-style-1 {
      padding: 5px 18px;
      font-size: 12px !important; } }
  @media (max-width: 767px) {
    .btn-style-1 {
      font-size: 12px !important;
      padding: 2px 20px; } }

.btn-style-1_b {
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  letter-spacing: 0px;
  border: none;
  padding: 10px 30px;
  border-radius: 25px;
  display: inline-block; }
  .btn-style-1_b:hover {
    box-shadow: 0px 0px 60px 0px rgba(150, 17, 17, 0.3); }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .btn-style-1_b {
      padding: 5px 18px;
      font-size: 12px !important; } }
  @media (max-width: 767px) {
    .btn-style-1_b {
      font-size: 12px !important;
      padding: 2px 20px; } }

.btn-style-1_c {
  position: relative;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  letter-spacing: 0px;
  border: none;
  padding: 10px 30px;
  border-radius: 5px;
  display: inline-block;
  background-color: #4d5375;
  overflow: hidden;
  z-index: 1; }
  .btn-style-1_c:before {
    position: absolute;
    content: '';
    height: 0%;
    width: 0%;
    top: 50%;
    left: 50%;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    background-color: #ff0997;
    z-index: -1; }
  .btn-style-1_c:hover {
    box-shadow: 0px 0px 60px 0px rgba(150, 17, 17, 0.3); }
    .btn-style-1_c:hover:before {
      position: absolute;
      content: '';
      height: 100%;
      width: 100%;
      top: 0;
      left: 0; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .btn-style-1_c {
      padding: 5px 18px;
      font-size: 12px !important; } }
  @media (max-width: 767px) {
    .btn-style-1_c {
      font-size: 12px !important;
      padding: 2px 20px; } }

.btn-style-2 {
  position: relative;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  letter-spacing: 0px;
  border: none;
  padding: 10px 30px;
  border-radius: 5px;
  display: inline-block;
  background-color: #ff6c57;
  overflow: hidden;
  z-index: 1; }
  .btn-style-2:before {
    position: absolute;
    content: '';
    height: 0%;
    width: 0%;
    top: 50%;
    left: 50%;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    background-color: #ff0997;
    z-index: -1; }
  .btn-style-2:hover {
    box-shadow: 0px 0px 60px 0px rgba(150, 17, 17, 0.3); }
    .btn-style-2:hover:before {
      position: absolute;
      content: '';
      height: 100%;
      width: 100%;
      top: 0;
      left: 0; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .btn-style-2 {
      padding: 5px 18px;
      font-size: 12px !important; } }
  @media (max-width: 767px) {
    .btn-style-2 {
      font-size: 12px !important;
      padding: 2px 20px; } }

/* ------Button Styles CSS END------ */
/*----------- Default Gradient & Transitions ----------- */
.breadcrumb-area:before, .btn-style-1:hover, .btn-style-1_b, .btn-style-1_c:before, .btn-style-2:before, .Saased-Header .main-menu nav > ul li a.sn-focused, .Saased-Header .main-menu nav > ul li a.sn-focused2, header.header-area.navbar-fixed-top, .heroV1:before, .heroV3:before, .heroV4:before, .heroV8:before, .heroV9:before, .heroV10:before, .heroV11:before, .hero-offer-form form button, ul.sponsor-logo-list li:before, .f-single-icon, .hhf-single:before, .fun-fact-area:before, .counter-up-wrapper table tr td:before, .fun-fact3-area:before, .testimonial-carousel .owl-nav [class*=owl-], .testimonial-carousel .owl-nav [class*=owl-]:hover, .pt-filter-btn.active, .single-pricing.focused .s-pricing-icon, .single-pricing.focused .spricing-info a, .p8s, .single-services:before, form.nl-form button {
  background-image: -moz-linear-gradient(-49deg, #fc6a08 0%, #ff0997 100%);
  background-image:  linear-gradient(90deg, rgba(74, 240, 71, 1), rgba(54, 145, 29, 1));
  background-image: -ms-linear-gradient(-49deg, #fc6a08 0%, #ff0997 100%); }

/*----------- Default Gradient END ----------- */
/* =========== Theme default CSS END =========== */
/* -------- Header V1 -------- */
.header-area {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }

.Saased-Header {
  position: fixed;
  width: 100%;
  z-index: 999;
  left: 0;
  top: 0;
  padding: 15px 0px; }
.Saased-Header .main-menu nav > ul li a {
	font-size: 17px;
	letter-spacing: 0px;
	font-weight: 500;
	color: #fff;
}
.Saased-Header .main-menu nav > ul li a.sn-focused {
    border: 2px solid #ffffff;
    padding: 8px 10px;
    border-radius: 25px;
    background: #fff;
    color: #000000;
}
    .Saased-Header .main-menu nav > ul li a.sn-focused:hover {
      border-color: #ff6c57;
      background-color: #ff6c57;
      box-shadow: 0px 0px 60px 0px rgba(150, 17, 17, 0.3); }
  .Saased-Header .main-menu nav > ul li a.sn-focused2 {
    border: 2px solid #ff6c57;
    padding: 12px 25px;
    border-radius: 5px; }
    .Saased-Header .main-menu nav > ul li a.sn-focused2:hover {
      border-color: #ff6c57;
      background-color: #ff6c57;
      box-shadow: 0px 0px 60px 0px rgba(150, 17, 17, 0.3); }
  @media (max-width: 1023px) {
    .Saased-Header .logo {
      padding: 8px; }
      .Saased-Header .logo img {
        height: 40px; } }

/* -------- Header  END -------- */
/* -------- Header V2 -------- */
.header_2 .main-menu nav > ul li a {
  color: #4d5375; }
.header_2 .main-menu nav > ul li a.sn-focused {
  color: #fff; }
.header_2 .main-menu nav > ul .menu-item-has-children.has-submenu > ul.sub-menu li a {
  color: #fff; }

.header_2.navbar-fixed-top .main-menu nav > ul li a {
  color: #fff; }

/* -------- Header END -------- */
/* -------- Hero 1  -------- */
.hero-area {
    position: relative;
    background-image: url(../img/bg/hero-bg-1.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 150px 0px;
    overflow: hidden;
}
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-area {
      padding: 125px 0px; } }
  @media (max-width: 767px) {
    .hero-area {
      padding: 100px 0px; } }
  .hero-area .hero-btn a:first-child {
    margin-right: 25px; }

.heroV1:before {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  opacity: .90; }
.heroV1:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 65px;
  bottom: 0;
  left: 0;
  background-color: #fff;
  z-index: 0; }
  @media (max-width: 767px) {
    .heroV1:after {
      display: none; } }
.heroV1 .btn-style-1 {
  color: #fff !important;
  border: 1px solid #fff; }

@media (max-width: 767px) {
  .hero-text {
    padding: 15px; } }
.hero-text h2 {
    font-size: 80px;
    color: #fff;
    line-height: 90px;
    font-weight: 900;
    letter-spacing: 0px;
}
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-text h2 {
      font-size: 30px;
      line-height: 36px; } }
  @media (max-width: 767px) {
    .hero-text h2 {
      font-size: 30px;
      line-height: 40px; } }
.hero-text p {
	color: #fff;
	line-height: 26px;
	font-weight: 500;
	margin: 15px auto;
}
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-text p {
      font-size: 14px;
      line-height: 20px;
      margin: 12px auto; } }
  @media (max-width: 767px) {
    .hero-text p {
      font-size: 14px;
      line-height: 22px;
      margin: 15px auto; } }

.hero-img {
  position: relative; }

.heroImg-s1 {
  position: absolute;
  right: -120px;
  top: -200px;
  z-index: 1; }
  @media (max-width: 767px) {
    .heroImg-s1 {
      display: none; } }

/* -------- Hero END -------- */
/* -------- Hero 2  -------- */
.heroV2 {
  background-image: none;
  background-color: #f5f7ff;
  overflow: hidden;
  z-index: 1; }
  .heroV2:before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    left: -25%;
    bottom: -70%;
    background-color: #fff;
    transform: rotate(25deg);
    z-index: -1; }
  .heroV2:after {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    right: -25%;
    bottom: -70%;
    background-color: #fff;
    transform: rotate(-25deg);
    z-index: -1; }

.heroV2 .hero-text {
  text-align: center;
  max-width: 820px;
  margin: 25px auto; }
  @media (max-width: 767px) {
    .heroV2 .hero-text {
      padding: 15px; } }

.heroV2 .hero-text h2 {
  color: #4d5375; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .heroV2 .hero-text h2 {
      font-size: 30px;
      line-height: 36px; } }
  @media (max-width: 767px) {
    .heroV2 .hero-text h2 {
      font-size: 30px;
      line-height: 40px; } }

.heroV2 .hero-text p {
  color: #707383; }

.hs2-mini-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%; }

.hs2_1 {
  top: 0;
  left: 0; }

.hs2-mini-img img {
  position: absolute;
  box-shadow: 0px 0px 50px 0px rgba(77, 83, 117, 0.29);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .hs2-mini-img img {
      max-width: 220px; } }
  @media (max-width: 767px) {
    .hs2-mini-img img {
      display: none; } }

.hs2_2 {
  left: 25%;
  top: 25%; }

.hs2_3 {
  right: 0;
  top: 40%; }

.hs2-mini-img img:hover {
  transform: scale(1.05); }

/* -------- Hero END -------- */
/* -------- Hero 3  -------- */

.header-area .container {
	max-width: 1290px;
}


.heroV3 {
	position: relative;
	/* background-image: url(../img/bg/hero-bg-5.jpg); */
	padding-top: 0px;
}
  

  .heroV3:before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    opacity: .98; 
	background: linear-gradient(270deg,#ff6ec4,#7873f5,#4ADEDE,#fc6767,#ffb347,#ff6ec4);
      background-size: 1200% 1200%;
      animation: gradientBG 15s ease infinite;
	
	}
	    @keyframes gradientBG {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

  .heroV3:after {
    position: absolute;
    content: '';
    height: 225px;
    width: 100%;
    background-image: url(../img/bg/hero3_1-shape-bg.png);
    background-size: 100% 100%;
    bottom: 0;
    left: 0; }
    @media (max-width: 767px) {
      .heroV3:after {
        display: none; } }
  .heroV3 .hero-text {
    margin-top: 100px; }
    @media (max-width: 767px) {
      .heroV3 .hero-text {
        padding: 15px;
        margin-top: 0px;
        margin-bottom: 0px; } }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .heroV3 .hero-text {
        margin-top: 35px; } }
  .heroV3 .btn-style-1 {
    color: #fff !important;
    border: 1px solid #fff; }
  .heroV3 .heroImg-s3 img.himgs-3 {
    position: absolute;
    top: 180px;
    right: -300px;
    z-index: -1;
    transform: scale(1.65); }
.heroV3 .heroImg-s3 {
	z-index: 1;
	position: relative;
	top: 120px;
}
    .heroV3 .heroImg-s3:hover .hm_img {
      margin-left: 200px; }
    .heroV3 .heroImg-s3 img {
      z-index: 1;
      transition: 1s ease; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .heroV3 .heroImg-s3 {
        text-align: center; }
        .heroV3 .heroImg-s3 img {
          max-width: 165px; }
        .heroV3 .heroImg-s3:hover .hm_img {
          margin-left: 100px; } }
    @media (max-width: 767px) {
      .heroV3 .heroImg-s3 {
        display: none; } }

/* -------- Hero Area END -------- */
/* -------- Hero 4  -------- */
.heroV4 {
  position: relative;
  background-image: url(../img/bg/hero-7.png);
  padding-top: 120px;
  padding-bottom: 0px; }
  .heroV4:before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    opacity: .90; }
  .heroV4:after {
    position: absolute;
    content: '';
    height: 225px;
    width: 100%;
    background-image: url(../img/bg/hero3_1-shape-bg.png);
    background-size: 100% 100%;
    bottom: 0;
    left: 0; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .heroV4:after {
        display: none; } }
    @media (max-width: 767px) {
      .heroV4:after {
        display: none; } }
  .heroV4 .hero-text {
    margin-top: 75px; }
    @media (max-width: 767px) {
      .heroV4 .hero-text {
        padding: 15px;
        margin-top: 0px; } }
  @media (max-width: 767px) {
    .heroV4 .heroImg-s3 {
      display: none; } }
  .heroV4 .btn-style-1 {
    color: #fff !important;
    border: 1px solid #fff; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .heroV4 .hm_img6 {
      max-width: 200px;
      margin-bottom: 40px; } }

.hm_img6 {
  max-width: 350px;
  width: 100%;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }
  .hm_img6:hover {
    transform: scale(1.02); }

/* -------- Hero END -------- */
/* -------- Hero 5  -------- */
.heroV8 {
  background-image: url(../img/bg/hero-bg-8.jpg); }
  .heroV8:before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    opacity: .90; }
  .heroV8:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 65px;
    bottom: 0;
    left: 0;
    background-color: #fff;
    z-index: 0; }
    @media (max-width: 767px) {
      .heroV8:after {
        display: none; } }
  @media (max-width: 767px) {
    .heroV8 .hero-text {
      text-align: center; } }
  .heroV8 .btn-style-2 {
    background: transparent;
    border: 1px solid #fff;
    margin-right: 15px; }
    .heroV8 .btn-style-2:hover {
      border-color: transparent; }
  .heroV8 .heroImg8 img {
    -webkit-animation: pulse 3s linear infinite;
    -moz-animation: pulse 3s linear infinite;
    animation: pulse 3s linear infinite; }
    @media (max-width: 767px) {
      .heroV8 .heroImg8 img {
        max-width: 300px;
        margin: 25px auto; } }
  @media (max-width: 767px) {
    .heroV8 .heroImg8 {
      text-align: center; } }

/* -------- Hero END -------- */
/* -------- Hero 6 -------- */
.heroV9 {
  background-image: url(../img/bg/hero-9.png);
  padding-bottom: 300px;
  max-height: 840px;
  overflow: hidden; }
  .heroV9:before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    opacity: .75; }
  .heroV9:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 65px;
    bottom: 0;
    left: 0;
    background-color: #fff;
    z-index: 0; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .heroV9 {
      padding: 160px 0px 220px; } }
  .heroV9 .btn-style-1 {
    color: #fff !important;
    border: 1px solid #fff; }
  @media (max-width: 767px) {
    .heroV9 .hero-text {
      text-align: center; } }
  .heroV9 .heroImg9 img {
    margin-left: 65px;
    margin-right: -250px;
    margin-bottom: -180px;
    margin-top: -65px;
    transform: scale(1.2);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .heroV9 .heroImg9 img {
        margin-top: 5px; } }
    @media (max-width: 767px) {
      .heroV9 .heroImg9 img {
        display: none; } }
  .heroV9 .heroImg9:hover img {
    margin-top: -5px;
    margin-bottom: -220px; }

/* -------- Hero END -------- */
/* -------- Hero 7  -------- */
.heroV10 {
  background-image: none; }
  .heroV10:before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    opacity: .90; }
  .heroV10:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 65px;
    bottom: 0;
    left: 0;
    background-color: #fff;
    z-index: 0; }
  .heroV10 .btn-style-1 {
    color: #fff !important;
    border: 1px solid #fff; }
  .heroV10 .hero-text {
    margin-top: 25px; }
    @media (max-width: 767px) {
      .heroV10 .hero-text {
        text-align: center; } }

.heroImg-s10 {
  margin-top: -80px;
  margin-right: 40px; }
  .heroImg-s10 img {
    width: 100%; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .heroImg-s10 {
      margin-top: 0px; } }
  @media (max-width: 767px) {
    .heroImg-s10 {
      display: none; } }

/* -------- Hero END -------- */
/* -------- Hero 8  -------- */
.heroV11 {
  background-image: none;
  padding-bottom: 60px; }
  .heroV11:before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    opacity: .90; }
  .heroV11:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 65px;
    bottom: 0;
    left: 0;
    background-color: #fff;
    z-index: 0; }
    @media (max-width: 767px) {
      .heroV11:after {
        display: none; } }
  .heroV11 .btn-style-1 {
    color: #fff !important;
    border: 1px solid #fff; }
  .heroV11 .hero-text {
    text-align: center;
    max-width: 850px;
    margin: 25px auto; }
    @media (max-width: 767px) {
      .heroV11 .hero-text {
        padding: 15px; } }
    .heroV11 .hero-text h2 {
      line-height: 60px;
      font-size: 46px;
      font-weight: 400; }
      @media only screen and (min-width: 768px) and (max-width: 991px) {
        .heroV11 .hero-text h2 {
          font-size: 30px;
          line-height: 36px; } }
      @media (max-width: 767px) {
        .heroV11 .hero-text h2 {
          font-size: 30px;
          line-height: 40px; } }
  .heroV11 .hero-img {
    max-width: 992px;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
    margin-top: 25px; }
    @media (max-width: 767px) {
      .heroV11 .hero-img {
        display: none; } }
  .heroV11:after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    height: 360px;
    width: 100%;
    background: #fff;
    z-index: 0; }

.hero-offer-form {
  position: relative;
  text-align: center; }
  .hero-offer-form form {
    max-width: 570px;
    width: 100%;
    margin: 20px auto 50px;
    position: relative; }
    .hero-offer-form form input {
      width: 100%;
      height: 60px;
      background-color: #fff;
      border: none;
      border-radius: 5px;
      padding: 10px 20px;
      font-size: 16px;
      letter-spacing: 0px;
      color: #000; }
    .hero-offer-form form button {
      position: absolute;
      top: 0;
      right: 0;
      height: 50px;
      margin: 5px;
      border-radius: 5px;
      border: none;
      font-size: 18px;
      letter-spacing: 0px;
      font-weight: 600;
      color: #fff;
      cursor: pointer;
      min-width: 140px;
      -webkit-transition: all 0.5s ease;
      -moz-transition: all 0.5s ease;
      -ms-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;
      transition: all 0.5s ease; }
      .hero-offer-form form button:hover {
        box-shadow: 0px 0px 60px 0px rgba(150, 17, 17, 0.3); }

/* -------- Hero END -------- */
/* -------- 2.3 Sponsor  -------- */
.sponsor-area {
  position: relative; }

.sponsor-wrapper {
  position: relative; }

ul.sponsor-logo-list {
  position: relative;
  padding: 0;
  list-style-type: none;
  text-align: center;
  margin: 25px auto; }
  ul.sponsor-logo-list li {
	position: relative;
	display: inline-block;
	width: 30%;
	max-width: 250px;
	margin: 5px 5px 5px 5px;
	padding: 20px;
	border-radius: 15px;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      ul.sponsor-logo-list li {
        width: 25%;
        margin: -10px; } }
    @media (max-width: 767px) {
      ul.sponsor-logo-list li {
        width: 50%;
        margin: -10px; } }
    ul.sponsor-logo-list li:before {
      position: absolute;
      content: '';
      height: 100%;
      width: 100%;
      top: 0;
      left: 0;
      border-radius: 15px;
      -webkit-transition: all 0.5s ease;
      -moz-transition: all 0.5s ease;
      -ms-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;
      transition: all 0.5s ease;
      opacity: 0;
      z-index: -1; }
    ul.sponsor-logo-list li:hover {
      box-shadow: 0px 0px 20px 0px rgba(14, 0, 75, 0.35); }
      ul.sponsor-logo-list li:hover:before {
        opacity: 1; }
    ul.sponsor-logo-list li a img {
      height: auto;
      width: 100%; }
	  .section-title-heading h3 {
	font-size: 44px;
	line-height: 50px;
}
.section-title-heading {
	margin-bottom: 25px;
}



/* -------- Sponsor  END -------- */
/* -------- 3.3 Features  -------- */
.features-area {
  position: relative; }

.features-single {
  position: relative;
  max-width: 350px;
  margin: 15px auto;
  background-color: #fff;
  border-width: 1px;
  border: 1px solid #ebebeb;
  border-radius: 15px;
  padding: 25px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .features-single {
      text-align: center; } }

.features-single:hover {
  border-color: #fff;
  box-shadow: 0px 0px 25px 0px rgba(77, 83, 117, 0.1); }
  .features-single:hover .f-single-icon {
    transform: rotate(360deg); }

.f-single-icon {
  margin-top: 10px;
  margin-bottom: 10px;
  width: 75px;
  height: 75px;
  text-align: center;
  display: inline-block;
  padding-top: 10px;
  border-radius: 50%;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -ms-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease; }

.f-single-icon i {
  font-size: 40px;
  color: #fff;
  line-height: initial; }

.f-single-text h4 {
  color: #4d5375;
  font-size: 24px;
  letter-spacing: 0px;
  font-weight: 500;
  margin: 20px auto; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .f-single-text h4 {
      font-size: 16px;
      line-height: 24px;
      margin: 10px auto; } }

.f-single-text p {
  color: #707383;
  font-size: 16px;
  line-height: 22px;
  margin: 10px auto; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .f-single-text p {
      font-size: 14px;
      line-height: 18px; } }

/* -------- Features END -------- */
/* -------- 4.3 Features  -------- */
.fs_V2 {
  border-color: #fff; }
  .fs_V2 .f-single-icon {
    border-radius: 10px; }
  .fs_V2:hover .f-single-icon {
    transform: scaleX(-1); }

/* -------- Features Area END -------- */
/* -------- 7.3 Features  -------- */
.features9 {
  margin-top: -200px; }
  .features9 .fs-V8 {
    text-align: center; }
    .features9 .fs-V8:hover {
      border-color: transparent; }

/* -------- Features END -------- */
/* -------- 6.3 Features  -------- */
.fs-V8 {
  border-radius: 15px;
  box-shadow: 0px 0px 25px 0px rgba(51, 57, 89, 0.1);
  border-color: transparent; }
  .fs-V8:hover {
    background-color: #ff266d;
    border-color: #fff; }
    .fs-V8:hover h4,
    .fs-V8:hover p {
      color: #fff; }
    .fs-V8:hover .f-single-icon {
      background: #ff108d;
      box-shadow: 0px 0px 25px 0px rgba(51, 57, 89, 0.1);
      transform: scaleX(-1); }
      .fs-V8:hover .f-single-icon i {
        color: #f5f6f7; }
  .fs-V8 .f-single-icon {
    background: #f5f6f7; }
    .fs-V8 .f-single-icon i {
      color: #ff108d; }

/* -------- Features END -------- */
/* -------- 5.3 Features  -------- */
.fs-V6 {
  padding-left: 88px;
  border-color: transparent;
  padding-right: 10px; }
  .fs-V6 .f-single-icon {
    position: absolute;
    left: 0;
    top: 10px;
    background: #4d5375;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }
  .fs-V6 .f-single-text h4 {
    font-size: 20px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    margin: 15px auto; }
  .fs-V6:hover {
    box-shadow: none; }
    .fs-V6:hover h4 {
      color: #fc6a08; }
    .fs-V6:hover .f-single-icon {
      background-color: #fd5527; }

/* -------- Features END -------- */
/* -------- 2.4 Details About  -------- */
.details-about-area {
  position: relative; }
  .details-about-area .section-title {
    padding-bottom: 0px;
    margin-bottom: 15px; }
  .details-about-area .section-text {
    margin-bottom: 100px;
    padding-top: 50px; }
  .details-about-area .section-img {
    margin-bottom: 100px; }

.daa-top {
  position: relative;
  max-width: 767px;
  margin: 0 auto;
  text-align: center; }
  .daa-top h3 {
    position: absolute;
    font-size: 30px;
    letter-spacing: 0px;
    color: #fff;
    bottom: 70px;
    width: 100%;
    font-weight: 500;
    line-height: 36px; }

.made-easy-tab-btn {
  position: relative;
  text-align: center;
  margin-bottom: 60px; }
  .made-easy-tab-btn ul.nav-tabs {
    position: relative;
    display: inline-block;
    flex-wrap: unset;
    -ms-flex-wrap: unset;
    border-bottom: 1px solid #cbcbcb; }
    .made-easy-tab-btn ul.nav-tabs li {
      display: inline-block; }
      .made-easy-tab-btn ul.nav-tabs li a.nav-link {
        border: none;
        font-size: 16px;
        letter-spacing: 0px;
        color: #4d5375; }
      .made-easy-tab-btn ul.nav-tabs li a.nav-link.active {
        border-bottom: 1px solid #ff0997; }

.met-img {
  position: relative;
  text-align: center; }
  .met-img img {
    box-shadow: 0px 0px 12px -5px rgba(150, 17, 17, 0.3);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }
  .met-img .mm-1 {
    position: absolute;
    right: 0;
    top: 80px; }
  .met-img .mm-2 {
    position: absolute;
    bottom: 65px;
    left: 0; }
  .met-img:hover .mm-1 {
    right: 10px; }
  .met-img:hover .mm-2 {
    left: 10px; }

.made-easy-tab-content .section-text {
  padding-top: 50px; }

.sectionImgStyle-1 {
  position: relative;
  text-align: center;
  overflow: hidden;
  height: 520px;
  max-width: 520px;
  margin: 0 auto;
  border-top-left-radius: 60% 60%;
  border-top-right-radius: 50% 65%;
  border-bottom-right-radius: 50% 80%;
  border-bottom-left-radius: 100% 100%; }

.sIs-1-wrapper {
  position: relative;
  background-color: #f2faff;
  height: 100%;
  width: 100%;
  text-align: right;
  padding-right: 40px;
  padding-top: 10px; }
  .sIs-1-wrapper img {
    height: 550px; }

ul.sts-1-features {
  position: absolute;
  top: 80px;
  left: 0px;
  width: 100%;
  height: 100%;
  text-align: center;
  list-style-type: none;
  padding: 0; }
  ul.sts-1-features li {
    background-color: #fff;
    max-width: 280px;
    height: 75px;
    margin: 25px auto;
    text-align: left;
    letter-spacing: 0px;
    font-size: 24px;
    border-radius: 5px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    cursor: auto;
    color: #4d5375; }
    ul.sts-1-features li i {
      background-color: #f2faff;
      padding: 15px;
      border-radius: 50%;
      margin-top: 11px;
      margin-left: 12px;
      margin-right: 12px;
      -webkit-transition: all 0.5s ease;
      -moz-transition: all 0.5s ease;
      -ms-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;
      transition: all 0.5s ease; }
    ul.sts-1-features li:hover {
      background-color: #ff6c57;
      box-shadow: 0px 0px 24px 0px rgba(115, 123, 186, 0.26);
      color: #fff;
      transform: scale(1.1); }
      ul.sts-1-features li:hover i {
        background-color: #ff0997;
        color: #fff; }

/* -------- Details About  END -------- */
/* -------- 3.4 About  -------- */
.about-area2 {
  position: relative;
  overflow: hidden; }

.about2-img {
  position: relative;
  padding-top: 50px;
  padding-bottom: 180px;
  margin-bottom: 40px; }
  @media (max-width: 767px) {
    .about2-img {
      padding-bottom: 40px;
      text-align: center; } }
  .about2-img:before {
    position: absolute;
    content: '';
    height: 100%;
    width: 120%;
    top: 0;
    left: -20%;
    background-image: url(../img/bg/section-img-bg-2-1.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    z-index: -1; }

.a2mini-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .a2mini-img {
      display: none; } }
  @media (max-width: 767px) {
    .a2mini-img {
      display: none; } }

.a2mini-img img {
  position: absolute;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }
  .a2mini-img img:hover {
    transform: scale(1.03);
    margin-top: -30px;
    margin-bottom: 20px; }

.a2mi-1 {
  top: 120px;
  right: 25px; }

.a2mi-2 {
  bottom: 25px;
  right: -25px; }

.a2mi-3 {
  bottom: 100px;
  left: -85px; }

.about2-img img {
  box-shadow: 0px 0px 20px 0px rgba(77, 83, 117, 0.1); }

.about-area2 .section-text {
  padding: 50px; }

/* -------- About END -------- */
/* -------- 4.4 About  -------- */
.about-area3 {
    position: relative;
    overflow: hidden;
    padding: 0px 0px 80px;
}

.about3-img {
  position: relative;
  margin-right: 65px;
  margin-left: -65px;
  margin-top: 30px;
  transform: scale(1.25); }
  @media (max-width: 767px) {
    .about3-img {
      display: none; } }
  .about3-img .hs2-mini-img .a3_1 {
    left: 0px;
    top: 0px;
    max-width: 160px; }
  .about3-img .hs2-mini-img .a3_2 {
    right: 0px;
    bottom: 60px;
    max-width: 265px; }

ul.au-list {
  position: relative;
  padding: 0;
  list-style-type: none; }
  ul.au-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 30px; }
    ul.au-list li h5 {
      font-size: 18px;
      letter-spacing: 0px;
      font-weight: 400;
      line-height: 20px;
      margin-bottom: 10px; }
    ul.au-list li:before {
      position: absolute;
      content: '\f05d';
      font-family: fontAwesome;
      left: 0;
      top: 0;
      font-size: 25px;
      color: #fd443f; }

/* -------- About Area END -------- */
/* -------- 5.4 About  -------- */
.about6-img img {
  box-shadow: 0px 0px 20px 0px rgba(115, 123, 186, 0.15); }
.about6-img .a2mini-img img {
  position: absolute; }
  .about6-img .a2mini-img img:first-child {
    left: 0;
    top: -50px; }
  .about6-img .a2mini-img img:last-child {
    right: 0;
    bottom: 30px; }

.about6-img {
  text-align: center;
  margin: 40px auto; }
  .about6-img:before {
    position: absolute;
    content: '';
    height: 115%;
    width: 115%;
    left: -5%;
    top: -15%;
    background-image: url(../img/bg/about-shape-6.png);
    z-index: -1;
    background-size: 100% 100%; }

/* -------- About END -------- */
/*----------------------------------------*/
/*  10. About Page
/*----------------------------------------*/
.ip-section-content {
  position: relative;
  margin: 60px auto;
  padding: 25px 0px; }

.more-about-text {
  margin: 40px auto; }

.more-about-img {
  position: relative; }
  .more-about-img:hover img:nth-child(2) {
    transform: scaleX(-1); }
  .more-about-img img {
    border-radius: 10px; }
    .more-about-img img:first-child {
      max-width: 370px; }
      @media only screen and (min-width: 768px) and (max-width: 991px) {
        .more-about-img img:first-child {
          max-width: 320px; } }
      @media (max-width: 479px) {
        .more-about-img img:first-child {
          max-width: 320px; } }
    .more-about-img img:nth-child(2) {
      top: 40px;
      right: 0;
      position: absolute;
      transition: 1s ease; }
      @media only screen and (min-width: 768px) and (max-width: 991px) {
        .more-about-img img:nth-child(2) {
          max-width: 315px; } }

.grt-img img {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }
.grt-img .sIs-1-wrapper {
  padding-right: 0px;
  padding-top: 0px; }
  .grt-img .sIs-1-wrapper:hover img {
    transform: scale(1.1); }

.single-team {
  position: relative;
  max-width: 350px;
  margin: 25px auto; }
  .single-team:hover .st-info:before {
    opacity: 1; }
  .single-team:hover .st-info h4, .single-team:hover .st-info .st-d, .single-team:hover .st-info p {
    color: #fff; }
  .single-team .st-img {
    position: relative;
    max-width: 320px;
    margin-right: auto;
    margin-left: 0;
    border-radius: 5px; }
    .single-team .st-img img {
      width: 100%;
      border-radius: 5px; }
  .single-team .st-info {
    position: relative;
    max-width: 320px;
    margin-top: -40px;
    margin-left: auto;
    margin-right: 0;
    background-color: #f9f9f9;
    text-align: center;
    padding: 25px;
    border-radius: 5px;
    z-index: 1;
    overflow: hidden; }
    .single-team .st-info:before {
      position: absolute;
      content: '';
      height: 100%;
      width: 100%;
      left: 0;
      top: 0;
      opacity: 0;
      background-color: #ff118c;
      z-index: -1;
      -webkit-transition: all 0.5s ease;
      -moz-transition: all 0.5s ease;
      -ms-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;
      transition: all 0.5s ease; }
    .single-team .st-info h4 {
      font-size: 24px;
      letter-spacing: 0px;
      font-weight: 500;
      color: #4d5375; }
      @media only screen and (min-width: 768px) and (max-width: 991px) {
        .single-team .st-info h4 {
          font-size: 16px;
          line-height: 18px; } }
    .single-team .st-info .st-d {
      font-size: 16px;
      letter-spacing: 0px;
      color: #4d5375;
      font-weight: 500;
      display: block;
      line-height: 22px;
      margin-top: 5px; }
      @media only screen and (min-width: 768px) and (max-width: 991px) {
        .single-team .st-info .st-d {
          font-size: 14px;
          line-height: 18px; } }
    .single-team .st-info p {
      font-size: 16px;
      letter-spacing: 0px;
      color: #4d5375;
      line-height: 20px;
      margin: 12px auto; }
      @media only screen and (min-width: 768px) and (max-width: 991px) {
        .single-team .st-info p {
          font-size: 14px;
          line-height: 18px; } }

ul.sts-list {
  position: relative;
  padding: 0;
  list-style-type: none;
  padding-top: 5px; }
  ul.sts-list li {
    display: inline-block; }
    ul.sts-list li a {
      color: #4d5375;
      font-size: 14px;
      display: block;
      height: 34px;
      width: 34px;
      border-radius: 50%;
      border: 2px solid #e7e7e7;
      background-color: #fff;
      text-align: center;
      padding-top: 6px; }

/* =========== About Page END =========== */
/* -------- 3.5 How Help  -------- */
.how-help-area {
  position: relative;
  overflow: hidden; }

.how-help-area .section-text {
  margin-top: 160px; }
  @media (max-width: 767px) {
    .how-help-area .section-text {
      margin-top: 0px; } }
@media (max-width: 767px) {
  .how-help-area {
    text-align: center; } }

.how-help-features {
  position: relative;
  padding-top: 100px;
  padding-bottom: 10px;
  margin-bottom: 40px; }

.how-help-features:before {
  position: absolute;
  content: '';
  height: 100%;
  width: 145%;
  top: 0;
  left: -5%;
  background-image: url(../img/bg/section-img-bg-2-2.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: -1; }
  @media (max-width: 767px) {
    .how-help-features:before {
      display: none; } }

.hhf-single {
  position: relative;
  max-width: 245px;
  width: 100%;
  display: block;
  margin: 40px auto;
  padding: 50px 30px;
  background-color: #fff;
  border-radius: 10px;
  text-align: center;
  overflow: hidden;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -ms-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
  box-shadow: 0px 0px 50px 0px rgba(77, 83, 117, 0.05);
  z-index: 0; }
  .hhf-single:before {
    position: absolute;
    content: '';
    height: 0%;
    width: 0%;
    left: 50%;
    top: 50%;
    z-index: -1;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }
  .hhf-single:hover:before {
    height: 100%;
    width: 100%;
    left: 0;
    top: 0; }
  .hhf-single:hover .hhfs-icon {
    border-color: #fff; }
  .hhf-single:hover .hhfs-text h4 {
    color: #fff; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .hhf-single {
      padding: 25px 10px; } }
  @media (max-width: 767px) {
    .hhf-single {
      margin: 50px auto 2px !important; } }

.hhfs-icon {
  height: 80px;
  width: 80px;
  border: 12px solid #ffe6f4;
  border-radius: 50%;
  background-color: #ff6c57;
  margin: 0 auto;
  padding-top: 15px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }

.hhfs-icon i {
  color: #fff;
  font-size: 30px; }

.hhfs-text h4 {
  font-size: 24px;
  letter-spacing: 0px;
  font-weight: 500;
  padding-top: 20px;
  line-height: 30px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .hhfs-text h4 {
      font-size: 16px;
      line-height: 18px;
      padding-top: 10px; } }

/* -------- How Help END -------- */
/* -------- 6.5 Where Use Area  -------- */
.where-use-area {
  position: relative; }
  .where-use-area .section-text {
    margin-top: 100px; }

.wha-img {
  position: relative;
  padding-top: 50px;
  padding-bottom: 180px;
  margin-bottom: 40px;
  margin-right: 40px; }
  @media (max-width: 767px) {
    .wha-img {
      margin: 0 auto;
      text-align: center; } }
  .wha-img:before {
    position: absolute;
    content: '';
    height: 100%;
    top: 0;
    background-image: url("../img/bg/section-img-bg-5-3.png");
    left: -10%;
    width: 115%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    z-index: -1; }
  .wha-img img {
    box-shadow: 0px 0px 20px 0px rgba(77, 83, 117, 0.1); }

/* -------- Where Use Area END  -------- */
/* -------- 4.7 How It Works  -------- */
.how-it-works5 {
    position: relative;
    padding: 0px 0px 100px;
    background: #f4f4f4;
}
  .how-it-works5::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 418px;
    background-image: url(../img/videobg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
	
}
  @media (max-width: 767px) {
    .how-it-works5 {
      padding: 50px 0px; } }

.hiw-wrapper {
  position: relative;
  width: 100%; }
  @media only screen and (min-width: 992px) and (max-width: 1200px) {
    .hiw-wrapper {
      text-align: center; } }
  @media (max-width: 991px) {
    .hiw-wrapper {
      text-align: center; } }

.hiw-video {
    position: relative;
    display: inline-block;
    border-radius: 15px;
    overflow: hidden;
    z-index: 9;
}
  @media only screen and (min-width: 992px) and (max-width: 1200px) {
    .hiw-video {
      text-align: center; } }
  .hiw-video iframe {
    width: 600px;
    height: 600px;
    margin-bottom: -10px;
    border: none; }
    @media (max-width: 767px) {
      .hiw-video iframe {
        width: 320px;
        height: 220px;
        margin-left: auto;
        margin-right: auto; } }

.hiw-text {
    position: relative;
    float: right;
    max-width: 625px;
    margin-top: 70px;
    margin-left: -125px;
    z-index: 9;
    background-color: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0px 0px 30px 0px rgba(131, 136, 171, 0.15);
}
  @media only screen and (min-width: 992px) and (max-width: 1200px) {
    .hiw-text {
      margin-left: auto;
      margin-right: auto;
      float: unset; } }
  @media (max-width: 991px) {
    .hiw-text {
      float: unset;
      margin-left: auto;
      margin-right: auto; } }

/* -------- How It Works  -------- */
/* -------- 9.7 How It Work  -------- */
.hiw11 {
  padding-top: 120px;
  padding-bottom: 80px; }

/* -------- How It Work END -------- */
/* -------- 2.5 Fun Fact  -------- */
.fun-fact-area {
 position: relative;
    z-index: 1;
    /* padding-top: 200px; */
    /* margin-top: -110px; */
  
  }
  .fun-fact-area:after {
    position: absolute;
    content: '';
    height: 225px;
    width: 100%;
    background-image: url(../img/bg/hero3_1-shape-bg.png);
    background-size: 100% 100%;
    bottom: 0;
    left: 0;
}
.fun-fact-area {
	padding-bottom: 200px;
}


  .fun-fact-area:before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    opacity: .90; }
  .fun-fact-area .section-text {
    margin: 80px auto; }
    .fun-fact-area .section-text p {
      color: #fff; }
    .fun-fact-area .section-text .section-title h3 {
      color: #fff; }

@media (max-width: 767px) {
  .counter-up-wrapper {
    margin-bottom: 50px; } }
.counter-up-wrapper table {
  position: relative;
  text-align: center;
  border: 1px solid #ff6c57;
  margin-bottom: 0px; }
  .counter-up-wrapper table tr td {
    position: relative;
    width: 50%;
    border-color: #fff;
    padding: 0px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }
    @media (max-width: 479px) {
      .counter-up-wrapper table tr td {
        width: 100%;
        display: block; } }
    .counter-up-wrapper table tr td:before {
      position: absolute;
      content: '';
      height: 0;
      width: 0;
      left: 50%;
      top: 50%;
      opacity: 0;
      background-color: #ff6c57;
      -webkit-transition: all 0.5s ease;
      -moz-transition: all 0.5s ease;
      -ms-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;
      transition: all 0.5s ease; }
    .counter-up-wrapper table tr td:hover:before {
      left: 0;
      top: 0;
      height: 100%;
      width: 100%;
      opacity: 1; }

.single-counter-up {
	position: relative;
	max-width: 240px;
	margin: 25px auto;
	padding: 0px 0px;
}
  .single-counter-up:hover .scu-icon {
    transform: scaleX(-1); }

.scu-icon {
  padding: 5px 0px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }
  .scu-icon i {
    font-size: 50px;
    color: #fff;
    line-height: 50px; }
    @media (max-width: 991px) {
      .scu-icon i {
        font-size: 40px; } }

.scu-counter .counter-up {
  color: #fff;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0px;
  font-size: 46px;
  font-weight: 600;
  line-height: 50px;
  margin: 5px auto;
  display: block; }
.scu-counter p {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0px;
}
  @media (max-width: 991px) {
    .scu-counter p {
      font-size: 18px;
      line-height: 18px; } }

/* -------- Fun Fact  END -------- */
/* -------- 3.6 Fun Fact  -------- */
.fun-fact2-area {
  position: relative;
  background-color: #f5f8fd;
  padding: 50px 0px; }
  .fun-fact2-area .counter-up-wrapper table {
    border: none; }
    .fun-fact2-area .counter-up-wrapper table tr td {
      border-color: #dbe8ff; }
      .fun-fact2-area .counter-up-wrapper table tr td .scu-icon i {
        color: #ff6c57; }
      .fun-fact2-area .counter-up-wrapper table tr td .scu-counter .counter-up {
        color: #4d5375;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease; }
      .fun-fact2-area .counter-up-wrapper table tr td .scu-counter p {
        color: #4d5375;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease; }
      .fun-fact2-area .counter-up-wrapper table tr td:hover .scu-icon i {
        color: #fff; }
      .fun-fact2-area .counter-up-wrapper table tr td:hover .scu-counter .counter-up {
        color: #fff; }
      .fun-fact2-area .counter-up-wrapper table tr td:hover .scu-counter p {
        color: #fff; }
      @media (max-width: 479px) {
        .fun-fact2-area .counter-up-wrapper table tr td {
          border: none; } }
    .fun-fact2-area .counter-up-wrapper table tr:first-child td {
      border-top: none; }
      .fun-fact2-area .counter-up-wrapper table tr:first-child td:first-child {
        border-left: none; }
      .fun-fact2-area .counter-up-wrapper table tr:first-child td:nth-child(2) {
        border-right: none; }
    .fun-fact2-area .counter-up-wrapper table tr:nth-child(2) td {
      border-bottom: none; }
      .fun-fact2-area .counter-up-wrapper table tr:nth-child(2) td:first-child {
        border-left: none; }
      .fun-fact2-area .counter-up-wrapper table tr:nth-child(2) td:nth-child(2) {
        border-right: none; }

.ff2-img {
  margin-top: -100px;
  margin-bottom: -100px; }
  @media (max-width: 991px) {
    .ff2-img {
      margin: 0 auto; } }
  .ff2-img .sIs-1-wrapper {
    background-color: transparent;
    text-align: left; }
    @media (max-width: 767px) {
      .ff2-img .sIs-1-wrapper {
        max-width: 300px;
        margin: 40px auto; } }
    .ff2-img .sIs-1-wrapper img {
      height: 740px;
      box-shadow: 0px 0px 24px 0px rgba(115, 123, 186, 0.26);
      border-radius: 61px; }
      @media (max-width: 767px) {
        .ff2-img .sIs-1-wrapper img {
          height: 480px;
          border-radius: 35px; } }
    .ff2-img .sIs-1-wrapper ul.sts-1-features li {
      margin: 25px 0 50px auto; }
      .ff2-img .sIs-1-wrapper ul.sts-1-features li:nth-child(2) {
        margin-right: -10px; }

/* -------- Fun Fact END -------- */
/* -------- 4.8 Fun Fact Area  -------- */
.fun-fact3-area {
  position: relative;
  background-image: url(../img/bg/fun-fact-2.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
  padding: 100px 0px; }
  .fun-fact3-area:before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    opacity: .90; }

.cuw-2 table {
  border-color: #fff;
  border-bottom: 0;
  border-top: 0; }
  .cuw-2 table tr td {
    width: 25%;
    border-color: #fff;
    border-top: none;
    border-bottom: none; }
    @media (max-width: 767px) {
      .cuw-2 table tr td {
        width: 100% !important;
        display: block;
        border: none;
        text-align: center; } }
    .cuw-2 table tr td:first-child {
      border-left-color: transparent; }
    .cuw-2 table tr td:last-child {
      border-right-color: transparent; }
    .cuw-2 table tr td .scu-icon {
      position: absolute;
      left: 30px;
      top: 40px; }
      @media (max-width: 991px) {
        .cuw-2 table tr td .scu-icon {
          left: 20px;
          top: 28px; } }
.cuw-2 .single-counter-up {
  padding-left: 65px; }
  .cuw-2 .single-counter-up .scu-counter span {
    color: #fff;
    font-family: "Poppins", sans-serif;
    letter-spacing: 0px;
    font-size: 46px;
    font-weight: 600;
    line-height: 30px;
    margin: 5px auto;
    display: inline-block; }
    @media (max-width: 991px) {
      .cuw-2 .single-counter-up .scu-counter span {
        font-size: 26px;
        line-height: 28px;
        margin: 0 auto; } }
  .cuw-2 .single-counter-up .scu-icon i {
    font-size: 54px;
    color: #fff;
    line-height: 50px; }

/* --------  Fun Fact Area END -------- */
/* -------- 6.6 Fun Fact Area  -------- */
.funFact-img {
  position: relative;
  max-width: 767px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -350px;
  padding-bottom: 50px; }

.fFa-8 {
  margin-top: 200px;
  margin-bottom: 100px; }

.counter8 {
  position: relative;
  margin-bottom: -200px; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .counter8 {
      margin: 0 auto; } }
  @media (max-width: 767px) {
    .counter8 {
      margin: 0 auto; } }
  .counter8 table {
    border: none; }
    .counter8 table tr td {
      width: 25%;
      max-width: 240px;
      margin: 15px;
      display: inline-block;
      border: none;
      background-color: #f5f6f7;
      border-radius: 10px;
      overflow: hidden; }
      @media (max-width: 767px) {
        .counter8 table tr td {
          width: 100%;
          margin: 25px auto; } }
      .counter8 table tr td:first-child {
        margin-left: 0px; }
      .counter8 table tr td:last-child {
        margin-right: 0px; }
      .counter8 table tr td:hover .scu-icon i {
        color: #fff; }
      .counter8 table tr td:hover .counter-up,
      .counter8 table tr td:hover p {
        color: #fff; }
  .counter8 .single-counter-up {
    padding: 25px 0px; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .counter8 .single-counter-up {
        padding: 0px; } }
    .counter8 .single-counter-up .scu-icon i {
      color: #464553; }
  .counter8 .scu-counter p {
    color: #464553; }
  .counter8 .scu-counter .counter-up {
    color: #464553; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .counter8 .scu-counter .counter-up {
        font-size: 24px;
        line-height: 26px; } }

/* -------- Fun Fact Area END -------- */
/* -------- 3.7 Integration Area -------- */
.integration-area {
    position: relative;
    padding: 100px 0px;
    margin-top: 80px;
}
.integration-area:after {
    position: absolute;
    left: 0px;
    top: -78px;
    content: '';
    background-image: url(../img/t9-bg.png);
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}
  .integration-area .section-text {
    margin-top: 100px;
    max-width: 470px; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .integration-area .section-text {
        margin-top: 25px; } }
    @media (max-width: 767px) {
      .integration-area .section-text {
        text-align: center;
        margin: 0 auto; } }

.integration-logo {
  position: relative; }

ul.ilogo-list {
    position: relative;
    padding: 0px;
    list-style-type: none;
    max-width: 480px;
    height: 482px;
    margin: 25px auto;
}
  @media (max-width: 991px) {
    ul.ilogo-list {
      height: 350px;
      text-align: center; } }
ul.ilogo-list li {
	position: absolute;
	border-radius: 50%;
	background-color: #f5f8fd;
	height: 80px;
	width: 80px;
	text-align: center;
	padding-top: 10px;
	box-shadow: 0px 0px 50px 0px rgba(77, 83, 117, 0.2);
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
    @media (max-width: 991px) {
      ul.ilogo-list li {
        position: relative;
        display: inline-block !important;
        top: unset !important;
        left: unset !important;
        bottom: unset !important;
        right: unset !important;
        max-width: 70px;
        width: 50%;
        margin: 15px; } }
ul.ilogo-list li:hover {
    background-image: linear-gradient(90deg, rgba(74, 240, 71, 1), rgba(54, 145, 29, 1));
    transform: rotate(15deg);
}
    ul.ilogo-list li:first-child {
      top: calc(50% - 35px);
      left: calc(50% - 35px);
      background-color: #fe3851;
      border-radius: 50%; }
    ul.ilogo-list li:nth-child(2) {
      top: 0;
      left: calc(50% - 35px); }
    ul.ilogo-list li:nth-child(3) {
      right: 10%;
      top: 80px; }
    ul.ilogo-list li:nth-child(4) {
      right: 0;
      top: calc(50% - 35px); }
    ul.ilogo-list li:nth-child(5) {
      right: 10%;
      bottom: 80px; }
    ul.ilogo-list li:nth-child(6) {
      bottom: 0;
      left: calc(50% - 35px); }
    ul.ilogo-list li:nth-child(7) {
      left: 10%;
      bottom: 80px; }
    ul.ilogo-list li:nth-child(8) {
      left: 0;
      top: calc(50% - 35px); }
    ul.ilogo-list li:nth-child(9) {
      left: 10%;
      top: 80px; }
ul.ilogo-list li img {
	height: 60px;
	width: 60px;
}

/* -------- Integration Area END -------- */
/* -------- 8.8 Intigration  -------- */
.integration-10 {
  padding-top: 0px; }

/* -------- Intigration End -------- */
/* -------- 6.4 Invention  -------- */
.invention-area .section-title {
  margin-left: 0; }
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .invention-area {
    overflow: hidden; } }

.invention-img {
  margin-right: -100px; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .invention-img {
      margin-right: auto;
      margin-left: auto; } }
  @media (max-width: 767px) {
    .invention-img {
      margin-right: auto;
      margin-left: auto; } }

/* -------- Invention END -------- */
/* -------- 2.6 Testimonial  -------- */
.testimonial-area {
  position: relative; }

.testimonial-wrapper {
  position: relative; }

.single-testimonial {
  position: relative;
  width: 100%; }

.testi-avatar {
  position: relative;
  max-width: 400px;
  width: 40%;
  display: inline-block; }
  @media (max-width: 991px) {
    .testi-avatar {
      display: none; } }

.testi-text {
  position: relative;
  max-width: 650px;
  width: 60%;
  float: right;
  margin: 100px auto 50px;
  padding: 60px 0px; }
  @media (max-width: 991px) {
    .testi-text {
      width: 100%;
      padding-bottom: 0px;
      margin: 0px auto;
      padding: 0px 0px 60px; } }
  .testi-text p {
    font-size: 16px;
    font-style: italic;
    line-height: 24px;
    margin-bottom: 30px; }

.tclients-name {
  position: relative;
  width: 100%;
  font-size: 24px;
  letter-spacing: 0px;
  font-weight: 500;
  color: #707383; }
  .tclients-name span {
    position: absolute;
    right: 0;
    font-size: 16px; }
    .tclients-name span:before {
      position: absolute;
      content: '';
      width: 320px;
      height: 1px;
      background-color: #707383;
      bottom: 8px;
      right: 60px; }
      @media only screen and (min-width: 992px) and (max-width: 1200px) {
        .tclients-name span:before {
          display: none; } }
      @media (max-width: 991px) {
        .tclients-name span:before {
          display: none; } }

.tclients-designation {
  font-size: 16px;
  letter-spacing: 0px;
  display: inline-block;
  margin: 5px auto; }

.testimonial-carousel .owl-dots {
  display: none; }
.testimonial-carousel .owl-nav {
  position: absolute;
  top: 80px;
  left: 40%;
  margin-left: 8px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }
  @media (max-width: 991px) {
    .testimonial-carousel .owl-nav {
      display: none; } }
  .testimonial-carousel .owl-nav [class*=owl-] {
    height: 30px;
    font-size: 30px;
    width: 30px;
    padding: 0;
    border-radius: 0px;
    margin: 9px;
    color: #fff;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }
    .testimonial-carousel .owl-nav [class*=owl-] i {
      -webkit-transition: all 0.5s ease;
      -moz-transition: all 0.5s ease;
      -ms-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;
      transition: all 0.5s ease;
      margin-top: -1px; }
    .testimonial-carousel .owl-nav [class*=owl-]:hover {
      color: #fff;
      -webkit-transition: all 0.5s ease;
      -moz-transition: all 0.5s ease;
      -ms-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;
      transition: all 0.5s ease; }

/* -------- Testimonial  END -------- */
/* -------- 3.9 Testimonial Area -------- */
.single-2testimonial {
  position: relative;
  max-width: 350px;
  margin: 0 auto; }
  .single-2testimonial .s2t-text {
    position: relative;
    background-color: #f5f8fd;
    padding: 10px 30px;
    border-radius: 10px; }
    .single-2testimonial .s2t-text p {
      font-size: 16px;
      line-height: 24px;
      margin: 20px auto; }
      @media only screen and (min-width: 768px) and (max-width: 991px) {
        .single-2testimonial .s2t-text p {
          font-size: 12px;
          line-height: 16px;
          margin: 12px auto; } }
    .single-2testimonial .s2t-text:after {
      position: absolute;
      content: '';
      background-color: #f5f8fd;
      bottom: -12px;
      left: 25px;
      height: 25px;
      width: 25px;
      transform: rotate(45deg); }
  .single-2testimonial .s2t-client {
    position: relative;
    width: 100%;
    padding-left: 100px;
    padding-top: 15px;
    min-height: 80px;
    margin: 40px auto; }
    .single-2testimonial .s2t-client:hover img {
      border: 4px solid #fe315d; }
    .single-2testimonial .s2t-client img {
      position: absolute;
      height: 80px;
      width: 80px;
      left: 0;
      top: 0;
      border-radius: 50%;
      transition: .2s ease; }
    .single-2testimonial .s2t-client h5 {
      font-size: 24px;
      letter-spacing: 0px;
      font-weight: 600;
      line-height: 28px; }
      @media only screen and (min-width: 768px) and (max-width: 991px) {
        .single-2testimonial .s2t-client h5 {
          font-size: 16px;
          line-height: 20px;
          margin: 5px auto; } }
    .single-2testimonial .s2t-client p {
      font-size: 16px; }
      @media only screen and (min-width: 768px) and (max-width: 991px) {
        .single-2testimonial .s2t-client p {
          font-size: 13px;
          line-height: 18px;
          margin: 5px auto; } }
  .single-2testimonial .owl-nav {
    display: none; }
  .single-2testimonial .owl-dots {
    display: none; }

/* -------- Testimonial Area END -------- */
/* -------- 4.10 Testimonial Area  -------- */
.testimonial-area3 {
  position: relative;
  padding: 100px 0px; }

.testimonial3-carousel .s3t-client-thumb {
  position: relative;
  display: inline-block;
  margin-bottom: 15px; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .testimonial3-carousel .s3t-client-thumb {
      margin-bottom: 5px; } }
  .testimonial3-carousel .s3t-client-thumb img {
    width: 80px;
    border-radius: 50%; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .testimonial3-carousel .s3t-client-thumb img {
        width: 50px; } }
.testimonial3-carousel .owl-nav,
.testimonial3-carousel .owl-dots {
  display: none; }

.single-3testimonial {
  position: relative;
  background-color: #fafaff;
  padding: 40px;
  border-radius: 15px;
  overflow: hidden;
  z-index: 1; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .single-3testimonial {
      padding: 15px 12px; } }
  .single-3testimonial:before {
    position: absolute;
    content: '';
    height: 380px;
    width: 380px;
    bottom: -50px;
    right: -100px;
    border-radius: 50%;
    background-color: #faf2f4;
    z-index: -1; }

.s3t-text {
  position: relative; }
  .s3t-text:before {
    position: absolute;
    content: '\f10e';
    font-family: fontAwesome;
    top: -10px;
    right: -20px;
    color: #fff;
    font-size: 65px;
    z-index: -1; }
  .s3t-text p {
    font-size: 16px;
    font-style: initial;
    line-height: 22px;
    margin-bottom: 25px; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .s3t-text p {
        font-size: 14px;
        line-height: 18px;
        margin-bottom: 10px; } }

.s3t-client h5 {
  font-size: 18px;
  letter-spacing: 0px;
  font-weight: 500;
  color: #4d5375; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .s3t-client h5 {
      font-size: 14px;
      line-height: 18px; } }
.s3t-client p {
  font-size: 14px;
  line-height: 20px; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .s3t-client p {
      font-size: 12px;
      line-height: 14px; } }

/* -------- Testimonial Area END  -------- */
/* -------- 6.8 Testimonial Area -------- */
.testimonial8-wrapper {
  position: relative; }

.testimonial8-carousel .single-testimonial8 .testi-avatar {
  max-width: 100%;
  width: 100%;
  display: inline-block;
  margin-bottom: -60px;
  margin-left: 25px;
  z-index: 1; }
  .testimonial8-carousel .single-testimonial8 .testi-avatar img {
    height: 100px;
    width: 100px;
    border-radius: 10px; }
.testimonial8-carousel .single-testimonial8 .testi-text {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 75px 20px 30px 100px;
  background-color: #fafafa;
  border-radius: 10px; }
  .testimonial8-carousel .single-testimonial8 .testi-text p {
    margin-bottom: 25px; }
  .testimonial8-carousel .single-testimonial8 .testi-text:before {
    position: absolute;
    content: '';
    height: 2px;
    width: 50px;
    background-color: #6b6b7c;
    left: 28px;
    top: 85px; }
.testimonial8-carousel .owl-dots,
.testimonial8-carousel .owl-nav {
  display: none; }

/* -------- Testimonial Area -------- */
/* -------- 2.7 Pricing  -------- */
.pricing-area {
  position: relative; }

.pricing-button {
  position: relative;
  text-align: center; }

ul.ptb-list {
  position: relative;
  padding: 0px;
  list-style-type: none;
  display: inline-block;
  border-radius: 10px;
  margin: 25px auto;
  background-color: #f2faff;
  box-shadow: inset 0px 0px 16px 0px rgba(0, 0, 0, 0.08); }
  ul.ptb-list li {
    display: inline-block;
    margin: 0px -3px; }
    ul.ptb-list li button {
      border: none; }

.pt-filter-btn {
  background-color: transparent;
  border-radius: 10px;
  font-size: 14px;
  padding: 15px 20px;
  cursor: pointer;
  color: #717484;
  letter-spacing: 0px;
  font-weight: 600; }
  .pt-filter-btn:focus {
    outline: none; }

.pt-filter-btn.active {
  color: #fff; }

.pricing-content {
  position: relative;
  text-align: center;
  width: 100%;
  padding: 100px 0px; }
  .pricing-content .single-pricing {
    display: none;
    opacity: 0; }
  @media (max-width: 991px) {
    .pricing-content {
      padding: 50px 0px; } }

.pricing-content .single-pricing.active {
  display: inline-block;
  opacity: 1; }

.single-pricing {
  position: relative;
  max-width: 370px;
  width: 33.33333%;
  background-color: #f2faff;
  padding: 0px 25px 25px;
  border-radius: 10px;
  display: inline-block;
  padding: 0px 40px 25px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }
  @media (max-width: 991px) {
    .single-pricing {
      width: 100%;
      margin-top: 50px;
      margin-bottom: 60px; } }

.s-pricing-icon {
  background-color: #4d5375;
  width: 100px;
  height: 100px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 0px;
  text-align: center;
  margin-top: -50px;
  margin-bottom: 25px;
  border-radius: 10px;
  box-shadow: 0px 0px 24px 0px rgba(113, 107, 150, 0.49);
  transform: rotateY(0deg);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }
  .s-pricing-icon i {
    color: #fff;
    font-size: 50px;
    line-height: initial;
    text-align: center; }

.spricing-info {
  transform: rotateY(0deg);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }
  .spricing-info a {
    display: inline-block; }

.spi-head {
  position: relative;
  padding-bottom: 15px;
  border-bottom: 1px solid #c5e1f2; }
  .spi-head h3 {
    font-size: 52px;
    line-height: 50px;
    margin-bottom: 10px;
    letter-spacing: 0px;
    font-weight: 600; }
  .spi-head h4 {
    font-size: 24px;
    letter-spacing: 0px;
    font-weight: 600;
    margin-bottom: 10px; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .spi-head h4 {
        font-size: 20px;
        margin-bottom: 0px; } }
  .spi-head p {
    font-size: 16px;
    margin-bottom: 10px; }

ul.spi-list {
  position: relative;
  padding: 0;
  list-style-type: none;
  margin: 30px auto; }
  ul.spi-list li {
    letter-spacing: 0px;
    font-size: 16px;
    line-height: 24px;
    margin: 15px auto; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      ul.spi-list li {
        font-size: 14px;
        margin: 8px auto; } }

.single-pricing.focused {
  border-radius: 15px;
  background-color: #f2faff;
  box-shadow: 0px 0px 50px 0px rgba(77, 83, 117, 0.15);
  z-index: 1;
  margin: 25px -25px 80px; }
  .single-pricing.focused .spricing-info a {
    background-color: #ff0997; }

/* -------- Pricing  END -------- */
/* -------- 3.8 Pricing Area -------- */
.pricing2-area {
  position: relative;
  overflow: hidden; }
  .pricing2-area .section-text {
    margin-top: 160px;
    max-width: 460px;
    margin-left: auto;
    margin-right: 0px; }
    @media (max-width: 767px) {
      .pricing2-area .section-text {
        margin: 40px auto;
        text-align: center; } }

.princing-2-content {
  position: relative;
  padding: 25px 0px; }
  @media (max-width: 479px) {
    .princing-2-content {
      margin-right: 0;
      text-align: center; } }
  .princing-2-content:before {
    position: absolute;
    content: '';
    height: 100%;
    width: 120%;
    left: -15%;
    top: 0;
    background-image: url(../img/bg/pricing2-shape-bg.png);
    background-size: 100% 100%;
    background-repeat: no-repeat; }

.p2c-single {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 340px;
  border-radius: 10px;
  background-color: #fff;
  padding: 25px;
  text-align: center;
  transition: 1s ease;
  box-shadow: 0px 0px 32px 0px rgba(0, 0, 184, 0.09);
  opacity: .5;
  transform: scale(0.8); }
  @media only screen and (min-width: 992px) and (max-width: 1200px) {
    .p2c-single {
      max-width: 300px; } }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .p2c-single {
      max-width: 220px; } }
  .p2c-single:first-child {
    margin-right: -180px; }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .p2c-single:first-child {
        margin-right: -280px; } }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .p2c-single:first-child {
        margin-right: -340px; } }
    @media (max-width: 767px) {
      .p2c-single:first-child {
        margin-right: -245px; } }
    @media (max-width: 479px) {
      .p2c-single:first-child {
        margin-right: -350px; } }
  .p2c-single .p2cs-icon {
    position: relative;
    margin: 25px auto; }
    .p2c-single .p2cs-icon i {
      font-size: 60px;
      color: #fd3b4c; }
  .p2c-single .spi-head {
    border: none;
    padding-bottom: 0px; }
  .p2c-single ul.spi-list {
    margin: 25px auto; }
  .p2c-single .spi-pricing {
    position: relative;
    margin: 25px auto;
    max-width: 200px;
    padding: 20px 0px; }
    .p2c-single .spi-pricing h3 {
      font-size: 40px;
      letter-spacing: 0px; }
    .p2c-single .spi-pricing p {
      font-size: 18px;
      letter-spacing: 0px;
      line-height: 26px; }
    .p2c-single .spi-pricing:before {
      position: absolute;
      content: '';
      height: 100%;
      width: 100%;
      left: 0px;
      top: 0px;
      background-image: url(../img/bg/pricing2-shape-bg-mini-1.png);
      background-repeat: no-repeat;
      background-size: 100% 100%;
      z-index: -1; }

.p2c-single.active {
  transition: 1s ease;
  z-index: 1;
  transform: scaleX(1);
  opacity: 1; }

#p2Compare {
  cursor: pointer; }

/* -------- 3.8 Pricing Area -------- */
/* -------- 4.9 Pricing Area  -------- */
.price3s {
  opacity: .4;
  transform: scale(1); }

.p2c-single.price3s {
  margin: 50px auto; }

.pricing3-content {
  position: relative;
  text-align: center; }

.price3s.active {
  opacity: 1;
  transform: scale(1.1, 1.2); }

/* --------  Pricing Area END -------- */
/* -------- 6.7 Pricing Area  -------- */
.pricing8-area {
  position: relative; }
  @media (max-width: 767px) {
    .pricing8-area {
      text-align: center; } }
  .pricing8-area .section-text {
    margin: 60px auto;
    padding-top: 25px; }

.p8s {
  background-color: #ff128a;
  padding-bottom: 50px; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .p8s:first-child {
      margin-right: -200px; } }
  .p8s .spi-head h4 {
    color: #fff; }
  .p8s .spi-pricing {
    border-bottom: 5px dashed #ff4a79; }
    .p8s .spi-pricing:before {
      display: none; }
  .p8s .spricing-info h3,
  .p8s .spricing-info p {
    color: #fff; }
  .p8s .spricing-info a {
    color: #fff;
    display: inline-block;
    font-size: 50px;
    position: relative; }
    .p8s .spricing-info a:before {
      position: absolute;
      content: '';
      left: -35px;
      top: -10px;
      height: 140%;
      width: 240%;
      background-image: url(../img/bg/pricing8-shape-bg.png);
      background-size: 100% 100%;
      z-index: -1; }
  .p8s ul.spi-list li {
    color: #fff; }

/* -------- Pricing Area END -------- */
/* -------- 8.10 Pricing  -------- */
.pricing10 {
  padding-top: 100px; }
  .pricing10 .pricing-content {
    padding-bottom: 0px; }

/* -------- Pricing End -------- */
/* -------- 2.8 Recent Blog  -------- */
.single-blog {
  position: relative; }

.sb-V1 {
  max-width: 540px;
  margin: 30px auto; }
  .sb-V1 .sb-text {
    position: relative;
    border-radius: 10px;
    background-color: #fff;
    max-width: 500px;
    margin: -103px auto 0px;
    padding: 30px;
    box-shadow: 0px 0px 50px 0px rgba(77, 83, 117, 0.15); }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .sb-V1 .sb-text {
        padding: 30px; } }
    .sb-V1 .sb-text h4 {
      font-size: 24px;
      letter-spacing: 0px;
      line-height: 36px;
      font-weight: 600;
      margin: 10px auto;
      color: #4d5375; }
      @media only screen and (min-width: 768px) and (max-width: 991px) {
        .sb-V1 .sb-text h4 {
          font-size: 14px;
          line-height: 18px; } }
      @media (max-width: 767px) {
        .sb-V1 .sb-text h4 {
          font-size: 18px;
          line-height: 24px; } }
      .sb-V1 .sb-text h4 a {
        font-size: 24px;
        letter-spacing: 0px;
        line-height: 36px;
        font-weight: 600;
        margin: 10px auto;
        color: #4d5375; }
        @media only screen and (min-width: 768px) and (max-width: 991px) {
          .sb-V1 .sb-text h4 a {
            font-size: 14px;
            line-height: 18px;
            margin: 5px auto; } }
        @media (max-width: 767px) {
          .sb-V1 .sb-text h4 a {
            font-size: 18px;
            line-height: 24px; } }
    .sb-V1 .sb-text p {
      font-size: 16px;
      line-height: 24px;
      color: #707383; }
      @media only screen and (min-width: 768px) and (max-width: 991px) {
        .sb-V1 .sb-text p {
          font-size: 14px;
          line-height: 20px; } }

ul.sb-meta {
  position: relative;
  padding: 0;
  list-style-type: none; }
  ul.sb-meta li, ul.sb-metali a {
    display: inline-block;
    letter-spacing: 0px;
    font-size: 16px;
    color: #707383;
    font-weight: 600; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      ul.sb-meta li, ul.sb-metali a {
        font-size: 14px; } }

ul.sb-meta li {
  position: relative;
  margin-right: 12px; }

ul.sb-meta li:after {
  position: absolute;
  content: '';
  height: 100%;
  width: 1px;
  right: -10px;
  background-color: #717484;
  transform: rotate(20deg); }

ul.sb-meta li:last-child:after {
  display: none; }

.sb-V1 .sb-text > a {
  font-size: 16px;
  letter-spacing: 0px;
  text-decoration: underline;
  display: inline-block;
  margin: 15px auto 0px;
  color: #ff0997; }

.sb-V1.T_only .sb-text {
  margin: 30px auto;
  background-color: #f9fcff;
  max-width: 540px;
  box-shadow: none;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }
  .sb-V1.T_only .sb-text:hover {
    box-shadow: 0px 0px 50px 0px rgba(77, 83, 117, 0.15); }

/* -------- Recent Blog END -------- */
/* -------- 3.10 Blog News Area -------- */
.recent-blog-area {
  position: relative; }

.single-blogV2 {
  position: relative;
  max-width: 350px;
  margin: 25px auto; }
  .single-blogV2 .sblog-img {
    margin-bottom: 25px; }
    @media (max-width: 479px) {
      .single-blogV2 .sblog-img {
        margin-bottom: 10px; } }
  .single-blogV2 .sblog-date {
    position: absolute;
    top: 25px;
    left: 25px;
    background-color: #fff;
    padding: 12px 5px; }
    .single-blogV2 .sblog-date span {
      display: block;
      font-size: 18px;
      line-height: 30px;
      letter-spacing: 0px;
      font-weight: 600;
      min-width: 65px;
      text-align: center;
      border-bottom: 1px solid #dcdcde; }

.single-blogV2 .sblog-date span:last-child {
  border-bottom: none; }
.single-blogV2 .sblog-content .sblog-cat {
  position: relative;
  margin-bottom: 5px; }
  .single-blogV2 .sblog-content .sblog-cat a {
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 22px;
    color: #8d8caa;
    font-weight: 500; }
    @media (max-width: 479px) {
      .single-blogV2 .sblog-content .sblog-cat a {
        font-size: 14px; } }
.single-blogV2 .sblog-content .sblog-text h4 a {
  font-size: 20px;
  letter-spacing: 0px;
  font-weight: 600;
  color: #43426f;
  line-height: 30px;
  display: block;
  margin-bottom: 10px; }
  @media only screen and (min-width: 992px) and (max-width: 1200px) {
    .single-blogV2 .sblog-content .sblog-text h4 a {
      font-size: 16px;
      line-height: 20px;
      margin-bottom: 5px; } }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .single-blogV2 .sblog-content .sblog-text h4 a {
      font-size: 16px;
      line-height: 20px;
      margin-bottom: 5px; } }
  @media (max-width: 479px) {
    .single-blogV2 .sblog-content .sblog-text h4 a {
      font-size: 16px;
      line-height: 20px;
      margin-bottom: 5px; } }
.single-blogV2 .sblog-content .sblog-text p {
  font-size: 14px;
  letter-spacing: 0px;
  color: #8d8caa;
  line-height: 20px;
  margin-bottom: 20px;
  font-weight: 600; }
  @media only screen and (min-width: 992px) and (max-width: 1200px) {
    .single-blogV2 .sblog-content .sblog-text p {
      font-size: 12px;
      line-height: 16px; } }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .single-blogV2 .sblog-content .sblog-text p {
      font-size: 12px;
      line-height: 16px; } }
  @media (max-width: 479px) {
    .single-blogV2 .sblog-content .sblog-text p {
      font-size: 12px;
      line-height: 16px; } }
.single-blogV2 .sblog-author {
  position: relative;
  min-height: 50px;
  padding-left: 60px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: inline-block; }
  .single-blogV2 .sblog-author .sba-img {
    position: absolute;
    left: 0;
    top: 0; }
    .single-blogV2 .sblog-author .sba-img img {
      height: 50px;
      width: 50px;
      border-radius: 50%; }
  .single-blogV2 .sblog-author p {
    font-size: 14px;
    letter-spacing: 0px;
    color: #acacbf; }
    .single-blogV2 .sblog-author p a {
      font-size: 14px;
      letter-spacing: 0px;
      color: #acacbf; }
.single-blogV2 ul.sb-lc-list {
  position: relative;
  padding: 0px;
  list-style-type: none;
  display: inline-block;
  width: 40%;
  float: right;
  margin-top: 10px;
  text-align: right; }
  @media only screen and (min-width: 992px) and (max-width: 1200px) {
    .single-blogV2 ul.sb-lc-list {
      width: 30%; } }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .single-blogV2 ul.sb-lc-list {
      width: 100%;
      text-align: left;
      float: unset;
      margin-top: 10px; } }
  @media (max-width: 767px) {
    .single-blogV2 ul.sb-lc-list {
      width: 30%;
      float: right;
      text-align: right; } }
  .single-blogV2 ul.sb-lc-list li {
    display: inline-block;
    letter-spacing: 0px;
    margin: 5px;
    font-size: 14px; }

/* -------- Blog News Area END -------- */
/* -------- 4.11 Recent Blog Area  -------- */
.single-blogV3 {
  position: relative;
  max-width: 350px;
  margin: 25px auto; }

.sb3-head {
  position: relative; }

.sb3-cat_share {
  position: absolute;
  width: 100%;
  height: 50px;
  bottom: 0;
  background-color: #fd5626; }
  .sb3-cat_share .sb3-cat {
    position: relative;
    width: 60%;
    float: left; }
    .sb3-cat_share .sb3-cat a {
      color: #fff;
      font-size: 12px;
      letter-spacing: 0px;
      display: inline-block;
      padding: 10px 15px; }
      .sb3-cat_share .sb3-cat a i {
        font-size: 14px;
        margin-right: 5px; }
  .sb3-cat_share .sb3-share {
    position: relative;
    width: 40%;
    height: 100%;
    float: right;
    text-align: right; }
    .sb3-cat_share .sb3-share ul.sb3s-list {
      position: relative;
      padding: 0;
      list-style-type: none;
      height: 100%; }
      .sb3-cat_share .sb3-share ul.sb3s-list li {
        display: inline-block;
        height: 100%;
        margin-left: -6px; }
        .sb3-cat_share .sb3-share ul.sb3s-list li a {
          display: block;
          font-size: 20px;
          padding: 15px;
          background-color: #ff0f8e;
          color: #fff; }
          @media only screen and (min-width: 992px) and (max-width: 1200px) {
            .sb3-cat_share .sb3-share ul.sb3s-list li a {
              font-size: 16px;
              padding: 15px 10px; } }
          @media only screen and (min-width: 768px) and (max-width: 991px) {
            .sb3-cat_share .sb3-share ul.sb3s-list li a {
              font-size: 16px;
              padding: 15px 5px; } }
          @media (max-width: 767px) {
            .sb3-cat_share .sb3-share ul.sb3s-list li a {
              padding: 15px 10px; } }
          .sb3-cat_share .sb3-share ul.sb3s-list li a:hover {
            background-color: #fd5626; }

.sb3-text {
  position: relative;
  margin: 20px auto;
  border-bottom: 1px solid #e0dee9; }
  .sb3-text h4 {
    font-size: 24px;
    letter-spacing: 0px;
    color: #4d5375;
    font-weight: 500;
    line-height: 34px;
    margin: 20px auto; }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .sb3-text h4 {
        font-size: 18px;
        line-height: 22px; } }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .sb3-text h4 {
        font-size: 16px;
        line-height: 20px; } }
  .sb3-text p {
    font-size: 16px;
    line-height: 20px;
    color: #707383;
    margin: 20px auto; }

.sb3-bottom {
  position: relative;
  min-height: 50px; }
  .sb3-bottom .sb3-author {
    position: relative;
    padding-left: 65px;
    padding-top: 5px; }
    .sb3-bottom .sb3-author > img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      position: absolute;
      left: 0;
      top: 0; }
    .sb3-bottom .sb3-author h5 {
      font-size: 16px;
      letter-spacing: 0px;
      color: #4d5375;
      font-weight: 500; }
    .sb3-bottom .sb3-author .sb3-date {
      position: relative;
      padding-left: 20px; }
      .sb3-bottom .sb3-author .sb3-date i {
        position: absolute;
        left: 0;
        top: 0;
        color: #707383; }
      .sb3-bottom .sb3-author .sb3-date p {
        font-size: 12px;
        letter-spacing: 0px;
        line-height: 16px;
        font-weight: 600;
        color: #707383; }

.sb3-playerAudio {
  position: absolute;
  width: 100%;
  height: 50px;
  bottom: -50px; }
  .sb3-playerAudio audio {
    width: 100%;
    background-color: #f1f3f4; }

.sb3AudioPlayPause {
  position: absolute;
  background-color: transparent;
  border: none;
  color: #fd4838;
  bottom: 6px;
  left: 16px;
  opacity: 0;
  cursor: pointer; }
  .sb3AudioPlayPause :focus {
    outline: none; }

.sb3-thumb {
  position: relative;
  background-color: #f3f3f3; }

.sb3Audio-wave {
  position: relative;
  padding-bottom: 145px;
  padding-top: 40px;
  margin-bottom: 70px; }
  @media only screen and (min-width: 992px) and (max-width: 1200px) {
    .sb3Audio-wave {
      padding-bottom: 86px; } }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .sb3Audio-wave {
      padding-bottom: 86px;
      padding-top: 0px; } }

.sb3-wave {
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: 100px;
  max-width: 180px; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .sb3-wave {
      height: 65px; } }
  .sb3-wave span {
    display: block;
    bottom: 0px;
    width: 2px;
    height: 10px;
    background: #579bea;
    position: absolute;
    -webkit-animation: audio-wave 2s infinite ease-in-out;
    animation: audio-wave 2s infinite ease-in-out; }
    .sb3-wave span:nth-child(1) {
      left: 6px;
      -webkit-animation-delay: 0.3s;
      animation-delay: 0.3s; }
    .sb3-wave span:nth-child(2) {
      left: 12px;
      -webkit-animation-delay: 0.6s;
      animation-delay: 0.6s; }
    .sb3-wave span:nth-child(3) {
      left: 18px;
      -webkit-animation-delay: 0.9s;
      animation-delay: 0.9s; }
    .sb3-wave span:nth-child(4) {
      left: 24px;
      -webkit-animation-delay: 1.2s;
      animation-delay: 1.2s; }
    .sb3-wave span:nth-child(5) {
      left: 30px;
      -webkit-animation-delay: 1.5s;
      animation-delay: 1.5s; }
    .sb3-wave span:nth-child(6) {
      left: 36px;
      -webkit-animation-delay: 1.8s;
      animation-delay: 1.8s; }
    .sb3-wave span:nth-child(7) {
      left: 42px;
      -webkit-animation-delay: 2.1s;
      animation-delay: 2.1s; }
    .sb3-wave span:nth-child(8) {
      left: 48px;
      -webkit-animation-delay: 2.4s;
      animation-delay: 2.4s; }
    .sb3-wave span:nth-child(9) {
      left: 54px;
      -webkit-animation-delay: 2.7s;
      animation-delay: 2.7s; }
    .sb3-wave span:nth-child(10) {
      left: 60px;
      -webkit-animation-delay: 3s;
      animation-delay: 3s; }
    .sb3-wave span:nth-child(11) {
      left: 66px;
      -webkit-animation-delay: 3.3s;
      animation-delay: 3.3s; }
    .sb3-wave span:nth-child(12) {
      left: 72px;
      -webkit-animation-delay: 3.6s;
      animation-delay: 3.6s; }
    .sb3-wave span:nth-child(13) {
      left: 78px;
      -webkit-animation-delay: 3.9s;
      animation-delay: 3.9s; }
    .sb3-wave span:nth-child(14) {
      left: 84px;
      -webkit-animation-delay: 4.2s;
      animation-delay: 4.2s; }
    .sb3-wave span:nth-child(15) {
      left: 90px;
      -webkit-animation-delay: 4.5s;
      animation-delay: 4.5s; }
    .sb3-wave span:nth-child(16) {
      left: 96px;
      -webkit-animation-delay: 4.8s;
      animation-delay: 4.8s; }
    .sb3-wave span:nth-child(17) {
      left: 102px;
      -webkit-animation-delay: 5.1s;
      animation-delay: 5.1s; }
    .sb3-wave span:nth-child(18) {
      left: 108px;
      -webkit-animation-delay: 5.399999999999999s;
      animation-delay: 5.399999999999999s; }
    .sb3-wave span:nth-child(19) {
      left: 114px;
      -webkit-animation-delay: 5.7s;
      animation-delay: 5.7s; }
    .sb3-wave span:nth-child(20) {
      left: 120px;
      -webkit-animation-delay: 6s;
      animation-delay: 6s; }
    .sb3-wave span:nth-child(21) {
      left: 126px;
      -webkit-animation-delay: 6.3s;
      animation-delay: 6.3s; }
    .sb3-wave span:nth-child(22) {
      left: 132px;
      -webkit-animation-delay: 6.6s;
      animation-delay: 6.6s; }
    .sb3-wave span:nth-child(23) {
      left: 138px;
      -webkit-animation-delay: 6.899999999999999s;
      animation-delay: 6.899999999999999s; }
    .sb3-wave span:nth-child(24) {
      left: 144px;
      -webkit-animation-delay: 7.199999999999999s;
      animation-delay: 7.199999999999999s; }
    .sb3-wave span:nth-child(25) {
      left: 150px;
      -webkit-animation-delay: 7.5s;
      animation-delay: 7.5s; }
    .sb3-wave span:nth-child(26) {
      left: 156px;
      -webkit-animation-delay: 7.8s;
      animation-delay: 7.8s; }
    .sb3-wave span:nth-child(27) {
      left: 162px;
      -webkit-animation-delay: 8.1s;
      animation-delay: 8.1s; }
    .sb3-wave span:nth-child(28) {
      left: 168px;
      -webkit-animation-delay: 8.4s;
      animation-delay: 8.4s; }
    .sb3-wave span:nth-child(29) {
      left: 174px;
      -webkit-animation-delay: 8.7s;
      animation-delay: 8.7s; }
    .sb3-wave span:nth-child(30) {
      left: 180px;
      -webkit-animation-delay: 9s;
      animation-delay: 9s; }

.stopedWave span {
  -webkit-animation: none;
  animation: none; }

@-webkit-keyframes audio-wave {
  0% {
    height: 15px;
    -webkit-transform: translateY(0px);
    transform: translateY(0px); }
  25% {
    height: 60px;
    -webkit-transform: translateY(20px);
    transform: translateY(20px); }
  50% {
    height: 15px;
    -webkit-transform: translateY(0px);
    transform: translateY(0px); }
  100% {
    height: 10px;
    -webkit-transform: translateY(0px);
    transform: translateY(0px); } }
@keyframes audio-wave {
  0% {
    height: 15px;
    -webkit-transform: translateY(0px);
    transform: translateY(0px); }
  25% {
    height: 60px;
    -webkit-transform: translateY(20px);
    transform: translateY(20px); }
  50% {
    height: 15px;
    -webkit-transform: translateY(0px);
    transform: translateY(0px); }
  100% {
    height: 10px;
    -webkit-transform: translateY(0px);
    transform: translateY(0px); } }
/* Audio Player Style Customization */
/*----------------------------------------*/
/*  15. Blog Page
/*----------------------------------------*/
.blog-pagination {
  position: relative;
  text-align: center; }
  .blog-pagination nav {
    display: inline-block;
    margin-top: 60px; }
    .blog-pagination nav ul {
      position: relative; }
      .blog-pagination nav ul li {
        margin: 5px 2px; }
        .blog-pagination nav ul li a {
          font-size: 20px;
          color: #43426f;
          background-color: #f6f6ff;
          display: block;
          height: 40px;
          text-align: center;
          width: 40px;
          padding-top: 7px; }
      .blog-pagination nav ul li.active a {
        background-color: #ff6c57 !important;
        border-color: #ff6c57 !important; }
  .blog-pagination .pagination > li > a {
    border-radius: 50% !important;
    margin: 0 5px; }

.single-blogV4 {
  position: relative;
  max-width: 767px;
  margin: 30px auto;
  background-color: #f8f7ff;
  padding: 30px; }
  .single-blogV4 .sb-text {
    position: relative; }
    .single-blogV4 .sb-text h4 {
      color: #4e4d5e;
      font-size: 22px;
      letter-spacing: 0px;
      line-height: 30px;
      font-weight: 500;
      margin: 15px auto 5px; }
      .single-blogV4 .sb-text h4 a {
        color: #4e4d5e;
        font-size: 22px;
        letter-spacing: 0px;
        line-height: 30px;
        font-weight: 500;
        display: block; }
        @media only screen and (min-width: 768px) and (max-width: 991px) {
          .single-blogV4 .sb-text h4 a {
            font-size: 16px;
            line-height: 22px;
            margin: 15px auto; } }
        @media (max-width: 767px) {
          .single-blogV4 .sb-text h4 a {
            font-size: 18px;
            line-height: 24px;
            margin: 15px auto; } }
    .single-blogV4 .sb-text p {
      color: #7e7e8d;
      font-size: 16px;
      line-height: 22px;
      margin: 20px auto; }
      @media only screen and (min-width: 768px) and (max-width: 991px) {
        .single-blogV4 .sb-text p {
          font-size: 14px;
          line-height: 16px;
          margin: 10px auto; } }
    .single-blogV4 .sb-text ul.sb-meta {
      margin: 10px auto; }
      @media only screen and (min-width: 768px) and (max-width: 991px) {
        .single-blogV4 .sb-text ul.sb-meta {
          margin: 5px auto; } }
      .single-blogV4 .sb-text ul.sb-meta li:first-child {
        color: #ff0997; }

.sblog-img {
  position: relative;
  width: 100%; }
  .sblog-img img {
    width: 100%; }

.blog-v4-bottom {
  position: relative;
  margin-top: 20px;
  margin-bottom: -10px; }
  .blog-v4-bottom ul.sb-lc-list {
    position: relative;
    padding: 0px;
    list-style-type: none;
    display: inline-block;
    width: 40%;
    float: right;
    margin-top: 10px;
    text-align: right; }
    @media (max-width: 479px) {
      .blog-v4-bottom ul.sb-lc-list {
        width: 100%;
        float: unset;
        text-align: left; } }
    .blog-v4-bottom ul.sb-lc-list li {
      display: inline-block;
      letter-spacing: 0px;
      margin: 5px;
      font-size: 14px; }
      .blog-v4-bottom ul.sb-lc-list li a {
        display: block;
        letter-spacing: 0px;
        margin: 5px;
        font-size: 16px; }
        .blog-v4-bottom ul.sb-lc-list li a i {
          margin-right: 5px; }

.sa-img {
  height: 70px;
  width: 70px;
  margin: 15px auto;
  border-radius: 50%;
  overflow: hidden; }
  .sa-img img {
    height: 100%;
    width: 100%; }

.widget {
  position: relative;
  max-width: 350px;
  margin: 30px auto;
  background-color: #f8f7ff;
  padding: 15px; }
  .widget h4 {
    font-size: 20px;
    color: #4d5375;
    letter-spacing: 0px;
    font-weight: 500;
    line-height: 24px;
    margin: 5px auto; }
  .widget ul {
    position: relative;
    padding: 0;
    list-style-type: none;
    margin: 20px auto; }
    .widget ul li {
      display: block;
      line-height: 24px;
      padding: 10px 10px;
      border-bottom: 1px solid #e9e9f6; }
      .widget ul li a {
        font-size: 16px;
        color: #9398b1;
        letter-spacing: 0px;
        font-weight: 500; }
        @media only screen and (min-width: 768px) and (max-width: 991px) {
          .widget ul li a {
            font-size: 14px; } }
      .widget ul li:last-child {
        border-bottom: none; }
  .widget h4.widget-title {
    margin: 15px auto;
    text-align: center; }

.sidebar-author {
  text-align: center; }
  @media (max-width: 767px) {
    .sidebar-author {
      margin-top: 80px; } }
  .sidebar-author span {
    font-size: 14px;
    letter-spacing: 0px;
    display: block;
    line-height: 16px;
    margin-bottom: 10px;
    color: #717484; }
  .sidebar-author p {
    font-size: 16px;
    letter-spacing: 0px;
    color: #717484;
    line-height: 22px;
    max-width: 245px;
    margin: 15px auto; }

.widget ul li span {
  letter-spacing: 0px;
  font-size: 16px;
  color: #9398b1; }
.widget ul li span.bs-qty {
  float: right; }

.popular_post_entries ul li {
  padding: 15px; }
  .popular_post_entries ul li a {
    display: block;
    color: #80849a;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 5px; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .popular_post_entries ul li a {
        font-size: 14px;
        line-height: 20px; } }
.popular_post_entries ul li .s-meta-date {
  display: block;
  font-size: 14px;
  line-height: 16px; }

.tagcloud ul {
  padding: 5px 15px; }
  .tagcloud ul li {
    display: inline-block;
    border-bottom: none; }
    .tagcloud ul li a {
      font-size: 14px;
      font-weight: 400;
      display: block;
      background-color: #fff;
      padding: 12px 30px;
      border-radius: 5px; }
      @media (max-width: 767px) {
        .tagcloud ul li a {
          padding: 10px 20px; } }

.sbt-img {
  position: relative;
  width: 100%;
  margin: 25px auto; }
  .sbt-img img {
    height: 400px;
    width: 100%; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .sbt-img img {
        height: 200px; } }
    @media (max-width: 767px) {
      .sbt-img img {
        height: 160px;
        margin-bottom: 20px; } }

.blogitem-comments {
  position: relative;
  max-width: 767px;
  margin: 60px auto; }
  .blogitem-comments h5 {
    font-size: 24px;
    letter-spacing: 0px;
    color: #4e4d5e;
    font-weight: 600;
    margin: 20px auto;
    padding-bottom: 20px;
    border-bottom: 1px solid #c9c6df; }

.tm-comment {
  position: relative;
  padding: 25px;
  margin: 25px auto;
  background-color: #f8f7ff; }

.tm-comment-thumb {
  height: 65px;
  width: 65px;
  border-radius: 0px;
  overflow: hidden;
  display: inline-block;
  float: left; }
  .tm-comment-thumb img {
    height: 100%;
    width: 100%; }

.tm-comment-content {
  position: relative;
  padding-left: 80px; }

h6.tm-comment-authorname {
  font-size: 24px;
  letter-spacing: 0px;
  color: #7e7e8d;
  font-weight: 600;
  padding: 5px 0px; }

span.tm-comment-date {
  font-size: 16px;
  letter-spacing: 0px;
  color: #7e7e8d; }

.tm-comment-content p {
  font-size: 16px;
  color: #7e7e8d;
  padding: 12px 0px;
  line-height: 24px; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tm-comment-content p {
      font-size: 14px;
      line-height: 18px;
      padding: 8px 0px; } }
  @media (max-width: 479px) {
    .tm-comment-content p {
      font-size: 14px;
      line-height: 18px;
      padding: 8px 0px; } }

a.tm-comment-replybutton {
  font-size: 16px;
  letter-spacing: 0px;
  color: #7e7e8d; }
  a.tm-comment-replybutton i {
    margin-right: 5px; }

.tm-comment-replypost {
  margin-left: 100px; }
  @media (max-width: 767px) {
    .tm-comment-replypost {
      margin-left: 25px; } }

.blogitem-commentbox {
  position: relative;
  margin: 50px auto;
  max-width: 767px; }
  .blogitem-commentbox h5 {
    font-size: 24px;
    letter-spacing: 0px;
    color: #4e4d5e;
    font-weight: 600;
    margin: 20px auto;
    padding-bottom: 20px;
    border-bottom: 1px solid #c9c6df; }

.tm-commentbox-singlefield {
  margin-bottom: 20px; }
  .tm-commentbox-singlefield .form-control {
    border: transparent;
    background-color: #f8f7ff;
    height: 50px;
    padding: 15px;
    font-size: 16px;
    color: #4d5375;
    letter-spacing: 0px;
    border-radius: 0px; }
  .tm-commentbox-singlefield textarea {
    height: 190px !important;
    border-radius: 0px; }

.bdc-btn-box {
  text-align: left; }

.tm-commentbox-singlefield button {
  font-size: 18px;
  height: 50px;
  color: #fff;
  background-color: #130e1c;
  letter-spacing: 0px;
  font-weight: 500;
  border: none;
  padding: 10px 25px;
  border-radius: 0px;
  cursor: pointer;
  min-width: 125px;
  text-align: center;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }
  .tm-commentbox-singlefield button:hover {
    background-color: #ff6c57; }

/* =========== Blog END =========== */
/*----------------------------------------*/
/*  12. Portfolio Page
/*----------------------------------------*/
.portfolio-area {
  position: relative;
  text-align: center; }

.shuffleFilter label:focus,
.shuffleFilter label.btn.active.focus {
  outline: none;
  box-shadow: none; }

.psFilter {
  position: relative;
  margin: 25px auto 60px; }
  @media (max-width: 767px) {
    .psFilter {
      display: block; } }
  .psFilter label {
    position: relative;
    color: #36354a;
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 17px;
    font-weight: 600;
    margin: 10px;
    padding: 2px; }
    @media (max-width: 767px) {
      .psFilter label {
        flex: unset !important; } }
    .psFilter label:after {
      position: absolute;
      content: '';
      width: 100%;
      height: 1px;
      background-color: #36354a;
      bottom: 0;
      left: 0;
      opacity: 0; }
    .psFilter label:hover:after {
      opacity: 1; }
  .psFilter label.active:after {
    opacity: 1; }

@media (max-width: 767px) {
  .portfolio-shuffle {
    text-align: center;
    max-width: 345px;
    margin: 0 auto; } }

.single-shuffle {
  position: relative;
  max-width: 345px;
  margin: 15px auto;
  height: 345px; }
  @media only screen and (min-width: 992px) and (max-width: 1200px) {
    .single-shuffle {
      height: 300px;
      width: 300px; } }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .single-shuffle {
      height: 320px;
      width: 320px; } }
  .single-shuffle:hover .ssp-hover {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 1; }

.ssp-hover {
  position: absolute;
  height: 0%;
  width: 0%;
  top: 50%;
  left: 50%;
  text-align: center;
  opacity: 0;
  padding-top: calc(50% - 20px);
  background-color: rgba(54, 53, 74, 0.6);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }
  .ssp-hover i {
    color: #fff;
    font-size: 30px; }

.ssp-img {
  width: 100%;
  height: 100%; }
  .ssp-img img {
    height: 100%;
    width: 100%; }

.Ssizer-element {
  z-index: -1; }

@media (max-width: 767px) {
  .pShuffle2 {
    max-width: 270px;
    margin: 0 auto; } }

.psFilter2 {
  position: relative;
  background-color: #f7f7f7;
  overflow: hidden;
  border-radius: 5px;
  margin: 20px auto 50px; }
  @media (max-width: 767px) {
    .psFilter2 {
      display: block; } }
  @media (max-width: 767px) {
    .psFilter2 label {
      flex: unset !important; } }
  .psFilter2 label.btn.active {
    background-color: #ff0997;
    color: #fff; }
  .psFilter2 label.btn {
    font-size: 16px;
    letter-spacing: 0px;
    padding: 10px 20px;
    color: #36354a;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }
    .psFilter2 label.btn:hover {
      background-color: #ff0997;
      color: #fff; }

.sSf2 {
  max-width: 250px;
  height: 250px;
  margin: 15px 10px; }
  @media only screen and (min-width: 992px) and (max-width: 1200px) {
    .sSf2 {
      height: 300px;
      width: 300px; } }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .sSf2 {
      height: 210px;
      width: 210px; } }
  .sSf2 .ssp-hover {
    margin: 25px;
    padding-top: 25%;
    background-color: rgba(255, 255, 255, 0.9); }
    .sSf2 .ssp-hover i {
      color: #ff0997;
      border: 2px solid #ff0997;
      height: 40px;
      width: 40px;
      border-radius: 50%;
      text-align: center;
      font-size: 20px;
      padding-top: 9px; }
    .sSf2 .ssp-hover h5 {
      font-size: 16px;
      letter-spacing: 0px;
      color: #36354a;
      font-weight: 600;
      margin: 10px auto 0px; }
    .sSf2 .ssp-hover p {
      font-size: 12px;
      letter-spacing: 0px;
      color: #36354a;
      font-weight: 600;
      line-height: 18px; }
  .sSf2:hover .ssp-hover {
    margin: 25px;
    width: calc(100% - 50px);
    height: calc(100% - 50px); }

.portfolio3-wrapper {
  position: relative;
  margin: 25px -15px;
  overflow: hidden; }

.portfolio3-carousel {
  position: relative; }
  .portfolio3-carousel .owl-nav {
    width: 100%;
    position: absolute;
    top: calc(50% - 35px);
    z-index: 1; }
  .portfolio3-carousel .owl-nav [class*=owl-] {
    background-color: transparent;
    font-size: 24px;
    border: 2px solid #fff;
    border-radius: 50%;
    text-align: center;
    height: 50px;
    width: 50px;
    padding-top: 9px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }
  .portfolio3-carousel .owl-nav .owl-prev {
    float: left;
    margin-left: calc(30% - 20px); }
  .portfolio3-carousel .owl-nav .owl-next {
    float: right;
    margin-right: calc(30% - 25px); }
  .portfolio3-carousel .owl-nav [class*=owl-]:hover {
    background-color: #ff6c57;
    border-color: #ff6c57; }

.port3-single {
  height: 400px; }
  @media (max-width: 767px) {
    .port3-single {
      height: 300px; } }
  .port3-single img {
    height: 100%;
    width: 100%; }

.pdp-img {
  position: relative;
  max-width: 1140px;
  width: 100%;
  margin: 30px auto; }
  .pdp-img img {
    width: 100%; }

.pdp-text h4 {
  font-size: 24px;
  letter-spacing: 0px;
  color: #4d5375;
  line-height: 28px;
  font-weight: 500;
  margin: 10px auto; }
.pdp-text p {
  color: #717484;
  font-size: 16px;
  letter-spacing: 0px;
  line-height: 22px;
  margin: 25px auto; }

.pdp-next-prev {
  position: relative;
  margin: 30px auto;
  border-top: 1px solid #e4e4e9;
  padding: 30px 0px;
  width: 100%; }
  @media (max-width: 479px) {
    .pdp-next-prev {
      display: none; } }
  .pdp-next-prev a {
    position: relative;
    padding: 10px 80px;
    display: inline-block;
    width: calc(50% - 3px); }
    @media (max-width: 991px) {
      .pdp-next-prev a {
        padding: 2px 60px; } }
    .pdp-next-prev a i {
      color: #fff;
      background-color: #6d6d7e;
      padding: 20px;
      font-size: 25px;
      position: absolute;
      top: 0; }
    .pdp-next-prev a h5 {
      font-size: 24px;
      letter-spacing: 0px;
      color: #6d6d7e;
      font-weight: 500;
      line-height: 26px; }
      @media (max-width: 991px) {
        .pdp-next-prev a h5 {
          font-size: 16px; } }
    .pdp-next-prev a p {
      font-size: 16px;
      letter-spacing: 0px;
      color: #6d6d7e;
      line-height: 22px; }
      @media (max-width: 991px) {
        .pdp-next-prev a p {
          font-size: 10px; } }
  .pdp-next-prev a.pdp-prev {
    text-align: left; }
    @media (max-width: 991px) {
      .pdp-next-prev a.pdp-prev {
        padding-right: 10px; } }
    .pdp-next-prev a.pdp-prev i {
      left: 0; }
      @media (max-width: 991px) {
        .pdp-next-prev a.pdp-prev i {
          font-size: 18px;
          padding: 16px; } }
  .pdp-next-prev a.pdp-next {
    text-align: right; }
    @media (max-width: 991px) {
      .pdp-next-prev a.pdp-next {
        padding-left: 10px; } }
    .pdp-next-prev a.pdp-next i {
      right: 0; }
      @media (max-width: 991px) {
        .pdp-next-prev a.pdp-next i {
          font-size: 18px;
          padding: 16px; } }

.pdp-meta {
  position: relative;
  background-color: #ff6c57;
  padding: 25px 20px;
  margin: 15px auto; }

ul.pdp-m-list {
  position: relative;
  padding: 0;
  list-style-type: none;
  margin: 0px auto; }
  ul.pdp-m-list li {
    font-size: 18px;
    letter-spacing: 0px;
    color: #fff;
    line-height: 22px;
    margin: 10px auto;
    font-weight: 300; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      ul.pdp-m-list li {
        font-size: 14px;
        line-height: 16px; } }
    ul.pdp-m-list li span {
      font-weight: 700; }

/* =========== Portfolio END =========== */
/*----------------------------------------*/
/*  11. Services Page
/*----------------------------------------*/
.single-services {
  position: relative;
  max-width: 350px;
  margin: 15px auto;
  padding: 25px;
  text-align: center;
  border-radius: 5px;
  background-color: #f7f7f7;
  overflow: hidden; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .single-services {
      padding: 15px; } }
  .single-services:before {
    position: absolute;
    content: '';
    height: 0;
    width: 0;
    left: 50%;
    top: 50%;
    opacity: 0;
    transform: rotate(200deg);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }
  .single-services:hover:before {
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    transform: rotate(360deg);
    opacity: 1; }
  .single-services:hover h4, .single-services:hover p, .single-services:hover a {
    color: #fff; }
  .single-services:hover .s-single-icon {
    background-color: #fff;
    transform: rotate(-360deg); }
    .single-services:hover .s-single-icon i {
      color: #fd3752; }

.s-single-icon {
  position: relative;
  height: 80px;
  width: 80px;
  text-align: center;
  border-radius: 50%;
  padding-top: 25px;
  margin: 15px auto;
  background-color: #fd3752;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }
  .s-single-icon i {
    font-size: 36px;
    color: #fff; }

.s-single-text {
  position: relative; }
  .s-single-text h4 {
    font-size: 24px;
    color: #4d5375;
    letter-spacing: 0px;
    font-weight: 500;
    margin: 15px auto; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .s-single-text h4 {
        font-size: 15px;
        font-size: 16px;
        line-height: 22px;
        margin: 10px auto; } }
  .s-single-text p {
    font-size: 16px;
    color: #707383;
    line-height: 24px;
    font-weight: 600;
    margin: 15px auto; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .s-single-text p {
        font-size: 14px;
        margin: 0px auto;
        padding: 0;
        line-height: 20px; } }
  .s-single-text a {
    font-size: 16px;
    color: #707383;
    letter-spacing: 0px;
    text-decoration: underline;
    display: inline-block; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .s-single-text a {
        font-size: 14px; } }

/* =========== Services END =========== */
/*----------------------------------------*/
/*  14. FAQ Page
/*----------------------------------------*/
.faq-box .card {
	border: none;
	margin: 30px auto;
	background-color: #f8f9ff;
	border-radius: 5px !important;
	overflow: hidden;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}
  .faq-box .card .card-header {
    padding: 0px;
    border: none; }
.faq-box .card .card-header button {
	font-size: 22px;
	line-height: 20px;
	font-weight: 600;
	letter-spacing: 0px;
	color: #fff;
	background-image: linear-gradient(90deg, rgba(74, 240, 71, 1), rgba(54, 145, 29, 1));
	border: none;
	text-align: left;
	padding: 20px 10px 20px 25px;
	text-transform: capitalize;
}
      @media only screen and (min-width: 992px) and (max-width: 1200px) {
        .faq-box .card .card-header button {
          font-size: 12px;
          padding: 15px 8px; } }
      @media only screen and (min-width: 768px) and (max-width: 991px) {
        .faq-box .card .card-header button {
          font-size: 8px;
          padding: 15px 5px 15px 10px; } }
      @media (max-width: 767px) {
        .faq-box .card .card-header button {
          font-size: 10px; } }
      @media (max-width: 479px) {
        .faq-box .card .card-header button {
          padding: 15px 5px 15px 12px;
          font-size: 8px;
          font-weight: 700; } }
      .faq-box .card .card-header button:focus {
        outline: none;
        border: none;
        box-shadow: none; }
  .faq-box .card .card-body {
    padding: 0px 15px 5px 25px; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .faq-box .card .card-body {
        padding: 0px 5px 5px 15px; } }
    @media (max-width: 479px) {
      .faq-box .card .card-body {
        padding: 0px 15px 5px 12px; } }
    .faq-box .card .card-body p {
      font-size: 14px;
      letter-spacing: 0px;
      line-height: 22px;
      text-align: left;
      margin-bottom: 20px; }
      @media only screen and (min-width: 768px) and (max-width: 991px) {
        .faq-box .card .card-body p {
          font-size: 12px;
          line-height: 18px; } }
      @media (max-width: 767px) {
        .faq-box .card .card-body p {
          font-size: 12px;
          line-height: 20px; } }
      @media (max-width: 479px) {
        .faq-box .card .card-body p {
          font-size: 10px;
          line-height: 18px; } }

.accordion-header {
  padding: 5px;
  width: 100%;
  background-color: #5b6c88;
  border-radius: 0;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px; }

.accordion button.collapsed::after, .accordion button::after {
	background-color: #fff;
	color: #37931e;
	height: 30px;
	width: 30px;
	border-radius: 50%;
	text-align: center;
	top: 0;
	padding-top: 5px;
	padding-left: 5px;
	font-size: 16px;
	margin-top: -6px;
	margin-bottom: -10px;
}
  @media (max-width: 991px) {
    .accordion button.collapsed:after,
    .accordion button:after {
      height: 20px;
      width: 20px;
      font-size: 10px;
      padding-top: 0px;
      margin-top: 0px; } }
.accordion button:after {
  float: right !important;
  content: '\f068';
  font-family: fontAwesome;
  padding-right: 5px;
  background-color: #ff6c57; }
.accordion button.collapsed:after {
  float: right !important;
  content: '\f067';
  font-family: fontAwesome; }

/* =========== FAQ END =========== */
/*----------------------------------------*/
/*  13. Contact Page
/*----------------------------------------*/
.contact-map {
  position: relative;
  margin: 50px auto; }

.contact-formV1 {
  position: relative;
  margin: 50px auto; }
  .contact-formV1 form h4 {
    font-size: 30px;
    letter-spacing: 0px;
    color: #4d5375;
    font-weight: 500;
    line-height: 36px;
    margin-bottom: 20px; }
    @media (max-width: 767px) {
      .contact-formV1 form h4 {
        font-size: 24px;
        line-height: 26px; } }
  .contact-formV1 form .form-group {
    margin-bottom: 30px; }
  .contact-formV1 form input {
    color: #4d5375;
    font-size: 16px;
    letter-spacing: 0px;
    height: 60px;
    padding-left: 20px;
    background-color: #f7f7f7;
    border-radius: 5px;
    border-color: transparent; }
  .contact-formV1 form input:focus,
  .contact-formV1 form textarea:focus {
    outline: none;
    border-color: transparent;
    box-shadow: none;
    background-color: #f7f7f7; }
  .contact-formV1 form textarea {
    color: #4d5375;
    font-size: 16px;
    letter-spacing: 0px;
    min-height: 150px;
    padding-left: 20px;
    background-color: #f7f7f7;
    border-radius: 5px;
    border-color: transparent;
    padding-top: 15px; }

.cf-btn {
  font-size: 16px;
  letter-spacing: 0px;
  color: #fff;
  background-color: #13142c;
  border-color: #13142c;
  padding: 5px 25px;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-weight: 600; }
  .cf-btn:hover {
    -webkit-box-shadow: 0px 0px 13px -1px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 13px -1px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 13px -1px rgba(0, 0, 0, 0.75); }

.ca-single-icon-text {
  position: relative;
  text-align: center;
  max-width: 300px;
  margin: 25px auto;
  padding: 25px 15px; }
  .ca-single-icon-text:hover i {
    transform: scaleX(-1); }
  .ca-single-icon-text i {
    height: 55px;
    width: 55px;
    text-align: center;
    background-color: #ff6c57;
    color: #fff;
    font-size: 30px;
    padding-top: 12px;
    border-radius: 5px;
    margin-bottom: 20px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }
  .ca-single-icon-text p {
    font-size: 18px;
    letter-spacing: 0px;
    color: #717484;
    line-height: 25px;
    font-weight: 500; }
    @media (max-width: 767px) {
      .ca-single-icon-text p {
        font-size: 14px;
        line-height: 18px; } }

#googleMap {
  height: 460px;
  width: 100%; }

.cf-msg {
  padding: 10px;
  text-align: center;
  margin-bottom: 30px; }
  .cf-msg p {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0;
    color: #717484;
    text-transform: capitalize; }

.contact-formV2 {
  position: relative;
  max-width: 767px;
  margin: 25px auto; }
  .contact-formV2 h4 {
    font-size: 30px;
    letter-spacing: 0px;
    color: #4d5375;
    font-weight: 600;
    line-height: 36px;
    margin-bottom: 15px; }
  .contact-formV2 form {
    position: relative;
    background-color: #f6f6f6;
    padding: 30px;
    border-radius: 5px; }
    .contact-formV2 form input,
    .contact-formV2 form textarea {
      height: 50px;
      border-radius: 5px;
      font-size: 14px;
      letter-spacing: 0px;
      padding-left: 15px;
      border-color: transparent;
      background-color: #fff;
      margin-bottom: 25px;
      color: #3b3f54; }
    .contact-formV2 form label {
      font-size: 16px;
      letter-spacing: 0px;
      font-weight: 600;
      color: #3b3f54; }
    .contact-formV2 form textarea {
      height: 150px; }

/* =========== Contact END =========== */
/* -------- Error  -------- */
.error-content {
  position: relative;
  max-width: 767px;
  margin: 25px auto;
  padding: 25px; }
  .error-content .ec-img {
    max-width: 500px;
    margin: 0 auto; }
  .error-content .ec-text {
    position: relative;
    text-align: center;
    margin: 25px auto;
    max-width: 500px; }
    .error-content .ec-text h3 {
      color: #717484;
      letter-spacing: 0px;
      font-size: 36px;
      font-weight: 600;
      margin: 25px auto;
      line-height: 44px; }
    .error-content .ec-text p {
      font-size: 16px;
      line-height: 22px;
      margin: 25px auto; }

/* -------- Error END -------- */
/* -------- 2.9 Newsletter  -------- */
.newsletter-area {
    position: relative;
    padding-top: 0px;
    margin-bottom: -68px;
    z-index: 1;
    margin-top: -72px;
}
  @media (max-width: 991px) {
    .newsletter-area {
      margin-bottom: -75px; } }

.news-letter-box {
  position: relative;
  text-align: center;
  background-color: #fff;
  padding: 30px 50px;
  border-radius: 10px;
  box-shadow: 0px 0px 50px 0px rgba(77, 83, 117, 0.15);
  max-width: 992px;
  margin-left: auto;
  margin-right: auto; }
  @media (max-width: 991px) {
    .news-letter-box {
      padding: 40px; } }

form.nl-form {
  position: relative;
  max-width: 992px;
  margin: 0 auto; }
form.nl-form input {
    width: 100%;
    font-size: 16px;
    height: 80px;
    padding: 25px;
    letter-spacing: 0px;
    border-radius: 10px;
    color: #717484;
    background-color: #fff;
    box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
    border: 2px solid #cccccc6b;
}
    @media (max-width: 991px) {
      form.nl-form input {
        height: 60px;
        font-size: 12px; } }
  form.nl-form button {
    position: absolute;
    font-size: 30px;
    top: 4px;
    right: 4px;
    height: 72px;
    width: 90px;
    border-radius: 10px;
    border: none;
    color: #fff;
    background-color: #ff0997; }
    @media (max-width: 991px) {
      form.nl-form button {
        height: 52px;
        font-size: 24px;
        width: 65px; } }
    form.nl-form button:hover {
      cursor: pointer; }
    form.nl-form button:focus {
      outline: none; }

/* -------- Newsletter  END -------- */
/* -------- 2.10 Footer  -------- */
.footer-area {
  position: relative;
  background-image: url("../img/bg/footer-bg.jpg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-area {
      padding: 25px 0px 0px; } }

.footer-logo {
    position: relative;
    text-align: center;
    padding: 15px 0px 30px;
}
  .footer-logo img {
    display: inline-block; }

@media (max-width: 767px) {
  .footer-text {
    text-align: center;
    margin-bottom: 40px; } }

.footer-widgeet-area {
    position: relative;
    display: flex;
    padding: 80px 0px 20px;
}
  @media (max-width: 991px) {
    .footer-widgeet-area {
      display: block;
      padding: 45px 0px 45px; } }

.footer-links-wrapper {
  position: relative;
  margin: 0px -15px;
  display: flex; }
  @media (max-width: 767px) {
    .footer-links-wrapper {
      display: block;
      margin: 0px;
      text-align: center; }
      .footer-links-wrapper .footer-widget {
        margin-bottom: 50px; } }

.footer-widget {
  position: relative;
  display: inline-block; }
  .footer-widget h4 {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0px;
    font-weight: 600;
    text-align: left;
    margin-bottom: 20px;
    color: #fff; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .footer-widget h4 {
        font-size: 16px;
        margin-bottom: 10px; } }
    @media (max-width: 767px) {
      .footer-widget h4 {
        text-align: center; } }
  .footer-widget p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 20px;
    color: #d3caef; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .footer-widget p {
        font-size: 12px;
        line-height: 14px;
        margin-bottom: 12px; } }

.footer-links {
  width: 25%;
  max-width: 160px;
  margin: 0 auto; }
  @media (max-width: 767px) {
    .footer-links {
      width: 50%;
      max-width: 200px; } }
  .footer-links ul.fl-list {
    position: relative;
    padding: 0px;
    list-style-type: none; }
    .footer-links ul.fl-list li {
      font-size: 14px;
      line-height: 24px;
      letter-spacing: 0px;
      color: #d3caef; }
      .footer-links ul.fl-list li a {
        letter-spacing: 0px;
        font-size: 14px;
        line-height: 24px;
        display: inline-block;
        color: #d3caef; }
        @media only screen and (min-width: 768px) and (max-width: 991px) {
          .footer-links ul.fl-list li a {
            font-size: 12px;
            line-height: 22px; } }
        .footer-links ul.fl-list li a:hover {
          color: #fff; }

.footer-copyright-area {
  position: relative;
  text-align: center;
  padding: 15px 0px;
  background-color: #17171b; }

.footer-copyright-area p {
  font-size: 14px;
  letter-spacing: 0px;
  color: #fff; }
  .footer-copyright-area p a {
    font-size: 14px;
    letter-spacing: 0px;
    color: #fff; }
    .footer-copyright-area p a:hover {
      color: #ff6c57; }

/* -------- Footer  END -------- */
/*----------------------------------------*/
/*  Homepage RTL Support
/*----------------------------------------*/
html[dir="rtl"] .logo {
  text-align: right; }
html[dir="rtl"] .main-menu nav > ul {
  text-align: left; }
html[dir="rtl"] .heroImg-s1 {
  left: -120px;
  top: -200px;
  right: 0px; }
html[dir="rtl"] .hero-text {
  text-align: right; }
  @media (max-width: 767px) {
    html[dir="rtl"] .hero-text {
      text-align: center; } }
html[dir="rtl"] .details-about-area .section-text {
  text-align: right; }
  @media (max-width: 767px) {
    html[dir="rtl"] .details-about-area .section-text {
      text-align: center; } }
html[dir="rtl"] .section-text .section-title {
  text-align: right; }
  @media (max-width: 767px) {
    html[dir="rtl"] .section-text .section-title {
      text-align: center; } }
@media (max-width: 767px) {
  html[dir="rtl"] .fun-fact-area .section-title {
    text-align: center; } }
@media (max-width: 767px) {
  html[dir="rtl"] .fun-fact-area .section-text {
    text-align: center; } }
html[dir="rtl"] .sIs-1-wrapper {
  direction: ltr; }
html[dir="rtl"] .fun-fact-area {
  text-align: right; }
html[dir="rtl"] .testimonial-area {
  direction: ltr; }
html[dir="rtl"] .single-testimonial {
  text-align: right; }
html[dir="rtl"] .tclients-name {
  text-align: left; }
html[dir="rtl"] .tclients-designation {
  display: block;
  text-align: left; }
html[dir="rtl"] .single-blog.sb-V1 {
  text-align: right; }
html[dir="rtl"] form.nl-form input {
  padding-right: 120px; }
html[dir="rtl"] .footer-widget {
  text-align: right; }
  @media (max-width: 767px) {
    html[dir="rtl"] .footer-widget {
      text-align: center; } }
html[dir="rtl"] .footer-widget h4 {
  text-align: right; }
  @media (max-width: 767px) {
    html[dir="rtl"] .footer-widget h4 {
      text-align: center; } }
html[dir="rtl"] .how-help-area .section-text {
  text-align: right; }
html[dir="rtl"] .about-area2 .section-text {
  text-align: right; }
  @media (max-width: 767px) {
    html[dir="rtl"] .about-area2 .section-text {
      text-align: center; } }
html[dir="rtl"] .features-single {
  text-align: right; }
html[dir="rtl"] .integration-area .section-text {
  text-align: right; }
html[dir="rtl"] .pricing2-area .section-text {
  text-align: right; }
  @media (max-width: 767px) {
    html[dir="rtl"] .pricing2-area .section-text {
      text-align: center; } }
html[dir="rtl"] .testimonial2-wrapper {
  direction: ltr; }
html[dir="rtl"] .single-2testimonial .s2t-text {
  direction: rtl;
  text-align: right; }
html[dir="rtl"] .single-2testimonial .s2t-client {
  direction: rtl;
  text-align: right; }
html[dir="rtl"] .single-blogV2 {
  text-align: right; }
html[dir="rtl"] .princing-2-content {
  direction: ltr; }
html[dir="rtl"] .heroV2 .hero-text {
  text-align: center; }
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html[dir="rtl"] .p2c-single:first-child {
    margin-right: -150px; } }
html[dir="rtl"] .how-help-area .section-text {
  text-align: right; }
html[dir="rtl"] .section-btn a {
  margin-left: 25px;
  margin-right: 0px; }
html[dir="rtl"] .heroV3 {
  direction: ltr; }
html[dir="rtl"] .about-area3 {
  direction: ltr; }
html[dir="rtl"] .au-list-box {
  direction: rtl;
  text-align: right; }
html[dir="rtl"] ul.au-list li {
  padding-right: 25px; }
html[dir="rtl"] ul.au-list li:before {
  left: unset;
  right: 0; }
html[dir="rtl"] .hiw-text {
  text-align: right; }
html[dir="rtl"] .testimonial3-wrapper {
  direction: ltr; }
html[dir="rtl"] .single-3testimonial {
  text-align: right;
  display: rtl; }
html[dir="rtl"] .single-blogV3 {
  text-align: right; }
@media (max-width: 767px) {
  html[dir="rtl"] .section-text p {
    text-align: center; } }
@media (max-width: 767px) {
  html[dir="rtl"] .section-btn {
    text-align: center; } }
html[dir="rtl"] .hero-area .hero-btn a:first-child {
  margin-right: 0;
  margin-left: 25px; }
html[dir="rtl"] .about-area3 .section-text {
  text-align: right; }
  @media (max-width: 767px) {
    html[dir="rtl"] .about-area3 .section-text {
      text-align: center; } }
@media (max-width: 767px) {
  html[dir="rtl"] .how-help-area .section-text {
    text-align: center; } }
html[dir="rtl"] .invention-area {
  direction: ltr; }
html[dir="rtl"] .invention-area .section-text {
  direction: rtl;
  text-align: right; }
html[dir="rtl"] .invention-area .section-title {
  margin-right: 0px; }
html[dir="rtl"] .where-use-area {
  direction: ltr;
  overflow: hidden; }
html[dir="rtl"] .where-use-area .section-text {
  direction: rtl;
  text-align: right; }
html[dir="rtl"] .pricing8-area {
  direction: ltr; }
html[dir="rtl"] .pricing8-area .section-text {
  direction: rtl;
  text-align: right; }
html[dir="rtl"] .heroV9 .heroImg9 img {
  margin-right: 65px;
  margin-left: -250px; }
html[dir="rtl"] .heroV11 .hero-text {
  text-align: center; }
html[dir="rtl"] .breadcrumb-area .page-title {
  text-align: right; }
html[dir="rtl"] .section-text.more-about-text {
  text-align: right; }
html[dir="rtl"] .blog-pagination nav ul {
  direction: ltr; }
html[dir="rtl"] .widget {
  text-align: right; }
html[dir="rtl"] .sidebar-author {
  text-align: center; }
html[dir="rtl"] .single-blogV4 {
  text-align: right; }
html[dir="rtl"] .blog-v4-bottom {
  text-align: left; }
html[dir="rtl"] .tm-comment-content {
  text-align: right; }
html[dir="rtl"] .contact-formV1 {
  text-align: right; }
html[dir="rtl"] .contact-formV2 {
  text-align: right; }
html[dir="rtl"] .faq-box .card .card-header button {
  text-align: right; }
html[dir="rtl"] .accordion button:after {
  margin-left: 5px; }
html[dir="rtl"] .faq-box .card .card-body p {
  text-align: right; }
html[dir="rtl"] .portfolio3-wrapper {
  direction: ltr; }
html[dir="rtl"] .pdp-next-prev {
  direction: ltr; }
html[dir="rtl"] .pdp-text {
  text-align: right; }
html[dir="rtl"] ul.pdp-m-list {
  text-align: right; }

/*--------- Homepage RTL Support END -----------*/

/* 
--------------------------
- Your Custom SCSS
--------------------------
*/


/*----------------------------------------*/
/*  18. PAYMENT CSS START
/*----------------------------------------*/
.tp-payment__mlr {
  margin-left: 100px;
  margin-right: 100px;
}
.tp-payment__title-box p {
  font-weight: 400;
  font-size: 20px;
  color: var(--tp-grey-1);
}
@media (max-width: 767px) {
  .tp-payment__title-box p {
    font-size: 16px;
  }
}
.tp-payment__item {
  background: linear-gradient(284.05deg, #EBD1FF 8.66%, rgba(244, 233, 252, 0.54) 92.88%);
  border-radius: 40px;
  padding: 55px 70px;
  overflow: hidden;
  min-height: 440px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-payment__item {
    padding: 35px;
  }
}
@media (max-width: 767px) {
  .tp-payment__item {
    padding: 30px;
  }
}
.tp-payment__title {
  font-weight: 600;
  font-size: 30px;
  line-height: 40px;
  font-family: var(--tp-ff-mont);
  padding-bottom: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-payment__title {
    font-size: 20px;
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  .tp-payment__title {
    font-size: 24px;
    line-height: 28px;
  }
}
.tp-payment__content {
  position: relative;
  z-index: 9;
}
.tp-payment__content.tp-payment__content-space {
  padding-top: 35px;
}
.tp-payment__content p {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  padding-bottom: 90px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-payment__content p br {
    display: none;
  }
}
@media (max-width: 767px) {
  .tp-payment__content p {
    font-size: 15px;
    padding-bottom: 10px;
  }
  .tp-payment__content p br {
    display: none;
  }
}
.tp-payment__content a {
  font-weight: 600;
  font-size: 16px;
  line-height: 12px;
  font-family: var(--tp-ff-mont);
  color: var(--tp-common-black);
  position: relative;
}
.tp-payment__content a::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: var(--tp-common-black);
  transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.tp-payment__content a i {
  margin-left: 6px;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.tp-payment__content a:hover {
  color: var(--tp-common-black);
}
.tp-payment__content a:hover::after {
  width: 100%;
}
.tp-payment__content a:hover i {
  transform: translateX(4px);
}
.tp-payment__shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.tp-payment__shape-1 img {
  opacity: 0.1;
}
.tp-payment__shape-2 {
  position: absolute;
  bottom: -1px;
  right: 90px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-payment__shape-2 {
    right: 0;
  }
}
@media (max-width: 767px) {
  .tp-payment__shape-2 {
    position: relative;
    right: 0;
    padding-bottom: 0px;
    top: 30px;
  }
}
.tp-payment__shape-3 {
  position: absolute;
  bottom: 14%;
  right: 34%;
  z-index: -1;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-payment__shape-3 {
    bottom: -1%;
    right: 31%;
  }
}
.tp-payment__shape-4 {
  position: absolute;
  bottom: 16%;
  right: 36%;
}
.tp-payment__shape-5 {
  position: absolute;
  bottom: -26%;
  right: -3%;
}
.tp-payment__shape-6 {
  position: absolute;
  bottom: 9%;
  right: 4%;
  z-index: -1;
  opacity: 0.5;
}
.tp-payment__shape-7 {
  position: absolute;
  bottom: -4%;
  left: 10%;
}
.tp-payment__shape-7 img {
  width: 70%;
}
.tp-payment__shape-8 {
  position: absolute;
  bottom: 18%;
  left: -2%;
}
.tp-payment__shape-8 img {
  width: 80%;
}
.tp-payment__shape-9 {
  position: absolute;
  bottom: 6%;
  right: 0%;
}
.tp-payment__shape-10 {
  position: absolute;
  bottom: 12%;
  left: 0%;
}
.tp-payment__shape-11 {
  position: absolute;
  bottom: -5%;
  left: 31%;
}
.tp-payment__bg-color-2 {
  background: linear-gradient(142.23deg, #FFF7F1 7.63%, #FAE9EF 99.01%), linear-gradient(142.23deg, #FFF7F1 7.63%, #FAE9EF 99.01%);
  border-radius: 40px;
}
.tp-payment__bg-color-3 {
  background: linear-gradient(142.23deg, #F3F8FF 7.63%, #CEDBFF 99.01%);
  border-radius: 40px;
}

@media (max-width: 767px) {
  .tp-account-bg {
    margin-bottom: 60px;
  }
}

.tp-payment-method__space {
  padding-bottom: 250px;
}
@media (max-width: 767px) {
  .tp-payment-method__space {
    padding-bottom: 100px;
  }
}
.tp-payment-method__main-img {
  display: inline-block;
}
.tp-payment-method__main-img img {
  border-radius: 50%;
  box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.1);
  border-radius: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-payment-method__title-box {
    padding-bottom: 30px;
  }
}
.tp-payment-method__circle::after {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  background-color: #A7E771;
  border-radius: 50%;
  top: -3px;
  right: 0;
}
.tp-payment-method__circle.circle-1::after {
  animation: circle-animation 30s linear infinite;
}
.tp-payment-method__circle.circle-2::after {
  left: 0;
  animation: circle-animation-2 20s linear infinite;
}
.tp-payment-method__circle.circle-3::after {
  animation: circle-animation 30s linear infinite;
}
.tp-payment-method__circle.circle-4::after {
  left: 0;
  animation: circle-animation-2 20s linear infinite;
}
.tp-payment-method__circle.circle-5::after {
  animation: circle-animation 30s linear infinite;
}
.tp-payment-method__circle.circle-6::after {
  animation: circle-animation 30s linear infinite;
}
.tp-payment-method__circle.circle-7::after {
  left: 0;
  animation: circle-animation-2 20s linear infinite;
}
.tp-payment-method__circle.circle-8::after {
  animation: circle-animation 30s linear infinite;
}
.tp-payment-method__circle.circle-9::after {
  left: 0;
  animation: circle-animation-2 20s linear infinite;
}
.tp-payment-method__circle.circle-10::after {
  animation: circle-animation 30s linear infinite;
}
.tp-payment-method__circle.circle-11::after {
  left: 0;
  animation: circle-animation-2 20s linear infinite;
}
.tp-payment-method__circle.circle-12::after {
  animation: circle-animation 30s linear infinite;
}
.tp-payment-method__circle.circle-13::after {
  left: 0;
  animation: circle-animation-2 20s linear infinite;
}
.tp-payment-method__circle.circle-14::after {
  animation: circle-animation 30s linear infinite;
}
.tp-payment-method__circle.circle-15::after {
  left: 0;
  animation: circle-animation-2 20s linear infinite;
}
.tp-payment-method__circle.circle-16::after {
  animation: circle-animation 30s linear infinite;
}
.tp-payment-method__main-circle {
  display: inline-block;
}
.tp-payment-method__line-1 {
  position: absolute;
  left: -150%;
  top: 50%;
  transform: translate(-50%) rotate(-14deg);
  text-align: center;
  display: inline-block;
  transform-origin: right center;
  height: 1px;
  width: 610px;
  background-color: var(--tp-theme-2);
}
.tp-payment-method__line-1 span {
  transform: translateY(-50%) rotate(14deg);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-payment-method__line-1 {
    width: 510px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-payment-method__line-1 {
    width: 380px;
    left: -68%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-payment-method__line-1 {
    width: 250px;
    left: -35%;
    transform: translate(-50%) rotate(-18deg);
  }
  .tp-payment-method__line-1 span {
    transform: translateY(-50%) rotate(18deg);
  }
}
@media (max-width: 767px) {
  .tp-payment-method__line-1 {
    width: 140px;
    left: 6%;
  }
}
.tp-payment-method__line-2 {
  position: absolute;
  left: -9%;
  top: 50%;
  transform: translate(-50%) rotate(-44deg);
  text-align: center;
  display: inline-block;
  transform-origin: right center;
  height: 1px;
  width: 190px;
  background-color: var(--tp-theme-2);
}
.tp-payment-method__line-2 span {
  transform: translateY(-50%) rotate(44deg);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-payment-method__line-2 {
    width: 250px;
    left: -35%;
    transform: translate(-50%) rotate(-72deg);
  }
  .tp-payment-method__line-2 span {
    transform: translateY(-50%) rotate(72deg);
  }
}
@media (max-width: 767px) {
  .tp-payment-method__line-2 {
    width: 140px;
    left: 6%;
  }
}
.tp-payment-method__line-3 {
  position: absolute;
  left: -74%;
  top: 50%;
  transform: translate(-50%) rotate(-24deg);
  text-align: center;
  display: inline-block;
  transform-origin: right center;
  height: 1px;
  width: 380px;
  background-color: var(--tp-theme-2);
}
.tp-payment-method__line-3 span {
  transform: translateY(-50%) rotate(24deg);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-payment-method__line-3 {
    width: 250px;
    left: -35%;
    transform: translate(-50%) rotate(-51deg);
  }
  .tp-payment-method__line-3 span {
    transform: translateY(-50%) rotate(51deg);
  }
}
@media (max-width: 767px) {
  .tp-payment-method__line-3 {
    width: 140px;
    left: 6%;
    transform: translate(-50%) rotate(-43deg);
  }
  .tp-payment-method__line-3 span {
    transform: translateY(-50%) rotate(43deg);
  }
}
.tp-payment-method__line-4 {
  position: absolute;
  left: -90%;
  top: 50%;
  transform: translate(-50%) rotate(-2deg);
  text-align: center;
  display: inline-block;
  transform-origin: right center;
  height: 1px;
  width: 430px;
  background-color: var(--tp-theme-2);
}
.tp-payment-method__line-4 span {
  transform: translateY(-50%) rotate(2deg);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-payment-method__line-4 {
    width: 250px;
    left: -35%;
    transform: translate(-50%) rotate(-9deg);
  }
  .tp-payment-method__line-4 span {
    transform: translateY(-50%) rotate(9deg);
  }
}
@media (max-width: 767px) {
  .tp-payment-method__line-4 {
    width: 140px;
    left: 6%;
  }
}
.tp-payment-method__line-5 {
  position: absolute;
  left: -137%;
  top: 50%;
  transform: translate(-50%) rotate(10deg);
  text-align: center;
  display: inline-block;
  transform-origin: right center;
  height: 1px;
  width: 570px;
  background-color: var(--tp-theme-2);
}
.tp-payment-method__line-5 span {
  transform: translateY(-50%) rotate(-10deg);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-payment-method__line-5 {
    width: 380px;
    left: -68%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-payment-method__line-5 {
    width: 250px;
    left: -35%;
    transform: translate(-50%) rotate(14deg);
  }
  .tp-payment-method__line-5 span {
    transform: translateY(-50%) rotate(-14deg);
  }
}
@media (max-width: 767px) {
  .tp-payment-method__line-5 {
    width: 140px;
    left: 6%;
  }
}
.tp-payment-method__line-6 {
  position: absolute;
  left: -63%;
  top: 50%;
  transform: translate(-50%) rotate(26deg);
  text-align: center;
  display: inline-block;
  transform-origin: right center;
  height: 1px;
  width: 350px;
  background-color: var(--tp-theme-2);
}
.tp-payment-method__line-6 span {
  transform: translateY(-50%) rotate(-26deg);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-payment-method__line-6 {
    width: 250px;
    left: -35%;
    transform: translate(-50%) rotate(41deg);
  }
  .tp-payment-method__line-6 span {
    transform: translateY(-50%) rotate(-41deg);
  }
}
@media (max-width: 767px) {
  .tp-payment-method__line-6 {
    width: 140px;
    left: 6%;
  }
}
.tp-payment-method__line-7 {
  position: absolute;
  left: 6%;
  top: 50%;
  transform: translate(-50%) rotate(51deg);
  text-align: center;
  display: inline-block;
  transform-origin: right center;
  height: 1px;
  width: 140px;
  background-color: var(--tp-theme-2);
}
.tp-payment-method__line-7 span {
  transform: translateY(-50%) rotate(-51deg);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-payment-method__line-7 {
    width: 250px;
    left: -35%;
    transform: translate(-50%) rotate(63deg);
  }
  .tp-payment-method__line-7 span {
    transform: translateY(-50%) rotate(-63deg);
  }
}
@media (max-width: 767px) {
  .tp-payment-method__line-7 {
    width: 140px;
    left: 6%;
  }
}
.tp-payment-method__line-8 {
  position: absolute;
  left: 1%;
  top: 50%;
  transform: translate(-50%) rotate(130deg);
  text-align: center;
  display: inline-block;
  transform-origin: right center;
  height: 1px;
  width: 160px;
  background-color: var(--tp-theme-2);
}
.tp-payment-method__line-8 span {
  transform: translateY(-50%) rotate(-130deg);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-payment-method__line-8 {
    width: 250px;
    left: -35%;
    transform: translate(-50%) rotate(90deg);
  }
  .tp-payment-method__line-8 span {
    transform: translateY(-50%) rotate(-90deg);
  }
}
@media (max-width: 767px) {
  .tp-payment-method__line-8 {
    width: 140px;
    left: 6%;
  }
}
.tp-payment-method__line-9 {
  position: absolute;
  left: -73%;
  top: 50%;
  transform: translate(-50%) rotate(150deg);
  text-align: center;
  display: inline-block;
  transform-origin: right center;
  height: 1px;
  width: 380px;
  background-color: var(--tp-theme-2);
}
.tp-payment-method__line-9 span {
  transform: translateY(-50%) rotate(-150deg);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-payment-method__line-9 {
    width: 250px;
    left: -35%;
    transform: translate(-50%) rotate(116deg);
  }
  .tp-payment-method__line-9 span {
    transform: translateY(-50%) rotate(-116deg);
  }
}
@media (max-width: 767px) {
  .tp-payment-method__line-9 {
    width: 140px;
    left: 6%;
    transform: translate(-50%) rotate(99deg);
  }
  .tp-payment-method__line-9 span {
    transform: translateY(-50%) rotate(-99deg);
  }
}
.tp-payment-method__line-10 {
  position: absolute;
  left: -146%;
  top: 50%;
  transform: translate(-50%) rotate(160deg);
  text-align: center;
  display: inline-block;
  transform-origin: right center;
  height: 1px;
  width: 600px;
  background-color: var(--tp-theme-2);
}
.tp-payment-method__line-10 span {
  transform: translateY(-50%) rotate(-160deg);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-payment-method__line-10 {
    width: 380px;
    left: -68%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-payment-method__line-10 {
    width: 250px;
    left: -35%;
    transform: translate(-50%) rotate(142deg);
  }
  .tp-payment-method__line-10 span {
    transform: translateY(-50%) rotate(-142deg);
  }
}
@media (max-width: 767px) {
  .tp-payment-method__line-10 {
    width: 140px;
    left: 6%;
  }
}
.tp-payment-method__line-11 {
  position: absolute;
  left: -89%;
  top: 50%;
  transform: translate(-50%) rotate(170deg);
  text-align: center;
  display: inline-block;
  transform-origin: right center;
  height: 1px;
  width: 430px;
  background-color: var(--tp-theme-2);
}
.tp-payment-method__line-11 span {
  transform: translateY(-50%) rotate(-170deg);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-payment-method__line-11 {
    width: 250px;
    left: -35%;
    transform: translate(-50%) rotate(160deg);
  }
  .tp-payment-method__line-11 span {
    transform: translateY(-50%) rotate(-160deg);
  }
}
@media (max-width: 767px) {
  .tp-payment-method__line-11 {
    width: 140px;
    left: 6%;
    transform: translate(-50%) rotate(148deg);
  }
  .tp-payment-method__line-11 span {
    transform: translateY(-50%) rotate(-148deg);
  }
}
.tp-payment-method__line-12 {
  position: absolute;
  left: -146%;
  top: 50%;
  transform: translate(-50%) rotate(180deg);
  text-align: center;
  display: inline-block;
  transform-origin: right center;
  height: 1px;
  width: 600px;
  background-color: var(--tp-theme-2);
}
.tp-payment-method__line-12 span {
  transform: translateY(-50%) rotate(-180deg);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-payment-method__line-12 {
    width: 560px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-payment-method__line-12 {
    width: 380px;
    left: -68%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-payment-method__line-12 {
    width: 250px;
    left: -35%;
  }
}
@media (max-width: 767px) {
  .tp-payment-method__line-12 {
    width: 140px;
    left: 6%;
  }
}
.tp-payment-method__line-13 {
  position: absolute;
  left: -45%;
  top: 50%;
  transform: translate(-50%) rotate(190deg);
  text-align: center;
  display: inline-block;
  transform-origin: right center;
  height: 1px;
  width: 300px;
  background-color: var(--tp-theme-2);
}
.tp-payment-method__line-13 span {
  transform: translateY(-50%) rotate(-190deg);
}
.tp-payment-method__line-13 img {
  box-shadow: 0px 10px 50px rgba(32, 33, 36, 0.1);
  border-radius: 50%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-payment-method__line-13 {
    width: 250px;
    left: -35%;
    transform: translate(-50%) rotate(198deg);
  }
  .tp-payment-method__line-13 span {
    transform: translateY(-50%) rotate(-198deg);
  }
}
@media (max-width: 767px) {
  .tp-payment-method__line-13 {
    width: 140px;
    left: 6%;
  }
}
.tp-payment-method__line-14 {
  position: absolute;
  left: -129%;
  top: 50%;
  transform: translate(-50%) rotate(199deg);
  text-align: center;
  display: inline-block;
  transform-origin: right center;
  height: 1px;
  width: 550px;
  background-color: var(--tp-theme-2);
}
.tp-payment-method__line-14 span {
  transform: translateY(-50%) rotate(-199deg);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-payment-method__line-14 {
    width: 380px;
    left: -68%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-payment-method__line-14 {
    width: 250px;
    left: -35%;
    transform: translate(-50%) rotate(215deg);
  }
  .tp-payment-method__line-14 span {
    transform: translateY(-50%) rotate(-215deg);
  }
}
@media (max-width: 767px) {
  .tp-payment-method__line-14 {
    width: 140px;
    left: 6%;
  }
}
.tp-payment-method__line-15 {
  position: absolute;
  left: -70%;
  top: 50%;
  transform: translate(-50%) rotate(211deg);
  text-align: center;
  display: inline-block;
  transform-origin: right center;
  height: 1px;
  width: 370px;
  background-color: var(--tp-theme-2);
}
.tp-payment-method__line-15 span {
  transform: translateY(-50%) rotate(-211deg);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-payment-method__line-15 {
    width: 250px;
    left: -35%;
    transform: translate(-50%) rotate(236deg);
  }
  .tp-payment-method__line-15 span {
    transform: translateY(-50%) rotate(-236deg);
  }
}
@media (max-width: 767px) {
  .tp-payment-method__line-15 {
    width: 140px;
    left: 6%;
    transform: translate(-50%) rotate(236deg);
  }
  .tp-payment-method__line-15 span {
    transform: translateY(-50%) rotate(-236deg);
  }
}
.tp-payment-method__line-16 {
  position: absolute;
  left: -3%;
  top: 50%;
  transform: translate(-50%) rotate(228deg);
  text-align: center;
  display: inline-block;
  transform-origin: right center;
  height: 1px;
  width: 170px;
  background-color: var(--tp-theme-2);
}
.tp-payment-method__line-16 span {
  transform: translateY(-50%) rotate(-228deg);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-payment-method__line-16 {
    width: 250px;
    left: -35%;
    transform: translate(-50%) rotate(273deg);
  }
  .tp-payment-method__line-16 span {
    transform: translateY(-50%) rotate(-273deg);
  }
}
@media (max-width: 767px) {
  .tp-payment-method__line-16 {
    width: 140px;
    left: 6%;
    transform: translate(-50%) rotate(276deg);
  }
  .tp-payment-method__line-16 span {
    transform: translateY(-50%) rotate(-273deg);
  }
}
.tp-payment-method__line-1 span, .tp-payment-method__line-2 span, .tp-payment-method__line-3 span, .tp-payment-method__line-4 span, .tp-payment-method__line-5 span, .tp-payment-method__line-6 span, .tp-payment-method__line-7 span, .tp-payment-method__line-8 span, .tp-payment-method__line-9 span, .tp-payment-method__line-10 span, .tp-payment-method__line-11 span, .tp-payment-method__line-12 span, .tp-payment-method__line-13 span, .tp-payment-method__line-14 span, .tp-payment-method__line-15 span, .tp-payment-method__line-16 span {
  position: absolute;
  left: -40px;
  top: 50%;
}
.tp-payment-method__line-1 span:hover img, .tp-payment-method__line-2 span:hover img, .tp-payment-method__line-3 span:hover img, .tp-payment-method__line-4 span:hover img, .tp-payment-method__line-5 span:hover img, .tp-payment-method__line-6 span:hover img, .tp-payment-method__line-7 span:hover img, .tp-payment-method__line-8 span:hover img, .tp-payment-method__line-9 span:hover img, .tp-payment-method__line-10 span:hover img, .tp-payment-method__line-11 span:hover img, .tp-payment-method__line-12 span:hover img, .tp-payment-method__line-13 span:hover img, .tp-payment-method__line-14 span:hover img, .tp-payment-method__line-15 span:hover img, .tp-payment-method__line-16 span:hover img {
  transform: scale(1.1);
}
.tp-payment-method__wrapper {
  padding-top: 170px;
  padding-bottom: 150px;
}
@media (max-width: 767px) {
  .tp-payment-method__wrapper {
    padding-top: 130px;
  }
}

.tp-platform-text p {
  font-weight: 400;
  font-size: 17px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding-left: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-platform-text p {
    padding-left: 0;
  }
}
.tp-platform-text p::after {
  position: absolute;
  content: "";
  top: -4px;
  left: 0;
  height: 60px;
  width: 1.5px;
  background: rgba(255, 255, 255, 0.1);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-platform-text p::after {
    top: -15px;
  }
}

.row-custom {
  display: flex;
  margin: 0 -15px;
  padding-left: 30px;
  padding-right: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row-custom {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .row-custom {
    flex-direction: column;
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
  }
}

.col-custom {
  flex: 0.4;
  width: 90px;
  height: 360px;
  background-size: cover;
  margin: 15px;
  background: #3137D2;
  box-shadow: 0px -3px 0px #F8FF35;
  border-radius: 30px;
  padding: 50px 50px;
  transition: 0.3s;
  cursor: pointer;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .col-custom {
    padding: 40px 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .col-custom {
    padding: 40px 25px;
  }
}
@media (max-width: 767px) {
  .col-custom {
    width: 100%;
    padding: 40px 30px;
  }
}
.col-custom.active {
  flex: 7;
}
.col-custom.active .tp-panel-item {
  display: none;
}
.col-custom.active .tp-panel-item-2 {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition-delay: 0.3s;
  transition: 0.3s;
}

.tp-platform-inner .col-custom {
  background: #F5F3F8;
  box-shadow: 0px -3px 0px #6B14FA;
}
.tp-platform-inner .tp-panel-title {
  color: var(--tp-common-black);
}
.tp-platform-inner .tp-panel-content span {
  color: var(--tp-common-black);
}
.tp-platform-inner .tp-panel-content-2 span {
  color: var(--tp-common-black);
}
.tp-platform-inner .tp-panel-title-2 {
  color: var(--tp-common-black);
}
.tp-platform-inner .tp-panel-content-2 p {
  color: var(--tp-common-black);
}

.tp-panel-title {
  width: 200px;
  transform: rotate(90deg) translate(90px, 88px);
  font-weight: 500;
  font-size: 22px;
  line-height: 20px;
  color: #FFFFFF;
  opacity: 0.7;
  margin-bottom: 0;
}
.tp-panel-title.child-one {
  transform: rotate(90deg) translate(80px, 88px);
}
.tp-panel-title.child-three {
  transform: rotate(90deg) translate(75px, 88px);
}
.tp-panel-title.child-four {
  transform: rotate(90deg) translate(88px, 88px);
}

.tp-panel-content {
  text-align: center;
}
.tp-panel-content span {
  font-weight: 700;
  font-size: 26px;
  line-height: 28px;
  color: var(--tp-common-white);
  margin-left: -7px;
}

.tp-panel-content-2 span {
  font-weight: 700;
  font-size: 60px;
  line-height: 40px;
  color: var(--tp-common-white);
  padding-bottom: 80px;
  display: inline-block;
}
.tp-panel-content-2 p {
  font-weight: 400;
  font-size: 17px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.tp-panel-content-2 span {
  visibility: hidden;
  display: inline-block;
  opacity: 0;
  transform: translateY(5px);
  transition-delay: 0.4s;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.tp-panel-title-2 {
  transform: translateY(5px);
  visibility: hidden;
  opacity: 0;
  transition-delay: 0.2s;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.tp-panel-content-2 p {
  transform: translateY(5px);
  visibility: hidden;
  opacity: 0;
  transition-delay: 0.2s;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.col-custom.active .tp-panel-content-2 span {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
  transition-delay: 0.3s;
}

.col-custom.active .tp-panel-title-2 {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
  transition-delay: 0.4s;
}

.col-custom.active .tp-panel-content-2 p {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
  transition-delay: 0.4s;
}

.tp-panel-title-2 {
  font-weight: 600;
  font-size: 30px;
  line-height: 20px;
  color: var(--tp-common-white);
  padding-bottom: 15px;
}

.tp-panel-item-2 {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.7);
}

.tp-platform-img-box img {
  max-width: inherit;
  margin-left: -100px;
  animation: tptranslateX2 4s forwards infinite alternate;
}

.tp-platform-bg {
  background-size: cover;
  background-repeat: no-repeat;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-platform-section-box {
    margin-bottom: 40px;
  }
}

.tp-section-title-shape svg {
  position: absolute;
  bottom: -2px;
  left: 60px;
  z-index: -1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-section-title-shape svg {
    left: 33%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-section-title-shape svg {
    left: 21%;
  }
}
@media (max-width: 767px) {
  .tp-section-title-shape svg {
    left: 100px;
  }
}

.about_and_case_section {
    padding: 80px 0 81px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: rgb(227 240 255) !important;
}
.heading_block {
    margin-bottom: 40px;
}
.case_study_block {
	display: flex;
	overflow: hidden;
	align-items: center;
	background-color: #ffffff;
	border-radius: 10px;
	position: sticky;
	top: 100px;
	box-shadow: rgba(149, 157, 165, 0.09) 0px 8px 24px;
}
.case_study_block .case_study_image {
    order: 1;
    flex: 0 0 auto;
    max-width: 465px;
}
img:not([draggable]), embed, object, video {
    height: auto;
    max-width: 100%;
}
.case_study_block .case_study_content {
    padding: 50px 140px 50px 80px;
}
.category_list {
    gap: 20px;
}
[class*="unordered_list"] {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.case_study_block .case_title {
    font-size: 30px;
    line-height: 40px;
    margin: 16px 0 24px;
}
.case_study_block .case_title a {
    color: var(--bs-dark);
}
.section_decoration {
    z-index: 1;
    position: relative;
}
.case_study_block .icon_list {
    gap: 10px 50px;
    margin-bottom: 30px;
}
.case_study_block .case_technologies {
    gap: 20px;
    margin-bottom: 26px;
}
.about_and_case_section .container {
    width: 100%;
    max-width: 90%;
}
.order-1 {
    padding: 20px 20px 20px 45px;
    font-family: "Nunito", sans-serif;
}

    .feature-wrap{
      max-width:1100px; margin:48px auto; padding:0 16px;
    }
    .feature-grid{
      display:grid; gap:24px; grid-template-columns:repeat(3, 1fr);
    }
.feature-feature {
	display: grid;
	place-items: center;
	text-align: center;
	background: #fff;
	color: #000;
	padding: 20px 22px;
	border-radius: 15px;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	font-weight: 500;
	line-height: 1.25;
	font-size: 19px;
	min-height: 100px;
	transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
	border: 1px solid #37941e;
}
    .feature-feature:hover{ transform:translateY(-2px); background:var(--gold-hover); box-shadow:0 10px 22px rgba(0,0,0,.18); }

    /* Responsive */
    @media (max-width: 900px){ .feature-grid{ grid-template-columns:repeat(2, 1fr);} }
    @media (max-width: 560px){ .feature-grid{ grid-template-columns:1fr;} .feature-feature{ font-size:18px; }}

.breadcrumb-area::before {
	background: linear-gradient(-45deg, #ff6b6b, #f8c291, #1dd1a1, #54a0ff);
	background-size: 400% 400%;
	animation: gradientBG1 12s ease infinite;
	border-radius: 0px 0px 200px 200px;
}
   @keyframes gradientBG1 {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }
.container-fluid {
	width: 100%;
	padding-right: 0;
	padding-left: 0;
	margin-right: auto;
	margin-left: auto;
}

/* Your Custom SCSS END */

/*# sourceMappingURL=style.css.map */
