/* 01 : Website Global CSS BOF
========================================================== */

:root {
  --main-white: #FFFFFF;
  --primary-color: #FD2092;
  --dadada-color: #DADADA;
  --color-FD2092: #FD2092;
  --color-BE1818: #BE1818;
  --black-shade70: rgba(0, 0, 0, 0.7);
  --primary-shade-50: rgb(243, 31, 127, 0.5);
  --white-shade-20: rgba(255, 255, 255, 0.2);
}


* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
html {
  height: 100%;
}

body {
  font-family: "Poppins";
  font-weight: normal;
  font-size: 16px;
  line-height: normal;
  text-transform: none;
  /* user-select: none; */
  overflow-anchor: none;
}

.Russo_one_font {
  font-family: 'Russo One';
}

*,
html {
  margin: 0;
  padding: 0;
}

a {
  color: var(--main-white);
  display: inline-block;
}

/* Common color hyperlink */
a:hover,
a:focus,
a:active {
  color: var(--primary-color);
  text-decoration: none;
}

a.white_text:hover,
a.white_text:focus,
a.white_text:active {
  color: var(--primary-color) !important;
}

/* Common hover color hyperlink */
a,
*:hover,
*:focus,
*:active :focus {
  text-decoration: none;
  outline: none !important;
  outline-offset: 0 !important;
}

a img,
img {
  border: none;
  outline: none !important;
  outline-offset: 0 !important;
}

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

i {
  font-family: "FontAwesome";
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  line-height: normal;
}

/* Transition Effect CSS BOF */
a,
i,
input {
  transition: all 0.4s ease-in-out 0s;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
}

/* Browser Selection CSS BOF */
::selection {
  background: var(--primary-color);
  color: var(--main-white);
}

::-moz-selection {
  background: var(--primary-color);
  color: var(--main-white);
}

::-webkit-selection {
  background: var(--primary-color);
  color: var(--main-white);
}

::-o-selection {
  background: var(--primary-color);
  color: var(--main-white);
}

::-ms-selection {
  background: var(--primary-color);
  color: var(--main-white);
}

/* 02 : Global Classes CSS BOF
==================================================== */

::-webkit-scrollbar {
  width: 0;
  height: 0;
}

section {
  scroll-margin-top: 108px;
}

/* Background &amp; Color Style CSS BOF
=================================================== */

/* Font Color Style CSS BOF */
.white_text {
  color: var(--main-white) !important;
}

.primary_text {
  color: var(--primary-color) !important;
}

.dadada_text {
  color: var(--dadada-color);
}

/* cursor variation csss */
.cursor-pointer {
  cursor: pointer;
}

/* 03 : Heading Style CSS BOF
=================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins";
  line-height: normal;
  font-weight: 600;
  font-style: normal;
  margin-bottom: 0;
}

.h1,
.h2,
.h3,
.h4,
.font-18,
.h6 {
  margin-bottom: 0;
}

h1,
.h1 {
  font-size: 52px;
  line-height: 150%;
}

.h2 {
  font-size: 42px;
  line-height: normal;
}

.h3 {
  font-size: 32px;
  line-height: normal;
}

.h4 {
  font-size: 24px;
  line-height: normal;
}

.h5 {
  font-size: 34px;
}

.font-18 {
  font-size: 18px;
  line-height: normal;
}

.h6 {
  font-size: 14px;
  line-height: normal;
}

.font-22 {
  font-size: 22px;
  line-height: normal;
}

.font-20 {
  font-size: 20px;
  line-height: normal;
}

.font-17 {
  font-size: 17px;
  line-height: normal;
}

.font-16 {
  font-size: 16px;
  line-height: normal;
}

.font-36 {
  font-size: 36px;
  line-height: normal;
}

.font-28 {
  font-size: 28px;
  line-height: normal;
}

.font-56 {
  font-size: 56px;
  line-height: normal;
}

.font-24 {
  font-size: 24px;
  line-height: normal;
}

/* Font Weight Variation CSS BOF */
.font_rg {
  font-weight: normal;
}

.font_light {
  font-weight: 300;
}

.font_bl {
  font-weight: bold;
}

.font_blk {
  font-weight: 900;
}

.font_smb {
  font-weight: 600;
}

.font_md {
  font-weight: 500;
}

/* set line clamp for content */
.line-clamp {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp1 {
  -webkit-line-clamp: 1;
}

.line-clamp2 {
  -webkit-line-clamp: 2;
}

.line-clamp3 {
  -webkit-line-clamp: 3;
}

.line-clamp4 {
  -webkit-line-clamp: 4;
}

.normal-line-height {
  line-height: normal;
}

/* 04 : Paragraph Style CSS BOF
=================================================== */
p,
.p {
  line-height: 24px;
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  margin-bottom: 0;
  font-weight: normal;
}

.flex-0 {
  flex: 0 0 auto;
}

/* 05 : Image Style CSS BOF
=================================================== */
img {
  margin-bottom: 0;
}

/*** Buttton Varilation CSS BOF ***/

.btn {
  background: linear-gradient(to top right, var(--color-FD2092), var(--color-BE1818));
  padding: 18px 14px;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  border-style: none;
  transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  border-radius: 15px;
  text-transform: unset;
  box-shadow: none;
  min-width: 153px;
  line-height: normal;
  color: var(--main-white);
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn:hover,
.btn:focus {
  background: linear-gradient(to top right, var(--main-white), var(--main-white)) !important;
  color: var(--primary-color) !important;
  box-shadow: none;
  outline: none;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* 11 : Form &amp; Input Style BOF
==================================================== */

.form-control {
  background-color: #2F2F2F;
  border: 1px solid transparent;
  border-radius: 20px;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  font-size: 20px;
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  padding: 17px 20px;
  line-height: normal;
  height: 74px;
}

.form-control::placeholder {
  color: #B7B7B7;
  font-weight: 400;
  font-size: 20px;
}

.form-control::-moz-placeholder {
  color: #B7B7B7;
  font-weight: 400;
  font-size: 20px;
}

.form-control:-ms-input-placeholder {
  color: #B7B7B7;
  font-weight: 400;
  font-size: 20px;
}

.form-control::-webkit-input-placeholder {
  color: #B7B7B7;
  font-weight: 400;
  font-size: 20px;
}

.form-control::-o-input-placeholder {
  color: #B7B7B7;
  font-weight: 400;
  font-size: 20px;
}

.form-control:focus {
  border: 1px solid var(--primary-color);
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  background-color: #2F2F2F;
  color: var(--white);
  outline: 0;
}

/* SOME GLOBAL CSS */
.page-wrapper {
  margin: 0px auto;
  overflow: hidden;
  background: linear-gradient(to bottom, #1D1818, #000000 86%, #3D3D3D);
}

/* ======================================================
                COMMON SWIPER SLIDER SOC
====================================================== */
.swiper-button-prev {
  background-color: #FD2092;
  width: 56px;
  height: 56px;
  left: 0;
  z-index: 9;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  border-radius: 100px;
}

.swiper-button-next {
  background-color: #FD2092;
  width: 56px;
  height: 56px;
  right: 0;
  z-index: 9;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  border-radius: 100px;
}

.swiper-button-disabled {
  background-color: #FFF;
  opacity: 0.5;
}

.swiper-button-disabled::after {
  color: #FD2092 !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 26px;
  font-weight: 900;
  color: #FFF;
}

/* ======================================================
                COMMON CONTAINER SOC
====================================================== */
@media (min-width: 1500px) {
  .container {
    max-width: 1420px;
  }
}

@media (min-width: 1600px) {
  .container {
    max-width: 1580px;
  }
}


@media (min-width: 1700px) {
  .container {
    max-width: 1670px;
  }
}

/* COMMON BORDER RADIUS */

.border-r-10 {
  border-radius: 10px;
}

/* ======================================================
                COMMON TITLE SOC
====================================================== */

.common-title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: center;
  padding-bottom: 100px;
}


/* ======================================================
=========================================================
                      HEADER SOC
=========================================================
====================================================== */

/*header active start*/

.site-header {
  position: relative;
  z-index: 999;
}

.header-main {
  position: fixed;
  width: 100%;
  right: 0;
  top: 0;
  left: 0px;
  padding-top: 32px;
  transition: all 400ms ease;
}

.header-main-active {
  position: fixed;
  width: 100%;
  left: 0px;
  right: 0px;
  top: 0px;
  padding-top: 10px;
  transform: translateY(-100%);
}

.header-main-show {
  transform: translateY(0);
}

/*header active end*/

/*index css Start*/

.header-main .header-inner-main {
  position: relative;
  background: transparent;
}

.header-main .header-inner-main .navbar-container {
  max-width: 1720px;
}

.header-main .header-inner-main .header-inner {
  width: 100%;
  align-items: center;
  padding-left: 40px;
}

.header-main .header-inner-main nav.navbar {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -webkit-box;
  display: flex;
  flex-wrap: nowrap;
  align-items: normal;
  background-color: var(--black-shade70);
  border-radius: 25px;
  padding: 12px;
  position: relative;
}

.header-main .header-inner-main nav.navbar::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: transparent;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 25px;
}

.header-menu .header-menu-inner ul li a {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  line-height: 100%;
  color: var(--main-white);
  font-weight: 400;
  padding: 24px 0;
  margin-left: 40px;
}


.header-menu .header-menu-inner {
  display: flex;
  align-items: center;
  gap: 0;
}

.header-menu .header-menu-inner ul li:hover a {
  color: var(--primary-color);
  text-shadow: 0 0 1px var(--primary-color), 0 0 1px var(--primary-color),
    0 0 1px var(--primary-color), 0 0 1px var(--primary-color)
}

/* MENU ACTIVE */
.header-menu .header-menu-inner ul li.current_page_item a {
  color: var(--primary-color);
  text-shadow: 0 0 1px var(--primary-color), 0 0 1px var(--primary-color),
    0 0 1px var(--primary-color), 0 0 1px var(--primary-color);
}

.header-menu .header-menu-inner ul li.sign-in-btn {
  margin-left: 30px;
}

.header-menu .header-menu-inner ul li.sign-in-btn .btn {
  padding: 22px 20px;
  gap: 25px;
  font-size: 20px;
  font-weight: 400;
  margin: 0;
  color: var(--main-white);
  text-shadow: none;
}

.header-menu .header-menu-inner ul li.sign-in-btn .btn:hover svg path,
.header-menu .header-menu-inner ul li.sign-in-btn .btn:hover svg circle {
  stroke: var(--primary-color);
}


@media (min-width: 992px) {
  .dropdown_main .header-tabs .tab-content .card .collapse {
    display: block !important;
  }

  .dropdown_main .header-tabs .tab-content .card-header {
    display: none;
  }

  .navbar-expand-lg .navbar-nav {
    justify-content: center;
    display: flex;
    align-items: center;
  }
}

/*toggele switch*/

.header-main button.navbar-toggler {
  padding: 0;
  border: none;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 0;
}

.header-main button.navbar-toggler span.icon-bar:nth-child(2) {
  visibility: hidden;
  opacity: 0;
}

.header-main button.navbar-toggler.collapsed span.icon-bar:nth-child(2) {
  visibility: visible;
  opacity: 1;
}

.header-main button.navbar-toggler span.icon-bar:nth-child(1) {
  top: 2px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
}

.header-main button.navbar-toggler.collapsed span.icon-bar:nth-child(1),
.header-main .header-inner .header-right button.navbar-toggler.collapsed span.icon-bar:nth-child(3) {
  top: 0;
  transform: rotate(0);
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  margin: 3px auto;
}

.header-main button.navbar-toggler span.icon-bar {
  margin: 0;
  background-color: var(--primary-color);
  border-radius: 2px;
  display: block;
  height: 3px;
  position: relative;
  width: 24px;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  transition: all 200ms ease;
}

.header-main button.navbar-toggler span.icon-bar:nth-child(3) {
  top: -4px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
}

/*dropdown*/

.cart-contents svg {
  width: 28px !important;
  height: 28px !important;
}

.cart-contents .cart-count-number {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px !important;
  background-color: #FD2092 !important;
  color: #FFF !important;
  top: 15px !important;
  right: -6px !important;

}

/*index css END*/

/* ======================================================
=========================================================
                        BANNER SOC
=========================================================
====================================================== */

.banner-sec .banner-vector1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.banner-sec .banner-vector2 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.banner-sec {
  padding-top: 132px;
}

.banner-padding {
  padding: 112px 0;
  z-index: 1;
}

.banner-wrapper {
  gap: 71px;
}

.banner-left {
  width: 713px;
  flex: 0 0 auto;
}

.banner-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.banner-left h1 {
  letter-spacing: -1px;
}

.banner-points-wrapper {
  padding-top: 70px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.banner-right {
  width: calc(100% - 713px);
}

.banner-img-wrapper {
  max-width: 897px;
  margin-left: auto;
}


/* BANNER VIDEO CSS */

.banner-video-container {
  position: relative;
  padding-bottom: 65%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}

.banner-video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.banner-video-container .play-btn {
  position: absolute;
  width: 70px;
  height: 70px;
  border: 0;
  background-color: transparent;
  outline: 0;
  box-shadow: none;
  inset: 0;
  margin: auto;
  transition: all 0.4s ease-in-out;
  border-radius: 100%;
}

.banner-video-container .play-btn .icon {
  width: 100%;
  height: 100%;
  display: none;
}

.banner-video-container .play-btn .play-icon {
  display: block;
}

.banner-video-container .play-btn.hidden {
  opacity: 0;
  pointer-events: none;
}


/* ======================================================
=========================================================
                      SERVICE SOC
=========================================================
====================================================== */

.service-sec::before {
  content: '';
  position: absolute;
  background: linear-gradient(to bottom, #FD2092 0%, #73737300 70%);
  width: 100%;
  height: 100%;
  opacity: 20%;
  top: 0;
  left: 0;
  z-index: 0;
}

.service-padding,
.how-work-padding,
.faq-padding {
  padding: 140px 0;
  position: relative;
  z-index: 1;
}

.service-row {
  --bs-gutter-x: 118px;
  --bs-gutter-y: 100px;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 50px;
}

.service-card-icon-wrapper {
  gap: 24px;
}

.service-icon {
  position: relative;
  max-width: 123px;
  min-width: 123px;
  height: 123px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #FD2092 0%, #971357 100%);
  border-radius: 16px;
}

/* ======================================================
=========================================================
                    PAST WORK SOC
=========================================================
====================================================== */

.past-work-sec {
  background-color: #0C0C0C;
}

.past-work-padding {
  padding: 53px 0;
  background-image: url('../images/app-landing-page/past-work-diamon-vector.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.past-work-swiper {
  padding: 0 29px;
}

.past-work-card {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 18px 14px;
  position: relative;
  border-radius: 16px;
  width: 100%;
}

.past-work-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 3px;
  background: linear-gradient(to bottom, #FD2092, #6F166A);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 40%;
}

.pw-img-wrapper img {
  border-radius: 16px;
  object-fit: cover;
  min-height: 293px;
  max-height: 293px;
}

/* MODAL CSS ADDED  */

.modal-content {
  background: linear-gradient(to bottom, rgba(16, 62, 112, 0.5), rgba(253, 32, 146, 0.5));
  position: relative;
  border-radius: 16px;
  border: 0;
}

.modal-content::before {
  content: '';
  position: absolute;
  background: transparent;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(29px);
  -webkit-backdrop-filter: blur(29px);
  z-index: -1;
  border-radius: 16px;
}

.modal-content::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(to bottom left, #FD2092, #6F166A);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0.4;
}

.modal-content .modal-header {
  padding: 37px;
  position: relative;
  z-index: 1;
}

.modal-content .btn-close {
  width: 28px;
  height: 28px;
  background: transparent center/26px auto no-repeat;
  background-image: url('../images/app-landing-page/close.svg') !important;
  opacity: 1;
}

.modal-content .btn-close:focus {
  box-shadow: none;
}

.modal-title {
  font-size: 26px;
  line-height: 100%;
  font-weight: 600;
  color: var(--main-white);
}

.modal-content .modal-body {
  padding: 34px 20px;
}

.past-work-modal-slider {
  padding: 0 28px;
}

.past-work-modal-slider .past-work-image-wrapper {
  max-height: 75vh;
  border-radius: 16px;
  overflow: hidden;
}

.past-work-modal-slider .past-work-image-wrapper .past-work-slider-img {
  object-fit: cover;
  height: 75vh;
}

@media (max-height: 800px) {
  .past-work-modal-slider .past-work-image-wrapper {
    max-height: 70vh;
  }

  .past-work-modal-slider .past-work-image-wrapper .past-work-slider-img {
    height: 70vh;
  }
}

/* ======================================================
=========================================================
                    HOW IT WORK SOC
=========================================================
====================================================== */

/* content slide part start  */

.product-content-gallery {
  max-width: 682px;
  margin-left: auto;
  margin-right: 0;
}

.how-work-customer-content-gallery {
  max-width: 682px;
  margin-left: 0;
  margin-right: auto;
}

.product-content .swiper-slide:last-child .how-work-border-wrapper {
  display: none;
}

.product-content .swiper-slide:last-child .how-work-content-box::after,
.product-content .swiper-slide:last-child .how-work-content-box::before {
  display: none;
}

.product-content .swiper-slide:last-child .how-work-content-box {
  margin-bottom: 0;
}

.how-work-content-box {
  display: flex;
  gap: 42px;
  margin-bottom: 145px;
}

.how-work-content-box::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 120%;
  border: 2px solid #404040;
  top: 120px;
  left: 55px;
  margin: auto;
  z-index: -2;
}

.how-work-content-box::before {
  content: '';
  position: absolute;
  width: 2px;
  height: 1%;
  border: 2px solid #FD2092;
  top: 120px;
  left: 55px;
  margin: auto;
  z-index: -1;
  transition: all 0.6s ease-in-out;
  opacity: 0;
}

.product-content-gallery .swiper-slide-visible.swiper-slide-thumb-active .how-work-content-box::before,
.how-work-customer-content-gallery .swiper-slide-visible.swiper-slide-thumb-active .how-work-content-box::before {
  height: 120%;
  opacity: 1;
}

.how-work-icon-wrapper {
  position: relative;
  max-width: 113px;
  min-width: 113px;
  height: 113px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #1B1B1B, #1B1B1B);
  border-radius: 16px;
  border: 2px solid rgba(212, 212, 212, 20%);
  transition: all 0.6s ease-in-out;
}

.how-work-border-wrapper {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #404040;
  clip-path: circle(50% at 50% 0);
  bottom: -21px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
  transition: all 0.6s ease-in-out;
}

.hw-box-text {
  line-height: 100% !important;
}

.hw-box-color-step {
  color: #404040;
  transition: all 0.6s ease-in-out;
}

.hw-box-color-text {
  color: #404040;
  transition: all 0.6s ease-in-out;
}

.product-content-gallery .swiper-slide-visible.swiper-slide-thumb-active .how-work-box-details .hw-box-color-step,
.how-work-customer-content-gallery .swiper-slide-visible.swiper-slide-thumb-active .how-work-box-details .hw-box-color-step {
  color: var(--primary-color);
}

.product-content-gallery .swiper-slide-visible.swiper-slide-thumb-active .how-work-box-details .hw-box-color-text,
.how-work-customer-content-gallery .swiper-slide-visible.swiper-slide-thumb-active .how-work-box-details .hw-box-color-text {
  color: var(--main-white);
}

.how-work-icon-wrapper svg path {
  fill: rgba(212, 212, 212, 0.4);
  transition: all 0.6s ease-in-out;
}

.product-content-gallery .swiper-slide-visible.swiper-slide-thumb-active .how-work-icon-wrapper svg path,
.how-work-customer-content-gallery .swiper-slide-visible.swiper-slide-thumb-active .how-work-icon-wrapper svg path {
  fill: #FFF;
}

.product-content-gallery .swiper-slide-visible.swiper-slide-thumb-active .how-work-border-wrapper,
.how-work-customer-content-gallery .swiper-slide-visible.swiper-slide-thumb-active .how-work-border-wrapper {
  background-color: #FD2092;
}

.product-content-gallery .swiper-slide-visible.swiper-slide-thumb-active .how-work-icon-wrapper,
.how-work-customer-content-gallery .swiper-slide-visible.swiper-slide-thumb-active .how-work-icon-wrapper {
  background: linear-gradient(to right, #FD2092 0%, rgba(0, 0, 0, 20%) 80%);
  border: 2px solid #FD2092;
}

/* content slide part END  */

/* Image slide part START  */

.product-image-gallery,
.how-work-customer-image-gallery {
  overflow: visible !important;
}

.how-work-image-wrraper {
  max-width: 768px;
  position: relative;
}

.how-work-image-wrraper-mobile {
  opacity: 0;
  visibility: hidden;
  height: 0;
}

.how-work-image-wrraper .blue-circle {
  width: 500px;
  height: 500px;
  background: radial-gradient(#2CA1D7 22%, #73737300);
  filter: blur(250px);
  display: block;
  position: absolute;
  left: 82px;
  right: 0;
  border-radius: 100%;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
}

.how-work-image-wrraper .blue-circle-2 {
  left: 164px;
  background: radial-gradient(#42F9FD 48%, #73737300);
  right: 0;
  border-radius: 100%;
  top: unset;
  bottom: 173px;
}

.product-image-gallery .product-img,
.how-work-customer-image-gallery .product-img {
  max-width: 770px;
  height: 1000px;
  object-fit: contain;
}

.product-image-gallery .swiper-slide,
.how-work-customer-image-gallery .swiper-slide {
  visibility: hidden;
  opacity: 0;
}

.product-image-gallery .swiper-slide-visible.swiper-slide-active,
.how-work-customer-image-gallery .swiper-slide-visible.swiper-slide-active {
  visibility: visible;
  opacity: 1;
}

/* Image slide part END  */


/* ======================================================
=========================================================
                    TESTIMONIAL SOC
=========================================================
====================================================== */

.testimonial-sec::before {
  content: '';
  position: absolute;
  background: linear-gradient(161deg, #FD2092 0%, #000000 76%);
  opacity: 0.4;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

.testimonial-sec {
  background-image: url('../images/app-landing-page/testimonial-bg-vector.png');
  background-position: top;
  background-size: cover;
}

.testimonial-padding {
  padding: 64px 0 80px;
  position: relative;
  z-index: 1;
}

.testimonial-swiper .swiper-slide {
  transition: all 0.6s ease-in-out;
}

.testimonial-swiper .swiper-slide-active,
.testimonial-swiper .swiper-slide-next {
  opacity: 1;
}

.testimonial-swiper .swiper-slide-prev {
  opacity: 0;
}

.testimonial-swiper {
  padding: 80px 0 70px;
}

.swiper-slide.swiper-slide-active .testimonial-card {
  position: relative;
  width: 456px;
  min-height: 524px;
  margin-left: 24px;
  margin-right: auto;
}

/* active slider css */

.swiper-slide.swiper-slide-active .testimonial-card::before {
  content: '';
  position: absolute;
  background-image: url('../images/app-landing-page/shape1.svg');
  background-size: 100%;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  transform: scale(1, 1);
}

.swiper-slide.swiper-slide-active .testimonial-card .testimonial-card-body {
  padding: 120px 50px 0 97px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* next slider css */

.swiper-slide.swiper-slide-next .testimonial-card {
  width: 100% !important;
  min-height: 576px;
  margin: auto;
}

.swiper-slide.swiper-slide-next .testimonial-card::before {
  content: '';
  position: absolute;
  background-image: url('../images/app-landing-page/shape2.svg');
  background-size: 100%;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

.swiper-slide.swiper-slide-next .testimonial-card .testimonial-card-body {
  padding: 80px 70px 0 70px;
}

/* last slider css */

.swiper-slide .testimonial-card {
  position: relative;
  width: 456px;
  min-height: 524px;
  margin-left: auto;
  margin-right: 24px;
}

.swiper-slide .testimonial-card::before {
  transform: scale(-1, 1);
  content: '';
  position: absolute;
  background-image: url('../images/app-landing-page/shape1.svg');
  background-size: 100%;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

.swiper-slide .testimonial-card .testimonial-card-body {
  padding: 120px 97px 0 50px;
}

.tc-name {
  font-size: 22px;
  line-height: 36px;
}

.tc-designation {
  font-size: 16px;
  line-height: 24px;
}

.tc-desc {
  font-size: 16px;
  line-height: 22px;
}

.swiper-slide.swiper-slide-next .tc-name {
  font-size: 36px;
  line-height: 48px;
}

.swiper-slide.swiper-slide-next .tc-designation {
  font-size: 22px;
  line-height: 32px;
}

.swiper-slide.swiper-slide-next .tc-desc {
  font-size: 20px;
  line-height: 30px;
}

/* ======================================================
=========================================================
                        FAQ SOC
=========================================================
====================================================== */

.faq-section .faq-vector1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.faq-section .faq-vector2 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.faq-wrapper {
  max-width: 1216px;
  margin: auto;
  padding-top: 70px;
}

.faq-wrapper .accordion .accordion-item {
  background-color: rgba(255, 255, 255, 0.4);
  border: 0;
  margin-bottom: 36px;
}

.faq-wrapper .accordion .accordion-item {
  border-radius: 12px;
}

.faq-wrapper .accordion .accordion-item:nth-last-child(1) {
  margin-bottom: 0;
}

.faq-wrapper .accordion .accordion-item:first-of-type>.accordion-header .accordion-button {
  border-radius: 12px;
}

.faq-wrapper .accordion .accordion-button {
  background: linear-gradient(to right, #FD2092, #2E0E3D);
  box-shadow: none;
  border-radius: 12px !important;
  font-size: 24px;
  font-weight: 600;
  line-height: 100%;
  padding: 32px 32px;
  position: relative;
  color: var(--main-white);
  gap: 16px;
}

.faq-wrapper .accordion .accordion-button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1px;
  background: linear-gradient(to bottom left, #FD2092, #6F166A);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0.4;
}


.faq-wrapper .accordion .accordion-button::after {
  background-image: url('../images/app-landing-page/chevron-icon.svg');
  transition: all 0.4s ease-in-out;
  height: 13px;
  transform: rotate(180deg);
}

.faq-wrapper .accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(0deg);
}

.faq-wrapper .accordion .accordion-body {
  font-size: 22px;
  font-weight: 400;
  line-height: 120%;
  color: var(--main-white);
  padding: 28px 32px 34px;
}

/* ======================================================
=========================================================
                      SUBSCRIBE SOC
=========================================================
====================================================== */

.subscribe-section {
  background: linear-gradient(to right, #FD2092, #6F166A);
}

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


.subscribe-form {
  min-width: 902px;
  position: relative;
  height: 100%;
}

.subscribe-btn {
  font-size: 24px;
  background: linear-gradient(140deg, #FD2092 59%, #6F166A 120%);
  min-width: 280px;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  border-radius: 16px;
  color: #FFF !important;
  border: 0;
}


/* ===============================================
==================================================
              LOGO BRAND SLIDER SECTION
==================================================
=============================================== */

.logo-brand-sec {
  padding: 26px 0;
  border-top: 1px solid var(--main-white);
  border-bottom: 1px solid var(--main-white);
}

.logoSlider {
  /* overflow: hidden;
  white-space: nowrap; */
  display: flex;
  overflow: hidden;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: 100%;
  z-index: 1;
  gap: 80px;
}

.logoSlider-track {
  /* display: flex;
  width: 100%;
  animation: scroll 30s linear infinite;
  animation-play-state: running;
  gap: 80px; */
  animation: scroll 20s linear infinite;
  display: flex;
  align-items: center;
  gap: 80px;
  flex: 0 0 auto;
  justify-content: space-around;
  width: 100%;
}

.BrandLogo-wrapper {
  max-height: 56px;
}

.BrandLogo-wrapper .BrandLogo {
  width: auto;
  max-height: 56px;
}

@-webkit-keyframes scroll {

  /* Safari fallback */
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - 80px));
  }
}

@keyframes scroll {

  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - 80px));
  }
}


/* ===============================================
==================================================
                  FOOTER SECTION
==================================================
=============================================== */

.main-footer {
  padding: 122px 0 118px;
  background-image: url('../images/footer-bg-vector.png');
  background-position: top;
  background-size: inherit;
  background-repeat: no-repeat;
}

.footer-wrapper .footer-bg-logo {
  max-width: 1621px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
}

.main-footer .footer {
  gap: 220px;
  position: relative;
  z-index: 1;
}

.main-footer .footer .footer-left {
  width: 605px;
}

.main-footer .footer .footer-left .footer-content {
  letter-spacing: -2px;
  line-height: 152%;
  border-top: 5px solid var(--white-shade-20);
  padding-top: 24px;
  margin-top: 40px;
}

.main-footer .footer .footer-right {
  width: calc((100% - 601px) - 220px);
}

.footer-right .subscribe-wrapper .subscribe-input .subcribe-btn {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  max-width: 82px;
  min-width: 82px;
  max-height: 74px;
}

.subscribe-input .subcribe-btn svg path {
  transition: all 0.4s ease-in-out;
}

.subscribe-input .subcribe-btn:hover svg path {
  stroke: var(--primary-color);
  fill: var(--primary-color);
}

.link-follow-us-wrapper {
  gap: 50px;
  padding-top: 93px;
}

.link-follow-us-wrapper .footer-link {
  width: calc((100% - 475px) - 50px);
}

.link-follow-us-wrapper .folow-us-wrapper {
  width: 475px;
}

.folow-us-wrapper .social-icons-wrapper {
  padding: 43px 0;
  margin-bottom: 43px;
  border-bottom: 2px solid var(--white-shade-20);
}

.folow-us-wrapper .social-icons-wrapper .social-icons {
  width: 65px;
  height: 65px;
  background-color: var(--primary-shade-50);
  border-radius: 17px;
  padding: 12px;
}

.main-footer .footer-wrapper .footer-bottom-text {
  border-top: 1px solid var(--white-shade-20);
}


@media (max-width: 1899.98px) {

  .font-22 {
    font-size: 20px;
  }

  .font-24 {
    font-size: 22px;
  }

  .font-56 {
    font-size: 54px;
  }

  /* ======================================================
=========================================================
                      HEADER SOC
=========================================================
====================================================== */

  .header-main .header-inner-main .navbar-container {
    max-width: 1670px;
  }

  .header-menu .header-menu-inner ul li a {
    font-size: 22px;
  }

  .header-menu .header-menu-inner ul li.sign-in-btn .btn {
    padding: 20px 20px;
  }

}

@media (max-width: 1699px) {
  /* 03 : Heading Style CSS BOF
=================================================== */

  .h3 {
    font-size: 30px;
  }

  /* ======================================================
=========================================================
                      HEADER SOC
=========================================================
====================================================== */

  .header-main .header-inner-main .navbar-container {
    max-width: 1580px;
  }

  .header-menu .header-menu-inner ul li a {
    font-size: 20px;
    margin-left: 30px;
  }

  .header-menu .header-menu-inner ul li.sign-in-btn .btn {
    padding: 18px 20px;
  }

  .header-menu .header-menu-inner ul li.sign-in-btn {
    margin-left: 38px;
  }

  .header-logo .custom-logo-link .custom-logo {
    max-width: 220px;
  }

  /* ======================================================
=========================================================
                        BANNER SOC
=========================================================
====================================================== */

  .banner-sec .banner-vector1 {
    max-width: 500px;
  }

  .banner-sec .banner-vector2 {
    max-width: 550px;
  }

  .banner-sec {
    padding-top: 125px;
  }

  /* ======================================================
=========================================================
                      SERVICE SOC
=========================================================
====================================================== */

  .service-icon {
    max-width: 115px;
    min-width: 115px;
    height: 115px;
  }

  /* ======================================================
=========================================================
                    HOW IT WORK SOC
=========================================================
====================================================== */

  /* Image slide part START  */

  .how-work-image-wrraper {
    max-width: 700px;
  }

  .product-image-gallery .product-img,
  .how-work-customer-image-gallery .product-img {
    max-width: 700px;
    height: 900px;
  }

  /* ======================================================
=========================================================
                    TESTIMONIAL SOC
=========================================================
====================================================== */
  .swiper-slide .testimonial-card {
    width: 415px;
  }

  .swiper-slide.swiper-slide-active .testimonial-card {
    width: 415px;
  }

  .tc-desc {
    font-size: 14px;
    line-height: 18px;
  }

  .quote-icon svg {
    max-height: 24px;
  }

  .swiper-slide.swiper-slide-active .testimonial-card .testimonial-card-body {
    padding: 130px 50px 0 97px;
  }

  .swiper-slide .testimonial-card .testimonial-card-body {
    padding: 130px 97px 0 50px;
  }


  /* next slider css */
  .swiper-slide.swiper-slide-next .tc-name {
    font-size: 32px;
    line-height: 42px;
  }

  .swiper-slide.swiper-slide-next .tc-designation {
    font-size: 20px;
    line-height: 26px;
  }

  .swiper-slide.swiper-slide-next .tc-desc {
    font-size: 18px;
    line-height: 28px;
  }

  .swiper-slide.swiper-slide-next .testimonial-card .testimonial-card-body {
    padding: 104px 53px 0 53px;
  }

  .swiper-slide.swiper-slide-next .quote-icon svg {
    max-height: 30px;
  }


  /* ===============================================
==================================================
                  FOOTER SECTION
==================================================
=============================================== */

  .main-footer .footer .footer-left {
    width: 570px;
  }

  .main-footer .footer {
    gap: 190px;
  }

  .main-footer .footer .footer-right {
    width: calc((100% - 570px) - 190px);
  }

  .footer-wrapper .footer-bg-logo {
    max-width: 1320px;
  }

}

@media (max-width: 1599px) {

  /* 03 : Heading Style CSS BOF
=================================================== */

  h1,
  .h1 {
    font-size: 46px;
  }

  .h2 {
    font-size: 40px;
  }

  .h3 {
    font-size: 27px;
  }

  .font-36 {
    font-size: 32px;
  }

  .font-28 {
    font-size: 25px;
  }

  .font-56 {
    font-size: 50px;
  }

  /* ======================================================
                COMMON TITLE SOC
====================================================== */

  .common-title-wrapper {
    gap: 30px;
  }

  /* ======================================================
=========================================================
                      HEADER SOC
=========================================================
====================================================== */

  .header-main {
    padding-top: 24px;
  }

  .header-main .header-inner-main .navbar-container {
    max-width: 1430px;
  }

  .header-logo .custom-logo-link .custom-logo {
    max-width: 200px;
  }

  .header-menu .header-menu-inner ul li a {
    font-size: 18px;
    margin-left: 20px;
    padding: 20px 0;
  }

  .header-menu .header-menu-inner ul li.sign-in-btn {
    margin-left: 25px;
  }

  .header-menu .header-menu-inner ul li.sign-in-btn .btn {
    padding: 18px 16px;
    min-width: 145px;
  }

  /* ======================================================
=========================================================
                        BANNER SOC
=========================================================
====================================================== */

  .banner-sec {
    padding-top: 112px;
  }

  .banner-padding {
    padding: 100px 0;
  }

  .banner-left {
    width: 613px;
  }

  .banner-content-wrapper {
    gap: 41px;
  }

  .banner-points-wrapper {
    padding-top: 62px;
  }

  .banner-right {
    width: calc(100% - 613px);
  }

  /* ======================================================
=========================================================
                      SERVICE SOC
=========================================================
====================================================== */

  .service-padding,
  .how-work-padding,
  .faq-padding {
    padding: 125px 0;
  }

  .service-icon {
    max-width: 101px;
    min-width: 101px;
    height: 101px;
    padding: 20px;
  }


  /* ======================================================
=========================================================
                    HOW IT WORK SOC
=========================================================
====================================================== */

  /* content slide part start  */

  .how-work-content-box {
    gap: 32px;
    margin-bottom: 110px;
  }

  .product-content-gallery {
    max-width: 620px;
  }

  .how-work-customer-content-gallery {
    max-width: 620px;
  }

  .how-work-content-box::after {
    height: 93%;
  }

  .product-content-gallery .swiper-slide-visible.swiper-slide-thumb-active .how-work-content-box::before,
  .how-work-customer-content-gallery .swiper-slide-visible.swiper-slide-thumb-active .how-work-content-box::before {
    height: 93%;
  }

  /* content slide part END  */

  /* Image slide part START  */


  .how-work-image-wrraper {
    max-width: 650px;
  }

  .product-image-gallery .product-img,
  .how-work-customer-image-gallery .product-img {
    max-width: 650px;
    height: 850px;
  }


  /* ======================================================
=========================================================
                    TESTIMONIAL SOC
=========================================================
====================================================== */

  .testimonial-padding {
    padding: 54px 0 70px;
  }


  .swiper-slide.swiper-slide-next .testimonial-card {
    width: 100% !important;
    min-height: 521px;
  }

  .swiper-slide.swiper-slide-next .testimonial-card .testimonial-card-body {
    padding: 95px 53px 0 53px;
  }

  /* ===============================================
==================================================
              LOGO BRAND SLIDER SECTION
==================================================
=============================================== */

  .logo-brand-sec {
    padding: 22px 0;
  }

  .BrandLogo-wrapper {
    max-height: 50px;
  }

  .BrandLogo-wrapper .BrandLogo {
    max-height: 50px;
  }


  /* ===============================================
==================================================
                  FOOTER SECTION
==================================================
=============================================== */

  .main-footer {
    padding: 100px 0 90px;
  }

  .footer-wrapper .footer-bg-logo {
    max-width: 1220px;
  }

  .main-footer .footer {
    gap: 120px;
  }

  .main-footer .footer .footer-left {
    width: 525px;
  }

  .main-footer .footer .footer-left .footer-content {
    line-height: 140%;
  }

  .main-footer .footer .footer-left .footer-store-wrapper .footer-store-icon {
    max-width: 220px;
  }

  .main-footer .footer .footer-right {
    width: calc((100% - 525px) - 120px);
  }

  .footer-right .subscribe-wrapper .subscribe-input .subcribe-btn {
    max-width: 75px;
    min-width: 75px;
    max-height: 65px;
  }

  .link-follow-us-wrapper {
    gap: 40px;
    padding-top: 80px;
  }

  .link-follow-us-wrapper .footer-link {
    width: calc((100% - 450px) - 40px);
  }

  .link-follow-us-wrapper .folow-us-wrapper {
    width: 450px;
  }

  .folow-us-wrapper .social-icons-wrapper .social-icons {
    width: 58px;
    height: 58px;
  }

  .pw-img-wrapper img {
    min-height: 255px;
    max-height: 255px;
  }


}

@media (max-width: 1499px) {

  /* 03 : Heading Style CSS BOF
=================================================== */

  h1,
  .h1 {
    font-size: 43px;
  }

  .h3 {
    font-size: 26px;
  }

  .font-20 {
    font-size: 18px;
  }

  .font-36 {
    font-size: 30px;
  }

  .font-28 {
    font-size: 24px;
  }

  /* 11 : Form &amp; Input Style BOF
==================================================== */

  .form-control,
  .form-select {
    height: 75px;
  }

  /* ======================================================
=========================================================
                      HEADER SOC
=========================================================
====================================================== */


  /* .header-menu .header-menu-inner ul li a {
    font-size: 17px;
    margin-left: 34px;
  } */

  /* ======================================================
=========================================================
                        BANNER SOC
=========================================================
====================================================== */

  .banner-sec .banner-vector2 {
    max-width: 500px;
  }

  .banner-sec {
    padding-top: 109px;
  }

  .banner-padding {
    padding: 80px 0;
  }

  .banner-wrapper {
    gap: 60px;
  }

  .banner-left {
    width: 570px;
  }

  .banner-right {
    width: calc(100% - 570px);
  }

  /* ======================================================
=========================================================
                      SERVICE SOC
=========================================================
====================================================== */

  .service-card-icon-wrapper {
    gap: 16px;
  }

  .service-icon {
    max-width: 93px;
    min-width: 93px;
    height: 93px;
  }

  .service-row {
    --bs-gutter-x: 90px;
    --bs-gutter-y: 85px;
  }

  /* ======================================================
=========================================================
                    HOW IT WORK SOC
=========================================================
====================================================== */

  .main-pink-circle {
    width: 600px;
    height: 600px;
    filter: blur(230px);
    right: -200px;
    top: -280px;
  }

  /* content slide part start  */

  .how-work-content-box {
    gap: 32px;
    margin-bottom: 80px;
  }

  .product-content-gallery {
    max-width: 580px;
  }

  .how-work-customer-content-gallery {
    max-width: 580px;
  }

  .how-work-icon-wrapper {
    max-width: 95px;
    min-width: 95px;
    height: 95px;
    padding: 16px;
  }

  .how-work-content-box::after {
    height: 84%;
    top: 101px;
    left: 46px;
  }

  .how-work-content-box::before {
    top: 101px;
    left: 46px;
  }

  .product-content-gallery .swiper-slide-visible.swiper-slide-thumb-active .how-work-content-box::before,
  .how-work-customer-content-gallery .swiper-slide-visible.swiper-slide-thumb-active .how-work-content-box::before {
    height: 84%;
  }

  /* content slide part END  */

  /* ======================================================
=========================================================
                    TESTIMONIAL SOC
=========================================================
====================================================== */


  /* active slider css */
  .swiper-slide.swiper-slide-active .testimonial-card {
    margin-left: 13px;
  }

  .swiper-slide.swiper-slide-active .testimonial-card {
    width: 390px;
  }

  .swiper-slide.swiper-slide-active .testimonial-card .testimonial-card-body {
    padding: 130px 35px 0 70px;
  }


  /* next slider css */

  .swiper-slide.swiper-slide-next .tc-name {
    font-size: 28px;
    line-height: 38px;
  }

  .swiper-slide.swiper-slide-next .tc-designation {
    font-size: 18px;
    line-height: 24px;
  }

  .swiper-slide.swiper-slide-next .tc-desc {
    font-size: 18px;
    line-height: 23px;
  }

  /* last slider css */

  .swiper-slide .testimonial-card {
    margin-right: 13px;
  }

  .swiper-slide .testimonial-card {
    width: 390px;
  }

  .swiper-slide .testimonial-card .testimonial-card-body {
    padding: 130px 70px 0 35px;
  }

  .tc-name {
    font-size: 19px;
    line-height: 28px;
  }


  /* ======================================================
=========================================================
                        FAQ SOC
=========================================================
====================================================== */

  .faq-wrapper .accordion .accordion-button {
    font-size: 22px;
    padding: 30px 30px;
  }

  .faq-wrapper .accordion .accordion-body {
    font-size: 22px;
    padding: 26px 30px 30px;
  }

  /* ======================================================
=========================================================
                      SUBSCRIBE SOC
=========================================================
====================================================== */

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

  .subscribe-form {
    min-width: 800px;
  }

  .subscribe-btn {
    font-size: 24px;
  }


  /* ======================================================
=========================================================
                      FOOTER SOC
=========================================================
====================================================== */

  /* .footer-nav-wrapper ul li {
    font-size: 26px;
  } */


  .pw-img-wrapper img {
    min-height: 230px;
    max-height: 230px;
  }

}

@media (max-width: 1399.98px) {

  /* 03 : Heading Style CSS BOF
=================================================== */

  h1,
  .h1 {
    font-size: 39px;
    line-height: 130%;
  }

  .h2 {
    font-size: 36px;
  }

  .h3 {
    font-size: 22px;
  }

  .h4 {
    font-size: 20px;
  }

  .font-22 {
    font-size: 18px;
  }

  .font-20 {
    font-size: 18px;
    line-height: normal;
  }

  .font-36 {
    font-size: 28px;
  }

  .font-28 {
    font-size: 22px;
  }

  .font-56 {
    font-size: 44px;
  }

  .font-24 {
    font-size: 20px;
  }

  .btn {
    font-size: 20px;
    min-width: 220px;
  }

  /* 11 : Form &amp; Input Style BOF
==================================================== */

  .form-control,
  .form-select {
    height: 70px;
    padding: 14px 245px 14px 34px;
  }

  /* ======================================================
                COMMON CONTAINER SOC
====================================================== */
  .container {
    max-width: 1180px;
  }

  /* ======================================================
                COMMON TITLE SOC
====================================================== */

  .common-title-wrapper {
    gap: 24px;
    padding-bottom: 90px;
  }

  /* ======================================================
                COMMON SWIPER SLIDER SOC
====================================================== */

  .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .swiper-button-next {
    width: 40px;
    height: 40px;
  }

  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 16px;
  }


  /* ======================================================
=========================================================
                      HEADER SOC
=========================================================
====================================================== */

  .header-main .header-inner-main .navbar-container {
    max-width: 1230px;
  }

  .header-logo .custom-logo-link .custom-logo {
    max-width: 180px;
  }

  .header-menu .header-menu-inner ul li a {
    font-size: 15px;
    margin-left: 18px;
  }

  .header-menu .header-menu-inner ul li.sign-in-btn {
    margin-left: 22px;
  }

  .header-menu .header-menu-inner ul li.sign-in-btn .btn {
    min-width: 136px;
    gap: 16px;
    font-size: 18px;
  }

  .header-menu .header-menu-inner ul li.sign-in-btn svg {
    max-width: 18px;
  }

  .cart-contents svg {
    width: 22px !important;
    height: 22px !important;
  }

  .cart-contents .cart-count-number {
    width: 15px;
    min-width: 15px !important;
    height: 15px;
    font-size: 10px !important;
  }

  /* ======================================================
=========================================================
                        BANNER SOC
=========================================================
====================================================== */

  .banner-sec .banner-vector1 {
    max-width: 400px;
  }

  .banner-sec .banner-vector2 {
    max-width: 390px;
  }

  .banner-wrapper {
    gap: 50px;
  }

  .banner-left {
    width: 570px;
  }

  .banner-points-wrapper {
    padding-top: 50px;
    gap: 24px;
  }

  .banner-right {
    width: calc(100% - 570px);
  }

  /* BANNER VIDEO CSS */

  .banner-video-container .play-btn {
    width: 60px;
    height: 60px;
  }

  /* ======================================================
=========================================================
                      SERVICE SOC
=========================================================
====================================================== */

  .service-padding,
  .how-work-padding,
  .faq-padding {
    padding: 100px 0;
  }

  .service-row {
    --bs-gutter-x: 80px;
    --bs-gutter-y: 70px;
  }

  .service-card {
    gap: 40px;
  }

  .service-icon {
    max-width: 86px;
    min-width: 86px;
    height: 86px;
    padding: 16px;
  }

  /* ======================================================
=========================================================
                    PAST WORK SOC
=========================================================
====================================================== */

  .past-work-padding {
    padding: 45px 0;
  }

  .past-work-swiper {
    padding: 0 18px;
  }

  .pw-img-wrapper img {
    min-height: 210px;
    max-height: 210px;
  }

  /* MODAL CSS ADDED  */

  .modal-dialog.modal-xl {
    max-width: 1040px;
  }

  .past-work-modal-slider {
    padding: 0 18px;
  }

  .modal-content .modal-header {
    padding: 30px 37px;
  }

  .modal-content .modal-body {
    padding: 28px 15px;
  }



  /* ======================================================
=========================================================
                    HOW IT WORK SOC
=========================================================
====================================================== */

  /* content slide part start  */
  .product-content-gallery {
    max-width: 500px;
  }

  .how-work-customer-content-gallery {
    max-width: 500px;
  }

  .how-work-content-box::after {
    height: 80%;
  }

  .product-content-gallery .swiper-slide-visible.swiper-slide-thumb-active .how-work-content-box::before,
  .how-work-customer-content-gallery .swiper-slide-visible.swiper-slide-thumb-active .how-work-content-box::before {
    height: 80%;
  }

  /* content slide part END  */

  /* Image slide part START  */


  .how-work-image-wrraper {
    max-width: 600px;
  }

  .product-image-gallery .product-img,
  .how-work-customer-image-gallery .product-img {
    max-width: 600px;
    height: 850px;
  }

  /* ======================================================
=========================================================
                    TESTIMONIAL SOC
=========================================================
====================================================== */

  .testimonial-padding {
    padding: 44px 0 60px;
  }

  .testimonial-swiper {
    padding: 70px 0 50px;
  }

  /* active slider css */

  .swiper-slide.swiper-slide-active .testimonial-card {
    width: 350px;
    min-height: 396px;
  }

  .swiper-slide.swiper-slide-active .testimonial-card .testimonial-card-body {
    padding: 97px 35px 0 70px;
  }


  /* next slider css */

  .swiper-slide.swiper-slide-next .testimonial-card {
    width: 100% !important;
    min-height: 432px;
  }

  .swiper-slide.swiper-slide-next .testimonial-card .testimonial-card-body {
    padding: 79px 42px 0 42px;
  }

  .swiper-slide.swiper-slide-next .tc-name {
    font-size: 24px;
    line-height: 32px;
  }

  .swiper-slide.swiper-slide-next .tc-designation {
    font-size: 16px;
    line-height: 22px;
  }

  .swiper-slide.swiper-slide-next .quote-icon svg {
    max-height: 26px;
  }

  .swiper-slide.swiper-slide-next .tc-desc {
    font-size: 16px;
    line-height: 21px;
  }

  /* last slider css */

  .swiper-slide .testimonial-card {
    width: 350px;
    min-height: 396px;
  }

  .swiper-slide .testimonial-card .testimonial-card-body {
    padding: 97px 70px 0 35px;
  }

  .quote-icon svg {
    max-height: 21px;
  }

  .tc-name {
    font-size: 19px;
    line-height: 28px;
  }

  .tc-desc {
    font-size: 12px;
    line-height: 15px;
  }

  .testimonial-swiper .swiper-button-next {
    width: 40px;
    height: 40px;
  }

  /* ======================================================
=========================================================
                        FAQ SOC
=========================================================
====================================================== */

  .faq-wrapper .accordion .accordion-button {
    font-size: 20px;
    padding: 26px 26px;
  }

  .faq-wrapper .accordion .accordion-body {
    font-size: 19px;
    padding: 20px 26px 26px;
  }

  /* ======================================================
=========================================================
                      SUBSCRIBE SOC
=========================================================
====================================================== */

  .subscribe-padding {
    padding: 50px 0;
  }

  .subscribe-form {
    min-width: 730px;
  }

  .subscribe-btn {
    font-size: 21px;
    min-width: 240px;
  }


  /* ===============================================
==================================================
              LOGO BRAND SLIDER SECTION
==================================================
=============================================== */

  .logoSlider {
    gap: 65px;
  }

  .logoSlider-track {
    gap: 65px;
  }

  .BrandLogo-wrapper {
    max-height: 44px;
  }

  .BrandLogo-wrapper .BrandLogo {
    max-height: 44px;
  }

  @-webkit-keyframes scroll {

    /* Safari fallback */
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(calc(-100% - 65px));
    }
  }

  @keyframes scroll {

    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(calc(-100% - 65px));
    }
  }


  /* ===============================================
==================================================
                  FOOTER SECTION
==================================================
=============================================== */

  .main-footer {
    padding: 90px 0 80px;
  }

  .footer-wrapper .footer-bg-logo {
    max-width: 1000px;
  }

  .main-footer .footer {
    gap: 80px;
  }

  .main-footer .footer .footer-left {
    width: 456px;
  }

  .main-footer .footer .footer-left .footer-logo {
    max-width: 250px;
  }

  .main-footer .footer .footer-left .footer-content {
    line-height: 140%;
    padding-top: 20px;
    margin-top: 34px;
  }

  .main-footer .footer .footer-left .footer-store-wrapper .footer-store-icon {
    max-width: 195px;
  }

  .main-footer .footer .footer-left .footer-store-wrapper .footer-qr-code {
    max-width: 140px;
  }

  .main-footer .footer .footer-right {
    width: calc((100% - 456px) - 80px);
  }

  .footer-right .subscribe-wrapper .subscribe-input .subcribe-btn {
    max-width: 64px;
    min-width: 64px;
    max-height: 62px;
  }

  .link-follow-us-wrapper {
    padding-top: 70px;
  }

  .link-follow-us-wrapper .footer-link {
    width: calc((100% - 400px) - 40px);
  }

  .link-follow-us-wrapper .folow-us-wrapper {
    width: 400px;
  }

  .folow-us-wrapper .social-icons-wrapper .social-icons {
    width: 46px;
    height: 46px;
    padding: 10px;
  }

}

@media (max-width: 1199.98px) {
  /* 03 : Heading Style CSS BOF
=================================================== */

  h1,
  .h1 {
    font-size: 34px;
    line-height: 120%;
  }

  .h2 {
    font-size: 36px;
  }

  .h3 {
    font-size: 20px;
  }

  .h4 {
    font-size: 18px;
  }

  .font-18 {
    font-size: 16px;
  }

  .font-22 {
    font-size: 16px;
  }

  .font-16 {
    font-size: 14px;
  }

  .font-20 {
    font-size: 15px;
  }

  .font-36 {
    font-size: 26px;
  }

  .font-28 {
    font-size: 20px;
  }

  .font-56 {
    font-size: 38px;
  }

  .font-24 {
    font-size: 17px;
  }

  .btn {
    font-size: 18px;
    min-width: 200px;
    padding: 14px 30px;
  }

  /* 11 : Form &amp; Input Style BOF
==================================================== */

  .form-control,
  .form-select {
    height: 65px;
    padding: 14px 215px 14px 34px;
  }

  /*** Placeholder CSS BOF ***/
  .form-control::placeholder {
    font-size: 18px;
  }

  .form-control::-moz-placeholder {
    font-size: 18px;
  }

  .form-control:-ms-input-placeholder {
    font-size: 18px;
  }

  .form-control::-webkit-input-placeholder {
    font-size: 18px;
  }

  .form-control::-o-input-placeholder {
    font-size: 18px;
  }

  /* ======================================================
              COMMON CONTAINER SOC
====================================================== */
  .container {
    max-width: 970px;
  }

  /* ======================================================
                COMMON TITLE SOC
====================================================== */

  .common-title-wrapper {
    gap: 20px;
    padding-bottom: 80px;
  }

  /* ======================================================
=========================================================
                      HEADER SOC
=========================================================
====================================================== */

  .header-main {
    padding-top: 18px;
  }

  .header-main .header-inner-main .navbar-container {
    max-width: 1100px;
  }

  .header-main .header-inner-main nav.navbar {
    padding: 10px;
  }

  .header-logo .custom-logo-link .custom-logo {
    max-width: 160px;
  }

  .header-main .header-inner-main .header-inner {
    padding-left: 24px;
  }

  .header-menu .header-menu-inner ul li a {
    font-size: 14px;
    margin-left: 12px;
    padding: 17px 0;
  }

  .header-menu .header-menu-inner ul li.sign-in-btn {
    margin-left: 20px;
  }

  .header-menu .header-menu-inner ul li.sign-in-btn .btn {
    min-width: 116px;
    gap: 14px;
    font-size: 16px;
    padding: 12px 17px;
  }

  .header-menu .header-menu-inner ul li.sign-in-btn svg {
    max-width: 16px;
  }

  /* ======================================================
=========================================================
                        BANNER SOC
=========================================================
====================================================== */

  .banner-sec .banner-vector1 {
    max-width: 320px;
  }

  .banner-sec .banner-vector2 {
    max-width: 320px;
  }

  .banner-sec {
    padding-top: 89px;
  }

  .banner-padding {
    padding: 70px 0;
  }

  .banner-wrapper {
    gap: 40px;
  }

  .banner-left {
    width: 447px;
  }

  .banner-content-wrapper {
    gap: 32px;
  }

  .banner-points-wrapper {
    padding-top: 35px;
    gap: 20px;
  }

  .tick-mark-circle-img {
    max-width: 35px;
  }

  .banner-right {
    width: calc(100% - 447px);
  }

  /* ======================================================
=========================================================
                      SERVICE SOC
=========================================================
====================================================== */

  .service-padding,
  .how-work-padding,
  .faq-padding {
    padding: 90px 0;
  }

  .service-card {
    gap: 40px;
  }

  .service-icon {
    max-width: 75px;
    min-width: 75px;
    height: 75px;
    padding: 14px;
  }

  /* ======================================================
=========================================================
                    PAST WORK SOC
=========================================================
====================================================== */

  .past-work-wrapper {
    gap: 35px;
  }

  .past-work-card {
    padding: 16px 12px;
  }

  .pw-img-wrapper img {
    min-height: 175px;
    max-height: 175px;
  }

  .past-work-swiper .swiper-slide {
    height: auto;
  }

  /* MODAL CSS ADDED  */

  .modal-dialog.modal-xl {
    max-width: 900px;
  }

  .modal-content .btn-close {
    width: 22px;
    height: 22px;
    background: transparent center/22px auto no-repeat;
  }

  /* ======================================================
=========================================================
                    HOW IT WORK SOC
=========================================================
====================================================== */
  .main-pink-circle {
    width: 450px;
    height: 450px;
    filter: blur(180px);
    right: -144px;
    top: -164px;
  }

  /* content slide part start  */
  .product-content-gallery {
    max-width: 435px;
  }

  .how-work-customer-content-gallery {
    max-width: 435px;
  }

  .how-work-content-box {
    gap: 24px;
    margin-bottom: 62px;
  }

  .how-work-icon-wrapper {
    max-width: 70px;
    min-width: 70px;
    height: 70px;
    padding: 10px;
  }

  .how-work-content-box::after {
    height: 82%;
    top: 78px;
    left: 33px;
  }

  .how-work-content-box::before {
    top: 78px;
    left: 33px;
  }

  .hw-box-text {
    line-height: 100% !important;
  }

  .product-content-gallery .swiper-slide-visible.swiper-slide-thumb-active .how-work-content-box::before,
  .how-work-customer-content-gallery .swiper-slide-visible.swiper-slide-thumb-active .how-work-content-box::before {
    height: 82%;
  }

  /* content slide part END  */

  /* Image slide part START  */


  .how-work-image-wrraper {
    max-width: 400px;
  }

  .product-image-gallery .product-img,
  .how-work-customer-image-gallery .product-img {
    max-width: 400px;
    height: 600px;
  }

  .how-work-image-wrraper .blue-circle {
    width: 400px;
    height: 400px;
    filter: blur(160px);
    left: 59px;
  }

  .how-work-image-wrraper .blue-circle-2 {
    left: 48px;
    bottom: 81px;
  }

  /* ======================================================
=========================================================
                    TESTIMONIAL SOC
=========================================================
====================================================== */
  .testimonial-swiper {
    padding: 70px 0 50px;
  }

  /* active slider css */

  .swiper-slide.swiper-slide-active .testimonial-card {
    width: 430px;
    min-height: 470px;
  }

  .swiper-slide.swiper-slide-active .testimonial-card::before {
    content: '';
    position: absolute;
    background-image: url('../images/app-landing-page/shape2.svg');
    background-size: 100%;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
    transform: scale(-1, 1);
  }

  .swiper-slide.swiper-slide-active .testimonial-card .testimonial-card-body {
    padding: 85px 56px 0 56px;
  }


  /* next slider css */

  .swiper-slide.swiper-slide-next .testimonial-card {
    width: 430px !important;
    min-height: 470px;
    margin-right: 13px;
    margin-left: auto;
  }

  .swiper-slide.swiper-slide-next .testimonial-card::before {
    transform: scale(1, 1);
  }

  .swiper-slide.swiper-slide-next .testimonial-card .testimonial-card-body {
    padding: 85px 56px 0 56px;
  }

  .swiper-slide.swiper-slide-next .tc-name {
    font-size: 24px;
    line-height: 32px;
  }

  .swiper-slide.swiper-slide-next .tc-designation {
    font-size: 16px;
    line-height: 22px;
  }

  .swiper-slide.swiper-slide-next .quote-icon svg {
    max-height: 26px;
  }

  .swiper-slide.swiper-slide-next .tc-desc {
    font-size: 16px;
    line-height: 21px;
  }

  /* last slider css */

  .swiper-slide .testimonial-card {
    width: 273px;
    min-height: 396px;
  }

  .swiper-slide .testimonial-card {
    width: 430px;
    min-height: 470px;
  }

  .swiper-slide .testimonial-card::before {
    content: '';
    position: absolute;
    background-image: url('../images/app-landing-page/shape2.svg');
    background-size: 100%;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
  }

  .swiper-slide .testimonial-card .testimonial-card-body {
    padding: 85px 56px 0 56px;
  }

  .quote-icon svg {
    max-height: 26px;
  }

  .tc-name {
    font-size: 24px;
    line-height: 32px;
  }

  .tc-designation {
    font-size: 16px;
    line-height: 24px;
  }

  .tc-desc {
    font-size: 16px;
    line-height: 21px;
  }

  .testimonial-swiper .swiper-button-next {
    width: 40px;
    height: 40px;
  }


  /* ======================================================
=========================================================
                        FAQ SOC
=========================================================
====================================================== */

  .faq-wrapper {
    max-width: 980px;
  }

  /* ======================================================
=========================================================
                      SUBSCRIBE SOC
=========================================================
====================================================== */

  .subscribe-padding {
    padding: 50px 0;
  }

  .subscribe-form {
    min-width: 600px;
  }

  .subscribe-btn {
    font-size: 18px;
    min-width: 210px;
  }


  /* ===============================================
==================================================
              LOGO BRAND SLIDER SECTION
==================================================
=============================================== */

  .logo-brand-sec {
    padding: 20px 0;
  }

  .logoSlider {
    gap: 55px;
  }

  .logoSlider-track {
    gap: 55px;
  }

  .BrandLogo-wrapper {
    max-height: 42px;
  }

  .BrandLogo-wrapper .BrandLogo {
    max-height: 42px;
  }

  @-webkit-keyframes scroll {

    /* Safari fallback */
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(calc(-100% - 55px));
    }
  }

  @keyframes scroll {

    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(calc(-100% - 55px));
    }
  }

  /* ===============================================
==================================================
                  FOOTER SECTION
==================================================
=============================================== */

  .main-footer {
    padding: 90px 0 80px;
  }

  .footer-wrapper .footer-bg-logo {
    max-width: 800px;
  }

  .main-footer .footer {
    gap: 80px;
  }

  .main-footer .footer .footer-left {
    width: 352px;
  }

  .main-footer .footer .footer-left .footer-logo {
    max-width: 210px;
  }

  .main-footer .footer .footer-left .footer-content {
    line-height: 128%;
    padding-top: 20px;
    margin-top: 30px;
  }

  .main-footer .footer .footer-left .footer-store-wrapper .footer-store-icon {
    max-width: 160px;
  }

  .main-footer .footer .footer-left .footer-store-wrapper .footer-qr-code {
    max-width: 120px;
  }

  .main-footer .footer .footer-right {
    width: calc((100% - 352px) - 80px);
  }

  .footer-right .subscribe-wrapper .subscribe-input .subcribe-btn {
    max-width: 54px;
    min-width: 54px;
    padding: 15px;
    max-height: 58px;
  }

  .link-follow-us-wrapper {
    padding-top: 60px;
    gap: 20px;
  }

  .link-follow-us-wrapper .footer-link {
    width: calc((100% - 350px) - 20px);
  }

  .link-follow-us-wrapper .folow-us-wrapper {
    width: 350px;
  }

  .folow-us-wrapper .social-icons-wrapper {
    padding: 36px 0;
    margin-bottom: 36px;
  }

  .folow-us-wrapper .social-icons-wrapper .social-icons {
    width: 40px;
    height: 40px;
    padding: 8px;
    border-radius: 12px;
  }

}

@media (max-width: 991.98px) {
  /* 03 : Heading Style CSS BOF
=================================================== */

  h1,
  .h1 {
    font-size: 34px;
    line-height: 120%;
  }

  .h2 {
    font-size: 36px;
  }

  .h3 {
    font-size: 20px;
  }

  .h4 {
    font-size: 18px;
  }

  .font-18 {
    font-size: 16px;
  }

  .font-22 {
    font-size: 14px;
  }

  .font-16 {
    font-size: 14px;
  }

  .font-24 {
    font-size: 16px;
  }

  /* .font-20 {
    font-size: 17px;
  } */

  .btn {
    font-size: 18px;
  }

  /* 11 : Form &amp; Input Style BOF
==================================================== */

  .form-control,
  .form-select {
    height: 65px;
    padding: 14px 215px 14px 28px;
  }

  /*** Placeholder CSS BOF ***/
  .form-control::placeholder {
    font-size: 16px;
  }

  .form-control::-moz-placeholder {
    font-size: 16px;
  }

  .form-control:-ms-input-placeholder {
    font-size: 16px;
  }

  .form-control::-webkit-input-placeholder {
    font-size: 16px;
  }

  .form-control::-o-input-placeholder {
    font-size: 16px;
  }

  /* ======================================================
            COMMON CONTAINER SOC
====================================================== */
  .container {
    max-width: 100%;
    padding: 0 20px;
  }

  /* ======================================================
              COMMON TITLE SOC
====================================================== */

  .common-title-wrapper {
    gap: 20px;
    padding-bottom: 80px;
  }

  /* ======================================================
=========================================================
                      HEADER SOC
=========================================================
====================================================== */

  .header-main .header-inner-main .navbar-container {
    max-width: 100%;
  }

  .header-main .header-inner-main .header-inner {
    padding: 0;
  }

  /* MOBILE VIEW DESIGN ADD BY -- HIMANI  */
  .header-menu .header-menu-inner {
    display: inline-block;
  }

  .header-main .header-inner-main .header-inner .header-menu ul li a.cart-contents {
    display: inline-block;
    width: auto;
  }

  .header-main .header-inner-main .header-inner .header-menu .header-menu-inner {
    position: fixed;
    top: 86px;
    left: 20px;
    border-radius: 16px;
    right: 20px;
    width: calc(100% - 40px);
    background-color: var(--black-shade70);
    z-index: 777;
    height: calc(100svh - 140px);
    overflow: auto;
    transition: all 400ms ease;
    transform: translateY(-20px);
    visibility: hidden;
    opacity: 0;
  }

  .header-main .header-inner-main .header-inner .header-menu .header-menu-inner::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: transparent;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 16px;
  }

  .header-main .header-inner-main .header-inner .header-menu.show .header-menu-inner {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }

  .header-main button.navbar-toggler:focus {
    box-shadow: none;
  }

  .header-main .header-inner-main nav.navbar {
    padding: 12px 16px;
    border-radius: 16px;
  }

  .header-main .header-inner-main .header-inner .header-menu ul {
    padding: 16px 0;
  }

  .header-main .header-inner-main .header-inner .header-menu ul li.nav-item {
    padding: 0 16px;
  }

  .header-main .header-inner-main .header-inner .header-menu ul li a {
    margin: 0;
    width: 100%;
    font-size: 16px;
  }

  .header-menu .header-menu-inner ul li.sign-in-btn {
    margin: 20px 0;
  }

  .header-menu .header-menu-inner ul li.sign-in-btn .btn {
    max-width: 150px;
  }

  /* ======================================================
=========================================================
                        BANNER SOC
=========================================================
====================================================== */

  .banner-sec {
    padding-top: 86px;
  }

  .banner-wrapper {
    gap: 60px;
  }

  .banner-left {
    width: 100%;
  }

  .banner-content-wrapper {
    gap: 32px;
  }

  .banner-points-wrapper {
    padding-top: 35px;
    gap: 20px;
  }

  .tick-mark-circle-img {
    max-width: 35px;
  }

  .banner-right {
    width: 100%;
  }

  .banner-img-wrapper {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
  }

  /* ======================================================
=========================================================
                      SERVICE SOC
=========================================================
====================================================== */

  .service-card {
    min-height: 280px;
  }

  .service-row {
    --bs-gutter-x: 70px;
    --bs-gutter-y: 60px;
  }

  /* ======================================================
=========================================================
                    PAST WORK SOC
=========================================================
====================================================== */

  .past-work-padding {
    background-size: 1200px;
  }


  /* MODAL CSS ADDED  */

  .modal-dialog.modal-xl {
    max-width: 768px;
    padding: 0 20px;
  }

  /* ======================================================
=========================================================
                    HOW IT WORK SOC
=========================================================
====================================================== */

  /* content slide part start  */
  .product-content-gallery {
    max-width: 600px;
    /* width: 100%; */
    overflow: visible;
    margin-right: auto;
  }

  .how-work-customer-content-gallery {
    max-width: 600px;
    overflow: visible;
    margin-left: auto;
  }

  .how-work-content-box {
    gap: 24px;
    margin-bottom: 35px;
  }

  .how-work-icon-wrapper {
    max-width: 70px;
    min-width: 70px;
    height: 70px;
    padding: 10px;
  }

  .how-work-content-box::after {
    height: 50%;
    top: 78px;
    left: 33px;
    transition: none;
  }

  .how-work-content-box::before {
    top: 78px;
    left: 33px;
  }

  .hw-box-text {
    line-height: 100% !important;
  }

  .product-content-gallery .swiper-slide-visible.swiper-slide-thumb-active .how-work-content-box::before,
  .how-work-customer-content-gallery .swiper-slide-visible.swiper-slide-thumb-active .how-work-content-box::before {
    height: 91.5%;
  }

  .product-content-gallery .swiper-slide-visible.swiper-slide-thumb-active .how-work-content-box::after,
  .how-work-customer-content-gallery .swiper-slide-visible.swiper-slide-thumb-active .how-work-content-box::after {
    opacity: 1;
    height: 91.5%;
  }

  .how-work-border-wrapper {
    width: 16px;
    height: 16px;
    bottom: -18px;
  }


  /* content slide part END  */

  /* Image slide part START  */

  .how-work-image-wrraper-mobile {
    opacity: 0;
    visibility: hidden;
    height: 0;
    transition: all 0.4s ease-in-out;
    position: relative;
  }

  .product-content-gallery .swiper-slide-visible.swiper-slide-thumb-active .how-work-image-wrraper-mobile,
  .how-work-customer-content-gallery .swiper-slide-visible.swiper-slide-thumb-active .how-work-image-wrraper-mobile {
    opacity: 1;
    visibility: visible;
    height: 400px;
    margin-top: 24px;
  }

  .product-content-gallery .swiper-slide-visible.swiper-slide-thumb-active .how-work-image-wrraper-mobile .blue-circle,
  .how-work-customer-content-gallery .swiper-slide-visible.swiper-slide-thumb-active .how-work-image-wrraper-mobile .blue-circle {
    height: 280px;
  }

  .how-work-image-wrraper-mobile .product-img {
    max-width: 350px;
    height: 400px;
  }

  .how-work-image-wrraper-mobile .blue-circle {
    width: 280px;
    height: 0;
    background: radial-gradient(#2CA1D7 22%, #73737300);
    display: block;
    position: absolute;
    filter: blur(100px);
    left: 59px;
    right: 0;
    border-radius: 100%;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
    transition: all 0.4s ease-in-out;
  }

  .how-work-image-wrraper-mobile .blue-circle-2 {
    left: 66px;
    bottom: 41px;
    background: radial-gradient(#42F9FD 48%, #73737300);
    right: 0;
    border-radius: 100%;
    top: unset;
    filter: blur(110px);
    width: 200px;
    height: 200px;
  }

  /* ======================================================
=========================================================
                    TESTIMONIAL SOC
=========================================================
====================================================== */

  .testimonial-padding {
    padding: 35px 0 55px;
  }

  .testimonial-swiper {
    padding: 70px 0 50px;
  }

  /* active slider css */

  .swiper-slide.swiper-slide-active .testimonial-card {
    width: 330px;
    min-height: 380px;
    margin-left: auto;
  }

  .swiper-slide.swiper-slide-active .testimonial-card .testimonial-card-body {
    padding: 70px 35px 0 35px;
  }


  /* next slider css */

  .swiper-slide.swiper-slide-next .testimonial-card {
    width: 330px !important;
    min-height: 380px;
    margin-right: auto;
  }

  .swiper-slide.swiper-slide-next .testimonial-card .testimonial-card-body {
    padding: 70px 35px 0 35px;
  }

  .swiper-slide.swiper-slide-next .tc-name {
    font-size: 22px;
    line-height: 28px;
  }

  .swiper-slide.swiper-slide-next .tc-desc {
    font-size: 14px;
    line-height: 18px;
  }

  /* last slider css */

  .swiper-slide .testimonial-card {
    width: 330px;
    min-height: 380px;
  }

  .swiper-slide .testimonial-card .testimonial-card-body {
    padding: 70px 35px 0 35px;
  }

  .tc-name {
    font-size: 22px;
    line-height: 28px;
  }

  .tc-desc {
    font-size: 14px;
    line-height: 18px;
  }


  /* ======================================================
=========================================================
                        FAQ SOC
=========================================================
====================================================== */

  .faq-wrapper {
    max-width: 100%;
    padding-top: 50px;
  }

  .faq-wrapper .accordion .accordion-button {
    font-size: 18px;
    padding: 22px 24px;
  }

  .faq-wrapper .accordion .accordion-body {
    font-size: 16px;
    padding: 18px 24px 24px;
  }

  .faq-wrapper .accordion .accordion-button::after {
    background-position: center;
    background-size: 16px 100%;
  }

  /* ===============================================
==================================================
                  FOOTER SECTION
==================================================
=============================================== */

  .main-footer {
    padding: 70px 0 60px;
  }

  .footer-wrapper .footer-bg-logo {
    max-width: 700px;
  }

  .main-footer .footer {
    gap: 80px;
  }

  .main-footer .footer .footer-left {
    width: 100%;
  }

  .main-footer .footer .footer-left .footer-content {
    letter-spacing: 0;
  }


  .main-footer .footer .footer-right {
    width: 100%;
  }

  .link-follow-us-wrapper {
    padding-top: 50px;
  }

  .link-follow-us-wrapper .footer-link {
    width: calc((100% - 500px) - 40px);
  }

  .link-follow-us-wrapper .folow-us-wrapper {
    width: 500px;
  }


  .pw-img-wrapper img {
    min-height: 210px;
    max-height: 210px;
  }

}

@media (max-width: 767px) {

  /* 03 : Heading Style CSS BOF
=================================================== */

  h1,
  .h1 {
    font-size: 32px;
    line-height: 120%;
  }

  .h2 {
    font-size: 34px;
  }

  .h6 {
    font-size: 12px;
  }

  .font-56 {
    font-size: 36px;
  }

  /* 11 : Form &amp; Input Style BOF
==================================================== */

  .form-control,
  .form-select {
    height: 55px;
  }

  /* ======================================================
              COMMON TITLE SOC
====================================================== */

  .common-title-wrapper {
    gap: 12px;
    padding-bottom: 60px;
  }

  /* ======================================================
=========================================================
                        BANNER SOC
=========================================================
====================================================== */

  .banner-sec .banner-vector1 {
    max-width: 280px;
  }

  .banner-sec .banner-vector2 {
    max-width: 300px;
  }

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

  /* ======================================================
=========================================================
                      SERVICE SOC
=========================================================
====================================================== */

  .service-padding,
  .how-work-padding,
  .faq-padding {
    padding: 60px 0;
  }

  .service-row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 40px;
  }

  .service-card {
    min-height: 100%;
    gap: 16px;
  }

  .service-card-divider {
    border: 1px solid var(--primary-color);
    height: 2px;
    width: 100%;
    margin: auto;
    top: 0;
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
  }

  /* ======================================================
=========================================================
                    PAST WORK SOC
=========================================================
====================================================== */

  .past-work-padding {
    padding: 35px 0;
  }

  /* MODAL CSS ADDED  */

  .past-work-modal-slider .past-work-image-wrapper {
    max-height: 65vh;
  }

  .past-work-modal-slider .past-work-image-wrapper .past-work-slider-img {
    height: 65vh;
  }

  /* ======================================================
=========================================================
                    HOW IT WORK SOC
=========================================================
====================================================== */

  .main-pink-circle {
    width: 350px;
    height: 350px;
    filter: blur(130px);
  }

  /* content slide part start  */
  .product-content-gallery {
    max-width: 500px;
  }

  .how-work-customer-content-gallery {
    max-width: 500px;
  }

  /* ======================================================
=========================================================
                    TESTIMONIAL SOC
=========================================================
====================================================== */

  .testimonial-padding {
    padding: 30px 0 48px;
  }

  .testimonial-swiper {
    padding: 60px 0 50px;
  }

  /* active slider css */

  .swiper-slide.swiper-slide-active .testimonial-card {
    width: 450px;
    min-height: 460px;
    margin-left: auto;
  }

  .swiper-slide.swiper-slide-active .testimonial-card .testimonial-card-body {
    padding: 120px 55px 0 55px;
  }


  /* next slider css */

  .swiper-slide.swiper-slide-next .testimonial-card {
    width: 450px;
    min-height: 460px;
    margin-right: auto;
  }

  .swiper-slide.swiper-slide-next .testimonial-card .testimonial-card-body {
    padding: 120px 55px 0 55px;
  }

  /* last slider css */

  .swiper-slide .testimonial-card {
    width: 450px;
    min-height: 460px;
  }

  .swiper-slide .testimonial-card .testimonial-card-body {
    padding: 120px 55px 0 55px;
  }


  /* ======================================================
=========================================================
                        FAQ SOC
=========================================================
====================================================== */

  .faq-wrapper {
    padding-top: 38px;
  }

  .faq-wrapper .accordion .accordion-button {
    font-size: 18px;
    line-height: 22px;
  }

  /* ======================================================
=========================================================
                      SUBSCRIBE SOC
=========================================================
====================================================== */

  .subscribe-padding {
    padding: 40px 0;
  }

  .subscribe-form {
    min-width: 100%;
  }

  .subscribe-btn {
    font-size: 18px;
    min-width: 210px;
  }


  /* ===============================================
==================================================
              LOGO BRAND SLIDER SECTION
==================================================
=============================================== */

  .logo-brand-sec {
    padding: 16px 0;
  }

  .logoSlider {
    gap: 40px;
  }

  .logoSlider-track {
    gap: 40px;
  }

  .BrandLogo-wrapper {
    max-height: 36px;
  }

  .BrandLogo-wrapper .BrandLogo {
    max-height: 36px;
  }

  @-webkit-keyframes scroll {

    /* Safari fallback */
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(calc(-100% - 40px));
    }
  }

  @keyframes scroll {

    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(calc(-100% - 40px));
    }
  }

  /* ===============================================
==================================================
                  FOOTER SECTION
==================================================
=============================================== */

  .main-footer {
    padding: 70px 0 60px;
  }

  .footer-wrapper .footer-bg-logo {
    max-width: 550px;
  }

  .main-footer .footer {
    gap: 70px;
  }

  .main-footer .footer .footer-left .footer-logo {
    max-width: 180px;
  }

  .main-footer .footer .footer-left .footer-content {
    line-height: 128%;
    padding-top: 16px;
    margin-top: 24px;
  }

  .link-follow-us-wrapper .footer-link {
    width: calc((100% - 340px) - 40px);
  }

  .link-follow-us-wrapper .folow-us-wrapper {
    width: 340px;
  }

  .link-follow-us-wrapper {
    padding-top: 40px;
  }

  .folow-us-wrapper .social-icons-wrapper {
    padding: 30px 0;
    margin-bottom: 30px;
  }

}

@media (max-width: 575px) {

  /* 03 : Heading Style CSS BOF
=================================================== */

  h1,
  .h1 {
    font-size: 30px;
    line-height: 120%;
  }

  .h2 {
    font-size: 28px;
  }

  .h4 {
    font-size: 17px;
  }

  .font-36 {
    font-size: 24px;
  }

  .font-28 {
    font-size: 17px;
  }

  .font-56 {
    font-size: 30px;
  }

  .btn {
    font-size: 16px;
    min-width: 160px;
    padding: 12px 25px;
    line-height: 20px;
  }

  /* 11 : Form &amp; Input Style BOF
==================================================== */

  .form-control,
  .form-select {
    height: 52px;
    padding: 12px 155px 12px 20px;
  }

  /* ======================================================
            COMMON CONTAINER SOC
====================================================== */
  .container {
    max-width: 100%;
    padding: 0 15px;
  }

  /* ======================================================
              COMMON TITLE SOC
====================================================== */

  .common-title-wrapper {
    gap: 8px;
    padding-bottom: 48px;
  }

  /* ======================================================
=========================================================
                      HEADER SOC
=========================================================
====================================================== */

  .header-main {
    padding-top: 12px;
  }

  .header-main .header-inner-main .header-inner .header-menu .header-menu-inner {
    top: 79px;
    left: 15px;
    right: 15px;
    width: calc(100% - 30px);
  }

  /* ======================================================
=========================================================
                        BANNER SOC
=========================================================
====================================================== */

  .banner-sec .banner-vector1 {
    max-width: 250px;
    top: -60px;
  }

  .banner-sec .banner-vector2 {
    max-width: 220px;
  }

  .banner-padding {
    padding: 48px 0;
  }

  .banner-wrapper {
    gap: 35px;
  }

  .banner-content-wrapper {
    gap: 22px;
  }

  .tick-mark-circle-img {
    max-width: 30px;
  }

  .banner-points-wrapper {
    padding-top: 30px;
    gap: 16px;
  }


  /* BANNER VIDEO CSS */

  .banner-video-container .play-btn {
    width: 50px;
    height: 50px;
  }

  /* ======================================================
=========================================================
                      SERVICE SOC
=========================================================
====================================================== */

  .service-padding,
  .how-work-padding,
  .faq-padding {
    padding: 48px 0;
  }


  /* ======================================================
=========================================================
                    PAST WORK SOC
=========================================================
====================================================== */

  /* MODAL CSS ADDED  */

  .modal-content .modal-header {
    padding: 20px;
  }

  .modal-title {
    font-size: 20px;
  }

  .modal-content .btn-close {
    width: 18px;
    height: 18px;
    background: transparent center/18px auto no-repeat;
  }

  .modal-content .modal-body {
    padding: 24px 5px;
  }

  .past-work-modal-slider {
    padding: 0 10px;
  }

  .past-work-modal-slider .swiper-button-prev {
    width: 28px;
    height: 28px;
  }

  .past-work-modal-slider .swiper-button-next {
    width: 28px;
    height: 28px;
  }

  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 14px;
  }



  /* ======================================================
=========================================================
                    HOW IT WORK SOC
=========================================================
====================================================== */

  /* content slide part start  */
  .how-work-content-box {
    gap: 16px;
    margin-bottom: 28px;
  }

  .how-work-content-box::after {
    top: 77px;
  }

  .how-work-content-box::before {
    top: 77px;
    left: 33px;
  }

  .product-content-gallery .swiper-slide-visible.swiper-slide-thumb-active .how-work-content-box::before,
  .how-work-customer-content-gallery .swiper-slide-visible.swiper-slide-thumb-active .how-work-content-box::before {
    height: 88%;
  }

  .product-content-gallery .swiper-slide-visible.swiper-slide-thumb-active .how-work-content-box::after,
  .how-work-customer-content-gallery .swiper-slide-visible.swiper-slide-thumb-active .how-work-content-box::after {
    height: 88%;
  }

  /* Image slide part START  */

  .product-content-gallery .swiper-slide-visible.swiper-slide-thumb-active .how-work-image-wrraper-mobile,
  .how-work-customer-content-gallery .swiper-slide-visible.swiper-slide-thumb-active .how-work-image-wrraper-mobile {
    height: 290px;
    margin-top: 16px;
  }

  .product-content-gallery .swiper-slide-visible.swiper-slide-thumb-active .how-work-image-wrraper-mobile .blue-circle,
  .how-work-customer-content-gallery .swiper-slide-visible.swiper-slide-thumb-active .how-work-image-wrraper-mobile .blue-circle {
    height: 200px;
  }

  .how-work-image-wrraper-mobile .product-img {
    max-width: 250px;
    height: 290px;
  }

  .how-work-image-wrraper-mobile .blue-circle {
    width: 200px;
    left: 0;
  }

  .how-work-image-wrraper-mobile .blue-circle-2 {
    left: 40px;
    filter: blur(90px);
  }

  /* ======================================================
=========================================================
                    TESTIMONIAL SOC
=========================================================
====================================================== */

  .testimonial-swiper {
    padding: 10px 0 10px;
  }

  /* active slider css */

  .swiper-slide.swiper-slide-active .testimonial-card {
    width: 100%;
    max-width: 450px;
    min-height: 460px;
    margin-left: auto;
  }

  .swiper-slide.swiper-slide-active .testimonial-card .testimonial-card-body {
    padding: 120px 50px 0 50px;
  }


  /* next slider css */

  .swiper-slide.swiper-slide-next .testimonial-card {
    width: 100%;
    max-width: 450px;
    margin-right: auto;
  }

  .swiper-slide.swiper-slide-next .testimonial-card .testimonial-card-body {
    padding: 120px 50px 0 50px;
  }

  /* last slider css */

  .swiper-slide .testimonial-card {
    width: 100%;
    max-width: 450px;
  }

  .swiper-slide .testimonial-card .testimonial-card-body {
    padding: 120px 50px 0 50px;
  }


  /* ======================================================
=========================================================
                      SUBSCRIBE SOC
=========================================================
====================================================== */

  .subscribe-btn {
    font-size: 16px;
    min-width: 150px;
  }


  /* ===============================================
==================================================
              LOGO BRAND SLIDER SECTION
==================================================
=============================================== */
  .logoSlider {
    gap: 30px;
  }

  .logoSlider-track {
    gap: 30px;
  }

  .BrandLogo-wrapper {
    max-height: 30px;
  }

  .BrandLogo-wrapper .BrandLogo {
    max-height: 30px;
  }

  @-webkit-keyframes scroll {

    /* Safari fallback */
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(calc(-100% - 30px));
    }
  }

  @keyframes scroll {

    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(calc(-100% - 30px));
    }
  }

  /* ===============================================
==================================================
                  FOOTER SECTION
==================================================
=============================================== */

  .main-footer {
    padding: 60px 0 40px;
  }

  .footer-wrapper .footer-bg-logo {
    max-width: 550px;
  }

  .main-footer .footer {
    gap: 40px;
  }

  .main-footer .footer .footer-left .footer-content {
    margin-top: 20px;
  }

  .main-footer .footer .footer-left .footer-store-wrapper .footer-store-icon {
    max-width: 140px;
  }

  .main-footer .footer .footer-left .footer-store-wrapper .footer-qr-code {
    max-width: 110px;
  }

  .link-follow-us-wrapper .footer-link {
    width: 100%;
  }

  .link-follow-us-wrapper .folow-us-wrapper {
    width: 100%;
  }

  .link-follow-us-wrapper {
    padding-top: 20px;
    gap: 30px;
  }

  .folow-us-wrapper .social-icons-wrapper {
    padding: 16px 0;
    margin-bottom: 16px;
  }

  .main-footer .footer-wrapper .footer-bottom-text {
    border-top: 0px;
  }

}

@media (max-width: 375px) {
  /* ======================================================
=========================================================
                    TESTIMONIAL SOC
=========================================================
====================================================== */

  .swiper-slide.swiper-slide-active .testimonial-card .testimonial-card-body {
    padding: 120px 40px 0 40px;
  }


  .swiper-slide .testimonial-card .testimonial-card-body {
    padding: 120px 40px 0 40px;
  }

  .swiper-slide.swiper-slide-next .testimonial-card .testimonial-card-body {
    padding: 120px 40px 0 40px;
  }

  .tc-desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 6;
  }
}