/* ==============================
   Frutiger LT Pro â€“ FULL FAMILY
   ============================== */

@font-face {
  font-family: "Frutiger LT Pro";
  src: url("../fonts/frutiger-lt-pro/FrutigerLTProRoman.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Light */
@font-face {
  font-family: "Frutiger LT Pro";
  src: url("../fonts/frutiger-lt-pro/FrutigerLTProLight.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* Light Italic */
@font-face {
  font-family: "Frutiger LT Pro";
  src: url("../fonts/frutiger-lt-pro/FrutigerLTProLightItalic.otf") format("opentype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

/* Italic */
@font-face {
  font-family: "Frutiger LT Pro";
  src: url("../fonts/frutiger-lt-pro/FrutigerLTProItalic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* Bold */
@font-face {
  font-family: "Frutiger LT Pro";
  src: url("../fonts/frutiger-lt-pro/FrutigerLTProBold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Bold Italic */
@font-face {
  font-family: "Frutiger LT Pro";
  src: url("../fonts/frutiger-lt-pro/FrutigerLTProBoldItalic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* Black */
@font-face {
  font-family: "Frutiger LT Pro";
  src: url("../fonts/frutiger-lt-pro/FrutigerLTProBlack.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Black Italic */
@font-face {
  font-family: "Frutiger LT Pro";
  src: url("../fonts/frutiger-lt-pro/FrutigerLTProBlackItalic.otf") format("opentype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

/* Ultra Black */
@font-face {
  font-family: "Frutiger LT Pro";
  src: url("../fonts/frutiger-lt-pro/FrutigerLTProUltraBlack.otf") format("opentype");
  font-weight: 950;
  font-style: normal;
  font-display: swap;
}

/* Condensed */
@font-face {
  font-family: "Frutiger LT Pro Condensed";
  src: url("../fonts/frutiger-lt-pro/FrutigerLTProCondensed.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Condensed Italic */
@font-face {
  font-family: "Frutiger LT Pro Condensed";
  src: url("../fonts/frutiger-lt-pro/FrutigerLTProCondensedIta.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* Condensed Bold */
@font-face {
  font-family: "Frutiger LT Pro Condensed";
  src: url("../fonts/frutiger-lt-pro/FrutigerLTProBoldCn.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Condensed Bold Italic */
@font-face {
  font-family: "Frutiger LT Pro Condensed";
  src: url("../fonts/frutiger-lt-pro/FrutigerLTProBoldCnIta.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* Extra Black Condensed */
@font-face {
  font-family: "Frutiger LT Pro Condensed";
  src: url("../fonts/frutiger-lt-pro/FrutigerLTProExtraBlackCn.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Extra Black Condensed Italic */
@font-face {
  font-family: "Frutiger LT Pro Condensed";
  src: url("../fonts/frutiger-lt-pro/FrutigerLTProExtraBlkCnIta.otf") format("opentype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

.condensed {
  font-family: "Frutiger LT Pro Condensed", "Frutiger LT Pro", sans-serif;
}

/* ==============================
   Main Heading Typography
   ============================== */

.main-heading {
  font-family: "Frutiger LT Pro Condensed", "Frutiger LT Pro", Arial, sans-serif;
  font-weight: 900;
  /* Black */
  font-style: italic;
  /* Italic */
  font-size: 48px;
  line-height: 1.1;
  /* Auto-like */
  letter-spacing: -0.02em;
  /* -2% */
}

:root {
  --container: 1400px;
  --text: #050505;
  --muted: rgba(11, 18, 32, 0.75);
  --white: #fff;
  --shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
  --radius: 18px;
  --warning-color: #fecf15;
  --blue1: #00b6f0;
  --blue2: #6ed4ff;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  margin: 0;
  font-family: "Frutiger LT Pro", Arial, Helvetica, sans-serif;
  font-weight: 400;
  /* Roman */
  font-style: normal;
  font-size: 16px;
  line-height: 1.25;
  /* Auto */
  letter-spacing: 0;
  color: var(--text);
}

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

a {
  text-decoration: none;
  color: inherit;
}

.sltf-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 50px;
}

/* HEADER */
.site-header {
  background: #fff;
  border-bottom: 5px solid var(--warning-color);
}

.site-header .header-inner {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand img {
  height: 36px;
  width: auto;
}

.nav {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 24px;
}

.nav a {
  font-weight: 600;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.78);
}

.nav a:hover {
  color: #000;
}

/* ==============================
   BUTTONS Typography
   ============================== */
.btn {
  font-family: "Frutiger LT Pro", Arial, Helvetica, sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  line-height: 1;
  border: 1px solid;
}

.btn-dark {
  background: #101828;
  color: #fff;
  border-color: #101828;
  ;
}

.btn-dark:hover {
  background: #fff;
  color: #101828;
  border-color: #fff;
  ;
}

.btn-warning {
  background: var(--warning-color);
  color: #0c0c0c;
  border-color: var(--warning-color);
  ;
}

.btn-warning:hover {
  background: #0c0c0c;
  color: var(--warning-color);
  border-color: 0c0c0c;
}

.btn-light {
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-light:hover {
  background: 111;
  color: rgba(255, 255, 255, 0.7);
  border-color: #111;
}

/* BOTTOM SLIDER */
.banner-slider {
  padding: 18px 0 0px;
  width: 100%;
  max-width: 100%;
}

.banner-slider .swiper {
  width: 100%;
}

.banner-slider .swiper-slide {
  width: 100%;
}

.mini-banner {
  min-height: 118px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: stretch;
  box-shadow: var(--shadow);
  position: relative;
  width: 100%;
}

.mini-banner:before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.22) 62%, rgba(0, 0, 0, 0) 100%); */
  display: none;
}

.mini-banner a {
  display: block;
  width: 100%;
}

.mini-banner-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.mini-banner-left {
  position: relative;
  padding: 18px 18px;
  color: #fff;
  flex: 1;
}

.mini-banner-left h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 900;
}

.mini-banner-left p {
  margin: 0 0 10px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.85);
}

.mini-banner-right {
  position: relative;
  width: 120px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 10px 10px;
}

.mini-banner-right img {
  width: 78px;
  height: auto;
}

.bottom-pagination {
  margin-top: 10px;
  text-align: center;
}

/* FOOTER */
.site-footer {
  background: #fff;
  padding: 25px 0 25px;
  border-top: 3px solid #00AEEF;
  position: relative;
  z-index: 10;
  top: -2px;
}


.footer-disclaimer p {
  font-size: 10px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 10px;
  color: #000;
}

.footer-disclaimer .footer-disclaimer-text {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 400;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Frutiger LT Pro", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  color: #000000;
  text-align: left;
  padding: 0 100px;
}

.footer-inner-top {
  display: block;
  padding: 0 100px 8px
}

.footer-left {
  display: inline-flex;
  gap: 10px;
}

.footer-left a:hover {
  text-decoration: underline;
}

/* SOCIAL LINKS */
ul.sltf-social-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

ul.sltf-social-links li a {
  /* background:#fff; */
  display: block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

ul.sltf-social-links li a:hover {
  opacity: .7;
}

ul.sltf-social-links .sltf-social-link-image {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* VIDEO MODAL */
.video-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.video-modal.is-open {
  display: block;
}

.video-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.video-modal-dialog {
  position: relative;
  width: min(900px, calc(100% - 28px));
  margin: 6vh auto 0;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.video-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 0;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  cursor: pointer;
}

.video-modal-frame {
  width: 100%;
  aspect-ratio: 16/9;
}

.video-modal-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/**********************************
* HOME HERO SECTION STARTS
**********************************/
.hero {
  /* padding: 34px 0 26px; */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.hero .hero-left {
  width: 35%;
  position: relative;
}

.hero .hero-right {
  width: 65%;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
}

.hero .hero-title {
  margin: 0 0 14px;
  font-size: 38px;
  color: #fff;
  position: absolute;
  top: -30%;
  left: -16%;
  width: 680px;
  text-align: center;
}

.hero .hero-tag {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  margin: 30px auto 50px;
}

.hero .hero-mascot {
  width: 240px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* HERO CARDS */
.hero .hero-bottom {
  display: flex;
  align-items: flex-end;
  gap: 20px;
}

.hero .hero-cards {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 37px;
}

.hero .hero-card {
  display: inline-flex;
  flex-wrap: wrap;
  overflow: hidden;
  width: calc((100% - 74px) / 3);
  margin-bottom: 50px;
}

.hero .hero-card .hero-card-media {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 235 / 260;
  position: relative;
}

.hero .hero-card .hero-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  border: 1px solid #fff;
  position: absolute;
  top: 0;
  left: 0;
}

.hero .hero-card .hero-card-body {
  padding: 15px;
  display: block;
  text-align: center;
  width: 100%;
}

.hero .hero-card .hero-card-body .hero-card-title {
  font-family: "Frutiger LT Pro Condensed", "Frutiger LT Pro", Arial, sans-serif;
  font-style: italic;
  font-size: 22px;
  letter-spacing: -0.02em;
  text-transform: none;
  line-height: 1.2;
  margin-bottom: 10px;
}

.hero .hero-card .hero-card-body p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.35;
}

/******* HOME HERO SECTION ENDs *******/

/**********************************
* HOME VIDEO SECTION STARTS
**********************************/

.video-section {
  margin-top: 18px;
  padding: 44px 0;
  background-size: cover;
  background-position: center;
  position: relative;
}

.video-section .video-section-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.video-section .video-section-content {
  width: 60%;
  color: #fff;
}

.video-section-content h2 {
  /* margin: 0 0 8px;
  font-size: 22px;
  font-weight: 900; */
  color: #000;
}

.video-section-content .video-section-content-description {
  margin-top: 40px;
  max-width: 90%;
}

.video-section-content .video-section-content-description p {
  color: var(--text);
  font-size: 16px;
}

.video-section .video-section-card {
  position: relative;
  width: 40%;
  border: 0;
  padding: 0;
  cursor: pointer;
  border-radius: 40px;
  overflow: hidden;
}

.video-section .video-section-card .video-card-thumbnail {
  width: 100%;
  max-width: 526px;
  height: 275px;
  object-fit: cover;
}

.video-section .video-section-card .play-badge {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: rgba(255, 255, 255, 0.92); */
  color: #000;
  font-weight: 900;
  left: calc(50% - 50px);
  top: calc(50% - 50px);
}

.sltf-mobile-only,
.mobileSwiperOnly,
.hero-mobile-only {
  display: none;
}

/******* HOME PAGE VIDEO SECTION ENDS *******/

/*******************************************
CHECK URL PAGE STYLE
*******************************************/
.check-url-section .sltf-container.hero-bottom {
  align-items: flex-start;
}

.check-url-section-form .sltf-container.hero-bottom {
  max-width: 1250px;
}

.check-url-section.hero .hero-left,
.check-url-section.hero .hero-right {
  width: 50%;
  position: relative;

}

.check-url-section-result.hero .hero-right {
  align-self: flex-start;
}

.check-url-section .check-url-section-title {
  color: #ffffff;
  text-align: center;
  margin: 30px auto;
}

.check-url-section.hero .hero-left .hero-feature-wrapper {
  margin-top: 50px;
  max-width: 500px;
}

.check-url-section.hero .hero-left .hero-feature-wrapper img {
  max-height: 550px;
}

.url-lottie svg {
  display: block;
  max-height: 550px !important;
}

.check-url-section.hero .hero-left {
  align-self: flex-end;
}

.check-url-section form.check-url-form {
  display: block;
  width: 100%;
  text-align: center;
}

.check-url-section .check-url-form-field {
  position: relative;
}

.check-url-section .check-url-form-field.magnifier:before {
  position: absolute;
  content: " ";
  height: 30px;
  width: 30px;
  background: url(../images/magnifier.png) no-repeat;
  top: 10px;
  left: 20px;
}

#checkurl::placeholder {
  color: #000;
  opacity: 1;
}

/* Firefox */
#checkurl::-moz-placeholder {
  color: #000;
  opacity: 1;
}

/* IE / Edge legacy */
#checkurl:-ms-input-placeholder {
  color: #000;
}


.check-url-section form.check-url-form .check-url-form-field #checkurl {
  width: 100%;
  padding: 10px 25px 10px 45px;
  background-color: #E8F0FD;
  border: none;
  border-radius: 45px;
  font-family: "Frutiger LT Pro", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0;
  color: #000;
  text-align: center;
  margin-bottom: 25px;
  outline: none;
}

.check-url-section .hero-mascot {
  max-width: 200px;
  width: 100%;
}

.check-url-section form.check-url-form .check-url-form-field button[type="submit"] {
  background: #fecf15;
  font-family: "Frutiger LT Pro", Arial, Helvetica, sans-serif;
  font-weight: 600;
  /* Semi Bold */
  font-style: normal;
  font-size: 20px;
  line-height: 1.4;
  /* Auto */
  letter-spacing: 0;
  color: #010101;
  text-align: center;
  padding: 10px 20px;
  border-radius: 100px;
  border: none;
  position: relative;
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 auto 20px;
  cursor: pointer;
}

.check-url-section form.check-url-form .check-url-form-field button[type="submit"] .submit-btn-icon {
  display: inline-block;
  height: 20px;
  width: 20px;
  object-fit: cover;
  object-position: center;
}

.check-url-section form.check-url-form .check-url-form-field .check-url-form-notice-text {
  font-family: "Frutiger LT Pro", Arial, Helvetica, sans-serif;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: center;
  cursor: pointer;
  color: #fff;
  font-size: 9px;
  font-weight: normal;
  transition: all .3s ease;
  z-index: 10;
  display: inline-flex;
}



.check-url-section form.check-url-form .check-url-form-field .check-url-form-notice-text strong {
  font-size: 11px;
}

.check-url-form-notice-text-inner {
  padding-top: 20px;
}

.check-url-form-notice-text:hover .check-url-form-notice-text-inner {
  display: flex;
}

.check-url-form-notice-text .disclaimer {
  background: -webkit-gradient(linear, left top, left bottom, from(#F3F3F3), color-stop(69.97%, #DEF3FB), to(#D5F4FF));
  background: -o-linear-gradient(top, #F3F3F3 0%, #DEF3FB 69.97%, #D5F4FF 100%);
  background: linear-gradient(180deg, #F3F3F3 0%, #DEF3FB 69.97%, #D5F4FF 100%);
  visibility: hidden;
  opacity: 0;
  border-radius: 20px;
  max-width: 600px;
  margin: 0 auto 50px;
  padding: 15px 20px;
  position: absolute;
  width: 100%;
  color: #252525;
  left: 0;
  transition: all .3s ease;

}

.check-url-form-notice-text:hover .disclaimer {
  visibility: visible;
  opacity: 1;
}

.check-url-section-result .sltf-container.hero-bottom {
  align-items: center;
}

.check-url-section .check-url-section-result-notice {
  margin-top: 20px;
}

.check-url-section .check-url-section-result-notice a {
  font-weight: 900;
  color: #fff;
  text-decoration: underline;
}

.check-url-section-result-card {
  border: 5px solid #1bff23;
  border-radius: 35px;
  overflow: hidden;
  background: rgb(0 0 0 / 40%);
  width: 100%;
  max-width: 600px;
  margin: 40px 0;
}

.check-url-section-result-card .check-url-section-result-card-header {
  background: rgb(0 0 0 / 40%);
  text-align: center;
  padding: 15px 15px;
  font-family: "Frutiger LT Pro", Arial, Helvetica, sans-serif;
  font-weight: 800;
  /* 55 Roman */
  font-style: normal;
  font-size: 24px;
  letter-spacing: 0;
  color: #ffffff;
  min-height: 80px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

#check-url-section-result-1 .check-url-section-result-card .check-url-section-result-card-header {
  font-weight: normal;
}

.check-url-section-result-card .check-url-section-result-card-header p {
  font-weight: 300;
  font-size: 22px;
}

.check-url-section-result-card .check-url-section-result-card-body {
  padding: 30px;
  text-align: center;
}

.check-url-section-result-card .check-url-section-result-card-body-title {
  font-family: "Frutiger LT Pro", Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0;
  color: #fecf15;
  margin-bottom: 5px;
}

.check-url-section-result-card .check-url-section-result-card-body-subtitle {
  font-size: 22px;
  font-family: "Frutiger LT Pro", Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #fff;
  max-width: 70%;
  margin: 0 auto;
}

.check-url-section-result-card .check-url-section-result-card-body-actions {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin: 30px auto 0;
  width: 80%;
}

.check-url-section-result-card .check-url-section-result-card-body-actions .check-url-section-result-card-body-action-btn {
  background: #fecf15;
  font-weight: 600;
  font-style: normal;
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: 0;
  color: #010101;
  text-align: center;
  padding: 6px 20px;
  border-radius: 100px;
  border: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  margin: 0 auto 20px;
}

.check-url-section-result.hero .sltf-container.hero-bottom {
  align-items: flex-end;
}

#check-url-section-result-2 .check-url-section-result-card-header {
  background: hsl(48deg 85.59% 43.53% / 76%);
}

#check-url-section-result-2 .check-url-section-result-card {
  border-color: #ffcc00;
}

#check-url-section-result-3 .check-url-section-result-card-header {
  background: rgb(255 0 0 / 50%);
}

#check-url-section-result-3 .check-url-section-result-card {
  border-color: #ff5b2a;
}

/* ===================================
      Get Aware page CSS Start 
======================================*/
/* Video Card */
.video-placeholder {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 12px;
}

.video-placeholder img {
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover;
}

/* Play Icon */
.play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-icon::before {
  content: '';
  width: 64px;
  height: 64px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  position: relative;
}

.play-icon::after {
  content: '';
  position: absolute;
  border-left: 18px solid white;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 5px;
}

/* Modal */
.sachetvideo-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  /* vertical */
  justify-content: center;
  /* horizontal */

  background: rgba(0, 0, 0, 0.75);
}

.sachetvideo-modal.active {
  display: flex;
}

.sachetvideo-modal-content {
  position: relative;
  max-width: 900px;
  width: auto;
  background: #000;
  border-radius: 12px;
  /* overflow: hidden; */
  margin: 0;
  border: 5px solid #FECF15;
}

.sachetvideo-modal-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.75); */
}

.sachetvideo-modal-body iframe,
.sachetvideo-modal-body video {
  width: 100%;
  height: 500px;
}

.sachetvideo-close {
  position: absolute;
  top: -16px;
  right: -16px;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  z-index: 2;
}

#GetAwareSection .hero-left .hero-feature-wrapper img {
  max-height: 750px;
}

/*====================================
    Get Aware page CSS End Start 
 =====================================*/

/* Default: Desktop */
.mobile-only,.tablet-only {
  display: none !important;
}

.desktop-only {
  display: block !important;
}

.tnc .main-heading {
  margin-top: 0;
  display: block;
  text-align: left;
  width: 100%;
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 30px;
}

.tnc.hero {
  background: #00aef0 !important;
}

.tnc-page ul,
.tnc-page ol {
  margin-left: 20px;
}

.tnc-page {
  color: #fff;
  font-size: 14px;
  line-height: 1.35;
  font-weight: normal;
  padding: 60px 0;
}

.tnc-page li {
  margin-bottom: 10px;
}

.tnc-page h2.subtitle {
  margin-bottom: 20px;
}

.tnc-page h2,
.tnc-page h3 {
  margin-bottom: 10px;
  margin-top: 25px;
}

.tnc.hero .hero-right {
  width: 100%;
}

/*Get Aware Page*/
#GetAwareSection .sltf-container {
  max-width: var(--container);
}

#GetAwareSection .get-aware-content h2 {
  margin: 0;
  text-align: center;
  color: #fecf15;
  font-size: 34px;
  font-weight: 800;
  font-style: normal;
  letter-spacing: -1px;
  font-family: "Frutiger LT Pro", Arial, sans-serif;
}

#GetAwareSection .get-aware-content p {
  font-size: 36px;
}

#GetAwareSection .v-cards {
  display: flex;
  gap: 60px 51px;
  margin-top: 30px;
  flex-wrap: wrap;
  height: 800px;
  overflow-y: scroll;
}

#GetAwareSection .v-card {
  max-width: calc(33.33% - 34px);
  width: 100%;
  margin-bottom: 20px;
}

#GetAwareSection .video-placeholder {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 12px;
  height: 400px;
  background: #747474;
  margin-bottom: 0;
}

#GetAwareSection .video-placeholder::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 12px;
  background: #00000073;
}

#GetAwareSection .video-placeholder img {
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover;
}

#GetAwareSection .play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#GetAwareSection .play-icon svg {
  max-width: 64px;
}

#GetAwareSection .play-icon::before {
  display: none;
}

#GetAwareSection .play-icon::after {
  display: none;
}

#GetAwareSection .v-card h3 {
  font-size: 14px;
  font-weight: 700;
  font-style: italic;
  margin-top: 12px;
}

#GetAwareSection .sltf-container.hero-bottom {
  align-items: flex-end;
  gap: 60px;
}

#GetAwareSection .hero-left {
  width: 35%;
  display: flex;
  align-items: flex-end;
}

#GetAwareSection .get-aware-content {
  margin: 30px 0;
}

#GetAwareSection .hero-left .hero-feature-wrapper {
  position: relative;
  z-index: 9;
}

#GetAwareSection .hero-right {
  width: 65%;
  display: flex;
  align-items: flex-end;
  align-self: flex-start;
}

#GetAwareSection .v-cards {
  padding-right: 20px;
  /* space for floating scrollbar */
  box-sizing: content-box;
  overflow-y: auto;
  scrollbar-width: thin;
  /* Firefox */
  scrollbar-color: #FECF15 transparent;
  min-height: 350px;
}

/* Chrome / Edge / Safari */
#GetAwareSection .v-cards::-webkit-scrollbar {
  width: 14px;
  /* outer area */
}

#GetAwareSection .v-cards::-webkit-scrollbar-track {
  background: transparent;
  /*  no visible solid track */
}

#GetAwareSection .v-cards::-webkit-scrollbar-thumb {
  background-color: #FECF15;
  border-radius: 999px;
  min-height: 120px;

  /*  THIS creates floating effect */
  border: 4px solid transparent;
  background-clip: padding-box;
}

#GetAwareSection .v-cards::-webkit-scrollbar-thumb:hover {
  background-color: #e6bb10;
}


/*Quiz Page */
.sltf-quiz-banner-section,
.sltf-quize-themes {
  width: 100%;
  color: #fff;
}

.sltf-quize-themes {
  padding: 120px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: background-image 0.3s ease;
}

.sltf-quiz-banner-section img {
  width: 100%;
}

.sltf-quiz-banner-section .sltf-quiz-slide {
  padding: 120px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: background-image 0.3s ease;
}

.sltf-quiz-banner-section .sltf-quiz-slide-left {
  max-width: 35%;
}

.sltf-quiz-banner-section .sltf-quiz-slide h3 {
  font-family: 'Frutiger LT Pro', sans-serif;
  font-weight: 900;
  font-stretch: condensed;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 20px;
  font-style: italic;
}

.sltf-quiz-banner-section .sltf-quiz-slide p {
  font-family: 'Frutiger LT Pro', sans-serif;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: #fff;
}

.sltf-quize-themes .info-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  width: 100%;
  border: 2px solid #fff;
}

.sltf-quize-themes .info-card img {
  border-radius: 30px;
  width: 100%;
  height: auto;
  cursor: pointer;
}

.sltf-quize-themes .info-card .card-content {
  position: absolute;
  bottom: 0;
  padding: 20px;
  text-align: center;
  width: 100%;
  left: 0;
}

.sltf-quize-themes .info-card .card-content h3 {
  font-family: 'Frutiger LT Pro', sans-serif;
  font-weight: 900;
  font-stretch: condensed;
  font-style: italic;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #ffffff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.sltf-quize-themes .info-card .card-content button{
    cursor: pointer;
    font-size: 18px;
    line-height: 1.1;
    width: 100%;
}

.sltf-quize-themes-slider-wrap {
  padding: 0 50px;
  position: relative;
}

.sltf-quize-themes-slider-wrap .swiper-pagination {
  bottom: -50px !important;
  align-items: center;
  display: flex;
  justify-content: center;
}

.sltf-quize-themes-slider-wrap .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #2E4960;
  opacity: 1;
}

.sltf-quize-themes-slider-wrap .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 16px;
  height: 16px;
  background: #D9D9D9;
  opacity: 1;
}

.sltf-swiper-prev,
.sltf-swiper-next {
  width: 32px;
  height: 32px;
}

.sltf-swiper-prev:after,
.sltf-swiper-next:after {
  display: none;
}

.sltf-swiper-prev {
  left: -0;
}

.sltf-swiper-next {
  right: -0;
}

.sltf-quiz-themes .sltf-container {
  max-width: 100%;
}

.sltf-quiz-themes .sachet-credit-logo {
  max-width: 200px;
  width: 100%;
}

.sltf-quiz-themes {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.sltf-quiz-theme-wrapper .quiz-theme-result-card {
  display: none;
  max-width: 1100px;
  margin: 0 auto;
}

.sltf-quiz-theme-wrapper .quiz-theme-result-output-safe {
  max-width: 1400px;
}

.sltf-quiz-theme-wrapper .quiz-theme-result-output-safe .quiz-theme-result-card-content-outer {
  max-width: 620px;
  flex: 1;
}

.sltf-quiz-theme-wrapper .quiz-theme-result-output-safe .quiz-theme-result-card-actions {
  max-width: 620px;
  margin: 40px auto;
}

.sltf-quiz-theme-wrapper .quiz-theme-result-output-safe .quiz-theme-result-card-content-badge-outer .quiz-theme-result-card-actions {
  margin: 30px auto;
}

.sltf-quiz-theme-wrapper .quiz-theme-result-output-safe .quiz-theme-result-card-text {
  max-width: 650px;
  margin: 0 auto 40px;
  font-size: 20px;
}

.quiz-theme-result-card-content-badge-outer button:not(#download-shield) {
  display: none;
}

.sltf-quiz-theme-wrapper .quiz-theme-result-output-safe .quiz-theme-result-card-left {
  position: relative;
  z-index: 10;
}

.quiz-theme-result-card-content-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.quiz-theme-result-card-content-badge-outer {
  flex: 1;
  position: relative;
  width: 100%;
  max-width: 380px;
}

.quiz-theme-result-card-content-badge {
  padding: 0 40px;
}

.quiz-theme-result-card-content-badge img {
  border-radius: 15px;
}

.sltf-quiz-theme-wrapper .quiz-theme-result-output-safe .quiz-theme-result-card-right {
  width: 80%;
}

.sltf-quiz-theme-wrapper .quiz-theme-result-card.active {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}

.quiz-theme-result-card .quiz-theme-result-card-left {
  width: 35%;
  align-self: end;
}

.quiz-theme-result-card-left img {
  margin-top: 150px;
}

.quiz-theme-result-card .quiz-theme-result-card-right {
  width: 65%;
}

.quiz-theme-result-card .quiz-theme-result-card-right .quiz-theme-result-card-credit {
  display: flex;
  justify-content: center;
  margin-bottom: 70px;
}

.quiz-theme-result-card-quiz-lottie svg {
  display: block;
  max-width: 400px;
  max-height: 550px;
}

.quiz-theme-result-card-content {
  background: #034668cc;
  /* max-width: 650px; */
  padding: 75px 50px 50px;
  border-radius: 30px;
  color: #fff;
  text-align: center;
  backdrop-filter: blur(5px);
  box-shadow: 0px 6px 0px #FFD926;
  ;
}

.quiz-theme-result-card .quiz-theme-result-card-content .quiz-theme-result-card-feature-icon {
  margin: -120px auto 20px;
  max-width: 120px;
}

.quiz-theme-result-card .quiz-theme-result-card-content .quiz-theme-result-card-question {
  font-family: 'Frutiger', 'Frutiger LT Pro', sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 37px;
  letter-spacing: 0;

}

.quiz-theme-result-card .quiz-theme-result-card-content .quiz-theme-result-card-question b {
  color: #FFD926;
  font-weight: 700;
}

.quiz-theme-result-output-safe .quiz-theme-result-card-content .quiz-theme-result-card-question b {
  display: block;
  margin-bottom: 16px;
}

.quiz-theme-result-output-scam .quiz-theme-result-card-content .quiz-theme-result-card-question,
.quiz-theme-result-output-safe .quiz-theme-result-card-content .quiz-theme-result-card-question {
  font-weight: normal;
}

.quiz-theme-result-output-safe .quiz-theme-result-card-content .quiz-theme-result-card-question {
  font-size: 26px;
  line-height: 1.1;
}

.quiz-theme-result-output-scam .quiz-theme-result-card-content .quiz-theme-result-card-question b {
  font-size: 50px;
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: 6px;
  display: block;
}

.quiz-theme-result-output-safe .quiz-theme-result-card-content .quiz-theme-result-card-question b {
  font-size: 40px;
  line-height: 1.15;
}

.quiz-theme-result-card-text {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 40px;
  text-align: center;
}

.quiz-theme-result-card-text b {
  color: #FFD926;
}

.quiz-theme-result-card-actions {
  display: flex;
  justify-content: center;
  gap: 40px;
  /* max-width: 650px; */
  margin: 40px 0;
}

.quiz-theme-result-card-actions button {
  background: #d3f3ff;
  border-radius: 15px;
  border: 1px solid #ffd926;
  color: #065378;
  padding: 15px 20px;
  font-family: 'Frutiger', 'Frutiger LT Pro', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0;
  cursor: pointer;
  /* min-width: 30%; */
  display: inline-flex;
  align-items: center;
  justify-content: start;
  width: calc(50% - 20px);
  text-align: left;
  box-shadow: 0px 6px 0px #FFD926;
  gap: 15px;
}

.quiz-theme-result-card-actions button:hover {
  background: #065378;
  color: #fff;
}

.quiz-theme-result-card-actions button .btn-option {
  display: inline-flex;
  background: #45BC73;
  line-height: 42px;
  width: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  font-family: 'Frutiger', 'Frutiger LT Pro', sans-serif;
  font-weight: 700;
  font-size: 22px;
}

.quiz-theme-result-card-actions button:hover .btn-option {
  background: #FFD926;
  color: #000;
}

.quiz-theme-result-card-actions button .option-A {
  background: #3E87D8;
}

.btn-label {
  flex: 1;
}

.btn-icon svg {
  fill: #065378;
}

#learn-more .svg-hover {
  display: none;
}

#learn-more:hover svg {
  display: none;
}

#learn-more:hover .svg-hover {
  display: block;
}

.quiz-theme-result-card-actions button:not(#learn-more):hover .btn-icon svg * {
  fill: #FFD926;
}

.quiz-theme-result-output-scam .quiz-theme-result-card-actions,
.quiz-theme-result-output-safe .quiz-theme-result-card-actions {
  gap: 15px;
}

.quiz-theme-result-output-scam .quiz-theme-result-card-actions button {
  font-size: 18px;
  width: calc(33.33% - 10px);
  gap: 15px;
  padding: 14px 20px;
  min-width: 200px;
}

.quiz-theme-result-output-safe .quiz-theme-result-card-actions button {
  font-size: 16px;
  max-width: 100%;
  gap: 15px;
  padding: 14px 20px;
  width: 200px;
}

.quiz-theme-result-output-safe .quiz-theme-result-card-right .quiz-theme-result-card-credit {
  margin-left: -50%;
}

.quiz-bgm-toggle {
  position: absolute;
  top: 100px;
  right: 50px;
  z-index: 9999;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 3px rgb(0 0 0 / 25%);
}
.sltf-quize-themes.sltf-quize-themes-banner-bottom {
    padding: 0;
    background-position: top center;
}
.sltf-quize-themes-banner-bottom-wrap{
    display: flex;
    gap: 40px;
    align-items: center;
}
.sltf-quize-themes-banner-bottom-left {
    width: 25%;
    max-width: 300px;
    align-self: end;
}
.sltf-quize-themes-banner-bottom-right {
    flex: 1;
    padding: 18px 0 40px;
}
.sltf-quize-themes-banner-bottom-wrap h3 {
    font-weight: 800;
    font-size: 38px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}
.sltf-quize-themes-banner-bottom-wrap h3 span{
    color: #FECF15;
}
.take-quiz-now {
    background: #FECF15;
    color: #000;
    font-weight: 900;
    font-size: 30px;
    padding: 15px 40px;
    border-radius: 50px;
    border: none;
    outline: none;
    box-shadow: 0 6px 0 0 #000;
    cursor: pointer;
    line-height: 1;
    font-style: italic;
    letter-spacing: -0.02em;
    display: inline-block;
    transition: all .3s ease;
}
.take-quiz-now:hover{
    background: #000;
    color: #FECF15;
     box-shadow: 0 6px 0 0 #FECF15;
}
.sltf-quize-themes-banner-bottom-left img {
    margin-top: -180px;
    width: 100%;
}

/******* CHECK URL PAGE STYLE ENDS *******/
/* RESPONSIVE FOR TABS */
@media (max-width: 1024px) {
      .tablet-only {
    display: block !important;
  }

  .desktop-only,.mobile-only {
    display: none !important;
  }

  .sltf-container {
    padding: 0 30px;
  }

  .hero .hero-mascot {
    max-width: 140px;
  }

  .hero .hero-cards {
    gap: 21px;
  }

  .hero .hero-card {
    width: calc((100% - 42px) / 3);
  }

  .hero .hero-card .hero-card-media img {
    border-radius: 20px;
  }

  .hero .hero-card .hero-card-body {
    padding: 15px 0;
  }

  .hero .hero-card .hero-card-body .hero-card-title {
    font-size: 14px;
  }

  .hero .hero-left {
    width: 45%;
  }

  .hero .hero-right {
    width: 60%;
  }

  .hero .hero-title {
    position: unset;
    font-size: 28px;
    max-width: 100%;
    width: 380px;
  }

  .btn {
    font-size: 13px;
    padding: 6px 14px;
  }

  .check-url-section .check-url-section-title {
    font-size: 30px;
    max-width: 400px;
  }

  .check-url-section form.check-url-form .check-url-form-field #checkurl {
    font-size: 16px;
  }

  .check-url-section .check-url-form-field.magnifier:before {
    top: 14px;
    background-size: 20px;
  }

  .check-url-section-result-card .check-url-section-result-card-header {
    font-size: 20px;
  }

  .check-url-section-result-card .check-url-section-result-card-body {
    padding: 30px 25px;
  }

  .check-url-section-result-card .check-url-section-result-card-body-title {
    font-size: 28px;
  }

  .check-url-section-result-card .check-url-section-result-card-body-subtitle {
    font-size: 18px;
    max-width: 100%;
  }

  .check-url-section-result-card .check-url-section-result-card-body-actions .check-url-section-result-card-body-action-btn {
    font-size: 16px;
    margin: 0 0 5px;
  }

  .check-url-section-result-card .check-url-section-result-card-body-actions {
    width: 100%;
    gap: 20px;
    justify-content: center;
  }

  .check-url-section-result-card .check-url-section-result-card-header p {
    font-size: 18px;
  }

  .check-url-section .check-url-section-result-notice {
    margin-top: 15px;
    font-size: 14px;
    text-align: center;
  }

  /*Get Aware Page*/
  #GetAwareSection .video-placeholder {
    height: 260px;
  }

  #GetAwareSection .v-cards {
    gap: 20px 30px;
    height: 500px;
  }

  #GetAwareSection .v-card {
    max-width: calc(33.33% - 20px);
  }

  #GetAwareSection .get-aware-content h2 {
    font-size: 26px;
  }

  /*/Quiz Page*/
  .sltf-quiz-themes .sachet-credit-logo {
    max-width: 140px;

  }

  .quiz-theme-result-card .quiz-theme-result-card-content .quiz-theme-result-card-feature-icon {

    max-width: 90px;
  }

  #malwarethreats .quiz-theme-result-card-content .quiz-theme-result-card-feature-icon {
    max-width: 95px;
    margin: -110px auto 20px;
  }

  #cybersecurity .quiz-theme-result-card-content .quiz-theme-result-card-feature-icon {
    max-width: 75px;
  }

  .quiz-theme-result-card .quiz-theme-result-card-content .quiz-theme-result-card-question {
    font-size: 25px;
    line-height: 1.25;
  }

  .quiz-theme-result-output-safe .quiz-theme-result-card-content .quiz-theme-result-card-question {
    font-size: 20px;
    line-height: 1.1;
  }

  .quiz-theme-result-output-safe .quiz-theme-result-card-content .quiz-theme-result-card-question b {
    font-size: 26px;
    line-height: 1.15;
  }

  .quiz-theme-result-card-actions {
    gap: 20px;
    flex-wrap: wrap;
  }

  .quiz-theme-result-card-content {
    padding: 75px 50px 50px;
  }

  .sltf-quiz-theme-wrapper .quiz-theme-result-output-safe .quiz-theme-result-card-content-outer {
    margin-left: 0;
    max-width: 480px;
  }

  .sltf-quiz-theme-wrapper .quiz-theme-result-output-safe .quiz-theme-result-card-content {
    box-shadow: 0px 4px 0px #FFD926;
    padding: 75px 30px 30px;
  }

  .quiz-theme-result-card-content-badge {
    padding: 0 30px;
  }

  .quiz-theme-result-card-content-badge-outer {
    max-width: 280px;
  }

  .quiz-theme-result-card-actions button {
    font-size: 16px;
    gap: 15px;
  }

  .sltf-quiz-theme-wrapper .quiz-theme-result-card {
    max-width: 850px;
  }

  .sltf-quiz-theme-wrapper .quiz-theme-result-output-safe {
    max-width: 850px;
  }

  .quiz-theme-result-card-actions button .btn-option {
    line-height: 36px;
    width: 36px;
    border-radius: 6px;
    font-size: 18px;
  }

  .quiz-theme-result-output-scam .quiz-theme-result-card-actions button,
  .quiz-theme-result-output-safe .quiz-theme-result-card-actions button {
    min-width: 180px;
  }

  .quiz-theme-result-output-scam .quiz-theme-result-card-content .quiz-theme-result-card-question b {
    font-size: 34px;
  }

  .quiz-theme-result-card-text {
    font-size: 18px;
    padding: 0 20px;
  }

  .quiz-theme-result-output-safe .quiz-theme-result-card-actions button {
    font-size: 14px;
    padding: 10px 20px;
    box-shadow: 0px 4px 0px #FFD926;
    width: auto;
    border-radius: 10px;
  }


  .quiz-theme-result-output-safe.btn-icon svg {
    width: 18px;
    height: 18px;
  }

  .sltf-quiz-theme-wrapper .quiz-theme-result-output-safe .quiz-theme-result-card-text {
    font-size: 16px;
    padding: 0
  }
  .sltf-quize-themes .info-card .card-content button{
        font-size: 16px;
    }
    .sltf-quize-themes-banner-bottom-wrap h3{
        font-size:32px;
        margin-bottom: 15px;
        line-height: 1;
    }
    .sltf-quize-themes-banner-bottom-wrap h3 span{
        font-size:65px;
        display: block;
        margin-top: 10px;
    }
    .sltf-quize-themes-banner-bottom-wrap {
    gap: 5px;
    }
    .sltf-quize-themes-banner-bottom-left {
    width: 50%;
    margin-left: -30px;
        max-width: 335px;
    }
    .take-quiz-now{
        font-size: 25px;
    }
}


/* RESPONSIVE FOR MOBILE */
@media (max-width: 767px) {
  .hero {
    background-image: url(/assets/images/home-banner-bg-mobile.webp) !important;
  }

  .brand img {
    height: 30px;
  }

  .quiz-bgm-toggle {
    right: 20px;
  }

  .quiz-bgm-toggle svg {
    width: 30px;
    height: 30px;
  }

  /* .hero-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-right {
    width: 100%;
    justify-content: flex-start;
  }
  .hero-cards {
    grid-template-columns: 1fr;
  }
  .video-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .video-card {
    width: 100%;
  } */
  .mobile-only {
    display: block !important;
  }

  .desktop-only ,.tablet-only {
    display: none !important;
  }

  .sltf-container {
    width: 100%;
    padding: 0 0px;
  }


  .sltf-container .sltf-mobile-only {
    display: block;
  }

  .site-header .header-inner {
    padding: 0 20px;
  }

  .site-header .header-inner .nav {
    display: none;
  }

  .site-header .header-inner .site-nav .sltf-mobile-only {
    cursor: pointer;
    cursor: pointer;
    border: none;
    background: transparent;
    outline: none;
    box-shadow: none;
  }

  .site-header .header-inner .site-nav .sltf-mobile-only:focus,
  .site-header .header-inner .site-nav .sltf-mobile-only:hover {
    box-shadow: none;
    background: transparent;
  }

  .site-header .header-inner .site-nav.open-menu {
    position: relative;
  }

  .site-header .header-inner .site-nav.open-menu .nav {
    display: block;
    position: absolute;
    right: -20px;
    width: 100vw;
    z-index: 9;
    background: #FECF15;
    padding: 5px 0;
    top: 60px;

  }

  .site-header .header-inner .site-nav.open-menu .nav li {
    background: #FECF15;
    text-align: center;
  }

  .site-header .header-inner .site-nav.open-menu .nav li:hover {
    background: var(--warning-color);
  }

  .site-header .header-inner .site-nav.open-menu .nav li a {
    display: block;
    padding: 6px 10px;
  }

  .site-header .header-inner .site-nav.open-menu .nav li a:hover {
    text-decoration: underline;
  }

  .hero .hero-bottom,
  .video-section .video-section-inner {
    flex-wrap: wrap;
  }

  .hero .hero-mobile-only {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero .hero-title {
    font-size: 28px;
    position: unset;
    width: 100%;
  }

  .hero .hero-mascot {
    max-width: 135px;
  }

  .hero .hero-mobile-only .hero-tag {
    margin: 25px auto;
  }

  .hero .hero-tag img {
    max-width: 280px;
  }

  .hero .hero-cards {
    gap: 30px;
    max-width: 400px;
  }

  .hero .hero-card {
    width: 100%;
    flex-wrap: nowrap;
    align-items: center;
    margin-bottom: 0;
    gap: 25px;
    justify-content: center;
  }

  .hero .hero-card:nth-child(even) {
    flex-direction: row-reverse;
  }

  .hero .hero-card:nth-child(even) .hero-card-body {}

  .hero .hero-card .hero-card-media {
    overflow: hidden;
    max-width: 140px;
  }

  .hero .hero-card .hero-card-body .hero-card-title {
    font-size: 18px;
  }

  .hero .hero-left,
  .hero .hero-right {
    width: 100%;
    padding: 0 20px;
  }

  .hero .hero-left {
    border-bottom: 5px solid var(--warning-color);
  }

  .hero .hero-left .hero-feature-wrapper {
    display: flex;
    justify-content: center;
    overflow: hidden;
  }

  .hero .hero-left .hero-feature-image {
    max-width: 270px;
  }

  .hero .hero-right {
    margin-bottom: 40px;
  }

  .hero .hero-right .hero-mascot,
  .hero .hero-right .hero-tag {
    display: none;
  }

  .hero .hero-card .hero-card-media img {
    max-height: 140px;
  }

  .hero .hero-card .hero-card-body {}

  .video-section .sltf-container {
    padding: 0 20px;
    gap: 30px;
  }

  .video-section .video-section-content,
  .video-section .video-section-card {
    width: 100%;
  }

  .video-section-content h2 {
    color: #000;
    font-size: 22px;
    text-align: center;
  }

  .video-section-content .video-section-content-description {
    margin-top: 15px;
    max-width: 100%;
    text-align: center;
  }

  .video-section .video-section-card {
    margin: 0 15px;
  }

  .video-section .video-section-card .video-card-thumbnail {
    height: 200px;
  }

  .video-section .video-section-card .play-badge {
    width: 60px;
    height: 60px;
    left: calc(50% - 30px);
    top: calc(50% - 30px);
  }

  .video-section-content .video-section-content-description p {
    font-size: 18px;

  }

  .banner-slider {
    padding: 0;
  }

  .banner-slider .bottomSwiper {
    display: none;
  }

  .banner-slider .mobileSwiperOnly {
    display: block;
  }

  .site-footer .footer-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 20px;
    gap: 12px;
    padding-bottom: 10px;
    flex-direction: column;
  }

  .footer-inner-top {
    padding: 0 20px 5px;
  }

  .site-footer .site-footer {
    padding: 15px 0 15px;
  }

  ul.sltf-social-links svg {
    width: 24px;
    height: 24px;
  }

  .site-footer .footer-inner .footer-left {
    margin: 0 auto;
    text-align: center;
    font-size: 12px;
    gap: 6px;
  }

  .footer-disclaimer .footer-disclaimer-text {
    font-size: 12px;
    text-align: center;
  }

  .site-footer {
    padding: 15px 0 18px;
  }

  .footer-disclaimer p {
    font-size: 8px;
  }

  /* CHECKURL PAGE */
  .check-url-section.hero .hero-left,
  .check-url-section.hero .hero-right {
    width: 100%;
    margin: 0;
  }

  .check-url-section.hero .hero-left {
    align-self: start;
  }


  .check-url-section.hero .hero-left .hero-feature-wrapper {
    display: none;
  }

  .check-url-section.hero .hero-right .hero-mobile-only.hero-feature-wrapper {
    max-width: 280px;
    margin: 30px auto 0;
  }

  .check-url-section.hero .hero-left {
    border-bottom: 0px solid var(--warning-color);
  }

  .check-url-section-result.hero .sltf-container.hero-bottom .hero-right {
    margin: 0;
  }

  .check-url-section-result-card .check-url-section-result-card-header {
    padding: 12px 10px;
    font-size: 16px;
    min-height: 50px
  }

  .check-url-section-result-card .check-url-section-result-card-header p {
    font-size: 12px;
    margin-top: 2px;
  }

  .check-url-section-result-card .check-url-section-result-card-body-title {
    font-size: 20px;
  }

  .check-url-section-result-card .check-url-section-result-card-body {
    padding: 20px 15px;
  }

  .check-url-section-result-card .check-url-section-result-card-body-subtitle {
    font-size: 14px;
    max-width: 100%;
  }

  .check-url-section-result-card .check-url-section-result-card-body-actions {
    width: 100%;
  }

  .check-url-section-result-card .check-url-section-result-card-body-actions .check-url-section-result-card-body-action-btn {
    font-size: 13px;
    padding: 8px 15px;
  }

  .check-url-section .check-url-section-result-notice {
    text-align: center;
    margin-top: 0;
    font-size: 11px;
  }

  .check-url-section-result-card {
    margin: 20px auto 20px;
    border-radius: 25px;
  }

  .check-url-section form.check-url-form .check-url-form-field #checkurl {
    font-size: 14px;
  }

  .check-url-section .check-url-section-title {
    font-size: 26px;
    max-width: 260px;
  }

  .check-url-section form.check-url-form .check-url-form-field .check-url-form-notice-text {
    margin: 0 auto 0px;
  }

  /*Get Aware Page */
  #GetAwareSection .get-aware-content {
    margin: 10px 0;
  }

  #GetAwareSection .get-aware-content h2 {
    font-size: 22px;
    max-width: 220px;
    margin: 0 auto;
  }

  #GetAwareSection .sltf-container.hero-bottom {
    gap: 10px;
  }

  #GetAwareSection .hero-left,
  #GetAwareSection .hero-right {
    width: 100%;
  }

  #GetAwareSection .hero-left {
    align-items: center;
    justify-content: center;
  }

  #GetAwareSection .v-cards {
    justify-content: space-between;
    gap: 20px;
    margin: 25px 0;
    height: 400px;
    padding-right: 0px;
  }

  #GetAwareSection .v-card {
    max-width: calc(50% - 10px);
    width: 100%;
  }

  /*quiz page*/
  .sltf-quiz-banner-section .sltf-quiz-slide-left {
    max-width: 100%;
    padding: 0 20px;
  }

  .sltf-quiz-banner-section .sltf-container {
    display: flex;
  }

  .sltf-quiz-banner-section .sltf-quiz-slide {
    padding: 60px 0 220px;
  }

  .sltf-quize-themes {
    padding: 60px 0;
  }

  .sltf-quize-themes-slider {
    overflow: visible;
  }

  .sltf-quize-themes-slider-wrap {
    /* overflow: hidden; */
    padding: 0;
  }

  .sltf-quize-themes .info-card img {
    max-height: 255px;
    object-fit: cover;
  }

  .sltf-quize-themes .info-card .card-content h3 {
    font-size: 18px;
  }
  .sltf-quize-themes .info-card .card-content button{
        font-size: 14px;
    }

  .sltf-quiz-theme-wrapper .quiz-theme-result-card.active {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }

  .quiz-theme-result-card .quiz-theme-result-card-left,
  .quiz-theme-result-card .quiz-theme-result-card-right {
    width: 100%;
    /* margin: 0; */
  }

  .quiz-theme-result-card .quiz-theme-result-card-right {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 400px;
  }

  .quiz-theme-result-card-content {
    max-width: 100%;
    padding: 40px 25px 30px;
    border-radius: 15px;
    box-shadow: 0px 3px 0px #FFD926;

  }

  .sltf-quiz-theme-wrapper .quiz-theme-result-output-safe .quiz-theme-result-card-right {
    width: 100%;
  }

  .sltf-quiz-theme-wrapper .quiz-theme-result-output-safe .quiz-theme-result-card-content {
    margin-left: 0;
    padding: 40px 30px 30px;
    box-shadow: 0px 3px 0px #FFD926;
  }

  .quiz-theme-result-card-content-wrap {
    gap: 30px;
    flex-direction: column;
  }

  .quiz-theme-result-card-content-badge {
    max-width: 250px;
    margin: 0 auto;
  }

  .quiz-theme-result-card-actions {
    gap: 10px;
    max-width: 100%;
    margin: 20px 0;
  }

  .sltf-quiz-theme-wrapper .quiz-theme-result-output-safe .quiz-theme-result-card-actions {
    max-width: 100%;
    margin: 20px auto;
  }

  .quiz-theme-result-card-actions button {
    font-size: 12px;
    padding: 8px 10px;
    box-shadow: 0px 3px 0px #FFD926;
    border-radius: 8px;
    gap: 10px;
  }

  .quiz-theme-result-card .quiz-theme-result-card-content .quiz-theme-result-card-feature-icon {
    margin: -75px auto 20px;
    max-width: 65px;
  }

  #malwarethreats .quiz-theme-result-card-content .quiz-theme-result-card-feature-icon {
    margin: -70px auto 20px;
    max-width: 80px;
  }

  #cybersecurity .quiz-theme-result-card-content .quiz-theme-result-card-feature-icon {
    max-width: 55px;
  }


  .sltf-quiz-themes .sachet-credit-logo {
    max-width: 135px;

  }

  .quiz-theme-result-output-safe .quiz-theme-result-card-right .quiz-theme-result-card-credit {
    margin-left: 0;
    margin-bottom: 60px;
  }


  .quiz-theme-result-card .quiz-theme-result-card-content .quiz-theme-result-card-question {
    font-size: 16px;
    line-height: 1.25;
  }

  .quiz-theme-result-card-actions {
    gap: 20px;
  }


  .quiz-theme-result-card-actions button .btn-option {
    line-height: 24px;
    width: 24px;
    border-radius: 3px;
    font-size: 12px;
  }

  .quiz-theme-result-card-quiz-lottie svg {
    max-width: 300px;
    max-height: 400px;
    margin: 0 auto;
  }

  .quiz-theme-result-output-scam .quiz-theme-result-card-actions button,
  .quiz-theme-result-output-safe .quiz-theme-result-card-actions button {
    font-size: 12px;
    gap: 10px;
    min-width: 130px;
    padding: 8px 10px;

  }

  .quiz-theme-result-output-safe .quiz-theme-result-card-actions button {
    box-shadow: 0px 3px 0px #FFD926;

  }

  .quiz-theme-result-output-scam .quiz-theme-result-card-actions,
  .quiz-theme-result-output-safe .quiz-theme-result-card-actions {
    flex-wrap: wrap;
  }

  .quiz-theme-result-output-scam .quiz-theme-result-card-content .quiz-theme-result-card-question b,
  .quiz-theme-result-output-safe .quiz-theme-result-card-content .quiz-theme-result-card-question b {
    font-size: 26px;
  }

  .quiz-theme-result-card-text {
    font-size: 15px;
    margin-bottom: 15px;


  }

  .sltf-quiz-theme-wrapper .quiz-theme-result-output-safe .quiz-theme-result-card-text {
    font-size: 14px;
  }

  .quiz-theme-result-card-quiz-lottie {
    min-height: 350px;
    display: block;
  }

  .quiz-theme-result-card-content-outer .quiz-theme-result-card-actions {
    display: none;
  }

  .sltf-quiz-theme-wrapper .quiz-theme-result-output-safe .quiz-theme-result-card-content-outer {
    max-width: 280px;
    margin: 0 auto;
  }

  #download-shield {
    order: -1;
    margin: 0 100px;
  }

  .sltf-quiz-theme-wrapper .quiz-theme-result-output-safe .btn-icon svg {
    width: 18px;
    height: 18px;
  }

  .quiz-theme-result-card-content-badge-outer button {
    display: inline-flex !important;
  }

  .sltf-quiz-theme-wrapper .quiz-theme-result-output-safe .quiz-theme-result-card-content-badge-outer .quiz-theme-result-card-actions {
    margin: 25px auto;
  }

  .video-modal-close {
    background: rgb(255 255 255 / 44%);
    width: 20px;
    height: 20px;
    border-radius: 10px;
    font-size: 10px;
  }

    .sltf-quize-themes-banner-bottom-wrap h3{
        font-size:20px;
        margin-bottom: 10px;
        padding: 0 8px;
    }
    .sltf-quize-themes-banner-bottom-wrap h3 span{
        font-size:30px;
        margin-top: 8px;
        line-height: 1;
    }
    .sltf-quize-themes-banner-bottom-right {
        padding: 15px 0 30px;
    }
    .sltf-quize-themes-banner-bottom-left {
    width: 50%;
            margin-left: -20px;
    }
    .take-quiz-now{
        font-size: 15px;
        padding: 5px 10px;
        box-shadow: 0 5px 0 0 #000;
    }
        .sltf-quize-themes-banner-bottom-wrap {
        gap: 0;
    }
    .sltf-quize-themes.sltf-quize-themes-banner-bottom{
        background-image: url(../images/home-banner-bg-mobile.webp)!important;
    }
}

/* Smooth fade only (no reflow) */
.quiz-theme-result-card-quiz-lottie {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.quiz-theme-result-card-quiz-lottie.is-visible {
  opacity: 1;
}