/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
* {
  padding: 0;
  margin: 0;
  text-decoration: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

:focus {
  outline: 0 none
}

a:focus {
  outline: 0 none
}

a img {
  border: none
}

a {
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  text-decoration: none !important
}

.btn {
  white-space: normal;
}

.btn-info.focus,
.btn-info:focus {
  box-shadow: none;
}

img,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent
}

input,
textarea,
select {
  -webkit-border-radius: 0;
  border-radius: 0;
  appearance: none
}

input[type="checkbox"] {
  -webkit-border-radius: 0;
  border-radius: 0;
  appearance: checkbox !important
}

input[type="radio"] {
  -webkit-border-radius: 0;
  border-radius: 0;
  appearance: radio !important
}

::-moz-selection {
  background-color: #E73331;
  color: #fff
}

::selection {
  background-color: #E73331;
  color: #fff
}

input[type="text"]::-webkit-input-placeholder {
  opacity: 1;
  color: #2B3241;
}

input[type="text"]::-moz-placeholder {
  opacity: 1;
  color: #2B3241;
}

input[type="text"]::-ms-input-placeholder {
  opacity: 1;
  color: #2B3241;
}

input[type="email"]::-webkit-input-placeholder {
  opacity: 1;
  color: #2B3241;
}

input[type="email"]::-moz-placeholder {
  opacity: 1;
  color: #2B3241;
}

input[type="email"]::-ms-input-placeholder {
  opacity: 1;
  color: #2B3241;
}

input[type="password"]::-webkit-input-placeholder {
  opacity: 1;
  color: #2B3241;
}

input[type="password"]::-moz-placeholder {
  opacity: 1;
  color: #2B3241;
}

input[type="password"]::-ms-input-placeholder {
  opacity: 1;
  color: #2B3241;
}

textarea::-webkit-input-placeholder {
  opacity: 1;
  color: #2B3241;
}

textarea::-moz-placeholder {
  opacity: 1;
  color: #2B3241;
}

textarea::-ms-input-placeholder {
  opacity: 1;
  color: #2B3241;
}

select::-ms-expand {
  display: none
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none
}

/* font-family: "Inter", sans-serif; */

/* font-family: "Oxanium",
sans-serif; */

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

a {
  color: #1E1E1E;
  transition: 0.3s;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
ol,
ul,
li,
a,
p {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

strike {
  text-decoration: line-through;
}

.form-control:focus {
  box-shadow: none;
}

h1 {
  font-family: "Inter", sans-serif;
}

ul,
ol {
  list-style-position: inside;
}

html {
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
}

body {
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: #4A5565;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

.container {
  max-width: 1220px;
  padding: 0 15px;
  width: 90%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
}

h6 {
  font-weight: 600;
  font-size: 17px;
  line-height: 27px;
  letter-spacing: 2.25px;
  color: #E73331;
  position: relative;
  margin: 0 0 10px;
  padding-left: 80px;
}

h6::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 1px;
  background: #E73331;
  top: 50%;
}

.sub-heading h6::before {
  content: '';
  position: absolute;
  top: 0;
  left: 30px;
  width: 30px;
  height: 1px;
  background: #E73331;
  top: 50%;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #e73331;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 60px;
}

#preloader .loader-logo {
  display: block;
  max-width: 140px;
}

.loader {
  width: 60px;
  display: flex;
  justify-content: space-evenly;
}

.ball {
  list-style: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #f1f1f1;
}

.ball:nth-child(1) {
  animation: bounce-1 2.1s ease-in-out infinite;
}

@keyframes bounce-1 {
  50% {
    transform: translateY(-90px);
    scale: 0.3;
  }
}

.ball:nth-child(2) {
  animation: bounce-3 2.1s ease-in-out 0.3s infinite;
}

@keyframes bounce-2 {
  50% {
    transform: translateY(-90px);
    scale: 0.3;
  }
}

.ball:nth-child(3) {
  animation: bounce-3 2.1s ease-in-out 0.6s infinite;
}

@keyframes bounce-3 {
  50% {
    transform: translateY(-90px);
    scale: 0.3;
  }
}

/* For WebKit browsers (Chrome, Safari) */
::-webkit-scrollbar {
  width: 10px;
  /* width of the scrollbar */
}

::-webkit-scrollbar-thumb {
  background-color: #888;
  /* color of the thumb */
  border-radius: 6px;
  /* roundness of the thumb */
}

::-webkit-scrollbar-track {
  background-color: #f1f1f1;
  /* color of the track */
}

/* For Firefox */
/* Note: Firefox currently only supports scrollbar styling in the dark theme. */
/* You may need to enable it manually in about:config by setting 'ui.systemUsesDarkTheme' to 1. */
/* Refer to Firefox documentation for the latest updates. */

/* width of the scrollbar */
html,
.awards-list {
  scrollbar-width: thin;
}

/* color of the thumb */
html {
  scrollbar-color: #888 #f1f1f1;
}

/*--------------------------------------------------------------
# Button
--------------------------------------------------------------*/
.btn {
  transition: 0.4s;
  position: relative;
}

.btn i {
  transition: 0.4s;
}

.btn.btn-primary {
  display: inline-block;
  padding: 11px 30px;
  color: #fff;
  border-radius: 25px;
  border: 1px solid #E73331;
  text-transform: capitalize;
  font-weight: 400;
  font-size: 13px;
  line-height: 19.5px;
  letter-spacing: 0.65px;
  background: #E73331;
}

.btn.btn-primary:hover,
.btn.btn-primary:focus {
  background: #c32c2a;
  border-color: #c32c2a;
  color: #fff;
}

.btn.btn-outline {
  display: inline-block;
  padding: 11px 30px;
  color: #4A5565;
  border-radius: 25px;
  border: 1px solid #fff;
  text-transform: capitalize;
  font-weight: 400;
  font-size: 13px;
  line-height: 19.5px;
  letter-spacing: 0.65px;
  background: transparent;
}

.btn.btn-outline:hover,
.btn.btn-outline:focus {
  background: #fff;
  border-color: #fff;
  color: #4A5565;
}

.btn.btn-text {
  padding: 0;
  color: #101828;
  border-radius: 5px;
  border: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: 0px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: capitalize;
}

.btn.btn-text:hover,
.btn.btn-text:focus {
  color: #E73331;
  gap: 12px;
}

.btn.btn-text:hover svg path,
.btn.btn-text:focus svg path {
  stroke: #E73331;
}

.show_mobile {
  display: none;
}

.show_mobile img {
  margin-bottom: 15px;
}

.show_desktop {
  display: block;
}

.upper_case_text {
  text-transform: uppercase;
}

@media only screen and (max-width: 991.98px) {

  .show_mobile {
    display: block;
  }

  .feature-list .show_mobile {
    display: block;
    width: 100%;
  }

  .feature-list .show_mobile .feature-desc h4 {
    margin: 0 0 10px 0;
  }

  .feature-list .show_mobile img {
    margin-bottom: 0;
  }

  .show_desktop {
    display: none;
  }

  .footer-top .footer-block:nth-child(5n) {
    width: 100%;
  }

  .footer-top .footer-block:nth-child(5n) ul {
    display: flex;
    gap: 10px;
  }

  .footer-top .footer-block:last-child {
    width: 100%;
  }

  .show_mobile .event-desc-tab {
    margin-top: 0;
  }

  .reach-us .ct-block {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .reach-us .ct-block.address_block {
    display: block;
  }

  .reach-us .ct-block.address_block2 .ct-ico {
    margin: 0;
  }

  .reach-us .ct-block.address_block2 h4 {
    margin: 0;
  }

}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header-main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  padding: 30px 0;
  background: transparent;
  /* default */
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header-main.scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 4px 30px 0px #E3434E1F;
}

.header-inner {
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 26px;
  border-top: 0.8px solid #EF929926;
  box-shadow: 0px 4px 30px 0px #E3434E1F;
  border-radius: 12.5px;
}

.logo {
  display: block;
  max-width: 100px;
}

.menu-inner ul li {
  display: inline-block;
  position: relative;
  margin: 0 18px;
}

.menu-inner ul ul {
  position: absolute;
}

.menu-inner ul li a {
  font-weight: 300;
  font-size: 14px;
  line-height: 19.5px;
  letter-spacing: 0.32px;
  color: #4A5565;
  position: relative;
  text-transform: uppercase;
}

.menu-inner ul li a:hover {
  color: #E73331;
}

.menu-inner a::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  height: 1px;
  background: #E73331;
  width: 1px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
  pointer-events: none;
}

.menu-inner a:hover::before {
  width: 100%;
  visibility: visible;
  opacity: 1;
  left: 0;
}

.menu-inner a.classactive {
  color: #E73331;
}

.menu-toggle {
  display: none;
}

.has-child i {
  display: none;
}

.trigger-submenu {
  display: none !important;
}

.menu-inner .has-child ul {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 200px;
  padding: 10px 0;
  background: #fff;
  z-index: 9;
  border-radius: 16.5px;
  border-top: 0.8px solid #EF929933;
  box-shadow: 0px 12px 40px 0px #E3434E26;
  display: none;
  margin-top: 30px;
  margin-left: -100px;
}

.menu-inner .has-child ul::before {
  content: '';
  position: absolute;
  top: -35px;
  left: 0;
  width: 100%;
  height: 40px;
  background: transparent;
  z-index: 9;
}

.menu-inner .has-child li {
  margin: 0;
  display: block;
}

.menu-inner .has-child ul li a {
  display: block;
  color: #4A5565;
  padding: 12px 25px;
  border: 0 !important;
  font-weight: 300;
  font-size: 13px;
  line-height: 19.5px;
  letter-spacing: 0.32px;
}

.menu-inner .has-child ul li a::before {
  display: none;
}

.menu-inner .has-child ul a:hover {
  color: #E73331;
}

.menu-inner .has-child>a {
  padding-right: 15px;
}

.menu-inner .has-child>a::after {
  content: '\f107';
  font-family: 'Font Awesome 7 Free';
  font-weight: 700;
  color: #919191;
  position: absolute;
  right: 0;
  top: 50%;
  display: block;
  margin-top: -10px;
  font-size: 11px;
  transition: all 0.4s;
}

.menu-inner .has-child>a:hover::after {
  transform: rotate(180deg);
  color: #E73331;
}

.home-banner {
  position: relative;
}

.home-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.4) 100%);
}

.home-slider img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.home-slider .slick-dots {
  position: absolute;
  right: 50px;
  bottom: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
  z-index: 9;
}

.home-slider .slick-dots li {
  line-height: 0;
}

.home-slider .slick-dots li button {
  font-size: 0;
  width: 2.5px;
  height: 50px;
  opacity: 1;
  border-radius: 20px;
  border: 0;
  background: #FFFFFF4D;
  transition: all 0.4s;
}

.home-slider .slick-dots li.slick-active button {
  background: #fff;
  height: 80px;
}

.cookie-policy {
  position: fixed;
  bottom: 30px;
  left: 0;
  width: 100%;
  z-index: 9;
  pointer-events: none;
  pointer-events: none;
}

.ck-box {
  border-top: 0.8px solid #F3F4F6;
  box-shadow: 0px 8px 32px 0px #00000026;
  border-radius: 20px;
  background: #FFFFFFD9;
  max-width: 480px;
  padding: 24px 25px;
  pointer-events: all;
  position: relative;
}

.ck-box p {
  font-weight: 300;
  font-size: 15px;
  line-height: 24.38px;
  letter-spacing: 0px;
  color: #4A5565;
  margin: 0 0 21px;
}

.close-ic {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #99A1AF;
  font-size: 17px;
}

.start-lyvvin {
  padding: 75px 0;
}

.lyvvin-inner {
  border-top: 0.8px solid #F3F4F6;
  box-shadow: 0px 10px 15px -3px #0000001A;
  border-radius: 20px;
  padding: 30px 60px;
  overflow: hidden;
  position: relative;
}

.lyvvin-inner .bar {
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(239, 146, 153, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
}

/* .la-desc h3 {letter-spacing: 2px; } */
.la-desc h3 {
  font-weight: 700;
  font-size: 25px;
  line-height: 22.5px;
  color: #E73331;
}

.la-desc p {
  color: #4A5565;
  font-weight: 300;
  font-size: 13.76px;
  line-height: 19.26px;
  letter-spacing: 0px;
}

/* .lyvvin-inner::before { content: ''; width: 120px; height: 100%; position: absolute; top: 0; left: 0; background: radial-gradient(141.42% 141.42% at 0% 0%, rgba(227, 67, 78, 0.15) 0%, rgba(227, 67, 78, 0.08) 40%, rgba(0, 0, 0, 0) 70%); pointer-events: none; }
.lyvvin-inner::after { content: ''; width: 120px; height: 100%; position: absolute; top: 0; right: 0; background: radial-gradient(141.42% 141.42% at 100% 100%, rgba(227, 67, 78, 0.15) 0%, rgba(227, 67, 78, 0.08) 40%, rgba(0, 0, 0, 0) 70%); pointer-events: none; } */

.discover-sec {
  padding: 0 0 0px;
}

.discover-content {
  max-width: 477px;
  margin: -110px 0 0 0;
}

.discover-content h3 {
  font-weight: 200;
  font-size: 40px;
  line-height: 55px;
  letter-spacing: -0.5px;
  margin: 0 0 30px;
}

.discover-content p {
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0px;
  margin: 0 0 10px;
}

.show_mobile h3 {
  font-weight: 200;
  font-size: 30px;
  line-height: 40px;
  margin: 0 0 20px;
}

.discover-img {
  max-width: 537px;
  height: 456px;
  position: relative;
}

.discover-img>div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dig-1 {
  width: 370px;
  height: 288px;
  border-radius: 12.5px;
  box-shadow: 0px 20px 25px -5px #0000001A;
  overflow: hidden;
}

.dig-2 {
  width: 346px;
  height: 244px;
  border-radius: 12.5px;
  box-shadow: 0px 20px 25px -5px #0000001A;
  overflow: hidden;
  position: absolute;
  top: 45px;
  left: 275px;
  z-index: 1;
}

.dig-3 {
  width: 322px;
  height: 235px;
  border-radius: 12.5px;
  box-shadow: 0px 20px 25px -5px #0000001A;
  overflow: hidden;
  position: absolute;
  top: 221px;
  left: 125px;
  z-index: 2;
}

.preview-sec {
  padding: 75px 0;
  background: url('assets/img/preview-bg.png') center center repeat-x;
  background-size: contain;
}

.preview-content-slider {
  width: 600px;
  margin-left: 26px;
}

.pis-desc {
  text-align: left;
}

.pis-desc p {
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  color: #4A5565;
  margin: 0 0 30px;
}

.preview-content-slider .slick-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.preview-content-slider .slick-dots li {
  line-height: 0;
}

.preview-content-slider .slick-dots li button {
  font-size: 0;
  width: 5px;
  height: 5px;
  opacity: 1;
  border-radius: 6px;
  border: 0;
  background: #D1D5DC;
  transition: all 0.4s;
}

.preview-content-slider .slick-dots li.slick-active button {
  background: #E73331;
  width: 40px;
}

.preview-img-slider img {
  margin: 0 auto;
}

.business-sec {
  padding: 0px 0 0px;
}

.business-desc {
  max-width: 537px;
}

.business-desc h3 {
  font-weight: 200;
  font-size: 45px;
  line-height: 55px;
  letter-spacing: -0.5px;
  color: #101828;
  margin: 0 0 30px;
}

.business-desc h3 span {
  color: #E73331;
  font-weight: 700 !important;
}

.business-desc p {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  margin: 0 0 39px;
}

.business-desc ul {
  margin: 0 0 30px;
}

.business-desc ul li {
  font-weight: 300;
  font-size: 16px;
  line-height: 14px;
  letter-spacing: 0px;
  color: #364153;
  position: relative;
  padding-left: 32px;
  margin: 0 0 20px;
}

.business-desc ul li::before {
  content: '\f058';
  font-family: 'Font Awesome 7 Free';
  color: #E73331;
  font-weight: 700;
  left: 0;
  position: absolute;
  font-size: 18px;
  top: 0;
}

.submit-btn {
  background: #E73331;
  height: 45px;
  border: 0;
  border-radius: 12.5px;
  padding: 0 18px;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  line-height: 22.5px;
  letter-spacing: 0px;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.submit-btn svg path {
  stroke: #fff;
}

.submit-btn:hover,
.submit-btn:focus {
  background: #c32c2a;
  color: #fff;
}

.submit-btn:hover,
.submit-btn:focus {
  background: #c32c2a;
  color: #fff;
}

.subs-form-inner input {
  height: 45px;
  border: 0.8px solid #E5E7EB;
  border-radius: 12.5px;
  width: 430px;
  padding: 5px 20px;
}

.spacer {
  padding: 30px 0;
  display: none;
}

.spacer span {
  width: 100%;
  max-width: 345px;
  height: 1px;
  background: #E73331;
}

.copyright {
  margin-top: 30px;
  border-top: 0.8px solid #FFFFFF33;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.copyright p {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0px;
  color: #FFFFFFE5;
}

.footer-main {
  padding-top: 80px;
  background: #E73331;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.footer-top>div {
  width: 270px;
}

.footer-block h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.7px;
  margin: 0 0 20px;
  color: #fff;
}

.footer-block ul li {
  margin: 0 0 10px;
}

.footer-block ul li a {
  font-weight: 400;
  font-size: 14px;
  line-height: 0px;
  letter-spacing: 0px;
  color: #fff;
  position: relative;
}

.footer-block p {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.footer-block p a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF1A;
  border-radius: 50%;
  color: #fff;
}

/* .analytics-tab { max-width: 600px; background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 100%); width: 100%; border-radius: 16.5px; padding: 15px; } */
.analytics-tab {
  max-width: 600px;
  width: 100%;
}

.alt-top {
  margin: 0 0 25px;
}

.alt-top h4 {
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0px;
}

.alt-top p {
  font-weight: 300;
  font-size: 13.76px;
  line-height: 20.64px;
  letter-spacing: 0px;
  color: #6A7282;
}

.live-ic {
  font-weight: 300;
  font-size: 12.5px;
  line-height: 18.75px;
  letter-spacing: 0px;
  color: #4A5565;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -10px;
}

.live-ic i {
  color: #E73331;
  font-size: 10px;
}

.report-sec {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 15px;
  margin: 0 0 25px;
}

.report-card {
  width: 100%;
  box-shadow: 0px 1px 3px 0px #0000001A;
  border: 0.8px solid #F3F4F6;
  border-radius: 12px;
  padding: 10px;
  position: relative;
}

.report-ic {
  width: 40px;
  height: 40px;
  background: #E733311A;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 12px;
}

.report-card h4 {
  font-weight: 600;
  font-size: 25px;
  line-height: 37.5px;
  letter-spacing: 0px;
  color: #101828;
}

.report-card p {
  font-weight: 300;
  font-size: 12.5px;
  line-height: 18.75px;
  letter-spacing: 0px;
  color: #6A7282;
}

.percent {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  font-size: 11.26px;
  line-height: 16.89px;
  letter-spacing: 0px;
  color: #00A63E;
  position: absolute;
  top: 10px;
  right: 6px;
}

.growth-reviews {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 15px;
}

.gr-card {
  width: 100%;
  box-shadow: 0px 1px 3px 0px #0000001A;
  border: 0.8px solid #F3F4F6;
  border-radius: 12px;
  padding: 10px;
  position: relative;
}

.gr-card h4 {
  font-weight: 600;
  font-size: 16.26px;
  line-height: 24.39px;
  letter-spacing: 0px;
  color: #101828;
}

.gr-card p {
  font-weight: 300;
  font-size: 12.5px;
  line-height: 18.75px;
  letter-spacing: 0px;
  color: #6A7282;
}

.graph-tab {
  margin-top: 12px;
}

.scroll-next {
  width: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  position: absolute;
  bottom: 40px;
  left: 50%;
  margin-left: -31px;
  font-weight: 400;
  font-size: 11px;
  line-height: 16.5px;
  letter-spacing: 3.3px;
  color: #FFFFFFB2;
  text-transform: uppercase;
  z-index: 9;
  animation: moveUpDown 3s ease-in-out infinite;
}

.scroll-next:hover {
  color: #fff;
}

.scroll-next:hover svg path {
  stroke: #fff;
}

@keyframes moveUpDown {
  0% {
    transform: translateY(0);
    /* Start at the normal position */
  }

  50% {
    transform: translateY(-10px);
    /* Move up */
  }

  100% {
    transform: translateY(0);
    /* End at the normal position */
  }
}

html,
body {
  overflow-x: hidden;
}

/*  */
.inner-banner {
  background-size: cover !important;
  height: 500px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 160px 0 100px;
}

.inner-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(227, 67, 78, 0.3) 100%);
  z-index: -1;
}

.inner-banner h1 {
  font-weight: 700;
  font-size: 50px;
  line-height: 16px;
  letter-spacing: 3px;
  text-align: center;
  color: #FFFFFF;
}

.inner-banner h4 {
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 2.1px;
  text-align: center;
  color: #FFFFFFCC;
  position: relative;
}

.inner-banner h4::after {
  content: '';
  width: 60px;
  height: 1px;
  background: #FFFFFF99;
  display: inline-block;
  vertical-align: middle;
  margin-top: -1px;
  margin-left: 10px;
}

.inner-banner h4::before {
  content: '';
  width: 60px;
  height: 1px;
  background: #FFFFFF99;
  display: inline-block;
  vertical-align: middle;
  margin-top: -1px;
  margin-right: 10px;
}

.inner-banner h4 i {
  font-size: 30px;
  vertical-align: middle;
  display: inline-block;
}

.inner-banner p {
  font-family: Inter;
  font-weight: 300;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: -0.14px;
  text-align: center;
  color: #FFFFFFE5;
}

section {
  padding: 40px 0px 0px;
}

section.partnet-sec {
  padding: 40px 0 40px;
}

section.lyvv-value {
  padding: 25px 0 25px;
}

section.ne-list-sec {
  padding: 40px 0 0;
}

section.event-details {
  padding: 40px 0 60px;
}

section.impact-tab {
  padding: 40px 0 0;
}

section.career-tab {
  padding: 40px 0 0;
}

section.diff-sec {
  padding: 40px 0 0px;
}

.address_text {
  font-size: 14px;
}

.news_wrap {
  padding: 40px 0 40px;
}

section .top-text {
  margin: 0 0 0px;
}

section h3 {
  font-weight: 200;
  font-size: 30px;
  line-height: 33px;
  letter-spacing: -0.6px;
  color: #101828;
}

section p {
  font-weight: 300;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0.14px;
  color: #364153;
  margin: 0 0 15px;
}

section p:last-child {
  margin: 0;
}

.fndt-block {
  border: 0.8px solid #F3F4F699;
  box-shadow: 0px 20px 25px -5px #E5E7EB66;
  border-radius: 12.5px;
  padding: 55px;
  margin: 0 0 40px;
}

.fndt-block:last-child {
  margin: 0;
}

.fnd-count {
  width: 186px;
  min-width: 186px;
}

.fnd-count span:nth-child(1) {
  font-weight: 200;
  font-size: 80px;
  line-height: 80px;
  letter-spacing: 0px;
  color: #E73331;
  position: absolute;
  top: 50%;
  margin-top: -40px;
}

.fnd-count span:nth-child(2) {
  font-weight: 200;
  font-size: 130px;
  line-height: 160px;
  letter-spacing: 0px;
  color: #E733311A;
}

.fndt-desc h4 {
  font-weight: 300;
  font-size: 40px;
  line-height: 60px;
  letter-spacing: 0.4px;
  color: #101828;
  margin: 0 0 20px;
}

.fndt-block:nth-child(2) {
  margin-left: 120px;
}

.fndt-block:nth-child(3) {
  margin-left: 240px;
}

.val-count {
  display: none;
}

.values-block {
  position: relative;
  max-width: 338px;
}

.values-block h4 {
  font-weight: 500;
  font-size: 20px;
  line-height: 37.5px;
  letter-spacing: 0.25px;
  color: #E73331;
  margin: 0 0 15px;
  position: relative;
  padding-left: 25px;
}

.values-block h4::after {
  content: '\f111';
  font-family: 'Font Awesome 7 Free';
  color: #E73331;
  font-weight: 700;
  left: 0;
  position: absolute;
  font-size: 8px;
  top: 0;
}

.values-block span:nth-child(1) {
  font-weight: 200;
  font-size: 40px;
  line-height: 40px;
  letter-spacing: -0.8px;
  color: #E73331;
  position: absolute;
  top: 0;
}

.values-block span:nth-child(2) {
  font-weight: 200;
  font-size: 100px;
  line-height: 70px;
  letter-spacing: 0px;
  color: #E7333114;
  visibility: hidden;
  opacity: 0;
}

/* .values-block::after { content: ''; width: 279px; height: 1px; opacity: 1; background: linear-gradient(90deg, rgba(231, 51, 49, 0.3) 0%, rgba(0, 0, 0, 0) 100%); position: absolute; top: 19px; left: 60px; } */

.eco-list {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 15px;
  margin-top: 40px;
}

.eco-block {
  border: 0px solid #e3e3e3;
  background: #FFFFFF;
  border-radius: 12.5px;
  width: 100%;
  max-width: 170px;
  /*height: 120px;*/
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.14px;
  color: #1E2939;
  padding: 0px;
}

.eco-block img {
  max-height: 64px;
}

.impact-block {
  margin: 0 0 24px;
}

.impact-block h6 {
  color: #101828;
  margin: 0 0 0px;
}

.impact-block p {
  padding-left: 80px;
  line-height: 25px;
}

.no-margin-bottom {
  margin-bottom: 0 !important;
}

.mbnew {
  margin-bottom: 0px
}

;

label {
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.28px;
  color: #364153;
  margin: 0 0 5px;
}

.form-control,
.form-select {
  border: 0.8px solid #E5E7EB !important;
  background-color: #fff !important;
  width: 100%;
  height: 55px;
  color: #717182;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  padding: 5px 15px;
  border-radius: 12.5px;
}

.form-control::file-selector-button {
  height: 55px;
}

textarea.form-control {
  height: 160px;
}

.join-form .btn {
  border-radius: 12.5px;
  height: 55px;
}

.top-text h5 {
  position: relative;
  font-weight: 600;
  font-size: 15px;
  line-height: 22.5px;
  letter-spacing: 0.3px;
  text-align: center;
  color: #E73331;
  display: inline-block;
}

.top-text h5::before {
  content: '';
  width: 60px;
  height: 1px;
  background: #E73331;
  display: inline-block;
  vertical-align: middle;
  margin-top: -2px;
  margin-right: 20px;
}

.top-text h5::after {
  content: '';
  width: 60px;
  height: 1px;
  background: #E73331;
  display: inline-block;
  vertical-align: middle;
  margin-top: -2px;
  margin-left: 20px;
}

.ct-block {
  box-shadow: 0px 10px 15px -3px #0000001A;
  border: 0.8px solid #F3F4F6;
  background: #FFFFFF;
  border-radius: 12.5px;
  padding: 20px;
  height: 200px;
}

.ct-ico {
  background: #E73331;
  width: 55px;
  height: 55px;
  margin: 0 0 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12.5px;
  font-size: 20px;
  color: #fff;
}

.ct-block h4 {
  font-weight: 600;
  font-size: 15px;
  line-height: 22.5px;
  color: #101828;
  letter-spacing: 0.3px;
  margin: 0 0 10px;
}

.ct-block p {
  line-height: 16px;
}

.ct-block p a {
  color: #E73331;
}

.ct-block p a:hover {
  color: #c32c2a;
}

.ct-form {
  box-shadow: 0px 20px 25px -5px #0000001A;
  border: 0.8px solid #F3F4F6;
  padding: 50px;
  border-radius: 12.5px;
}

.ct-form .btn {
  border-radius: 12.5px;
  height: 55px;
}

.ct-form h4 {
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.28px;
  color: #101828;
  padding: 0 0 16px;
  margin: 0 0 25px;
  border-bottom: 0.8px solid #E5E7EB;
}

.form-check-label {
  font-weight: 300;
  font-size: 14px;
  line-height: 22.4px;
  letter-spacing: 0px;
  color: #4A5565;
}

.ct-form.contact_box {
  padding: 20px 50px 25px 50px;
}

.ct-form.get_list_bottom {
  padding: 20px 50px 30px 50px;
}

.lyvv-value ul {
  margin: 0 0 10px;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 15px;
}

.lyvv-value ul li {
  font-weight: 300;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0px;
  color: #364153;
  position: relative;
  padding-left: 80px;
  margin: 0 0 5px;
  width: calc(50% - 8px);
}

.lyvv-value ul li::before {
  /* content:""; width: 60px; height: 1px; background: #E73331; font-weight: 700; left: 0; position: absolute; font-size: 8px; top: 0;  */
  content: '';
  position: absolute;
  top: 0;
  left: 30px;
  width: 30px;
  height: 1px;
  background: #E73331;
  top: 50%;
}

.app-about-desc {
  max-width: 650px;
}

.app-about-img {
  margin-top: -45px;
}

.feature-img {
  width: 100%;
  max-width: 546px;
  /*height: 378px;*/
  overflow: hidden;
  border-radius: 20px;
  border: 0.8px solid #F3F4F6;
  box-shadow: 0px 20px 25px -5px #0000001A;
}

.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-desc {
  max-width: 600px;
}

.feature-desc h4 {
  margin: 0 0 30px;
  font-weight: 600;
  font-size: 15px;
  line-height: 22.5px;
  letter-spacing: 0.3px;
  color: #E73331;
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature-desc ul {
  list-style: disc !important;
  padding-left: 20px !important;
  padding-bottom: 20px;
}

.feature-desc li {
  list-style: disc !important;
  font-size: 16px;
  color: #364153;
  font-weight: 300;
}

.feature-desc ul li::marker {
  color: #e63946;
  /* Brand red */
}


.ft-ico {
  width: 60px;
  height: 60px;
  background: #E733311A;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16.5px;
}

.feature-block {
  margin: 0 0 80px;
}

.feature-block:last-child {
  margin: 0;
}




.feature-list .feature-block:nth-child(2n+2) .feature-desc {
  order: -1;
}

.diff-block {
  border: 0.8px solid #F3F4F6;
  border-radius: 12.5px;
  padding: 30px;
  padding-left: 50px;
}

.diff-block h4 {
  font-weight: 600;
  font-size: 14px;
  line-height: 19.6px;
  letter-spacing: 0.28px;
  margin: 0 0 14px;
  color: #101828;
  position: relative;
}

.diff-block h4::after {
  content: '\f111';
  font-family: 'Font Awesome 7 Free';
  color: #E73331;
  font-weight: 700;
  left: -25px;
  position: absolute;
  font-size: 8px;
  top: 0;
}

.top-text h6 {
  font-size: 20px;
  text-transform: uppercase;
}

.partner-inner {
  border: 0.8px solid #F3F4F6;
  box-shadow: 0px 20px 25px -5px #0000001A;
  padding: 35px;
  border-radius: 12.5px;
  justify-content: space-between;
}

.partner-inner h6 {
  margin: 0 0 15px;
}

.partner-inner h3 {
  margin: 0 0 0;
}

.partner-inner .btn {
  border-radius: 12.5px;
}

.ne-block {
  margin: 0 0 0px;
}

.ne-img {
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 12.5px;
  box-shadow: 0px 10px 15px -3px #0000001A;
  margin: 0 0 20px;
  position: relative;
  z-index: 1;
}

.ne-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
}

.ne-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 4s;
}

.ne-img:hover img {
  transform: scale(1.2);
}

.ne-desc h4 {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 19.6px;
  letter-spacing: -0.14px;
  color: #101828;
  transition: all 0.4s;
  padding-bottom:0px;
}

.ne-date {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 1;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.28px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ne-date i {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF33;
  border-radius: 7.5px;
}

.ne-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  border-radius: 12.5px;
  box-shadow: 0px 10px 15px -3px #0000001A;
  background: #fff;
  padding: 9px 20px;
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 1.12px;
  color: #E3434E;
  text-transform: uppercase;
}

.ne-block:hover h4 {
  color: #E73331;
}

.breadcrumb-tab {
  padding: 30px 0;
  border-bottom: 0.8px solid #E5E7EB;
}

.breadcrumb-tab p a {
  color: #E73331;
}

.breadcrumb-tab p {
  color: #4A5565;
}

.photo-gallery {
  background: #F9FAFB;
}

.event-desc-tab {
  max-width: 548px;
}

.event-img-tab {
  width: 100%;
  max-width: 548px;
}

.event-img img {
  border-radius: 20px;
  box-shadow: 0px 20px 25px -5px #0000001A;
  width: 100%;
}

.event-info {
  border: 0.8px solid #F3F4F6;
  margin-top: 25px;
  box-shadow: 0px 10px 15px -3px #0000001A;
  border-radius: 16.5px;
  padding: 20px;
}

.sgl-info {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 50%;
}

.sgl-info-desc h4 {
  font-weight: 300;
  font-size: 14.75px;
  line-height: 20.63px;
  letter-spacing: 0px;
  color: #6A7282;
}

.sgl-info-desc p {
  font-weight: 400;
  font-size: 16.25px;
  line-height: 24.38px;
  letter-spacing: 0px;
  color: #101828;
}

.sgl-info i {
  color: #E3434E;
  margin-top: 4px;
}

.event-tag {
  font-weight: 600;
  font-size: 13.75px;
  line-height: 20.63px;
  letter-spacing: 1.1px;
  color: #E3434E !important;
  margin: 0 0 25px;
  background: #EF929933;
  padding: 8px 20px;
  border-radius: 26px;
  display: inline-block;
}

.event-desc-tab h1 {
  font-weight: 200;
  font-size: 45px;
  line-height: 50px;
  letter-spacing: -1px;
  margin: 0 0 25px;
}

.video-tab {
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

.video-tab video {
  background-size: cover;
  width: 100%;
  height: 225px;
  background: #000;
}

.video-background {
  position: absolute;
  inset: 0;
  background-size: cover !important;
  background-position: center !important;
  z-index: 1;
}

.custom-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 70px;
  height: 70px;
  background: #fff;
  box-shadow: 0px 20px 25px -5px #0000001A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s ease;
  color: #E73331;
  font-size: 22px;
}

.video-play {
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 225px;
  background: #000;
  display: block;
}

.cs-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 70px;
  height: 70px;
  background: #fff;
  box-shadow: 0px 20px 25px -5px #0000001A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s ease;
  color: #E73331;
  font-size: 22px;
}

.video-play img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-slider .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.gallery-slider .slick-dots li {
  line-height: 0;
}

.gallery-slider .slick-dots li button {
  font-size: 0;
  width: 5px;
  height: 5px;
  opacity: 1;
  border-radius: 6px;
  border: 0;
  background: #D1D5DC;
  transition: all 0.4s;
}

.gallery-slider .slick-dots li.slick-active button {
  background: #E73331;
  width: 30px;
}

.gallery-img {
  margin: 0 10px;
  height: 220px !important;
  overflow: hidden;
  border-radius: 20px;
}

.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-img2 {
  margin: 0 10px;
  max-height: 160px !important;
  overflow: hidden;
  align-items: center;
  justify-content: center;
}

.gallery-img2 img {
  width: auto;
  max-height: 160px;
  align-items: center;
  justify-content: center;
}

.slick-arrow {
  position: absolute;
  left: -75px;
  top: 50%;
  margin-top: -40px;
  width: 60px;
  height: 60px;
  background: #fff;
  font-size: 0;
  border-radius: 50%;
  z-index: 9;
  border: 0;
  opacity: 0.8;
  transition: all 0.4s;
}

.slick-arrow::after {
  content: '\f104';
  font-family: 'FOnt Awesome 7 Free';
  font-weight: 700;
  font-size: 18px;
  color: #f00;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slick-next.slick-arrow {
  left: auto;
  right: -75px;
  transform: rotate(180deg);
}

.slick-arrow:hover {
  opacity: 1;
}

.preview-img-slider {
  position: relative;
  max-width: 280px;
}

.preview-img-slider::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: url(assets/img/frame.png) center center no-repeat;
  background-size: 280px;
  pointer-events: none;
}

.pis-img img {
  width: 260px !important;
  padding: 18px;
}

.accordion-button {
  box-shadow: unset !important;
  color: #000 !important;
}

.accordion-button:not(.collapsed) {
  background-color: #fdf2f2;
}

.accordion-body {
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0px;
}


.content-area {
  position: relative;
  width: 100%;
  padding: 45px 0;
}

.content-area h1,
.content-area h2,
.content-area h3,
.content-area h4,
.content-area h5,
.content-area h6 {
  margin: 1.2em 0;
  line-height: 1.4;
  font-weight: 400;
}

.content-area h1 {
  font-size: 2.5em;
}

.content-area h2 {
  font-size: 2em;
}

.content-area h3 {
  font-size: 1.5em;
}

.content-area h4 {
  font-size: 1.3em;
}

.content-area h5 {
  font-size: 1.2em;
}

.content-area h6 {
  font-size: 1em;
}

.content-area p {
  margin: 1em 0;
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0px;
}

.content-area ul,
.content-area ol {
  list-style-type: disc;
  padding-left: 20px;
}

.content-area ul li {
  position: relative;
  padding-left: 22px;
  line-height: 22px;
  padding-bottom: 16px;
  font-size: 16px;
  color: #4A5565;
  font-weight: 300;
}

.content-area ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #e63946;
  font-size: 18px;
  line-height: 1;
}

.content-area ul li::marker {
  color: #e63946;
  /* Brand red */
}

.content-area a {
  text-decoration: none;
  color: #e6312f;
}

.content-area a:hover {
  color: #dc100e;
  border-bottom: 1px solid;
}

.wrapper-heading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrapper-heading h1 {
  text-align: center;
  font-size: 3rem;
  line-height: 140%;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.wrapper-heading h1 br {
  display: none;
}

.start-lyvvin.v2 {
  /*padding-top: 5px;*/
}

/* added by Deb */
.vanish {
  display: block;
}

.mobshow {
  display: none;
}

.alert-success {
  background-color: #ffbfbf;
  border:1px solid #E73331;
  color:#850908;
}


@media only screen and (max-width: 1360.98px) {
  .container {
    width: 96%;
  }

}

@media only screen and (max-width: 1200.98px) {
  .discover-content {
    max-width: 405px;
  }

  .dig-2 {
    left: 170px;
  }

  .dig-3 {
    left: 80px;
  }

  .preview-content-slider {
    width: 475px;
  }

  .business-desc {
    max-width: 420px;
  }

  .start-lyvvin {
    padding: 80px 0;
  }

  .discover-sec {
    padding: 40px 0;
  }

  .preview-sec {
    padding: 80px 0;
  }

  .business-sec {
    padding: 30px 0;
  }

  .spacer {
    padding: 30px 0;
  }

  .ct-block {
    padding: 20px 15px;
  }

  .ct-form {
    padding: 30px;
  }

  .feature-desc {
    max-width: 450px;
  }

  .feature-img {
    max-width: 500px;
    height: 340px;
  }

  .app-about-desc {
    max-width: 570px;
  }

  .event-desc-tab {
    max-width: 460px;
  }




}

@media only screen and (max-width: 1024.98px) {
  .discover-inner {
    flex-direction: column;
  }

  .discover-img {
    max-width: unset;
    height: auto;
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
  }

  .discover-img>div {
    height: auto;
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    height: 300px;
  }

  .dig-1,
  .dig-2 {
    width: calc(50% - 10px);
  }

  .dig-3 {
    width: 100%;
    height: 400px !important;
  }

  .discover-content {
    max-width: unset;
    margin-top: 45px;
  }

  .preview-inner {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .preview-img-slider {
    align-self: center;
  }

  .preview-content-slider {
    width: 90%;
  }

  .preview-img-slider {
    margin-top: 30px;
  }

  .business-inner {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .business-desc {
    max-width: unset;
    width: 90%;
  }

  .analytics-tab {
    max-width: unset;
    padding: 25px;
    margin-top: 45px;
  }

  .fndt-block {
    padding: 40px;
  }

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

  .start-lyvvin.v2 .lyvvin-inner {
    flex-direction: column;
  }

  .app-about-inner {
    flex-direction: column;
  }

  .app-about-desc {
    max-width: unset;
  }

  .footer-block p {
    flex-wrap: wrap;
  }

  .footer-top {
    gap: 15px;
  }

  /* edited 24th Nov */
  .business-desc ul li {
    line-height: 20px;
    margin: 0 0 14px;
  }

  .lyvv-value ul li::before {
    top: 23%
  }

  ;

  .ct-form.get_list_bottom {
    padding: 20px 20px 30px 20px;
  }

  .mbnew {
    margin-bottom: 24px
  }

  ;

  .sub-heading h6::before {
    top: 12px
  }

  ;

  .reach-us .ct-block.address_block {
    display: flex;
    align-items: flex-start;
  }

  .ct-ico {
    flex-shrink: 0
  }

  ;

  .ct-form.contact_box {
    padding: 20px 20px 25px 20px;
  }








}

@media only screen and (min-width: 992px) {
  .menu-inner .has-child:hover ul {
    display: block;
  }
}

@media only screen and (max-width: 991.98px) {
  .menu-toggle {
    display: block;
    position: absolute;
    right: 35px;
    top: 38px;
    z-index: 9999;
    border: 1px solid rgba(239, 146, 153, 0.15);
    cursor: pointer;
    touch-action: manipulation;
    background: linear-gradient(rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
    box-shadow: rgba(227, 67, 78, 0.12) 0px 4px 30px, rgba(0, 0, 0, 0.08) 0px 2px 8px;
    padding: 0.625rem 0.9375rem;
    border-radius: 12.5px;
  }

  .menu-inner {
    position: fixed;
    top: -100vh;
    width: 100%;
    height: 100vh;
    background: #f6f6f6;
    z-index: 999;
    padding: 150px 34px 40px;
    transition: all 0.4s;
    overflow-x: auto;
    left: 0;
  }

  .menu-inner.active {
    top: 0;
    transition: all 0.4s;
  }

  .has-child i {
    display: unset;
  }

  .menu-inner .has-child>a::after {
    display: none !important;
  }

  .header-btm .has-child ul {
    position: relative;
    top: auto;
    left: 0;
    width: auto;
    padding: 0;
    background: transparent;
    z-index: 9;
    border-radius: 10px;
    box-shadow: unset !important;
    padding-left: 15px;
  }

  .trigger-submenu {
    transition: all 0.3s ease;
  }

  .trigger-submenu.rotate {
    transform: rotate(180deg);
  }

  a.trigger-submenu {
    display: block !important;
    position: absolute !important;
    right: 0;
    top: 2px;
    height: 20px;
    width: 20px;
    text-align: center;
    line-height: 20px !important;
    padding: 0 !important;
    border: 0 !important;
    color: #E73331 !important;
  }

  .trigger-submenu::before,
  .trigger-submenu::after {
    display: none !important;
  }

  .menu-toggle.active {
    position: fixed;
  }

  .menu-toggle span:nth-child(1) {
    display: block;
    height: 0px;
    border-top: 1px solid rgba(227, 67, 78, 0.8);
    pointer-events: none;
    box-sizing: border-box;
    transform: none;
    transform-origin: center center 0px;
    width: 2rem;
    background: #fff;
  }

  .menu-toggle span:nth-child(2) {
    display: block;
    height: 0px;
    border-top: 1px solid rgba(227, 67, 78, 0.8);
    pointer-events: none;
    box-sizing: border-box;
    transform: none;
    transform-origin: center center 0px;
    width: 1.25rem;
    margin-top: 5px;
    float: right;
  }

  .header-inner {
    padding: 0;
    background: transparent;
    box-shadow: unset;
    border: 0;
  }

  .logo {
    display: block;
    max-width: 90px;
    z-index: 99999;
  }

  .menu-inner ul {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 50px;
  }

  .menu-inner ul li {
    margin: 0;
    display: block;
    width: 100%;
    max-width: 180px;
  }

  .menu-inner ul li a {
    font-size: 1.125rem;
    font-weight: 300;
    letter-spacing: 0.03em;
    color: #212121;
  }

  .menu-inner .has-child .sub-menu.submenu-active {
    position: relative;
    display: block;
    top: auto;
    left: auto;
    margin: 0;
    background: transparent;
    box-shadow: unset;
    border: 0;
    margin-top: 20px;
  }

  .menu-inner .has-child .sub-menu li {
    margin: 8px 0;
  }

  .menu-inner .has-child .sub-menu li a {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.01em;
    padding: 12px 15px;
  }

  .menu-inner .has-child ul::before {
    display: none;
  }

  .menu-toggle.active {
    box-shadow: unset;
    background: transparent;
    border: 0;
  }

  .menu-toggle.active span:nth-child(1) {
    width: 2rem;
    transform: rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    width: 2rem;
    transform: rotate(-45deg);
    margin: 0;
  }

  .menu-inner {
    overflow: hidden;
  }

  .menu-inner::before {
    content: '';
    background: rgb(239, 146, 153);
    opacity: 0.08;
    transform: none;
    width: 480px;
    height: 480px;
    position: absolute;
    top: -25%;
    right: -40%;
    border-radius: 50%;
  }

  .menu-inner::after {
    content: '';
    background: rgb(239, 146, 153);
    opacity: 0.08;
    transform: none;
    width: 450px;
    height: 480px;
    position: absolute;
    bottom: -45%;
    left: -65%;
    border-radius: 50%;
  }

  .fndt-block {
    padding: 35px 20px;
  }

  .fndt-desc h4 {
    font-size: 30px;
    line-height: 36px;
    margin: 0 0 15px;
  }

  .fndt-block:nth-child(2) {
    margin-left: 60px;
  }

  .fndt-block:nth-child(3) {
    margin-left: 80px;
  }

  .eco-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .eco-block {
    max-width: 160px;
  }

  .lyvv-value ul li {
    width: 100%;
  }

  .feature-block {
    margin: 0 0 40px;
    flex-direction: column;
  }

  .feature-list .feature-block:nth-child(2n+2) .feature-desc {
    order: unset;
  }

  .partner-inner {
    flex-direction: column;
    text-align: center;
  }

  .partner-inner h6 {
    padding: 0;
  }

  .partner-inner h6::before {
    display: none;
  }

  .event-inner {
    flex-direction: column;
  }

  .event-desc-tab {
    max-width: unset;
    margin-top: 45px;
  }

  .event-desc-tab h1 {
    font-size: 40px;
  }

  .event-info {
    padding: 15px;
  }

  .preview-content-slider {
    margin-left: 0;
  }

  .app-about-img {
    margin-top: auto;
  }

}


@media only screen and (max-width: 767.98px) {
  .container {
    width: 100%;
  }

  .lyvvin-inner {
    flex-direction: column;
    text-align: center;
    gap: 35px !important;
  }

  .lyvvin-about {
    flex-direction: column;
  }

  .lyvvin-inner {
    flex-direction: column;
    text-align: center;
    gap: 35px !important;
    padding: 20px 15px;
  }

  .lyvvin-inner .bar {
    display: none;
  }

  .discover-img {
    gap: 10px;
  }

  .dig-1,
  .dig-2 {
    width: calc(50% - 5px);
    height: 160px !important;
  }

  .dig-3 {
    width: 100%;
    height: 220px !important;
  }

  .discover-content h3,
  .business-desc h3,
  section h3 {
    font-weight: 200;
    font-size: 30px;
    line-height: 30px;
    margin: 0 0 20px;
  }

  .business-desc,
  .preview-content-slider {
    width: 100%;
  }

  .footer-top {
    flex-wrap: wrap;
    gap: 30px;
  }

  .subs-form-inner input {
    width: 100%;
  }

  .subs-form {
    width: 100%;
  }

  .analytics-tab {
    padding: 15px;
  }

  .report-sec {
    flex-wrap: wrap;
  }

  .report-card {
    width: calc(50% - 8px);
  }

  .growth-reviews {
    flex-direction: column;
  }

  /*.header-main{padding: 15px 0;  box-shadow: 0px 4px 30px 0px #E3434E1F; }
  background: rgba(255, 255, 255, 0.9);*/
  .header-main {
    padding: 15px 0;
  }

  .header-main.scrolled {
    padding: 15px 0;
  }

  .menu-toggle {
    right: 15px;
    top: 20px;
  }

  .menu-inner {
    padding: 100px 15px 30px;
  }

  .home-slider .slick-dots {
    right: 15px;
    gap: 10px;
  }

  .home-slider .slick-dots li button {
    height: 30px;
  }

  .home-slider .slick-dots li.slick-active button {
    height: 50px;
  }

  .preview-sec {
    padding: 40px 0;
  }

  .spacer {
    padding: 20px 0;
  }

  .spacer span {
    width: 70%;
  }

  .preview-sec {
    background-size: cover !important;
  }

  .ck-box {
    padding: 25px 15px;
  }

  .fndt-block {
    padding: 35px 20px;
    flex-direction: column;
    align-items: flex-start !important;
  }

  .fnd-count span:nth-child(1) {
    font-size: 40px;
    line-height: 40px;
    margin-top: -20px;
  }

  .fnd-count span:nth-child(2) {
    font-size: 80px;
    line-height: 80px;
  }

  .fndt-block:nth-child(2),
  .fndt-block:nth-child(3) {
    margin-left: 0;
  }

  .values-block span:nth-child(2) {
    font-size: 80px;
  }

  section {
    padding: 40px 0 0px;
  }

  .ct-block {
    height: auto;
  }

  .ct-form {
    padding: 25px 15px;
  }

  .footer-top>div {
    width: 150px;
  }

  .footer-top .breakul {
    width: 100%;
  }

  .inner-banner.event-inner-banner {
    height: 260px;
  }

  .content-area h1,
  .content-area h2,
  .content-area h3,
  .content-area h4,
  .content-area h5,
  .content-area h6 {
    margin: .4em 0;
    line-height: 1.4;
  }

  .content-area h1 {
    font-size: 2.5em;
  }

  .content-area h2 {
    font-size: 1.6em;
  }

  .content-area h3 {
    font-size: 1.2em;
  }

  .content-area h4 {
    font-size: 1em;
  }

  .content-area h5 {
    font-size: 0.8em;
  }

  .content-area h6 {
    font-size: 0.6em;
  }

  .wrapper-heading h1 {
    font-size: 2.4rem;
    line-height: 110%;
  }

  .wrapper-heading h1 br {
    display: unset;
  }

  .footer-main {
    padding-top: 40px;
  }

  .inner-banner h1 {
    font-size: 2.2rem;
  } 
  .lh36{
    line-height: 36px !important;
  }

  .top-text h6 {
    font-size: 16px;
  }

  .inner-banner {
    height: 415px;
  }

  section .top-text {
    margin: 0 0 0 !important;
  }

  .item.current {
    color: #E73331;
  }

  .vanish {
    display: none;
  }

  .mobshow {
    display: block;
  }

  .breakul ul {
    display: flex
  }

  .breakul ul li {
    width: 50%;
  }

}

@media only screen and (max-width: 640.98px) {
  .submit-btn {
    padding: 0 12px;
    font-size: 12px;
  }

  .subs-form-inner {
    gap: 10px !important;
  }

  .footer-block.no-heading h3 {
    display: block;
  }

  .ct-form.get_list_bottom {
    padding: 20px 20px 30px 20px;
  }

  .ct-form.contact_box {
    padding: 20px 20px 25px 20px;
  }

  .slick-arrow {
    left: 0px
  }

  ;

  .slick-next.slick-arrow {
    right: 15px;
  }

  .discover-sec {
    padding: 0px 0;
  }

  .start-lyvvin {
    padding: 40px 0;
  }
  
  .ne-desc h4 {
  padding-bottom:20px;
}

}