.cus-btn {
  font-family: "Poppins", sans-serif;
  color: #000;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.02em;
  background-color: #eb5d19;
  padding: 16.5px 29px;
  text-transform: uppercase;
  border-radius: 24px;
  transition: 0.4s all ease-in-out;
  width: 100%;
  max-width: -moz-max-content;
  max-width: max-content;
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
}
@media only screen and (max-width: 1920px) and (min-width: 992px) {
  .cus-btn {
    font-size: 0.833vw;
    padding: 0.859vw 1.51vw;
    border-radius: 1.25vw;
  }
}
@media only screen and (max-width: 991px) {
  .cus-btn {
    padding: 16.5px 27px;
    font-size: 16px;
    letter-spacing: 0.05em;
  }
}
.cus-btn:hover {
  color: #fff;
}
.cus-btn:hover::before {
  height: 100%;
}
.cus-btn::before {
  content: " ";
  position: absolute;
  background-color: #800eb4;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0%;
  width: 100%;
  transition: 0.3s ease-out;
  z-index: -1;
}
.cus-btn--black {
  background-color: #000;
  color: #ff8100;
}
.cus-btn--purple {
  background-color: #800eb4;
  color: #fff;
}
.cus-btn--purple::before {
  background-color: #eb5d19;
}

@font-face {
  font-family: "Gendy";
  src: url("../fonts/GendyRegular.woff2") format("woff2"), url("../fonts/GendyRegular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Black.woff2") format("woff2"), url("../fonts/Poppins-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Light.woff2") format("woff2"), url("../fonts/Poppins-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-ExtraLight.woff2") format("woff2"), url("../fonts/Poppins-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-ExtraBold.woff2") format("woff2"), url("../fonts/Poppins-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Bold.woff2") format("woff2"), url("../fonts/Poppins-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-SemiBold.woff2") format("woff2"), url("../fonts/Poppins-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Medium.woff2") format("woff2"), url("../fonts/Poppins-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.woff2") format("woff2"), url("../fonts/Poppins-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Italic.woff2") format("woff2"), url("../fonts/Poppins-Italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  transition: 0.4s all ease-in-out;
}

html {
  padding-bottom: 0 !important;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: #fff;
  background-color: #000;
}
body.browser-safari .btn-hover-effect {
  padding: 25px 41px 19px;
}
@media only screen and (max-width: 1920px) and (min-width: 992px) {
  body.browser-safari .btn-hover-effect {
    padding: 1.302vw 2.135vw 0.99vw;
  }
}
body.browser-safari .blog-list__filter-button {
  padding: 24px 33px 18px;
}
body.browser-safari .blog-list__sort-wrap select {
  padding: 24px 46px 18px 26px;
}

a, h1, h2, h3, h4, h5, h6, p, div, img, blockquote, figure, label {
  text-decoration: none;
  padding: 0px;
  margin: 0px;
  /* font-weight: normal; */
  vertical-align: middle;
}

ul, ol {
  list-style-type: none;
  margin: 0px;
  padding: 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

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

.d-none {
  display: none !important;
}
@media only screen and (max-width: 991px) {
  .d-none {
    display: block !important;
  }
}

@media only screen and (max-width: 991px) {
  .d-block {
    display: none !important;
  }
}

.d-sm-none {
  display: none !important;
}
@media only screen and (max-width: 767px) {
  .d-sm-none {
    display: block !important;
  }
}

@media only screen and (max-width: 767px) {
  .d-sm-block {
    display: none !important;
  }
}

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

.bg-purple {
  background-color: #800eb4;
}

.bg-orange {
  background-color: #eb5d19;
}

.sec-img {
  position: relative;
  width: 100%;
  padding-top: 100%;
}
.sec-img img, .sec-img video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}

.sec-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.sec-bg img, .sec-bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.cus-container {
  width: 100%;
  max-width: 1618px;
  padding: 0 25px;
  margin: 0 auto;
}
@media only screen and (max-width: 1920px) and (min-width: 992px) {
  .cus-container {
    max-width: 84.271vw;
    padding: 0 1.302vw;
  }
}
@media only screen and (max-width: 991px) {
  .cus-container {
    max-width: 767px;
  }
}
@media only screen and (max-width: 767px) {
  .cus-container {
    max-width: 575px;
  }
}

.heading-xl {
  font-family: "Gendy";
  color: #fff;
  font-size: 50px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media only screen and (max-width: 1920px) and (min-width: 992px) {
  .heading-xl {
    font-size: 2.604vw;
  }
}
@media only screen and (max-width: 991px) {
  .heading-xl {
    font-size: 30px;
  }
}
.heading-xl span {
  display: block;
}

.heading-lg {
  font-family: "Gendy";
  color: #fff;
  font-size: 40px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media only screen and (max-width: 1920px) and (min-width: 992px) {
  .heading-lg {
    font-size: 2.083vw;
  }
}
@media only screen and (max-width: 991px) {
  .heading-lg {
    font-size: 30px;
    line-height: 1.16;
  }
}
.heading-lg span {
  display: block;
}

.des-primary {
  font-family: "Poppins", sans-serif;
  color: #909090;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 1920px) and (min-width: 992px) {
  .des-primary {
    font-size: 0.833vw;
  }
}
@media only screen and (max-width: 991px) {
  .des-primary {
    font-size: 16px;
  }
}
.des-primary p {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.scroll {
  position: absolute;
  display: flex;
  flex-direction: column;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  z-index: 1;
}
.scroll__img {
  width: 100%;
  max-width: 15px;
  margin-top: 30px;
}
@media only screen and (max-width: 1920px) and (min-width: 992px) {
  .scroll__img {
    max-width: 0.781vw;
  }
}
@media only screen and (max-width: 991px) {
  .scroll__img {
    max-width: 10px;
  }
}
.scroll__img .scorll-arrow {
  width: 15px;
  animation: arrow3 1.6s infinite;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1920px) and (min-width: 992px) {
  .scroll__img .scorll-arrow {
    width: 0.781vw;
    margin-bottom: 0.781vw;
  }
}
@media only screen and (max-width: 991px) {
  .scroll__img .scorll-arrow {
    width: 10px;
  }
}
.scroll__img .scorll-arrow:first-child {
  opacity: 0.4;
}
.scroll__img .scorll-arrow:nth-child(2) {
  opacity: 0.7;
}
.scroll__img .scorll-arrow :last-child {
  margin-bottom: 0;
}
.scroll__img .scorll-arrow__line {
  width: 100%;
  height: 2px;
}
@media only screen and (max-width: 1920px) and (min-width: 992px) {
  .scroll__img .scorll-arrow__line {
    height: 0.104vw;
  }
}
.scroll__img .scorll-arrow__line:nth-child(1) {
  transform: translate3d(0, 0, 0);
}
.scroll__img .scorll-arrow__line:nth-child(2) {
  transform: translate3d(0, -8px, 0);
}
@media only screen and (max-width: 1920px) and (min-width: 992px) {
  .scroll__img .scorll-arrow__line:nth-child(2) {
    transform: translate3d(0, -0.417vw, 0);
  }
}
.scroll__img .scorll-arrow__line:nth-child(3) {
  transform: translate3d(0, -16px, 0);
}
@media only screen and (max-width: 1920px) and (min-width: 992px) {
  .scroll__img .scorll-arrow__line:nth-child(3) {
    transform: translate3d(0, -0.833vw, 0);
  }
}
.scroll__img .scorll-arrow__line:nth-child(4) {
  transform: translate3d(0, -24px, 0);
}
@media only screen and (max-width: 1920px) and (min-width: 992px) {
  .scroll__img .scorll-arrow__line:nth-child(4) {
    transform: translate3d(0, -1.25vw, 0);
  }
}
.scroll__img .scorll-arrow__line .line1, .scroll__img .scorll-arrow__line .line2 {
  position: absolute;
  top: -4px;
  left: 0;
  width: 100%;
  height: calc(100% + 8px);
  overflow: hidden;
}
@media only screen and (max-width: 1920px) and (min-width: 992px) {
  .scroll__img .scorll-arrow__line .line1, .scroll__img .scorll-arrow__line .line2 {
    top: -0.208vw;
    height: calc(100% + 0.417vw);
  }
}
.scroll__img .scorll-arrow__line .line1 {
  left: -3px;
  transform-origin: 100% 100%;
  transform: translateX(-50%) rotate(45deg);
}
@media only screen and (max-width: 1920px) and (min-width: 992px) {
  .scroll__img .scorll-arrow__line .line1 {
    left: -0.156vw;
  }
}
.scroll__img .scorll-arrow__line .line2 {
  left: 3px;
  transform-origin: 0% 100%;
  transform: translateX(50%) rotate(-45deg);
}
@media only screen and (max-width: 1920px) and (min-width: 992px) {
  .scroll__img .scorll-arrow__line .line2 {
    left: 0.156vw;
  }
}
.scroll__img .scorll-arrow__line .scrollarrowline1,
.scroll__img .scorll-arrow__line .scrollarrowline2 {
  position: absolute;
  top: 4px;
  left: 0;
  height: calc(100% - 8px);
  border-top: 2.5px dotted #fff;
  width: 100%;
}
@media only screen and (max-width: 1920px) and (min-width: 992px) {
  .scroll__img .scorll-arrow__line .scrollarrowline1,
  .scroll__img .scorll-arrow__line .scrollarrowline2 {
    top: 0.208vw;
    height: calc(100% - 0.417vw);
    border-top: 0.13vw dotted #fff;
  }
}
@media only screen and (max-width: 991px) {
  .scroll__img .scorll-arrow__line .scrollarrowline1,
  .scroll__img .scorll-arrow__line .scrollarrowline2 {
    border-top: 2px dotted #fff;
  }
}
.scroll__img .scorll-arrow__line .scrollarrowline1 {
  animation: arrow1 1.6s infinite;
}
.scroll__img .scorll-arrow__line .scrollarrowline2 {
  animation: arrow2 1.6s infinite;
}
.scroll p {
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  writing-mode: vertical-lr;
  text-orientation: sideways-right;
  transform: rotate(-180deg);
  margin-bottom: 21px;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 1920px) and (min-width: 992px) {
  .scroll p {
    font-size: 0.729vw;
    margin-bottom: 1.094vw;
  }
}
@media only screen and (max-width: 991px) {
  .scroll p {
    font-size: 12px;
    margin-bottom: 12px;
  }
}

.spirit-text {
  display: flex;
  flex-direction: column;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  position: absolute;
  z-index: 1;
}
.spirit-text__img {
  width: 100%;
  max-width: 19px;
  margin-bottom: 14px;
}
@media only screen and (max-width: 1920px) and (min-width: 992px) {
  .spirit-text__img {
    max-width: 0.99vw;
    margin-bottom: 0.729vw;
  }
}
@media only screen and (max-width: 991px) {
  .spirit-text__img {
    max-width: 12px;
    margin-bottom: 0;
  }
}
.spirit-text p {
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  writing-mode: vertical-lr;
  text-orientation: sideways-right;
  transform: rotate(-180deg);
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 1920px) and (min-width: 992px) {
  .spirit-text p {
    font-size: 0.729vw;
  }
}
@media only screen and (max-width: 991px) {
  .spirit-text p {
    font-size: 11px;
    display: none;
  }
}

.cus-label {
  background-color: #fff;
  border-radius: 24px;
  padding: 14px 21px 76px;
  width: 100%;
  position: absolute;
  z-index: -1;
  top: -33px;
  left: 0;
}
@media only screen and (max-width: 1920px) and (min-width: 992px) {
  .cus-label {
    border-radius: 1.25vw;
    padding: 0.729vw 1.094vw 3.958vw;
    top: -2.344vw;
  }
}
@media only screen and (max-width: 991px) {
  .cus-label {
    padding: 9px 10px 76px 21px;
    top: -33px;
    border-radius: 24px;
  }
}
.cus-label__wrap {
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.cus-label__img {
  width: 100%;
  max-width: 18px;
  margin-right: 11px;
}
@media only screen and (max-width: 1920px) and (min-width: 992px) {
  .cus-label__img {
    max-width: 0.938vw;
    margin-right: 0.573vw;
  }
}
@media only screen and (max-width: 991px) {
  .cus-label__img {
    max-width: 17px;
    margin-right: 10px;
  }
}
.cus-label p {
  font-family: "Poppins", sans-serif;
  color: #a7a7a7;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
}
@media only screen and (max-width: 1920px) and (min-width: 992px) {
  .cus-label p {
    font-size: 0.729vw;
  }
}
@media only screen and (max-width: 991px) {
  .cus-label p {
    font-size: 13px;
  }
}
.cus-label ul {
  display: flex;
}
.cus-label ul li {
  font-family: "Poppins", sans-serif;
  color: #a7a7a7;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  position: relative;
  margin-right: 8px;
  padding-right: 8px;
}
@media only screen and (max-width: 1920px) and (min-width: 992px) {
  .cus-label ul li {
    font-size: 0.729vw;
    margin-right: 0.417vw;
    padding-right: 0.417vw;
  }
}
@media only screen and (max-width: 991px) {
  .cus-label ul li {
    font-size: 10px;
    margin-right: 5px;
    padding-right: 5px;
  }
}
.cus-label ul li:last-child {
  margin-right: 0;
  padding-right: 0;
}
.cus-label ul li:last-child::after {
  display: none;
}
.cus-label ul li::after {
  content: " ";
  position: absolute;
  width: 1px;
  height: 12px;
  background-color: #a7a7a7;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media only screen and (max-width: 1920px) and (min-width: 992px) {
  .cus-label ul li::after {
    width: 0.052vw;
    height: 0.625vw;
  }
}
@media only screen and (max-width: 991px) {
  .cus-label ul li::after {
    height: 8px;
  }
}

.slider-cta {
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.slider-cta .custom-slick-arrow {
  width: 100%;
  max-width: 43px;
  cursor: pointer;
}
@media only screen and (max-width: 1920px) and (min-width: 992px) {
  .slider-cta .custom-slick-arrow {
    max-width: 2.24vw;
  }
}
@media only screen and (max-width: 991px) {
  .slider-cta .custom-slick-arrow {
    max-width: 35px;
  }
}
.slider-cta .custom-slick-arrow-prev {
  margin-right: 11px;
}
@media only screen and (max-width: 1920px) and (min-width: 992px) {
  .slider-cta .custom-slick-arrow-prev {
    margin-right: 0.573vw;
  }
}
@media only screen and (max-width: 991px) {
  .slider-cta .custom-slick-arrow-prev {
    margin-right: 9px;
  }
}

/* heading animation css start here */
/* .slideup-text__animation {
  overflow: hidden;
} */
/* .slideup-text__animation span {
  opacity: 0;
  display: block;
} */
/* .slideup-text__animation .icon {
  opacity: 0;
  display: block;
} */
.slideup-text__animation .shadow_text {
  height: 0;
}
.slideup-text__animation.visible .shadow_text {
  animation: slideUpShadow 1s cubic-bezier(0.65, 0, 0.35, 1) both;
}
/* .slideup-text__animation.visible .actual_text {
  animation: slide-up 1s cubic-bezier(0.65, 0, 0.35, 1) both;
}
.slideup-text__animation.visible .actual_text-1 {
  animation-delay: 0s;
}
.slideup-text__animation.visible .shadow_text-1 {
  animation-delay: 0.8s;
  animation-duration: 1.1s;
}
.slideup-text__animation.visible .actual_text-2 {
  animation-delay: 1.3s;
}
.slideup-text__animation.visible .actual_text-3 {
  animation-delay: 1.5s;
}
.slideup-text__animation.visible .actual_text-4 {
  animation-delay: 1.7s;
}
.slideup-text__animation.visible .actual_text-5 {
  animation-delay: 1.9s;
} */
.slideup-text__animation.multi-line-text {
  transform: translateY(20px);
  transition: 0.4s all ease-in-out;
}
@media only screen and (max-width: 1920px) and (min-width: 992px) {
  .slideup-text__animation.multi-line-text {
    transform: translateY(1.042vw);
  }
}
.slideup-text__animation.multi-line-text.slide-top {
  transform: translateY(0);
}

/* heading animation css END here */
/* icon animation strat here */
.slideup-icon__animation {
  overflow: hidden;
  position: relative;
}
.slideup-icon__animation img {
  opacity: 0;
}
.slideup-icon__animation .shadow_icon {
  position: absolute;
  top: 0;
}
.slideup-icon__animation.visible .shadow_icon {
  animation: slideUpShadow 1s cubic-bezier(0.65, 0, 0.35, 1) both;
  animation-duration: 1s;
  animation-delay: 0s;
}
.slideup-icon__animation.visible .actual_icon {
  animation: slide-up 1s cubic-bezier(0.65, 0, 0.35, 1) both;
  animation-duration: 1s;
  animation-delay: 1s;
}

/* icon animation END here */
@keyframes slide-up {
  0% {
    transform: translateY(100px);
    @media only screen and (max-width: 1920px) and (min-width: 992px) {
      transform: translateY(5.208vw);
    }
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideUpShadow {
  0% {
    transform: translateY(100px);
    opacity: 1;
    @media only screen and (max-width: 1920px) and (min-width: 992px) {
      transform: translateY(5.208vw);
    }
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: translateY(-20px);
    opacity: 0;
    @media only screen and (max-width: 1920px) and (min-width: 992px) {
      transform: translateY(-1.042vw);
    }
  }
}
/* spirit line animation start here */
.multiple-line-anim {
  position: relative;
  overflow: hidden;
  width: 23px;
  height: 111px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1920px) and (min-width: 992px) {
  .multiple-line-anim {
    width: 1.198vw;
    height: 5.781vw;
    margin-bottom: 0.781vw;
  }
}
@media only screen and (max-width: 991px) {
  .multiple-line-anim {
    width: 19px;
    height: 102px;
    margin-bottom: 0;
  }
}
.multiple-line-anim.horizontal_line-anim {
  width: 18px;
  height: 100px;
  margin-bottom: 0;
  transform: rotate(90deg);
  margin-left: 30px;
  margin-top: -5px;
}
@media only screen and (max-width: 1920px) and (min-width: 992px) {
  .multiple-line-anim.horizontal_line-anim {
    width: 0.938vw;
    height: 5.208vw;
    margin-left: 1.563vw;
    margin-top: -0.26vw;
  }
}
@media only screen and (max-width: 991px) {
  .multiple-line-anim.horizontal_line-anim {
    width: 19px;
    margin-left: 15px;
  }
}
.multiple-line-anim.horizontal_line-anim .line-img__item {
  height: 6px;
  transform: rotate(135deg);
  margin-left: 0;
}
@media only screen and (max-width: 1920px) and (min-width: 992px) {
  .multiple-line-anim.horizontal_line-anim .line-img__item {
    height: 0.313vw;
  }
}
@media only screen and (max-width: 991px) {
  .multiple-line-anim.horizontal_line-anim .line-img__item {
    height: 6px;
  }
}
.multiple-line-anim .line-img__item {
  width: 100%;
  height: 6px;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: relative;
  transform: rotate(220deg) translateY(10px);
  margin-left: -7px;
}
@media only screen and (max-width: 1920px) and (min-width: 992px) {
  .multiple-line-anim .line-img__item {
    height: 0.313vw;
    transform: rotate(220deg) translateY(0.521vw);
    margin-left: -0.365vw;
  }
}
@media only screen and (max-width: 991px) {
  .multiple-line-anim .line-img__item {
    height: 5px;
  }
}
.multiple-line-anim .line-img__item img {
  animation: lineAnimation 1600ms infinite;
  width: 100%;
  height: 4px;
  min-width: 0;
  position: relative;
  transform: translate(120%);
}
@media only screen and (max-width: 1920px) and (min-width: 992px) {
  .multiple-line-anim .line-img__item img {
    height: 0.208vw;
  }
}
.multiple-line-anim .line-img__item.line-img__item-spacing {
  height: 10px;
}
@media only screen and (max-width: 1920px) and (min-width: 992px) {
  .multiple-line-anim .line-img__item.line-img__item-spacing {
    height: 0.521vw;
  }
}
@media only screen and (max-width: 991px) {
  .multiple-line-anim .line-img__item.line-img__item-spacing {
    height: 8px;
  }
}

/* spirit line animation END here */
@media only screen and (max-width: 991px) {
  .offer-bar__shape1 .horizontal_line-anim {
    margin-top: -20px;
  }
  .offer-bar__shape2 .horizontal_line-anim {
    margin-top: 0px;
    margin-bottom: -20px;
  }
}
.animation-with-delay .line-img__item .delay-0,
.animation-with-delay .arrow-img__item .delay-0 {
  animation-delay: 0;
}
.animation-with-delay .line-img__item .delay-50,
.animation-with-delay .arrow-img__item .delay-50 {
  animation-delay: 50ms;
}
.animation-with-delay .line-img__item .delay-100,
.animation-with-delay .arrow-img__item .delay-100 {
  animation-delay: 100ms;
}
.animation-with-delay .line-img__item .delay-150,
.animation-with-delay .arrow-img__item .delay-150 {
  animation-delay: 150ms;
}
.animation-with-delay .line-img__item .delay-200,
.animation-with-delay .arrow-img__item .delay-200 {
  animation-delay: 200ms;
}
.animation-with-delay .line-img__item .delay-250,
.animation-with-delay .arrow-img__item .delay-250 {
  animation-delay: 250ms;
}
.animation-with-delay .line-img__item .delay-300,
.animation-with-delay .arrow-img__item .delay-300 {
  animation-delay: 300ms;
}
.animation-with-delay .line-img__item .delay-350,
.animation-with-delay .arrow-img__item .delay-350 {
  animation-delay: 350ms;
}
.animation-with-delay .line-img__item .delay-400,
.animation-with-delay .arrow-img__item .delay-400 {
  animation-delay: 400ms;
}
.animation-with-delay .line-img__item .delay-450,
.animation-with-delay .arrow-img__item .delay-450 {
  animation-delay: 450ms;
}
.animation-with-delay .line-img__item .delay-500,
.animation-with-delay .arrow-img__item .delay-500 {
  animation-delay: 500ms;
}
.animation-with-delay .line-img__item .delay-550,
.animation-with-delay .arrow-img__item .delay-550 {
  animation-delay: 550ms;
}
.animation-with-delay .line-img__item .delay-600,
.animation-with-delay .arrow-img__item .delay-600 {
  animation-delay: 600ms;
}
.animation-with-delay .line-img__item .delay-650,
.animation-with-delay .arrow-img__item .delay-650 {
  animation-delay: 650ms;
}
.animation-with-delay .line-img__item .delay-700,
.animation-with-delay .arrow-img__item .delay-700 {
  animation-delay: 700ms;
}
.animation-with-delay .line-img__item .delay-750,
.animation-with-delay .arrow-img__item .delay-750 {
  animation-delay: 750ms;
}
.animation-with-delay .line-img__item .delay-800,
.animation-with-delay .arrow-img__item .delay-800 {
  animation-delay: 800ms;
}
.animation-with-delay .line-img__item .delay-850,
.animation-with-delay .arrow-img__item .delay-850 {
  animation-delay: 850ms;
}
.animation-with-delay .line-img__item .delay-900,
.animation-with-delay .arrow-img__item .delay-900 {
  animation-delay: 900ms;
}
.animation-with-delay .line-img__item .delay-950,
.animation-with-delay .arrow-img__item .delay-950 {
  animation-delay: 950ms;
}

@keyframes lineAnimation {
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-120%);
  }
}
@media only screen and (max-width: 1920px) and (min-width: 992px) {
  .sec-video__wrap-inner .sec-video__content-text {
    max-width: 34.99vw;
  }
}
/* scroll arrow animation css start here */
@keyframes arrow1 {
  0% {
    transform: translateX(calc(-100% - 5px));
    @media only screen and (max-width: 1920px) and (min-width: 992px) {
      transform: translateX(calc(-100% - 0.26vw));
    }
  }
  30% {
    transform: translateX(0);
  }
  60%, 100% {
    transform: translateX(calc(100% + 5px));
    @media only screen and (max-width: 1920px) and (min-width: 992px) {
      transform: translateX(calc(100% + 0.26vw));
    }
  }
}
@keyframes arrow2 {
  0% {
    transform: translateX(calc(100% + 5px));
    @media only screen and (max-width: 1920px) and (min-width: 992px) {
      transform: translateX(calc(100% + 0.26vw));
    }
  }
  30% {
    transform: translateX(0);
  }
  60%, 100% {
    transform: translateX(calc(-100% - 5px));
    @media only screen and (max-width: 1920px) and (min-width: 992px) {
      transform: translateX(calc(-100% - 0.26vw));
    }
  }
}
@keyframes arrow3 {
  0% {
    transform: translateY(-20px);
    @media only screen and (max-width: 1920px) and (min-width: 992px) {
      transform: translateY(-1.042vw);
    }
  }
  100% {
    transform: translateY(20px);
    @media only screen and (max-width: 1920px) and (min-width: 992px) {
      transform: translateY(1.042vw);
    }
  }
}
/* scroll arrow animation css END here */
.arrow-animation a {
  position: relative;
}
.arrow-animation a::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  border: 1px solid #fff;
}
@media only screen and (max-width: 1920px) and (min-width: 992px) {
  .arrow-animation a::after {
    border: 0.052vw solid #fff;
  }
}
.arrow-animation a:hover::after {
  width: 106%;
  height: 106%;
}
.arrow-animation a .arrow-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .arrow-animation a .arrow-wrap {
    width: 75px;
    height: 92px;
  }
}
@media only screen and (max-width: 767px) {
  .arrow-animation a .arrow-wrap {
    width: 33px;
    height: 40px;
  }
}
.arrow-animation a .arrow-wrap img {
  animation: scrolly 4s cubic-bezier(0, 0, 0, 0) forwards infinite;
  transform: translateZ(0);
  transform-origin: bottom;
  perspective: 100px;
}
@media only screen and (max-width: 1920px) and (min-width: 992px) {
  .arrow-animation a .arrow-wrap img {
    perspective: 5.208vw;
  }
}
.arrow-animation.primary a::after {
  border: 2px solid #eb5d19;
}
@media only screen and (max-width: 1920px) and (min-width: 992px) {
  .arrow-animation.primary a::after {
    border: 0.104vw solid #eb5d19;
  }
}

.btn-text-link {
  font-family: "Gendy";
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: -moz-inline-flex;
  display: inline-flex;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  position: relative;
  overflow: hidden;
  transition: 0.4s all;
  font-size: 20px;
}
@media only screen and (max-width: 1920px) and (min-width: 992px) {
  .btn-text-link {
    font-size: 1.042vw;
  }
}
@media only screen and (max-width: 767px) {
  .btn-text-link {
    font-size: 16px;
    margin-top: 10px;
    line-height: 1.3;
  }
}
.btn-text-link span {
  display: inline-block;
  transform: translateY(0);
  transition: inherit;
}
.btn-text-link::after {
  content: attr(data-after);
  display: inline-block;
  transform: translateY(100%);
  position: absolute;
  left: 0;
  transition: inherit;
}
.btn-text-link:hover::after {
  transform: translateY(0);
}
.btn-text-link:hover span {
  transform: translateY(-100%);
}
.btn-text-link .text-link-arrow {
  border-radius: 50%;
  display: -moz-inline-flex;
  display: inline-flex;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  width: 28px;
  height: 28px;
  border: 2px solid #fff;
  margin-left: 10px;
}
@media only screen and (max-width: 1920px) and (min-width: 992px) {
  .btn-text-link .text-link-arrow {
    width: 1.458vw;
    height: 1.458vw;
    border: 0.104vw solid #fff;
    margin-left: 0.521vw;
  }
}
@media only screen and (max-width: 767px) {
  .btn-text-link .text-link-arrow {
    margin-left: 8px;
    border-width: 1px;
  }
}
.btn-text-link .text-link-arrow img {
  max-width: 14px;
  width: 100%;
}
@media only screen and (max-width: 1920px) and (min-width: 992px) {
  .btn-text-link .text-link-arrow img {
    max-width: 0.729vw;
  }
}

.btn-hover-effect div {
  display: inline-block;
  transition: 0.4s all;
  -webkit-transition: 0.4s all;
  -moz-transition: 0.4s all;
  -ms-transition: 0.4s all;
  -o-transition: 0.4s all;
  position: relative;
  overflow: hidden;
}
.btn-hover-effect div span {
  display: inline-block;
  transform: translateY(0);
  transition: inherit;
}
.btn-hover-effect div::after {
  content: attr(data-after);
  display: inline-block;
  transform: translateY(100%);
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  transition: inherit;
}
.btn-hover-effect:hover div span {
  transform: translateY(-100%);
}
.btn-hover-effect:hover div::after {
  transform: translateY(0);
}

@keyframes scrolly {
  0% {
    transform: translate3d(0, -120%, 0) rotateX(20deg);
  }
  30% {
    transform: translate3d(0, 0, 0) rotateX(0deg);
  }
  70% {
    transform: translate3d(0, 0, 0) rotateX(0deg);
  }
  95% {
    transform: translate3d(0, 99%, 0) rotateX(0deg);
  }
  100% {
    transform: translate3d(0, 120%, 0) rotateX(20deg);
  }
}