/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# variables
# Utility
# Common
# Hero Section
# Feature Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# variables
--------------------------------------------------------------*/
:root {
  --conlive-font: "Red Hat Text", sans-serif;
  --conlive-heading-font: "Raleway", sans-serif;
  --conlive-special-font: "Caveat", cursive;
  --conlive-text: #636363;
  --conlive-text-rgb: 99, 99, 99;
  --conlive-base: #ff3538;
  --conlive-base-rgb: 255, 53, 56;
  --conlive-gray: #A3A3A3;
  --conlive-gray-rgb: 163, 163, 163;
  --conlive-white: #ffffff;
  --conlive-white-rgb: 255, 255, 255;
  --conlive-white2: #ecf5f4;
  --conlive-white2-rgb: 236, 245, 244;
  --conlive-black: #222222;
  --conlive-black-rgb: 34, 34, 34;
  --conlive-black2: #04171b;
  --conlive-black2-rgb: 4, 23, 27;
  --conlive-black3: #000000;
  --conlive-black3-rgb: 0, 0, 0;
  --conlive-black4: #333333;
  --conlive-black4-rgb: 51, 51, 51;
  --conlive-black5: #0F2125;
  --conlive-black5-rgb: 15, 33, 37;
  --conlive-border-color: #dddddd;
  --conlive-border-color-rgb: 221, 221, 221;
  --section-space: 120px;
  --section-space-2: 111px;
}

/*--------------------------------------------------------------
# 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;
}

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
body {
  font-family: var(--conlive-font, "Red Hat Text", sans-serif);
  font-weight: 400;
  color: var(--conlive-text, #636363);
  font-size: 16px;
  line-height: 1.625;
  overflow-x: hidden;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--conlive-base, #ff3538);
  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(--conlive-heading-font, "Raleway", sans-serif);
  color: var(--conlive-black, #222222);
}
@media (max-width: 767px) {
  h1 br,
  h2 br,
  h3 br,
  h4 br,
  h5 br,
  h6 br {
    display: none;
  }
}

@media (max-width: 767px) {
  p br {
    display: none;
  }
}

.hidden {
  overflow: hidden;
}

.scale-anim {
  overflow: hidden;
}

.d-inline-block {
  display: inline-block;
}

.conlive-text {
  color: var(--conlive-text, #636363);
}

.background-base {
  background-color: var(--conlive-base, #ff3538);
}

.background-text {
  background-color: var(--conlive-text, #636363);
}

.background-black {
  background-color: var(--conlive-black, #222222);
}

.background-black-2 {
  background-color: var(--conlive-black2, #04171b);
}

.background-black-3 {
  background-color: var(--conlive-black3, #000000);
}

.background-white {
  background-color: var(--conlive-white, #ffffff);
}

.background-white2 {
  background-color: var(--conlive-white2, #ecf5f4);
}

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

.section-space {
  padding-top: var(--section-space, 120px);
  padding-bottom: var(--section-space, 120px);
}
@media (max-width: 767px) {
  .section-space {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 575px) {
  .section-space {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.section-space-2 {
  padding-top: var(--section-space-2, 111px);
  padding-bottom: var(--section-space, 120px);
}
@media (max-width: 767px) {
  .section-space-2 {
    padding-top: 91px;
    padding-bottom: 100px;
  }
}
@media (max-width: 575px) {
  .section-space-2 {
    padding-top: 71px;
    padding-bottom: 80px;
  }
}

.section-space-t {
  padding-top: var(--section-space, 120px);
}
@media (max-width: 767px) {
  .section-space-t {
    padding-top: 100px;
  }
}
@media (max-width: 575px) {
  .section-space-t {
    padding-top: 80px;
  }
}

.section-space-t-2 {
  padding-top: var(--section-space-2, 111px);
}
@media (max-width: 767px) {
  .section-space-t-2 {
    padding-top: 91px;
  }
}
@media (max-width: 575px) {
  .section-space-t-2 {
    padding-top: 71px;
  }
}

.section-space-b {
  padding-bottom: var(--section-space, 120px);
}
@media (max-width: 767px) {
  .section-space-b {
    padding-bottom: 100px;
  }
}
@media (max-width: 575px) {
  .section-space-b {
    padding-bottom: 80px;
  }
}

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

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
.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-y-25 {
  --bs-gutter-y: 25px;
}

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

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

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

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

label.error {
  margin-top: 8px;
  color: var(--conlive-text, #636363);
}

.logo-retina img {
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.zigzag-shape {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

/* section title */
.sec-title {
  margin-bottom: 20px;
}
.sec-title__top {
  display: inline-flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 25px 8px 20px;
  margin-bottom: 20px;
  border-radius: 0px 100px 100px 0px;
  background-color: var(--conlive-white2, #ecf5f4);
}
.sec-title__shape {
  width: 24px;
  height: 23px;
  flex-shrink: 0;
  position: relative;
  top: 1px;
}
@media (max-width: 767px) {
  .sec-title__shape {
    top: 1px;
  }
}
.sec-title__shape::before, .sec-title__shape::after {
  content: "";
  width: calc(50% - 1px);
  height: 100%;
  position: absolute;
  top: 0px;
  background-color: var(--conlive-black2, #04171b);
}
.sec-title__shape::before {
  left: 0px;
  clip-path: polygon(65% 0, 100% 15%, 100% 85%, 65% 100%, 0 50%);
}
.sec-title__shape::after {
  right: 0px;
  clip-path: polygon(35% 0, 0 15%, 0 85%, 35% 100%, 100% 50%);
}
.sec-title__shape__box {
  width: 10px;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  border-radius: 50%;
  background-color: var(--conlive-white, #ffffff);
}
.sec-title__shape__box::after {
  content: "";
  width: 6px;
  height: 6px;
  display: inline-block;
  border-radius: inherit;
  background-color: var(--conlive-base, #ff3538);
}
.sec-title__tagline {
  margin: 0px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.333;
  color: var(--conlive-base, #ff3538);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .sec-title__tagline {
    font-size: 20px;
    letter-spacing: 0.1em;
  }
}
@media (max-width: 440px) {
  .sec-title__tagline {
    font-size: 16px;
  }
}
.sec-title__tagline .char {
  color: rgba(var(--conlive-base-rgb, 255, 53, 56), 0.4);
  transition: color 0.6s ease;
}
.sec-title__tagline .char.revealed {
  color: var(--conlive-base, #ff3538);
}
.sec-title__title {
  margin-bottom: 0px;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.314;
  color: var(--conlive-black, #222222);
}
@media (max-width: 412px) {
  .sec-title__title {
    font-size: 30px;
  }
}
.sec-title__title .char {
  color: rgba(var(--conlive-black-rgb, 34, 34, 34), 0.4);
  transition: color 0.6s ease;
}
.sec-title__title .char.revealed {
  color: var(--conlive-black, #222222);
}
.sec-title--two .sec-title__top {
  padding: 0px;
  border-radius: 0px;
  background-color: transparent;
}
.sec-title--two .sec-title__title {
  text-transform: uppercase;
}
.sec-title--three .sec-title__top {
  border-radius: 100px;
}
.sec-title--three .sec-title__shape-img {
  max-width: 100%;
  height: auto;
  position: relative;
  top: 2px;
}
.sec-title--four .sec-title__top {
  border-radius: 100px;
  background-color: transparent;
  border: 1px dashed var(--conlive-base, #ff3538);
}
.sec-title--four .sec-title__shape-img {
  max-width: 100%;
  height: auto;
  position: relative;
  top: 2px;
}
.sec-title--four .sec-title__tagline {
  font-family: var(--conlive-special-font, "Caveat", cursive);
  font-weight: 400;
}
.sec-title--five .sec-title__title {
  text-transform: uppercase;
}
.sec-title--white .sec-title__shape::before,
.sec-title--white .sec-title__shape::after {
  background-color: var(--conlive-base, #ff3538);
}
.sec-title--white .sec-title__shape__box::after {
  background-color: var(--conlive-black2, #04171b);
}
.sec-title--white .sec-title__title {
  color: var(--conlive-white, #ffffff);
}
.sec-title--white .sec-title__title .char {
  color: rgba(var(--conlive-white-rgb, 255, 255, 255), 0.5);
}
.sec-title--white .sec-title__title .char.revealed {
  color: var(--conlive-white, #ffffff);
}
.sec-title--white-2 .sec-title__title {
  color: var(--conlive-white, #ffffff);
}
.sec-title--white-2 .sec-title__title .char {
  color: rgba(var(--conlive-white-rgb, 255, 255, 255), 0.5);
}
.sec-title--white-2 .sec-title__title .char.revealed {
  color: var(--conlive-white, #ffffff);
}
.sec-title--center {
  margin-bottom: 49px;
  text-align: center;
}
.sec-title--center .sec-title__top {
  padding-left: 25px;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
}
.sec-title--center .sec-title__shape,
.sec-title--center .sec-title__shape-img {
  top: 0px;
}

/* hover text animation */
.title-anim-up {
  overflow: hidden;
}

.title-anim-up-text span {
  display: inline-block;
  text-shadow: 0 1.05em var(--conlive-base, #ff3538);
  transition: translate 0.3s cubic-bezier(0.625, 0.05, 0, 1), text-shadow 0.1s 0.15s ease;
}

.title-anim-up:hover .title-anim-up-text span {
  text-shadow: 0 1.05em currentColor;
  translate: 0 -1.05em 0;
  transition: translate 0.5s calc((var(--char) - 1) * 0.024s) cubic-bezier(0.625, 0.05, 0, 1), text-shadow 0.175s calc((var(--char) - 1) * 0.024s + 0.225s) ease;
}

/* gsap reveal text animation */
.bw-reveal-text {
  visibility: hidden;
}
.bw-reveal-text .line {
  display: flex;
  overflow: hidden;
  position: relative;
}

.bw-reveal-text-2 {
  visibility: hidden;
}
.bw-reveal-text-2 .letter {
  position: relative;
  display: inline-block;
  will-change: transform;
  transform-style: preserve-3d;
}
.bw-reveal-text-2 .letter div {
  width: 100%;
  backface-visibility: hidden;
  transform: translateZ(4vw);
  transform-style: preserve-3d;
}
.bw-reveal-text-2 .perspective {
  position: relative;
  display: inline-block;
}
.bw-reveal-text-2 .perspective div {
  position: relative;
  display: inline-block;
}
.bw-reveal-text-2 .word {
  display: inline-block;
}

/* svg stroke text animation */
.stroke-title {
  width: 100%;
  margin-bottom: 0px;
  position: relative;
  text-align: center;
}
.stroke-title svg {
  width: 100%;
  display: block;
}
.stroke-title svg:not(:root) {
  overflow: visible !important;
}
.stroke-title svg text {
  margin: 0px;
  font-family: var(--conlive-heading-font, "Raleway", sans-serif);
  font-size: clamp(35px, 10vw, 150px);
  line-height: 1;
  stroke-width: 1;
  font-weight: 700;
  stroke: var(--conlive-white, #ffffff);
  text-transform: uppercase;
  animation: svgTextAnimation 5s infinite alternate;
}

@keyframes svgTextAnimation {
  0% {
    fill: rgba(var(--conlive-white-rgb, 255, 255, 255), 0);
    stroke: rgba(var(--conlive-white-rgb, 255, 255, 255), 1);
    stroke-dashoffset: 25%;
    stroke-dasharray: 0 50%;
    stroke-width: 1;
  }
  70% {
    fill: rgba(var(--conlive-white-rgb, 255, 255, 255), 0);
    stroke: rgba(var(--conlive-white-rgb, 255, 255, 255), 1);
  }
  80% {
    fill: rgba(var(--conlive-white-rgb, 255, 255, 255), 0);
    stroke: rgba(var(--conlive-white-rgb, 255, 255, 255), 1);
    stroke-width: 1;
  }
  100% {
    fill: rgba(var(--conlive-base-rgb, 255, 53, 56), 1);
    stroke: rgba(var(--conlive-white-rgb, 255, 255, 255), 0);
    stroke-dashoffset: -25%;
    stroke-dasharray: 50% 0;
    stroke-width: 0;
  }
}
/* button */
.conlive-btn {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  position: relative;
  cursor: pointer;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  padding: 7px 8px 7px 32px;
  background-color: var(--conlive-black2, #04171b);
  z-index: 1;
  overflow: hidden;
  transition: 500ms;
  border-radius: 0px 100px 100px 0px;
}
.conlive-btn::before {
  content: "";
  width: 23px;
  height: 100%;
  position: absolute;
  top: 0px;
  left: -1px;
  z-index: -1;
  transition: all 500ms ease;
  background-color: var(--conlive-base, #ff3538);
  clip-path: polygon(100% 0, 0 50%, 100% 100%, 0 100%, 0 0);
}
.conlive-btn::after {
  content: "";
  width: 0%;
  height: 100%;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: -1;
  transition: all 500ms ease;
  background-color: var(--conlive-base, #ff3538);
}
.conlive-btn:hover::after {
  width: 100%;
  left: 0px;
}
.conlive-btn__text {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--conlive-white, #ffffff);
  text-transform: uppercase;
  transition: all 500ms ease;
}
.conlive-btn__icon-box {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  transition: all 500ms ease;
  background-color: var(--conlive-base, #ff3538);
}
.conlive-btn__icon {
  width: 12px;
  height: 12px;
  position: relative;
  overflow: hidden;
  font-size: 12px;
  color: var(--conlive-white, #ffffff);
  transition: all 500ms ease;
}
.conlive-btn__icon i {
  position: absolute;
  left: 0px;
  bottom: 0px;
}
.conlive-btn__icon i:last-child {
  left: -15px;
  bottom: -15px;
  transform: translate(0, 0);
}
.conlive-btn__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.conlive-btn:hover .conlive-btn__icon-box {
  background-color: var(--conlive-white, #ffffff);
}
.conlive-btn:hover .conlive-btn__icon {
  color: var(--conlive-base, #ff3538);
}
.conlive-btn:hover .conlive-btn__icon i {
  transform: translate(15px, -15px);
  transition: all 0.5s ease-out;
}
.conlive-btn:hover .conlive-btn__icon i:last-child {
  visibility: visible;
}
.conlive-btn--base {
  background-color: var(--conlive-base, #ff3538);
}
.conlive-btn--base::before, .conlive-btn--base::after {
  background-color: var(--conlive-black2, #04171b);
}
.conlive-btn--base .conlive-btn__icon-box {
  background-color: var(--conlive-white, #ffffff);
}
.conlive-btn--base:hover .conlive-btn__icon-box {
  background-color: var(--conlive-base, #ff3538);
}
.conlive-btn--base .conlive-btn__icon {
  color: var(--conlive-base, #ff3538);
}
.conlive-btn--base:hover .conlive-btn__icon {
  color: var(--conlive-white, #ffffff);
}
.conlive-btn--base-2 {
  background-color: var(--conlive-base, #ff3538);
}
.conlive-btn--base-2::before, .conlive-btn--base-2::after {
  background-color: var(--conlive-white, #ffffff);
}
.conlive-btn--base-2:hover .conlive-btn__text {
  color: var(--conlive-black2, #04171b);
}
.conlive-btn--base-2 .conlive-btn__icon-box {
  background-color: var(--conlive-white, #ffffff);
}
.conlive-btn--base-2:hover .conlive-btn__icon-box {
  background-color: var(--conlive-base, #ff3538);
}
.conlive-btn--base-2 .conlive-btn__icon {
  color: var(--conlive-base, #ff3538);
}
.conlive-btn--base-2:hover .conlive-btn__icon {
  color: var(--conlive-white, #ffffff);
}
.conlive-btn--white {
  background-color: var(--conlive-white, #ffffff);
}
.conlive-btn--white .conlive-btn__text {
  color: var(--conlive-black2, #04171b);
}
.conlive-btn--white:hover .conlive-btn__text {
  color: var(--conlive-white, #ffffff);
}

.conlive-btn-two {
  display: inline-block;
  padding: 14.5px 30px;
  position: relative;
  z-index: 1;
  cursor: pointer;
  font-family: var(--conlive-font, "Red Hat Text", sans-serif);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
  color: var(--conlive-white, #ffffff);
  overflow: hidden;
  border-radius: 10px;
  text-transform: uppercase;
  transition: all 500ms ease;
  background: var(--conlive-base, #ff3538);
}
.conlive-btn-two::before, .conlive-btn-two::after {
  content: "";
  width: 0%;
  height: calc(100% + 20px);
  position: absolute;
  top: -10px;
  z-index: -1;
  transition: 500ms;
  transform: skewX(-25deg);
  background: var(--conlive-black2, #04171b);
}
.conlive-btn-two::before {
  left: -16px;
}
.conlive-btn-two::after {
  right: -16px;
}
.conlive-btn-two:hover {
  color: var(--conlive-white, #ffffff);
}
.conlive-btn-two:hover::before, .conlive-btn-two:hover::after {
  width: calc(50% + 20px);
}

.video-btn {
  width: 46px;
  height: 46px;
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 16px;
  color: var(--conlive-base, #ff3538);
  border-radius: 50%;
  z-index: 1;
  border: none;
  transition: all 0.5s ease;
  background-color: var(--conlive-white, #ffffff);
}
.video-btn svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.video-btn:hover {
  color: var(--conlive-white, #ffffff);
  background-color: var(--conlive-base, #ff3538);
}
.video-btn::after {
  content: "";
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: inherit;
  transition: all 0.5s ease;
  border: 3px solid var(--conlive-white, #ffffff);
}
.video-btn:hover::after {
  border-color: var(--conlive-base, #ff3538);
}
.video-btn--base {
  width: 83px;
  height: 83px;
  font-size: 25px;
  color: var(--conlive-white, #ffffff);
  background-color: var(--conlive-base, #ff3538);
}
.video-btn--base:hover {
  color: var(--conlive-white, #ffffff);
  background-color: var(--conlive-black2, #04171b);
}
.video-btn--base::after {
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border-width: 5px;
  border-color: var(--conlive-base, #ff3538);
}
.video-btn--base:hover::after {
  border-color: var(--conlive-black2, #04171b);
}

.scroll-btn {
  width: 54px;
  height: 96px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  z-index: 1;
  text-decoration: none;
  border-radius: 120px;
  overflow: hidden;
  border: 3px solid var(--conlive-white, #ffffff);
}
.scroll-btn__dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--conlive-base, #ff3538);
  animation: scrollDot 1.8s infinite ease;
}

@keyframes scrollDot {
  0% {
    opacity: 1;
    transform: translateY(11px);
  }
  70% {
    opacity: 1;
    transform: translateY(55px);
  }
  100% {
    opacity: 0;
    transform: translateY(55px);
  }
}
@keyframes scrollDot2 {
  0% {
    opacity: 1;
    transform: translateY(11px);
  }
  70% {
    opacity: 1;
    transform: translateY(64px);
  }
  100% {
    opacity: 0;
    transform: translateY(64px);
  }
}
.circle-shape-wrapper {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: var(--conlive-black, #222222);
}
.circle-shape-wrapper__thumb img {
  opacity: 0.9;
  transform: scale(1) rotate(0);
}

.about-badge {
  width: 176px;
  height: 176px;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  border-radius: 50%;
  background-color: var(--conlive-white, #ffffff);
}
.about-badge::after {
  content: "";
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px dashed var(--conlive-base, #ff3538);
}
.about-badge__icon {
  display: inline-flex;
  font-size: 40px;
  color: var(--conlive-base, #ff3538);
}
.about-badge .curved-circle {
  width: 140px !important;
  height: 140px !important;
  transform-origin: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  margin: auto;
  line-height: 1;
  animation: shapeRotate 8s linear infinite;
}
.about-badge .curved-circle .curved-circle--item {
  width: 140px !important;
  height: 140px !important;
  top: 0px;
  left: 0px;
}
.about-badge .curved-circle span {
  font-family: var(--conlive-font, "Red Hat Text", sans-serif);
  font-size: 14px;
  font-weight: 500;
  color: var(--conlive-black2, #04171b);
  text-transform: uppercase;
  letter-spacing: 0.5px !important;
}

/* video section */
.video-section {
  position: relative;
  overflow: hidden;
}

.bg-video {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 0;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: RGBA(var(--conlive-black2-rgb, 4, 23, 27), 0.5);
}

/* social links */
.social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px;
}
.social-links a {
  width: 39px;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  border-radius: 50%;
  overflow: hidden;
  transition: all 500ms ease;
  background-color: var(--conlive-white, #ffffff);
}
.social-links a:hover {
  background-color: var(--conlive-base, #ff3538);
}
.social-links__icon {
  display: inline-flex;
  position: relative;
  z-index: 1;
  font-size: 16px;
  color: var(--conlive-black2, #04171b);
  transition: all 500ms ease;
}
.social-links__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.social-links a:hover .social-links__icon {
  color: var(--conlive-white, #ffffff);
  animation: slideTop 400ms;
}
.social-links--border a {
  background-color: transparent;
  border: 1px solid var(--conlive-black2, #04171b);
}
.social-links--border a:hover {
  border-color: var(--conlive-base, #ff3538);
  background-color: var(--conlive-base, #ff3538);
}
.social-links--border a:hover .social-links__icon {
  color: var(--conlive-white, #ffffff);
}

.shape-area {
  background-color: var(--conlive-white, #ffffff);
}
.shape-area__wrapper {
  text-align: center;
}
.shape-area img {
  max-width: 100%;
  height: auto;
}

/* Marquee:
Two Lines, 
One Line To Right, 
One Line To Left */
.marquee {
  max-width: 100%;
  overflow: hidden;
}

.marquee--gsap .marquee__bottom,
.marquee--gsap .marquee__top,
.marquee-left--gsap .marquee__toleft,
.marquee-right--gsap .marquee__toright {
  translate: -moz-calc(-100% + 100vw) !important;
  translate: calc(-100% + 100vw) !important;
}

.marquee__top,
.marquee__bottom,
.marquee__toleft,
.marquee__toright {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  gap: 30px;
  width: max-content;
  will-change: transform;
}

.marquee__bottom {
  margin-top: 30px;
}

/* ratings */
.conlive-ratings {
  display: flex;
  align-items: center;
  gap: 5px;
}
.conlive-ratings__icon {
  display: inline-flex;
  font-size: 14px;
  color: var(--conlive-base, #ff3538);
  transition: all 500ms ease;
}
.conlive-ratings__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

/* post pagination */
.post-pagination {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 991px) {
  .post-pagination {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .post-pagination {
    gap: 15px;
  }
}
.post-pagination__btn {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--conlive-base, #ff3538);
  text-align: center;
  font-weight: 500;
  line-height: 1;
  text-transform: capitalize;
  overflow: hidden;
  border-radius: 5px;
  transition: all 400ms ease;
  background-color: var(--conlive-white2, #ecf5f4);
}
@media (max-width: 767px) {
  .post-pagination__btn {
    width: 45px;
    height: 45px;
  }
}
@media (max-width: 480px) {
  .post-pagination__btn {
    width: 41px;
    height: 41px;
  }
}
.post-pagination__btn:hover {
  color: var(--conlive-white, #ffffff);
  background-color: var(--conlive-base, #ff3538);
}
.post-pagination__btn.active {
  color: var(--conlive-white, #ffffff);
  background-color: var(--conlive-base, #ff3538);
}
.post-pagination__btn svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.post-pagination__icon {
  display: inline-flex;
  align-items: center;
  font-size: 24px;
  color: var(--conlive-base, #ff3538);
  transition: all 400ms ease;
}
.post-pagination__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

/* skill box */
.skill-box {
  position: relative;
  padding: 48px 48px 42px;
  text-align: center;
  border-radius: 50px;
  background-color: var(--conlive-white, #ffffff);
}
@media (max-width: 430px) {
  .skill-box {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.skill-box__count {
  width: 108px;
  height: 108px;
  margin: 0px auto 18px;
  position: relative;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  overflow: hidden;
}
.skill-box__count .circle-progress {
  position: absolute;
  top: 0px;
  left: 0px;
}
.skill-box__funfact {
  margin-bottom: 0px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  color: var(--conlive-black2, #04171b);
}
.skill-box__title {
  margin-bottom: 0px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--conlive-black2, #04171b);
  text-transform: capitalize;
}

/* progress bar */
.progress-box + .progress-box {
  margin-top: 23px;
}
.progress-box__title {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.625;
  color: var(--conlive-black4, #333333);
  text-transform: capitalize;
}
@media (max-width: 430px) {
  .progress-box__title {
    font-size: 15px;
  }
}
.progress-box__bar {
  position: relative;
  width: 100%;
  height: 14px;
  border: 1px solid var(--conlive-base, #ff3538);
  border-radius: 20px;
}
.progress-box__bar__inner {
  position: relative;
  position: absolute;
  height: calc(100% - 4px);
  width: 0%;
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
  background-color: var(--conlive-base, #ff3538);
  border-radius: inherit;
  transition: all 800ms linear;
}
.progress-box__bar__inner::before {
  content: "";
  width: 22px;
  height: 22px;
  background-color: var(--conlive-base, #ff3538);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: -2px;
  transform: translateY(-50%);
}
.progress-box__bar__inner::after {
  content: "";
  width: 14px;
  height: 14px;
  background-color: var(--conlive-white, #ffffff);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 2px;
  transform: translateY(-50%);
}
.progress-box__number {
  position: absolute;
  bottom: calc(100% + 13px);
  right: 0px;
  font-family: var(--conlive-heading-font, "Raleway", sans-serif);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.625;
  color: var(--conlive-black4, #333333);
}
@media (max-width: 430px) {
  .progress-box__number {
    font-size: 15px;
  }
}

.uncover {
  position: relative;
  overflow: hidden;
}

.uncover__box {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  position: absolute;
  top: 0;
  left: 0;
}

.uncover__slice {
  height: 100%;
  flex-grow: 1;
  background: #ffffff;
}

/* image cliping effect */
.bw-clip-anim {
  width: 100%;
  display: grid;
  align-items: center;
  justify-items: center;
  overflow: hidden;
  position: relative;
}
.bw-clip-anim .bw-clip-anim-img {
  opacity: 0;
  width: 100%;
  height: 100%;
}
.bw-clip-anim .mask {
  background-size: cover;
  background-position: center;
  transform: scale(1.005);
}
.bw-clip-anim > * {
  grid-area: 1/1/2/2;
  width: 100%;
  height: 100%;
  max-height: 100%;
}

/* webgl images hover animation */
.bw-hover-img {
  display: block;
  position: relative;
}
.bw-hover-img canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

/* hover image */
.hover-item {
  position: relative;
}
.hover-item__box {
  position: absolute;
  width: 171px;
  height: 210px;
  top: 30%;
  left: 185px;
  padding: 5px;
  pointer-events: none;
  transform: translate(-100%, -50%);
  overflow: hidden;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.5s ease-out;
  z-index: 1;
  border-radius: 20px;
  background-color: var(--conlive-white, #ffffff);
}
.hover-item__box-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transition: transform 0.4s ease-out;
}

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

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

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

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

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

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

/* owl slider buton, dots customize */
.conlive-owl__carousel--with-shadow .owl-stage-outer {
  overflow: visible;
}
.conlive-owl__carousel--with-shadow .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}
.conlive-owl__carousel--with-shadow .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.conlive-owl__carousel--basic-nav.owl-carousel .owl-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}
.conlive-owl__carousel--basic-nav.owl-carousel .owl-nav button {
  width: 58px;
  height: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  outline: none;
  position: relative;
  z-index: 1;
  margin: 0px;
  padding: 0px;
  font-size: 20px;
  color: var(--conlive-text, #636363);
  border-radius: 50%;
  transition: all 500ms ease;
  background-color: transparent;
  border: 1px solid var(--conlive-text, #636363);
}
@media (max-width: 767px) {
  .conlive-owl__carousel--basic-nav.owl-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    font-size: 14px;
  }
}
.conlive-owl__carousel--basic-nav.owl-carousel .owl-nav button svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.conlive-owl__carousel--basic-nav.owl-carousel .owl-nav button:hover {
  color: var(--conlive-white, #ffffff);
  border-color: var(--conlive-base, #ff3538);
  background-color: var(--conlive-base, #ff3538);
}
.conlive-owl__carousel--basic-nav.owl-carousel .owl-nav button span {
  border: none;
  outline: none;
  color: inherit;
}
.conlive-owl__carousel--basic-nav.owl-carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.conlive-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot {
  width: 18px;
  height: 18px;
  outline: 0;
  position: relative;
  border-radius: 50%;
  transition: all 500ms ease;
  background-color: transparent;
  border: 2px solid var(--conlive-black2, #04171b);
}
.conlive-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot span {
  background-color: transparent;
}
.conlive-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover, .conlive-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active {
  transform: scale(1.3);
  border-color: var(--conlive-base, #ff3538);
  background-color: var(--conlive-base, #ff3538);
}
.conlive-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover span, .conlive-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active span {
  background-color: transparent;
}
.conlive-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled + .owl-dots {
  margin-top: 50px;
}
.conlive-owl__carousel--basic-nav.owl-carousel .owl-dots.disabled,
.conlive-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled {
  display: none;
}

.custom-nav {
  display: inline-flex;
  gap: 65px;
  align-items: center;
  position: relative;
}
.custom-nav::after {
  content: "";
  width: calc(100% - 50px);
  height: calc(100% - 10px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--conlive-white2, #ecf5f4);
}
.custom-nav button {
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  outline: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: var(--conlive-white, #ffffff);
  border-radius: 50%;
  transition: all 400ms ease;
  border: 1px solid var(--conlive-white, #ffffff);
  background-color: var(--conlive-black2, #04171b);
}
.custom-nav button svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.custom-nav button:hover {
  border-color: var(--conlive-base, #ff3538);
  background-color: var(--conlive-base, #ff3538);
}
.custom-nav button span {
  border: none;
  outline: none;
  color: inherit;
}

.conlive-owl__carousel__counter {
  position: absolute;
  top: -87px;
  right: 67px;
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--conlive-heading-font, "Raleway", sans-serif);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: var(--conlive-black2, #04171b);
}
.conlive-owl__carousel__counter__current {
  color: var(--conlive-base, #ff3538);
}
.conlive-owl__carousel__counter__total {
  position: relative;
}
.conlive-owl__carousel__counter__total::before {
  content: "/";
  position: absolute;
  top: 2px;
  left: -14px;
  font-family: var(--conlive-heading-font, "Raleway", sans-serif);
  font-size: 18px;
  color: var(--conlive-black3, #000000);
  font-weight: 700;
  line-height: 1;
}

.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(--conlive-base, #ff3538);
}

.hammer {
  width: 22px;
  height: 22px;
  fill: var(--conlive-base, #ff3538);
}

.hammer path:nth-child(1),
.hammer path:nth-child(2) {
  animation: hammerBounce 3s ease-in-out infinite;
}

.hammer path:nth-child(3),
.hammer path:nth-child(4),
.hammer path:nth-child(5),
.hammer path:nth-child(6) {
  transform-origin: center;
  animation: hammerStrike 3s ease-in-out infinite;
}

.ui-datepicker .ui-datepicker-header {
  background-image: none;
  background-color: var(--conlive-black, #222222);
  color: var(--conlive-white, #ffffff);
  font-family: var(--conlive-font, "Red Hat Text", sans-serif);
}

.ui-datepicker-calendar th span {
  font-family: var(--conlive-font, "Red Hat Text", sans-serif);
}
.ui-datepicker-calendar td {
  background-color: var(--conlive-text, #636363);
  background-image: none;
  font-family: var(--conlive-font, "Red Hat Text", sans-serif);
  color: var(--conlive-text, #636363);
}
.ui-datepicker-calendar td a {
  border-color: var(--conlive-border-color, #dddddd);
  background-color: var(--conlive-text, #636363);
  background-image: none;
}
.ui-datepicker-calendar .ui-state-default,
.ui-datepicker-calendar .ui-widget-content .ui-state-default,
.ui-datepicker-calendar .ui-widget-header .ui-state-default {
  border-color: var(--conlive-border-color, #dddddd);
  background-color: var(--conlive-text, #636363);
  background-image: none;
  color: var(--conlive-text, #636363);
  padding: 10px 5px;
  text-align: center;
  line-height: 1em;
}
.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-widget-content .ui-state-default:hover,
.ui-datepicker-calendar .ui-widget-header .ui-state-default:hover {
  color: var(--conlive-white, #ffffff);
  background-color: var(--conlive-base, #ff3538);
}
.ui-datepicker-calendar .ui-state-highlight,
.ui-datepicker-calendar .ui-widget-content .ui-state-highlight,
.ui-datepicker-calendar .ui-widget-header .ui-state-highlight {
  color: var(--conlive-white, #ffffff);
  background-color: var(--conlive-base, #ff3538);
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  background-image: none;
  background-color: var(--conlive-white, #ffffff);
  color: var(--conlive-black, #222222);
}
.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
  background-color: var(--conlive-base, #ff3538);
  color: var(--conlive-white, #ffffff);
  top: 2px;
}

.ui-datepicker .ui-datepicker-prev:hover {
  left: 2px;
}

.ui-datepicker .ui-datepicker-next:hover {
  right: 2px;
}

.preloader {
  position: fixed;
  background-color: var(--conlive-black2, #04171b);
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9992;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  text-align: center;
}
.preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60px auto;
  width: 100%;
  height: 100%;
}

/* scroll to top */
.scroll-to-top {
  display: flex;
  align-items: center;
  width: auto;
  height: 35px;
  background: transparent;
  position: fixed;
  bottom: 60px;
  right: -12px;
  z-index: 99;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: rotate(-90deg);
  cursor: pointer;
  transition: all 0.2s ease;
}
.scroll-to-top__text {
  display: inline;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-right: 8px;
}
.scroll-to-top__wrapper {
  display: inline-block;
  width: 30px;
  height: 4px;
  background-color: var(--conlive-base, #ff3538);
  position: relative;
  overflow: hidden;
}
.scroll-to-top__inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--conlive-black2, #04171b);
}
.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  bottom: 70px;
}

.section-top-title {
  margin-bottom: -60px;
  font-size: 200px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  background: linear-gradient(180deg, #222222 0%, rgba(221, 221, 221, 0.3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media (max-width: 991px) {
  .section-top-title {
    font-size: 180px;
  }
}
@media (max-width: 767px) {
  .section-top-title {
    margin-bottom: -45px;
    font-size: 150px;
  }
}
@media (max-width: 480px) {
  .section-top-title {
    margin-bottom: -40px;
    font-size: 130px;
  }
}
@media (max-width: 375px) {
  .section-top-title {
    margin-bottom: -35px;
    font-size: 115px;
  }
}

.sec-title--center {
  margin-bottom: 46px;
}

.sec-title__title {
  font-size: 45px;
  line-height: 1.111;
}
@media (max-width: 767px) {
  .sec-title__title {
    font-size: 40px;
  }
}
@media (max-width: 480px) {
  .sec-title__title {
    font-size: 35px;
  }
}
@media (max-width: 375px) {
  .sec-title__title {
    font-size: 30px;
  }
}

@keyframes speakerFloat {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(-4deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 999;
  background-color: var(--conlive-black2, #04171b);
}
.header .container {
  max-width: 1430px;
}
.header__inner {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 23px 0px;
}
@media (max-width: 575px) {
  .header__inner {
    justify-content: center;
  }
}
.header__logo {
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.header__logo a {
  display: inline-block;
}
.header__logo img {
  max-width: 100%;
  height: auto;
}
.header__nav {
  display: flex;
  gap: 50px;
  align-items: center;
  margin: 0px;
  padding: 0px;
  list-style: none;
}
@media (max-width: 1199px) {
  .header__nav {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .header__nav {
    display: none;
  }
}
.header__nav a {
  display: inline-block;
  position: relative;
  font-size: 16px;
  font-family: var(--conlive-font, "Red Hat Text", sans-serif);
  color: var(--conlive-white, #ffffff);
  line-height: 1.25;
  font-weight: 500;
  text-transform: capitalize;
  transition: all 500ms ease;
}
.header__nav a:hover {
  color: var(--conlive-base, #ff3538);
}
@media (max-width: 575px) {
  .header .conlive-btn {
    display: none;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section {
  position: relative;
  z-index: 1;
  padding: 260px 0px 242px;
  background-color: var(--conlive-black2, #04171b);
}
@media (max-width: 767px) {
  .hero-section {
    padding: 240px 0px 222px;
  }
}
@media (max-width: 430px) {
  .hero-section {
    padding: 220px 0px 202px;
  }
}
.hero-section .container {
  position: relative;
  z-index: 3;
}
.hero-section__content {
  text-align: center;
}
.hero-section__top {
  text-align: center;
  overflow: hidden;
}
.hero-section__tagline {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 25px;
  margin-bottom: 25px;
  border-radius: 100px;
  background-color: var(--conlive-white, #ffffff);
}
.hero-section__tagline__text {
  margin: 0px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.444;
  color: var(--conlive-base, #ff3538);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-section__title {
  margin: 0px 0px 20px;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--conlive-white, #ffffff);
  text-transform: uppercase;
}
@media (min-width: 576px) {
  .hero-section__title {
    font-size: 40px;
  }
}
@media (min-width: 992px) {
  .hero-section__title {
    font-size: 50px;
  }
}
.hero-section__text {
  margin: 0 0 30px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--conlive-white, #ffffff);
}
@media (min-width: 992px) {
  .hero-section__text {
    margin-bottom: 38px;
    font-size: 20px;
  }
}
.hero-section__text .line {
  justify-content: center;
}
.hero-section__text br {
  display: none;
}
@media (min-width: 768px) {
  .hero-section__text br {
    display: inherit;
  }
}
.hero-section__button {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-section__bg-box {
  width: 100%;
  height: 100%;
  position: relative;
  position: absolute;
  top: 0px;
  left: 0px;
  overflow: hidden;
}
.hero-section__bg {
  width: 100%;
  height: 100%;
  position: relative;
  position: absolute;
  top: 0px;
  left: 0px;
}
.hero-section__bg::after {
  content: "";
  width: 100%;
  height: calc(100% - 324px);
  position: absolute;
  top: 0px;
  left: 0px;
  background: linear-gradient(181.35deg, rgba(255, 53, 56, 0.76) 1.15%, rgba(4, 4, 4, 0) 80.24%);
}
.hero-section__images {
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
}
@media (min-width: 1300px) {
  .hero-section__images {
    display: block;
  }
}
.hero-section__images img {
  max-width: 100%;
  height: auto;
  position: absolute;
}
.hero-section__image-one {
  left: 0px;
  bottom: 0px;
}
@media (max-width: 1599px) {
  .hero-section__image-one {
    left: -110px;
  }
}
@media (max-width: 1399px) {
  .hero-section__image-one {
    left: -150px;
  }
}
.hero-section__image-two {
  left: 16px;
  bottom: 0px;
}
@media (max-width: 1599px) {
  .hero-section__image-two {
    left: -94px;
  }
}
@media (max-width: 1399px) {
  .hero-section__image-two {
    left: -134px;
  }
}
.hero-section__image-three {
  left: 217px;
  bottom: 0px;
}
@media (max-width: 1599px) {
  .hero-section__image-three {
    left: 107px;
  }
}
@media (max-width: 1399px) {
  .hero-section__image-three {
    left: 67px;
  }
}
.hero-section__image-four {
  right: 199px;
  bottom: 0px;
}
@media (max-width: 1599px) {
  .hero-section__image-four {
    right: 107px;
  }
}
@media (max-width: 1399px) {
  .hero-section__image-four {
    right: 67px;
  }
}
.hero-section__image-five {
  right: 2px;
  bottom: 0px;
}
@media (max-width: 1599px) {
  .hero-section__image-five {
    right: -94px;
  }
}
@media (max-width: 1399px) {
  .hero-section__image-five {
    right: -134px;
  }
}
.hero-section__image-six {
  right: 0px;
  bottom: 50px;
}
@media (max-width: 1599px) {
  .hero-section__image-six {
    right: -100px;
  }
}
@media (max-width: 1399px) {
  .hero-section__image-six {
    right: -140px;
  }
}
.hero-section__badge-box {
  width: 184px;
  height: 184px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  margin: auto;
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: -98px;
  z-index: 2;
  border-radius: 50%;
  background-color: var(--conlive-white, #ffffff);
}
@media (max-width: 1200px) {
  .hero-section__badge-box {
    display: flex;
  }
}
.hero-section__badge {
  width: 159px;
  height: 157px;
  background-image: url(../images/conlive-landing/hero-badge-1.png);
  background-repeat: no-repeat;
  animation: sunMove 10s linear infinite;
}
.hero-section__shape-1 {
  position: absolute;
  top: 241px;
  left: 20.8%;
  z-index: 1;
  animation: speakerFloat 3s ease-in-out infinite;
}
@media (max-width: 1599px) {
  .hero-section__shape-1 {
    top: 150px;
    left: 15%;
  }
}
@media (max-width: 1399px) {
  .hero-section__shape-1 {
    top: 130px;
    left: 13%;
  }
}
@media (max-width: 1299px) {
  .hero-section__shape-1 {
    display: none;
  }
}
.hero-section__shape-1 img {
  max-width: 100%;
  height: auto;
}
.hero-section__shape-2 {
  position: absolute;
  top: 173px;
  right: 17.7%;
  z-index: 1;
}
@media (max-width: 1599px) {
  .hero-section__shape-2 {
    top: 110px;
    right: 12%;
  }
}
@media (max-width: 1399px) {
  .hero-section__shape-2 {
    top: 110px;
    right: 10%;
  }
}
@media (max-width: 1299px) {
  .hero-section__shape-2 {
    display: none;
  }
}
.hero-section__shape-2 img {
  max-width: 100%;
  height: auto;
}

@-webkit-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);
  }
}
@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);
  }
}
/*--------------------------------------------------------------
# Feature Section
--------------------------------------------------------------*/
.features-two {
  position: relative;
  padding-top: 282px;
  background-color: var(--conlive-white2, #ecf5f4);
}
@media (max-width: 1199px) {
  .features-two {
    padding-top: 230px;
  }
}
.features-two::after {
  content: "";
  width: 100%;
  height: 126px;
  position: absolute;
  left: 0px;
  bottom: -2px;
  z-index: 1;
  background-color: var(--conlive-white, #ffffff);
}
.features-two .container {
  position: relative;
  z-index: 2;
}
.features-two__wrapper {
  padding: 50px 0px 45px;
  overflow: hidden;
  border-radius: 20px;
  background-color: var(--conlive-white, #ffffff);
  box-shadow: 0px 6px 11px rgba(0, 0, 0, 0.08);
}
.features-two .row > * {
  position: relative;
}
.features-two .row > *:not(:last-child)::after {
  content: "";
  width: 1px;
  height: calc(100% - 10px);
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  background-color: var(--conlive-border-color, #dddddd);
}
@media (max-width: 767px) {
  .features-two .row > *:not(:last-child)::after {
    display: none;
  }
}
@media (max-width: 991px) {
  .features-two .row > *:nth-child(2)::after {
    display: none;
  }
}
.features-two__box {
  position: relative;
  text-align: center;
  padding: 0px 30px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .features-two__box {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.features-two__box::after {
  content: "";
  width: 43px;
  height: 28px;
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  opacity: 0;
  margin: auto;
  transition: all 500ms ease;
  transform: translateY(100px);
  background-color: var(--conlive-base, #ff3538);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
@media (max-width: 991px) {
  .features-two__box::after {
    display: none;
  }
}
.features-two__box:hover::after {
  opacity: 1;
  transform: translateY(45px);
}
.features-two__box img {
  max-height: 56px;
  display: inline-block;
  transform: scale(1);
  transition: all 500ms linear 0s;
}
.features-two__box:hover img {
  transform: scale(0.9);
}
.features-two__border {
  width: 128px;
  height: 1px;
  position: relative;
  margin: 15px auto;
  transition: all 500ms ease;
  background-color: var(--conlive-border-color, #dddddd);
}
.features-two__border::after {
  content: "";
  width: 7px;
  height: 3px;
  position: absolute;
  top: -1px;
  left: 0px;
  opacity: 0;
  transition: all 500ms ease;
  background-color: var(--conlive-base, #ff3538);
  animation: featuresBorder 2s linear infinite alternate;
}
.features-two__box:hover .features-two__border {
  background-color: var(--conlive-black2, #04171b);
}
.features-two__box:hover .features-two__border::after {
  opacity: 1;
}
@keyframes featuresBorder {
  0% {
    left: 0;
  }
  100% {
    left: calc(100% - 7px);
  }
}
.features-two__title {
  margin-bottom: 0px;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--conlive-black, #222222);
}
@media (max-width: 430px) {
  .features-two__title {
    font-size: 22px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .features-two__title {
    font-size: 20px;
  }
}
.features-two__title br {
  display: inline;
}
@media (max-width: 430px) {
  .features-two__title br {
    display: none;
  }
}
.features-two__shape {
  width: 382px;
  height: 382px;
  border-radius: 50%;
  position: relative;
  position: absolute;
  border: 1px solid var(--conlive-border-color, #dddddd);
}
.features-two__shape--1 {
  top: -184px;
  left: 50%;
  transform: translateX(-50%);
}
.features-two__shape--2 {
  left: -151px;
  bottom: -30px;
}
.features-two__shape--3 {
  right: -151px;
  bottom: -30px;
}
.features-two__shape::before, .features-two__shape::after {
  content: "";
  border: inherit;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: inherit;
  transform: translate(-50%, -50%);
}
.features-two__shape::before {
  width: 288px;
  height: 288px;
}
.features-two__shape::after {
  width: 202px;
  height: 202px;
}
.features-two__shape__inner {
  width: 118px;
  height: 118px;
  border: inherit;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: inherit;
  transform: translate(-50%, -50%);
}

/*--------------------------------------------------------------
# Demo Section
--------------------------------------------------------------*/
.demos-one {
  position: relative;
  padding: 95px 0 120px;
  background-color: var(--conlive-white, #ffffff);
}
@media (max-width: 991px) {
  .demos-one {
    padding-top: 97px;
  }
}
@media (max-width: 767px) {
  .demos-one {
    padding: 61px 0px 80px;
  }
}
@media (max-width: 480px) {
  .demos-one {
    padding-top: 65px;
  }
}
.demos-one__single {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  position: relative;
  text-align: center;
  background-color: var(--conlive-white, #ffffff);
  box-shadow: 0px 0px 60px 10px rgba(0, 0, 0, 0.1);
}
.demos-one__single:hover {
  transform: translateY(-10px);
}
.demos-one__single:hover .demos-one__buttons {
  transform: scale(1, 1);
  opacity: 1;
  transform-origin: top center;
}
.demos-one__single:hover .demos-one__image img {
  filter: blur(2px);
}
.demos-one__image {
  position: relative;
}
.demos-one__image img {
  max-width: 100%;
  height: auto;
  transition: filter 500ms ease;
  filter: blur(0px);
}
.demos-one__buttons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  background-color: rgba(var(--conlive-black2-rgb, 4, 23, 27), 0.6);
  transform: scale(1, 0);
  transition: transform 500ms ease, opacity 600ms linear;
  transform-origin: bottom center;
}
.demos-one__buttons .conlive-btn {
  min-width: 190px;
  justify-content: space-between;
}
.demos-one__text {
  text-align: center;
  padding-top: 29px;
  padding-bottom: 32px;
}
.demos-one__text__title {
  margin: 0;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: var(--conlive-black, #222222);
  text-transform: capitalize;
}

/*--------------------------------------------------------------
#  Conlive Area
--------------------------------------------------------------*/
.conlive-area {
  padding: 201px 0px;
  position: relative;
  background-color: var(--conlive-black2, #04171b);
}
@media (max-width: 991px) {
  .conlive-area {
    padding: 150px 0px;
  }
}
@media (max-width: 575px) {
  .conlive-area {
    padding: 100px 0px;
  }
}
.conlive-area__bg {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.conlive-area__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: RGBA(var(--conlive-black2-rgb, 4, 23, 27), 0.9);
}
.conlive-area .container {
  position: relative;
  z-index: 1;
}
.conlive-area__content {
  position: relative;
  text-align: center;
  z-index: 1;
}
.conlive-area .stroke-title svg text {
  font-family: var(--conlive-font, "Red Hat Text", sans-serif);
  font-size: clamp(50px, 11vw, 215px);
  font-size: 215px;
}
@media (max-width: 1199px) {
  .conlive-area .stroke-title svg text {
    font-size: 170px;
  }
}
@media (max-width: 991px) {
  .conlive-area .stroke-title svg text {
    font-size: 125px;
  }
}
@media (max-width: 767px) {
  .conlive-area .stroke-title svg text {
    font-size: 90px;
  }
}
@media (max-width: 575px) {
  .conlive-area .stroke-title svg text {
    font-size: clamp(55px, 18vw, 90px);
  }
}
.conlive-area__border {
  width: 104px;
  height: 104px;
  position: absolute;
}
@media (max-width: 767px) {
  .conlive-area__border {
    width: 90px;
    height: 90px;
  }
}
@media (max-width: 575px) {
  .conlive-area__border {
    display: none;
  }
}
.conlive-area__border--1, .conlive-area__border--2 {
  top: -71px;
  border-top: 1px solid var(--conlive-white, #ffffff);
}
.conlive-area__border--1 {
  left: 0px;
  border-left: 1px solid var(--conlive-white, #ffffff);
}
.conlive-area__border--2 {
  right: 0px;
  border-right: 1px solid var(--conlive-white, #ffffff);
}
.conlive-area__border--3, .conlive-area__border--4 {
  bottom: -71px;
  border-bottom: 1px solid var(--conlive-white, #ffffff);
}
.conlive-area__border--3 {
  left: 0px;
  border-left: 1px solid var(--conlive-white, #ffffff);
}
.conlive-area__border--4 {
  right: 0px;
  border-right: 1px solid var(--conlive-white, #ffffff);
}
.conlive-area__shape-1, .conlive-area__shape-2 {
  width: 100%;
  height: 12px;
  position: absolute;
  top: 0px;
  left: 0px;
  background-repeat: repeat-x;
  background-position: left top;
}
.conlive-area__shape-1 {
  animation: moveBackground 30s linear 0s infinite;
}
.conlive-area__shape-2 {
  top: auto;
  bottom: 0px;
  animation: moveBackground2 30s linear 0s infinite;
}

@keyframes moveBackground {
  0% {
    background-position: -1920px 100%;
  }
  100% {
    background-position: 0 100%;
  }
}
@keyframes moveBackground2 {
  0% {
    background-position: 1920px 100%;
  }
  100% {
    background-position: 0 100%;
  }
}
/*--------------------------------------------------------------
#  Inner Page
--------------------------------------------------------------*/
.inner-page {
  position: relative;
  padding: 95px 0 120px;
  overflow: hidden;
  background-color: var(--conlive-white, #ffffff);
}
@media (max-width: 991px) {
  .inner-page {
    padding-top: 97px;
  }
}
@media (max-width: 767px) {
  .inner-page {
    padding: 61px 0px 80px;
  }
}
@media (max-width: 480px) {
  .inner-page {
    padding-top: 65px;
  }
}
.inner-page__marquee {
  position: relative;
}
.inner-page__marquee::after {
  content: "";
  width: 100%;
  height: calc(100% - 290px);
  position: absolute;
  left: 0px;
  bottom: -230px;
  transform: matrix(1, 0, 0, -1, 0, 0);
  background: linear-gradient(180deg, #ff3538 0%, rgba(255, 255, 255, 0) 100%);
}
@media (max-width: 767px) {
  .inner-page__marquee::after {
    bottom: -190px;
  }
}
.inner-page .marquee__toleft {
  display: block;
}
.inner-page__wrapper {
  display: flex;
  gap: 30px;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  will-change: transform;
  position: relative;
}
@media (max-width: 991px) {
  .inner-page__wrapper {
    gap: 20px;
  }
}
.inner-page__item {
  display: flex;
  gap: 30px;
  flex-shrink: 0;
  flex-direction: column;
}
@media (max-width: 991px) {
  .inner-page__item {
    gap: 20px;
  }
}
.inner-page__image img {
  width: 100%;
  height: auto;
}
.inner-page__btn {
  position: relative;
  z-index: 1;
  margin-top: 60px;
  text-align: center;
}
.inner-page .conlive-btn {
  background-color: var(--conlive-white, #ffffff);
}
.inner-page .conlive-btn::before, .inner-page .conlive-btn::after {
  background-color: var(--conlive-black2, #04171b);
}
.inner-page .conlive-btn .conlive-btn__text {
  color: var(--conlive-black2, #04171b);
}
.inner-page .conlive-btn:hover .conlive-btn__text {
  color: var(--conlive-white, #ffffff);
}

/*--------------------------------------------------------------
#  Feature Section 02
--------------------------------------------------------------*/
.features-one {
  padding: 120px 0px;
  background-color: var(--conlive-white, #ffffff);
}
@media (max-width: 767px) {
  .features-one {
    padding: 80px 0px;
  }
}
.features-one__box {
  padding: 50px 40px 46px;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 5px;
  background-color: var(--conlive-white2, #ecf5f4);
}
.features-one__box::before {
  content: "";
  width: 121px;
  height: 121px;
  position: absolute;
  top: -58px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  margin: auto;
  opacity: 0;
  background-color: var(--conlive-base, #ff3538);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.7s;
}
.features-one__box:hover::before {
  width: 100%;
  height: 100%;
  top: 0px;
  opacity: 1;
  border-radius: 0px;
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 1s;
}
.features-one__box::after {
  content: "";
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-radius: inherit;
  transition: all 500ms ease;
  border: 1px solid var(--conlive-white2, #ecf5f4);
}
.features-one__box:hover::after {
  border-style: dashed;
  border-color: var(--conlive-white, #ffffff);
}
.features-one__box__image {
  width: 121px;
  height: 121px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px auto;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  background-color: var(--conlive-white, #ffffff);
}
.features-one__box__image img {
  max-height: 121px;
  display: inline-block;
  transition: all 500ms linear;
  transition-delay: 0s;
  transition-delay: 0s;
  transform: scale(1);
  border-radius: inherit;
}
.features-one__box:hover .features-one__box__image img {
  transform: scale(0.9);
}
.features-one__box__title {
  margin: 20px 0px 0px;
  position: relative;
  z-index: 1;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--conlive-black, #222222);
  text-transform: capitalize;
  transition: all 500ms ease;
}
.features-one__box__title br {
  display: inline;
}
@media (max-width: 575px) {
  .features-one__box__title br {
    display: none;
  }
}
.features-one__box:hover .features-one__box__title {
  color: var(--conlive-white, #ffffff);
}

/*--------------------------------------------------------------
#  Slide Text Section
--------------------------------------------------------------*/
.slide-text {
  padding: 50px 0px;
  background: var(--conlive-base, #ff3538);
}
.slide-text .container-fluid {
  padding: 0px;
}
.slide-text__scroll {
  width: -webkit-calc((420px * 16) + (30px * 16));
  width: -moz-calc((420px * 16) + (30px * 16));
  min-width: 100%;
  height: 100%;
  display: flex;
  gap: 20px;
  align-items: center;
  white-space: nowrap;
  margin: 0px;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.26;
  color: var(--conlive-white, #ffffff);
  text-transform: capitalize;
  -webkit-animation: scrollRightToLeft 20s linear infinite;
  -moz-animation: scrollRightToLeft 20s linear infinite;
  animation: scrollRightToLeft 20s linear infinite;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
@media (max-width: 767px) {
  .slide-text__scroll {
    font-size: 40px;
  }
}
.slide-text__scroll:hover {
  animation-play-state: paused;
}
.slide-text__scroll img {
  flex-shrink: 0;
  max-width: 100%;
  height: auto;
}

@keyframes scrollRightToLeft {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-webkit-calc(-250px * 7));
    -moz-transform: translateX(-moz-calc(-250px * 7));
    transform: translateX(-1750px);
  }
}
/*--------------------------------------------------------------
#  Footer Section
--------------------------------------------------------------*/
.main-footer {
  position: relative;
  padding-top: 120px;
  overflow: hidden;
  background-color: var(--conlive-black2, #04171b);
}
@media (max-width: 767px) {
  .main-footer {
    padding-top: 80px;
  }
}
.main-footer .container {
  position: relative;
  z-index: 2;
}
.main-footer__content {
  text-align: center;
}
.main-footer__logo {
  overflow: hidden;
  margin-bottom: 30px;
}
.main-footer__title {
  margin: 0 0 20px;
  font-size: 35px;
  font-weight: 700;
  color: var(--conlive-white, #ffffff);
  line-height: 1.3;
  text-transform: uppercase;
}
@media (min-width: 576px) {
  .main-footer__title {
    font-size: 40px;
  }
}
@media (min-width: 992px) {
  .main-footer__title {
    font-size: 50px;
  }
}
.main-footer__text {
  margin: 0 0 27px;
  font-size: 20px;
  font-weight: 500;
  color: var(--conlive-white, #ffffff);
}
@media (min-width: 992px) {
  .main-footer__text {
    font-size: 25px;
  }
}
.main-footer__text .line {
  justify-content: center;
}
.main-footer__button {
  overflow: hidden;
}
.main-footer__copyright {
  position: relative;
  margin: 80px 0 0;
  padding: 33px 0 33px;
  text-align: center;
  border-top: 1px solid RGBA(var(--conlive-white-rgb, 255, 255, 255), 0.3);
}
@media (max-width: 767px) {
  .main-footer__copyright {
    margin-top: 50px;
    padding: 23px 0 22px;
  }
}
.main-footer__copyright p {
  margin-bottom: 0px;
  font-family: var(--conlive-font, "Red Hat Text", sans-serif);
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: RGBA(var(--conlive-white-rgb, 255, 255, 255), 0.8);
}
.main-footer__shape-1, .main-footer__shape-2 {
  max-width: 100%;
  height: auto;
  position: absolute;
  bottom: 0px;
}
@media (max-width: 1199px) {
  .main-footer__shape-1, .main-footer__shape-2 {
    display: none;
  }
}
.main-footer__shape-1 {
  left: 0px;
}
@media (max-width: 1399px) {
  .main-footer__shape-1 {
    left: -50px;
  }
}
.main-footer__shape-2 {
  right: 0px;
}
@media (max-width: 1399px) {
  .main-footer__shape-2 {
    right: -50px;
  }
}
/*# sourceMappingURL=conlive-landing.css.map */
