@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

@import url('https://fonts.cdnfonts.com/css/sf-pro-display');

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');


:root {
  --raffle-heading: "Archivo Black", sans-serif;
  --raffle-yelow: #DEE865;
  --primary-bg: #F8F5F0;
  --timer-bg: #DEE966;
  --button-bg: #DEE966;

}

.pb_80 {
  padding-bottom: 80px;
}
/* Fonts */

:root {
  --default-font: 'Plus Jakarta Sans', sans-serif;
  --heading-font: 'Plus Jakarta Sans', sans-serif;
  --nav-font: 'SF Pro Display', sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #444444;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #012970;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #FFDD00;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #012970;
  /* The default color of the main navmenu links */
  --nav-hover-color: #FFDD00;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #FFDD00;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  overflow-x: hidden !important;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-black);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: #FFFEF5;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: #FFDD00;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: #000000;
  padding: 12px 32px;
  background: #FFDD00;
  border-radius: 99px;
  margin: 0 0 0 30px;
  /* border-radius: 4px; */
  color: #000000;
  transition: 0.3s;
  /* font-weight: 500; */
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: var(--dark-black);
  color: var(--white-color);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }




}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    padding: 18px 12px;
    font-family: var(--nav-font);
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/* Listing Dropdown - Desktop */
@media (min-width: 1200px) {
  .navmenu .listing-dropdown {
    position: static;
  }

  .navmenu .listing-dropdown ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .listing-dropdown ul li {
    flex: 1;
  }

  .navmenu .listing-dropdown ul li a,
  .navmenu .listing-dropdown ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
    background-color: var(--nav-dropdown-background-color);
  }

  .navmenu .listing-dropdown ul li a:hover,
  .navmenu .listing-dropdown ul li .active,
  .navmenu .listing-dropdown ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
    background-color: var(--nav-dropdown-background-color);
  }

  .navmenu .listing-dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
}

/* Listing Dropdown - Mobile */
@media (max-width: 1199px) {
  .navmenu .listing-dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .listing-dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .listing-dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  /* padding-bottom: 50px; */
  position: relative;
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 4px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  font-size: 16px;
  color: var(--accent-color);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 40px;
  padding-bottom: 40px;
  /* border-top: 1px solid 
color-mix(in srgb, var(--default-color), transparent 90%); */
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
  .deals_countdown_sec
  {
  	padding : 0px;
  }
    .sticky-top
    {
        position: -webkit-sticky;
        position: -moz-sticky;
        position: -ms-sticky;
        position: -o-sticky;
        position: fixed !important;
        width : 100%;
    }
    .reset-filter-button
    {
    	    width: auto !important;
    }
    .trustpilot-container
    {
    	    background-size: cover !important;
    	    top: -27px !important;
    	    width : 100% !important;
    }
    
    .trust-pilot-box
    {
    	top : 0px !important;
    }
    header form
    {
    	display : none;
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 98px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 56px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.section-title p {
  margin: 10px 0 0 0;
  font-family: 'Plus Jakarta Sans';
  font-style: normal;

  line-height: 32px;
  text-align: center;
  color: #000000;
  font-size: clamp(18px, 5vw, 22px);
  line-height: clamp(28px, 5vw, 32px);

}

.section-title p .description-title {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 50px 0 50px 0;
  display: flex;
  /* background: url(../img/hero-bg.png) top center no-repeat; */
  background-size: cover;
  background-color: #FFFEF5;
}

.hero h1 {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 800;
  font-size: clamp(48px, 5vw, 64px);
  line-height: clamp(52px, 5vw, 72px);
  letter-spacing: -0.03em;
  color: #000000;
}

.hero p {
  margin: 5px 0 30px 0;
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 500;
  font-size: clamp(18px, 5vw, 22px);
  line-height: clamp(28px, 5vw, 28px);

  color: #000000;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover i {
  transform: translateX(5px);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}


@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 40px;
}

.about .content h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-color);
  text-transform: uppercase;
}

.about .content h2 {
  font-size: 24px;
  font-weight: 700;
}

.about .content p {
  margin: 15px 0 30px 0;
  line-height: 24px;
}

.about .content .btn-read-more {
  color: var(--contrast-color);
  background: var(--accent-color);
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1);
}

.about .content .btn-read-more span {
  font-family: var(--default-font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.about .content .btn-read-more i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.about .content .btn-read-more:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Values Section
--------------------------------------------------------------*/
.values .card {
  background-color: var(--surface-color);
  color: var(--default-color);
  padding: 30px;
  box-shadow: 0px 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: 0.3s;
  height: 100%;
  border: 0;
}

.values .card img {
  padding: 30px 50px;
  transition: 0.5s;
  transform: scale(1.1);
}

.values .card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
}

.values .card:hover {
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.values .card:hover img {
  transform: scale(1);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.stats .stats-item i {
  color: var(--accent-color);
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 36px;
  display: block;
  font-weight: 600;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .feature-box {
  padding: 24px 20px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  height: 100%;
}

.features .feature-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.features .feature-box i {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  line-height: 0;
  padding: 4px;
  margin-right: 10px;
  font-size: 24px;
  border-radius: 3px;
  transition: 0.3s;
}

.features .feature-box:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Alt Features Section
--------------------------------------------------------------*/
.alt-features .icon-box {
  display: flex;
}

.alt-features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.alt-features .icon-box i {
  font-size: 44px;
  line-height: 44px;
  color: var(--accent-color);
  margin-right: 15px;
}

.alt-features .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 60px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
}

.services .service-item .icon {
  font-size: 36px;
  padding: 20px 20px;
  border-radius: 4px;
  position: relative;
  margin-bottom: 25px;
  display: inline-block;
  line-height: 0;
  transition: 0.3s;
}

.services .service-item h3 {
  font-size: 24px;
  font-weight: 700;
}

.services .service-item .read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 20px;
}

.services .service-item .read-more i {
  line-height: 0;
  margin-left: 5px;
  font-size: 18px;
}

.services .service-item.item-cyan {
  border-bottom: 3px solid #0dcaf0;
}

.services .service-item.item-cyan .icon {
  color: #0dcaf0;
  background: rgba(13, 202, 240, 0.1);
}

.services .service-item.item-cyan .read-more {
  color: #0dcaf0;
}

.services .service-item.item-cyan:hover {
  background: #0dcaf0;
}

.services .service-item.item-orange {
  border-bottom: 3px solid #fd7e14;
}

.services .service-item.item-orange .icon {
  color: #fd7e14;
  background: rgba(253, 126, 20, 0.1);
}

.services .service-item.item-orange .read-more {
  color: #fd7e14;
}

.services .service-item.item-orange:hover {
  background: #fd7e14;
}

.services .service-item.item-teal {
  border-bottom: 3px solid #20c997;
}

.services .service-item.item-teal .icon {
  color: #20c997;
  background: rgba(32, 201, 151, 0.1);
}

.services .service-item.item-teal .read-more {
  color: #20c997;
}

.services .service-item.item-teal:hover {
  background: #20c997;
}

.services .service-item.item-red {
  border-bottom: 3px solid #df1529;
}

.services .service-item.item-red .icon {
  color: #df1529;
  background: rgba(223, 21, 4, 0.1);
}

.services .service-item.item-red .read-more {
  color: #df1529;
}

.services .service-item.item-red:hover {
  background: #df1529;
}

.services .service-item.item-indigo {
  border-bottom: 3px solid #6610f2;
}

.services .service-item.item-indigo .icon {
  color: #6610f2;
  background: rgba(102, 16, 242, 0.1);
}

.services .service-item.item-indigo .read-more {
  color: #6610f2;
}

.services .service-item.item-indigo:hover {
  background: #6610f2;
}

.services .service-item.item-pink {
  border-bottom: 3px solid #f3268c;
}

.services .service-item.item-pink .icon {
  color: #f3268c;
  background: rgba(243, 38, 140, 0.1);
}

.services .service-item.item-pink .read-more {
  color: #f3268c;
}

.services .service-item.item-pink:hover {
  background: #f3268c;
}

.services .service-item:hover h3,
.services .service-item:hover p,
.services .service-item:hover .read-more {
  color: #fff;
}

.services .service-item:hover .icon {
  background: #fff;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-tem {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 40px 20px;
  text-align: center;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  height: 100%;
}

@media (min-width: 1200px) {
  .pricing .pricing-tem:hover {
    transform: scale(1.1);
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  }
}

.pricing h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
}

.pricing .price {
  font-size: 36px;
  color: var(--heading-color);
  font-weight: 600;
  font-family: var(--heading-font);
}

.pricing .price sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .price span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  font-weight: 300;
}

.pricing .icon {
  padding: 20px 0;
}

.pricing .icon i {
  font-size: 48px;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: var(--default-color);
  text-align: center;
  line-height: 26px;
  font-size: 16px;
  margin-bottom: 25px;
}

.pricing ul li {
  padding-bottom: 10px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
  text-decoration: line-through;
}

.pricing .btn-buy {
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  color: var(--accent-color);
  transition: none;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
  border: 1px solid var(--accent-color);
}

.pricing .btn-buy:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  position: relative;
  padding: 20px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px;
  margin: 40px 30px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.testimonials .swiper-slide {
  opacity: 0.3;
}

@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 0;
  }

  .testimonials .testimonial-item {
    margin: 40px 20px;
  }
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  transition: 0.3s;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .member-img:after {
  position: absolute;
  content: "";
  left: -1px;
  right: -1px;
  bottom: -1px;
  height: 100%;
  background-color: var(--surface-color);
  -webkit-mask: url("../img/team-shape.svg") no-repeat center bottom;
  mask: url("../img/team-shape.svg") no-repeat center bottom;
  -webkit-mask-size: contain;
  mask-size: contain;
  z-index: 1;
}

.team .team-member .social {
  position: absolute;
  right: -100%;
  top: 30px;
  opacity: 0;
  border-radius: 4px;
  transition: 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 60%);
  z-index: 2;
}

.team .team-member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin: 15px 12px;
  display: block;
  line-height: 0;
  text-align: center;
}

.team .team-member .social a:hover {
  color: var(--default-color);
}

.team .team-member .social i {
  font-size: 18px;
}

.team .team-member .member-info {
  padding: 10px 15px 20px 15px;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
}

.team .team-member .member-info span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.team .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  padding-top: 15px;
  line-height: 26px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.team .team-member:hover {
  transform: scale(1.08);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.team .team-member:hover .social {
  right: 8px;
  opacity: 1;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  transition: 0.3s;
  opacity: 0.5;
}

.clients .swiper-slide img:hover {
  opacity: 1;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts .post-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.recent-posts .post-item .post-img img {
  transition: 0.5s;
}

.recent-posts .post-item .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.recent-posts .post-item .post-content {
  padding: 30px;
}

.recent-posts .post-item .post-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.recent-posts .post-item .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.recent-posts .post-item .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.recent-posts .post-item hr {
  color: color-mix(in srgb, var(--default-color), transparent 80%);
  margin: 20px 0;
}

.recent-posts .post-item .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-posts .post-item .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.recent-posts .post-item:hover .post-title,
.recent-posts .post-item:hover .readmore {
  color: var(--accent-color);
}

.recent-posts .post-item:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
}

.contact .info-item i {
  font-size: 38px;
  line-height: 0;
  color: var(--accent-color);
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
}

.blog-posts .post-img {
  max-height: 440px;
  margin: -30px -30px 0 -30px;
  overflow: hidden;
}

.blog-posts .title {
  font-size: 24px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.blog-posts .title a:hover {
  color: var(--accent-color);
}

.blog-posts .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-posts .meta-top ul li+li {
  padding-left: 20px;
}

.blog-posts .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-posts .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-posts .content {
  margin-top: 20px;
}

.blog-posts .content .read-more {
  text-align: right;
}

.blog-posts .content .read-more a {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 30px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog-posts .content .read-more a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
.blog-author {
  padding: 10px 0 40px 0;
}

.blog-author .author-container {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog-author h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0px;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog-author .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-right: 5px;
}

.blog-author p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  padding: 3px 10px;
  position: relative;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget {
  margin-bottom: -10px;
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}

/* farhan css for omaze more css */

:root {
  --dark-black: #000000;
  --gray-color: #B0B0B0;
  --white-color: #FFFFFF;
  --yellow-color: #FFDD00;
  --sky-color: #0081DC;
}

.btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  color: var(--yellow-color);
  border-radius: 99px;
  transition: 0.5s;

}

.small-head {
  padding: 7px 12px;
  background: #F1EFDF;
  border-radius: 80px;
  width: max-content;
  max-width: 100%;
}

.small-head h6 {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #000000;
  vertical-align: middle;
  /* margin-bottom: 12px; */
}

.small-head {
  margin-bottom: 12px;
}


#hero .padding_left {
  padding-left: 5rem;
  padding-top: 1rem;
}

.pb_40 {
  padding-bottom: 40px;
}

.pt_40 {
  padding-top: 40px;
}

.pt_100 {
  padding-top: 25rem;
}

.search-container {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 600px;
  height: 56px;
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid #E1DFCD;
  border-radius: 80px;
  padding: 0px 6px 0px 0px;
  margin-bottom: 20px;
}

.search-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 100%;
  color: #757575;
  background-color: #FAFAFA;
  /* border-right: 1px solid #E0E0E0; */
}

.search-input {
  flex: 1;
  height: 100%;
  padding: 0 6px;
  border: none;
  outline: none;
  background-color: #FFFFFF;
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: -0.01em;
  color: var(--gray-color);
}

.search-input::placeholder {
  color: var(--gray-color);
}
#amount_paid::placeholder {
  color: var(--gray-color);
  font-style: italic;
}

#amount_paid::-ms-input-placeholder { /* Edge 12 -18 */
  color: var(--gray-color);
  font-style: italic;
}
#amount_paid:focus::placeholder {
  color: transparent;
}

.search-button {
  height: 44px;
  border: none;
  transition: background-color 0.2s;
  background: #FFDD00;
  border-radius: 80px;
  padding: 13px 18px;
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: -0.01em;
  color: var(--dark-black);
  vertical-align: middle;
}

.search-button:hover {
  background-color: var(--dark-black);
  color: var(--white-color);
}

ul.custom-bullets li {
  background-repeat: no-repeat;
  margin: 20px 0;
  display: flex;
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 23px;
  vertical-align: top;
  color: #000000;
  list-style: none;
}


.works_head h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 56px;
  line-height: 64px;
  font-size: clamp(40px, 5vw, 56px);
  line-height: clamp(48px, 5vw, 64px);
  text-align: center;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 12px;

}

.works_head p {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 500;
  font-size: clamp(18px, 5vw, 22px);
  line-height: clamp(28px, 5vw, 32px);
  text-align: center;
  color: #FFFFFF;
}


.works_head {
  max-width: 890px;
  margin: 0 auto;
}

.how_we_works {
  background-color: var(--sky-color);
}


/* timeline css */




h1 {
  color: #008b57;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;

}

.timeline {

  font-weight: 400;
  list-style: none;
  padding: 20px 0 20px;
  position: relative;
}

.timeline:before {
  top: 0;
  bottom: 0;
  position: absolute;
  content: " ";
  left: 49%;
  margin-left: -1.5px;
  border: 2px solid #2095E8;
}

.timeline>li {
  margin-bottom: 20px;
  position: relative;

}

.timeline>li:before,
.timeline>li:after {
  content: " ";
  display: table;

}

.timeline>li:after {
  clear: both;
}

.timeline>li:before,
.timeline>li:after {
  content: " ";
  display: table;
}

.timeline>li:after {
  clear: both;
}

.timeline>li>.timeline-panel {
  width: 46%;
  float: left;
  /* border: 1px solid #dbdbdb; */
  /* border-radius: 12px; */
  padding: 20px;
  position: relative;

  /* background:#fff; */

}

/* 
.timeline > li > .timeline-panel:before {
 position: absolute;
 top: 26px;
 right: -15px;
 display: inline-block;
 border-top: 15px solid transparent;
 border-left: 15px solid #ccc;
 border-right: 0 solid #ccc;
 border-bottom: 15px solid transparent;
 content: " ";
} */


/* .timeline > li > .timeline-panel:after {
 position: absolute;
 top: 27px;
 right: -14px;
 display: inline-block;
 border-top: 14px solid transparent;
 border-left: 14px solid #fff;
 border-right: 0 solid #fff;
 border-bottom: 14px solid transparent;
 content: " ";
} */


.timeline>li>.timeline-badge {
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 1.4em;
  text-align: center;
  position: absolute;
  top: 30%;
  left: 49%;
  margin-left: -10px;
  background-color: #FFDD00;
  z-index: 100;
  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
}

.timeline>li.timeline-inverted>.timeline-panel {
  float: right;
}

.timeline>li.timeline-inverted>.timeline-panel:before {
  border-left-width: 0;
  border-right-width: 15px;
  left: -15px;
  right: auto;
}

.timeline>li.timeline-inverted>.timeline-panel:after {
  border-left-width: 0;
  border-right-width: 14px;
  left: -14px;
  right: auto;
}

.timeline-title {
  margin-top: 0;
  color: inherit;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
}

.timeline-body>p,
.timeline-body>ul {
  margin-bottom: 0;
}

.timeline-body>p+p {
  margin-top: 5px;
}


.rounded-pill {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 99px !important;
  padding: 4px 12px;
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  line-height: 16px;
  text-align: center;
  color: #000000;
  text-transform: uppercase;
  margin-bottom: 8px;
}


.get_started h2 {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 800;
  font-size: clamp(32px, 5vw, 41px);
  line-height: clamp(40px, 5vw, 52px);
  margin-bottom: 15px;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.get_started p {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #FFFFFF;
  margin-bottom: 20px;
}


.btn-get-started {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  padding: 12px 32px;
  background: #FFDD00;
  border-radius: 99px;
  /* margin: 0 0 0 30px; */
  color: #000000;
  transition: 0.3s;
}

.btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.btn-get-started:hover i {
  transform: translateX(5px);
}

.brn_gs {
  width: 13rem;
}


.get_started {
  max-width: 450px;
}

.pannel-imgs {
  background: #004F87;
  border-radius: 16px;
}


.img_sec {
  padding: 20px 10px 20px 10px;
  max-height: 300px;
}

.pb_130 {
  padding-bottom: 130px;
}

.step_2 .timeline-panel {
  margin-left: 100px;
}

/* ends timeline */


.white-sec {
  background: #F8F8F8;
  box-shadow: 0px 30px 45px -30px rgba(148, 148, 179, 0.25), 0px 18px 36px -18px rgba(0, 0, 0, 0.1);
  border-radius: 40px 0px 0px 40px;

}

.yelow-sec {

  background: #FFDD00;
  border-radius: 0px 40px 40px 0px
}


.slider-content-sec {
  padding: 60px 80px 40px 80px;
}

.discover_sec h2 {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 800;
  font-size: clamp(32px, 5vw, 44px);
  line-height: clamp(40px, 5vw, 54px);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  color: #000000;
}

/* range slider css */

.slider-container {
  width: 100%;
  /* max-width: 500px; */
  position: relative;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #D9D9D9;
  outline: none;

}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffff;
  cursor: pointer;
  border: 4px solid #0081DC;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
}

.slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  border: 2px solid #0081DC;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.slider::-moz-range-progress {
  background: #0081DC;
  height: 8px;
  border-radius: 4px 0 0 4px;
}

.slider-label {
  position: relative;
  text-align: center;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

.slider-value-display {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffdd00;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 14px;
  white-space: nowrap;
}

.slider-label:hover {
  color: #ffdd00;
}

.slider-label.active {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 800;
  font-size: 18px;
  line-height: 23px;
  color: #0081DC;
}

.slider-value-display::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #ffdd00 transparent transparent transparent;
}

/* .slider-ticks {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  top: 20px;
  pointer-events: none;
}

.slider-tick {
  width: 2px;
  height: 10px;
  background-color: #999;
} */


.rangeslider {
  position: absolute;
  left: 0;
  right: 0;
  max-width: 1366px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 100px;
}


.discover_sec p {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 300;
  color: #000000;
  font-size: clamp(19px, 5vw, 24px);
  line-height: clamp(40px, 5vw, 40px);
  margin-bottom: 10px;
}

.supermart_li ul li {
  border-right: 1px solid #D5D5D5;
}

.supermart_li ul li:last-of-type {
  border-right: none;
}

.yelow-sec {
  padding: 50px 50px 50px 50px;
}

.calculator {
  margin-bottom: 25px;
  text-align: center;
}

.calc-heading h3 {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 800;
  font-size: 40px;
  line-height: 40px;
  text-align: center;
  color: #000000;
  margin-bottom: 8px;
}

.text_cc p {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
  line-height: 32px;
  color: #000000;
  text-align: center;
  margin-bottom: 0;
}

.dots {
  position: absolute;
  top: 300px;
  left: 50px;
}

.dots2 {
  position: absolute;
  top: 300px;
  right: 50px;
}

.brn_gs_1 {
  position: relative;
  top: 420px;
  right: 0;
  left: 0;
  /* transform: translate(37%, 0%); */
  width: 13rem;
  margin: 0 auto;
}

.site_credits h3,
.review_slider h3 {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 800;
  font-size: 56px;
  line-height: 64px;
  text-align: center;
  letter-spacing: -0.03em;
  font-size: clamp(40px, 5vw, 56px);
  line-height: clamp(48px, 5vw, 64px);

  color: #000000;
}


/* .site_credits{
  overflow-x: visible;
} */

.sc_sec {
  background: #FFF9CF;
  border-radius: 40px;
  padding: 60px 40px;
  /* display: flex; */
  justify-content: center;
  /* height: 70dvh; */
}

.sc_sec p {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  text-align: center;
  color: #000000;
}

.sc_slider_sec {
  overflow: hidden;
  margin-bottom: 10px;
}
.view-more a {
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  text-align: center;
  text-decoration-line: underline;
  color: #000000;
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.view-more-btn a
{
	  font-family: 'SF Pro Display';
	  font-style: normal;
	  font-weight: 500;
	  font-size: 18px;
	  line-height: 21px;
	  text-align: center;
	  text-decoration-line: underline;
	  color: #000000;
	  margin-top: 0px;
}

/* progress slider csss */

.slider-wrapper {
  position: relative;
}

.slider-wrapper .slide-button {
  position: absolute;
  top: 50%;
  outline: none;
  border: none;
  height: 50px;
  width: 50px;
  z-index: 5;
  color: #000000;
  cursor: pointer;
  font-size: 2.2rem;
  background: #ECECEC;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transform: translateY(-50%);
}

.slider-wrapper .slide-button:hover {
  background: #ECECEC;
}

.slider-wrapper .slide-button#prev-slide {
  left: -25px;
  /* display: none; */
}

.slider-wrapper .slide-button#next-slide {
  right: -25px;
}

.slider-wrapper .image-list {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 40px;
  list-style: none;
  margin-bottom: 30px;
  overflow-x: hidden;
  scrollbar-width: none;
}

.slider-wrapper .image-list::-webkit-scrollbar {
  display: none;
}

.slider-wrapper .image-list .image-item {
  width: 325px;
  height: auto;
  object-fit: cover;
}

.container .slider-scrollbar {
  height: 24px;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0;
}

.slider-scrollbar .scrollbar-track {
  background: #F5F5F5;
  width: 100%;
  height: 16px;
  display: flex;
  align-items: center;
  border-radius: 0;
  position: relative;
}

.slider-scrollbar:hover .scrollbar-track {
  height: 4px;
}

.slider-scrollbar .scrollbar-thumb {
  position: absolute;
  top: 0;
  background: #D9D9D9;
  bottom: 0;
  height: 16px;
  cursor: grab;
  border-radius: inherit;
}

.slider-scrollbar .scrollbar-thumb:active {
  cursor: grabbing;
  height: 8px;
  top: -2px;
}

.slider-scrollbar .scrollbar-thumb::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  bottom: -10px;
}

/* Styles for mobile and tablets */
@media only screen and (max-width: 1023px) {
  .slider-wrapper .slide-button {
    display: none !important;
  }

  .slider-wrapper .image-list {
    gap: 10px;
    margin-bottom: 15px;
    scroll-snap-type: x mandatory;
  }

  .slider-wrapper .image-list .image-item {
    width: 370px;
    height: auto;
  }

  .slider-scrollbar .scrollbar-thumb {
    width: 20%;
    left: 10px;
  }
}


.rate_text {
  margin-bottom: 24px;
}

.rate_sec {
  margin-bottom: 16px;
}

.rate_text h6 {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
  color: #000000;
}

.rate_text p {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: rgba(0, 0, 0, 0.75);

}


.user-name h3 {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  color: #000000;
}

.user-name p {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.5);

}

.shop_now {
  background-color: rgba(0, 129, 220, 1);
}

.ins_start h3 {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 800;
  font-size: 48px;
  line-height: 60px;
  letter-spacing: -0.02em;
  font-size: clamp(40px, 5vw, 48px);
  line-height: clamp(56px, 5vw, 60px);
  color: #FFFFFF;
  margin-bottom: 24px;

}

.ins_start {
  padding: 50px 0px;
}

.desktop-img {
  position: absolute;
  transform: translate(0%, -35%);
}


.ft_list ul li a {

  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #000000;

}

/* brands page css */

.all_brands {
  background-color: #004F87
}

.centered {
  position: absolute;
  top: 50%;
  left: 22%;
  transform: translate(-50%, -50%);
}

.centered h5 {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 800;

  font-size: clamp(28px, 5vw, 40px);
  line-height: clamp(32px, 5vw, 48px);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  color: #000000;
}

.centered p {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 600;

  color: #0081DC;
  font-size: clamp(15px, 5vw, 16px);
  line-height: clamp(23px, 5vw, 23px);

}

.blue {
  color: #004F87;
}

.carousel-control-next {
  right: -130px;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  display: inline-block;
  width: 48px;
  height: 48px;
  background-position: 50%;
  background: #ECECEC;
  border-radius: 99px;
}

.carousel-control-prev {
  left: -130px;
}

.carousel-control-next-icon {
  background-image: url(../img/arrow-down.png);
  background-position: center;
  background-repeat: no-repeat
}

.carousel-control-prev-icon {
  background-image: url(../img/arrow-left.png);
  background-position: center;
  background-repeat: no-repeat
}

.all_brands .search-container {
  /* position: absolute;
  right: 0;
  left: 0;
  transform: translate(40%, 40%); */
  position: absolute;
  left: 50%;
  transform: translate(-50%, 50%);
}

.all_brands {
  padding: 48px 0px;
}

.fav_stores {
  overflow: hidden !important;
  padding: 100px 0px;
  background-color: #FFFEF5;
}

.padding_28 {
  padding-bottom: 28px;
}

.stores_card {
  /* border: 1px solid #DFDFDF; */
  border-radius: 12px 12px;
}

#fav_stores .swiper-button-prev {
  right: 3%;
  top: -85px;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  margin: 0 auto;
  transform: translateX(10px);
  border: 1px solid #F5F4F4;
  color: #081F28;
  left: auto;
  margin-right: 10px;
}

#fav_stores .swiper-button-next {
  left: auto;
  top: -85px;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  margin: 0 auto;
  transform: translateX(10px);
  border: 1px solid #F5F4F4;
  color: #081F28;
  right: 0px;
}

#fav_stores .swiper-button-prev {
  background-image: url(../img/arrow-left.png) !important;
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
  background-color: #EFEDDF;
}

#fav_stores .swiper-button-next {
  background-image: url(../img/arrow-down.png) !important;
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
  background-color: #EFEDDF;
}

#fav_stores .swiper-button-prev:after,
#fav_stores .swiper-button-next:after {
  content: 'prev';
  display: none;
}

#fav_stores .arrows_top {
  transform: translateX(-1%) translateY(-25rem);
}

#fav_stores .spend_sec_padding {
  padding: 64px 0px;
}

#fav_stores .card_bottom {
  padding: 16px 0px 0px 0px;
  text-align: start;
}

.t1_text h6 {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 23px;
  color: #000000;
}

.t1_text p {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 17px;
  line-height: 23px;
  color: #000000;
}

.stores_text h3 {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  color: #000000;
  font-size: clamp(36px, 5vw, 44px);
  line-height: clamp(45px, 5vw, 55px);

}


.stores_text p {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 500;
  color: #000000;
  font-size: clamp(18px, 5vw, 22px);
  line-height: clamp(28px, 5vw, 32px);

}

/* new swiper css */
#fav_stores .swiper {
  width: 100%;
  height: 100%;
  padding-bottom: 10px;
}

#fav_stores .swiper-slide {
  text-align: center;
  font-size: 18px;
  /* background: #fff; */
  display: flex;
  justify-content: center;
  align-items: center;
}

#fav_stores .swiper-slide {
  width: 80%;
}

#fav_stores .swiper-slide:nth-child(2n) {
  width: 60%;
}

#fav_stores .swiper-slide:nth-child(3n) {
  width: 40%;
}

#fav_stores .swiper-slide img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  max-height: 200px;
  border-radius: 8px;
}

#fav_stores.swiper-horizontal>.swiper-pagination-progressbar,
#fav_stores .swiper-pagination-progressbar.swiper-pagination-horizontal {
  top: inherit;
  bottom: -40px;
  background: #F5F5F5;
  height: 16px;
}


#fav_stores .swiper {
  overflow: visible !important;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #D9D9D9;
  height: 16px !important;
}

.c_img {
  margin-bottom: 10px;
}

.choose_brands {
  /* background-color: #FFFEF5; */
  overflow: visible;
  /* margin-bottom: 140px; */
}


/* brands details page css */
.center-div {
  background: #F8F8F8;
  border-radius: 12px;
  width: 100%;
  top: 220px;
  position: relative;
  padding: 50px 30px;
  z-index: 99;
  margin-bottom: 80px;
}

.center-img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 250px;
  width: 100%;
  margin-bottom: 18px;
}
.logoFreeEntries
{
	    bottom: 143px !important; 
}
    

.back_site {
  overflow: visible;
  background-color: #015130;
  margin-bottom: 145px;
  padding: 0px;
}

.form_inp input {
  background: #FFFFFF;
  border: 1px solid #E1DFCD;
  border-radius: 8px;
  padding: 15px 18px;
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: -0.01em;
  color: #000000;
}

.form_se h5 {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 800;

  text-align: center;
  letter-spacing: -0.03em;
  font-size: clamp(28px, 5vw, 32px);
  line-height: clamp(35px, 5vw, 40px);

  color: #000000;
}

.how_works .ins_start {
  padding: 20px 0px 0px 0px;
}


.hows_works {

  background: #F8F8F8;
  border-radius: 12px;
  padding: 36px;
}

.bullet-item {
  position: relative;
  padding-left: 50px;
  margin-bottom: 20px;

}

.bullet-number {
  position: absolute;
  left: -15px;
  top: 10px;
  width: 48px;
  height: 48px;
  background-color: #FFDD00;
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  z-index: 99;
}

.bullet-content {
  padding-top: 6px;
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 27px;
  color: #000000;
}
.bullet-content p
{
	padding: 10px;
}

.bullet-item:last-child {
  margin-bottom: 0;
}

.how_works .ins_start h6 {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: -0.03em;
  color: #000000;
}

.how_works .ins_start p {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #000000;
}
#amount_paid-error
{
	display : none !important
}
input.has-error
{
	border-color : red !important;
}
.form-control:focus
{
	box-shadow: none !important;
}

.gft_cards {
  background-color: #FFDD00;
}

.gft_head h5 {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: clamp(36px, 5vw, 40px);
  line-height: clamp(45px, 5vw, 55px);
  color: #000000;
}


.gft_head p {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 500;

  font-size: clamp(18px, 5vw, 22px);
  line-height: clamp(28px, 5vw, 32px);

  color: #000000;

}

/* .gtf_crds {
  position: absolute;
  top: 40px;
  left: 0;
  z-index: 99999;
} */
.blue_bg {
  position: relative;
}


.box_shadow {
  background: #01A7E1;
  opacity: 0.1;
  border-radius: 16px;
  height: 160px;

}

.gtf_crds {
  transform: translate(0%, -40%);
}


#choose_brands .gft_head h5 {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  text-align: center;
  letter-spacing: -0.03em;
  color: #000000;
  margin-bottom: 16px;
}

.price_sec h6 {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 800;
  font-size: 24px;
  line-height: 28px;
  color: #000000;
  text-align: center;

}

.price_sec p,
.pdt_date {
  font-family: 'Plus Jakarta Sans';
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  color: #000000;
}

.reveal_gift a {
  margin-bottom: 8px;
  font-size: 13px;
  line-height: 24px;
}

.small_text {
  text-align: center;
}

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


.layer img {
  width: 100%;
  height: 200px;
}
.layer
{
	    width: 100%;
}


.hidden-menu {
  position: fixed;
  left: 0px;
  right: 0px;
  width: 100%;
  background: rgb(255, 255, 255);
  z-index: 9999;
      top: 73px;
}


/* t menu css */

input#tmenu {
  display: none;
}

.micon {
  cursor: pointer;
  height: 35px;
  width: 24px;
}

label.micon {
  position: relative;
  z-index: 200;
}

.mtext {
  display: block;
  float: left;
  padding-top: 6px;
  padding-left: 30px;
  color: #222222;
}

.micon .tmenu,
.micon .tmenu::before,
.micon .tmenu::after {
  background: #222222;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  transition: background ease 0.3s, top ease 0.3s 0.3s, transform ease 0.3s;
  width: 20px;
}

.micon:hover .tmenu,
.micon:hover .tmenu::before,
.micon:hover .tmenu::after {
  background: #222222;
}

.micon .tmenu {
  top: 18px;
}

.micon .tmenu::before {
  top: -6px;
}

.micon .tmenu::after {
  top: 6px;
}

#tmenu:checked+.micon .tmenu {
  background: transparent;
}

#tmenu:checked+.micon .tmenu::before {
  transform: rotate(45deg);
}

#tmenu:checked+.micon .tmenu::after {
  transform: rotate(-45deg);
}

#tmenu:checked+.micon .tmenu::before,
#tmenu:checked+.micon .tmenu::after {
  top: 0;
  transition: top ease 0.3s, transform ease 0.3s 0.3s;
}

.tnav {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  height: 100vh;
  padding-top: 60px;
  position: fixed;
  transition: width ease 0.6s;
  width: 60px;
  z-index: 100;

  overflow: hidden;
}

#tmenu:checked~.tnav {
  width: 200px;
}

.tnav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tnav li {
  cursor: pointer;
  display: block;
  line-height: 60px;
  padding-left: 16px;
  white-space: nowrap;
}

.tnav i {
  color: #9fb1bd;
  margin-right: 24px;
  vertical-align: text-bottom;

}

.list_text {
  padding: 24px;
  height: 627px;
  background-color: #FFFEF5;
  z-index: 99999;
  position: relative;
}

.list_text li {
  padding: 12px 0px;
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #000000;
  position: relative;


}

.btn_div {
  position: relative;
  top: 100px;
}

.list_text ul::after {
  background: rgba(89, 89, 89, 0.8);
  backdrop-filter: blur(7.55px);
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 70%;
  bottom: -210px;
  z-index: 1;
}

.gs_phne_1 a {
  background: #FFFFFF;
  border: 1px solid #ECEBE3;
  border-radius: 99px;
}

/* t menu css ends */


.list_text ul li a {
  font-family: 'SF Pro Display';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #000000;
}

/* 
*{
  outline: 1px solid red;
} */

.choose_brands {
  padding-bottom: 100px;
  padding-top: 80px;
}

.fav_stores .container {
  overflow: hidden;
}

.bg-im picture {
  display: flex;
  justify-content: center;
}


.ins_start a {
  max-width: 284px;
}

.ft_list {
  float: right;
}



.carousel-control-next,
.carousel-control-prev {
  opacity: 1;
  top: -25px;
}



.column-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* Tablet view */
@media (max-width: 992px) {
  .column-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile view */
@media (max-width: 768px) {
  .column-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
}

/* Very small screens */
@media (max-width: 480px) {
  .column-container {
    grid-template-columns: repeat(2, 1fr);
  }
}


.hows_works h6 {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: -0.03em;
  color: #000000;
  margin-bottom: 16px;

}

.left_dots {
  position: relative;
  top: -63px;
  left: 15px;

}


.right_dots {
  position: relative;
  bottom: 60px;
  right: 23px;

}

.choose_brands .gft_text {
  width: 79%;
  margin: 0 auto;

}


.bullet-item::after {
  content: "";
  background-image: url(../img/vl.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50px;
  left: 10px;
  width: 100%;
  height: 100%;
}


.bullet-item:last-child::after {

  background-image: none;
}



.nbs_sldier {
  display: none !important;
}

.container-xl,
.container {
  max-width: 1240px;
}

.c_img img {
  display: block;
    width: 100%;
    height: 170px;
    object-fit: contain;
    max-height: 170px;
    border-radius: 8px;
    border: 1px solid #c9c4c4;
}

/* ends */

@media (min-width: 1900px) {

  #header .container-fluid,
  .container {
    max-width: 1765px;
  }
}

/* media queries farhan css */


@media (min-width: 1930px) {

  .slider-bg img {
    width: 95% !important;
    margin: 0 auto;
    display: flex;
  }

  .desktop_margin {
    margin-left: 80px;
  }

  .hero {

    padding: 50px 0 150px 0;


  }

  .left_dots {
    width: 100px;
    height: 100px;
    transform: translate(180%, -34%);
  }

  .right_dots {
    width: 100px;
    height: 100px;
    transform: translate(-240%, -34%);
  }

  .center-div {

    width: 60%;

  }

  .get_started {
    max-width: 490px;
  }

  .yelow-sec {
    padding: 50px 50px 65px 50px;
  }

  #header .container-fluid,
  .container {
    max-width: 1568px;
  }

  .brn_gs_1 {

    top: 385px;

  }

  #hero .padding_left {
    padding-left: 15.7rem;
    padding-top: 5rem;
  }
  

  .how_we_works {
    padding-top: 90px;
  }

  /* .ins_start {
    padding: 70px 0px;
    max-width: 500px;
  } */
header .container-fluid
  {
  	max-width: 100% !important;
    --bs-gutter-x: 32.5rem;
  }

}
@media (min-width: 1500px) {
	
	.center-div
	{
		top: 153px;
	}
	.back_site
	{
		margin-bottom: 87px;
	}
	
}  

.supermarket-text
{
	width: 71%;
    margin: auto;
}
#remindva-error
{
	color : red;
}


@media only screen and (max-width: 420px) and (min-width: 350px) {
  .list_text {

    height: 95dvh;

  }
  .supermarket-text
  {
  	width : 100%;
  	padding-bottom: 30px;
  }
  .back_site {
        margin-bottom: 204px !important;
    }
    .back_site2
    {
    	        margin-bottom: 216px !important;
    }

  .sc_sec {
    height: 81vh !important;
  }
      .center-img {
        bottom: 319px !important;
    }
    .logoFreeEntries {
        bottom: 207px !important;
    }
}
@media only screen and (max-width: 450px) and (min-width: 421px) {
	    .center-img {
        bottom: 314px !important;
    }
    .sc_sec {
    height: 72vh !important;
  }
}

@media (max-width: 640px) {

  .sc_sec {

    padding: 60px 10px;


}
.how_works .ins_start p
{
	    margin-top: 18px;
}
.pay_by_direct , .pay_by_card
{
	width: 100%;
    margin-left: 0px !important;
}
.shop_now .ins_start h3
{
	text-align: center;
}
.shop_now .ins_start a
{
	width: 100%;
    max-width: 100%;
}
main
    {
        margin-top: 80px;
    }
.rafflehouse main , .raffle-house main
{
	 margin-top: 0px;
}
  .c_img img {
   
    width: 100%;
    height: auto;
   
}

  #carouselExampleFade  {
    display: none !important;
  }

  
  .nbs_sldier {
    display: block !important;
  }

  .bullet-number {
    
    top: 18px;

    left: -12px;
    width: 49px;
    height: 49px;
  
}

.bullet-content {

  font-size: 19px;
  line-height: 27px;
  color: #000000;
}


  #carouselExampleFade .carousel-inner {
    position: relative;
    width: 90%;
    overflow: visible;
    margin: 0 auto;
  }

  .centered h5 {

    max-width: 200px;
  }

  .review_slider {
    padding-top: 0px;
  }

  .hows_works {
    padding: 36px 24px;
  }

  .bullet-item::after {

    display: none;
  }

  .ft_list {
    float: unset;
  }


  .footer .copyright p {
    max-width: 290px;
    margin: 0 auto;
  }

  #brands_details .fav_stores {

    padding: 60px 0px;

  }

  .back_site {
    height: 40vh;
  }

  #carouselExampleFade img {
    width: 100% !important;
  }

  .choose_brands {
    padding-bottom: 80px;
    /* padding-top: 10px; */
  }

  .fav_stores .container {
    overflow: visible;
  }


  .supermart_li ul.custom-bullets li {
        margin-bottom: 0px;
        border-right: 0px;
        border-bottom: 1px solid #D5D5D5;
        padding-bottom: 5px;
  }
  .supermart_li ul.custom-bullets li span.pe-3
  {
  	width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .supermart_li ul.custom-bullets li .form-group
  {
  	
  }

  .supermart_li .custom-bullets {
    display: grid !important;
    grid-template-columns: repeat(1, 1fr) !important;
  }

  /* #choose_brands .fav_stores {
   
    padding: 40px 0px;
  
} */

  .stores_text p,
  .card_box {
    margin-bottom: 25px;
  }

  .gf_tt {
    padding-top: 50px;
  }


  #brands_details #fav_stores .card_bottom {

    margin-bottom: 30px;
  }

  .slider-sec {
    padding: 0px 10px;
  }


  .hero p {
    text-align: center;
  }

  .header {
    border-bottom: 1px solid #ECEBE3;
  }

  .layer {
    width: 100%;
  }

  .blue_bg {
    max-height: 500px;
  }

  .reveal_gift {
    margin-bottom: 8px;
  }

  .gtf_crds {
    transform: translate(0%, -45%);
  }

  .reveal_gift a {
    width: 245px;
    margin: 0 auto;
  }

  .box_shadow {

    height: 210px;
  }

  .back_site {
    margin-bottom: 270px;

  }

  .center-img {
    bottom: 357px;

  }
  .pay_by_card, .pay_by_bank
  {
  	width : 100%;
  }

  .left_dots,
  .right_dots {
    display: none !important;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: none !important;
  }

  /* .all_brands{
    overflow-x: hidden !important;
  } */

  .centered {
    left: 37%;
    top: 41%;
  }

  #fav_stores .card_bottom {
    padding: 20px 0px 15px 0px;
    text-align: start;
    margin-bottom: 60px;
  }

  .all_brands .search-container {
    position: absolute;
    right: 0;
    left: 0;
    transform: translate(0%, 40%);
  }

  .footer .copyright {
    padding-top: 40px;
    padding-bottom: 40px;
    border-top: unset;
  }

  .sc_sec {
    height: 52vh;
  }

  .brn_gs_1 {

    top: 53rem;

  }

  .dots2,
  .dots {
    display: none;
  }

  .slider-content-sec {
    padding: 30px;
  }

  .yelow-sec {
    background: #FFDD00;
    border-radius: 0px 0px 32px 32px;
  }

  .site_credits.pt_100 {
    padding-top: 50rem;
  }

  .white-sec {
    background: #F8F8F8;
    box-shadow: unset;
    border-radius: 32px 32px 0px 0px;
  }

  .hero {
    padding-bottom: 0px;
  }

  .small-head {
    display: none;
  }

  .desktop-img {
    position: relative;
    transform: translate(0%, 0%);
  }

  .review_slider .section-title p,
  .review_slider h3 {
    text-align: start;
  }

  .slider-wrapper .image-list .image-item {
    width: 430px;
    height: auto;
  }

  .slider-wrapper .image-list {
    padding-left: 0px;
    gap: 50px;
  }

  #hero .padding_left {
    padding-left: 16px;
    padding-bottom: 70px;
    padding-top: 50px;
  }

  .header .btn-getstarted,
  .small-head h6 {
    display: none;
  }

  .hero h1 {
    text-align: center;
    margin-bottom: 12px;
  }


  .step_2 .timeline-panel {
    margin-left: 0;
  }

  .timeline>li {
    margin-bottom: 10px;
    position: relative;
    margin-left: 30px;
  }

  .pb_130 {
    padding-bottom: 50px;
  }

  .timeline>li>.timeline-badge {
    left: -20px;
  }


  .timeline:before {
    left: 10px;
  }

  .timeline>li>.timeline-badge {
    top: 20%;
  }
  .accordion-body p
  {
  	    word-break: unset !important;
  }


}



@media screen and (max-width: 415px) {
      
    .btn_div {
        position: relative;
        top: 20px;
    }
}

@media screen and (max-width: 376px) {
     
    .btn_div {
        position: relative;
        top: 20px;
    }
    .calculator {
	    margin-bottom: 19px;
	    text-align: center;
	}
	.yelow-sec {
	    padding: 66px 50px 66px 50px;
	}
	.slide-lables-2
	{
		width : 45% !important;
	}
    
}
.slide-lables-2
{
	width : 42%;
}
.brand-details-img img
{
	border: 2px solid #fff;
    border-radius: 50%;
    width: 170px;
    height: 170px;
    padding: 25px;
}
#fav_stores
{
	background-color: #FFFEF5;
}

.supermart_li .form-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.supermart_li  .form-group label {
  position: relative;
  cursor: pointer;
}

.supermart_li  .form-group label:before {
  content:'';
  -webkit-appearance: none;
  background-color: transparent;
  background: url('../img/cross.png');
  border: 0px;
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
  background-repeat: no-repeat;
}

.supermart_li .form-group input:checked + label:after {
	content: '';
	display: block;
	position: absolute;
	top: 2px;
	left: 0px;
	width: 19px;
	height: 21px;
	background: url(../img/check.png);
	z-index: 999999;
	background-repeat: no-repeat;
	background-color: #F8F8F8;
}
.selected_category
{
	text-transform: lowercase;
}

.verification_code_reveal .otp-field input
{
	    height: 52px;
		width: 50px;
		border-radius: 6px;
		outline: none;
		font-size: 1.125rem;
		text-align: center;
		border: 1px solid #ddd;
}

.verification_code_reveal p.timer_text
{
	color: var(--C-Secondary-Primary, var(--C-color-gray-300, #828B97));
	font-feature-settings: 'clig' off, 'liga' off;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 24px;
	font-family: "Roboto", sans-serif;
}
.verification_code_reveal button {
	gap: 10px;
	align-self: stretch;
	border-radius: 12px;
	background: #F2F2F2;
	margin-top: 20px;
	border-color: transparent;
	color: #828B97;
	font-feature-settings: 'clig' off, 'liga' off;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 24px;
	font-family: 'Poppins', sans-serif;
}

.verification_code_reveal  .send_email_again_withdraw
{
	color: #01B694;
	font-feature-settings: 'clig' off, 'liga' off;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 24px;
	text-decoration-line: underline;
	margin-bottom: 20px;
	display: block;
}
.gift_card_text_area
{
	width : 200px;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

#terms_page ol {
  list-style-type: none;
  counter-reset: item;
  margin: 0;
  padding: 0;
}

#terms_page ol li {
  display: table;
  counter-increment: item;
  margin-bottom: 0.6em;
}
#terms_page ol li ul li
{
	 counter-increment: none;
	 display: list-item;
}

#terms_page  ol li:before {
  content: counters(item, ".") ". ";
  display: table-cell;
  padding-right: 0.6em;
}
#terms_page  ol li ul
{
	list-style-type : disc;
}
#terms_page  ol li ul li:before {
  content: "" !important;
  display: block;
  padding-right: 0.6em;
}

#terms_page  ol li ol li {
  margin: 0;
}

#terms_page ol li ol li:before {
  content: counters(item, ".") " ";
}
.how_works .ins_start h6 button
{
	font-family: 'SF Pro Display';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    text-align: center;
    text-decoration-line: underline;
    color: #000000;
    margin-top: 0px;
    border: 0;
    background: transparent !important;
    padding: 0;
    outline: 0;
    box-shadow: none;
}
.how_works .ins_start .accordion-body
{
	padding-left: 0px;
}
.how_works .ins_start .accordion-item
{
	border : 0px !important;
}
.how_works .ins_start h6 button::after
{
	display : none
}
.d-none-hidden
{
	visibility : hidden
}
.bullet-content
{
	padding-top: 18px;
    padding-bottom: 18px;
}
.bullet-content p
{
	display : none;
}
#header .search-container {
      max-width: 510px;
    }

    #header .search-button {
      font-size: 14px;
      line-height: 18px;

    }

    #header .search-input {
      font-size: 13px;
    }

    #header .search-icon {
          width: 40px;
    }

     .header .btn-getstarted {
      margin: 0 0 0 10px;
    }
header form
{
	width: 30%;
    margin: 0 auto;
}


.raffle_house_home h1 {
  font-family: var(--raffle-heading);
  font-style: normal;
  font-weight: 800;
  font-size: clamp(32px, 5vw, 58px);
  line-height: clamp(40px, 5vw, 58px);
  margin-bottom: 0px;
  color: var(--white-color);
}

.raffle_house_home {
  background-image: url(../img/raffle-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 73dvh;
  background-position: 100% 100%;
  padding: 90px 0px;
  display: flex;
  position: relative;
  border-radius: 40px;
  margin: 15px 15px 0px 15px;
  margin-bottom: 520px;
  position: relative;
}

.raffle_gift_cards {
  background: var(--raffle-yelow);
  border-radius: 40px;
  width: 90%;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  z-index: 99;
}

.raffle_text_sec {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 0px;
}

.card-custom {

  border: none;

  cursor: pointer;
}

.card-custom:hover {
  transform: translateY(-5px);
  /* box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15); */
  transition: transform 0.3s ease-in-out;
}




.card-img-container img {
  max-width: 90%;
  max-height: 100%;
  object-fit: cover;
  height: 100%;
}

.card-body-custom {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 23px;
  color: #000000;
  margin-top: 20px;
}

.card-body-custom strong {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
  color: #000000;
}

.none-of-these-btn {
  display: block;
  margin: 48px auto 0;
  width: fit-content;
  font-family: var(--raffle-heading);
  font-style: normal;
  font-weight: 800;
  font-size: 20px;
  background: #FFFFFF;
  border-radius: 99px;
  padding: 16px 40px;
  line-height: 32px;
  letter-spacing: -0.03em;
  text-decoration-line: underline;
  color: #043C3A;
  /* font-weight: bold; */
}

.raffle_gift_cards .section-title {
  text-align: center;
  padding-bottom: 40px;
  position: relative;
}

.raffle_gift_cards .section-title {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 600;

  text-align: center;
  font-size: clamp(16px, 5vw, 24px);
  line-height: clamp(24px, 5vw, 32px);

  color: #000000;
}

.none-of-these-btn:hover {
  background-color: #033b3a;
  border-color: #033b3a;
  color: #dee865;
}


/* good news page css */

.goodnews-section {
  background-color: #033B3A;
  border-radius: 40px;
  margin: 15px 15px 0px 15px;
}

.section-padding {
  padding: 60px 0;
}



.card_custom_text h2 {
  font-family: var(--heading-font);
  font-style: normal;
  font-weight: 800;
  margin-bottom: 16px;
  color: #FFFFFF;
  font-size: clamp(32px, 5vw, 48px);
  line-height: clamp(40px, 5vw, 58px);

}

.card_custom_text p {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400;

  color: #FFFFFF;
  font-size: clamp(16px, 5vw, 20px);
  line-height: clamp(32px, 5vw, 32px);

}

.btn-custom-yellow {
    border: none;
    width: 34%;
    text-decoration: none;
    background: #DEE965;
    border-radius: 99px;
    padding: 9px 19px;
    font-family: var(--heading-font);
    font-style: normal;
    font-weight: 800;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: -0.03em;
    color: #043C3A;
}

.btn-custom-yellow:hover {
  background-color: #e6c500;
  color: #000;
}
.view-all-good-news
{
	color : #fff;
	text-decoration: underline !important;
	font-weight: 800;
	font-family: var(--heading-font);
}


.select_brands {
  max-width: 890px;
  margin: 0 auto;
  margin-bottom: 20px;
}



.how-it-works-section h2,
.select_brands {
  margin-bottom: 40px;
  font-family: var(--heading-font);
  font-style: normal;
  font-weight: 800;

  color: #000000;
  font-size: clamp(28px, 5vw, 48px);
  line-height: clamp(36px, 5vw, 58px);

}

.card_custom_text {
  padding-left: 50px;
}



.how-it-works-section .step-text {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400;

  color: #000000;
  font-size: clamp(16px, 5vw, 20px);
  line-height: clamp(26px, 5vw, 32px);

}

.how-it-works-section .step-number {
   background-color: #033B3A; 
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-right: 15px;
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 800;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 16px;
  font-size: 1.1em;
  flex-shrink: 0;
  margin-right: 15px;
  position: relative;
  /* Essential for pseudo-elements */
  z-index: 1;
  /* Ensure the number is above the line */
}

.how-it-works-section {
  max-width: 80%;
  margin: 0 auto;
}


@media (min-width: 992px) {
  .how-it-works-section .col-lg-3:not(:last-child) .step-number::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;

    width: 300px;

    height: 2px;
    border-top: 2px dashed #DBCAB8;
    /* Dashed line style */
    transform: translateY(-50%);
    z-index: -1;
    /* Places the line behind the step number circle */
  }
}

/* Horizontal dashed line for medium screens (md breakpoint - 2 columns) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .how-it-works-section .col-md-6:nth-child(odd) .step-number::after {
    /* Applies only to the first step in each pair */
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 80px;
    /* Length of the dashed line, visually adjusted */
    height: 2px;
    border-top: 2px dashed #ccc;
    transform: translateY(-50%);
    z-index: -1;
  }

  .how-it-works-section .col-md-6:nth-child(even) .step-number::after {
    display: none;
    /* Hides the line for the second step in each pair */
  }
}

/* Vertical dashed line for small screens (sm breakpoint - 1 column) */
@media (max-width: 767.98px) {
  .how-it-works-section .step-card {
    flex-direction: column;

    align-items: center;

    text-align: center;
    margin-bottom: 25px;

  }

  .how-it-works-section .step-number {
    margin-right: 0;
    /* Removes horizontal margin */
    margin-bottom: 10px;
    /* Adds space below the number */
  }

  .how-it-works-section .col-sm-12:not(:last-child) .step-number::after {
    display: none;
  }
}

.highlight-section {
  background-color: #DEE865;
  color: #000;
  border-radius: 40px;
  padding: 64px;
  text-align: center;
  max-width: 95%;
  margin: 0 auto;
}

.highlight-section h3 {
  /* margin-bottom: 20px; */
  font-family: var(--heading-font);
  font-style: normal;
  font-weight: 800;

  font-size: clamp(32px, 5vw, 48px);
  line-height: clamp(40px, 5vw, 64px);

  text-align: center;
  color: #033B3A;
}

.highlight-section p {
  font-family: var(--heading-font);
  font-style: normal;
  font-weight: 500;
  margin-bottom: 40px;
  font-size: clamp(25px, 5vw, 32px);
  line-height: clamp(40px, 5vw, 64px);

  text-align: center;
  color: #000000;
}

.highlight-section .btn-light-green {
  border: none;
  text-decoration: none;
  background: #FBFFC7;
  border-radius: 8px;
  padding: 16px 24px;
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  text-align: center;
  color: #000000;
}

.highlight-section strong {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
  text-align: center;
  color: #000000;
}

.highlight-section .btn-light-green:hover {
  background-color: #c0d87a;
}

.brands-section {
  text-align: center;

}

.brands-section P {
  font-size: 20px;
}


.brands-section .btn-view-all {
  background-color: #ffda00;
  /* Yellow from image */
  color: #000;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 10px 30px;
  text-decoration: none;
  margin-top: 40px;
}

.brands-section .btn-view-all:hover {
  background-color: #e6c500;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .section-padding {
    padding: 40px 0;
  }



  .how-it-works-section .step-card {
    flex-direction: column;
    text-align: start;
  }

  .how-it-works-section .step-number {
    margin-right: 0;
    margin-bottom: 30px;
  }

  
}

/* ends good news  */



@media screen and (min-width: 1024px) and (min-height: 600px) {
  .raffle_gift_cards {
    top: 65%;
  }

  .raffle_house_home {
    margin-bottom: 600px;
  }

}

/* Responsive adjustments */
@media (min-width: 767.98px) {


}




@media (min-width: 320px) and (max-width: 375px) {
  .raffle_house_home {
    min-height: 60dvh;

  }

  .raffle_gift_cards {
    top: 60%;
    padding: 40px 20px;
  }
}


/* asda image sec css */

.brand_id h1 {

  color: #fff;
  text-shadow: #AABB9E 1px 0 10px;
  font-weight: 900;
  font-size: clamp(30px, 5vw, 50px);
line-height: clamp(50px, 5vw, 70px);

}

.asda_sec {
  background: #57A32E;
  border-radius: 40px;
  padding: 70px 140px;
}

.asda_circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: #71C242;
  filter: drop-shadow(0px 0px 30px rgba(0, 0, 0, 0.1));
  margin-bottom: 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.asda_circle img
{
	border-radius: 50%;
}

.asda_text p {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 0px;
}

/* over lap sec css */

.container_overlap .left_dots {
  position: relative;
  top: 24px;
  left: 15px;
}

.container_overlap .right_dots {
  position: relative;
  top: 24px;
  left: 15px;
}

.container_overlap {
  position: relative;
  width: 95%;
  max-width: 100%;
  height: 475px;
  overflow: visible;
  margin-bottom: 640px !important;
  margin: 0 auto;
}

.background-div h1 {
  font-family: var(--raffle-heading);
  font-style: normal;
  font-weight: 800;
  font-size: clamp(32px, 5vw, 58px);
  line-height: clamp(40px, 5vw, 58px);
  margin-bottom: 0px;
  color: var(--white-color);
}

.background-div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #033B3A;
  border-radius: 40px;
  /* display: flex;
  justify-content: center;
  align-items: center; */

  z-index: 1;

}

.foreground-div h2 {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 600;
  text-align: center;
  font-size: clamp(16px, 5vw, 24px);
  line-height: clamp(24px, 5vw, 32px);
  color: #000000;
}

.foreground-div {
  position: absolute;
  bottom: 0;
  left: 50%;
  background: var(--raffle-yelow);
  padding: 60px;
  border-radius: 40px;
  z-index: 99;
  transform: translate(-50%, 70%);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  width: 90%;
}

.foreground-div .col a
{
	    display: grid
}
.foreground-div .c_img {
    margin-bottom: 10px;
    background: #fff;
    border-radius: 8px;
}

.login-utton-banner
{
	width : 50%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .container_overlap {
    width: 95%;
    height: 300px;
    margin-bottom: 144rem !important;
  }


  .foreground-div {
    padding: 12px 25px;

  }
}

@media (max-width: 640px) {


  .raffle_house_home {
    min-height: 46dvh;
    margin-bottom: 140rem;

    width: 95%;
    position: relative;
    background: #033B3A;
    border-radius: 16px;
  }

  .raffle_gift_cards {
    top: 45%;
    padding: 40px 20px;
  }


  #card-container {
    text-align: center;
  }

  .card-body-custom {

    padding-left: 15px;
    text-align: start;
    margin-top: 5px;
  }

  .raffle_text_sec {
    max-width: 300px;
  }

  .card_custom_text {
    padding: 40px 10px;
    text-align: center;
    padding-top: 0;

  }

  .btn-custom-yellow {
    width: 100%;
  }
  .yellow-good-news-button
  {
  	    flex-direction: column;
  }

  .how-it-works-section {
    max-width: 100%;
  }

  .highlight-section {
    border-radius: 16px;
    padding: 25px;

  }

  .brands-section {
    padding: 24px;
  }


  #problem_page .brands-section {
    padding: 50px 0px 0px 0px;
  }

  .card-img-container img {

    object-fit: contain;

  }
  
  .asda_sec {
    background: #57A32E;
    border-radius: 40px;
    padding: 34px 63px;
  }

  .asda_circle {
    width: 150px;
    height: 150px;

  }

 .asda_circle img
 {
	width: 134px;
 }
 
 .container_overlap {
        width: 95%;
        height: 340px;
        margin-bottom: 61rem !important;
    }

.foreground-div {
        transform: translate(-50%, 85%);
        padding: 40px 0px;
        border-radius: 16px;
    }
.background-div {
        position: absolute;
        height: 430px;
        border-radius: 16px;
        width: 98%;
        margin: 0 auto;
        left: 0;
        right: 0;
    }

.how-it-works-section h2
{
	margin-bottom: 14px;
}
.how-it-works-section .step-card
{
	flex-direction: row;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 12px;
    margin-bottom: 0px;
}
.how-it-works-section .step-number
{
	margin-bottom : 0px;
}
.how-it-works-section .step-text
{
	width: 80%;
}
.login-utton-banner
{
	width : 100%;
}
.foreground-div h2
{
	    padding-bottom: 10px;
}
.foreground-div .brands_list 
{
	    margin-top: 0px !important;
}



}


.modal-content {
  border-radius: 0rem;
  /* padding: 2rem; */
  padding: clamp(1rem, 2vw + 1rem, 2rem);

  width: 100%;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.btn-custom-yellow {
  background-color: #DEE965;
  color: #000000;
  border: none;
  border-radius: 0.75rem;
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  width: 100%;
  text-align: center;
  transition: background-color 0.2s ease-in-out;
}

.btn-custom-yellow:hover {
  background-color: #d9ed9a;
  color: #000000;
}

.m-s-text {
  font-size: 4rem;
  font-weight: 400;
  letter-spacing: -0.05em;
  color: #333;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.select-amount-heading {
  font-size: 1.8rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1rem;
}

.entries-highlight {
  color: #FF0000;
  font-weight: 700;
}

.open-modal-button {
  padding: 1rem 2rem;
  font-size: 1.2rem;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.open-modal-button:hover {
  background-color: #0056b3;
}

/* second modal css */


.other-amount-heading {
  font-size: 1.8rem;

  font-weight: 600;
  color: 000000;
  margin-bottom: 1rem;

}

.m-s-text-small {
  font-size: 4rem;
  font-weight: 400;
  letter-spacing: -0.05em;
  color: #333;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.min-max-text {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 1.5rem;
}

.form-control-custom {
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  border: 1px solid #ced4da;
  text-align: center;
  /* Center text as per design */
}

.btn-buy-now {
  background-color: #DEE965;
  color: #000000;
  border: none;
  border-radius: 0.75rem;
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  width: 100%;
  transition: background-color 0.2s ease-in-out;
  display: flex;

  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;

}

.btn-buy-now:hover {
  background-color: #d9ed9a;
  color: #000000;
}

.buy-now-arrow {
  margin-left: 0.5rem;
  font-size: 1.2rem;
}

.free-entries-text {
  font-size: 0.9rem;
  color: #333;
  font-weight: 500;
}



/* Styling for the new Payment Method Modal */
.payment-method-heading {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

.paying-amount-text {
  font-size: 1.1rem;
  color: #333;
  font-weight: 500;
  margin-bottom: 2rem;
}

.payment-option-card {
  border: 1px solid #dee2e6;
  border-radius: 0.75rem;
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.payment-option-card:hover {
  background-color: #f8f9fa;
  border-color: #cce5ff;
}

.payment-option-icon {
  margin-right: 1rem;
  font-size: 1.8rem;
  color: #6c757d;
}

.payment-option-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: #000000;
}

.card-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.google-pay-icon {
  width: 30px;
  height: 20px;
  fill: currentColor;
}



        
        .payment-option-card input[type="radio"] {
            appearance: none;
            width: 20px;
            height: 20px;
            border: 2px solid #000000;
            border-radius: 50%;
            margin-right: 10px;
            position: relative;
            cursor: pointer;
            vertical-align: middle;
            transition: var(--transition);
            margin-top: 7px;
        }
        
        .payment-option-card input[type="radio"]:checked {
            border-color: #000000;
            background-color: #fffff;
        }
        
        .payment-option-card input[type="radio"]:checked::after {
            content: "";
            position: absolute;
            width: 10px;
            height: 10px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border-radius: 50%;
            background-color: #000000;
        }
        
        .payment-option-card label {
            font-weight: 500;
            cursor: pointer;
            padding-left: 5px;
            transition: var(--transition);
        }
        iframe[id^=st-] {
		       height: 83px !important;
		    border: 0;
		    width: 99%;
		}
		#gpay-button-online-api-id
		{
			width : 100% !important;
		}
        
		.card-name__input
		{
			    box-sizing: border-box;
			    width: 100%;
			    font-size: 14px;
			    line-height: 1.6rem;
			    color: #333;
			    border: .1rem solid #6d6d6d;
			    border-radius: .4rem;
			   padding: 7px;
			    margin: 0 0 .4rem;
		}
		#st-card-name-label {
		    display: inline-block;
		    font-size: 1.2rem;
		    line-height: 1.6rem;
		    color: #333;
		    margin: 0 0 .4rem;
		}
@media (min-width: 1200px) and (max-width: 1450px) {		
		
	.logoFreeEntries {
	    bottom: 155px !important;
	}
}		

/* search filter csss here */
.search-brands-filter .form-control,
.search-brands-filter .form-select {
  border-radius: 0.5rem;
  border: 1px solid #ced4da;
  padding: 0.75rem 1rem;
}

.search-brands-filter .input-group-text {
  border-radius: 0.5rem;
  border: 1px solid #ced4da;
  background-color: #fff;
  padding: 0.75rem 1rem;
}


.search-brands-filter .input-group .input-group-text:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: none;
  
}

.search-brands-filter .input-group .form-control:first-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.search-brands-filter .input-group:focus-within .input-group-text {
 
  border-color: var(--accent-color) !important;
  box-shadow: unset !important; 
}

.search-brands-filter .form-control {
  border: 1px solid #c9c4c4;
}

.search-brands-filter .form-control:focus,
.search-brands-filter .form-select:focus {
  border-color: var(--accent-color) !important;
  box-shadow: unset !important; 
}

.search-brands-filter .dropdown-toggle::after {
  vertical-align: middle;
}

.search-brands-filter .card {
  border-radius: 0.75rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.search-brands-filter .btn-outline-secondary {
  border-color: #ced4da;
}

.search-brands-filter .btn-outline-secondary:hover {
  background-color: #e9ecef;
}
.search-filter-row
{
	background: #f5f5f6;
    padding-bottom: 20px;
    border-radius: 10px;
}


.trustpilot-container span {
  font-size: 12px;
}


.trustpilot-container {
  background-image: url(../img/trustpilot-bg.svg);
  position: absolute;
  width: 510px;
  height: 62px;
  left: 50%;
  top: -12px;
  z-index: 999;
  transform: translateX(-50%);
  overflow: hidden;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
}

.header.rafflehouse .btn-getstarted, .header.rafflehouse .btn-getstarted:focus
{
	font-size: 13px;
	padding: 12px 16px;
	margin-left: 4px;
	
}
.header.rafflehouse i.fs-6
{
	    font-size: 12px !important;
}
.header.rafflehouse form
{
	margin-right: 3.5rem !important;
}
.header.rafflehouse form .search-input
{
	width: 250px;
}
.logorafflehouse
{
	width: 278px;
}

div:where(.swal2-container).swal2-backdrop-show
{
	    z-index: 99999 !important;
}
.reset-filter-button
{
	
    margin-right: 4px;
    color: #000;
}
.sort-filter-button
{
	 margin-right: 4px;
    color: #000;
    width: 100%;
    float: right;
}
.filter-brands .order_by
{
	    width: 84px !important;
}
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black background */
  display: flex; /* Use flexbox for centering */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  z-index: 9999; /* Ensure it's on top of other content */
}

.loading-overlay.hidden {
  display: none; /* Hide the loader by default */
}
.supermarket-text
{
	padding-bottom: 14px;
}

.promo-card {
  background-color: var(--primary-bg);
  border-radius: 1.5rem;
  overflow: hidden;
  /* min-height: 240px; */
}

.timer-section {
  background-color: var(--timer-bg);
  color: var(--dark-text);
  text-align: center;
  padding: 1.5rem;
}

.timer-content {
  border-bottom-left-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
}



.logo-img {
    width: 250px;
    height: 150px;
    border: 2px solid #ff0000;
    flex-shrink: 0;
    margin-right: 60px !important;
    object-fit: contain;
    background: #fff;
    margin-left: 50px;
}

.cta-button {
  background-color: var(--button-bg);
  color: var(--dark-text);
  font-weight: bold;
  transition: background-color 0.3s;
  border: none;
  padding: 10px 50px;
  width: 50%;
  
}

.cta-button:hover {
  background-color: var(--timer-bg);
}

#deals_countdown_sec .swiper-pagination-bullet-active {
  background: var(--dark-text) !important;
}

@media (min-width: 768px) {
  .timer-content {
    border-bottom-left-radius: 0;
    border-top-right-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
  }

  
}

@media (max-width: 768px) {

  .cta-button {
    width: 100%;
  }
  #all_brands
  {
  	display : none !important;
  }
}

.login-sec{
    display: flex;
    align-items: center;
    gap: 30px;
}
.notification-sec {
    position: relative;
}
.profile-sec {
    display: flex;
    align-items: center;
    gap: 16px;
}
.profile-img-box {
    min-width: 44px;
    height: 44px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
}
.profile-name {
    color: #292D32;
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 2px;
}
.wallet-amount {
    color: #043B3B;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.32px;
}

.page-menu-sec{
    padding: 12px 0;
    border-top: 1px solid #2E2E2E1A;
    border-bottom: 1px solid #2E2E2E1A;
    background-color: #FFF;
}
.page-menu{
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}
.pm-item{
    color: #2E2E2EBF;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    transition: all 0.3s ease-in-out;
    position: relative;
}
.pm-item:hover, 
.pm-item.active{
    font-weight: 700;
    color: #043B3B;
}
.pm-item::after{
    content: '';
    width: 0;
    height: 3px;
    background-color: #DEE965;
    border-radius: 25px 25px 0px 0px;
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease-in-out;
}
.pm-item:hover::after, 
.pm-item.active::after{
    width: 100%;
}
/*Off Canvas*/
.offcanvas {
    width: 500px;
    background-color: #F8F4F0;
    border-right: 1px solid #2E2E2E1A;
    transition: all 0.7s ease-in-out;
}
.btn-close{
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 1;
    transition: all 0.8s ease-in-out;
}
.btn-close:hover{
    opacity: 0.8;
}
.btn-close:focus{
    box-shadow: none;
}
.offcanvas-body{
    padding: 50px 0px;
}

/*Account Overview*/
.ao-sec{
    padding-top: 30px;
}
.expedia-box{
    border-radius: 16px;
    border: 1px solid #DEE965;
    background-color: #DEE96540;
    padding: 24px 27px;
    display: flex;
    gap: 42px;
}
.upc-text{
    color: #043B3B;
    font-size: 20px;
    font-weight: 700;
    line-height: 34px;
    letter-spacing: -0.4px;
}
.expedia-box p{
    color: #2e2e2ee6;
    margin-bottom: 0px;
}
.gb-link{
    color: #043B3BE6;
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    position: relative;
    transition: all 0.3s ease-in-out;
}
.gb-link:hover{
    color: #2e2e2e;
}
.gb-link::after{
    content: '';
    width: 100%;
    height: 100%;
    border-bottom: 2px dashed #FFB728;
    position: absolute;
    bottom: -2px;
    left: 0px;
    transition: all 0.3s ease-in-out;
}
.gb-link:hover::after{
    border-color: #2e2e2e;
}
.ao-top-box{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #043B3B;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.32px;
    margin-bottom: 60px;
}
.ao-box{
    padding: 21px 37px 22px;
    overflow: hidden;
    border-radius: 0px 0px 20px 20px;
    position: relative;
    margin-bottom: 30px;
}
.ao-box::after{
    content: '';
    background-image: url(../img/union.svg);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.paw-box{
    margin-bottom: 50px;
}
.paw-title{
    color: #2e2e2ebf;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 10px;
}
.paw-ammount{
    font-size: 48px;
    font-weight: 700;
    line-height: 58px;
    letter-spacing: -1.44px;
}
.paw-ammount.text-green{
    color: #043B3B;
    display: flex;
    align-items: center;
    gap: 15px;
}
.paw-ammount.text-yellow{
    color: #FFB728;
}
.paw-ammount.black-85{
    color: #2e2e2ed9;
}
.btn.btn-withdraw{
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 14px 12px 21px;
    background-color: #DEE965;
    color: #043B3B;
    font-size: 15px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.15px;
    border-radius: 50px;
    border: 0px !important;
}
.btn.btn-withdraw:hover{
    background-color: #DEE965;
}
.btn.btn-withdraw img{
    margin-top: 3px;
    transition: all 0.3s ease-in-out;
}
.btn.btn-withdraw:hover img{
    transform: translateX(5px);
}
.btn.btn-withdraw.bg-blue{
    background-color: #043B3B;
    color: #FFFFFF;
}
.btn.btn-withdraw.bg-blue:hover{
    background-color: #043B3B;
    color: #FFFFFF;
}
.ao-bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.ao-bottom p{
    color: #043B3B;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.32px;
    margin-bottom: 0px;
}
.btn.btn-withdraw.btn-off-white{
    background-color: #F8F4F0;
}

/*My Vouchers*/
.my-vouchers-sec{
    padding-top: 60px;
}
.text-green{
    color: #043B3B;
}
.bn-amount{
    color: #043B3B;
    font-size: 16px;
    font-weight: 800;
    line-height: 26px;
}
.pd-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.pd-text{
    color: #043B3B;
    font-size: 15px;
    font-weight: 500;
    line-height: 26px;
}
.pd-date{
    color: #043B3B;
    font-size: 15px;
    font-weight: 700;
    line-height: 26px;
}
.mobi-view{
    display: none;
}

.white-box{
    background-color: #FFFFFF;
    padding: 9px 9px 25px;
    border-radius: 12px;
    width: 100%;
    height: 100%;
}
.logo-box{
    width: 100%;
    height: 146px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: #F8F8F8;
    margin-bottom: 16px;
}
.logo-box img
{
	width: 100%;
    object-fit: contain;
    height: 149px;
}
.owl-carousel .owl-item img {
    width: auto;
}
.bn-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.brand-slider-sec {
    padding: 80px 0 160px;
}
.title-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 50px;
}
.brand-slider {
    position: relative;
}

.btn.view-all-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 13px 20px;
    border-radius: 50px;
    color: #043B3B;
    font-size: 15px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.15px;
    background-color: #DEE965;
    position: absolute;
    top: -92px;
    right: 0px;
}
.brand-slider .owl-nav {
    display: flex;
    align-items: center;
    gap: 15px;
    position: absolute;
    top: -92px;
    right: 140px;
    margin-top: 0px;
}
.brand-slider .owl-nav button {
    width: 48px;
    height: 48px;
    background-color: #FFFFFF !important;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px !important;
    transition: all 0.3s ease-in-out;
}
.brand-name {
    color: #043B3B;
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: -0.18px;
}

.grad-1 {
    background: linear-gradient(270deg, #3DA0A0 0%, #163A3A 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.custom-table {
    border-collapse: separate;
    border-spacing: 0 12px;
}
.custom-table.withdraw-table{
    border-spacing: 0 6px;
}
.custom-table thead th {
    border: none;
    font-weight: 500;
    background-color: transparent;
    color: #2E2E2E;
    font-size: 15px;
    font-weight: 400;
    line-height: normal;
    padding: 16px;
    white-space: nowrap;
}
.table-row{
    background: #ffffff;
    border-radius: 12px;
}
.table-row td {
    border: none;
    padding: 16px;
    color: #043B3B;
    font-size: 15px;
    font-weight: 500;
    line-height: 26px;
    white-space: nowrap;
    background-color: transparent;
}
.table-row td:first-child {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}
.table-row td:last-child {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}
/* Badge soft styles (Bootstrap 5.3 compatible) */
.badge{
    font-size: 15px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.15px;
    border-radius: 8px;
}
.pending{
    color: #FFA228;
    border: 1px solid #FFB728BF;
    background-color: #FFB72826;
}
.payable{
    color: #A3AB49;
    border: 1px solid #DEE965;
    background-color: #DEE96540;
}
.confirmed{
    color: #043B3BBF;
    border: 1px solid #043B3B40;
    background-color: #043B3B26;
}
.table-icon-box{
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #F8F4F0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tl-box{
    display: flex;
    align-items: center;
    gap: 12px;
}
.mobi-table{
    display: none;
}
.mobi-table-box{
    border-radius: 12px;
    background-color: #FFF;
    padding: 16px 14px;
    margin-bottom: 12px;
}
.mobi-table .mobi-table-box:last-child{
    margin-bottom: 0px;
}
.mobi-table-box .top, 
.mobi-table-box .middle, 
.mobi-table-box .bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mobi-table-box .top, 
.mobi-table-box .middle{
    margin-bottom: 15px;
}
.tl-box .name{
    color: #043B3B;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    margin-bottom: 5px;
}
.tl-box .sr-no{
    color: #043B3B;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
}
.mobi-table-box .th{
    color: #2E2E2E;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 5px;
}
.mobi-table-box .td{
    color: #043B3B;
    font-size: 15px;
    font-weight: 600;
    line-height: 26px;
}
.mobi-table-box .td.text-orange{
    color: #FFA228;
}
.mobi-table-box .td.text-light-green{
    color: #DEE965;
}
.mobi-table-box .bottom .td{
    color: #043B3B;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
}
.load-more-sec{
    margin: 60px 0 160px;
    text-align: center;
}

/*Withdraw Page*/
/* Collapse row fix */
.collapse-row td {
    border: none;
    padding: 0;
    background-color: transparent;
}

/* Inner expanded box (details section) */
.inner-box {
    background: #efe7d6;
    padding: 20px;
    border-radius: 12px;
    animation: fadeIn 0.3s ease;
}

/* Smooth fade animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.search-input2 {
    position: relative;
}
.my-vouchers-sec .search-input2 .search-icon2 {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}
.my-vouchers-sec .form-control {
    color: #2E2E2E;
    font-size: 15px;
    font-weight: 400;
    line-height: normal;
    padding: 15px 20px;
    background-color: #FFFFFF;
    border-radius: 50px;
    border: 0;
}

.search-input2 .form-control {
    padding-left: 48px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.load-more-sec .btn-theme , #withdrawal-popup .btn-theme  {
    padding: 18px 29px;
    background-color: #043B3B;
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.32px;
    border: 0px;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}
.box001 {
    padding: 12px 14px 12px 27px;
    border-radius: 50px;
    border: 1px solid #DEE965;
    background: #DEE96540;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.box001 .nice-text {
    color: #043B3B;
    font-size: 18px;
    font-weight: 600;
    line-height: 34px;
}
.box001 .yellow-amount {
    color: #FFB728;
    font-size: 22px;
    font-weight: 700;
    line-height: 34px;
    letter-spacing: -0.44px;
}
.my-vouchers-sec  .toggle-btn {
    background: none;
    border: none;
    font-weight: 500;
    color: #043B3B;
    font-size: 15px;
    font-weight: 700;
    line-height: 26px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.collapse-row{
    background-color: transparent;
    transform: translateY(-12px);
}
.collapse-row .inner-box{
    transition: all 0.35s ease-in-out;
    border-top: 1px solid #2E2E2E1A;
    background-color: #FFF7E8;
}
.table-row{
    transition: all 0.35s ease-in-out;
}
.table-row.open{
    background-color: #FFF7E8;
}

/* Remove gap between main row and collapse */
.collapse-row .inner-box {
    margin-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.ib-title {
    color: #2E2E2E;
    font-size: 15px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 5px;
}
.ib-detail {
    color: #043B3B;
    font-size: 20px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: -0.6px;
}

.mtw-sec{
    display: none;
}
.mtw-box{
    padding: 17px 20px;
    background-color: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #FFFFFF;
    margin-bottom: 12px;
    transition: all 0.3s ease-in-out;
}
.mtw-box.active{
    background-color: #FFF7E8;
    border-color: #2E2E2E1A;
}
.mtw-sec .mtw-box:last-child{
    margin-bottom: 0px;
}
.mtw-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.mtw-box .th{
    color: #2E2E2E;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 5px;
}
.mtw-box .td{
    color: #043B3B;
    font-size: 15px;
    font-weight: 600;
    line-height: 26px;
}
.mtw-hide{
    color: #043B3B;
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.mtw-hide img{
    transform: rotate(180deg);
}
.hidden-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

.mtw-box.active .hidden-content {
    max-height: 500px;
    opacity: 1;
}
.mtw-show{
    transition: all 0.3s ease-in-out;
    opacity: 1;
    visibility: visible;
}
/* optional: hide show button when active */
.mtw-box.active .mtw-show {
    opacity: 0;
    visibility: hidden;
}
/*My Details Page*/
.my-details-sec{
    padding: 70px 0 160px;
}
.accordion-item{
    background-color: #FFFFFF;
    border-radius: 12px !important;
    margin-bottom: 30px;
    border: 0px;
    overflow: hidden;
}
.accordion .accordion-item:last-child{
    margin-bottom: 0px;
}
.accordion-button{
    background-color: transparent !important;
    padding: 20px 24px;
    color: #043B3B !important;
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    box-shadow: none !important;
}
.accordion-body{
    padding: 30px 37px;
    border-top: 1px solid #2e2e2e26;
}
.label-text{
    color: #2E2E2E;
    font-size: 15px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 5px;
}
.flex-input{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 0;
    color: #043B3B;
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: -0.18px;
    border-bottom: 1px solid #2E2E2E1A;
    background: #FFF;
}
.update-btn{
    color: #2E2E2E;
    font-size: 15px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: -0.15px;
}
.text-green{
    color: #043B3B;
}

/*Withdrawals Popup*/
#withdrawal-popup .modal-lg{
    --bs-modal-width: 750px;
}
.modal-content{
    border-radius: 16px;
    border: 1px solid #2E2E2E1A;
    background: #FFF;
    padding: 48px 45px;
    position: relative;
    margin: 0 20px;
}
.modal-title{
    color: #043B3B;
    font-size: 32px;
    font-weight: 700;
    line-height: 42px;
    letter-spacing: -0.96px;
}
.modal .btn-close{
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 9;
}
.modal-body{
    padding: 0px;
}
.modal-body p{
    color: #2E2E2E;
    font-size: 15px;
    font-weight: 400;
    line-height: normal;
}
.big-btn-sec{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.big-btn{
    color: #043B3B !important;
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: -0.18px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-radius: 12px;
    border: 1px solid #2E2E2E1A;
    background: #FFF;
    transition: all 0.3s ease-in-out;
    text-align: left;
}
.btn.big-btn:hover{
    background-color: #FFF7E8;
}
.add-paypal{
    color: #2E2E2E;
    font-size: 15px;
    font-weight: 500;
    line-height: 26px;
    text-decoration: underline;
    transition: all 0.3s ease-in-out;
}
.add-paypal:hover{
    text-decoration: none;
}
.big-btn .flex-sec{
    display: flex;
    align-items: center;
    gap: 30px;
}
.mf-box{
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-bottom: 1px solid #2E2E2E1A;
    background: #FFF;
}
.mf-box p{
    margin-bottom: 0px;
}
.mfr-text{
    color: #043B3B;
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: -0.18px;
}
.dinput{
        background-color: #fff;
    border: 0px;
    width: 100%;
    color: #033b3c;
    font-weight: 600;
}


.mb-30{
    margin-bottom: 30px;
}
.lg-26{
    line-height: 26px;
}
.black-75{
    color: #2e2e2ebf;
}
/* deals sec css  ends */

/* ends  */

/* asda image sec css */
/* ends */