/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Common
# Animations
# Main Menu
# Sidemenu
# Banner One
# Page Header
# Footer
# Blog One
	## Blog Grid
	## Blog Details
# Sidebar
# Contact
# Call to Action One
	## Call to Action Two
	## Call to Action Three
	## Call to Action Four
# FAQ
# App shots
# Funfact
# Testimonials
# Pricing
# Video
# Brand One
# Service One
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/

/*
font-family: 'Quicksand', sans-serif;
*/

:root {
  --thm-font: "Nunito", sans-serif;
  --thm-base: #ffd295;
  --thm-base-rgb: 255, 134, 76;
  --thm-primary: #1293c8;
  --thm-primary-rgb: 18, 147, 200;
  --thm-black: #ee1b24;
  --thm-black-rgb: 63, 20, 116;
}

body {
  font-family: var(--thm-font);
  color: #111111;
  font-size: 18px;
  line-height: 36px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

a:active,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

/* block title */

.block-title {
  margin-bottom: 60px;
}

.block-title h3 {
  margin: 0;
  font-weight: 800;
  color: var(--thm-black);
  font-size: 46px;
  position: relative;
  top: -10px;
}

.block-title h3 span {
  color: var(--thm-base);
}

.block-title p {
  margin: 0;
  color: #111111;
  font-size: 20px;
  position: relative;
  top: 5px;
}

.thm-btn {
  display: inline-block;
  vertical-align: middle;
  border: none;
  outline: none;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  border-radius: 26px;
  background-size: auto 200%;
  background-image: linear-gradient(
    0deg,
    #1293c8 0%,
    #1fe4f2 51%,
    #1293c8 100%
  );
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background-position: top;
  padding: 8px 42px;
  position: relative;
  overflow: hidden;
}

.thm-btn::before {
  content: "";
  position: absolute;
  background-color: #fff;
  border-radius: 50%;
  opacity: 0.2;
  width: 32px;
  height: 32px;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}

.thm-btn:hover::before {
  animation: thmBtnRipple 2s cubic-bezier(0.47, 2.02, 0.31, -0.36) infinite;
}

@keyframes thmBtnRipple {
  0% {
    left: 10px;
  }

  100% {
    left: calc(100% - 10px);
  }
}

.thm-btn:hover {
  color: #fff;
  background-position: bottom;
}

/* bootstrap select */

.bootstrap-select .btn-light:not(:disabled):not(.disabled).active,
.bootstrap-select .btn-light:not(:disabled):not(.disabled):active,
.bootstrap-select .show > .btn-light.dropdown-toggle {
  background-color: transparent !important;
  box-shadow: none !important;
  outline: none !important;
}

.bootstrap-select > .dropdown-toggle {
  box-shadow: none !important;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select > select.mobile-device:focus + .dropdown-toggle {
  outline: none !important;
}

.bootstrap-select .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  z-index: 991;
  border-radius: 0;
}

.bootstrap-select .dropdown-menu > li + li > a {
  border-top: 1px solid var(--thm-gray);
}

.bootstrap-select .dropdown-menu > li.selected > a {
  background: var(--thm-primary);
  color: #fff;
}

.bootstrap-select .dropdown-menu > li > a {
  font-size: 16px;
  font-weight: 500;
  padding: 4px 20px;
  color: var(--thm-black);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.bootstrap-select .dropdown-menu > li > a:hover {
  background: var(--thm-primary);
  color: #fff;
  cursor: pointer;
}

/* datepicker */

.datepicker.dropdown-menu {
  min-width: 17rem;
}

.datepicker table {
  width: 100%;
}

.post-pagination {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  flex-wrap: wrap;
}

.post-pagination a {
  border-radius: 50%;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(225, 90, 19, 0.2);
  color: #9ca3a9;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  padding: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  width: 57px;
  height: 57px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.post-pagination a:hover {
  background-color: var(--thm-black);
  color: #fff;
}

.post-pagination a.active {
  background-color: var(--thm-base);
  color: #fff;
  cursor: auto;
}

.post-pagination a + a {
  margin-left: 15px;
}

.preloader {
  position: fixed;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9991;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  text-align: center;
}

.preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: preloaderMove;
  animation-name: preloaderMove;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.scroll-to-top {
  display: inline-block;
  width: 45px;
  height: 45px;
  /* background-image: linear-gradient(
    0deg,
    #7b22b0 0%,
    #e867ff 51%,
    #7b22b0 100%
  ); */
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 99;
  text-align: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: none;
  outline: none;
  background-size: auto 200%;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.scroll-to-top i {
  color: #ffffff;
  font-size: 18px;
  line-height: 45px;
}

.scroll-to-top:hover {
  background-position: bottom;
}

.scroll-to-top:hover i {
  color: #fff;
}

/* Cursor Style */
.cursor {
  position: absolute;
  background-color: #fff;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  z-index: 1;
  -webkit-transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity,
    0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity,
    0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
    0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
  transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
    0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity,
    0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  z-index: 10000;
  -webkit-transform: scale(1);
  transform: scale(1);
  visibility: hidden;
}

.cursor {
  visibility: visible;
}

.cursor.active {
  opacity: 0.5;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.cursor.hovered {
  opacity: 0.08;
}

.cursor-follower {
  position: absolute;
  background-color: RGBA(255, 255, 255, 0.3);
  width: 50px;
  height: 50px;
  border-radius: 100%;
  z-index: 1;
  -webkit-transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity,
    0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity,
    0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
    0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
  transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
    0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity,
    0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  z-index: 10000;
  visibility: hidden;
}

.cursor-follower {
  visibility: visible;
}

.cursor-follower.active {
  opacity: 0.7;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.cursor-follower.hovered {
  opacity: 0.08;
}

.cursor-follower.close-cursor:before {
  position: absolute;
  content: "";
  height: 25px;
  width: 2px;
  background: #fff;
  left: 48%;
  top: 12px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  display: inline-block;
}

.cursor-follower.close-cursor:after {
  position: absolute;
  content: "";
  height: 25px;
  width: 2px;
  background: #fff;
  right: 48%;
  top: 12px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/

@keyframes preloaderMove {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -360deg);
    transform: rotate3d(0, 0, 1, -360deg);
  }

  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes ImgBounce {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

@keyframes shapeMover {
  0%,
  100% {
    transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px)
      translateX(0);
  }

  50% {
    transform: perspective(400px) rotate(-45deg) translateZ(20px)
      translateY(20px) translateX(20px);
  }
}

@keyframes bubbleMover {
  0% {
    -webkit-transform: translateY(0px) translateX(0) rotate(0);
    transform: translateY(0px) translateX(0) rotate(0);
  }

  30% {
    -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
    transform: translateY(30px) translateX(50px) rotate(15deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }

  50% {
    -webkit-transform: translateY(50px) translateX(100px) rotate(45deg);
    transform: translateY(50px) translateX(100px) rotate(45deg);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }

  80% {
    -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
    transform: translateY(30px) translateX(50px) rotate(15deg);
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }

  100% {
    -webkit-transform: translateY(0px) translateX(0) rotate(0);
    transform: translateY(0px) translateX(0) rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
}

@keyframes bubbleMover2 {
  0% {
    -webkit-transform: translateY(0px) translateX(0) rotate(0);
    transform: translateY(0px) translateX(0) rotate(0);
  }

  30% {
    transform: translateY(10px) translateX(20px) rotate(5deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }

  50% {
    transform: translateY(20px) translateX(40px) rotate(20deg);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }

  80% {
    transform: translateY(30px) translateX(40px) rotate(5deg);
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }

  100% {
    -webkit-transform: translateY(0px) translateX(0) rotate(0);
    transform: translateY(0px) translateX(0) rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
}

@keyframes banner3Shake {
  0% {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
    transform: rotate3d(0, 1, 0, 0deg);
  }

  30% {
    transform: rotate3d(0, 0, 1, 15deg);
  }

  60% {
    -webkit-transform: rotate3d(1, 0, 0, 0deg);
    transform: rotate3d(1, 0, 0, 0deg);
  }

  80% {
    transform: rotate3d(0, 0, 1, 15deg);
  }

  100% {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
    transform: rotate3d(0, 1, 0, 0deg);
  }
}

@keyframes banner3ShakeReverse {
  0% {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
    transform: rotate3d(0, 1, 0, 0deg);
  }

  30% {
    transform: rotate3d(0, 0, 1, -15deg);
  }

  60% {
    -webkit-transform: rotate3d(1, 0, 0, 0deg);
    transform: rotate3d(1, 0, 0, 0deg);
  }

  80% {
    transform: rotate3d(0, 0, 1, -15deg);
  }

  100% {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
    transform: rotate3d(0, 1, 0, 0deg);
  }
}

/*--------------------------------------------------------------
# Main Menu
--------------------------------------------------------------*/

.site-header-one {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header-one__fixed-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 91;
}

.site-header-one .container-fluid {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  flex-wrap: wrap;
  padding-left: 100px;
  padding-right: 100px;
  width: 100%;
}

@media (max-width: 1470px) {
  .site-header-one .container-fluid {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media (max-width: 1360px) {
  .site-header-one .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.site-header-one__logo .side-menu__toggler {
  display: none;
  font-size: 22px;
  margin-left: 30px;
  color: #fff;
  cursor: pointer;
}

.main-nav__main-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav__main-navigation .main-nav__navigation-box {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin-left: 125px;
}

@media (max-width: 1510px) {
  .main-nav__main-navigation .main-nav__navigation-box {
    margin-left: 75px;
  }
}

@media (max-width: 1360px) {
  .main-nav__main-navigation .main-nav__navigation-box {
    margin-left: 30px;
  }
}

.main-nav__main-navigation .main-nav__navigation-box > li {
  padding: 39px 0;
  position: relative;
}

.main-nav__main-navigation .main-nav__navigation-box > li + li {
  margin-left: 60px;
}

.main-nav__main-navigation .main-nav__navigation-box > li > a {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  display: block;
  -webkit-transition: 500ms;
  transition: 500ms;
  position: relative;
}

.main-nav__main-navigation .main-nav__navigation-box > li.current > a,
.main-nav__main-navigation .main-nav__navigation-box > li:hover > a {
  color: var(--thm-base);
}

.main-nav__main-navigation .dropdown-btn {
  display: none;
}

/* Dropdown menu */

.main-nav__main-navigation .dropdown-btn {
  display: none;
}

.main-nav__main-navigation .main-nav__navigation-box > li ul {
  position: absolute;
  width: 210px;
  background-color: #fff;
  border-top: 4px solid var(--thm-base);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05),
    -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -webkit-transform-origin: top;
  transform-origin: top;
  visibility: hidden;
  opacity: 0;
  z-index: 991;
  -webkit-transition: opacity 500ms ease, visibility 500ms ease,
    -webkit-transform 500ms ease;
  transition: opacity 500ms ease, visibility 500ms ease,
    -webkit-transform 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease, visibility 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease, visibility 500ms ease,
    -webkit-transform 500ms ease;
}

.main-nav__main-navigation .main-nav__navigation-box > li ul > li {
  position: relative;
}

.main-nav__main-navigation .main-nav__navigation-box > li ul > li + li {
  border-top: 1px solid rgba(var(--thm-base-rgb), 0.3);
}

.main-nav__main-navigation .main-nav__navigation-box > li ul > li > a {
  display: block;
  color: var(--thm-black);
  font-size: 16px;
  font-family: var(--thm-font);
  word-break: break-all;
  padding-top: 9.5px;
  padding-bottom: 9.5px;
  padding-left: 20px;
  padding-right: 20px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-nav__main-navigation .main-nav__navigation-box > li ul > li:hover > a {
  color: #fff;
  background-color: var(--thm-black);
}

/* Second level menu */

.main-nav__main-navigation .main-nav__navigation-box > li > ul {
  top: 100%;
  left: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);

  visibility: hidden;
  opacity: 0;
}

.main-nav__main-navigation .main-nav__navigation-box > li:hover > ul {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

/* Third level menu */

.main-nav__main-navigation .main-nav__navigation-box > li > ul > li > ul {
  top: 0;
  left: 100%;
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  visibility: hidden;
  opacity: 0;
}

.main-nav__main-navigation .main-nav__navigation-box > li > ul > li:hover > ul {
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
  visibility: visible;
  opacity: 1;
}

/* After Third level menu */

.main-nav__main-navigation
  .main-nav__navigation-box
  > li
  > ul
  > li
  > ul
  > li
  > ul {
  display: none;
}

/* stricked menu */
.stricked-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: var(--thm-black);
  box-shadow: 0px 6px 13px 0px rgba(0, 0, 0, 0.06);
  opacity: 0;
  -webkit-transform: translateY(-110%);
  transform: translateY(-110%);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.stricked-menu.stricky-fixed {
  opacity: 1;
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.stricked-menu .main-nav__main-navigation .main-nav__navigation-box > li {
  padding: 26px 0;
}

/* main nav btn */

.main-nav__right {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.main-nav__cta {
  display: flex;
  align-items: center;
  margin-right: 84px;
}

.main-nav__cta span {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  margin-left: 20px;
}

.main-nav__cta i,
.main-nav__cta b {
  line-height: 1em;
  font-style: normal;
  font-weight: 400;
  color: #fff;
  display: block;
}

.main-nav__cta i {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.main-nav__cta b {
  font-size: 18px;
  font-weight: 800;
}

/*--------------------------------------------------------------
# Sidemenu
--------------------------------------------------------------*/

.side-menu__block {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: -webkit-transform 0.7s ease;
  transition: -webkit-transform 0.7s ease;
  transition: transform 0.7s ease;
  transition: transform 0.7s ease, -webkit-transform 0.7s ease;
}

.side-menu__block.active {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.side-menu__block-overlay {
  width: 100%;
  height: 100%;
  background-color: var(--thm-black);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  opacity: 0.7;
}

.side-menu__block-overlay .cursor-follower {
  background-color: rgba(255, 255, 255, 0.3);
}

.side-menu__block-inner {
  position: relative;
  max-width: 532px;
  width: 100%;
  margin-right: auto;
  height: 100vh;
  background-color: #f6f6fe;
  z-index: 999999;
  overflow-y: auto;
  padding: 40px 0;
  padding-top: 20px;
  position: relative;
}

@media (max-width: 575px) {
  .side-menu__block-inner {
    max-width: 480px;
  }
}

@media (max-width: 480px) {
  .side-menu__block-inner {
    max-width: 400px;
  }
}

@media (max-width: 375px) {
  .side-menu__block-inner {
    max-width: 300px;
  }
}

.side-menu__block-inner .mCustomScrollBox {
  width: 100%;
}

.side-menu__top {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding-left: 100px;
  padding-right: 40px;
}

.mobile-nav__container {
  padding-left: 100px;
  padding-right: 100px;
  padding-top: 50px;
}

.mobile-nav__container ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav__container li.dropdown ul {
  display: none;
  padding-left: 0.5em;
}

.mobile-nav__container li.dropdown {
  position: relative;
}

.mobile-nav__container li.dropdown .dropdown-btn {
  border: none;
  outline: none;
  background-color: transparent;
  color: #9ca3a9;
  font-size: 14px;
  padding-left: 10px;
  padding-right: 10px;
  width: auto;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: transfrom 500ms ease;
  transition: transfrom 500ms ease;
}

.mobile-nav__container li.dropdown .dropdown-btn.open {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.mobile-nav__container li + li {
  margin-top: 5px;
}

.mobile-nav__container li a {
  font-family: var(--special-font-smb);
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  position: relative;
  font-size: 17px;
  font-family: var(--heading-font);
  color: var(--thm-black);
}

.mobile-nav__container li a:hover {
  color: var(--thm-base);
}

.mobile-nav__container li.current-menu-item > a,
.mobile-nav__container li.current > a {
  color: var(--thm-base);
}

.side-menu__social {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin-top: 40px;
}

.side-menu__social a {
  background-image: linear-gradient(
    0deg,
    #1293c8 0%,
    #1fe4f2 51%,
    #1293c8 100%
  );
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  background-size: auto 200%;
  transition: all 500ms ease;
}

.side-menu__social a:hover {
  background-position: bottom;
}

.side-menu__social a:nth-child(2) {
  background-image: linear-gradient(
    0deg,
    #ff5f5e 0%,
    #ffc52f 51%,
    #ff5f5e 100%
  );
}

.side-menu__social a:nth-child(3) {
  background-image: linear-gradient(
    0deg,
    #7b22b0 0%,
    #e867ff 51%,
    #7b22b0 100%
  );
}

.side-menu__social a:nth-child(4) {
  background-image: linear-gradient(
    0deg,
    #388e3c 0%,
    #b6e66d 51%,
    #388e3c 100%
  );
}

.side-menu__social a + a {
  margin-left: 10px;
}

.side-menu__content {
  padding-left: 100px;
  padding-right: 100px;
  padding-bottom: 50px;
}

.side-menu__content p {
  margin: 0;
  font-size: 14px;
  line-height: 32px;
  color: #7c7d8a;
  letter-spacing: 0.02em;
}

.side-menu__content p + p {
  margin-top: 30px;
}

.side-menu__content p a {
  color: var(--thm-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.side-menu__content p a:hover {
  color: var(--thm-primary);
}

.side-menu__sep {
  width: calc(100% - 200px);
  margin-left: auto;
  margin-right: auto;
  height: 1px;
  background-color: #fff;
  margin-top: 70px;
  margin-bottom: 70px;
}

.side-menu__text p {
  font-size: 14px;
  line-height: 32px;
  color: #7c7d8a;
  margin: 0;
  margin-bottom: 25px;
}

.side-menu__text a {
  color: var(--thm-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.side-menu__text a:hover {
  color: var(--thm-black);
}

.side-menu__block__copy {
  font-size: 16px;
  font-weight: 500;
  color: #7c7d8a;
  margin: 0;
}

@media (max-width: 575px) {
  .side-menu__top,
  .side-menu__content,
  .mobile-nav__container {
    padding-left: 50px;
    padding-right: 50px;
  }

  .side-menu__sep {
    margin-top: 40px;
    margin-bottom: 40px;
    width: calc(100% - 100px);
  }
}

@media (max-width: 480px) {
  .side-menu__top,
  .side-menu__content,
  .mobile-nav__container {
    padding-left: 25px;
    padding-right: 25px;
  }

  .side-menu__sep {
    width: calc(100% - 50px);
  }

  .side-menu__social {
    margin-top: 40px;
  }
}

/*--------------------------------------------------------------
# Banner One
--------------------------------------------------------------*/

.banner-one {
  padding-top: 200px;
  padding-bottom: 86px;
  background-image: linear-gradient(-27deg, #30006b 0%, #4c1294 100%);
  position: relative;
}

[class*="banner-one__bg-shape-"] {
  position: absolute;
  z-index: 8;
}

.banner-one__bg-shape-1 {
  top: 17%;
  right: 43%;
  -webkit-animation-name: bubbleMover;
  animation-name: bubbleMover;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  animation-duration: 8s;
}

.banner-one__bg-shape-2 {
  top: 34%;
  left: 6%;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: banner3ShakeReverse;
  animation-name: banner3Shake;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-delay: 1s;
  animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.banner-one__bg-shape-3 {
  bottom: 22%;
  left: 8%;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: banner3Shake;
  animation-name: banner3Shake;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.banner-one__bg-shape-4 {
  top: 40%;
  right: 7%;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: banner3Shake;
  animation-name: banner3Shake;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.banner-one__bg-shape-5 {
  bottom: 12%;
  right: 38.5%;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: banner3Shake;
  animation-name: banner3Shake;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.banner-one .container {
  position: relative;
  z-index: 10;
}

.banner-one::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../images/shapes/banner-bg-shape-1-1.png);
  background-repeat: no-repeat;
  background-position: top right;
  position: absolute;
  top: 0;
  right: 0;
}

.banner-one::after {
  content: "";
  background-image: url(../images/shapes/24.png);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.banner-one__content h3 {
  margin: 0;
  font-size: 70px;
  color: #fff;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.banner-one__content p {
  margin: 0;
  font-size: 18px;
  line-height: 36px;
  color: #c3aedc;
  margin-top: 31px;
}

.banner-one__btn {
  padding: 13px 57px;
  border-radius: 31px;
  font-size: 16px;
  background-image: linear-gradient(
    0deg,
    #ff5f5e 0%,
    #ffc52f 51%,
    #ff5f5e 100%
  );
  margin-top: 41px;
}

.banner-one__image img {
  animation: ImgBounce 5s ease-in-out 0s infinite alternate;
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/

.page-header {
  background-color: var(--thm-black);
  background-image: url(../images/shapes/page-header-bg-1-1.jpg);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: cover;
  padding-bottom: 84px;
  padding-top: 186px;
}

.page-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-header h2 {
  color: #fff;
  margin: 0;
  font-size: 46px;
  font-weight: 800;
}

.thm-breadcrumb {
  margin-bottom: 0;
  display: flex;
  align-items: center;
}

.thm-breadcrumb li {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}

.thm-breadcrumb li a {
  color: inherit;
}

.thm-breadcrumb li:not(:last-of-type)::after {
  content: "-";
  margin-left: 10px;
  margin-right: 10px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.site-footer {
  background-color: #f4f0f9;
}

.site-footer__upper {
  /* padding-top: 90px;*/
  padding-bottom: 40px;
}

.footer-widget {
  margin-bottom: 40px;
}

@media (min-width: 1200px) {
  .footer-widget__links {
    margin-left: -30px;
  }

  .footer-widget__contact {
    margin-left: -60px;
  }
}

.footer-widget__title {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
  color: var(--thm-black);
  margin-bottom: 30px;
}

.footer-widget p {
  margin: 0;
  color: #111111;
  font-size: 16px;
  line-height: 34px;
}

.footer-widget__links-list li {
  line-height: 1em;
}

.footer-widget__links-list li + li {
  margin-top: 21px;
}

.footer-widget__links-list li a {
  color: #111111;
  font-size: 16px;
  transition: all 500ms ease;
}

.footer-widget__links-list li a:hover {
  color: var(--thm-base);
}

.footer-widget__contact-list li {
  font-size: 16px;
  line-height: 26px;
  color: #111111;
  position: relative;
  padding-left: 24px;
}

.footer-widget__contact-list li + li {
  margin-top: 15px;
}

.footer-widget__contact-list li i {
  font-size: 14px;
  color: var(--thm-base);
  position: absolute;
  top: 7px;
  left: 0;
}

.footer-widget__contact-list li a {
  color: inherit;
  transition: all 500ms ease;
}

.footer-widget__contact-list li a:hover {
  color: var(--thm-black);
}

.footer-widget__newsletter p {
  color: #111111;
  font-size: 16px;
  line-height: 32px;
  margin: 0;
}

.footer-widget__newsletter-form {
  width: 100%;
  background-color: #fff;
  border-radius: 15px;
  position: relative;
  margin-bottom: 20px;
}

.footer-widget__newsletter-form
  input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]) {
  border: none;
  outline: none;
  width: 100%;
  height: 71px;
  border-radius: 15px;
  background-color: #fff;
  color: #111111;
  font-size: 16px;
  padding-left: 30px;
}

.footer-widget__newsletter-form ::placeholder {
  opacity: 1;
  color: #111111;
}

.footer-widget__newsletter-form button[type="submit"] {
  border: none;
  outline: none;
  background-position: top;
  background-size: auto 200%;
  width: 47px;
  height: 47px;
  /* background-image: linear-gradient(
    0deg,
    #7b22b0 0%,
    #e867ff 51%,
    #7b22b0 100%
  ); */
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  border-radius: 50%;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 500ms ease;
}

.footer-widget__newsletter-form button[type="submit"]:hover {
  background-position: bottom;
  color: #fff;
}

.footer-widget__about a.logo {
  position: relative;
  top: -10px;
}

.footer-widget__about p {
  margin-top: 10px;
  margin-bottom: 18px;
}

/* footer bottom */
.site-footer__bottom .inner-container {
  border-top: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30.5px;
  padding-bottom: 30.5px;
}

.site-footer__bottom p {
  margin: 0;
  color: #111111;
  font-size: 16px;
}

.footer-social {
  display: flex;
  align-items: center;
}

.footer-social a {
  background-image: linear-gradient(
    0deg,
    #1293c8 0%,
    #1fe4f2 51%,
    #1293c8 100%
  );
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  background-size: auto 200%;
  transition: all 500ms ease;
}

.footer-social a:hover {
  background-position: bottom;
}

.footer-social a:nth-child(2) {
  background-image: linear-gradient(
    0deg,
    #ff5f5e 0%,
    #ffc52f 51%,
    #ff5f5e 100%
  );
}

.footer-social a:nth-child(3) {
  background-image: linear-gradient(
    0deg,
    #7b22b0 0%,
    #e867ff 51%,
    #7b22b0 100%
  );
}

.footer-social a:nth-child(4) {
  background-image: linear-gradient(
    0deg,
    #388e3c 0%,
    #b6e66d 51%,
    #388e3c 100%
  );
}

.footer-social a + a {
  margin-left: 10px;
}

/*--------------------------------------------------------------
# Blog One
--------------------------------------------------------------*/

.blog-one {
  background-color: #fee4e5;
  /* padding-top: 120px; */
  padding-bottom: 90px;
  position: relative;
}

[class*="blog-one__bg-shape-"] {
  position: absolute;
}

.blog-one__bg-shape-1 {
  bottom: 130px;
  right: 5%;
  -webkit-animation-name: bubbleMover;
  animation-name: bubbleMover;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  animation-duration: 8s;
}

.blog-one__bg-shape-2 {
  /* top: 0; */
  left: 0;
}

.blog-one .container {
  position: relative;
}

.blog-one__single {
  margin-bottom: 30px;
}

.blog-one__image {
  overflow: hidden;
  border-radius: 15px;
  background-color: var(--thm-black);
}

.blog-one__image > img {
  width: 100%;
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease,
    -webkit-transform 500ms ease;
}

.blog-one__single:hover .blog-one__image > img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  opacity: 0.5;
}

.blog-one__content {
  text-align: center;
  padding-top: 30px;
  position: relative;
  padding-bottom: 36px;
  padding-left: 30px;
  padding-right: 30px;
}

.blog-one__content::after {
  content: "";
  width: 100%;
  height: 4px;
  background-image: linear-gradient(90deg, #7b22b0 0%, #e867ff 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 2px;
  transition: all 500ms ease;
}

.blog-one__single:hover .blog-one__content::after {
  height: 100%;
  border-radius: 15px;
}

.blog-one__content h3 {
  margin: 0;
  font-size: 24px;
  line-height: 40px;
  font-weight: 800;
  color: var(--thm-black);
  margin-top: 10px;
  position: relative;
  z-index: 20;
}

.blog-one__content h3 a {
  color: inherit;
  transition: all 500ms ease;
}

.blog-one__single:hover .blog-one__content h3 a,
.blog-one__content h3 a:hover {
  color: #fff;
}

.blog-one__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 20;
}

.blog-one__meta a + a {
  margin-left: 15px;
}

.blog-one__meta a {
  color: #111111;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1em;
  transition: all 500ms ease;
}

.blog-one__single:hover .blog-one__meta a,
.blog-one__meta a:hover {
  color: #fff;
}

.blog-one__meta a i {
  color: var(--thm-base);
  margin-right: 5px;
  transition: all 500ms ease;
}

.blog-one__single:hover .blog-one__meta a i,
.blog-one__meta a:hover i {
  color: #fff;
}

[class*="col-"]:nth-child(2) .blog-one__content::after {
  background-image: linear-gradient(90deg, #ff5f5e 0%, #ffc52f 100%);
}

[class*="col-"]:nth-child(3) .blog-one__content::after {
  background-image: linear-gradient(90deg, #1293c8 0%, #1293c8 100%);
}

[class*="col-"]:nth-child(4) .blog-one__content::after {
  background-image: linear-gradient(90deg, #388e3c 0%, #b6e66d 100%);
}

[class*="col-"]:nth-child(5) .blog-one__content::after {
  background-image: linear-gradient(90deg, #7b22b0 0%, #e867ff 100%);
}

[class*="col-"]:nth-child(6) .blog-one__content::after {
  background-image: linear-gradient(90deg, #ff5f5e 0%, #ffc52f 100%);
}

/*--------------------------------------------------------------
## Blog Grid
--------------------------------------------------------------*/

.blog-grid {
  padding-top: 120px;
  padding-bottom: 120px;
}

.blog-grid .post-pagination {
  margin-top: 30px;
}

/*--------------------------------------------------------------
## Blog Details
--------------------------------------------------------------*/

.blog-details {
  padding-top: 120px;
  padding-bottom: 120px;
}

.blog-details__content h3 {
  margin: 0;
  font-size: 46px;
  line-height: 56px;
  color: var(--thm-black);
  font-weight: 800;
  margin-bottom: 37px;
}

.blog-details__content .blog-one__meta {
  margin-bottom: 10px;
}
.blog-details__content .blog-one__meta a:hover {
  color: var(--thm-black);
}
.blog-details__content .blog-one__meta a:hover i {
  color: var(--thm-primary);
}
.blog-details__content p {
  margin: 0;
  font-size: 18px;
  line-height: 36px;
  color: #111111;
  font-weight: 500;
}

.blog-details__content p + p {
  margin-top: 30px;
}

.blog-details__image {
  margin-bottom: 30px;
}

.blog-details__image > img {
  border-radius: 15px;
  width: 100%;
}

.blog-author {
  background-color: #f4f0f9;
  border-radius: 15px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  padding: 60px;
  margin-bottom: 50px;
}

.blog-author__image > img {
  width: 170px;
  border-radius: 15px;
}

.blog-author__content {
  padding-left: 40px;
}

.blog-author__content h3 {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
  color: var(--thm-black);
  margin-bottom: 30px;
}

.blog-author__content p {
  margin: 0;
  color: #111111;
  font-size: 18px;
  line-height: 34px;
  font-weight: 500;
}

.blog-details__meta {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  border-top: 1px solid #f4f0f9;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.blog-details__tags {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: baseline;
  align-items: baseline;
}

.blog-details__tags span {
  color: var(--thm-black);
  font-size: 20px;
  font-weight: bold;
  margin: 0;
  margin-right: 10px;
}

.blog-details__tags a {
  color: #111111;
  font-size: 16px;
  font-weight: 600;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.blog-details__tags a:hover {
  color: var(--thm-primary);
}

.blog-details__tags a + a {
  margin-left: 5px;
}

.blog-details__share {
  display: flex;
  align-items: center;
}

.blog-details__share a {
  background-image: linear-gradient(
    0deg,
    #1293c8 0%,
    #1fe4f2 51%,
    #1293c8 100%
  );
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  background-size: auto 200%;
  transition: all 500ms ease;
}

.blog-details__share a:hover {
  background-position: bottom;
}

.blog-details__share a:nth-child(2) {
  background-image: linear-gradient(
    0deg,
    #ff5f5e 0%,
    #ffc52f 51%,
    #ff5f5e 100%
  );
}

.blog-details__share a:nth-child(3) {
  background-image: linear-gradient(
    0deg,
    #7b22b0 0%,
    #e867ff 51%,
    #7b22b0 100%
  );
}

.blog-details__share a:nth-child(4) {
  background-image: linear-gradient(
    0deg,
    #388e3c 0%,
    #b6e66d 51%,
    #388e3c 100%
  );
}

.blog-details__share a + a {
  margin-left: 10px;
}

.comment-one {
  margin-bottom: 45px;
}

.comment-one__block-title {
  margin: 0;
  margin-bottom: 54px;
  font-size: 26px;
  font-weight: 800;
  color: var(--thm-black);
}

.comment-one__single {
  display: -webkit-box;
  display: flex;
  position: relative;
  border-bottom: 1px solid #f4f0f9;
  padding-bottom: 60px;
  margin-bottom: 60px;
}

.comment-one__btn {
  position: absolute;
  top: 0;
  right: 0;
  padding: 8px 29px;
  font-size: 14px;
}

.comment-one__content {
  padding-right: 100px;
}

.comment-one__content .comment-one__date {
  color: var(--thm-base);
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  margin-bottom: 30px;
}

.comment-one__content .comment-one__date span {
  margin-left: 5px;
  margin-right: 5px;
}

.comment-one__image {
  width: 90px;
}

.comment-one__image > img {
  border-radius: 50%;
}

.comment-one__content {
  padding-left: 40px;
}

.comment-one__content h3 {
  margin: 0;
  font-size: 20px;
  color: var(--thm-black);
  font-weight: 800;
  line-height: 1em;
}

.comment-one__content p {
  color: #111111;
  margin: 0;
  font-size: 18px;
  line-height: 34px;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/

@media (max-width: 991px) {
  .sidebar {
    margin-top: 50px;
  }
}

.sidebar__title {
  margin: 0;
  color: var(--thm-black);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 30px;
}

.sidebar__single:not(.sidebar__search) {
  padding: 50px;
  background-color: #f4f0f9;
  border-radius: 15px;
}

@media (max-width: 1199px) {
  .sidebar__single:not(.sidebar__search) {
    padding: 30px;
  }
}

.sidebar__single + .sidebar__single {
  margin-top: 30px;
}

.sidebar__post__single + .sidebar__post__single {
  margin-top: 30px;
}

.sidebar__post-image,
.sidebar__post-content {
  display: table-cell;
  vertical-align: middle;
}

.sidebar__post-image {
  width: 60px;
}

.sidebar__post-image .inner-block {
  width: 100%;
}

.sidebar__post-image .inner-block > img {
  width: 100%;
  border-radius: 50%;
}

.sidebar__post-content {
  padding-left: 20px;
}

.sidebar__post-title {
  margin: 0;
  font-size: 16px;
  line-height: 28px;
  font-weight: 600;
  color: #111111;
  font-family: var(--thm-font);
}

.sidebar__post-title a {
  color: inherit;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.sidebar__post-title a:hover {
  color: var(--thm-black);
}

.sidebar__category-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar__category-list-item {
  line-height: 1em;
}

.sidebar__category-list-item a {
  color: #111111;
  font-size: 16px;
  font-weight: 500;
  display: block;
  position: relative;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.sidebar__category-list-item a:hover {
  color: var(--thm-base);
}

.sidebar__category-list-item + .sidebar__category-list-item {
  margin-top: 27px;
}

.sidebar__tags-list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: -10px;
}

.sidebar__tags-list-item {
  display: inline-block;
  vertical-align: middle;
  line-height: 1em;
}

.sidebar__tags-list-item a {
  display: block;
  color: #111111;
  font-size: 16px;
  font-weight: 600;
  line-height: 1em;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.sidebar__tags-list-item a:hover {
  color: var(--thm-black);
}

.sidebar__search-form {
  width: 100%;
  height: 72px;
  background-image: linear-gradient(90deg, #ff5f5e 0%, #ffc52f 100%);
  position: relative;
  border-radius: 15px;
}

.sidebar__search-form input {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: none;
  outline: none;
  color: #fff;
  padding-left: 40px;
  padding-right: 40px;
}

.sidebar__search-form ::-webkit-input-placeholder {
  opacity: 1;
  color: #fff;
}

.sidebar__search-form :-ms-input-placeholder {
  opacity: 1;
  color: #fff;
}

.sidebar__search-form ::-ms-input-placeholder {
  opacity: 1;
  color: #fff;
}

.sidebar__search-form ::-moz-placeholder {
  opacity: 1;
  color: #fff;
}

.sidebar__search-form ::placeholder {
  opacity: 1;
  color: #fff;
}

.sidebar__search-form button[type="submit"] {
  background-color: transparent;
  border: none;
  outline: none;
  position: absolute;
  top: 50%;
  right: 50px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  padding: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.sidebar__search-form button[type="submit"] i {
  font-size: 16px;
  color: #fff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact-one__form > .row {
  margin-left: -5px;
  margin-right: -5px;
}

.contact-one__form > .row > [class*="col-"] {
  padding-left: 5px;
  padding-right: 5px;
}

.contact-one__form textarea,
.contact-one__form .bootstrap-select > .dropdown-toggle,
.contact-one__form
  input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]) {
  border: none;
  outline: none;
  display: block;
  width: 100%;
  height: 72px;
  border-radius: 15px;
  padding-left: 30px;
  padding-right: 30px;
  color: #111111;
  background-color: #f4f0f9;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-one__form textarea {
  height: 194px;
  padding-top: 20px;
}

.contact-one__form ::-webkit-input-placeholder {
  opacity: 1;
  color: #111111;
}

.contact-one__form ::-moz-placeholder {
  opacity: 1;
  color: #111111;
}

.contact-one__form :-ms-input-placeholder {
  opacity: 1;
  color: #111111;
}

.contact-one__form ::-ms-input-placeholder {
  opacity: 1;
  color: #111111;
}

.contact-one__form ::placeholder {
  opacity: 1;
  color: #111111;
}

.contact-one__form
  .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(
    .input-group-btn
  ) {
  width: 100%;
}

.contact-one__form .bootstrap-select .dropdown-toggle .filter-option {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.contact-one__form .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "\f107";
  border: none;
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  font-size: 14px;
  color: #111111;
}

.contact-one__form .dropup .dropdown-toggle::after {
  content: "\f106";
}

.contact-one__btn {
  padding: 13px 50px;
  border-radius: 31px;
  font-size: 16px;
  background-image: linear-gradient(
    0deg,
    #ff5f5e 0%,
    #ffc52f 51%,
    #ff5f5e 100%
  );
}

/*--------------------------------------------------------------
# Call to Action One
--------------------------------------------------------------*/

.cta-one {
  overflow: hidden;
  background-color: var(--thm-black);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-blend-mode: hard-light;
  position: relative;
  padding-top: 111.5px;
  padding-bottom: 111.5px;
}

.cta-one::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.9;
  background-color: var(--thm-black);
}

[class*="cta-one__bg-shape-"] {
  position: absolute;
}

.cta-one__bg-shape-1 {
  top: calc(50% - 257px);
  left: calc(0% - 269.5px);
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.cta-one .container {
  position: relative;
}

.cta-one .my-auto {
  width: 100%;
}

.cta-one [class*="col-"] {
  position: relative;
}

.cta-one h3 {
  margin: 0;
  color: #fff;
  font-size: 46px;
  font-weight: 800;
  margin-bottom: 22px;
}

.cta-one p {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
  color: #c3afdd;
}

.cta-one__btn {
  padding: 13px 50px;
  border-radius: 31px;
  font-size: 16px;
  background-image: linear-gradient(
    0deg,
    #ff5f5e 0%,
    #ffc52f 51%,
    #ff5f5e 100%
  );
}

/*--------------------------------------------------------------
## Call to Action Two
--------------------------------------------------------------*/

.cta-two {
  background-color: #f4f0f9;
  padding-top: 75px;
  padding-bottom: 363px;
  margin-bottom: -290px;
  position: relative;
}

[class*="cta-two__bg-shape-"] {
  position: absolute;
}

.cta-two__bg-shape-1 {
  top: 0;
  right: 0;
}

.cta-two__bg-shape-2 {
  bottom: 0;
  left: 0;
}

.cta-two .container {
  position: relative;
}

.cta-two__content {
  padding-top: 45px;
}

.cta-two__content .block-title {
  margin-bottom: 26px;
}

.cta-two__content > p {
  margin: 0;
  margin-bottom: 52px;
  color: #111111;
  font-size: 18px;
  line-height: 34px;
}

.cta-two__btn {
  padding: 13px 57px;
  border-radius: 31px;
  font-size: 16px;
  background-image: linear-gradient(
    180deg,
    #7b22b0 0%,
    #e867ff 51%,
    #7b22b0 100%
  );
}

.cta-two__content-image {
  position: relative;
  left: -47px;
}

/*--------------------------------------------------------------
## Call to Action Three
--------------------------------------------------------------*/

.cta-three {
  padding-bottom: 0px;
  padding-top: 177px;
  position: relative;
}

[class*="cta-three__bg-shape-"] {
  position: absolute;
}

.cta-three__bg-shape-1 {
  top: 0;
  right: 0;
}

.cta-three__bg-shape-2 {
  bottom: 110px;
  left: 0;
  -webkit-animation-name: bubbleMover;
  animation-name: bubbleMover;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  animation-duration: 12s;
}

.cta-three .container {
  position: relative;
}

.cta-three__content .block-title {
  margin-bottom: 40px;
}

.cta-three__icon-wrap {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin-bottom: 50px;
}

.cta-three__icon-single {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.cta-three__icon-single + .cta-three__icon-single {
  margin-left: 30px;
}

.cta-three__icon i {
  width: 101px;
  height: 101px;
  margin-right: 20px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  font-size: 64px;
  background-size: auto 200%;
  background-image: linear-gradient(
    0deg,
    #7b22b0 0%,
    #e867ff 51%,
    #7b22b0 100%
  );
  background-position: top;
  transition: all 500ms ease;
}

.cta-three__icon-single:hover .cta-three__icon i {
  background-position: bottom;
}

.cta-three__icon-single:nth-child(2) .cta-three__icon i {
  background-image: linear-gradient(
    0deg,
    #388e3c 0%,
    #b6e66d 51%,
    #388e3c 100%
  );
}

.cta-three__icon-single h3 {
  margin: 0;
  color: var(--thm-black);
  font-size: 20px;
  line-height: 30px;
  font-weight: bold;
}

.cta-three__text {
  margin-bottom: 53px;
}

.cta-three__text p {
  margin: 0;
  font-size: 18px;
  line-height: 36px;
  font-weight: 600;
  color: #111111;
}

.cta-three__btn {
  padding: 13px 57px;
  border-radius: 31px;
  font-size: 16px;
}

.cta-three__image {
  position: relative;
}

.cta-three__image::before {
  content: "";
  position: absolute;
  top: calc(41% - 261px);
  left: calc(50% - 261px);
  width: 522px;
  height: 522px;
  border-radius: 50%;
  background-image: linear-gradient(0deg, #ff5f5e 0%, #ffc52f 100%);
}

.cta-three__image img {
  position: relative;
  left: -48px;
  top: -88px;
  animation: ImgBounce 5s ease-in-out 0s infinite alternate;
}

/*--------------------------------------------------------------
## Call to Action Four
--------------------------------------------------------------*/

.cta-four {
  position: relative;
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #f4f0f9;
}

[class*="cta-four__bg-shape-"] {
  position: absolute;
}

.cta-four__bg-shape-1 {
  top: 0;
  left: 44px;
  -webkit-animation-name: bubbleMover2;
  animation-name: bubbleMover2;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  animation-duration: 12s;
}

.cta-four__bg-shape-2 {
  top: 0;
  right: 0;
}

.cta-four .container {
  position: relative;
}

.cta-four__content .block-title {
  margin-bottom: 37px;
}

.cta-four__content .block-title h3 {
  letter-spacing: -0.02em;
}

.cta-four__text {
  margin-bottom: 43px;
}

.cta-four__text p {
  margin: 0;
  color: #111111;
  font-size: 24px;
  line-height: 40px;
  font-weight: 500;
}

.cta-four__list {
  margin-bottom: 40px;
}

.cta-four__list li {
  color: #111111;
  position: relative;
  padding-left: 35px;
  font-weight: 600;
  font-size: 18px;
}

.cta-four__list li + li {
  margin-top: 4px;
}

.cta-four__list li > i {
  position: absolute;
  top: 50%;
  left: 0;
  font-size: 18px;
  background-image: linear-gradient(0deg, #1293c8 0%, #1fe4f2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.cta-four__btn {
  padding: 13px 57px;
  border-radius: 31px;
  font-size: 16px;
  background-image: linear-gradient(
    0deg,
    #ff5f5e 0%,
    #ffc52f 51%,
    #ff5f5e 100%
  );
}

.cta-four__images {
  display: inline-block;
}

.cta-four__images > img {
  border-radius: 15px;
  box-shadow: 0px 0px 60px 0px rgba(5, 5, 6, 0.1);
}

.cta-four__images > img + img {
  margin-top: 30px;
}

.cta-four__porgress__bar-wrap {
  margin-bottom: 60px;
}

.cta-four__porgress__bar + .cta-four__porgress__bar {
  margin-top: 10px;
}

.cta-four__porgress__bar-top {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  margin-bottom: 5px;
}

.cta-four__porgress__bar-top h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--thm-black);
  margin: 0;
}

.cta-four__porgress__bar-top p {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #111111;
}

.cta-four__porgress__bar-line {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.cta-four__porgress__bar-line span {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 4px;
  background-image: linear-gradient(90deg, #7b22b0 0%, #e867ff 100%);
}

/*--------------------------------------------------------------
# FAQ
--------------------------------------------------------------*/

.faq-one {
  padding-bottom: 120px;
  position: relative;
}

.faq-one .container {
  position: relative;
}

.faq-one .accrodion {
  position: relative;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border: 2px solid #f4f0f9;
  background-color: #f4f0f9;
  border-radius: 15px;
}

.faq-one .accrodion + .accrodion {
  margin-top: 10px;
}

.faq-one .accrodion.active {
  background-color: #fff;
}

.faq-one .accrodion.active .accrodion-inner {
  margin: 0 0px;
}

.faq-one .accrodion.active .accrodion-title {
  padding-bottom: 0;
}

.faq-one .accrodion .accrodion-inner {
  padding: 29.5px 0;
  border-radius: 0px;
  position: relative;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.faq-one .accrodion .accrodion-title {
  padding: 0px 40px;
  cursor: pointer;
  position: relative;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media (max-width: 375px) {
  .faq-one .accrodion .accrodion-title {
    padding-right: 50px;
  }
}

.faq-one .accrodion .accrodion-title:before {
  content: "\f067";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  font-size: 14px;
  color: var(--thm-black);
  text-align: center;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 40px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 1;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;
}

.faq-one .accrodion .accrodion-title::after {
  content: "\f068";
  font-weight: 900;
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  font-size: 14px;
  color: var(--thm-black);
  text-align: center;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 40px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;
}

.faq-one .accrodion.active .accrodion-title::before {
  opacity: 0;
}

.faq-one .accrodion.active .accrodion-title::after {
  opacity: 1;
}

.faq-one .accrodion .accrodion-title h4 {
  margin: 0;
  color: var(--thm-black);
  font-size: 20px;
  font-weight: 700;
}

@media (max-width: 375px) {
  .faq-one .accrodion .accrodion-title h4 {
    line-height: 1.4em;
  }
}

.faq-one .accrodion .accrodion-content .inner {
  padding: 0 40px;
  padding-top: 23px;
}

.faq-one .accrodion .accrodion-content p {
  margin: 0;
  color: #111111;
  font-size: 18px;
  line-height: 36px;
  font-weight: 600;
}

.faq-one__post-filter {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 0;
  margin-bottom: 60px;
}

.faq-one__post-filter .thm-btn {
  border-radius: 26px;
  color: #fff;
}

.faq-one__post-filter .thm-btn + .thm-btn {
  margin-left: 10px;
}

.faq-one__post-filter .thm-btn.active {
  color: #fff;
}

.faq-one__post-filter .thm-btn:nth-child(2) {
  background-image: linear-gradient(
    0deg,
    #ff5f5e 0%,
    #ffc52f 51%,
    #ff5f5e 100%
  );
}

.faq-one__post-filter .thm-btn:nth-child(3) {
  background-image: linear-gradient(
    0deg,
    #7b22b0 0%,
    #e867ff 51%,
    #7b22b0 100%
  );
}

.faq-one__post-filter .thm-btn:nth-child(4) {
  background-image: linear-gradient(
    0deg,
    #388e3c 0%,
    #b6e66d 51%,
    #388e3c 100%
  );
}

/*--------------------------------------------------------------
# App shots
--------------------------------------------------------------*/

.app-shot-one {
  padding-top: 90px;
  /* padding-bottom: 170px; */
  padding-bottom: 20px;
  position: relative;
}

.app-shot-one .container-fluid {
  max-width: 1595px;
  width: 100%;
  position: relative;
}

.app-shot-one .app-shot-one__carousel {
  padding-top: 100.5px;
  padding-bottom: 100.5px;
  margin-top: -20px;
}

.app-shot-one .app-shot-one__carousel:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  /* background-image: url(../images/app-shots/app-screen-moc6.png); */
  background-position: center center;
  background-repeat: no-repeat;
  width: 305px;
  height: 651px;
  background-size: 100% auto;
  box-shadow: 0px 0px 60px 0px rgba(5, 5, 6, 0.05);
  background-color: #fafafa;
}

.page-id-1940 .app-shot-one .app-shot-one__carousel:before {
  background-image: url(../images/app-shots/app-screen-moc3-d.png);
}

@media (max-width: 1440px) {
  .app-shot-one .app-shot-one__carousel:before {
    -webkit-transform: translate(-50%, -49%) scaleY(0.95);
    transform: translate(-50%, -49%) scaleY(0.95);
  }
}

@media (max-width: 1280px) {
  .app-shot-one .app-shot-one__carousel:before {
    -webkit-transform: translate(-50%, -49%) scale(0.8);
    transform: translate(-50%, -49%) scale(0.8);
  }
}

.app-shot-one .app-shot-one__carousel .owl-dots {
  position: absolute;
  bottom: -60px;
  left: 0;
  text-align: center;
  z-index: 10;
  width: 100%;
}

.app-shot-one .app-shot-one__carousel .owl-dots .owl-dot span {
  width: 7px;
  height: 7px;
  background-color: var(--thm-black);
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 0.2;
  margin: 0 5px;
  position: relative;
  -webkit-transition: opacity 0.4s ease, background 0.4s ease,
    -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, background 0.4s ease,
    -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease, background 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease, background 0.4s ease,
    -webkit-transform 0.4s ease;
}

.app-shot-one .app-shot-one__carousel .owl-dots .owl-dot span::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  border-radius: 50%;
  z-index: 10;
  opacity: 0;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease,
    -webkit-transform 500ms ease;
  background-image: linear-gradient(90deg, #7b22b0 0%, #e867ff 100%);
}

.app-shot-one .app-shot-one__carousel .owl-dots .owl-dot:hover span::before,
.app-shot-one .app-shot-one__carousel .owl-dots .owl-dot.active span::before {
  opacity: 1;
  -webkit-transform: scale(2);
  transform: scale(2);
}

.app-shot-one .app-shot-one__carousel .owl-dots .owl-dot:hover span,
.app-shot-one .app-shot-one__carousel .owl-dots .owl-dot.active span {
  opacity: 1;
}

.app-shot-one .owl-item img {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

/*--------------------------------------------------------------
# Funfact
--------------------------------------------------------------*/

.funfact-one {
  position: relative;
  margin-top: -60px;
}

.funfact-one__single {
  margin-bottom: 30px;
  padding-top: 54px;
  padding-bottom: 54px;
  background-size: auto 200%;
  text-align: center;
  border-radius: 15px;
  background-position: top;
  background-image: linear-gradient(
    0deg,
    #1293c8 0%,
    #1fe4f2 51%,
    #1293c8 100%
  );
  transition: all 500ms ease;
  position: relative;
}

.funfact-one__single::before {
  content: "";
  width: 159px;
  height: 182px;
  opacity: 0.15;
  background-image: url(../images/shapes/funfact-shape-1-1.png);
  position: absolute;
  bottom: 0;
  right: 0;
  transform: perspective(200px) scaleX(0);
  -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease,
    -webkit-transform 500ms ease;
  opacity: 0;
  transform-origin: right;
}

.funfact-one__single:hover {
  background-position: bottom;
}

.funfact-one__single:hover::before {
  opacity: 0.15;
  transform: perspective(200px) scaleX(1);
}

.funfact-one__single h3 {
  margin: 0;
  color: #fff;
  font-weight: 800;
  font-size: 60px;
  line-height: 1em;
  margin-bottom: 17px;
  position: relative;
}

.funfact-one__single p {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  position: relative;
  line-height: 1em;
}

.funfact-one [class*="col-"]:nth-child(2) .funfact-one__single {
  background-image: linear-gradient(
    0deg,
    #ff5f5e 0%,
    #ffc52f 51%,
    #ff5f5e 100%
  );
}

.funfact-one [class*="col-"]:nth-child(3) .funfact-one__single {
  background-image: linear-gradient(
    0deg,
    #7b22b0 0%,
    #e867ff 51%,
    #7b22b0 100%
  );
}

.funfact-one [class*="col-"]:nth-child(4) .funfact-one__single {
  background-image: linear-gradient(
    0deg,
    #388e3c 0%,
    #b6e66d 51%,
    #388e3c 100%
  );
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

.testimonials-one {
  background-color: #f4f0f9;
  padding: 120px 0;
  padding-bottom: 190px;
  position: relative;
}

.testimonials-one .container {
  position: relative;
}

.testimonials-one__bg-shape-1 {
  position: absolute;
  top: 50%;
  left: -140px;
  transform: translateY(-50%);
  animation-name: mapMover;
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  transition: all 0.4s ease;
  transform-origin: center center;
}

.testimonials-one__bg-shape-2 {
  position: absolute;
  bottom: 0;
  right: 0;
}

@keyframes mapMover {
  0% {
    transform: translateY(-50%) translateX(0);
  }

  50% {
    transform: translateY(-55%) translateX(-20px);
  }

  100% {
    transform: translateY(-50%) translateX(0);
  }
}

.testimonials-one .block-title {
  margin-bottom: 35px;
}

.testimonials-one__single p {
  margin: 0;
  color: #111111;
  font-size: 24px;
  line-height: 46px;
}

.testimonials-one__single h3 {
  color: var(--thm-base);
  font-weight: 800;
  font-size: 20px;
  margin: 0;
  margin-top: 40px;
}

.testimonials-one__single span {
  font-size: 16px;
  font-weight: 600;
  color: #111111;
}

.testimonials-one .bx-wrapper {
  border: none;
  box-shadow: none;
  background-color: transparent;
  margin-bottom: 0;
}

.testimonials-one .bx-wrapper ul.slider {
  padding: 0;
  margin: 0;
}

.testimonials-one .bx-wrapper .bx-controls-direction {
  position: absolute;
  bottom: -10px;
  background-color: #f4f0f9;
  right: 0;
  display: flex;
  align-items: center;
}

.testimonials-one .bx-wrapper .bx-controls-direction a {
  text-indent: 0;
  background-image: none;
  font-size: 24px;
  position: relative;
  top: 0px;
  width: 62px;
  height: 62px;
  color: var(--thm-black);
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.4s ease;
  z-index: 91;
}

.testimonials-one .bx-wrapper .bx-controls-direction a:hover {
  opacity: 1;
  color: var(--thm-base);
}

.testimonials-one .bx-wrapper .bx-prev {
  left: 0px;
  margin-right: 25px;
}

.testimonials-one .bx-wrapper .bx-next {
  right: 0px;
}

#testimonials-slider-pager {
  width: 521px;
  height: 521px;
  border-radius: 50%;
  position: relative;
  animation-name: tesiMove;
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  transition: all 0.4s ease;
  transform-origin: center center;
}

@keyframes tesiMove {
  0% {
    transform: rotate(0deg);
  }

  15% {
    transform: rotate(2deg);
  }

  33% {
    transform: rotate(4deg);
  }

  66% {
    transform: rotate(2deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

#testimonials-slider-pager:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 174px;
  height: 174px;
  border-radius: 50%;
}

#testimonials-slider-pager .testimonials-slider-pager-one .pager-item {
  width: 71px;
  height: 71px;
  display: inline-block;
  vertical-align: middle;
  position: absolute;
}

#testimonials-slider-pager
  .testimonials-slider-pager-one
  .pager-item:nth-child(1) {
  top: 110px;
  left: 32px;
}

#testimonials-slider-pager
  .testimonials-slider-pager-one
  .pager-item:nth-child(2) {
  top: 110px;
  right: 32px;
}

#testimonials-slider-pager
  .testimonials-slider-pager-one
  .pager-item:nth-child(3) {
  bottom: 110px;
  left: 32px;
}

#testimonials-slider-pager
  .testimonials-slider-pager-one
  .pager-item:nth-child(4) {
  bottom: 110px;
  right: 32px;
}

#testimonials-slider-pager
  .testimonials-slider-pager-one
  .pager-item:nth-child(5) {
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
}

#testimonials-slider-pager
  .testimonials-slider-pager-one
  .pager-item:nth-child(6) {
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
}

#testimonials-slider-pager .testimonials-slider-pager-one .pager-item > img {
  width: 100%;
  border-radius: 50%;
  transition: all 0.4s ease;
}

#testimonials-slider-pager
  .testimonials-slider-pager-one
  .pager-item.active
  img {
  opacity: 0.75;
  transform: scale(0.95);
}

#testimonials-slider-pager .testimonials-slider-pager-two .pager-item {
  width: 163px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: all 0.4s ease;
}

#testimonials-slider-pager .testimonials-slider-pager-two .pager-item.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(0.95);
}

#testimonials-slider-pager .testimonials-slider-pager-two .pager-item > img {
  width: 100%;
  border-radius: 50%;
}

#testimonials-slider-pager .testimonials-slider-pager-two .pager-item::after {
  content: "";
  width: 77px;
  height: 63px;
  background-image: url(../images/shapes/testi-qoute-1-1.png);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/

.pricing-one {
  position: relative;
  padding-top: 120px;
  padding-bottom: 90px;
}

.pricing-one .animated {
  -webkit-animation-duration: 1500ms;
  animation-duration: 1500ms;
}

.pricing-one__single {
  text-align: center;
  box-shadow: 0px 10px 60px 0px rgba(45, 1, 100, 0.1);
  border-radius: 15px;
  background-color: #fff;
  position: relative;
  margin-bottom: 30px;
}

.pricing-one__single::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 15px;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  transform-origin: left;
  -webkit-transition: -webkit-transform 500ms ease;
  background-color: #ee1b24;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
}

.pricing-one [class*="col-"]:nth-child(2) .pricing-one__single::before,
.pricing-one__single:hover::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: right;
}

.pricing-one__inner {
  position: relative;
  overflow: hidden;
  padding-left: 60px;
  padding-right: 60px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.pricing-one__single h3 {
  margin: 0;
  color: var(--thm-base);
  font-size: 60px;
  font-weight: 800;
  position: relative;
  line-height: 1em;
  -webkit-transition: all 500ms;
  transition: all 500ms;
}

.pricing-one [class*="col-"]:nth-child(2) .pricing-one__single h3,
.pricing-one__single:hover h3 {
  color: #fff;
}

.pricing-one__single p {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--thm-black);
  position: relative;
  margin-bottom: 5px;
  line-height: 1em;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.pricing-one [class*="col-"]:nth-child(2) .pricing-one__single p,
.pricing-one__single:hover p {
  color: #c3afdd;
}

.pricing-one__list {
  margin-bottom: 0;
  position: relative;
  border-top: 1px solid #f4f0f9;
  padding-bottom: 55px;
  padding-top: 55px;
  margin-top: 60px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.pricing-one [class*="col-"]:nth-child(2) .pricing-one__list,
.pricing-one__single:hover .pricing-one__list {
  border-color: #53268a;
}

.pricing-one__list li {
  line-height: 1em;
  font-size: 18px;
  font-weight: 600;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  color: #111111;
}

.pricing-one [class*="col-"]:nth-child(2) .pricing-one__list li,
.pricing-one__single:hover .pricing-one__list li {
  color: #c3afdd;
}

.pricing-one__list li i {
  color: var(--thm-base);
  font-size: 14px;
  margin-right: 10px;
}

.pricing-one__list li + li {
  margin-top: 24px;
}

.pricing-one__inner::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 302px;
  height: 304px;
  background-image: url(../images/shapes/pricing-shape-1-1.png);
  transform: perspective(600px) scaleX(0);
  -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease,
    -webkit-transform 500ms ease;
  transform-origin: left;
  opacity: 0;
}

.pricing-one [class*="col-"]:nth-child(2) .pricing-one__inner::before,
.pricing-one__single:hover .pricing-one__inner::before {
  transform: perspective(600px) scaleX(1);
  transform-origin: right;
  opacity: 1;
}

.pricing-one__inner > i {
  font-size: 64px;
  background-image: linear-gradient(90deg, #1293c8 0%, #1fe4f2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  display: block;
}

.pricing-one [class*="col-"]:nth-child(2) .pricing-one__inner > i {
  background-image: linear-gradient(90deg, #ff5f5e 0%, #ffc52f 100%);
}

.pricing-one [class*="col-"]:nth-child(3) .pricing-one__inner > i {
  background-image: linear-gradient(90deg, #388e3c 0%, #b6e66d 100%);
}

.pricing-one__btn {
  padding: 13px 57px;
  border-radius: 31px;
  font-size: 16px;
  background-image: linear-gradient(
    0deg,
    #ff5f5e 0%,
    #ffc52f 51%,
    #ff5f5e 100%
  );
}

.pricing-one .block-title {
  margin-bottom: 40px;
}

.pricing-one .switch {
  position: relative;
  display: inline-block;
  width: 79px;
  height: 36px;
  vertical-align: middle;
  margin: 0;
}

.pricing-one .switch input {
  display: none;
}

.pricing-one .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background-image: linear-gradient(90deg, #7b22b0 0%, #e867ff 100%);
}

.pricing-one .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 6px;
  bottom: 6px;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
  background-color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.pricing-one .switch.off .slider:before {
  -webkit-transform: translateX(42px);
  transform: translateX(42px);
}

.pricing-one .slider.round {
  border-radius: 34px;
}

.pricing-one .slider.round:before {
  border-radius: 50%;
}

.pricing-one ul.switch-toggler-list {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  margin-bottom: 60px;
}

.pricing-one ul.switch-toggler-list li a {
  font-size: 18px;
  font-weight: 600;
  color: #737789;
  padding-left: 10px;
  padding-right: 10px;
  display: block;
}

.pricing-one ul.switch-toggler-list li.active a {
  color: var(--thm-black);
}

/*--------------------------------------------------------------
# Video
--------------------------------------------------------------*/

.video-one__box {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  overflow: hidden;
  background-color: #ff864c;
  background-blend-mode: soft-light;
  border-radius: 15px;
  text-align: center;
}

.video-one__content {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 197px;
  padding-bottom: 186px;
}

.video-one__content::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ff864c;
  opacity: 0.4;
}

.video-one__content h3 {
  font-weight: 800;
  color: #fff;
  font-size: 65px;
  margin: 0;
  position: relative;
}

.video-one__content .video-popup {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--thm-black);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 18px;
  position: relative;
  margin-bottom: 40px;
}

.video-one__content .video-popup::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid #fff;
  opacity: 0.4;
  top: calc(50% - 60px);
  left: calc(50% - 60px);
  -webkit-animation: videoBtnAnim 3s ease-in infinite;
  animation: videoBtnAnim 3s ease-in infinite;
}

.video-one__content .video-popup::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 2px solid #fff;
  opacity: 0.15;
  top: calc(50% - 80px);
  left: calc(50% - 80px);
  -webkit-animation: videoBtnAnim 5s ease-in-out infinite;
  animation: videoBtnAnim 5s ease-in-out infinite;
}

@keyframes videoBtnAnim {
  0% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }

  25% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  75% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}

/*--------------------------------------------------------------
# Brand One
--------------------------------------------------------------*/

.brand-one {
  border-bottom: 2px solid #f4f0f9;
  padding-top: 117px;
  padding-bottom: 117px;
}

.brand-one img {
  opacity: 0.3;
  transition: all 500ms ease;
}

.brand-one img:hover {
  opacity: 0.6;
}

/*--------------------------------------------------------------
# Service One
--------------------------------------------------------------*/

.service-one {
  padding-bottom: 90px;
  padding-top: 120px;
}

.service-one__single {
  margin-bottom: 30px;
  padding: 40px;
  padding-top: 36px;
  border-radius: 15px;
  background-color: #fff;
  box-shadow: 0px 10px 60px 0px rgba(45, 1, 100, 0.1);
  transition: all 500ms ease;
  position: relative;
}

.service-one__single::before {
  content: "";
  width: 216px;
  height: 147px;
  background-image: url(../images/shapes/service-shape-1-1.png);
  position: absolute;
  bottom: 0;
  right: 0;
  transform: perspective(220px) scaleX(0);
  -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease,
    -webkit-transform 500ms ease;
  opacity: 0;
  transform-origin: right;
}

.service-one__single:hover::before {
  opacity: 1;
  transform: perspective(200px) scaleX(1);
}

.service-one__single:hover {
  background-color: #ee1b24;
  color: #ffd5d7;
}

.service-one__single p {
  margin: 0;
}

.service-one__icon {
  height: 98px;
  width: 98px;
  background-size: auto 200%;
  background-position: top;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: linear-gradient(180deg, #f1565c, #ee1b24);
  position: relative;
}

[class*="col-"]:nth-child(2) .service-one__icon {
  background-image: linear-gradient(180deg, #4464c2, #21409a);
}

[class*="col-"]:nth-child(3) .service-one__icon {
  background-image: linear-gradient(180deg, #fcac22, #e69c1a);
}

[class*="col-"]:nth-child(4) .service-one__icon {
  background-image: linear-gradient(180deg, #41ca33, #24af16);
}

.service-one__icon {
  background-position: bottom;
}

.service-one__icon i {
  font-size: 60px;
  color: #fff;
}

.service-one__single h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--thm-black);
  margin: 0;
  margin-bottom: 28px;
  transition: all 500ms ease;
  position: relative;
}

.service-one__single:hover h3 {
  color: #ffffff;
}

.service-one__single p {
  font-size: 16px;
  line-height: 30px;
  font-weight: bold;
  color: #111111;
  margin-bottom: 23px;
  transition: all 500ms ease;
  position: relative;
}

.service-one__single:hover p {
  color: #c3afdd;
}
.service-one__single {
  height: 430px !important;
}

.site-header-one {
  background-color: #ee1b24;
}
