@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.sec-pad {
  padding: 60px 0 0;
}
@media only screen and (max-width: 991px) {
  .sec-pad {
    padding: 50px 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .sec-pad {
    padding: 40px 0 0;
  }
}

.sec-pad-all {
  padding: 60px 0;
}
@media only screen and (max-width: 991px) {
  .sec-pad-all {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 768px) {
  .sec-pad-all {
    padding: 40px 0;
  }
}
@media only screen and (max-width: 540px) {
  .sec-pad-all {
    padding: 40px 0;
  }
}

.become_dealer .bg .banner-wrapper {
  top: unset;
  bottom: 15%;
  left: 50%;
  translate: -50% 15%;
}
.become_dealer .bg .banner-wrapper .heading {
  text-align: center;
}
.become_dealer .bg .banner-wrapper .heading h1 {
  max-width: 100%;
  margin: 0;
}
.become_dealer .bg .banner-wrapper .heading p {
  color: var(--white);
}

.invitation_sec .heading {
  text-align: center;
  margin-bottom: 40px;
}
.invitation_sec .heading h2 {
  font-size: 42px;
}
.invitation_sec .main_wrapper {
  --gap: 50px;
  gap: var(--gap);
  align-items: center;
  justify-content: center;
}
.invitation_sec .main_wrapper figure {
  flex: 0 1 auto;
  max-width: 40%;
  width: 100%;
  border-radius: 10px;
}
.invitation_sec .main_wrapper figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: inherit;
}
.invitation_sec .main_wrapper figcaption {
  flex: 1;
  max-width: calc(100% - (40% + var(--gap)));
  width: 100%;
}
.invitation_sec .main_wrapper figcaption h4 {
  font-size: 32px;
  max-width: 420px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.invitation_sec .main_wrapper figcaption .desc {
  margin-bottom: 20px;
}
.invitation_sec .main_wrapper figcaption .desc p:not(:last-child) {
  margin-bottom: 15px;
}

.why_choose_us .heading {
  max-width: 455px;
  text-align: center;
  margin: 0 auto 50px;
}
.why_choose_us .heading h2 {
  font-size: 42px;
  line-height: 1.1;
}
.why_choose_us .heading p {
  margin-top: 0;
}
.why_choose_us .main_wrapper {
  position: relative;
}
.why_choose_us .main_wrapper .swiper-nav button svg path {
  fill: none;
  stroke: var(--white);
}
.why_choose_us .main_wrapper .why_slider {
  max-width: 98%;
}
.why_choose_us .main_wrapper .why_col {
  position: relative;
  background: linear-gradient(0deg, #F5EBEA, #FFFFFF);
  height: 250px;
  border: 1px solid #D5D5D5;
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.why_choose_us .main_wrapper .why_col:hover .content_wrap {
  transform: translateY(0);
}
.why_choose_us .main_wrapper .why_col:hover .content_wrap h6 {
  opacity: 1;
}
.why_choose_us .main_wrapper .why_col:hover > h6 {
  transform: translateY(-70px);
}
.why_choose_us .main_wrapper .why_col .icon {
  width: 55px;
  height: 55px;
  margin: 0 0 15px;
}
.why_choose_us .main_wrapper .why_col h6 {
  font-size: 18px;
  font-weight: 600;
  color: #070606;
  transition: 0.5s ease;
}
.why_choose_us .main_wrapper .why_col .plus {
  display: block;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  position: absolute;
  bottom: 15px;
  right: 20px;
  border-radius: 5px;
}
.why_choose_us .main_wrapper .why_col .content_wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(0deg, #B4685F, #E0978B);
  transition: 0.5s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transform: translateY(100%);
}
.why_choose_us .main_wrapper .why_col .content_wrap h6 {
  color: var(--white);
  margin-bottom: 12px;
  opacity: 0;
  transition-delay: 0.2s;
}
.why_choose_us .main_wrapper .why_col .content_wrap p {
  color: rgba(255, 255, 255, 0.6980392157);
  line-height: 1.3;
  font-size: 14px;
}

.four_pillar .banner-wrapper .heading {
  max-width: 535px;
  margin: 0 auto;
  text-align: center;
}
.four_pillar .banner-wrapper .heading h2 {
  width: 100%;
  color: var(--white);
  margin-bottom: 10px;
  font-size: 42px;
}
.four_pillar .banner-wrapper .heading p {
  color: var(--white);
}

.what_you_selling {
  background: var(--gradient-a);
}
.what_you_selling .heading {
  text-align: center;
  margin-bottom: 40px;
}
.what_you_selling .heading h2 {
  font-size: 42px;
}
.what_you_selling .main_wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}
.what_you_selling .main_wrapper .selling_col {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  background: var(--white);
}
.what_you_selling .main_wrapper .selling_col:hover figure img {
  transform: scale(1.1);
}
.what_you_selling .main_wrapper .selling_col figure {
  line-height: 0;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  position: relative;
}
.what_you_selling .main_wrapper .selling_col figure::before {
  content: "";
  display: block;
  width: 0px;
  height: 86%;
  position: absolute;
  top: 7%;
  left: 0%;
  opacity: 0;
  background: white;
  box-shadow: 0 0 55px 12px white;
  transform: skewX(-20deg);
  z-index: 1;
}
.what_you_selling .main_wrapper .selling_col figure:hover::before {
  animation: shine 0.4s linear;
  animation-fill-mode: none;
}
.what_you_selling .main_wrapper .selling_col figure img {
  border-radius: inherit;
  transition: 0.8s ease;
}
.what_you_selling .main_wrapper .selling_col figcaption {
  padding: 15px;
}
.what_you_selling .main_wrapper .selling_col figcaption h6 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 5px;
}
.what_you_selling .main_wrapper .selling_col figcaption p {
  font-size: 14px;
  line-height: 1.3;
}

.partner_sec .main_wrapper {
  --gap: 50px;
  gap: var(--gap);
  align-items: center;
  justify-content: center;
}
.partner_sec .main_wrapper figure {
  flex: 1;
  max-width: 50%;
  width: 100%;
  border-radius: 10px;
  line-height: 0;
}
.partner_sec .main_wrapper figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: inherit;
}
.partner_sec .main_wrapper figcaption {
  flex: 1;
  max-width: 50%;
  width: 100%;
}
.partner_sec .main_wrapper figcaption .heading {
  margin-bottom: 20px;
}
.partner_sec .main_wrapper figcaption .heading h2 {
  font-size: 42px;
  margin-bottom: 5px;
}
.partner_sec .main_wrapper figcaption .desc p:not(:last-child) {
  margin-bottom: 10px;
}
.partner_sec .main_wrapper figcaption .desc ul {
  margin-bottom: 15px;
  padding-left: 18px;
}
@media only screen and (max-width: 675px) {
  .partner_sec .main_wrapper figcaption .desc ul {
    padding-left: 10px;
  }
}
.partner_sec .main_wrapper figcaption .desc ul li {
  position: relative;
  padding-left: 25px;
}
@media only screen and (max-width: 675px) {
  .partner_sec .main_wrapper figcaption .desc ul li {
    padding-left: 20px;
  }
}
.partner_sec .main_wrapper figcaption .desc ul li:not(:last-child) {
  margin-bottom: 6px;
}
.partner_sec .main_wrapper figcaption .desc ul li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--secondary);
}
@media only screen and (max-width: 520px) {
  .partner_sec .main_wrapper figcaption .desc ul li::before {
    width: 6px;
  }
}

.relationship_sec .heading {
  text-align: center;
  margin-bottom: 40px;
}
.relationship_sec .main_wrapper {
  --gap: 50px;
  gap: var(--gap);
  justify-content: center;
}
.relationship_sec .main_wrapper article {
  flex: 1;
  max-width: 40%;
  width: 100%;
  background: var(--gradient-a);
  padding: 30px;
  border-radius: 10px;
}
.relationship_sec .main_wrapper article h6 {
  text-align: center;
  margin-bottom: 15px;
  font-size: 24px;
  font-family: "Louize trial";
}
.relationship_sec .main_wrapper article ul {
  padding-left: 18px;
}
@media only screen and (max-width: 675px) {
  .relationship_sec .main_wrapper article ul {
    padding-left: 10px;
  }
}
.relationship_sec .main_wrapper article ul li {
  line-height: 1.3;
  position: relative;
  padding-left: 25px;
}
@media only screen and (max-width: 675px) {
  .relationship_sec .main_wrapper article ul li {
    padding-left: 20px;
  }
}
.relationship_sec .main_wrapper article ul li:not(:last-child) {
  margin-bottom: 10px;
}
.relationship_sec .main_wrapper article ul li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--secondary);
}
@media only screen and (max-width: 520px) {
  .relationship_sec .main_wrapper article ul li::before {
    width: 6px;
  }
}
.relationship_sec .desc {
  text-align: center;
  margin-top: 30px;
}

.how_it_works {
  background: var(--primary);
}
.how_it_works .heading {
  text-align: center;
}
.how_it_works .heading h2 {
  line-height: 1.1;
  color: var(--white);
  font-size: 42px;
}
.how_it_works .heading p {
  color: var(--white);
}
.how_it_works .tab-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  margin: 50px 0 70px;
}
.how_it_works .tab-nav::before {
  content: "";
  position: absolute;
  top: 35%;
  left: 0;
  transform: translate(0, -35%);
  width: 100%;
  height: 1px;
  background: var(--white);
}
.how_it_works .tab-nav li {
  position: relative;
  z-index: 1;
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  --icon: 64px;
  cursor: pointer;
}
.how_it_works .tab-nav li.active .icon {
  background: var(--white);
}
.how_it_works .tab-nav li.active .icon svg path {
  stroke: var(--primary);
}
.how_it_works .tab-nav li.active p {
  color: var(--white);
}
.how_it_works .tab-nav li .icon {
  width: var(--icon);
  height: var(--icon);
  background: #E3BAB4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s ease;
}
.how_it_works .tab-nav li .icon svg, .how_it_works .tab-nav li .icon img {
  width: 60%;
  height: 60%;
}
.how_it_works .tab-nav li .icon svg path, .how_it_works .tab-nav li .icon img path {
  stroke: rgba(255, 255, 255, 0.5019607843);
}
.how_it_works .tab-nav li p {
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.3019607843);
  transition: 0.5s ease;
}
.how_it_works .tab-nav-content .navigation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 96%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}
.how_it_works .tab-nav-content .navigation button {
  width: 50px;
  height: 50px;
  border: 1px solid var(--white);
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.5s ease;
}
.how_it_works .tab-nav-content .navigation button:hover {
  background: var(--white);
}
.how_it_works .tab-nav-content .navigation button:hover svg path {
  stroke: var(--primary);
}
.how_it_works .tab-nav-content .navigation button.work-prev {
  transform: scaleX(-1);
}
.how_it_works .tab-nav-content .navigation button svg {
  width: 50%;
  height: 50%;
}
.how_it_works .tab-nav-content .navigation button svg path {
  stroke: var(--white);
}
.how_it_works .tab-nav-content .main_wrapper {
  max-width: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  gap: 50px;
}
.how_it_works .tab-nav-content .main_wrapper .image_wrapper {
  flex: 1;
  height: 320px;
  position: relative;
}
.how_it_works .tab-nav-content .main_wrapper .image_wrapper figure {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: 0.8s ease;
  border-radius: 10px;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.how_it_works .tab-nav-content .main_wrapper .image_wrapper figure:not(.active) {
  opacity: 0;
}
.how_it_works .tab-nav-content .main_wrapper .image_wrapper figure img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}
.how_it_works .tab-nav-content .main_wrapper .content_wrapper {
  position: relative;
  flex: 1;
  height: 320px;
  overflow: hidden;
}
.how_it_works .tab-nav-content .main_wrapper .content_wrapper .figcaption_wrapper {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}
.how_it_works .tab-nav-content .main_wrapper .content_wrapper figcaption {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 0;
  top: 0;
  left: 0;
  transition: 1s ease;
  transform: translateY(calc(var(--offset, 0) * 100%));
}
.how_it_works .tab-nav-content .main_wrapper .content_wrapper figcaption.active {
  z-index: 1;
}
.how_it_works .tab-nav-content .main_wrapper .content_wrapper figcaption h5 {
  font-size: 24px;
  color: var(--white);
  margin-bottom: 10px;
}
.how_it_works .tab-nav-content .main_wrapper .content_wrapper figcaption p {
  color: rgba(255, 255, 255, 0.6980392157);
}
.how_it_works .tab-nav-content .main_wrapper .content_wrapper .btn {
  margin-top: 20px;
}

.conversation_sec {
  background: linear-gradient(180deg, #FFF5F3 0%, #FFFFFF 50%, #FFF5F3 100%);
}
.conversation_sec .heading {
  text-align: center;
  margin-bottom: 50px;
  max-width: 520px;
  margin: 0 auto 50px;
}
.conversation_sec .heading h2 {
  font-size: 42px;
}
.conversation_sec .heading p {
  margin-top: 5px;
}
.conversation_sec .main_wrapper {
  max-width: 780px;
  margin: 0 auto;
}
.conversation_sec .main_wrapper .form .form-grid {
  --item: 2;
}
.conversation_sec .main_wrapper .form .btn_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
.conversation_sec .main_wrapper .desc {
  text-align: center;
  margin-top: 30px;
}
.conversation_sec .main_wrapper .desc a {
  color: var(--primary);
}/*# sourceMappingURL=dealer.css.map */