/*==========================================================================
Common Css
==========================================================================*/
@import url("https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap");
body {
  font-family: var(--body-font);
  color: var(--body-color);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}

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

a {
  outline: none;
  color: inherit;
  text-decoration: none;
}

a,
button,
i {
  text-decoration: none;
  color: inherit;
}

a:focus,
a:hover {
  text-decoration: none;
  color: inherit;
}

/*==========================================================================
Hedging CSS
==========================================================================*/
h1 {
  font-size: 64px;
  line-height: 74px;
}

h2 {
  font-size: 44px;
  line-height: 60px;
}

h3 {
  font-size: 28px;
  line-height: 40px;
}

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

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

h6 {
  font-size: 18px;
  line-height: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
  color: var(--text-heading-color);
  font-family: var(--heading-font);
  font-weight: 700;
  text-transform: capitalize;
}

@media (max-width: 1199px) {
  h2 {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 36px;
    line-height: 46px;
  }
}
@media (max-width: 420px) {
  h2 {
    font-size: 26px;
    line-height: 36px;
  }
  h5 {
    font-size: 18px;
    line-height: 28px;
  }
}
/*==========================================================================
Button And Title Styles CSS
==========================================================================*/
.btn-one {
  background: var(--primary-color-1);
  color: var(--text-white);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 26px;
  padding: 12px 28px;
  z-index: 3;
  position: relative;
  font-weight: 500;
  transition: 0.5s;
  text-transform: capitalize;
  border-radius: 5px;
}
.btn-one::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  transition: 0.5s;
  background: var(--color-1);
  border-radius: 5px;
  z-index: -1;
}
.btn-one img {
  max-width: 16px;
}
.btn-one:hover {
  color: var(--text-white);
}
.btn-one:hover::before {
  left: inherit;
  right: 0;
  width: 100%;
}
.btn-one:focus {
  color: var(--text-white);
}

/*==========================================================================
Scroll Top CSS
==========================================================================*/
.scroll-up {
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgb(var(--border-color-2), 0.08);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  position: fixed;
  right: 20px;
  bottom: 20px;
  height: 50px;
  width: 50px;
  transition: all 200ms linear;
}
.scroll-up::after {
  position: absolute;
  font-family: "Font Awesome 5 Pro";
  content: "\f176";
  text-align: center;
  line-height: 50px;
  font-size: 24px;
  color: var(--primary-color-1);
  left: 0;
  top: 0;
  font-size: 20px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 200ms linear;
}
.scroll-up.active-scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-up svg path {
  fill: none;
}
.scroll-up svg.scroll-circle path {
  stroke: var(--primary-color-1);
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 200ms linear;
}

/*==========================================================================
Preloader CSS
==========================================================================*/
.theme-loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: var(--bg-heading-color);
  z-index: 9999999999;
}

.spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: flex;
}

.spinner-bounce {
  will-change: transform;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  background: var(--primary-color-1);
  display: inline-block;
  animation: bounces 1s ease-in-out infinite alternate;
  transform-origin: 50% 50%;
}
.spinner-bounce.one {
  margin-right: 15px;
}
.spinner-bounce.two {
  margin-right: 15px;
  animation-delay: 0.4s;
}
.spinner-bounce.three {
  animation-delay: 0.8s;
}

@keyframes bounces {
  0% {
    transform: scale(1);
    background: var(--primary-color-1);
  }
  50% {
    background: #01BDB2;
  }
  100% {
    transform: scale(0.2);
    background: #ff0000;
  }
}
/*==========================================================================
Shape & Image Animation CSS
==========================================================================*/
@keyframes rollIn {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-359deg);
  }
}
@keyframes upDown {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, 30px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes leftRight {
  0% {
    transform: translateX(20px);
  }
  50% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(20px);
  }
}
@keyframes leftRightTwo {
  0% {
    transform: translateX(20px);
  }
  50% {
    transform: translateX(40px);
  }
  100% {
    transform: translateX(20px);
  }
}
/*==========================================================================
Color & Font CSS
==========================================================================*/
:root {
  --body-font: "Kumbh Sans", sans-serif;
  --heading-font: "DM Sans", sans-serif;
  --text-white: #FFFFFF;
  --bg-white: #FFFFFF;
  --primary-color-1: #0C5CFF;
  --bg-heading-color: #1C212B;
  --text-heading-color: #1C212B;
  --body-color: #666667;
  --color-1: #1C212B;
  --color-2: #f9fafc;
  --border-color-1: #E6E6E6;
  --border-color-2: 28, 33, 43;
  --box-shadow-1: 0px 30px 70px rgba(0, 0, 0, 0.08);
  --box-shadow-2: 0px 10px 70px rgba(0, 0, 0, 0.1);
}

/*==========================================================================
Space And Container CSS
==========================================================================*/
.custom__container {
  max-width: 1600px;
  margin: 0 auto;
}

@media (min-width: 1300px) {
  .container {
    max-width: 1200px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
@media (max-width: 1199px) {
  .container {
    max-width: initial;
  }
}
.mt-0 {
  margin-top: 0px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1199px) {
  .xl-mb-0 {
    margin-bottom: 0px;
  }
  .xl-mb-5 {
    margin-bottom: 5px;
  }
  .xl-mb-10 {
    margin-bottom: 10px;
  }
  .xl-mb-15 {
    margin-bottom: 15px;
  }
  .xl-mb-20 {
    margin-bottom: 20px;
  }
  .xl-mb-25 {
    margin-bottom: 25px;
  }
  .xl-mb-30 {
    margin-bottom: 30px;
  }
  .xl-mb-35 {
    margin-bottom: 35px;
  }
  .xl-mb-40 {
    margin-bottom: 40px;
  }
  .xl-mb-45 {
    margin-bottom: 45px;
  }
}
@media (max-width: 991px) {
  .lg-mb-0 {
    margin-bottom: 0px;
  }
  .lg-mb-5 {
    margin-bottom: 5px;
  }
  .lg-mb-10 {
    margin-bottom: 10px;
  }
  .lg-mb-15 {
    margin-bottom: 15px;
  }
  .lg-mb-20 {
    margin-bottom: 20px;
  }
  .lg-mb-25 {
    margin-bottom: 25px;
  }
  .lg-mb-30 {
    margin-bottom: 30px;
  }
  .lg-mb-35 {
    margin-bottom: 35px;
  }
  .lg-mb-40 {
    margin-bottom: 40px;
  }
  .lg-mb-45 {
    margin-bottom: 45px;
  }
}
@media (max-width: 767px) {
  .md-mb-0 {
    margin-bottom: 0px;
  }
  .md-mb-5 {
    margin-bottom: 5px;
  }
  .md-mb-10 {
    margin-bottom: 10px;
  }
  .md-mb-15 {
    margin-bottom: 15px;
  }
  .md-mb-20 {
    margin-bottom: 20px;
  }
  .md-mb-25 {
    margin-bottom: 25px;
  }
  .md-mb-30 {
    margin-bottom: 30px;
  }
  .md-mb-35 {
    margin-bottom: 35px;
  }
  .md-mb-40 {
    margin-bottom: 40px;
  }
  .md-mb-45 {
    margin-bottom: 45px;
  }
}
@media (max-width: 575px) {
  .sm-mb-0 {
    margin-bottom: 0px;
  }
  .sm-mb-5 {
    margin-bottom: 5px;
  }
  .sm-mb-10 {
    margin-bottom: 10px;
  }
  .sm-mb-15 {
    margin-bottom: 15px;
  }
  .sm-mb-20 {
    margin-bottom: 20px;
  }
  .sm-mb-25 {
    margin-bottom: 25px;
  }
  .sm-mb-30 {
    margin-bottom: 30px;
  }
  .sm-mb-35 {
    margin-bottom: 35px;
  }
  .sm-mb-40 {
    margin-bottom: 40px;
  }
  .sm-mb-45 {
    margin-bottom: 45px;
  }
}
/*==========================================================================
Menu Bar CSS
==========================================================================*/
.header__area {
  padding: 20px;
  border-bottom: 1px solid rgb(var(--border-color-2), 0.08);
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 9999;
}
.header__area-menubar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__area-menubar-left {
  position: relative;
  z-index: 99;
}
.header__area-menubar-left-logo a {
  display: inline-block;
}
.header__area-menubar-left-logo a img {
  max-width: 145px;
  position: relative;
  z-index: 9999;
}
.header__area-menubar-center-menu ul {
  padding: 0;
  margin: 0;
}
.header__area-menubar-center-menu ul li {
  display: inline-block;
  position: relative;
  list-style: none;
  margin: 0 25px;
}
.header__area-menubar-center-menu ul li:hover > a {
  color: var(--primary-color-1);
}
.header__area-menubar-center-menu ul li a {
  color: var(--text-heading-color);
  display: block;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  transition: all 0.4s ease-out 0s;
  text-transform: capitalize;
  font-family: var(--body-font);
  position: relative;
}
.header__area-menubar-center-menu ul li:first-child {
  margin-left: 0;
}
.header__area-menubar-center-menu ul li:last-child {
  margin-right: 0;
}
.header__area-menubar-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.header__area-menubar-right-responsive-menu i {
  font-size: 34px;
  color: var(--text-heading-color);
  cursor: pointer;
  width: 7px;
  font-weight: 500;
}

/*==========================================================================
Menu Bar Sticky CSS
==========================================================================*/
.header__sticky-sticky-menu {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 999;
  width: 100%;
  background: var(--bg-white);
  animation: header_sticky 1.1s;
  display: block;
}
@keyframes header_sticky {
  0% {
    top: -250px;
  }
  100% {
    top: 0;
  }
}

/*==========================================================================
Menu Sidebar CSS
==========================================================================*/
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.8s;
  opacity: 0;
  z-index: 99;
  visibility: hidden;
  background: rgba(24, 24, 24, 0.6);
}
.sidebar-overlay.show {
  opacity: 1;
  visibility: visible;
}

/*==========================================================================
Responsive Main Menu Css
==========================================================================*/
.responsive-menu {
  width: 100%;
  margin-top: 50px;
  position: relative;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}
.mean-container .mean-nav {
  background: var(--bg-heading-color);
  margin: 0;
}
.mean-container .mean-nav ul li a {
  transition: 0.4s;
}
.mean-container .mean-nav ul li a.mean-expand {
  background: var(--color-10);
  border-color: var(--color-18) !important;
  font-size: 0px !important;
  padding: 0 !important;
  width: 63px;
  height: 62px;
}
.mean-container .mean-nav ul li a.mean-expand::before {
  content: "\f067";
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  position: absolute;
  color: var(--text-white);
  left: 50%;
  font-size: 18px;
  top: 50%;
  transform: translate(-50%, -50%);
}
.mean-container .mean-nav ul li a.mean-expand.mean-clicked::before {
  content: "\f068";
}
.mean-container .mean-nav ul li a.mean-expand:hover {
  background: var(--primary-color-1);
  color: var(--text-white);
}
.mean-container .mean-nav ul li a:hover {
  color: var(--primary-color-1);
  background: none;
}
.mean-container .mean-nav .sub-menu li a {
  font-size: 20px;
  padding: 6px 0 6px 20px;
  color: var(--color-2);
}
.mean-container .mean-nav .sub-menu li a.mean-expand {
  background: var(--color-10);
  color: var(--text-white);
  height: 48px;
}
.mean-container .mean-nav .sub-menu li a.mean-expand:hover {
  background: var(--primary-color-1);
}
.mean-container .mean-nav ul li li li a {
  width: 100%;
  padding-left: 40px !important;
}

.mean-container .mean-nav > ul {
  display: block !important;
}

.mean-container .mean-bar {
  padding: 0;
  border-bottom: 1px solid var(--color-18);
  overflow: hidden;
}

.mean-container .mean-nav ul li a,
.mean-container .mean-nav ul li li a {
  color: var(--text-white);
  font-size: 16px;
  line-height: 26px;
  font-family: var(--heading-font);
  font-weight: 400;
  text-transform: capitalize;
  border-top: 1px solid var(--color-10);
  opacity: 1;
  padding: 13px 0;
  width: 100%;
}
.mean-container .mean-nav ul li a:hover,
.mean-container .mean-nav ul li li a:hover {
  color: var(--primary-color-1);
}

.mean-container .mean-nav ul li a.mean-expand:hover {
  color: var(--text-white);
}

/*==========================================================================
Responsive Menu Sidebar CSS
==========================================================================*/
.menu__bar {
  display: none;
}
.menu__bar-popup {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 400px;
  height: 100%;
  z-index: 9999;
  transition: 0.8s;
  background: var(--bg-heading-color);
  padding: 30px;
  transform: translateX(-100%);
}
.menu__bar-popup.show {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}
.menu__bar-popup.show::before, .menu__bar-popup.show::after {
  height: 100%;
}
.menu__bar-popup-left {
  position: relative;
}
.menu__bar-popup-left-logo > a img {
  max-width: 145px;
}
.menu__bar-popup-left-close {
  position: absolute;
  top: 0;
  right: 0;
  transform: rotate(0);
  z-index: 99;
}
.menu__bar-popup-left-close:hover {
  animation: rotate 0.4s ease 0s;
}
.menu__bar-popup-left-close i {
  background: var(--primary-color-1);
  width: 40px;
  color: var(--text-white);
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  display: block;
}

@media (max-width: 991px) {
  .header__area-menubar-right-btn {
    display: none;
  }
  .menu__bar {
    display: block;
  }
}
@media (max-width: 575px) {
  .menu__bar-popup {
    width: 100%;
  }
  .header__area {
    padding: 20px 13px;
  }
}
/*==========================================================================
Banner
========================================================================== */
.banner__area {
  padding-top: 190px;
  background: var(--bg-white);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.banner__area-content {
  position: relative;
  text-align: center;
}
.banner__area-content > img {
  max-width: 155px;
}
.banner__area-content h1 {
  max-width: 900px;
  margin: 0 auto;
  margin-top: 6px;
  margin-bottom: 40px;
  font-size: 60px;
  line-height: 75px;
}
.banner__area-content ul {
  padding: 0;
  margin: 0;
}
.banner__area-content ul li {
  list-style: none;
  display: inline-flex;
  margin: 8px;
  width: 70px;
  height: 70px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 0 60px var(--border-color-1);
  transition: 0.4s;
}
.banner__area-content ul li img {
  max-width: 35px;
}
.banner__area-content ul li:hover img {
  transform: scale(1.2);
}
.banner__area-image {
  padding-top: 70px;
  text-align: center;
}
.banner__area-shape-one {
  position: absolute;
  left: 1%;
  top: 25%;
  animation: leftRightTwo 5s infinite linear;
}
.banner__area-shape-two {
  position: absolute;
  right: 6%;
  top: 18%;
  animation: rollIn 6s infinite linear;
}
.banner__area-shape-three {
  position: absolute;
  left: 5%;
  animation: rotation 5s infinite linear;
  bottom: 0;
}
.banner__area-shape-four {
  position: absolute;
  right: 15%;
  bottom: 2%;
  animation: leftRight 4s infinite linear;
}
.banner__area-shape-five {
  position: absolute;
  right: 3%;
  bottom: 15%;
  animation: rollIn 6s infinite linear;
}

@media (max-width: 1199px) {
  .banner__area-shape-four {
    right: 5%;
    max-width: 120px;
  }
  .banner__area-shape-three,
  .banner__area-shape-two {
    max-width: 50px;
  }
  .banner__area-shape-one {
    top: 20%;
    max-width: 150px;
  }
}
@media (max-width: 767px) {
  .banner__area-content h1 {
    font-size: 42px;
    line-height: 52px;
    max-width: 570px;
  }
  .banner__area-shape-four {
    max-width: 90px;
    right: 3%;
  }
  .banner__area-shape-one {
    max-width: 120px;
  }
  .banner__area-shape-three,
  .banner__area-shape-five,
  .banner__area-shape-two {
    max-width: 35px;
  }
}
@media (max-width: 575px) {
  .banner__area-content h1 {
    font-size: 34px;
    line-height: 44px;
    max-width: 470px;
  }
  .banner__area-shape-three {
    bottom: 20%;
  }
  .banner__area-shape-four {
    display: none;
  }
  .banner__area-shape-one {
    max-width: 90px;
    top: 17%;
    left: -5px;
  }
}
@media (max-width: 460px) {
  .banner__area-content h1 {
    font-size: 27px;
    line-height: 37px;
    max-width: 370px;
  }
  .banner__area-content > img {
    max-width: 150px;
  }
}
@media (max-width: 370px) {
  .banner__area-content h1 {
    font-size: 24px;
    line-height: 34px;
    max-width: 370px;
  }
  .banner__area-shape-three {
    bottom: 25%;
    max-width: 25px;
  }
}
/*==========================================================================
Demo
==========================================================================*/
.demo__area {
  padding: 90px 50px 100px 50px;
}
.demo__area-title {
  text-align: center;
}
.demo__area-title p {
  max-width: 640px;
  margin: 0 auto;
  margin-top: 20px;
}
.demo__area-item {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
  overflow: hidden;
}
.demo__area-item-thumb {
  position: relative;
  z-index: 1;
  padding: 30px 20px 0 20px;
  border-radius: 10px 10px 0 0;
}
.demo__area-item-thumb::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 5px;
  position: absolute;
  top: 11px;
  left: 20px;
  z-index: -1;
  background-color: #fa5550;
  box-shadow: 13px 0 0 #fcb23e, 26px 0 0 #24bc46;
}
.demo__area-item-thumb::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color-1);
  z-index: -1;
  border-radius: 10px 10px 0 0;
  opacity: 0.1;
}
.demo__area-item-thumb.coming img {
  filter: blur(2.5px);
}
.demo__area-item-content {
  background: var(--bg-white);
  margin-top: 35px;
  text-align: center;
}
.demo__area-item-content h5 a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 2px no-repeat;
  transition: all 600ms ease;
}
.demo__area-item-content h5 a:hover {
  color: var(--primary-color-1);
}
.demo__area-item > span {
  position: absolute;
  top: 15px;
  right: -50px;
  background: red;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-white);
  padding: 2px 50px;
  transform: rotate(35deg);
  z-index: 1;
}
.demo__area-item.one:hover .demo__area-item-content h5 a {
  color: #F94C30;
}
.demo__area-item.one .demo__area-item-thumb::after {
  background: #F94C30;
}
.demo__area-item.one ul li a:hover {
  background: #F94C30;
}
.demo__area-item.two:hover .demo__area-item-content h5 a {
  color: #FCA028;
}
.demo__area-item.two .demo__area-item-thumb::after {
  background: #FCA028;
}
.demo__area-item.two ul li a:hover {
  background: #FCA028;
}
.demo__area-item.five:hover .demo__area-item-content h5 a {
  color: #F8C805;
}
.demo__area-item.five .demo__area-item-thumb::after {
  background: #F8C805;
}
.demo__area-item.five ul li a:hover {
  background: #F8C805;
}
.demo__area-item.four:hover .demo__area-item-content h5 a {
  color: #FF6401;
}
.demo__area-item.four .demo__area-item-thumb::after {
  background: #FF6401;
}
.demo__area-item.four ul li a:hover {
  background: #FF6401;
}
.demo__area-item.eight:hover .demo__area-item-content h5 a {
  color: #26E88B;
}
.demo__area-item.eight .demo__area-item-thumb::after {
  background: #26E88B;
}
.demo__area-item.eight ul li a:hover {
  background: #26E88B;
}
.demo__area-item:hover {
  transform: translateY(-10px);
}
.demo__area-item:hover .demo__area-item-content h5 a {
  background-size: 100% 2px;
  color: var(--primary-color-1);
}
.demo__area-item:hover .demo__area-item-thumb ul {
  top: 52%;
  opacity: 1;
}

.responsive__area {
  background: var(--color-2);
  padding: 95px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.responsive__area-title h2 {
  margin-bottom: 25px;
}
.responsive__area-title p {
  margin: 0;
}
.responsive__area-list {
  margin-top: 40px;
}
.responsive__area-list ul {
  padding: 0;
  margin: 0;
}
.responsive__area-list ul li {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
  border: 1px solid rgb(var(--border-color-2), 0.08);
  padding: 15px 25px;
  border-radius: 8px;
  list-style: none;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: var(--text-heading-color);
}
.responsive__area-list ul li:last-child {
  margin-left: 25px;
}
.responsive__area-list ul li img {
  max-width: 25px;
}
.responsive__area-image {
  position: relative;
  text-align: right;
}
.responsive__area-image img {
  max-width: 85%;
}
.responsive__area-shape-one {
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0.07;
  z-index: -1;
  transform: scaleX(-1);
}
.responsive__area-shape-two {
  position: absolute;
  left: 5%;
  animation: rotation 5s infinite linear;
  bottom: 30%;
  max-width: 40px;
  z-index: -1;
}

@media (max-width: 991px) {
  .responsive__area-title {
    text-align: center;
  }
  .responsive__area-image img {
    max-width: 100%;
  }
}
@media (max-width: 470px) {
  .responsive__area-list ul {
    display: inline-grid;
  }
  .responsive__area-list ul li:last-child {
    margin: 0;
    margin-top: 20px;
  }
}
.inner__page {
  padding: 90px 60px 100px 60px;
}
.inner__page-title {
  text-align: center;
}
.inner__page-title p {
  max-width: 570px;
  margin: 0 auto;
  margin-top: 20px;
}
.inner__page-item {
  position: relative;
  z-index: 1;
  padding: 30px 20px 20px 20px;
  border-radius: 10px 10px;
  background: #f0f0f1;
}
.inner__page-item::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 5px;
  position: absolute;
  top: 11px;
  left: 20px;
  z-index: -1;
  background-color: #fa5550;
  box-shadow: 13px 0 0 #fcb23e, 26px 0 0 #24bc46;
}
.inner__page-item-thumb {
  position: relative;
  z-index: 1;
}
.inner__page-item-thumb::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-heading-color);
  opacity: 0;
  transition: 0.4s;
}
.inner__page-item-thumb-btn {
  position: absolute;
  top: 45%;
  transition: 0.5s;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
  left: 0;
  opacity: 0;
}
.inner__page-item-thumb-btn .btn-one {
  font-size: 14px;
  line-height: 24px;
  padding: 7px 24px;
}
.inner__page-item:hover .inner__page-item-thumb::before {
  opacity: 0.4;
}
.inner__page-item:hover .inner__page-item-thumb-btn {
  opacity: 1;
  top: 50%;
}

@media (max-width: 1199px) {
  .inner__page {
    padding: 90px 12px;
  }
}
/*==========================================================================
Feature
==========================================================================*/
.feature {
  background: var(--color-1);
  padding: 40px 0;
}
.feature-list {
  text-align: center;
}
.feature-list ul {
  padding: 0;
  margin: 0;
}
.feature-list ul li {
  display: inline-flex;
  align-items: center;
  list-style: none;
  color: var(--text-white);
  gap: 10px;
  opacity: 0.7;
  margin: 0 25px;
}

/*==========================================================================
Features
==========================================================================*/
.features__area {
  background: var(--color-2);
  padding: 90px 0 100px 0;
}
.features__area-start {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.features__area-title {
  text-align: center;
}
.features__area-title p {
  max-width: 520px;
  margin: 0 auto;
  margin-top: 20px;
}
.features__area-item {
  text-align: center;
  padding: 50px 20px;
  background: var(--bg-white);
  transition: 0.5s;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 30px;
}
.features__area-item-icon img {
  max-width: 55px;
}
.features__area-item h6 {
  font-weight: 600;
}
.features__area-item p {
  margin: 0;
  margin-top: 10px;
  font-size: 15px;
}
.features__area-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--box-shadow-1);
}

/*==========================================================================
Page Builder
==========================================================================*/
.page__builder {
  padding-top: 120px;
  background: linear-gradient(136.01deg, #B10431 0%, #2A1F61 100%);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.page__builder-title {
  text-align: center;
}
.page__builder-title h2 {
  color: var(--text-white);
}
.page__builder-title p {
  max-width: 620px;
  margin: 0 auto;
  margin-top: 20px;
  color: var(--text-white);
}
.page__builder-item {
  padding: 40px 30px;
  border-radius: 6px;
  background: var(--text-white);
  text-align: center;
  transition: 0.4s;
}
.page__builder-item-icon {
  margin-bottom: 25px;
}
.page__builder-item-icon img {
  max-width: 65px;
}
.page__builder-item span {
  display: inline-block;
  font-size: 18px;
  max-width: 150px;
  margin: 0 auto;
}
.page__builder-item:hover {
  transform: translateY(-5px);
}
.page__builder-image {
  margin-top: 100px;
  text-align: center;
  position: relative;
}
.page__builder-shape-one {
  position: absolute;
  left: 26%;
  top: 0;
  z-index: -1;
  animation: rotation 30s infinite linear;
  opacity: 0.8;
}
.page__builder-shape-two {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0.8;
}

@media (max-width: 1199px) {
  .feature-list ul li {
    margin: 0 20px;
  }
}
@media (max-width: 991px) {
  .features__area-start {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 692px) {
  .features__area-start {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 460px) {
  .features__area-start {
    grid-template-columns: repeat(1, 1fr);
  }
  .feature-list ul li {
    margin: 0 5px;
  }
}
.review__area {
  position: relative;
  z-index: 1;
  padding: 90px 0 100px 0;
}
.review__area-shape {
  position: absolute;
  z-index: -1;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  opacity: 0.05;
}
.review__area-title {
  text-align: center;
}
.review__area-title p {
  max-width: 610px;
  margin: 0 auto;
  margin-top: 20px;
}
.review__area-start {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
.review__area-item {
  background: var(--bg-white);
  padding: 30px 45px;
  border-radius: 10px;
  box-shadow: 0 0 50px rgb(var(--border-color-2), 0.04);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 50px;
}
.review__area-item p {
  margin: 0;
}
.review__area-item > i {
  position: absolute;
  bottom: 40px;
  right: 40px;
  font-size: 60px;
  color: var(--color-1);
  opacity: 0.04;
}
.review__area-item-author {
  display: inline-flex;
  position: relative;
  gap: 20px;
  align-items: center;
}
.review__area-item-author-image img {
  max-width: 70px;
  border-radius: 50%;
}
.review__area-item-author-content h6 {
  margin: 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 2px;
}
.review__area-item-author-content h5 {
  font-size: 18px;
  margin: 0;
}
.review__area-item-author-content ul {
  padding: 0;
  margin: 0;
  display: inline-flex;
}
.review__area-item-author-content ul li {
  list-style: none;
}
.review__area-item-author-content ul li i {
  font-size: 14px;
  color: #fec42d;
}

@media (max-width: 1199px) {
  .features__area,
  .review__area,
  .demo__area,
  .responsive__area {
    padding: 90px 0;
  }
}
@media (max-width: 991px) {
  .review__area-item {
    padding: 35px 25px;
  }
}
@media (max-width: 767px) {
  .review__area-start {
    grid-template-columns: repeat(1, 1fr);
  }
}
/*==========================================================================
Footer
==========================================================================*/
.footer__area {
  background-position: center;
  background-size: cover;
  background-repeat: repeat;
  position: relative;
  z-index: 1;
  padding: 120px 0;
  overflow: hidden;
}
.footer__area::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-1);
  opacity: 0.85;
  z-index: -1;
}
.footer__area-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.footer__area-content h2 {
  margin-bottom: 40px;
  color: var(--text-white);
}
.footer__area-content-logo {
  margin-bottom: 30px;
}
.footer__area-content-logo a {
  display: inline-block;
}
.footer__area-content-logo a img {
  max-width: 155px;
}
.footer__area-shape-one {
  position: absolute;
  right: -90px;
  top: -50px;
  animation: leftRightTwo 5s infinite linear;
}
.footer__area-shape-two {
  position: absolute;
  left: -100px;
  bottom: -120px;
  animation: rollIn 35s infinite linear;
}

@media (max-width: 575px) {
  .footer__area-shape-one {
    right: 0;
    max-width: 200px;
  }
  .footer__area-shape-two {
    max-width: 220px;
  }
}
/*==========================================================================
Dark CSS
==========================================================================*/
.light-n {
  display: none;
}

.light {
  display: none;
}

.dark-mode {
  color: #808287;
  background: #1C1E22;
  --bg-white: #1C1E22;
  --primary-color-1: #0C5CFF;
  --text-heading-color: #FFFFFF;
  --body-color: #666667;
  --color-1: #222429;
  --color-2: #222429;
  --border-color-1: #343434;
  --border-color-2: 255, 255, 255;
}
.dark-mode .dark__image img {
  filter: grayscale(100%);
}
.dark-mode .light-n {
  display: inline-block;
}
.dark-mode .dark-n {
  display: none;
}
.dark-mode .inner__page-item {
  background: #27282f;
}
.dark-mode .mode__switch::before {
  left: calc(100% - 31px);
}
.dark-mode .mode__switch span::before {
  background-image: url("../../assets/img/icon/sun-white.png");
}
.dark-mode .mode__switch span::after {
  background-image: url("../../assets/img/icon/moon-dark.png");
}

/*==========================================================================
Dark Light Switch CSS
==========================================================================*/
.switch__tab {
  position: fixed;
  font-weight: 500;
  display: flex;
  align-items: center;
  right: 0;
  top: 52%;
  transform: translateY(-50%) translateX(50px) rotate(90deg);
  z-index: 3;
  cursor: pointer;
}

.light-mode-title,
.dark-mode-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-heading-color);
  display: flex;
  align-items: center;
}

.mode__switch {
  height: 34px;
  width: 80px;
  display: inline-block;
  position: relative;
  margin: 0 10px;
  background: var(--primary-color-1);
  transform: translateY(0px);
  border-radius: 35px;
  cursor: pointer;
  transition: all 0.3s ease-out 0s;
}
.mode__switch::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  background: var(--text-white);
  width: 28px;
  height: 28px;
  z-index: -1;
  border-radius: 50%;
  transition: all 0.3s ease-out 0s;
}

.mode__switch span {
  position: relative;
  z-index: 1;
  width: 80px;
  height: 34px;
  display: block;
}
.mode__switch span::before {
  content: "";
  position: absolute;
  top: 8px;
  right: 54px;
  background-image: url("../../assets/img/icon/sun.png");
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
  background-size: cover;
}
.mode__switch span::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 54px;
  background-image: url("../../assets/img/icon/moon.png");
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
  background-size: cover;
}/*# sourceMappingURL=style.css.map */