@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap");
@import url("../fonts/BeyondTheMountains/stylesheet.css");
@import url("../fonts/SF_Pro/stylesheet.css");
/* Media Query Variable */
/*CSS Variable*/
:root {
  --beyond-the-mountains: "Beyond The Mountains", sans-serif;
  --instrument-sans: "Instrument Sans", sans-serif;
  --dm-sans: "DM Sans", sans-serif;
  --space-grotesk: "Space Grotesk", sans-serif;
  --sf-pro: "SF Pro Text", sans-serif;
  --primary-color: #0f0f0f;
  --dark-gray: #2c2c2c;
  --light-greens: #b1ffa4;
  --light-green: #c4eb01;
  --dark-gray: #383838;
  --black: #000;
  --white: #fff;
  --light-white: rgba(255, 255, 255, 0.7);
  --transition-03: all 0.3s;
  --transition-05: all 0.5s;
}

/* Typography start  */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--dm-sans);
  color: var(--white);
  background-color: var(--primary-color);
  line-height: 150%;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  color: var(--white);
  font-family: var(--instrument-sans);
}

h1 {
  font-size: 90px;
  font-weight: 600;
  line-height: 111.111%;
}
@media only screen and (max-width: 1399.98px) {
  h1 {
    font-size: 60px;
  }
}
@media only screen and (max-width: 991.98px) {
  h1 {
    font-size: 48px;
  }
}
@media only screen and (max-width: 767.98px) {
  h1 {
    font-size: 42px;
  }
}

h2 {
  font-size: 60px;
  font-weight: 600;
  line-height: normal;
}
@media only screen and (max-width: 991.98px) {
  h2 {
    font-size: 48px;
  }
}
@media only screen and (max-width: 767.98px) {
  h2 {
    font-size: 40px;
  }
}

h3 {
  font-size: 48px;
  font-weight: 400;
  line-height: 125%;
}
@media only screen and (max-width: 991.98px) {
  h3 {
    font-size: 42px;
  }
}
@media only screen and (max-width: 767.98px) {
  h3 {
    font-size: 40px;
  }
}

h4 {
  font-size: 42px;
  font-weight: 600;
  line-height: normal;
}

h5 {
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
}
@media only screen and (max-width: 1199.98px) {
  h5 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 991.98px) {
  h5 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 767.98px) {
  h5 {
    font-size: 28px;
  }
}

h6 {
  font-size: 32px;
  font-weight: 400;
  line-height: 131.25%;
}

p {
  margin: 0;
  padding: 0;
  color: var(--light-white);
  font-family: var(--dm-sans);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media only screen and (max-width: 767.98px) {
  p {
    font-size: 18px;
  }
}

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

a,
span {
  display: inline-block;
}

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

::selection {
  background-color: rgba(196, 235, 1, 0.3);
}

/* Typography end  */
/*================================================
// container area start 
=================================================*/
.container-1460 {
  max-width: 1460px;
}

.container-1720 {
  max-width: 1720px;
}

/*================================================
// container area end 
=================================================*/
/*================================================
    // button area start
=================================================*/
.common-btn {
  display: inline-flex;
  gap: 10px;
  padding: 15px 24px;
  background-color: transparent;
  color: var(--primary-color);
  font-family: var(--dm-sans);
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: var(--transition-05);
  border: 1px solid transparent;
  justify-content: center;
}
@media only screen and (max-width: 767.98px) {
  .common-btn {
    padding: 17px 24px;
  }
}
.common-btn::before, .common-btn::after {
  position: absolute;
  content: "";
  width: 60%;
  background-color: var(--light-green);
  height: 100%;
  top: 0;
  transition: var(--transition-05);
  z-index: -1;
}
.common-btn::before {
  left: -5px;
  transform: translateX(0%) skewx(15deg);
  -moz-transform: translateX(0%) skewx(15deg);
  -webkit-transform: translateX(0%) skewx(15deg);
  -o-transform: translateX(0%) skewx(15deg);
}
.common-btn::after {
  right: -5px;
  transform: translateX(0) skewx(15deg);
  -moz-transform: translateX(0) skewx(15deg);
  -webkit-transform: translateX(0) skewx(15deg);
  -o-transform: translateX(0) skewx(15deg);
}
.common-btn:hover {
  background-color: transparent;
  color: var(--light-green);
  border-color: var(--light-green);
}
.common-btn:hover::before {
  left: -5px;
  transform: translateX(-200%) skewx(15deg);
  -moz-transform: translateX(-200%) skewx(15deg);
  -webkit-transform: translateX(-200%) skewx(15deg);
  -o-transform: translateX(-200%) skewx(15deg);
}
.common-btn:hover::after {
  right: -5px;
  transform: translateX(200%) skewx(15deg);
  -moz-transform: translateX(200%) skewx(15deg);
  -webkit-transform: translateX(200%) skewx(15deg);
  -o-transform: translateX(200%) skewx(15deg);
}
.common-btn--extend {
  color: var(--light-green);
  border-color: var(--light-green);
}
.common-btn--extend::before {
  left: -5px;
  transform: translateX(-200%) skewx(15deg);
  -moz-transform: translateX(-200%) skewx(15deg);
  -webkit-transform: translateX(-200%) skewx(15deg);
  -o-transform: translateX(-200%) skewx(15deg);
}
.common-btn--extend::after {
  right: -5px;
  transform: translateX(200%) skewx(15deg);
  -moz-transform: translateX(200%) skewx(15deg);
  -webkit-transform: translateX(200%) skewx(15deg);
  -o-transform: translateX(200%) skewx(15deg);
}
.common-btn--extend:hover {
  color: var(--primary-color);
  border-color: var(--light-green);
}
.common-btn--extend:hover::before, .common-btn--extend:hover::after {
  -webkit-transform: translateX(0) skewx(15deg);
  -ms-transform: translateX(0) skewx(15deg);
  transform: translateX(0) skewx(15deg);
}

.readmore-btn {
  padding: 10px 24px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  border: 2px solid #121212;
  background-color: #121212;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  line-height: 175%;
  width: fit-content;
  transition: var(--transition-05);
}
.readmore-btn:hover {
  background-color: transparent;
  color: var(--primary-color);
}

/*================================================
    //  button area end
=================================================*/
/*================================================
    //  section gap start
=================================================*/
.section-gap-top {
  padding-top: 150px;
}

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

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

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

.section-gap-top-bottom {
  padding: 150px 0;
}

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

@media only screen and (max-width: 991.98px) {
  .section-gap-top {
    padding-top: 75px;
  }
  .section-mini-gap-top {
    padding-top: 50px;
  }
  .section-gap-bottom {
    padding-bottom: 75px;
  }
  .section-mini-gap-bottom {
    padding-bottom: 50px;
  }
  .section-gap-top-bottom {
    padding: 75px 0;
  }
  .section-mini-gap-top-bottom {
    padding: 50px 0;
  }
}
/*================================================
    //  section gap start
=================================================*/
/*================================================
    //  section header start
=================================================*/
.split_chars {
  text-transform: initial;
}
.split_chars a {
  text-transform: initial;
}

.section__header {
  text-align: center;
}
.section__header p {
  margin: 0 auto;
}
.section__title {
  margin: 0 auto;
}
.section__title:has(+ p) {
  margin-bottom: 15px;
}
@media only screen and (max-width: 767.98px) {
  .section__title:has(+ p) {
    margin-bottom: 7.5px;
    line-height: 1.1;
  }
}
.section__sub-title {
  font-family: var(--beyond-the-mountains);
  font-size: 22px;
  line-height: normal;
  letter-spacing: 4.4px;
  text-transform: capitalize;
  margin: 0 auto;
}
.section__sub-title:has(+ .section__title) {
  margin-bottom: 12px;
}
@media only screen and (max-width: 767.98px) {
  .section__sub-title:has(+ .section__title) {
    margin-bottom: 6px;
  }
}
.section__sub-title.split_chars {
  text-transform: initial;
}
@media only screen and (max-width: 991.98px) {
  .section__sub-title {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767.98px) {
  .section__sub-title {
    font-size: 14px;
  }
}

/*================================================
    //  section header end
=================================================*/
/*================================================
// header__area start
=================================================*/
.navbar {
  --bs-navbar-padding-y: 20px;
}
@media only screen and (max-width: 767.98px) {
  .navbar {
    --bs-navbar-padding-y: 15px;
  }
}

.header__area {
  position: fixed;
  width: 100%;
  z-index: 999;
}
.header__area::after {
  position: absolute;
  content: "";
  max-width: 1720px;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.header__area .navbar-collapse {
  transition: var(--transition-03);
}
@media only screen and (max-width: 767.98px) {
  .header__area .navbar-collapse {
    text-align: center;
    height: 100vh;
    align-items: start;
  }
}
.header__area.menu-fixed {
  position: fixed;
  top: 0;
}
.header__area.menu-fixed::after {
  content: unset;
}
.header__area.menu-fixed .navbar {
  background-color: rgba(15, 15, 15, 0.7);
  transition: var(--transition-05);
  backdrop-filter: blur(20px);
  box-shadow: 0px 0.5px 15px rgba(255, 255, 255, 0.168627451);
  padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
}
.header__area .navbar-toggler {
  border: 1px solid #ddd;
}
.header__area .navbar-toggler-icon {
  color: var(--white);
  background-image: none;
  width: auto;
  height: auto;
  font-size: 35px;
}
.header__area .navbar-nav {
  gap: 30px;
}
@media only screen and (max-width: 991.98px) {
  .header__area .navbar-nav {
    gap: 10px;
  }
}
@media only screen and (max-width: 767.98px) {
  .header__area .navbar-nav {
    gap: 0px;
  }
}
.header__area .navbar-nav .nav-link {
  color: var(--white);
  font-family: var(--instrument-sans);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: var(--transition-05);
}
.header__area .navbar-nav .nav-link:hover {
  color: var(--light-green);
}
.header__area .purches-btn {
  color: var(--primary-color);
  font-family: var(--dm-sans);
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  padding: 17px 24px;
  border-radius: 25px;
  background: var(--light-green);
  border: 1px solid transparent;
  transition: var(--transition-05);
}
.header__area .purches-btn:hover {
  background-color: transparent;
  border-color: var(--light-green);
  color: var(--light-green);
}

/*================================================
// header__area start
=================================================*/
/*================================================
// hero__area start
=================================================*/
.hero__area {
  margin: auto 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, #373737 101.07%);
  background-image: url("../images/icons/hero-shap.svg");
  background-repeat: repeat;
  position: relative;
  overflow: hidden;
  padding-top: 160px;
  padding-bottom: 80px;
}
@media only screen and (max-width: 991.98px) {
  .hero__area {
    padding-top: 130px;
    padding-bottom: 40px;
  }
}
@media only screen and (max-width: 767.98px) {
  .hero__area {
    padding-top: 100px;
  }
}
.hero__area .section__sub-title {
  line-height: 1.6;
}
.hero__area .shadow-1 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background-color: var(--light-green);
  -webkit-filter: blur(350px);
  filter: blur(350px);
}
@media only screen and (max-width: 991.98px) {
  .hero__area .shadow-1 {
    -webkit-filter: blur(400px);
    filter: blur(400px);
  }
}
@media only screen and (max-width: 767.98px) {
  .hero__area .shadow-1 {
    -webkit-filter: blur(500px);
    filter: blur(500px);
  }
}
.hero__area .btns-group {
  display: flex;
  gap: 16px;
  margin-top: 60px;
}
@media only screen and (max-width: 991.98px) {
  .hero__area .btns-group {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 767.98px) {
  .hero__area .btns-group {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 575.98px) {
  .hero__area .btns-group {
    flex-direction: column;
  }
}
.hero__template-infos {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  padding-left: 35px;
}
@media only screen and (max-width: 991.98px) {
  .hero__template-infos {
    display: flex;
    justify-content: start;
    margin-top: 60px;
  }
}
@media only screen and (max-width: 767.98px) {
  .hero__template-infos {
    padding: 0;
    text-align: center;
    border-left: none;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 575.98px) {
  .hero__template-infos {
    display: block;
    margin-top: 60px;
    padding: 0;
  }
}
.hero__template-infos .counter-number {
  color: var(--white);
  font-family: "Instrument Sans";
  font-size: 80px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
}
@media only screen and (max-width: 1199.98px) {
  .hero__template-infos .counter-number {
    font-size: 60px;
  }
}
.hero__template-infos p {
  margin-top: 5px;
  color: var(--white);
  font-family: var(--dm-sans);
  font-size: 24px;
  line-height: 125%;
}
@media only screen and (max-width: 1199.98px) {
  .hero__template-infos p {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767.98px) {
  .hero__template-infos p {
    font-size: 18px;
  }
}
.hero__template-infos .seperator {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  margin: 32px 0 22px;
}
@media only screen and (max-width: 991.98px) {
  .hero__template-infos .seperator {
    width: 1px;
    height: auto;
    margin: 0 20px;
  }
}
@media only screen and (max-width: 767.98px) {
  .hero__template-infos .seperator {
    margin: 0;
  }
}
@media only screen and (max-width: 575.98px) {
  .hero__template-infos .seperator {
    height: 1px;
    width: 100%;
    margin: 32px 0 22px;
  }
}
.hero__slider {
  padding-top: 100px;
}
@media only screen and (max-width: 991.98px) {
  .hero__slider {
    padding-top: 50px;
  }
}
.hero__slider .swiper-wrapper {
  position: relative;
  transition-timing-function: linear !important;
}
@media only screen and (min-width: 1200px) {
  .hero__slider-wrapper {
    width: 1500px;
  }
}
@media only screen and (min-width: 1600px) {
  .hero__slider-wrapper {
    width: 1650px;
  }
}
@media only screen and (min-width: 1700px) {
  .hero__slider-wrapper {
    width: 1800px;
  }
}
.hero__slider-wrapper img {
  width: 100%;
}
.hero__slider-item {
  border-radius: 16px;
  background: rgba(56, 56, 56, 0.5);
  padding: 10px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  transition: var(--transition-05);
}
.hero__slider-item:hover {
  background-color: rgba(196, 235, 1, 0.4);
}
.hero__slider-item a {
  display: block;
}
.hero__slider-item a img {
  border-radius: 5px;
  width: 100%;
}
.hero__slider-item a img.showcase {
  background-color: #020202;
  backdrop-filter: blur(30px);
}

/*================================================
// hero__area end
=================================================*/
/*================================================
// elementor-area start
=================================================*/
.elementor__area {
  background-color: var(--dark-gray);
  overflow: hidden;
}
.elementor__area .section__header p {
  max-width: 914px;
}
.elementor__area .section__title {
  max-width: 732px;
}
.elementor__thumb {
  border-radius: 32.183px;
  overflow: hidden;
}
@media only screen and (max-width: 991.98px) {
  .elementor__thumb {
    border-radius: 8px;
  }
}
.elementor__thumb-wrapper {
  position: relative;
  padding: 15.14px;
  border-radius: 45.434px;
  background: var(--primary-color);
}
@media only screen and (max-width: 991.98px) {
  .elementor__thumb-wrapper {
    padding: 8px;
    border-radius: 16px;
  }
}
.elementor__text-editor, .elementor__parallax, .elementor__typography-editor, .elementor__color-picker {
  position: absolute;
  display: none;
}
@media only screen and (min-width: 768px) {
  .elementor__text-editor, .elementor__parallax, .elementor__typography-editor, .elementor__color-picker {
    display: block;
  }
}
@media only screen and (max-width: 1199.98px) {
  .elementor__text-editor img, .elementor__parallax img, .elementor__typography-editor img, .elementor__color-picker img {
    max-width: 50%;
  }
}
.elementor__text-editor {
  top: -55px;
  right: 240px;
  text-align: right;
}
@media only screen and (max-width: 1199.98px) {
  .elementor__text-editor {
    right: 180px;
    top: -20px;
  }
}
.elementor__parallax {
  bottom: 123px;
  right: -130px;
  text-align: right;
}
@media only screen and (max-width: 1199.98px) {
  .elementor__parallax {
    right: -50px;
    bottom: 180px;
  }
}
.elementor__color-picker {
  bottom: -120px;
  left: 278px;
}
@media only screen and (max-width: 1199.98px) {
  .elementor__color-picker {
    left: 200px;
    bottom: -50px;
  }
}
.elementor__typography-editor {
  left: -108px;
  top: 200px;
}
@media only screen and (max-width: 1199.98px) {
  .elementor__typography-editor {
    left: -10px;
  }
}

/*================================================
// elementor-area end
=================================================*/
/*================================================
// features__area start
=================================================*/
.features__area {
  background-color: var(--dark-gray);
  overflow: hidden;
}
.features__area .features-note svg,
.features__area .features-note i {
  color: var(--light-green);
}
.features__area .features-note p {
  color: rgba(196, 235, 1, 0.8);
  font-family: var(--sf-pro);
  line-height: 200%;
}
.features__item {
  padding: 32px 32px 40px 40px;
  border: 4px solid var(--black);
  box-shadow: 6px 6px 0px var(--black);
  border-radius: 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transition: var(--transition-05);
  transform: translate(-6px, -6px);
}
@media only screen and (max-width: 1199.98px) {
  .features__item {
    padding: 16px 16px 20px 20px;
  }
}
.features__item.item-bg-color-1 {
  background: linear-gradient(270deg, #fed5b4 0%, #f8eaa7 100%);
}
.features__item.item-bg-color-2 {
  background: linear-gradient(270deg, #ebfda9 0%, #a9f6c5 100%);
}
.features__item.item-bg-color-3 {
  background: linear-gradient(270deg, #f8c5ff 0%, #dac5ff 100%);
}
.features__item:hover {
  box-shadow: 0px 0px 0px var(--black);
  transform: translate(0px, 0px);
}
.features__item .features-content p {
  color: #151314;
  font-family: var(--sf-pro);
  font-size: 16px;
  line-height: 162.5%;
}
.features__item .features-icon {
  position: absolute;
  right: 32px;
  bottom: 22px;
}
@media only screen and (max-width: 767.98px) {
  .features__item .features-icon {
    bottom: 20px;
    right: 0;
  }
}
.features__item .title {
  color: #151314;
  font-family: var(--space-grotesk);
  font-weight: 500;
  line-height: 106.25%;
  text-transform: capitalize;
  margin-bottom: 12px;
  white-space: nowrap;
}
@media only screen and (max-width: 1199.98px) {
  .features__item .title {
    order: 2;
  }
}
@media only screen and (max-width: 767.98px) {
  .features__item .title {
    order: 1;
  }
}
@media only screen and (max-width: 575.98px) {
  .features__item .title {
    order: 2;
  }
}
@media only screen and (max-width: 1199.98px) {
  .features__item .icon {
    order: 1;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767.98px) {
  .features__item .icon {
    order: 2;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 575.98px) {
  .features__item .icon {
    order: 1;
    margin-bottom: 10px;
  }
}

/*================================================
    // features__area end
=================================================*/
/*================================================
    // home-previews__area start
=================================================*/
.home-previews__area {
  background-color: var(--primary-color);
}
.home-previews__area .section__header {
  margin: 0 auto;
}
.home-previews__area .section__header p {
  max-width: 991px;
}
.home-previews__area .section__header .featchers {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 64px;
  margin-top: 55px;
}
@media only screen and (max-width: 1199.98px) {
  .home-previews__area .section__header .featchers {
    gap: 30px;
  }
}
@media only screen and (max-width: 991.98px) {
  .home-previews__area .section__header .featchers {
    margin-top: 30px;
    gap: 10px;
  }
}
.home-previews__area .section__header .featchers .featcher {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
  font-family: var(--dm-sans);
  font-size: 24px;
  line-height: 125%;
}
.home-previews__area .section__header .featchers .featcher svg {
  width: 32px;
  height: 32px;
}
@media only screen and (max-width: 991.98px) {
  .home-previews__area .section__header .featchers .featcher {
    font-size: 22px;
  }
}
@media only screen and (max-width: 767.98px) {
  .home-previews__area .section__header .featchers .featcher {
    gap: 10px;
    font-size: 20px;
  }
  .home-previews__area .section__header .featchers .featcher svg {
    width: 30px;
    height: 30px;
  }
}
.home-previews__items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 100px;
}
@media only screen and (max-width: 1399.98px) {
  .home-previews__items {
    gap: 60px;
  }
}
@media only screen and (max-width: 1199.98px) {
  .home-previews__items {
    gap: 50px;
  }
}
@media only screen and (max-width: 991.98px) {
  .home-previews__items {
    gap: 40px;
  }
}
@media only screen and (max-width: 767.98px) {
  .home-previews__items {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 35px;
  }
}
.home-previews__item:last-child {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}
.home-previews__item-inner {
  border-radius: 16px;
  background: var(--dark-gray);
  padding: 24px 24px 0;
}
@media only screen and (max-width: 991.98px) {
  .home-previews__item-inner {
    padding: 20px 20px 0;
    border-radius: 8px;
  }
}
@media only screen and (max-width: 767.98px) {
  .home-previews__item-inner {
    padding: 15px 15px 0;
  }
}
.home-previews__item-inner.h-fit-content {
  height: max-content;
}
.home-previews__item-inner:has(.comming-soon) {
  padding: 24px 24px;
}
@media only screen and (max-width: 991.98px) {
  .home-previews__item-inner:has(.comming-soon) {
    padding: 20px 20px;
    border-radius: 8px;
  }
}
@media only screen and (max-width: 767.98px) {
  .home-previews__item-inner:has(.comming-soon) {
    padding: 15px 15px;
  }
}
@media only screen and (max-width: 1199.98px) {
  .home-previews__item-inner:has(.comming-soon) h3 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 991.98px) {
  .home-previews__item-inner:has(.comming-soon) h3 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 767.98px) {
  .home-previews__item-inner:has(.comming-soon) h3 {
    font-size: 28px;
  }
}
.home-previews__item-thumb {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
@media only screen and (max-width: 991.98px) {
  .home-previews__item-thumb {
    border-radius: 4px;
  }
}
.home-previews__item-thumb::before {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 15, 15, 0.24) 0%, rgba(15, 15, 15, 0.24) 100%), rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(7px);
  transition: var(--transition-05);
  z-index: 1;
  opacity: 0;
}
.home-previews__item-thumb:hover .view-details-btn {
  opacity: 1;
}
.home-previews__item-thumb:hover::before {
  opacity: 1;
}
.home-previews__item-thumb img {
  width: 100%;
}
.home-previews__item-thumb .view-details-btn {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  place-content: center;
  gap: 8px;
  background-color: var(--white);
  color: var(--primary-color);
  font-family: var(--dm-sans);
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  opacity: 0;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.01) 0px 18px 36px -18px inset;
}
@media only screen and (max-width: 1199.98px) {
  .home-previews__item-thumb .view-details-btn {
    width: 110px;
    height: 110px;
    font-size: 18px;
  }
}
@media only screen and (max-width: 991.98px) {
  .home-previews__item-thumb .view-details-btn {
    gap: 4px;
  }
}
@media only screen and (max-width: 767.98px) {
  .home-previews__item-thumb .view-details-btn {
    font-size: 14px;
  }
}
.home-previews__item-content {
  padding: 38px 0px;
}
@media only screen and (max-width: 1399.98px) {
  .home-previews__item-content {
    padding: 25px 0px;
  }
}
@media only screen and (max-width: 1199.98px) {
  .home-previews__item-content {
    text-align: center;
  }
}
@media only screen and (max-width: 767.98px) {
  .home-previews__item-content {
    padding: 20px 0px;
  }
}
.home-previews__item-content h5 {
  text-transform: capitalize;
}

/*================================================
    // home-previews__area end
=================================================*/
/*================================================
    // responsive-screen__area start
=================================================*/
.responsive-screen__area {
  background-color: var(--dark-gray);
  overflow: hidden;
}
.responsive-screen__area .section__header p {
  max-width: 757px;
}
.responsive-screen__devices {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 991.98px) {
  .responsive-screen__devices {
    gap: 30px;
  }
}
@media only screen and (max-width: 575.98px) {
  .responsive-screen__devices {
    flex-direction: column;
  }
}
.responsive-screen__device {
  text-align: center;
  width: 25%;
}
@media only screen and (max-width: 991.98px) {
  .responsive-screen__device {
    width: calc(50% - 15px);
  }
}
@media only screen and (max-width: 575.98px) {
  .responsive-screen__device {
    width: 100%;
  }
}
.responsive-screen__device:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.responsive-screen__device:first-child .responsive-screen__device-inner {
  margin-left: 0;
}
.responsive-screen__device:last-child .responsive-screen__device-inner {
  margin-right: 0;
}
@media only screen and (max-width: 991.98px) {
  .responsive-screen__device:first-child .responsive-screen__device-inner {
    margin-left: auto;
  }
  .responsive-screen__device:last-child .responsive-screen__device-inner {
    margin-right: auto;
  }
  .responsive-screen__device:nth-child(even) {
    border-right: 0;
  }
}
@media only screen and (max-width: 575.98px) {
  .responsive-screen__device:not(:last-child) {
    border-right: 0;
  }
}
.responsive-screen__device-inner {
  max-width: max-content;
  margin: 0 auto;
}
.responsive-screen__device-inner:hover .thumb {
  color: var(--light-green);
}
.responsive-screen__device-inner .thumb {
  margin-bottom: 20px;
  color: var(--white);
  transition: var(--transition-05);
}
.responsive-screen__device-inner p {
  color: var(--white);
  font-family: var(--dm-sans);
  font-size: 22px;
  font-weight: 500;
  line-height: normal;
}
@media only screen and (max-width: 1399.98px) {
  .responsive-screen__device-inner p {
    font-size: 20px;
  }
}
.responsive-screen__device-inner .info {
  color: var(--white);
  font-family: var(--dm-sans);
  font-size: 20px;
  font-weight: 400;
  line-height: 200%;
  opacity: 0.7;
}
@media only screen and (max-width: 1399.98px) {
  .responsive-screen__device-inner .info {
    font-size: 18px;
  }
}
.responsive-screen__screens-wrapper {
  position: relative;
}
@media only screen and (min-width: 992px) {
  .responsive-screen__screens-wrapper {
    margin-bottom: 350px;
  }
}
.responsive-screen__screens-wrapper .desktop {
  border-radius: 16px;
  background-color: var(--black);
  width: 100%;
}
.responsive-screen__screens-wrapper .laptop,
.responsive-screen__screens-wrapper .tablet,
.responsive-screen__screens-wrapper .mobile {
  position: absolute;
}
.responsive-screen__screens-wrapper .laptop {
  border-radius: 16px;
  bottom: -300px;
  right: -130px;
}
@media only screen and (max-width: 1599.98px) {
  .responsive-screen__screens-wrapper .laptop {
    max-width: 50%;
    right: 0px;
    bottom: -27%;
  }
}
.responsive-screen__screens-wrapper .tablet {
  border-radius: 16px;
  bottom: -350px;
  left: -200px;
}
@media only screen and (max-width: 1599.98px) {
  .responsive-screen__screens-wrapper .tablet {
    max-width: 30%;
    left: 0px;
    bottom: -25%;
  }
}
.responsive-screen__screens-wrapper .mobile {
  border-radius: 16px;
  top: calc(100% + 48px);
  left: 180px;
}
@media only screen and (max-width: 1599.98px) {
  .responsive-screen__screens-wrapper .mobile {
    max-width: 40%;
    left: 260px;
    bottom: -200px;
  }
}

/*================================================
    // responsive-screen__area end
=================================================*/
/*================================================
    // Inner-pages__area start
=================================================*/
.inner-pages__area {
  background-color: var(--primary-color);
}
.inner-pages__area .section__header p {
  max-width: 757px;
}
.inner-pages__slider-navigation {
  height: auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media only screen and (min-width: 576px) {
  .inner-pages__slider-navigation {
    padding-top: 24px;
  }
}
.inner-pages__slider-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767.98px) {
  .inner-pages__slider-pagination {
    display: none;
  }
}
.inner-pages__slider-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: var(--light-green);
  opacity: 0.2;
}
.inner-pages__slider-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}
.inner-pages__slider-prev, .inner-pages__slider-next {
  max-width: 108px;
  width: 100%;
  height: 45px;
  border: 1px solid rgba(255, 255, 255, 0.47);
  display: grid;
  place-items: center;
  border-radius: 32px;
  transition: var(--transition-05);
}
@media only screen and (max-width: 575.98px) {
  .inner-pages__slider-prev, .inner-pages__slider-next {
    max-width: 70px;
    width: 100%;
    height: 40px;
  }
}
.inner-pages__slider-prev svg, .inner-pages__slider-next svg {
  color: var(--white);
  transition: var(--transition-05);
}
.inner-pages__slider-prev:hover, .inner-pages__slider-next:hover {
  border-color: var(--light-green);
}
.inner-pages__slider-prev:hover svg, .inner-pages__slider-next:hover svg {
  color: var(--light-green);
}
.inner-pages__item:hover .item-thumb-wrapper {
  background-color: rgba(196, 235, 1, 0.5);
}
.inner-pages__item .item-thumb-wrapper {
  border-radius: 16px;
  background: var(--dark-gray);
  padding: 24px;
  transition: var(--transition-05);
}
@media only screen and (max-width: 1399.98px) {
  .inner-pages__item .item-thumb-wrapper {
    padding: 12px;
  }
}
.inner-pages__item .item-thumb {
  border-radius: 8px;
  overflow: hidden;
}
.inner-pages__item .item-thumb img {
  width: 100%;
}
.inner-pages__item .item-thumb img.error-page {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(25px);
}
.inner-pages__item .item-content h6 {
  text-align: center;
  font-family: var(--space-grotesk);
  font-size: 20.235px;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  padding: 24px 0;
}
@media only screen and (max-width: 767.98px) {
  .inner-pages__item .item-content h6 {
    padding: 12px 0 24px;
  }
}

/*================================================
    // Inner-pages__area end
=================================================*/
/*================================================
    // Faq__area start
=================================================*/
.faq__area {
  background-color: var(--primary-color);
}
.faq__area .contact-btn {
  color: var(--white);
  font-family: var(--dm-sans);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 300%;
  display: inline-flex;
  gap: 20px;
  align-items: center;
  padding: 6px 40px;
  border-radius: 32.5px;
  border: 1px solid var(--white);
  margin-top: 50px;
  transition: var(--transition-05);
}
@media only screen and (max-width: 991.98px) {
  .faq__area .contact-btn {
    padding: 2px 20px;
    margin-top: 20px;
  }
}
.faq__area .contact-btn:hover {
  border-color: var(--light-green);
  color: var(--light-green);
}
@media only screen and (max-width: 991.98px) {
  .faq__accordion {
    padding-top: 50px;
  }
}
.faq__accordion .accordion-item {
  background-color: var(--primary-color);
  border: 0;
}
.faq__accordion .accordion-item:first-of-type > .accordion-header .accordion-button, .faq__accordion .accordion-item:last-of-type > .accordion-header .accordion-button {
  border-radius: 0;
}
@media only screen and (max-width: 1199.98px) {
  .faq__accordion .accordion-item .accordion-header {
    font-size: 28px;
  }
}
@media only screen and (max-width: 991.98px) {
  .faq__accordion .accordion-item .accordion-header {
    font-size: 25px;
  }
}
@media only screen and (max-width: 767.98px) {
  .faq__accordion .accordion-item .accordion-header {
    font-size: 22px;
  }
}
.faq__accordion .accordion-item .accordion-button {
  background-color: var(--primary-color);
  color: var(--white);
  border-top: 1px solid rgba(236, 236, 236, 0.12);
  font-size: inherit;
  padding: 40px 0;
}
@media only screen and (max-width: 1199.98px) {
  .faq__accordion .accordion-item .accordion-button {
    padding: 20px 0;
  }
}
.faq__accordion .accordion-item .accordion-button:not(.collapsed) {
  background-color: inherit;
  box-shadow: none;
}
.faq__accordion .accordion-item .accordion-button:focus {
  box-shadow: none;
}
.faq__accordion .accordion-item .accordion-button:not(.collapsed)::after {
  font: var(--fa-font-solid);
  content: "+";
  font-size: 18px;
  font-weight: 600;
  display: grid;
  place-content: center;
}
.faq__accordion .accordion-item .accordion-button::after {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font: var(--fa-font-solid);
  content: "\f068";
  transform-origin: center center;
  width: 25px;
  height: 25px;
  font-size: 18px;
  font-weight: 600;
  display: grid;
  place-content: center;
}
.faq__accordion .accordion-item:last-child .accordion-button.collapsed {
  border-bottom: 1px solid rgba(236, 236, 236, 0.12);
}
.faq__accordion .accordion-item:last-child .accordion-body {
  border-bottom: 1px solid rgba(236, 236, 236, 0.12);
}
.faq__accordion .accordion-item .accordion-body {
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--dm-sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 155.556%;
  padding: 0 0 42px;
  margin-top: -6px;
}
@media only screen and (max-width: 1199.98px) {
  .faq__accordion .accordion-item .accordion-body {
    padding: 0 0 22px;
  }
}

/*================================================
    // Faq__area end
=================================================*/
/*
============================================
============= Preloader CSS ================
*/
.preloader {
  position: fixed;
  z-index: 10;
  height: 100vh;
  width: 100%;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: transparent;
  z-index: 99999999999999;
  mix-blend-mode: normal;
}

.preloader svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 110vh;
  fill: #1a1a1a;
}

h5.preloader-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 100px;
  color: var(--white);
}

@media (max-width: 1040px) {
  h5.preloader-text {
    font-size: 60px;
  }
}
h5.preloader-text::after {
  content: "Unikon";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  animation: move 2s infinite alternate;
}

@keyframes move {
  from {
    clip-path: circle(50px at 0% 50%);
  }
  to {
    clip-path: circle(50px at 100% 50%);
  }
}
/*
============= Preloader CSS END ================
================================================
*/
/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--light-green);
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  -webkit-transform: translate(calc(-50% + 5px), -50%);
  transform: translate(calc(-50% + 5px), -50%);
  z-index: 999991;
}

.custom-cursor__cursor-two {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--light-green);
  opacity: 1;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-transition: width 0.3s, height 0.3s, opacity 0.3s;
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  z-index: 999991;
}

.custom-cursor__hover {
  background-color: var(--light-green);
  opacity: 0.4;
}

.custom-cursor__innerhover {
  width: 25px;
  height: 25px;
  opacity: 0.4;
}

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