/* General css */
* {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
}
.button {
  display: inline-block;
  padding: 11px 33px 10px 31px;
  text-decoration: none;
  font-family: "Inter 18pt";
  color: #fff;
}
button {
  font-size: 16px;
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
  -moz-transition: all 0.7s ease-in-out;
  -ms-transition: all 0.7s ease-in-out;
  border: none;
  outline: none;
}
button:hover {
  color: #fff;
}
* {
  margin: 0;
  padding: 0;
}
*,
*::after,
*::before {
  box-sizing: border-box;
}

/* Container Col Start */
.container-new {
  max-width: 1280px;
  width: 100%;
  margin-inline: auto;
  padding: 0 15px;
}

.row-new {
  display: flex;
  -webkit-box-flex: 0;
  flex: 0 1 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col,
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col-sm,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-md,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-lg,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12 {
  -webkit-box-flex: 0;
  flex: 0 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  -webkit-flex-grow: 1;
  -webkit-box-flex: 1;
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
}

.col-1 {
  flex-basis: 8.333%;
  max-width: 8.333%;
}

.col-2 {
  flex-basis: 16.667%;
  max-width: 16.667%;
}

.col-3 {
  flex-basis: 25%;
  max-width: 25%;
}

.col-4 {
  flex-basis: 33.33%;
  max-width: 33.33%;
}

.col-5 {
  flex-basis: 41.667%;
  max-width: 41.667%;
}

.col-6 {
  flex-basis: 50%;
  max-width: 50%;
}

.col-7 {
  flex-basis: 58.333%;
  max-width: 58.333%;
}

.col-8 {
  flex-basis: 66.667%;
  max-width: 66.667%;
}

.col-9 {
  flex-basis: 75%;
  max-width: 75%;
}

.col-10 {
  flex-basis: 83.333%;
  max-width: 83.333%;
}

.col-11 {
  flex-basis: 91.667%;
  max-width: 91.667%;
}

.col-12 {
  flex-basis: 100%;
  max-width: 100%;
}

/* iPads, Tablets*/
@media only screen and (min-width: 480px) {
  .container-new {
    max-width: 448px;
  }

  .col-sm {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-sm-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-sm-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-sm-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-sm-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-sm-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-sm-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-sm-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-sm-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-sm-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}

/* Small screens, laptops */
@media only screen and (min-width: 767px) {
  .promoter-slider {
    width: 500px;
  }
  .container-new {
    max-width: 1100px;
  }

  .col-md {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-md-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-md-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-md-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-md-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-md-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-md-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-md-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-md-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-md-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}

/*Desktops, large screens
      */
@media only screen and (min-width: 1024px) {
  .container-new {
    max-width: 1280px;
  }

  .col-lg {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-lg-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-lg-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-lg-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-lg-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-lg-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-lg-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-lg-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-lg-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-lg-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}

.no_scroll {
  overflow: hidden;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary,
title {
  display: block;
}
body {
  font-family: "Inter 18pt";
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  color: #10152a;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
  line-height: 1.5;
}
div,
span,
p,
section {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
fieldset,
img {
  border: 0 none;
}
strong,
th {
  font-style: normal;
}
ol,
ul {
  list-style: none;
}
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
a img {
  border: none;
  display: block;
}
img {
  max-width: 100%;
}
a {
  text-decoration: none;
  color: #333333;
}
a:active,
a:focus,
input[type="image"],
select:focus,
input,
input[type="button"]:focus,
:focus {
  outline: 0;
}
/*For Clear*/
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: block;
  content: "";
  line-height: 0;
}
.clearfix:after {
  clear: both;
}
.clear {
  clear: both;
}
/*Form Elements*/
button,
input,
select,
textarea {
  font-family: inherit;
}
button,
input {
  line-height: normal;
  text-transform: none;
  box-sizing: border-box;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
}
button[disabled],
input[disabled] {
  cursor: default;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
}
input[type="search"] {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-appearance: textfield;
}
textarea {
  overflow: auto;
  vertical-align: top;
}
.sprite {
  background: url(../images/sprite.svg) no-repeat;
  line-height: 0px;
  font-size: 1px;
  display: inline-block;
  *display: inline;
  vertical-align: middle;
  zoom: 1;
}
.no-svg .sprite {
  background: url(../images/sprite.png) no-repeat;
  line-height: 0px;
  font-size: 1px;
  display: inline-block;
  *display: inline;
  vertical-align: middle;
  zoom: 1;
}
/*Fonts family*/
/* New Fonts */
@font-face {
  font-family: "Inter 18pt";
  src: url("../fonts/Inter18pt-Bold.woff2") format("woff2"),
    url("../fonts/Inter18pt-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter 18pt";
  src: url("../fonts/Inter18pt-SemiBold.woff2") format("woff2"),
    url("../fonts/Inter18pt-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter 18pt";
  src: url("../fonts/Inter18pt-Medium.woff2") format("woff2"),
    url("../fonts/Inter18pt-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter 18pt";
  src: url("../fonts/Inter18pt-Regular.woff2") format("woff2"),
    url("../fonts/Inter18pt-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "RupeeForadianRegular";
  src: url("../fonts/rupee_foradian-webfont.eot");
  src: url("../fonts/rupee_foradian-webfont.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/rupee_foradian-webfont.woff") format("woff"),
    url("../fonts/rupee_foradian-webfont.ttf") format("truetype"),
    url("../fonts/rupee_foradian-webfont.svg#RupeeForadianRegular")
      format("svg");
  font-weight: normal;
  font-style: normal;
}
/*Misc*/
.fleft {
  float: left;
}
.fright {
  float: right;
}
.tleft {
  text-align: left;
}
.tright {
  text-align: right;
}
.tcenter {
  text-align: center;
}
.inblock {
  display: inline-block;
  *display: inline;
  zoom: 1;
  vertical-align: middle;
}
.justify {
  text-align: justify;
}
/*Headings*/
h1,
h2 {
  font-size: 36px;
  font-family: "Inter 18pt";
  font-weight: normal;
  line-height: 1.3;
}
h3 {
  font-size: 22px;
  font-family: "Inter 18pt";
  font-weight: normal;
}
.ruppes {
  font-family: "RupeeForadianRegular";
  font-style: normal;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  float: left;
  font-size: 14px;
  transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  -webkit-transition: all 0.4s ease-in-out 0s;
  color: #3f4348;
  font-family: "Inter 18pt";
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  background-color: #fff;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
  border: solid 1px #b3b3b3;
  height: 40px;
  padding-left: 18px;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
}
::-webkit-input-placeholder {
  color: #3f4348;
  opacity: 1 !important; /* for chrome */
}
:-moz-placeholder {
  /* Firefox 18- */
  color: #3f4348;
  opacity: 1 !important;
}
::-moz-placeholder {
  /* Firefox 19+ */
  color: #3f4348;
  opacity: 1 !important;
}
:-ms-input-placeholder {
  color: #3f4348;
  opacity: 1 !important;
}
/*Select Box */
.select-wrapper {
  float: left;
  border: 1px solid #aaaaaa;
  background: url(../images/br_down.png) no-repeat 91% 50% #fff;
  cursor: pointer;
  position: relative;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  text-align: left;
}
.select-wrapper {
  width: 100%;
  height: 50px;
  font-size: 14px;
  line-height: 50px;
  color: #717171;
}
.select-wrapper .custom-select {
  width: 100%;
  height: 48px;
  font-size: 14px;
  line-height: 48px;
  color: #717171;
}
.select-wrapper:hover,
.select-wrapper:focus {
  background: url(../images/br_downhover.png) no-repeat scroll 91% 50% #fff;
  border-color: #a4a4a4;
}
.select-wrapper .holder {
  display: block;
  margin: 0 40px 0 16px;
  white-space: nowrap;
  overflow: hidden;
  *overflow: inherit;
  cursor: pointer;
  position: relative;
  z-index: 1;
  color: #717171;
  font-family: "Inter 18pt";
  font-size: 14px;
  line-height: 48px;
  height: 48px;
}
.select-wrapper select {
  margin: 0;
  position: absolute;
  z-index: 2;
  cursor: pointer;
  outline: none;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -khtml-opacity: 0;
  -moz-opacity: 0;
  -webkit-appearance: none;
  left: 0px;
  vertical-align: middle;
}
.button {
  font-size: 14px;
  -moz-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  overflow: hidden;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  padding: 11px 48px;
  text-transform: uppercase;
  display: inline-block;
  vertical-align: middle;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  font-family: "Inter 18pt";
  line-height: 24px;
  color: #333333;
  border: 1px solid #333333;
  background-color: transparent;
}
.button:hover {
  background-color: #333333;
  color: #fff;
}
/* ========== page css ========= */
.main {
  width: 94%;
  max-width: 1150px;
  margin: 0 auto;
}
/*Header*/
#stickyheader {
  z-index: 1499;
  left: 0px;
  width: 100%;
  position: relative;
}
.shadow {
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
  *border-bottom: solid 1px #c9c8c8;
  border: 0;
}
header {
  padding: 10px 0;
}
header .logo a {
  display: inline-block;
  vertical-align: middle;
}
header .logo a img {
  display: block;
  margin: 0 auto;
}
header nav {
  width: 100%;
  text-align: right;
}
header nav ul li {
  text-align: center;
  display: inline-block;
  vertical-align: middle;
}
header nav li a {
  line-height: 23px;
  font-size: 17px;
  color: #fff;
  font-weight: 600;
  display: block;
  font-family: "Inter 18pt";
  padding: 10px 18px;
  opacity: 0.7;
}
header nav li a:hover,
header nav li a.active {
  font-weight: 600;
  opacity: 1;
}

/* ======== Media Queries ========*/
@media screen and (min-width: 320px) {
  h1,
  h2 {
    font-size: 30px;
    line-height: 1.2;
  }
}

@media screen and (min-width: 479px) {
  header nav li a {
    padding: 10px 25px;
  }
}

@media screen and (min-width: 768px) {
  .top-banner .slick-arrow {
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    height: 54px;
    margin-top: -24px;
    position: absolute;
    text-indent: -9999px;
    top: calc(50% + 18px);
    width: 54px;
    z-index: 99;
  }
  .top-banner .slick-arrow.slick-disabled {
    display: none !important;
  }
  .top-banner .slick-arrow.slick-prev {
    left: 30px;
  }
  .top-banner .slick-arrow.slick-prev:before {
    border: 1px solid #0693e3;
    border-width: 0 0 2px 2px;
    content: "";
    display: block;
    font-size: 0;
    height: 13px;
    left: 50%;
    line-height: 0;
    margin: -5px 0 0 -4px;
    position: absolute;
    top: 50%;
    transform: rotate(-315deg);
    width: 13px;
  }
  .top-banner .slick-arrow.slick-next {
    right: 30px;
  }
  .top-banner .slick-arrow.slick-next:before {
    border: 1px solid #0693e3;
    border-width: 0 0 2px 2px;
    content: "";
    display: block;
    font-size: 0;
    height: 13px;
    left: 50%;
    line-height: 0;
    margin: -6px 0 0 -8px;
    position: absolute;
    top: 50%;
    transform: rotate(-135deg);
    width: 13px;
  }
  .top-banner .slick-dots {
    text-align: center;
    bottom: 20px;
  }

  .promoters-card {
    display: grid;
    grid-template-columns: 4fr auto;
    width: 100%;
    gap: 127px;
  }
  .mobNav {
    display: none;
  }
}

@media screen and (min-width: 1200px) {
  h1,
  h2 {
    font-size: 36px;
    line-height: 1.3;
  }
}

@media screen and (max-width: 600px) {
  .accordion {
    height: auto;
  }
  .accordion ul li,
  .accordion ul li:hover,
  .accordion ul:hover li,
  .accordion ul:hover li:hover {
    position: relative;
    display: table;
    table-layout: fixed;
    width: 100%;
    -webkit-transition: none;
    transition: none;
  }
}

/* New Banner Start */
.banner-top {
  position: relative;
}
.banner-video .videoIframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-top: -96px;
  height: 100dvh;
}

.brandsection {
  background-color: #0a0a5f;
}
.brandgrid .content h1 {
  color: rgb(255, 255, 255);
}
.header-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header nav.mobMenu {
  display: none;
}

/* New Banner End */

/* Dots */
.top-banner.slick-dotted.slick-slider {
  margin-bottom: 5px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

.top-banner .slick-dots {
  bottom: 0px;
  text-align: center;
}
.top-banner .slick-dots li button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #969191;
}
.top-banner .slick-dots li button:before {
  display: none;
}
.top-banner .slick-dots li.slick-active button {
  background: #fff;
}

.top-banner {
  padding: 50px 0;
  background-color: #000;
}
.top-banner .desktopImg {
  border-radius: 25px 25px;
  height: 620px;
  width: 620px;
  object-fit: cover;
}
.trend-card ul .trend-card-item:hover {
  box-shadow: 0px 4px 13px 2px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.brands ul li:hover {
  box-shadow: 0px 4px 13px 2px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.slick-slide {
  position: relative;
}
.slick-slide img {
  transition: all 0.3s ease-out;
}
.top-banner .slick-slide:hover {
  margin-top: -30px;
}
/*   .top-banner .slick-slide:hover:after {
    display: block;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 125%;
    border-radius: 0px 0px 25px 25px;
    background: linear-gradient(180deg, rgba(10, 10, 95, 0) 48.58%, #0a0a5f 99.05%), linear-gradient(180deg, rgba(0, 0, 0, 0) 44.25%, #000 100%);
  } */
.top-banner .slick-list {
  padding-top: 40px;
}
#contactus {
  background: #798483;
}

/* About us css */

#aboutus {
  background: url(../images/Banners/new-age-and-future-ready-desktop.jpg)
    no-repeat bottom center #0a0a5f;
  width: 100%;
  padding: 0px 0 600px;
  background-size: contain;
}
.aboutus-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 20px 0;
}

/* Banner Css Start */
.banner-video-info {
  position: absolute;
  top: 35%;
  left: 0;
  right: 0;
}
.banner-top .banner-video-info .bannerHeading {
  position: relative;
}
.banner-top .banner-video-info .bannerHeading::before {
  content: "";
  background-image: url("../images/heading-curve.svg");
  background-repeat: no-repeat;
  position: absolute;
  left: 27%;
  z-index: 999;
  display: block;
  top: 84%;
  width: 111px;
  height: 50px;
  background-size: 111px;
}
.banner-video-info h1 {
  color: #fff;
  text-align: center;
  font-size: 58px;
  font-weight: 600;
  line-height: 75px;
  letter-spacing: -0.5px;
  position: relative;
  margin-bottom: 20px;
}

.banner-video-info p {
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}

.brands h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 56px;
  margin-bottom: 40px;
  text-align: center;
}

/* .brands ul{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;

} */
.brands ul li {
  padding: 21px 24px;
  position: relative;
  text-align: center;
  width: 100%;
  border-radius: 16px;
  border: 1px solid #d3d4d5;
  background: #fff;
  margin-bottom: 20px;
}
.brands ul li a {
  display: inline-block;
}
.brands .brandName {
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
}
.brands .brandDetails {
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
}
.brands img {
  width: 148px;
  height: 74px;
  display: block;
}
/* Promoter css start */

.promoter {
  padding: 60px 40px 100px;
  background: #fff0ec;
  border-radius: 20px;
}
.section-top.promoter {
  margin-top: 90px;
}
.promoter-top {
  display: flex;
  padding: 8px 16px;
  align-items: center;
  gap: 8px;
  border-radius: 32px;
  border: 1px solid #d3d4d5;
  background: #fff;
  max-width: 185px;
}
.promoter-top span {
  font-size: 15px;
  font-weight: 600;
  line-height: 23px;
}
.promoter-left {
  margin-top: 40px;
}
.promoter-left h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: normal;
}
.d-block {
  display: block;
}
.promoter-left p {
  font-size: 17px;
  font-weight: 400;
  line-height: 24px;
}
.promoter-right {
  display: grid;
  grid-template-columns: 7fr 3fr;
  padding: 24px 0px 24px 24px;
  border-radius: 16px;
  border: 1px solid #d3d4d5;
  background: #fff;
  width: 100%;
  position: relative;
}
.promoter-right .promoter-img {
  position: absolute;
  right: 0;
  bottom: 0;
}

.promoter-right-info p {
  font-size: 15px;
  padding-bottom: 20px;
  line-height: 24px;
}
.promoter-right-name {
  padding-top: 20px;
  border-top: 1px solid #e4e6e8;
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
}
.promoter-right-name .d-block {
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
}
.section-top {
  margin-top: 110px;
}

/* Dealer Css Start */
.dealer {
  display: flex;
  gap: 150px;
}
.dealerInfo h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 56px;
}
.dealerInfo .dealer-heading,
.dealerInfo p {
  font-size: 17px;
  font-weight: 400;
  line-height: 24px;
  padding-bottom: 14px;
}
.dealerInfo .dealer-heading span {
  font-weight: 600;
}
.dealerInfo p {
  padding-bottom: 24px;
}

.dealerInfo .dealerInfo-btn {
  border-radius: 8px;
  background: #10152a;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 23px;
  width: 180px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
/* Dealer Css End */

/* Dealer Video Css Start */
.dealer-video {
  background-image: url("../images/dealer-back.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 750px;
  position: relative;
}
.dealer-video h2 {
  color: #fff;
  font-size: 42px;
  font-weight: 600;
  line-height: 56px;
  padding: 60px 0 40px;
  text-align: center;
}
/* .dealer-video-info{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.dealer-video-info .dealer-video-item1{
  grid-row: 1/3;
  grid-column: 1/3;
}
 */
.dealer-video-info {
  display: grid;
  grid-template-columns: 222px 349px auto;
  grid-template-rows: 222px 222px;
  position: relative;
  row-gap: 35px;
  column-gap: 45px;
}

.dealer-video-info .dealer-video-item2 {
  grid-row: 2;
}
.dealer-video-info .dealer-video-item3 {
  margin-top: 52px;
}
.dealer-video-info .dealer-video-item1,
.dealer-video-info .dealer-video-item2,
.dealer-video-info .dealer-video-item3 {
  border-radius: 24px;
}

.dealer-video .playVideo {
  background: #fff;
  width: 96px;
  height: 96px;
  border-radius: 48px;
  border: 5px solid rgba(98, 77, 227, 0.5);
  background: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04),
    -8px 12px 24px 0px rgba(21, 16, 255, 0.08),
    12px 12px 24px 0px rgba(250, 3, 255, 0.06),
    0px 4px 24px 0px rgba(98, 77, 227, 0.12);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 15%;
  top: 46%;
}

.wave {
  position: absolute;
  width: 115px;
  height: 115px;
  border-radius: 50%;
  border: 1px solid #fff;
  pointer-events: none;
  animation: wave 2s linear infinite;
}
.wave.delay {
  animation-delay: 0.1s;
}
@keyframes wave {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    opacity: 0.9;
    transform: scale(1);
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}
/* Dealer Video Css Start */

/* Dealer Image Css Start */
.dealer-img h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 56px;
  padding: 60px 0 40px;
  text-align: center;
}
.dealer-img ul li img {
  border-radius: 24px;
  width: 100%;
}
.dealer-img .slick-prev,
.dealer-img .slick-next {
  bottom: 50%;
}
.dealer-img .slick-prev {
  left: -1%;
}
.dealer-img .slick-next {
  left: 97%;
}
/* Dealer Image Css End */

/* Choose Css Start */
.choose .container-new {
  background: radial-gradient(
    76.38% 138.89% at 48.13% 22.36%,
    #212121 0%,
    #000d14 99.99%,
    #000 100%
  );
  padding: 60px 40px;
  border-radius: 32px;
}
.section-top.choose {
  margin-top: 90px;
}
.choose h2 {
  text-align: center;
  font-size: 42px;
  font-weight: 600;
  line-height: 56px;
  padding-bottom: 40px;
  color: #fff;
}
.choose ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  color: #fff;
}
.choose ul li {
  position: relative;
}
.choose ul li .choose-card {
  border-radius: 24px;
  padding: 32px;
  display: grid;
  background: rgba(255, 255, 255, 0.01);
  box-shadow: 0px 39px 56px -36px rgba(255, 255, 255, 0.5) inset,
    0px 7px 11px -4px #fff inset,
    0px -82px 68px -64px rgba(14, 78, 114, 0.3) inset,
    0px 98px 100px -48px rgba(0, 161, 253, 0.3) inset,
    0px 4px 18px 0px rgba(8, 59, 88, 0.3) inset,
    0px 1px 40px 0px rgba(13, 137, 207, 0.2) inset;
  backdrop-filter: blur(12.5px);
  position: relative;
  z-index: 1;
  height: 276px;
}
.choose ul li .chooseCircle {
  display: block;
  width: 106px;
  height: 106px;
  position: absolute;
  bottom: 15px;
  left: -16px;
}
.choose ul li:last-child .chooseCircle {
  display: block;
  width: 150px;
  height: 150px;
  position: absolute;
  top: -30px;
  right: -24px;
  background-size: 150px;
  left: auto;
}
.choose ul li span {
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  padding: 20px 0;
}
.choose ul li p {
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
}

/* Choose Css End */

/* Trending Css Start */
.trend-product h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 56px;
  padding-bottom: 35px;
}
.trend-card > ul {
  display: flex;
  justify-content: space-between;
}
.trend-card ul .trend-card-item {
  border-radius: 16px;
  border: 1px solid rgba(51, 51, 51, 0.15);
  background: #fff;
  padding: 16px 20px;
}
.trend-card ul .trend-card-item {
  position: relative;
  margin-bottom: 20px;
}
.trend-card ul li h3 a {
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  transition: 0.3s ease-in-out;
}
.trend-card ul .trend-card-item:hover h3 a {
  color: #ab1014;
}
.trend-price {
  display: block;
  font-size: 20px;
  line-height: normal;
  font-weight: 400;
  padding-bottom: 8px;
}
.trend-price i {
  font-style: normal;
}

.trend-card-offer {
  position: absolute;
  display: flex;
  border-radius: 22px;
  border: 0px solid rgba(36, 39, 44, 0.1);
  background: #f2f3f7;
  padding: 4px 8px;
  gap: 4px;
  right: 20px;
  top: 20px;
}
.trend-card-img {
  display: flex;
  align-items: self-end;
  padding-bottom: 8px;
  justify-content: space-between;
}
.trend-color ul {
  border-radius: 20px;
  border: 1px solid #d3d4d5;
  display: flex;
  gap: 4px;
  padding: 6px;
}
.trend-card .slick-prev,
.trend-card .slick-next,
.leader-card .slick-prev,
.leader-card .slick-next {
  top: -35%;
  left: 89%;
}
.awards-card .slick-prev,
.awards-card .slick-next {
  top: -13%;
  left: 89%;
}
.trend-card .slick-next,
.leader-card .slick-next,
.awards-card .slick-next {
  left: 95%;
}

.trend-color ul li {
  border-radius: 20px;
  border: 8px solid #ba0911;
  width: 22px;
  height: 22px;
  border-radius: 50%;
}
.trend-color ul li:nth-child(2) {
  border-color: #919fa1;
}
.trend-color ul li:nth-child(3) {
  border-color: #ebebeb;
}
.product-spec {
  border-top: 1px solid #d3d4d5;
  display: flex;
  justify-content: space-between;
  margin: 0 -20px;
  padding: 16px 20px 0;
}
.product-spec span {
  color: rgba(36, 39, 44, 0.5);
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}

/* Awards Css Strat */
.awards h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 56px;
}
.awards-card {
  display: flex;
  padding: 40px 0;
  justify-content: space-between;
}
.awards-card img {
  border-radius: 16px;
  width: 100%;
}
.awards-card li {
  position: relative;
}
.awards-card span {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  padding: 0 16px 30px;
  line-height: 26px;
}
.awards .award-btn-all,
.leader .award-btn-all {
  border-radius: 8px;
  border: 1px solid #d3d4d5;
  width: 300px;
  height: 48px;
  color: #ab1014;
  font-size: 15px;
  font-weight: 600;
  line-height: 23px;
  background: transparent;
}
.award-btn {
  display: flex;
  justify-content: center;
}
/* Awards Css End */

/* Leader Css Start */
.leader h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 56px;
  padding-bottom: 10px;
}
.leader p {
  font-size: 17px;
  font-weight: 400;
  line-height: 24px;
  padding-bottom: 40px;
}
.leader-card,
.leader-info {
  display: flex;
  justify-content: space-between;
}
.leader-card {
  padding-bottom: 40px;
}

.leader-card li .leader-card-img {
  border-radius: 8px;
  margin-bottom: 16px;
  width: 100%;
}
.leader-card li > span {
  display: block;
}
.leader-info {
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
}
.rel {
  position: relative;
}
.leader-link {
  position: absolute;
  bottom: -52px;
  right: 12px;
}
.leader-card .leader-name {
  font-size: 20px;
  font-weight: 700;
  line-height: 23px;
}
/* Leader Css End */

/* Footer Css Start */
.footer {
  background: #f2f3f7;
}
.footer-info {
  display: grid;
  grid-template-columns: auto auto auto;
  padding: 60px 0;
}
.footer-info h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  padding-bottom: 20px;
}
.footer-info p {
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
}
.footer-info .footer-call {
  font-size: 28px;
  font-weight: 700;
  line-height: normal;
}
.footer-info .footer-email {
  font-size: 13px;
  font-weight: 400;
  line-height: 24px;
  display: block;
}
.footer-info .social-media {
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
}
.social-media ul {
  display: flex;
  gap: 49px;
}
.social-media ul img {
  width: 27px;
  height: 27px;
}

.footer-copyright {
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  color: #1a3760;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
}

/* Footer Css End */

#logo-splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100000;
  animation: fadeOut 4s ease-in-out forwards;
}

#logo-splash img {
  height: auto;
  /*   animation: moveLogo 2s ease-in-out forwards; */
}

/* @keyframes moveLogo {
  0% {
    transform: translate(0, 0) scale(1);
  }
  20% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-37vw, -46vh) scale(0.13);
  }
} */
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* Our Service Css Start */
.our-service {
  background: url("../images/ourServices.svg");
  border-radius: 32px;
  padding: 60px 40px;
}
.our-service::before {
  content: "";
  background-color: -11.954px 0px / 102.097% 100.624% no-repeat, #10152a;
}
.our-service h2 {
  color: #fff;
  text-align: center;
  font-size: 42px;
  font-weight: 600;
  line-height: 56px;
  padding-bottom: 40px;
}
.our-service .service-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: #fff;
  gap: 24px;
}
.our-service .service-card li {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.01);
  box-shadow: 0px 39px 56px -36px rgba(255, 255, 255, 0.5) inset,
    0px 7px 11px -4px #fff inset,
    0px -82px 68px -64px rgba(14, 78, 114, 0.3) inset,
    0px 98px 100px -48px rgba(0, 161, 253, 0.3) inset,
    0px 4px 18px 0px rgba(8, 59, 88, 0.3) inset,
    0px 1px 40px 0px rgba(13, 137, 207, 0.2) inset;
  backdrop-filter: blur(12.5px);
  border-radius: 16px;
  padding: 32px;
}
.our-service .service-card li div {
  font-size: 28px;
  font-weight: 600;
  line-height: normal;
  padding-bottom: 24px;
}
.our-service .service-card li p {
  font-size: 15px;
  line-height: 24px;
}

/* Oue Service Css End */

/* About header Css Start */
.header-about {
  background-color: #000;
}
.dealerAbout h3 {
  font-size: 30px;
  font-weight: 600;
}
.dealerAbout ul li {
  list-style: disc;
}
.dealerAbout ul li::marker {
  font-size: 20px;
}
.dealerAbout strong {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  font-weight: 600;
  display: block;
}
.dealerAbout span {
  font-size: 15px;
}
.header-about + #about_us {
  margin-top: 0;
  padding-top: 100px;
}

/* About header Css End */

/* Mobile Css Start */
@media screen and (max-width: 768px) {
  .dealerAbout {
    padding: 0 5px;
  }
  #logo-splash img {
    width: 180px;
  }
  #logo-splash {
    width: 100vw;
    height: 100vh;
  }
  @keyframes moveLogo {
    0% {
      transform: translate(0, 0) scale(1);
    }
    20% {
      transform: translate(0, 0) scale(1);
    }
  }
  .banner-video .videoIframe {
    height: 100vh;
  }

  .header-info .logo-left {
    width: 125px;
    display: none;
  }
  header nav {
    margin-top: 0;
  }
  header nav.mobMenu {
    display: block;
  }
  .brandgrid .content {
    width: 100%;
  }
  .slick-next,
  .slick-prev {
    display: none !important;
  }

  .aboutus-logo {
    gap: 20px;
    flex-direction: column;
  }
  .top-banner .desktopImg {
    height: auto;
    width: auto;
  }

  .section-top {
    margin-top: 50px;
  }
  .banner-video-info h1 {
    font-size: 31px;
  }
  .brands h2 {
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 33px;
  }
  .brands ul {
    gap: 8px;
  }
  .brands .slick-slide {
    margin: 0px 4px;
  }
  .brands .brandName {
    font-size: 16px;
  }
  .brands .brandDetails {
    font-size: 11px;
  }
  .brands ul li {
    padding: 4px 10px 10px 10px;
    margin-bottom: 0;
  }
  .brands img {
    width: 84px;
    height: 42px;
  }
  .promoter {
    padding: 50px 20px;
  }
  .section-top.promoter {
    margin-top: 50px;
  }
  .promoter-left {
    margin-top: 0;
    text-align: center;
  }

  .promoter-left h2 {
    font-size: 24px;
    padding: 9px 0;
  }
  .promoter-left p {
    font-size: 15px;
    padding-bottom: 15px;
    line-height: 23px;
  }
  .promoter-right {
    padding: 20px 0 20px 20px;
    grid-template-columns: 8fr 2fr;
    align-items: end;
  }
  .promoter-right-info p {
    padding-bottom: 16px;
  }
  .promoter-right-name {
    padding-top: 16px;
  }
  .promoter-right .promoter-img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100px;
  }

  .leader h2 {
    font-size: 24px;
    line-height: 140%;
  }

  .awards h2 {
    font-size: 24px;
    line-height: 140%;
  }
  .awards-card img {
    width: 100%;
  }
  .awards-card span {
    padding: 0 50px 30px;
  }
  .leader-card li .leader-card-img {
    width: 100%;
  }

  .dealer {
    flex-direction: column;
    gap: 0;
  }
  .dealer > img {
    position: relative;
    z-index: 1111;
  }
  .dealerInfo h2 {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 8px;
  }
  .dealerInfo p,
  .dealerInfo .dealer-heading {
    font-size: 15px;
  }
  .dealerInfo {
    border-radius: 20px;
    background: #fff;
    box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.1);
    padding: 50px 20px;
    margin-top: -40px;
  }
  .dealerInfo button {
    width: 100%;
  }
  .choose {
    padding: 50px 0;
  }
  .section-top.choose {
    margin-top: 50px;
  }
  .choose h2 {
    font-size: 24px;
    padding-bottom: 20px;
    line-height: 33px;
  }
  .choose ul {
    gap: 20px;
    grid-template-columns: auto;
  }
  .choose ul li {
    text-align: center;
  }
  .choose ul li span {
    display: block;
    padding: 25px 0;
  }
  .choose ul li:last-child span {
    display: block;
    padding: 20px 0;
  }
  .choose ul li img {
    display: block;
    margin: 0 auto;
  }
  .footer-info {
    grid-template-columns: auto;
    row-gap: 40px;
    padding: 50px 0;
  }
  .footer-info h3 {
    padding-bottom: 12px;
  }
  .footer-info .social-media ul {
    padding: 7px 0 3px 0;
  }

  .footer-info .social-media h3 {
    padding-bottom: 20px;
  }
  .copyright-top {
    flex-direction: column;
    align-items: baseline;
    gap: 10px;
  }
  .copyright-top span {
    line-height: 20px;
  }
  .dealer > img {
    width: 100%;
    height: auto;
  }
  .trend-product h2 {
    font-size: 24px;
    line-height: 140%;
    padding-bottom: 20px;
  }
  .trend-card ul li h3 {
    line-height: normal;
  }
  .trend-card ul .trend-card-item {
    padding: 16px;
    margin-bottom: 0;
  }
  .trend-card-offer {
    top: 16px;
    right: 16px;
  }
  .product-spec {
    margin: 0 -16px;
  }
  .trend-card ul li h3 a {
    font-size: 18px;
  }
  .trend-price {
    font-size: 24px;
  }
  .banner-video-info {
    top: 31.5%;
  }
  .banner-top .banner-video-info .bannerHeading::before {
    left: 10px;
    top: 40px;
    background-size: 61px;
  }
  header#stickyheader {
    position: absolute;
    padding: 24px 0;
  }
  header#stickyheader .deskNav {
    display: none;
  }
  header .logo {
    width: 100%;
  }
  header .logo a img {
    width: 175px;
    height: 28px;
    margin: 0;
  }
  .mobNav {
    font-size: 15px;
    color: #fff;
    line-height: 27px;
    font-weight: 500;
    position: relative;
  }
  .dealer-video {
    min-height: 708px;
  }
  .dealer-video h2 {
    font-size: 24px;
    line-height: 36px;
    padding: 50px 0 40px;
  }
  .dealer-video-info .dealer-video-item2 {
    grid-row: 2;
  }
  .dealer-video-info {
    grid-template-columns: 115px 180px;
    grid-template-rows: 115px 115px;
    row-gap: 18px;
    column-gap: 24px;
  }
  .dealer-video .playVideo {
    right: 35%;
    bottom: 10%;
    top: unset;
  }

  .dealer-video-info .dealer-video-item3 {
    margin-top: 26px;
  }
  .banner-video-info h1 {
    font-size: 31px;
    line-height: 48px;
  }

  .dealer-img h2 {
    font-size: 24px;
    line-height: 36px;
    padding: 50px 0 40px;
  }
  .dealer {
    flex-direction: column;
    gap: 0;
    padding: 10px 0 0 0;
  }
  .dealer > img {
    position: relative;
    z-index: 1111;
    transform: scale(1.05);
  }
  .dealerInfo h2 {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 8px;
  }
  .dealerInfo p,
  .dealerInfo .dealer-heading {
    font-size: 15px;
  }
  .promoter-top {
    margin: 0 auto;
  }
  .dealerInfo {
    border-radius: 20px;
    background: #fff;
    box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.1);
    padding: 50px 20px;
    margin-top: -25px;
  }
  .mobNav::after,
  .mobNav::before {
    content: "";
    background-color: #fff;
    display: block;
    width: 24px;
    height: 2px;
    position: absolute;
    top: 4px;
    right: 50px;
    opacity: 1;
    z-index: 999999;
  }
  .mobNav::after {
    width: 20px;
    top: 12px;
    right: 50px;
  }
  .open .mobLogo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 76px;
  }
  .open .mobLogo .logoImg {
    width: 180px;
    height: 28px;
  }
  .open .mobLogo #closeMenu {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .open .mobLogo #closeMenu img {
    width: 18px;
    height: 18px;
    /* margin-right: 10px; */
  }
  .open .mobLogo #closeMenu {
    font-size: 15px;
    font-weight: 500;
    line-height: 27px;
    color: #1a3760;
  }
  .navList {
    position: fixed;
    z-index: 999999;
    top: 0;
    left: -300px;
    width: 250px;
    height: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    transition: 0.3s;
    box-shadow: -4px 0 15px 0px #373435;
    -webkit-box-shadow: -4px 0 15px 0px #373435;
    -moz-box-shadow: -4px 0 15px 0px #373435;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
  }
  .open > .navList {
    left: 0;
    background: #f2f3f7;
    width: 100%;
    padding: 20px;
  }

  header .open .navigations ul li {
    display: block;
    text-align: left;
  }
  header .open .navigations ul li a {
    padding: 16px 24px;
    font-size: 20px;
    font-weight: 500;
    line-height: 31px;
    color: #1a3760;
    text-transform: unset;
  }
  header .open .navigations ul li a.active {
    color: #a91115;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
  }

  .trend-card-img > img {
    width: 153px;
    height: 74px;
  }
  .banner-video video {
    margin-top: 0;
  }
  .our-service .service-card {
    grid-template-columns: auto;
  }
  .choose ul li .choose-card {
    padding: 16px;
    height: 315px;
  }
  .choose ul li:last-child .chooseCircle {
    bottom: -30px;
    top: auto;
  }
}

.product-spec li img {
  display: inline-block;
}
