@charset "UTF-8";
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# variables
# Utility
# Common
# Hero Section
# Feature Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# variables
--------------------------------------------------------------*/
:root {
  --pikiz-font: "Inter", sans-serif;
  --pikiz-heading-font: "Bricolage Grotesque", sans-serif;
  --pikiz-base: #FB732A;
  --pikiz-base-rgb: 251, 115, 42;
  --pikiz-black: #0C0610;
  --pikiz-black-rgb: 12, 6, 16;
  --pikiz-white: #fff;
  --pikiz-white-rgb: 255, 255, 255;
  --pikiz-text: #696767;
  --pikiz-text-rgb: 105, 103, 103;
  --pikiz-text2: #717171;
  --pikiz-text2-rgb: 113, 113, 113;
  --pikiz-text-dark: #7782A0;
  --pikiz-text-dark-rgb: 119, 130, 160;
  --pikiz-text-gray: #89868d;
  --pikiz-text-gray-rgb: 137, 134, 141;
  --pikiz-primary: #19223a;
  --pikiz-primary-rgb: 25, 34, 58;
  --pikiz-gray: #f1fcf9;
  --pikiz-gray-rgb: 241, 252, 249;
  --pikiz-gray2: #ededed;
  --pikiz-gray2-rgb: 237, 237, 237;
  --pikiz-gray3: #FFF5F0;
  --pikiz-gray3-rgb: 255, 245, 240;
  --pikiz-black2: #405f58;
  --pikiz-black2-rgb: 64, 95, 88;
  --pikiz-black3: #000;
  --pikiz-black3-rgb: 0, 0, 0;
  --pikiz-border-color: #d9d9d9;
  --pikiz-border-color-rgb: 217, 217, 217;
  --pikiz-letter-space: 0.1em;
  --pikiz-letter-space-xl: 0.2em;
}

/*--------------------------------------------------------------
# Utility
--------------------------------------------------------------*/
.mt-20 {
  margin-top: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-80 {
  padding-top: 80px;
}

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

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

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

.pt-142 {
  padding-top: 142px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-30 {
  padding-left: 30px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-30 {
  padding-right: 30px;
}

.pikiz-btn {
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  background-color: var(--pikiz-base, #FB732A);
  color: var(--pikiz-white, #fff);
  transition: 500ms;
  padding: 18px 41px;
  font-family: var(--pikiz-heading-font, "Bricolage Grotesque", sans-serif);
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  border-radius: 1000px;
  text-transform: capitalize;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.pikiz-btn > i {
  font-style: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 300px;
  transition: transform 500ms ease;
  transform-origin: top center;
  transform: translateY(0%) translateZ(0px) scaleY(1) rotateX(0deg);
}
.pikiz-btn:hover > i {
  transform-origin: bottom center;
  transform: translateY(-100%) translateZ(150px) scaleY(0) rotateX(90deg);
}
.pikiz-btn > span {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 700ms ease, top 700ms ease;
  background-color: var(--pikiz-black, #0C0610);
  transform: translateY(0%) translateZ(150px) scaleY(0) rotateX(90deg);
  perspective: 300px;
  transform-origin: bottom center;
}
.pikiz-btn:hover > span {
  transition: transform 500ms ease, top 500ms ease;
  transform: translateY(0%) translateZ(0px) scaleY(1) rotateX(0deg);
}

.pikiz-btn-two {
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  background-color: var(--pikiz-base, #FB732A);
  color: var(--pikiz-white, #fff);
  transition: 500ms;
  padding: 18px 41px;
  font-family: var(--pikiz-heading-font, "Bricolage Grotesque", sans-serif);
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  border-radius: 1000px;
  text-transform: capitalize;
  overflow: hidden;
  position: relative;
  z-index: 1;
  border-radius: 5px;
  background-color: var(--pikiz-black, #0C0610);
}
.pikiz-btn-two > span {
  box-sizing: border-box;
  position: relative;
  background: inherit;
}
.pikiz-btn-two > span::before {
  box-sizing: border-box;
  position: absolute;
  content: "";
  background: inherit;
}
.pikiz-btn-two:hover {
  background-color: var(--pikiz-base, #FB732A);
}
.pikiz-btn-two:hover > span {
  background-color: inherit;
}
.pikiz-btn-two:hover > span::before {
  animation: btnchitchat 1s steps(20) forwards;
}

@keyframes btnchitchat {
  0% {
    content: "#";
  }
  5% {
    content: ".";
  }
  10% {
    content: "^{";
  }
  15% {
    content: "-!";
  }
  20% {
    content: "#$_";
  }
  25% {
    content: "№:0";
  }
  30% {
    content: "%$@";
  }
  35% {
    content: "@}-? ";
  }
  40% {
    content: "?{4@%";
  }
  45% {
    content: "=.,^!";
  }
  50% {
    content: "?2@%";
  }
  55% {
    content: ";1}]";
  }
  60% {
    content: "?{%:%";
    right: 0;
  }
  65% {
    content: "|{f[4";
    right: 0;
  }
  70% {
    content: "{4%0%";
    right: 0;
  }
  75% {
    content: "'1_0<";
    right: 0;
  }
  80% {
    content: "{0%";
    right: 0;
  }
  85% {
    content: "]>'";
    right: 0;
  }
  90% {
    content: "4";
    right: 0;
  }
  95% {
    content: "2";
    right: 0;
  }
  100% {
    content: "";
    right: 0;
  }
}
.sec-title__three {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .sec-title__three {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
  }
}
.sec-title__three--border {
  border-bottom: 1px solid var(--pikiz-black3, #000);
  padding-bottom: 55px;
}
@media (max-width: 991px) {
  .sec-title__three--border {
    padding-bottom: 30px;
  }
}
.sec-title__three__box {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
.sec-title__three__box .pikiz-btn {
  transform: rotate(-15.22deg);
  background-color: var(--pikiz-black, #0C0610);
  color: var(--pikiz-white, #fff);
}
.sec-title__three__box .pikiz-btn span {
  background-color: var(--pikiz-base, #FB732A);
}
.sec-title__three__sub-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  font-family: var(--pikiz-font, "Inter", sans-serif);
  text-transform: capitalize;
  color: var(--pikiz-black, #0C0610);
  margin-bottom: 0;
}
.sec-title__three__title {
  color: var(--pikiz-black3, #000);
  margin-bottom: 0;
  font-family: var(--pikiz-font, "Inter", sans-serif);
  font-weight: 700;
  font-size: 120px;
  line-height: 100%;
  display: inline-block;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
@media (max-width: 1420px) {
  .sec-title__three__title {
    font-size: 100px;
  }
}
@media (max-width: 1199px) {
  .sec-title__three__title {
    font-size: 80px;
  }
}
@media (max-width: 991px) {
  .sec-title__three__title {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .sec-title__three__title {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .sec-title__three__title {
    font-size: 45px;
  }
}
@media (max-width: 425px) {
  .sec-title__three__title {
    font-size: 40px;
  }
}

.bw-spilt-title-three {
  display: inline-block;
  overflow: hidden;
}

.bw-spilt-title-three span {
  display: inline-block;
  transform: translateX(-40px);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.bw-spilt-title-three span.animate {
  transform: translateX(0);
  opacity: 1;
}

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
body {
  font-family: var(--pikiz-font, "Inter", sans-serif);
  color: var(--pikiz-text, #696767);
  font-size: 16px;
  line-height: 1.875;
  font-weight: 400;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--pikiz-base, #FB732A);
  transition: all 400ms ease;
}

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

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--pikiz-heading-font, "Bricolage Grotesque", sans-serif);
  color: var(--pikiz-black, #0C0610);
}
@media (max-width: 575px) {
  h1 br,
  h2 br,
  h3 br,
  h4 br,
  h5 br,
  h6 br {
    display: none;
  }
}

p {
  font-family: var(--pikiz-font, "Inter", sans-serif);
  font-weight: 400;
  font-size: 18px;
  line-height: 167%;
  color: var(--pikiz-text, #696767);
}
@media (max-width: 575px) {
  p br {
    display: none;
  }
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.bg-peach {
  background-color: var(--pikiz-gray3, #FFF5F0);
}

.container-fluid,
.container {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1420px) {
  .container {
    max-width: 1420px;
  }
}
.row {
  --bs-gutter-x: 30px;
}

.gutter-y-10 {
  --bs-gutter-y: 10px;
}

.gutter-y-15 {
  --bs-gutter-y: 15px;
}

.gutter-y-20 {
  --bs-gutter-y: 20px;
}

.gutter-x-110 {
  --bs-gutter-x: 110px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

.gutter-y-52 {
  --bs-gutter-y: 52px;
}

.gutter-y-60 {
  --bs-gutter-y: 60px;
}

.gutter-x-70 {
  --bs-gutter-x: 70px;
}

.h-font {
  font-family: var(--pikiz-heading-font, "Bricolage Grotesque", sans-serif);
}

.b-font {
  font-family: var(--pikiz-font, "Inter", sans-serif);
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #d6d6d6;
}

::-webkit-scrollbar-thumb {
  background: var(--pikiz-base, #FB732A);
  border-radius: 100px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.tabs-box .tabs-content .tab:not(.active-tab) {
  display: none;
}

.bootstrap-select .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  border-radius: 0;
}
.bootstrap-select .dropdown-item.active,
.bootstrap-select .dropdown-item:active {
  background-color: var(--pikiz-base, #FB732A);
}

.bw-blur-bottom {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  bottom: 0;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  height: 70px;
  left: 0;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(black)) add;
  -webkit-mask: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, black 100%) add;
  mask: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(black)) add;
  mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, black 100%) add;
  overflow: visible;
  position: fixed;
  right: 0;
  pointer-events: none;
  z-index: 999;
}

.ul-list-one {
  margin-bottom: 0;
}
.ul-list-one li {
  position: relative;
  padding-left: 45px;
  font-size: 16px;
  font-weight: 500;
  color: var(--pikiz-black, #0C0610);
}
@media (min-width: 481px) {
  .ul-list-one li {
    font-size: 20px;
  }
}
.ul-list-one li::before {
  content: "\e907";
  color: var(--pikiz-base, #FB732A);
  font-size: 26px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: "azino-icon";
}

/* Scroll To Top */
#scroll-percentage {
  position: absolute;
}

.scroll-top {
  height: 60px;
  width: 60px;
  background-color: var(--pikiz-white, #fff);
  border-radius: 50%;
  position: fixed;
  bottom: 35px;
  right: 30px;
  transform: scale(0);
  display: grid;
  place-items: center;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  z-index: 100;
}

.scroll-top.active {
  bottom: 40px;
  transform: scale(1);
  opacity: 1;
  visibility: visible;
  animation: 500ms ease-in-out 0s normal none 1 running scroll-Top;
  transition: 0.3s;
}

.scroll-top-value {
  height: calc(100% - 6px);
  width: calc(100% - 6px);
  background-color: var(--pikiz-base, #FB732A);
  color: var(--pikiz-white, #fff);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 600;
}

.scroll-top-value i {
  font-size: 20px;
}

@-webkit-keyframes scroll-Top {
  0% {
    -webkit-transform: translate3d(0, 80%, 0);
    transform: translate3d(0, 80%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes scroll-Top {
  0% {
    -webkit-transform: translate3d(0, 80%, 0);
    transform: translate3d(0, 80%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
/* post paginations */
.post-pagination {
  margin: 0px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .post-pagination {
    gap: 10px;
  }
}
@media screen and (max-width: 450px) {
  .post-pagination {
    flex-wrap: wrap;
  }
}
.post-pagination__list {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
}
.post-pagination.text-center {
  justify-content: center;
}
.post-pagination.text-end {
  justify-content: flex-end;
}
.post-pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 45px;
  background-color: #E4E4E4;
  font-family: var(--pikiz-heading-font, "Bricolage Grotesque", sans-serif);
  border-radius: 30px;
  transition: all 400ms ease;
  font-weight: 500;
  font-size: 15px;
  line-height: 173%;
  color: var(--pikiz-black3, #000);
}
.post-pagination a.active, .post-pagination a:hover {
  background-color: var(--pikiz-base, #FB732A);
  color: var(--pikiz-white, #fff);
  border-color: var(--pikiz-base, #FB732A);
}
@media screen and (max-width: 767px) {
  .post-pagination a {
    width: 40px;
    height: 40px;
  }
}
.post-pagination__button {
  margin: 0;
  border: none;
  outline: none;
  background-color: #E4E4E4;
  font-family: var(--pikiz-heading-font, "Bricolage Grotesque", sans-serif);
  border-radius: 30px;
  transition: all 400ms ease;
  font-weight: 500;
  font-size: 15px;
  line-height: 173%;
  color: var(--pikiz-black3, #000);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9.5px 30px;
  gap: 6px;
}
.post-pagination__button i {
  font-size: 13px;
}
.post-pagination__button.active, .post-pagination__button:hover {
  background-color: var(--pikiz-base, #FB732A);
  color: var(--pikiz-white, #fff);
  border-color: var(--pikiz-base, #FB732A);
}
@media screen and (max-width: 767px) {
  .post-pagination__button {
    padding: 9.5px 15px;
    font-size: 13px;
  }
  .post-pagination__button i {
    font-size: 10px;
  }
}

.blog-list .post-pagination,
.blog-grid-left .post-pagination,
.blog-grid-right .post-pagination {
  justify-content: flex-start;
}

.pikiz-slick__carousel--with-shadow .slick-list {
  overflow: visible;
}
.pikiz-slick__carousel--with-shadow .slick-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}
.pikiz-slick__carousel--with-shadow .slick-slide.active {
  opacity: 1;
  visibility: visible;
}

.pikiz-slick__carousel--basic-nav.slick-slider .owl-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.pikiz-slick__carousel--basic-nav.slick-slider .owl-nav button {
  border: none;
  outline: none;
  width: 70px;
  height: 70px;
  margin: 0;
  padding: 0;
  opacity: 1;
  background-color: transparent;
  border: 1px solid var(--pikiz-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  border-radius: 50%;
  color: var(--pikiz-white, #fff);
  transition: all 500ms ease;
}
.pikiz-slick__carousel--basic-nav.slick-slider .owl-nav button:hover {
  color: var(--pikiz-white, #fff);
  background-color: var(--pikiz-base, #FB732A);
  border-color: var(--pikiz-base, #FB732A);
}
.pikiz-slick__carousel--basic-nav.slick-slider .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 23px;
  margin-top: 50px;
  list-style: none;
}
.pikiz-slick__carousel--basic-nav.slick-slider .slick-dots button {
  width: 12px;
  height: 12px;
  display: block;
  border-radius: 50%;
  background-color: var(--pikiz-black3, #000);
  border: none;
  position: relative;
  padding: 0;
  border: none;
  outline: none;
  font-size: 0;
  margin: 0;
  transition: all 300ms ease;
}
.pikiz-slick__carousel--basic-nav.slick-slider .slick-dots button::after {
  width: 24px;
  height: 24px;
  position: absolute;
  content: "";
  left: -6px;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
  border: 1px solid var(--pikiz-base, #FB732A);
  transform: scale(0);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.pikiz-slick__carousel--basic-nav.slick-slider .slick-dots button:hover {
  background-color: var(--pikiz-base, #FB732A);
}
.pikiz-slick__carousel--basic-nav.slick-slider .slick-dots button:hover::after {
  transform: scale(1);
}
.pikiz-slick__carousel--basic-nav.slick-slider .slick-dots li.slick-active button {
  background-color: var(--pikiz-base, #FB732A);
}
.pikiz-slick__carousel--basic-nav.slick-slider .slick-dots li.slick-active button::after {
  transform: scale(1);
}
.pikiz-slick__carousel--basic-nav.slick-slider .slick-dots.disabled {
  display: none;
}
.pikiz-slick__carousel--basic-nav.slick-slider .owl-nav.disabled + .owl-dots {
  margin-top: 50px;
}
.pikiz-slick__carousel--basic-nav.slick-slider .owl-nav.disabled {
  display: none;
}

/* progress bar */
.progress-box + .progress-box {
  margin-top: 28px;
}

.progress-box__title {
  margin-bottom: 7px;
  font-family: var(--pikiz-heading-font, "Bricolage Grotesque", sans-serif);
  font-weight: 400;
  font-size: 14px;
  color: var(--pikiz-primary, #19223a);
}

.progress-box__bar {
  position: relative;
  width: 100%;
  height: 6px;
  background-color: var(--pikiz-gray2, #ededed);
}

.progress-box__bar__inner {
  position: relative;
  position: absolute;
  width: 0%;
  height: 100%;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  background-color: var(--pikiz-base, #FB732A);
  border-radius: inherit;
  transition: all 800ms linear;
}

.progress-box__number {
  position: absolute;
  bottom: calc(100% + 3px);
  right: 0;
  font-family: var(--pikiz-heading-font, "Bricolage Grotesque", sans-serif);
  font-weight: 400;
  font-size: 14px;
  color: var(--pikiz-primary, #19223a);
}

.bw-split-text > div {
  background-size: 200% 100%;
  background-position-x: 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(to left, rgba(var(--pikiz-black-rgb, 19, 19, 19), 0.1) 50%, var(--pikiz-black, #131313) 50%);
}

#smooth-content,
#smooth-wrapper {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.letters-fade-in .char {
  display: inline-block;
  transform: translate(-24px, 0px);
  -webkit-transform: translate(-24px, 0px);
  opacity: 0;
  filter: blur(4px);
  -webkit-filter: blur(4px);
  transition: transform 0.5s ease, opacity 0.5s ease, filter 0.5s ease;
  transition-delay: var(--transition-delay);
  white-space: pre;
  margin-right: 0;
}

.letters-fade-in.is-visible .char {
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  opacity: 1;
  filter: blur(0);
  -webkit-filter: blur(0);
}

.letters-fade-in .word {
  display: inline-block;
  white-space: nowrap;
}

.letters-fade-in.is-visible .char {
  transform: translate(0px, 0px);
  -webkit-transform: translate(0px, 0px);
  opacity: 1;
  filter: blur(0px);
  -webkit-filter: blur(0px);
}

.big-image-container {
  position: relative;
  width: 1390px;
  margin-left: auto;
  margin-right: auto;
}
.big-image-container img {
  width: 100%;
  object-fit: cover;
}

/* cursor text */
.custom-cursor-text {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--pikiz-black3, #000);
  z-index: 9999;
  font-weight: 500;
  font-family: var(--pikiz-heading-font, "Bricolage Grotesque", sans-serif);
  transform: translate(-50%, -50%);
  padding: 10px 20px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--pikiz-white, #fff);
}

.image-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.image-hover::before, .image-hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  transition: 500ms cubic-bezier(0.7, 0, 0.3, 1);
  background-color: var(--pikiz-white, #fff);
  z-index: 1;
  transform: translateX(var(--before-x));
}
.image-hover::after {
  left: auto;
  right: 0;
  transform: translateX(var(--after-x));
}

.bw-animated-right {
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  transition: none !important;
  transition: all 0.8s !important;
  transition-delay: 0.3s !important;
  transform: none !important;
  opacity: 1 !important;
}

.bw-animated-right.animated {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.bw-animated-left {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: none !important;
  transition: all 0.9s !important;
  transition-delay: 0.4s !important;
  opacity: 1 !important;
  transform: none !important;
}

.bw-animated-left.animated {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.bw-animated-top {
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  transition: none !important;
  transition: all 0.9s !important;
  transition-delay: 0.4s !important;
  opacity: 1 !important;
  transform: none !important;
}

.bw-animated-top.animated {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.custom-cursor-text--two {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  padding: 0;
  font-size: 20px;
  color: var(--pikiz-white, #fff);
  background-color: var(--pikiz-base, #FB732A);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.main-header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 84px 70px;
}
@media (max-width: 1199px) {
  .main-header {
    padding: 40px 20px;
  }
}
@media (max-width: 767px) {
  .main-header {
    padding: 20px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
}
.main-header .pikiz-btn {
  text-transform: uppercase;
}
.main-header .pikiz-btn > i {
  border: none;
  background-color: var(--pikiz-base, #FB732A);
}

.hero-section {
  background-color: var(--pikiz-primary, #19223a);
  position: relative;
  padding-top: 75px;
  padding-bottom: 0px;
  min-height: 828px;
  display: flex;
  align-items: center;
}
@media (max-width: 1199px) {
  .hero-section {
    min-height: auto;
    padding-top: 150px;
    padding-bottom: 80px;
  }
}
.hero-section .pikiz-btn > span {
  background-color: var(--pikiz-white, #fff);
  color: var(--pikiz-primary, #19223a);
}
.hero-section__bg-shape {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero-section .container {
  position: relative;
  margin-top: 80px;
}
@media (max-width: 1200px) {
  .hero-section .container {
    margin-top: 0px;
  }
}
.hero-section__images {
  display: none;
}
@media (min-width: 1200px) {
  .hero-section__images {
    display: block;
  }
}
.hero-section__images img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.hero-section__arrow {
  width: 180px;
  height: 84px;
  background-image: url(../images/pikiz-landing/demo-hero-arrow.png);
  background-repeat: no-repeat;
  position: absolute;
  bottom: 180px;
  left: 35.5%;
  -webkit-animation-name: float-bob-y-2;
  animation-name: float-bob-y-2;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  display: none;
}
@media (min-width: 1500px) {
  .hero-section__arrow {
    display: block;
  }
}
.hero-section__badge {
  width: 133px;
  height: 133px;
  background-image: url(../images/pikiz-landing/hero-badge-1.png);
  background-repeat: no-repeat;
  position: absolute;
  top: 130px;
  left: 47.3%;
  animation: sunMove 10s linear infinite;
  display: none;
}
@media (min-width: 1200px) {
  .hero-section__badge {
    display: block;
  }
}
.hero-section__arrow-one {
  width: 44px;
  height: 43px;
  background-repeat: no-repeat;
  position: absolute;
  top: 430px;
  left: 10%;
  animation: float-bob-y-2 4s infinite alternate;
  display: none;
}
@media (min-width: 1200px) {
  .hero-section__arrow-one {
    display: block;
  }
}
.hero-section__arrow-two {
  width: 72px;
  height: 95px;
  background-repeat: no-repeat;
  position: absolute;
  top: 300px;
  right: 12%;
  animation: float-bob-y-2 4s infinite alternate;
  display: none;
}
@media (min-width: 1200px) {
  .hero-section__arrow-two {
    display: block;
  }
}
.hero-section__content {
  position: relative;
}
.hero-section__shape {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 2px;
  margin: 0 0 29px;
}
.hero-section__shape::before {
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  background-color: var(--pikiz-white, #fff);
  animation: squareSshapeYellow 1.5s infinite alternate;
}
.hero-section__shape::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background-color: var(--pikiz-base, #FB732A);
  margin-top: -20px;
  animation: squareSshapeGreen 1.5s infinite alternate;
}
@keyframes squareSshapeYellow {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes squareSshapeGreen {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
.hero-section__title {
  margin: 0;
  font-size: 35px;
  line-height: 45px;
  color: var(--pikiz-white, #fff);
  font-weight: 700;
  margin-bottom: 15px;
  font-family: var(--pikiz-heading-font, "Bricolage Grotesque", sans-serif);
}
@media (min-width: 1200px) {
  .hero-section__title {
    font-size: 60px;
    line-height: 77px;
  }
}
.hero-section__text {
  color: var(--pikiz-text-dark, #7782A0);
  font-weight: 500;
  font-size: 20px;
  line-height: 36px;
  margin-bottom: 50px;
}

@keyframes float-bob-y-2 {
  0% {
    -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(10px) translateX(10px) rotate(5deg);
    transform: translateY(10px) translateX(10px) rotate(5deg);
  }
  100% {
    -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
}
@keyframes sunMove {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  50% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  75% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
.hero-banner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  background-color: transparent;
  margin: 0 -26px;
  margin-top: -469px;
}
@media (max-width: 1199px) {
  .hero-banner {
    display: none;
  }
}
.hero-banner__one {
  position: relative;
  top: 150px;
}
@media (max-width: 1600px) {
  .hero-banner__one {
    display: none;
  }
}
.hero-banner__one img {
  border-radius: 20px;
  filter: drop-shadow(0 0 17.5px rgba(131, 134, 137, 0.35));
}
.hero-banner__two {
  position: relative;
  top: 105px;
  left: 30px;
  z-index: 2;
}
.hero-banner__two img {
  border-radius: 20px;
  filter: drop-shadow(0 0 17.5px rgba(131, 134, 137, 0.35));
}
.hero-banner__four {
  position: relative;
  top: 105px;
  left: -30px;
}
.hero-banner__four img {
  border-radius: 20px;
  filter: drop-shadow(0 0 17.5px rgba(131, 134, 137, 0.35));
}
.hero-banner__five {
  position: relative;
  top: 150px;
}
@media (max-width: 1600px) {
  .hero-banner__five {
    display: none;
  }
}
.hero-banner__five img {
  border-radius: 20px;
  filter: drop-shadow(0 0 17.5px rgba(131, 134, 137, 0.35));
}

/*--------------------------------------------------------------
# Feature Section
--------------------------------------------------------------*/
.features-two {
  background-color: #ededed;
  padding: 75px 0;
  text-align: center;
  position: relative;
}
@media (max-width: 991px) {
  .features-two {
    padding-bottom: 50px;
  }
}
@media (max-width: 991px) {
  .features-two__box {
    margin-bottom: 30px;
  }
}
.features-two__title {
  font-size: 20px;
  line-height: 30px;
  color: var(--pikiz-primary, #19223a);
  margin: 22px 0 0;
  font-weight: 700;
}

/*--------------------------------------------------------------
# Demo Section
--------------------------------------------------------------*/
.demos-one {
  position: relative;
  padding: 105px 0 90px;
}
@media (max-width: 767px) {
  .demos-one {
    padding: 80px 0 50px;
  }
}
.demos-one__title {
  text-align: center;
  font-size: 55px;
  font-weight: 700;
  margin-bottom: 75px;
}
@media (max-width: 991px) {
  .demos-one__title {
    font-size: 38px;
    line-height: 46px;
    margin-bottom: 42px;
  }
}
.demos-one__card {
  background-color: var(--pikiz-white, #fff);
  box-shadow: 0px 10px 60px 0px rgba(var(--pikiz-black3-rgb, 0, 0, 0), 0.1);
  text-align: center;
  transition: 500ms ease;
  transform: translateY(0px);
  overflow: hidden;
}
.demos-one__card .demos-one__btns-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -67%);
  z-index: 2;
  width: 100%;
  text-align: center;
}
.demos-one__card .demos-one__btns-box .demos-one__btn {
  transform: translateY(-30px);
  opacity: 0;
  filter: blur(10px);
  transition: 375ms cubic-bezier(0.7, 0, 0.3, 1);
  margin-bottom: 15px;
}
.demos-one__card .demos-one__btns-box .demos-one__btn .pikiz-btn {
  max-width: 150px;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
.demos-one__card .demos-one__btns-box .demos-one__btn:last-child {
  transform: translateY(30px);
}
.demos-one__card:hover .demos-one__btns-box .demos-one__btn {
  transform: translateY(0);
  opacity: 1;
  filter: blur(0);
}
.demos-one__image {
  position: relative;
  display: block;
  overflow: hidden;
}
.demos-one__image img {
  transform: perspective(0px) rotateX(0deg) rotateY(0deg) scale(1);
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 375ms cubic-bezier(0.7, 0, 0.3, 1);
}
.demos-one__image::before {
  content: "";
  height: 100%;
  width: 100%;
  background-color: rgba(var(--pikiz-black3-rgb, 0, 0, 0), 0.7);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  opacity: 0;
  transform: unset;
  transition: 375ms cubic-bezier(0.7, 0, 0.3, 1);
  pointer-events: none;
}
.demos-one__card:hover .demos-one__image::before {
  opacity: 1;
}
.demos-one__card:hover .demos-one__image img {
  transform: perspective(600px) rotateX(0.06deg) rotateY(0deg) scale(1.1);
}
.demos-one__content .demos-one__title {
  margin: 0;
  text-transform: uppercase;
  font-size: 22px;
  color: var(--pikiz-black3, #000);
  font-weight: 700;
}
.demos-one__content .demos-one__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.demos-one__content .demos-one__title a:hover {
  background-size: 100% 1px;
}
.demos-one__content .demos-one__title {
  padding-top: 28px;
  padding-bottom: 28px;
}

/*--------------------------------------------------------------
#  Feature Section 02
--------------------------------------------------------------*/
.features-one {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 110px 0 90px;
  background-color: var(--pikiz-gray2, #ededed);
}
@media (max-width: 767px) {
  .features-one {
    padding: 75px 0 50px;
  }
}
.features-one__title {
  text-align: center;
  font-size: 55px;
  font-weight: 700;
  margin-bottom: 75px;
}
@media (max-width: 991px) {
  .features-one__title {
    font-size: 38px;
    line-height: 46px;
    margin-bottom: 42px;
  }
}
.features-one__grid {
  display: grid;
  grid-gap: 0 30px;
  grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 1199px) {
  .features-one__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 991px) {
  .features-one__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .features-one__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 329px) {
  .features-one__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.features-one__box {
  text-align: center;
  position: relative;
  margin: 0 0 46px;
}
@media (max-width: 767px) {
  .features-one__box {
    margin-left: auto;
    margin-right: auto;
  }
}
.features-one__box__image {
  width: 131px;
  height: 135px;
  background-color: var(--pikiz-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
}
.features-one__box__image img {
  display: inline-block;
  transition: all 500ms linear;
  transition-delay: 0s;
  transition-delay: 0s;
  transform: scale(1);
}
.features-one__box__title {
  max-width: 131px;
  margin: 27px 0 0;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  color: var(--pikiz-primary, #19223a);
}
.features-one__box:hover .features-one__box__image img {
  transform: scale(0.9);
}

/*--------------------------------------------------------------
#  Footer Section
--------------------------------------------------------------*/
.main-footer {
  background-color: var(--pikiz-primary, #19223a);
  position: relative;
  padding-top: 120px;
  padding-bottom: 0px;
}
@media (max-width: 767px) {
  .main-footer {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.main-footer__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.05;
  background-size: cover;
  background-position: center center;
}
.main-footer__shape-one {
  left: 12%;
  top: 185px;
  background-repeat: no-repeat;
  position: absolute;
  width: 58px;
  height: 58px;
  z-index: 1;
  animation: startIconOne 1.8s infinite alternate;
  display: none;
}
@media (min-width: 1200px) {
  .main-footer__shape-one {
    display: block;
  }
}
.main-footer__shape-two {
  right: 23%;
  top: 62px;
  background-repeat: no-repeat;
  position: absolute;
  width: 41px;
  height: 114px;
  z-index: 1;
  animation: footerEffec1_Rotate 12s linear infinite alternate;
  display: none;
}
@media (max-width: 1500px) {
  .main-footer__shape-two {
    right: 15%;
  }
}
@media (min-width: 1200px) {
  .main-footer__shape-two {
    display: block;
  }
}
.main-footer__shape-three {
  right: 12%;
  bottom: 100px;
  background-repeat: no-repeat;
  position: absolute;
  width: 78px;
  height: 78px;
  z-index: 1;
  animation: startIconTwo 1.8s infinite alternate;
  display: none;
}
@media (min-width: 1200px) {
  .main-footer__shape-three {
    display: block;
  }
}
@keyframes footerEffec1_Rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.main-footer .container {
  position: relative;
  z-index: 2;
}
.main-footer__title {
  margin: 0 0 22px;
  font-weight: 400;
  font-size: 50px;
  line-height: 36px;
  text-align: center;
  color: var(--pikiz-white, #fff);
}
@media (max-width: 992px) {
  .main-footer__title {
    font-size: 35px;
    line-height: 40px;
  }
}
.main-footer__text {
  margin: 0 0 30px;
  font-size: 20px;
  line-height: 20px;
  color: var(--pikiz-white, #fff);
}
@media (min-width: 992px) {
  .main-footer__text {
    margin: 0 0 48px;
    font-family: var(--pikiz-heading-font, "Bricolage Grotesque", sans-serif);
    font-weight: 400;
    font-size: 26px;
    line-height: 26px;
    text-align: center;
  }
}
.main-footer .main-footer__btn {
  padding-bottom: 104px;
  border-bottom: 1px solid #394871;
}
.main-footer__copyright {
  padding: 35px 0;
}
.main-footer__copyright p {
  margin-bottom: 0;
}
/*# sourceMappingURL=pikiz-landing.css.map */
