/*
  Brand: Havoc Stylesheet
*/

@font-face {
  font-family: 'DINPro';
  src: url('../fonts/havoc/DINPro/DINPro-Bold.eot');
  src: url('../fonts/havoc/DINPro/DINPro-Bold.eot?#iefix') format('embedded-opentype'),
  url('../fonts/havoc/DINPro/DINPro-Bold.woff2') format('woff2'),
  url('../fonts/havoc/DINPro/DINPro-Bold.woff') format('woff'),
  url('../fonts/havoc/DINPro/DINPro-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DINPro';
  src: url('../fonts/havoc/DINPro/DINPro-Regular.eot');
  src: url('../fonts/havoc/DINPro/DINPro-Regular.eot?#iefix') format('embedded-opentype'),
  url('../fonts/havoc/DINPro/DINPro-Regular.woff2') format('woff2'),
  url('../fonts/havoc/DINPro/DINPro-Regular.woff') format('woff'),
  url('../fonts/havoc/DINPro/DINPro-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DINPro';
  src: url('../fonts/havoc/DINPro/DINPro-Medium.eot');
  src: url('../fonts/havoc/DINPro/DINPro-Medium.eot?#iefix') format('embedded-opentype'),
  url('../fonts/havoc/DINPro/DINPro-Medium.woff2') format('woff2'),
  url('../fonts/havoc/DINPro/DINPro-Medium.woff') format('woff'),
  url('../fonts/havoc/DINPro/DINPro-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Havoc Sans';
  src: url('../fonts/havoc/HavocSans/HavocSansRegular.eot');
  src: url('../fonts/havoc/HavocSans/HavocSansRegular.eot?#iefix') format('embedded-opentype'),
  url('../fonts/havoc/HavocSans/HavocSansRegular.woff2') format('woff2'),
  url('../fonts/havoc/HavocSans/HavocSansRegular.woff') format('woff'),
  url('../fonts/havoc/HavocSans/HavocSansRegular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body{
  background-color: #000000;
}


/*=== HAVOC NAVIGATION===*/
#havoc-header{
  position: sticky;
  top: 0;
  z-index: 99;
  display: block;
  padding: 0;
}

#havoc-navigation {
  background-color: #82E155;
}

.havoc-desktop-nav {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-gap: 10px;
  padding: 10px 40px;
}

#havoc-nav-desktop-logo {
  max-width: 65px;
  margin: 0 auto;
}

#havoc-nav-desktop-logo img{
  display: block;
  width: 100%;
}

.havoc-desktop-nav-links {
  display: flex;
  align-items: center;
}


.havoc-desktop-nav-links li a {
  color: #000000;
  font-family: "Havoc Sans", Helvetica, Arial, sans-serif;
  font-size: 25px;
  padding: 0 30px 0 0;
}

.havoc-desktop-nav-links li a:hover, .havoc-desktop-nav-links li a:focus{
  color: #000000;
}


.havoc-social-links-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.havoc-nav-social-item {
  display: flex;
  color: #000000;
  font-family: "Havoc Sans", Helvetica, Arial, sans-serif;
  font-size: 25px;
}

.havoc-nav-social-item sup {
  font-size: 12px !important;
  top: 0;
  vertical-align: top;
}

.havoc-nav-social-item img{
  display: block;
  width: 100%;
  max-width: 20px;
  margin-left: 5px;
}

.havoc-social-links-nav a:hover, .havoc-social-links-nav a:focus{
  color: #000000;
}

/*MOBILE NAV BAR*/

.havoc-mobile-nav {
  display: none;
}

#havoc-nav-mobile-logo{
  max-width: 65px;
}
.havoc-mobile-nav-btn{
  background: transparent;
  padding: 5px 0 0 0;
  border: none;
}

.mobile-btn-navbar__top-bar, .mobile-btn-navbar__middle-bar, .mobile-btn-navbar__bottom-bar {
  display: block;
  width: 35px;
  height: 2px;
  background-color: #000000;
  margin-bottom: 7px;
  transition: all 0.2s;
}

.havoc-mobile-nav-btn[aria-expanded="true"] .mobile-btn-navbar__top-bar  {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin: 0;
  /*position: relative;*/
  /*top: 9px;*/
}

.havoc-mobile-nav-btn[aria-expanded="true"] .mobile-btn-navbar__middle-bar {
  display: none;
}

.havoc-mobile-nav-btn[aria-expanded="true"] .mobile-btn-navbar__bottom-bar {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin: 0;
  position: relative;
  top: -2px;
}

.havoc-mobile-nav-top{
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
}

#havoc-nav-mobile-logo img{
  display: block;
  width: 100%;
}

.havoc-nav-links-mobile {
  border-top: solid 1px #000000;
}

.havoc-nav-links-mobile li {
  border-bottom: solid 1px #000000;
  padding: 15px;
}


.havoc-nav-links-mobile li a {
  color: #000000;
  font-family: "Havoc Sans", Helvetica, Arial, sans-serif;
  font-size: 26px;
}

.havoc-nav-links-mobile li a sup {
  font-size: 12px !important;
  top: 0;
  vertical-align: top;
}

.havoc-nav-social-item-mobile {
  display: flex;
}

.havoc-nav-social-item-mobile img {
  display: block;
  width: 100%;
  max-width: 24px;
  margin-left: 6px;
}

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

  .havoc-desktop-nav{
    display: none;
  }

  .havoc-mobile-nav {
    display: block;
  }

}


/* Marquee styles */

.marquee.havoc-marquee-header {
  background-color: #000000;
  padding-top: 15px;
  padding-bottom: 12px;
  /*position: sticky;*/
  /*top: 0;*/
  /*z-index: 99;*/
  box-shadow: rgba(0,0,0,0.15) 0 15px 25px, rgba(0,0,0,0.05) 0 5px 10px;
}

.marquee {
  --gap: 3.2rem;
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
}

.marquee__content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll 100s linear infinite;
}

.marquee__content li {
  /*font-size: 35px; */
  /* color: #000000; */
  /* font-family: "Havoc Sans", Helvetica, Arial, sans-serif; */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.havoc-logo-marquee {
  max-width: 65px;
  display: block;
}

.marquee-image {
  display: block;
  /* max-width: 147px; */
}


@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}


/*EXPERIENCE HAVOC*/

.experience-havoc{
  margin-bottom: 40px;
}

.havoc-countdown-header-img{
  display: block;
  max-width: 900px;
  margin: auto;
  width: 100%;
}

.havoc-countdown-header-img-mobile{
  display: none;
}

.experience-havoc h2 {
  color: #FFFFFF;
  text-align: center;
  font-family: "Havoc Sans", Helvetica, Arial, sans-serif;
  margin-top: 80px;
  line-height: normal;
}

.experience-havoc h2 sup {
  font-size: 15px !important;
  top: 0;
  vertical-align: top;
}

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

  .havoc-countdown-header-img{
    display: none;
  }

  .havoc-countdown-header-img-mobile{
    display: block;
    margin: auto;
    width: 100%;
    max-width: 270px;
  }


  /*.experience-havoc h2 {*/
  /*  margin-top: 70px;*/
  /*}*/

  /*.experience-havoc span {*/
  /*  display: block;*/
  /*}*/

  /*.experience-havoc h2 sup {*/
  /*  font-size: 10px !important;*/
  /*  vertical-align: top;*/
  /*}*/

}

/* COUNDTDOWN HAVOC CSS*/
.havoc-countdown-con {
  padding: 8% 15px 7% 15px;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  max-width: 1200px;
  margin: auto;
}

#timer-havoc {
  text-align: center;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-gap: 70px 20px;
  align-items: center;
}

.timer-number {
  font-family: "Havoc Sans", Helvetica, Arial, sans-serif;
  letter-spacing: 5px;
  font-weight: normal;
  color: #FFFFFF;
  font-size: 350px;
  line-height: 1;
  position: relative;
}


.timer-text {
  color: #82E155;
  font-family: "Havoc Sans", Helvetica, Arial, sans-serif;
  font-size: 50px;
  display: block;
  position: relative;
  margin-top: -15px;
}

.timer-counter-seconds{
  display: none;
}

.glitch-countdown:first-of-type{
  color: #FFFFFF !important;
  text-shadow: none !important;
}

.glitch-countdown:nth-child(even) {
  text-shadow: 5px 5px #82E155, -8px -8px #82E155;
}

.glitch-countdown:nth-child(odd) {
  text-shadow: 2px 2px #FB20F9, 8px 8px #FB20F9;
}

@media only screen and (max-width: 1920px) {
  .havoc-countdown-con {
    padding: 65px 15px 15px 15px;
    min-height: 670px;
  }
}

@media only screen and (max-width: 1700px) {
  .havoc-countdown-con {
    min-height: 600px;
  }
}

@media only screen and (max-width: 900px) {
  .timer-number {
    font-size: 250px;
  }
}

@media only screen and (max-width: 750px) {
  .havoc-countdown-con {
    padding: 20px 15px;
  }

  #timer-havoc{
    grid-template-columns: repeat(1,1fr);
    grid-gap: 20px 20px;
  }

  .timer-number {
    font-size: 168px;
  }

  .timer-text {
    font-size: 30px;
  }

}

@media only screen and (max-width: 500px) {
  .experience-havoc{
    margin-bottom: 15px;
  }

  .timer-number {
    font-size: 150px;
  }

  .havoc-countdown-header-img-mobile{
    max-width: 220px;
  }

}

@media only screen  and (max-width: 500px) and (max-height: 750px) {
  .experience-havoc{
    margin-bottom: 15px;
  }

  .havoc-countdown-header-img-mobile{
    max-width: 220px;
  }
  .havoc-countdown-con {
    padding: 20px 15px;
  }

  .timer-number {
    font-size: 110px;
  }
}



/*==== HAVOC FOOTER ======*/
#havoc-footer {
  background-color: #000000;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
}

.havoc-footer-menu {
  text-align: center;
  display: flex;
  /*justify-content: space-evenly;*/
  position: relative;
}

.havoc-footer-logo {
  max-width: 100px;
  margin-left: 3%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.havoc-footer-logo img {
  display: block;
  width: 100%;
}

.havoc-footer-con{
  margin: 0 auto;
}

.footer-menu-links{
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100%;
}

.footer-menu-links li {
  position: relative;
  padding: 10px 15px;
}

.footer-menu-links li a {
  color: #FFFFFF !important;
  font-family: "Havoc Sans", Helvetica, Arial, sans-serif;
  font-size: 35px;
  position: relative;
}

html:lang(fr) .footer-menu-links li a {
  font-size: 26px;
}

.havoc-footer-copy-right {
  color: #999999;
  text-transform: uppercase;
  font-family: "DINPro", Helvetica, Arial, sans-serif;
  font-size: 17px;
  text-align: center;
}


.havoc-opens-new-tab {
  position: absolute;
  left: -9000px;
  width: 0;
  overflow: hidden;
}

.footer-menu-links li a:hover .havoc-opens-new-tab, .footer-menu-links li a:focus .havoc-opens-new-tab{
  position:absolute;
  top: 25px;
  left: 0em;
  width: max-content;
  background-color:#ffffdd;
  border: 1px solid #b7b7b7;
  color:#000;
  padding: 5px;
  text-align: center;
  text-transform: none;
  font-size: 12px;
  font-weight: normal;
  font-family: 'Open Sans', Helvetica, sans-serif !important;
}

@media only screen and (max-width: 1310px) {
  html:lang(en) .havoc-footer-logo{
    position: relative;
  }
}

@media only screen and (max-width: 1200px) {
  .havoc-footer-logo {
    margin-left: 0;
  }

  html:lang(fr) .footer-menu-links li a {
    font-size: 22px;
  }
}

@media only screen and (max-width: 1150px) {
  .footer-menu-links li a{
    font-size: 22px;
  }
}

@media only screen and (max-width: 750px) {
  .havoc-footer-logo {
    max-width: 130px;
    margin-bottom: 35px;
  }

  .footer-menu-links li a{
    font-size: 32px;
  }

  html:lang(fr) .footer-menu-links li a {
    font-size: 32px;
  }

  .havoc-footer-menu {
    flex-direction: column;
    align-items: center;
  }

  .footer-menu-links {
    flex-direction: column;
  }
}


/*=== HAVOC TEASER PAGE ==*/

.havoc-video-section {
  width: 100%;
  position: relative;
  height: 89vh;
}

.havoc-video-desktop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.havoc-video-mobile {
  display: none;
  visibility: hidden;
}

@media only screen and (max-width: 1800px) {
  .havoc-video-section {
    height: 86vh;
  }
}

@media only screen and (max-width: 600px) {
  .havoc-video-section {
    height: 86vh;
  }

  .havoc-video-desktop {
    display: none;
    visibility: hidden;
  }

  .havoc-video-mobile {
    visibility: visible;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}



/*=== CHANNEL HAVOC ON TICKTOCK =====*/
.channel-havoc-on-ticktock {
  background-color: #82E155;
  padding: 100px 20px;
  text-align: center;
}

.channel-havoc-on-ticktock h2 {
  color: #000000;
  line-height: normal;
  font-family: "Havoc Sans", Helvetica, Arial, sans-serif;
  font-size: 120px !important;
  margin-bottom: 40px;
}

.channel-havoc-on-ticktock h2 sup {
  font-size: 35px !important;
  top: 0;
  vertical-align: top;
}

.channel-havoc-on-ticktock-img {
  display: block;
  margin: 0 auto 40px auto;
  max-width: 800px;
  width: 100%;
}

.channel-havoc-on-ticktock p {
  color: #000000;
  font-family: "Havoc Sans", Helvetica, Arial, sans-serif;
  font-size: 35px;
  line-height: normal;
  max-width: 800px;
  margin: 0 auto 20px auto;
  letter-spacing: 0.2px;
}

.channel-havoc-on-ticktock p sup {
  font-size: 15px !important;
  top: 0;
  vertical-align: top;
}

.havoc-cta {
  color: #FFFFFF;
  font-family: "Havoc Sans", Helvetica, Arial, sans-serif;
  font-size: 35px;
  display: inline-block;
  background-color: #000000;
  line-height: normal;
  padding: 15px 23px 10px 23px;
  border-radius: 30px;
  letter-spacing: 1px;
}

.havoc-cta:hover {
  color: #FFFFFF;
}

@media only screen and (max-width: 800px) {
  .channel-havoc-on-ticktock{
    padding-bottom: 50px;
  }

  .channel-havoc-on-ticktock h2 {
    font-size: 80px !important;
  }


  .channel-havoc-on-ticktock-img {
    display: block;
    margin: 0 auto 40px auto;
    max-width: 400px;
    width: 100%;
  }

  .channel-havoc-on-ticktock p {
    font-size: 27px;
  }

  .channel-havoc-on-ticktock p sup {
    font-size: 10px !important;
    top: 0;
    vertical-align: top;
  }

  .havoc-cta {
    font-size: 25px;
  }
}


/*==== CRUNCH INTO CHAOES SECTION =====*/
.crunch-into-caos {
  padding: 60px 0 125px 0;
  text-align: center;
  background: rgb(0,0,0);
  background: -moz-linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(130,225,85,1) 61%, rgba(130,225,85,1) 100%);
  background: -webkit-linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(130,225,85,1) 61%, rgba(130,225,85,1) 100%);
  background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(130,225,85,1) 61%, rgba(130,225,85,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#82e155",GradientType=1);
  position: relative;
  overflow: hidden;
}

.crunch-into-chaos-text {
  color: #000000;
  line-height: normal;
  font-family: "Havoc Sans", Helvetica, Arial, sans-serif;
  font-size: 242px !important;
  -webkit-transform: scale(1,1.4);
  -moz-transform: scale(1,1.4);
  -ms-transform: scale(1,1.4);
  -o-transform: scale(1,1.4);
  transform: scale(1,1.4);
  position: relative;
  padding: 0 10px;
}

#crunch-into-chaos-img{
  display: block;
  position: relative;
  margin: auto;
  max-width: 630px;
  width: 100%;
}

.crunch-into-caos sup {
  top: 0;
  vertical-align: top;
  font-size: 40px !important;
}

.product-fiery-lime-img {
  display: block;
  max-width: 900px;
  margin: -170px auto 0 auto;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.product-fiery-lime .havoc-product-details{
  padding: 0 20px;
}

.product-fiery-lime .havoc-product-details .havoc-product-title-colour{
  color: #82E155;
}


@media only screen and (max-width: 800px) {
  .crunch-into-caos {
    padding: 80px 0 50px 0;
  }

  .crunch-into-chaos-text {
    font-size: 130px !important;
  }

  .crunch-into-caos sup {
    font-size: 40px !important;
  }

  #crunch-into-chaos-img{
    max-width: 400px;
  }

  .product-fiery-lime-img {
    margin: -70px auto 0 auto;
  }
}

@media only screen and (max-width: 500px) {
  .crunch-into-caos {
    padding-top: 40px;
  }

  #crunch-into-chaos-img{
    max-width: 270px;
  }
}



/*=== PRODUCTS TITLES AND DESCRIPTIONS ===*/
.havoc-black-bg{
  background-color: #000000;
  padding: 0 20px;
}

.havoc-product-details {
  text-align: center;
}


.havoc-product-title {
  color: #FFFFFF;
  font-family: "Havoc Sans", Helvetica, Arial, sans-serif;
  font-size: 100px;
  line-height: normal;
}

.havoc-product-title-colour{
  color: #FFFFFF;
  font-family: "Havoc Sans", Helvetica, Arial, sans-serif;
  font-size: 155px;
  line-height: normal;
  display: block;
}

p.havoc-product-subtext {
  color: #FFFFFF;
  font-family: "Havoc Sans", Helvetica, Arial, sans-serif;
  font-size: 40px;
  line-height: normal;
  max-width: 500px;
  margin: 30px auto 20px auto;
}

.havoc-product-description {
  color: #FFFFFF;
  font-family: "DINPro", Helvetica, Arial, sans-serif;
  font-size: 22px;
  max-width: 600px;
  margin: auto;
}

.glitch-cta-product-con{
  margin-top: 30px;
}

.havoc-product-cta {
  display: inline-block;
  color: #000000;
  background-color: #FFFFFF;
  width: auto;
  padding: 15px 30px;
  border-radius: 30px;
  font-family: "DINPro", Helvetica, Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 20px;
}

.havoc-product-cta:hover, .havoc-product-cta:focus{
  color: #000000 !important;
}


.glitch-cta-product-con span:first-of-type{
  color: #000000 !important;
}

.glitch-cta-product-con span:nth-child(even) {
  text-shadow: 5px 5px #82E155, -10px -10px #82E155;
}

@media only screen and (max-width: 800px) {
  .havoc-product-title {
    font-size: 70px;
  }

  .havoc-product-title-colour {
    font-size: 100px;
  }

  p.havoc-product-subtext {
    font-size: 30px;
  }

  .havoc-product-description {
    font-size: 18px;
  }

  .havoc-product-cta {
    font-size: 16px;
  }
}

/*==== PRODUCT BULGOGI==*/
.product-bulgogi{
  margin-top: 180px;
  overflow: hidden;
  position: relative;
}

.product-bulgogi-img {
  display: block;
  max-width: 880px;
  width: 100%;
  position: relative;
  margin: 0 auto 100px auto;
  overflow: hidden;
}

.product-bulgogi .havoc-product-details {
  padding: 0 20px;
}

.product-bulgogi .havoc-product-title-colour{
  color: #EA412B;
}

@media only screen and (max-width: 800px) {
  .product-bulgogi{
    margin-top: 70px;
  }
}


/*==== PRODUCT SMOKY NACHO =====*/

.product-smoky-nacho{
  margin-top: 180px;
  position: relative;
  overflow: hidden;
}

.product-smoky-nacho-img {
  display: block;
  max-width: 880px;
  width: 100%;
  position: relative;
  margin: 0 auto 85px auto;
  overflow: hidden;
}

.product-smoky-nacho .havoc-product-details {
  /*min-height: 800px;*/
  /*padding: 0 20px 200px 20px;*/
  /*background: rgb(130,225,85);*/
  /*background: -moz-linear-gradient(0deg, rgba(130,225,85,1) 0%, rgba(0,0,0,1) 70%, rgba(0,0,0,1) 100%);*/
  /*background: -webkit-linear-gradient(0deg, rgba(130,225,85,1) 0%, rgba(0,0,0,1) 70%, rgba(0,0,0,1) 100%);*/
  /*background: linear-gradient(0deg, rgba(130,225,85,1) 0%, rgba(0,0,0,1) 70%, rgba(0,0,0,1) 100%);*/
  /*filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#82e155",endColorstr="#000000",GradientType=1);*/
}

.product-smoky-nacho .havoc-product-title-colour {
  color: #FF7E00;
}

@media only screen and (max-width: 800px) {
  .product-smoky-nacho{
    margin-top: 70px;
  }
}

.glitch-cta-con span:first-of-type{
  color: #FFFFFF !important;
}

.glitch-cta-con span:nth-child(even) {
  text-shadow: 5px 5px #82E155, -10px -10px #82E155;
}

/*.glitch-cta-con a:nth-child(odd) {*/
/*  !*color: #FB20F9;*!*/
/*  text-shadow: 1px 1px #FB20F9, -10px -10px #FB20F9;*/
/*}*/


/*==== PRODUCT INDIAN CHAAT =====*/

.product-indian-chaat{
  margin-top: 180px;
  position: relative;
  overflow: hidden;
}

.product-indian-chaat-img {
  display: block;
  max-width: 880px;
  width: 100%;
  position: relative;
  margin: 0 auto 85px auto;
  overflow: hidden;
}

.product-indian-chaat .havoc-product-details {
  /*min-height: 800px;*/
  padding: 0 20px 200px 20px;
  background: rgb(130,225,85);
  background: -moz-linear-gradient(0deg, rgba(130,225,85,1) 0%, rgba(0,0,0,1) 70%, rgba(0,0,0,1) 100%);
  background: -webkit-linear-gradient(0deg, rgba(130,225,85,1) 0%, rgba(0,0,0,1) 70%, rgba(0,0,0,1) 100%);
  background: linear-gradient(0deg, rgba(130,225,85,1) 0%, rgba(0,0,0,1) 70%, rgba(0,0,0,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#82e155",endColorstr="#000000",GradientType=1);
}

.product-indian-chaat .havoc-product-title-colour {
  color: #FC1CAF;
}

@media only screen and (max-width: 800px) {
  .product-indian-chaat{
    margin-top: 70px;
  }

  .product-indian-chaat .havoc-product-details {
    padding-bottom: 100px;
  }
}

.glitch-cta-con span:first-of-type{
  color: #FFFFFF !important;
}

.glitch-cta-con span:nth-child(even) {
  text-shadow: 5px 5px #82E155, -10px -10px #82E155;
}

.havoc-product-main-desc {
  position: relative;
}

.lto {
  position: absolute;
  top: 0;
  right: 80px;
}

.lto img {
  width: 85px;
}

@media only screen and (max-width: 768px)  {
  .lto {
    right: -18px;
  }

  .lto img {
    width: 50px;
  }
}




