/**
 * =============================================================================
 * Digit7s Theme - Main Stylesheet
 * =============================================================================
 * 
 * @package    Digit7s
 * @version    1.0.0
 * @author     Digit7s
 * @link       https://digit7s.com/
 * 
 * =============================================================================
 * TABLE OF CONTENTS
 * =============================================================================
 * 
 * 1. Setup & Configuration
 *    - Variables
 *    - Mixins
 *    - Fonts
 * 
 * 2. WordPress Core Styles
 *    - Typography
 *    - Alignments
 *    - Media
 * 
 * 3. Layout Components
 *    - Navigation (Desktop & Mobile)
 *    - Header
 *    - Footer
 * 
 * 4. Page Components
 *    - Homepage
 *    - Download Page
 *    - Announcement Page
 *    - Contact Page
 *    - Install Page
 * 
 * 5. UI Elements
 *    - Buttons
 *    - Cards
 *    - Forms
 *    - Sliders
 * 
 * 6. Utilities
 *    - Spacing
 *    - Colors
 *    - Helper Classes
 * 
 * 7. Responsive Media Queries
 *    - Min-width (Mobile First)
 *    - Max-width (Desktop First)
 * 
 * =============================================================================
 */
/**
 * =============================================================================
 * LESS SETUP & COMPILATION GUIDE
 * =============================================================================
 * 
 * Installation:
 * -------------
 * 1. npm install -g less
 * 2. npm install -g less-watch-compiler
 * 3. npm install css-minify -g
 * 
 * Development:
 * ------------
 * - Watch & Auto-compile: less-watch-compiler
 * - Manual compile: lessc main.less main.css
 * 
 * Production:
 * -----------
 * - Minify CSS: css-minify -f main.css
 * 
 * Documentation:
 * --------------
 * - LESS: https://lesscss.org
 * - Watch Compiler: https://www.npmjs.com/package/less-watch-compiler
 * 
 * =============================================================================
 */
/**
 * =============================================================================
 * 1. VARIABLES & CONFIGURATION
 * =============================================================================
 */
@font-face {
  font-family: "Pyidaungsu", sans-serif;
  src: url("../../fonts/Pyidaungsu-2.5.3_Regular.ttf") format("TrueType");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.lang-my .event-box .section-xl-title {
  line-height: 1.6;
}
/**
 * =============================================================================
 * 2. WORDPRESS CORE STYLES
 * =============================================================================
 */
html {
  margin-top: unset !important;
  scroll-behavior: smooth;
}
body {
  overflow-x: hidden;
  padding-top: 80px;
}
body.mobile-menu-open {
  overflow: hidden;
}
.lang-en h1,
.lang-en h2,
.lang-en h3,
.lang-en h4,
.lang-en h5,
.lang-en h6,
.lang-en a,
.lang-en p,
.lang-en ul,
.lang-en li,
.lang-en span,
.lang-en div,
.lang-en body {
  font-family: "Instrument Sans", sans-serif;
}
.lang-my h1,
.lang-my h2,
.lang-my h3,
.lang-my h4,
.lang-my h5,
.lang-my h6,
.lang-my a,
.lang-my p,
.lang-my ul,
.lang-my li,
.lang-my span,
.lang-my div,
.lang-my body {
  font-family: "Pyidaungsu", sans-serif;
}
/**
 * =============================================================================
 * 6. UTILITIES & HELPER CLASSES
 * =============================================================================
 */
.section-padding {
  padding: 80px 0;
}
.section-top {
  padding-top: 80px;
}
.section-bottom {
  padding-bottom: 80px;
}
.section-xl-title {
  color: #0f350c;
  font-family: "Instrument Sans", sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.2;
}
.section-lg-title {
  color: #0f350c;
  font-family: "Instrument Sans", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
}
.section-title {
  color: #0f350c;
  font-family: "Instrument Sans", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.7;
}
.section-content {
  color: #0f350c;
  font-family: "Instrument Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
}
.btn-green {
  position: relative;
  background: #116209;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  padding: 18px 24px;
  border-radius: 16px;
  background: #116209 url(/wp-content/uploads/2025/10/header-shape-scaled.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  backdrop-filter: blur(2px);
  width: 100%;
  max-width: 480px;
  min-height: 64px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-green::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #116209e6;
  top: 0;
  border-radius: 16px;
  pointer-events: none;
  z-index: -1;
}
.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  color: #fff;
  text-decoration: none;
}
.btn-green:active {
  transform: translateY(0);
}
.btn-green .d-flex {
  width: 100%;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
}
.btn-green img {
  margin-right: 12px;
  flex-shrink: 0;
}
.guide-link {
  color: #1a8412;
  font-size: 20px;
  font-family: "Instrument Sans", sans-serif;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.guide-link:hover {
  color: #116209;
  text-decoration: underline;
}
img {
  height: auto;
  max-width: 100%;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
.alignnone {
  margin: 5px 20px 20px 0;
}
.aligncenter {
  display: block;
  margin: 5px auto;
}
.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
/**
 * =============================================================================
 * 3. LAYOUT COMPONENTS - NAVIGATION
 * =============================================================================
 * This section contains all navigation/menu styles split between mobile and desktop
 * Breakpoint: 1200px (Desktop: >=1200px | Mobile: <1200px)
 */
.navbar-toggler {
  border: 0;
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #1a8412;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0px;
  transition: background-color 0.3s ease;
  background: url("/wp-content/uploads/2025/10/header-shape-scaled.png") 0px -411.503px / 100% 1146.4% no-repeat, #1a8412;
  backdrop-filter: blur(2px);
  z-index: 1000;
}
.navbar ::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #1a841236;
  pointer-events: none;
  z-index: -1;
}
.navbar .header-logo {
  position: relative;
  z-index: 1001;
}
.navbar .header-bg {
  position: absolute;
}
.navbar .navbar-toggler {
  position: relative;
  z-index: 1001;
}
.navbar .navbar-toggler-icon {
  background-image: url(/wp-content/uploads/2025/10/menu-burger.png) !important;
  background-repeat: no-repeat;
  width: 23px;
}
.navbar-brand img {
  height: 60px;
}
.home-banner {
  margin-top: 0;
}
@media (min-width: 1200px) {
  .navbar .menu-item {
    padding: 0 15px;
  }
  .navbar a {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    position: relative;
    z-index: 999;
  }
  .navbar .current-menu-item a {
    color: #11ea00;
  }
  .navbar .nav-link {
    color: #ffffff;
    font-weight: 600;
    margin: 0 10px;
    transition: color 0.3s ease;
  }
  .navbar .nav-link:hover,
  .navbar .nav-link.active {
    color: #11ea00;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
    justify-content: end !important;
    position: static !important;
    transform: none !important;
    width: auto !important;
    height: auto !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    visibility: visible !important;
    overflow: visible !important;
  }
  .navbar-expand-xl .navbar-collapse::after {
    display: none !important;
  }
  .btn-close-mobile {
    display: none !important;
  }
  .navbar-collapse ul,
  .navbar-collapse .navbar-nav,
  .navbar-collapse .nav-item,
  .navbar-collapse .menu-item,
  .navbar-collapse a,
  .navbar-collapse .nav-link {
    background-color: transparent !important;
    background-image: none !important;
  }
}
@media (max-width: 1199.98px) {
  .navbar .menu-item {
    line-height: 1.7;
  }
  .navbar ::before {
    background: #1a84128f;
  }
  .navbar-toggler {
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
  }
  .navbar-collapse {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 60%;
    max-width: 280px;
    background-color: #fff !important;
    background-image: none !important;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    z-index: 10000;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 20px;
    padding-top: 70px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    -webkit-overflow-scrolling: touch;
    visibility: hidden;
  }
  .navbar-collapse.show {
    transform: translateX(0);
    visibility: visible;
  }
  .navbar-collapse.collapsing {
    height: 100vh;
    visibility: visible;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .navbar-collapse.collapsing.hide {
    transform: translateX(100%);
  }
  .btn-close-mobile {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    border: none !important;
    cursor: pointer;
    z-index: 10001;
    -webkit-tap-highlight-color: transparent;
    padding: 0;
    margin: 0;
    width: 36px;
    height: 36px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    opacity: 1 !important;
    filter: none !important;
    box-shadow: none !important;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .btn-close-mobile::before,
  .btn-close-mobile::after {
    content: '' !important;
    position: absolute;
    width: 20px;
    height: 3px;
    background-color: #1a8412 !important;
    border-radius: 2px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    left: 50%;
    top: 50%;
    margin-left: -10px;
    margin-top: -1.5px;
  }
  .btn-close-mobile::before {
    transform: rotate(45deg);
  }
  .btn-close-mobile::after {
    transform: rotate(-45deg);
  }
  .btn-close-mobile:hover {
    opacity: 1 !important;
    background: #edf3ea !important;
    transform: rotate(90deg);
  }
  .btn-close-mobile:hover::before,
  .btn-close-mobile:hover::after {
    background-color: #116209 !important;
  }
  .btn-close-mobile:active {
    background: #dfeada !important;
    transform: rotate(90deg) scale(0.9);
  }
  .btn-close-mobile:focus {
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
  }
  .btn-close-mobile.btn-close {
    background: transparent !important;
    background-image: none !important;
    opacity: 1 !important;
  }
  .btn-close-mobile.btn-close::before,
  .btn-close-mobile.btn-close::after {
    background-image: none !important;
  }
  .navbar-collapse .navbar-nav {
    flex-direction: column;
    width: 100%;
    padding-top: 10px;
    background-color: transparent !important;
    list-style: none;
    margin: 0;
  }
  .navbar-collapse ul,
  .navbar-collapse #menu-primary,
  .navbar-collapse #menu-primary-mm {
    background-color: transparent !important;
    background-image: none !important;
    list-style: none;
    padding-left: 0;
    margin: 0;
  }
  .navbar-collapse .menu-item {
    padding: 0;
    margin: 0;
    background-color: transparent !important;
    background-image: none !important;
  }
  .navbar-collapse .nav-item {
    padding: 0;
    margin: 0;
    background-color: transparent !important;
    background-image: none !important;
  }
  .navbar-collapse a,
  .navbar-collapse .nav-link {
    display: block;
    width: 100%;
    color: #1a8412 !important;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 20px !important;
    margin: 0;
    border-bottom: none !important;
    background-color: #fff !important;
    background-image: none !important;
    line-height: 1.5;
    min-height: 54px;
    box-sizing: border-box;
    transition: background-color 0.2s ease, color 0.2s ease;
  }
  .navbar-collapse a:hover,
  .navbar-collapse .nav-link:hover {
    background-color: #edf3ea !important;
  }
  .navbar-collapse .current-menu-item a {
    color: #11ea00 !important;
    background-color: #fff !important;
    font-weight: 700;
  }
  .navbar-collapse .language-flag {
    margin-top: 0px !important;
    border-top: none;
    padding-top: 0;
    background-color: transparent !important;
  }
  .navbar-collapse .language-flag .nav-item {
    background-color: transparent !important;
    padding: 0;
    margin: 0;
  }
  .navbar-collapse .language-flag .nav-link,
  .navbar-collapse .language-flag a {
    display: block;
    width: 100%;
    color: #1a8412 !important;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 20px !important;
    margin: 0;
    background-color: #fff !important;
    background-image: none !important;
    line-height: 1.5;
    min-height: 54px;
    box-sizing: border-box;
    border-bottom: none !important;
    transition: background-color 0.2s ease, color 0.2s ease;
  }
  .navbar-collapse .language-flag .nav-link:hover,
  .navbar-collapse .language-flag a:hover {
    background-color: #edf3ea !important;
  }
  .navbar-collapse .language-flag .nav-link img,
  .navbar-collapse .language-flag a img {
    vertical-align: middle;
    margin-right: 10px;
  }
  .navbar-collapse::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    z-index: -1;
    pointer-events: none;
  }
  .navbar-collapse.show::after,
  .navbar-collapse.collapsing:not(.hide)::after {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background-color: #ffffff !important;
  }
}
/**
 * =============================================================================
 * 4. PAGE COMPONENTS
 * =============================================================================
 */
.home-banner {
  padding-top: 20px;
}
.app-banner {
  padding-bottom: 34px;
}
.download-app-wrap {
  padding: 34px 0;
  gap: 20px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
  max-width: 100%;
  margin: 0;
}
.download-app-wrap .btn-green {
  flex: 1;
  min-width: 0;
  max-width: 320px;
}
.download-app-wrap img {
  margin-right: 12px;
}
.lang-my .key-feature-wrap .feature-title {
  line-height: 1.6;
}
.lang-my .install-section .install-title {
  line-height: 1.6;
}
.key-feature-wrap .feature-title {
  color: #1a8412;
  text-align: center;
  font-family: "Instrument Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
}
.key-feature-wrap .feature-title-italic {
  color: #1a8412;
  font-family: "Instrument Sans", sans-serif;
  font-size: 32px;
  font-style: italic;
  font-weight: 700;
}
.key-feature-wrap .feature-box {
  border-radius: 16px;
  border: 2px solid #edf3ea;
  text-align: center;
  height: 100%;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.key-feature-wrap .feature-icon {
  width: 180px;
  height: 180px;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0 auto;
}
.key-feature-wrap .feature-text-box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.download-install-section .download-logo {
  width: 85px;
}
.app-slider-wrap {
  position: relative;
}
.app-slider-wrap .swiper-pagination {
  position: absolute;
  bottom: 0;
}
.app-slider .owl-theme .owl-dots .owl-dot span {
  background: #116209;
}
.app-slider .owl-theme .owl-dots .owl-dot.active span,
.app-slider .owl-theme .owl-dots .owl-dot:hover span {
  background: #11ea00;
}
.channel-main-wrap {
  border-radius: 16px;
  border: 2px solid #edf3ea;
  justify-content: center;
  align-items: center;
  padding: 20px;
  gap: 80px;
}
.channel-main-wrap .channel-info-wrap {
  gap: 40px;
}
.channel-main-wrap .channel-title {
  color: #0f350c;
  font-family: "Instrument Sans", sans-serif;
  font-size: 48px;
  font-weight: 700;
}
.download-install-box {
  border-radius: 16px;
  border: 2px solid #edf3ea;
  padding: 20px;
}
.footer {
  background: #1a8412;
  background-color: #1a8412;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 20px 40px;
  transition: background-color 0.3s ease;
  background: url("/wp-content/uploads/2025/10/header-shape-scaled.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.footer ::before {
  content: "";
  position: absolute;
  inset: 0;
  /* top, right, bottom, left = 0 */
  background: #1a84122e;
  /* overlay color (change as needed) */
  pointer-events: none;
  /* overlay က click မတားအောင် */
  z-index: -1;
}
.footer .footer-logo-wrap {
  display: flex;
  align-items: center;
}
.footer .footer-logo-wrap img {
  position: relative;
  z-index: 999;
}
.footer #menu-footer,
.footer #menu-footer-mm {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer #menu-footer li a,
.footer #menu-footer-mm li a {
  color: #fff;
  font-family: "Instrument Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.footer #menu-footer li,
.footer #menu-footer-mm li {
  margin-bottom: 20px;
}
.footer #menu-footer li:last-child,
.footer #menu-footer-mm li:last-child {
  margin-bottom: 0;
}
.footer .footer-menu-wrap {
  gap: 40px;
}
.footer .contact-section {
  color: #fff;
  font-family: "Instrument Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.footer label {
  color: #fff;
  font-family: "Instrument Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}
.footer .footer-ph-wrap {
  margin-bottom: 20px;
}
.footer .footer-ph-wrap p {
  margin-bottom: 0;
}
.footer .footer-ph-wrap a {
  color: #fff;
  font-family: "Instrument Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.footer .footer-ph-wrap:last-child {
  margin-bottom: 0;
}
.event-box {
  border-radius: 16px;
  border: 2px solid #edf3ea;
  background: #fff;
  padding: 20px;
}
.event-box .event-title {
  color: #1a8412;
  font-family: "Instrument Sans", sans-serif;
  font-size: 32px;
  font-weight: 600;
}
.event-box .section-xl-title {
  margin-bottom: 35px;
  color: #116209;
}
.event-box .event-info-wrap {
  padding: 0 110px;
}
.winner-info-section .winner-info-box {
  border-radius: 16px;
  border: 2px solid #edf3ea;
  background: #fff;
  padding: 20px 150px;
}
.winner-info-section .winner-title {
  color: #116209;
  font-family: "Instrument Sans", sans-serif;
  font-size: 36px;
  font-weight: 700;
}
.winner-info-section p {
  color: #0f350c;
  font-family: "Instrument Sans", sans-serif;
  font-size: 24px;
  font-weight: 600;
}
.winner-info-section .winner-label-wrap {
  border-bottom: 1px solid #edf3ea;
  margin: 40px 0;
}
.winner-info-section .winner-label-wrap .user-label {
  padding-left: 133px;
}
.winner-result-wrap .date {
  color: #116209;
}
.winner-result-wrap .amount {
  color: #1a8412;
}
.contact-section .contact-main-title {
  color: #0f350c;
  font-family: "Instrument Sans", sans-serif;
  font-size: 32px;
  font-weight: 600;
}
.contact-section .contact-title-wrap {
  margin-bottom: 40px;
}
.contact-section .contact-title {
  color: #0f350c;
  font-family: "Instrument Sans", sans-serif;
  font-size: 24px;
  font-weight: 600;
}
.contact-section .contact-btn a {
  color: #0f350c;
  font-family: "Instrument Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  width: 240px;
}
.contact-section .contact-box {
  border-radius: 16px;
  border: 2px solid #edf3ea;
  padding: 20px 40px 50px 40px;
  margin: 0 50px;
}
.contact-section .contact-btn-wrap {
  gap: 40px;
}
.contact-section .viber-btn {
  background: #725ff1;
}
.contact-section .tele-btn {
  background: #25a2e0;
}
.contact-section .social-btn {
  margin-top: 10px;
  border-radius: 16px;
  text-align: center;
  padding: 20px 25px;
  display: inline-block;
  background: url(/wp-content/uploads/2025/10/header-shape-scaled.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  backdrop-filter: blur(2px);
}
.contact-section .social-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  top: 0;
  border-radius: 16px;
  pointer-events: none;
  z-index: -1;
}
.contact-section .social-btn span {
  color: #fff;
  font-family: "Instrument Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
}
.contact-section .social-btn strong {
  color: #fff;
  font-family: "Instrument Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-right: 3px;
}
.install-section .nav-pills {
  border-bottom: 1px solid #edf3ea;
  gap: 80px;
}
.install-section .nav-pills .nav-link {
  color: #0f350c;
  font-family: "Instrument Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  opacity: 0.4;
  padding: 0;
}
.install-section .nav-link.active {
  background: transparent;
  border-bottom: 2px solid #1a8412;
  border-radius: 0;
  opacity: 1;
}
.install-section .install-main-title {
  color: #0f350c;
  font-family: "Instrument Sans", sans-serif;
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}
.install-section .install-title {
  text-align: left;
  color: #0f350c;
  font-family: "Instrument Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 20px;
}
/**
 * =============================================================================
 * 7. RESPONSIVE MEDIA QUERIES
 * =============================================================================
 * 
 * Breakpoint Overview:
 * --------------------
 * - 320px   : Extra small mobile devices
 * - 375px   : Small mobile devices
 * - 414px   : Standard mobile devices
 * - 576px   : Landscape phones
 * - 768px   : Tablets
 * - 992px   : Small desktops
 * - 1200px  : Large desktops
 * - 1368px  : Extra large desktops
 */
@media (max-width: 1199.98px) {
  .download-app-wrap {
    flex-direction: column;
    max-width: 100%;
    padding: 20px;
  }
  .download-app-wrap .btn-green {
    width: 100%;
    max-width: 100%;
  }
  .key-feature-wrap .feature-title-italic {
    font-size: 28px;
  }
  .key-feature-wrap .feature-icon {
    width: 150px;
    height: 150px;
  }
  .key-feature-wrap .feature-box {
    padding: 25px 15px;
  }
  .contact-section .social-btn {
    padding: 20px;
  }
}
@media (max-width: 991.98px) {
  .section-xl-title {
    font-size: 40px;
  }
  .event-box .event-title {
    font-size: 22px;
  }
  .event-box .event-info-wrap {
    padding: 0;
  }
  .event-box .section-xl-title {
    margin-bottom: 24px;
  }
  .channel-main-wrap {
    flex-direction: column;
    gap: 20px;
  }
  .channel-main-wrap .channel-title {
    font-size: 38px;
  }
  .winner-info-section p {
    font-size: 16px;
  }
  .winner-info-section .winner-label-wrap .user-label {
    padding-left: 72px;
  }
  .winner-info-section .winner-info-box {
    padding: 20px 110px;
  }
  .contact-section .social-btn {
    padding: 12px 12px;
  }
  .contact-section .contact-box {
    margin: 0;
  }
  .contact-section .contact-btn-wrap {
    align-items: center;
    flex-direction: column;
  }
  .contact-section .social-btn {
    padding: 20px 36px;
  }
  .contact-section .contact-title-wrap {
    margin-bottom: 50px;
  }
  .contact-box .contact-title {
    margin-bottom: 30px;
    text-align: center;
  }
  .contact-section .contact-box {
    padding: 20px 40px 40px 40px;
  }
  .contact-section .contact-btn a {
    width: 266px;
  }
}
@media (max-width: 767.98px) {
  .section-padding {
    padding: 60px 0;
  }
  .section-bottom {
    padding-bottom: 60px;
  }
  .section-top {
    padding-top: 60px;
  }
  .key-feature-wrap .feature-text-box {
    padding: 15px 0;
  }
  .channel-main-wrap .channel-title {
    font-size: 28px;
  }
  .footer-col {
    justify-content: center;
    display: flex;
  }
  .footer-logo-wrap {
    margin-top: 20px;
  }
  .download-app-wrap {
    flex-direction: column;
    max-width: 100%;
    padding: 20px;
  }
  .download-app-wrap .btn-green {
    font-size: 16px;
    padding: 16px 20px;
    min-height: 60px;
    width: 100%;
    max-width: 100%;
  }
  .guide-btn {
    text-align: center;
  }
  .download-install-box .mobile-download-img {
    width: 50%;
  }
  .download-install-section .download-logo {
    display: block;
    margin: 0 auto;
    padding-bottom: 20px;
  }
  .download-install-section .section-lg-title,
  .download-install-section .section-content {
    text-align: center;
  }
  .section-lg-title {
    font-size: 28px;
  }
  .section-content {
    font-size: 14px;
  }
  .section-xl-title {
    font-size: 30px;
  }
  .event-box .event-title {
    font-size: 16px;
  }
  .winner-info-section .winner-info-box {
    padding: 20px 50px;
  }
  .winner-info-section .winner-title {
    font-size: 32px;
  }
  .contact-box .contact-title {
    text-align: center;
    margin-bottom: 20px;
  }
}
@media (max-width: 575.98px) {
  .section-padding {
    padding: 40px;
  }
  .section-top {
    padding-top: 40px;
  }
  .section-bottom {
    padding-bottom: 40px;
  }
  .key-feature-wrap .feature-title-italic {
    font-size: 24px;
  }
  .channel-main-wrap .channel-title {
    font-size: 20px;
  }
  .install-section .nav-pills {
    gap: 50px;
    flex-wrap: nowrap;
  }
  .key-feature-wrap .feature-title {
    font-size: 20px;
  }
  .key-feature-wrap .feature-icon {
    width: 120px;
    height: 120px;
  }
  .key-feature-wrap .feature-box {
    padding: 20px 10px;
  }
  .key-feature-wrap .first-img {
    margin: 20px 0;
  }
  .footer-col {
    justify-content: center;
    display: flex;
  }
  .footer-logo-wrap {
    margin-top: 20px;
  }
  .footer .footer-menu-wrap {
    gap: 50px;
  }
  .section-lg-title {
    font-size: 16px;
  }
  .section-content {
    font-size: 12px;
  }
  .download-install-section .download-logo {
    display: block;
    margin: 0 auto;
    padding-bottom: 20px;
  }
  .download-install-section .section-lg-title,
  .download-install-section .section-content {
    text-align: center;
  }
  .download-install-section .section-content {
    margin-bottom: 0;
  }
  .section-xl-title {
    font-size: 24px;
  }
  .event-box .event-title {
    font-size: 14px;
  }
  .event-box .section-xl-title {
    margin-bottom: 20px;
  }
  .winner-info-section .winner-info-box {
    padding: 20px;
  }
  .winner-info-section .winner-title {
    font-size: 20px;
  }
  .winner-info-section .winner-label-wrap {
    margin: 20px 0;
  }
  .contact-section .contact-btn-wrap {
    align-items: center;
    flex-direction: column;
  }
  .contact-section .social-btn {
    padding: 20px 36px;
  }
  .contact-section .contact-title-wrap {
    margin-bottom: 50px;
  }
  .contact-box .contact-title {
    margin-bottom: 30px;
  }
  .contact-section .contact-box {
    padding: 20px 40px 40px 40px;
  }
  .install-section .install-main-title {
    font-size: 24px;
  }
  .install-section .nav-pills .nav-link {
    font-size: 12px;
  }
}
@media (max-width: 413.98px) {
  .download-app-wrap {
    flex-direction: column;
  }
  .download-app-wrap .btn-green {
    font-size: 15px;
    padding: 14px 16px;
    min-height: 56px;
    width: 100%;
    max-width: 100%;
  }
  .btn-green {
    font-size: 15px;
    padding: 14px 16px;
  }
  .contact-section .social-btn {
    padding: 14px 14px;
  }
  .contact-section .contact-btn a {
    width: 226px;
  }
}
