/* Reset & Box Sizing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}


/* Default body styles */
body {
  font-family: "Lato", sans-serif;
}

.lato-thin {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.lato-light {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lato-bold {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.lato-black {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.lato-thin-italic {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.lato-light-italic {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.lato-regular-italic {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.lato-bold-italic {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.lato-black-italic {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: italic;
}
::-webkit-scrollbar-thumb {
  background: #BFBFBF;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}


::-webkit-scrollbar-track,
::-webkit-scrollbar-thumb {
  border-radius: 4px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

/* Links */
a {
  text-decoration: none;
  transition: 0.3s;
}
/* Lists */
ul, ol {
  list-style-type: none;
  padding-left: 20px;
}

/* Buttons */
button {
  cursor: pointer;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  transition: 0.3s;
}
button:hover {
  opacity: 0.8;
}

/* Forms */
input, textarea, select {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: #000;
}

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


/* Default for large screens (1920px and above) */
.container {
  width: 1600px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
.banner-section{
  height: 800px !important;
  width: 100%;
  background-image: url(../images/home-banner1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 9;
}
.banner-section.slide-2,.banner-section.slide-3{
  background-image: url(../images/banner-bg-2.png);
}
.banner-section.slide-1::after{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(42 146 204 / 80%);
  z-index: -1;
}
.header-section {
  width: 100%;
  padding: 24px 108px;
  background: transparent;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
.header-section.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
}
.header-section.scrolled .logo-1{
  display: none;
}
.header-section .logo-2{
  display: none;
}
.header-section.scrolled .logo-2{
  display: block;
}
/* Navigation Styles */
.navbar {
  display: flex;
  gap: 20px;
  list-style: none;
}

.navbar a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  padding: 8px;
  font-weight: 400;
  text-transform: uppercase;
}
.navbar a.active{
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 2px; 
}
.header-section.scrolled .navbar a {
  color: #000;
}
.navbar a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 2px; 
}

/* Mobile Menu Button */
.menu-btn {
  display: none;
  cursor: pointer;
}

.menu-btn svg {
  width: 30px;
  height: 30px;
}

.main-logo a{
  width: 120px;
  display: block;
}
.main-logo a img,.banner-section-lhs img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-section-cnt {
  display: flex;
  align-items: stretch;
  gap: 10%;
  padding-top: 0;
  position: absolute;
  top: 160px;
  left: 0;
  right: 0;
}
.banner-section-lhs{
  flex: 0 0 36%;
  max-width: 36%;
}
.banner-section-lhs img{
  margin-left: 4%;
}
.slide-2 .banner-section-lhs img,
.slide-3 .banner-section-lhs img{
  margin-left: 0%;
}
.banner-section-rhs{
  flex: 0 0 40%;
  max-width: 40%;
  padding-top: 64px;
}
.banner-section-rhs h2 {
  font-size: 50px;
  font-weight: 600;
  line-height: 64px;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 36px;
}
.banner-section-rhs p {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: #fff;
  letter-spacing: 1px;
  width: 70%;
  margin-bottom: 36px;
}
.slide-2 .banner-section-rhs p,.slide-3 .banner-section-rhs p{
  width: 78%;
  font-size: 22px;
  line-height: 34px;
}
.banner-section-rhs p span{
  font-weight: 800;
  font-size: 22px;
}
.banner-section-rhs .stay-txt{
  font-size: 32px;
  font-weight: 900;
  line-height: 30px;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 36px;
}
.banner-eht-mbl {
  position: absolute;
  right: -30px;
  top: 230px;
  width: 184px;
}
.banner-section-rhs .download-btn {
  display: inline-flex;
  align-items: center;
  padding: 18px 36px;
  background-color: white;
  color: #0080C5;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  font-family: sans-serif;
  font-size: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease, color 0.3s ease;
  display: none;
}

.banner-section-rhs .download-btn i {
  margin-right: 8px;
  font-size: 16px;
}

/* Optional hover effect */
.banner-section-rhs .download-btn:hover {
  background: linear-gradient(to right, #b1425f, #3d6aa9);
    color: white;
}
.about-section{
  padding: 120px 0 100px;
  background-color: #fff;
}
.about-block{
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
}
.about-lhs{
  flex: 0 0 60%;
  max-width: 60%;
}
.about-rhs{
  flex: 0 0 36%;
  max-width: 36%;
  display: flex;
  display: none;
}
.about-lhs h4 {
  font-size: 26px;
  font-weight: 500;
  line-height:32px;
  color: #606060;
  letter-spacing: 1px;
  margin-bottom: 30px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.about-lhs h4::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 100%;
  margin-left: 20px; 
  width: 110px;
  height: 2px;
  background-color: #BFBFBF;
}
.about-cnt-lft {
  margin-bottom: 32px;
  width: 82%;
}
.about-cnt-lft h5,.about-ntfcns h6{
  font-size: 26px;
  font-weight: 700;
  line-height: 36px;
  color: #0080C5;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.about-cnt-lft p {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: #000000;
}
.about-cnt-lft img{
  width: 64px;
  margin-bottom: 16px;
}
.about-rhs .about-ntfcns{
  background-color: #fff;
  box-shadow: 0px 0px 10px #00000034;
  border-radius: 15px;
  padding:32px 24px;
  width: 440px;
}
.about-ntfcns h6{
  font-size: 22px;
  margin-bottom: 24px;
}
.about-ntfcns-list {
  max-height: 400px;
  overflow: auto;
}
.about-ntfcns-item{
  display: flex;
  align-items: self-start;
  gap: 24px;
  margin-bottom: 24px;
}
.about-ntfcns-icon{
  flex: 0 0 60px;
  max-width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
}
.about-ntfcns-icon img{
  width: 40px;
}
.about-ntfcns-item p{
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  color: #000000;
  padding-right: 10px;
}
.features-section{
  padding: 70px 0;
  background-color: #0080c5cc;
  position: relative;
  min-height: 800px;
}
.features-section-heading{
  text-align: center;
  margin-bottom: 36px;
}
.features-section-heading h4{
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  color: #fff;
  letter-spacing: .5px;
  margin: 0 auto 12px;
}
.features-section-heading p {
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  padding: 0 30px;
  text-align: center;
}

.features-section-heading p::before,
.features-section-heading p::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 70px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.6);
}

.features-section-heading p::before {
  left: 0;
  transform: translateX(-100%) translateY(-50%);
}

.features-section-heading p::after {
  right: 0;
  transform: translateX(100%) translateY(-50%);
}

.features-main-image {
  width: 685px;
  height: 700px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.features-main-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.features-list {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  width: 75%;
  margin: 0 auto;
  padding-top: 40px;
  position: relative;
  z-index: 9;
}
.features-item{
  flex: 0 0 48%;
  max-width: 48%;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
.features-item:nth-child(even){
  flex-direction: row-reverse;
  text-align: right;
}
.features-item:nth-child(3){
  margin-left: -54px;
}
.features-item:nth-child(4){
  margin-right: -54px;
}
.features-item-lhs{
  flex: 0 0 84px;
  max-width: 84px;
  height: 84px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0px 0px 15px #0B6A9D;
  display: flex;
  align-items: center;
  justify-content: center;
}
.features-item-lhs img{
  width: 40px;
}
.features-item-rhs{
  flex: 0 0 305px;
  max-width: 305px;
}
.features-item-rhs h6{
  font-size: 22px;
  font-weight: 600;
  line-height: 26px;
  color: #fff;
  margin-bottom: 14px;
}
.features-item-rhs p{
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
}

.contact-section{
  padding: 80px 0;
}
.contact-heading h4 {
  color: #242323;
  width: 64%;
  margin: 0 auto;
}
.contact-heading p {
  color: #606060;
  margin-bottom: 32px;
}
.features-section-heading p::before, .features-section-heading p::after{
  background-color:#606060 ;
  opacity: 0.6;
  width: 94px;
}


.contact-details-list{
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 80%;
  margin:70px auto 0;
  gap: 100px;
}
.contact-details-item{
  flex: 0 0 26%;
  max-width: 26%;
  text-align: center;
}
.contact-details-item p{
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  color: #000;
}
.contact-details-item p span{
  display: block;
}
.contact-details-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: white;
  color: #555;
  text-decoration: none;
  overflow: hidden;
  transition: color 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  background: linear-gradient(to right, #b1425f, #3d6aa9);
  margin:0 auto 40px;
}

.contact-details-icon i {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 30px;
}
.footer-section{
  padding: 60px 0;
  background-color: #0080c5cc;
}

.footer-details{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 96%;
  margin: 0 auto;
}
.footer-details-lhs {
  display: none;
}
.download-optns{
  display: flex;
  align-items: stretch;
  gap: 8px;
}
.download-optns img{
  width: 140px;
}
.footer-details p{
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
  color: #fff;
  margin-bottom: 16px;
}

.social-icons {
  display: flex;
  gap: 20px;
  justify-content: left;
  align-items: center;
  padding: 20px 0;
}

.social-icons a {
  width: 60px;
  height: 60px;
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 28px;
}

.social-icons a:hover .fa-linkedin-in { color: #0077b5; }
.social-icons a:hover .fa-facebook-f { color: #1877f2; }
.social-icons a:hover .fa-instagram { color: #e4405f; }
.social-icons a:hover .fa-youtube    { color: #ff0000; }
.social-icons a:hover .fa-twitter    { color: #1da1f2; }

.social-icons a:hover {
  border-color: currentColor;
  background-color: white;
}

.winner-section,.rewards-section{
  padding: 70px 0;
}


.winners-image-item {
  width: 220px;
}
.winners-image-item {
  width: 345px;
  height: 320px;
  border-radius: 10px;
  overflow: hidden;
  margin-right: 16px;
}
.winners-image-item img{
  width: 290px;
  height: 100%;
  object-fit: cover;
}
.winner-slider-section,.media-slider-section {
  width: 90%;
  margin: 0 auto;
}
.media-slider-section .winners-image-item img {
  width: 415px;
  height: 270px;
}
.winners-image-slider .slick-slide {
  display: flex !important;
  align-content: center;
  justify-content: center;
  padding:10px 0;
}
.winners-image-slider {
  padding: 28px 0;
}
.winners-image-slider .slick-prev, .winners-image-slider .slick-next {
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
}

.winners-image-slider .slick-prev {
  left: -80px;
  background-image: url('../images/prev-icon.png');
  background-repeat: no-repeat;
  background-size: 18px;
  background-position: center;
}

.winners-image-slider .slick-next {
  right: -50px;
  background-image: url('../images/next-icon.png');
  background-repeat: no-repeat;
  background-size: 18px;
  background-position: center;
}

.winners-image-slider .slick-prev::before,
.winners-image-slider .slick-next::before {
  content: '';
  display: none;
}
.winners-image-slider .slick-prev, .winners-image-slider .slick-next {
  font-size: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0px 0px 12px #c5c5c5;
  outline: none;
}

.rewards-list {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: 70px;
}
.reward-item{
  flex: 0 0 24%;
  max-width: 24%;
  background-color: #c8c1c1;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}
.reward-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(128, 128, 128, 0.4);
}
.video-play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background-color: transparent;
  border: 4px solid #ffff;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  cursor: pointer;
}
.video-play-btn i {
  font-size: 36px;
  color: #fff;
  fill: #fff;
  margin-left: 4px;
}

/* Video Modal Container */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Active Modal State */
.video-modal.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

/* Modal Overlay */
.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  cursor: pointer;
}

/* Modal Content Container */
.modal-content {
  position: relative;
  max-width: 90%;
  width: 800px;
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.32, 0.08, 0.24, 1);
  z-index: 10;
  will-change: transform, opacity;
}

.video-modal.active .modal-content {
  transform: scale(1);
  opacity: 1;
}

/* Video Container (Responsive 16:9 Aspect Ratio) */
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  background: #000;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Close Button */
.modal-close-btn {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  border: none;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  transition: all 0.2s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  padding: 0;
}

.modal-close-btn:hover {
  background: #f1f1f1;
  transform: scale(1.1);
}

.modal-close-btn i {
  font-size: 18px;
  color: #333;
}


.reward-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-section{
  padding: 70px 0;
  background-color: #0080c5cc;
}
.media-heading p,.media-heading h4{
  color: #fff;
}
.media-heading p::before,
.media-heading p::after{
  background-color: #fff;
}

.how-it-works-section{
  padding: 140px 0 100px;
}
.how-it-works-section img{
  width: 100%;
}

.card-list {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 33px;
  margin-top: 100px;
}
.card-item {
  flex: 0 0 254px;
  max-width: 254px;
  height: 260px;
  padding: 24px;
  position: relative;
  background-color: #fff;
  border-radius: 16px;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  color: #000;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 15px #b3b3b3;
}
.card-item::before {
  content: '1';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: -37px;
  left: 0;
  right: 0;
  width: 74px;
  height: 74px;
  margin: 0 auto;
  border-radius: 50%;
  background-color: #fff;
  outline: 8px solid #00bcd4;
  box-shadow: inset 0px 0px 8px #777777;
  z-index: 99;
  text-align: center;
  line-height: normal;
  font-size: 28px;
  color: #00bcd4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-item:nth-child(2):before{
  content: '2';
}
.card-item:nth-child(3):before{
  content: '3';
}
.card-item:nth-child(4):before{
  content: '4';
}
.card-item:nth-child(5):before{
  content: '5';
}
.card-item::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: -20px;
  width: 294px;
  height: 56%;
  background-color: #00bcd4;
  z-index: -1;

  /* Custom elliptical border-radius for top corners */
  border-radius: 15px 15px 0 0 / 30px 30px 0 0; /* Top corners are more curved */

  /* Slight 3D tilt to match the image */
  transform: perspective(100px) rotateX(2deg);
  transform-origin: bottom;
}
.card-item:nth-child(even)::before {
  bottom: -30px;
  top: auto;
}
.card-item:nth-child(even)::after {
  top: -20px;
  height: 60%;
  bottom: auto;
  border-radius: 16px 16px 0 0;
}
.card-item:nth-child(odd)::after {
  border-radius: 0 0 16px 16px;
}

.partners-section{
  padding: 70px 0;
  background-color: #aee2facc;
}
.partners-list{
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 16px;
}
.partners-lhs {
  flex: 0 0 52%;
  max-width: 52%;
}
.partners-rhs{
  flex: 0 0 44%;
  max-width: 44%;
}
.partners-lhs h4,.partners-rhs h4{
  font-size: 20px;
  line-height: 26px;
  font-weight: 500;
  color: #606060;
  margin-bottom: 24px;
  text-align: center;
}
.products-list{
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  row-gap: 30px;
  margin-top: 50px;
}
.product-item{
  flex: 0 0 18%;
  max-width: 18%;
}
.product-item-image {
  width: 140px;
  height: 140px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.product-item-image-in {
  width: 96px;
  height: 64px;
}
.product-item-image img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.price-tag {
  background-image: url(../images/price-tag.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
  color: #fff;
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}
.product-item p,.dealers-item p {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  color: #4f4f4f;
  text-align: center;
  margin-top: 4px;
}
.dealers-list{
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.dealers-item{
  flex: 0 0 23%;
  max-width: 23%;
}
.dealers-item-image{
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 148px;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 16px 0;
}
.dealers-item-image-in {
  width: 105px;
  height: 74px;
  margin-bottom: 16px;
}
.dealers-item-image img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.dealers-item-image::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: #FF5722;
}
.gift-poins{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #032471;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  padding: 8px 6px;
}

.whatsapp-fixed{
  width: 80px;
      bottom: 30px;
}