/*Hero section*/

body.home {
  background-color: rgba(239, 57, 78, 0.04);
  overflow-x: hidden;
}
.hero {
  margin-top: -50px;
  min-height: calc(100vh - 110px);
  background-color: rgba(239, 57, 78, 0.04);
  overflow: hidden;
  position: relative;
}

.hero__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  min-height: calc(100vh - 110px);
}

.hero__slider {
  width: 100%;
  height: 100%;
  max-width: 24.3%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}

.hero__content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-top: 180px;
}

.hero__text {
  max-width: 840px;
  margin: 0 auto;
}

.hero__text h1 {
  color: #322e2e;
  margin: 0 0 55px 0;
  font-size: 72px;
  letter-spacing: -4.06px;
  line-height: 1.14;
  font-weight: 500;
}

.hero__text h1 span {
  position: relative;
  color: #ef394e;
  display: inline-block;
}

.hero__text h1 span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(50% + 2px);
  -webkit-transform: translate(-50%, -50%) rotate(-2.5deg);
  -ms-transform: translate(-50%, -50%) rotate(-2.5deg);
  transform: translate(-50%, -50%) rotate(-2.5deg);
  width: calc(100% + 20px);
  height: 62px;
  background: -webkit-gradient(
      linear,
      left bottom,
      left top,
      from(rgba(52, 239, 170, 0.2)),
      to(rgba(52, 239, 170, 0.2))
    ),
    #ef394e;
  background: -o-linear-gradient(
      bottom,
      rgba(52, 239, 170, 0.2),
      rgba(52, 239, 170, 0.2)
    ),
    #ef394e;
  background: linear-gradient(
      0deg,
      rgba(52, 239, 170, 0.2),
      rgba(52, 239, 170, 0.2)
    ),
    #ef394e;
  opacity: 0.15;
  border-radius: 50px;
}

.hero__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 0;
  margin: 0;
  list-style: none;
  color: rgba(18, 18, 18, 0.7);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
  margin-bottom: 70px;
}

.hero__list li {
  margin: 0 24px;
  position: relative;
}

.hero__list li:not(:last-of-type)::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -24px;
  opacity: 0.7;
  border-right: 1px solid rgba(18, 18, 18, 0.3);
  height: 23px;
  width: 1px;
}

.hero__buttons a {
  letter-spacing: -0.22px;
  font-weight: 600;
  font-size: 15px;
  line-height: 22px;
  display: inline-block;
}

.btn-hero-sale {
  padding: 21px 39px;
  margin-right: 34px;
  -webkit-box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.12);
}

.btn-hero-sale:hover .btn-light-text {
  color: rgba(255, 255, 255, 0.7);
}

.btn-hero-sale:hover .btn-light-text::before {
  border-color: rgba(255, 255, 255, 0.7);
}

.view-products {
  padding: 21px 39px 21px 63px;

  border-radius: 36px;
  text-decoration: none;
  color: var(--clr-primary);
  font-weight: 500;
  border: 1px solid var(--clr-primary);
  font-size: 15px;
  line-height: 1;
  letter-spacing: -0.22px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
  -webkit-box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.12);
}

.view-products::before {
  content: "";
  background-image: url("../img/icon/brendly.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 14px;
  height: 21px;
  position: absolute;
  left: 39px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.view-products:hover {
  background-color: rgba(239, 57, 78, 0.1);
}

/* .view-products:hover::before {
    filter: brightness(995%);
  } */

.hero__platform {
  margin: 185px 0 65px 0;
}

.hero__platform__text {
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #9e9e9e;
  margin-bottom: 15px;
  padding-left: 20px;
  padding-right: 20px;
}

.hero__platform__text p {
  font-size: 14px;
  line-height: 1.71;
  margin-bottom: 0;
}

.hero__platform__text p i {
  color: var(--clr-primary);
  font-weight: 500;
}

.hero__platform__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.hero__platform__list__item {
  margin: 15px 20px;
  -webkit-box-shadow: 0px 0px 0px 3px #d32d40;
  box-shadow: 0px 0px 0px 3px #d32d40;
  border-radius: 50%;
  overflow: hidden;
  width: 52px;
  height: 52px;
}

.hero__platform__list__item:hover img {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.hero__platform__list__item a {
  display: inline-block;
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

.hero__platform__list__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

/*Slider*/

.hero .swiper-container {
  height: 100%;
  overflow: hidden;
}

.hero .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}

.hero__product-item {
  height: 294px;

  /* margin-bottom: 30px; */
  background-color: rgba(243, 54, 76, 0.07);
  border-radius: 22px;
  overflow: hidden;
  width: 255px;
}

.hero__slider {
  position: absolute;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;

  z-index: 3;
}

.hero__slider--left {
  left: -5%;
}

.hero__slider--right {
  right: -5%;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.hero__product-img {
  margin-top: 48px;
  text-align: center;
}

.hero__product-img.hero__product-img--mt {
  margin-top: 20px;
}

.hero__product-img--full {
  width: 100%;
  height: 100%;
  position: absolute;
}

.hero__product-img--full img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.hero__product-item img {
  display: block;
  margin: 0 auto;
}
.hero__product-new {
  position: absolute;
  top: 14px;
  left: 23px;
  z-index: 1;
}

.hero__product-new img {
  max-width: 50px;
}

.hero__product-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: absolute;
  left: 21px;
  right: 21px;
  bottom: 13px;
}

.hero__product-info__title {
  color: var(--clr-primary);
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: -0.7px;
  margin-bottom: 10px;
  margin-right: 10px;
}

.hero__product-info__color {
  padding: 0;
  margin: 0 0 10px 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;
}

.hero__product-info__color li {
  border: 1px solid #c5c9d8;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  margin: 0px 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.hero__product-info__color li:first-of-type {
  margin-left: 0;
}

.hero__product-info__color li span {
  width: 10px;
  height: 10px;
  background-color: #c5c9d8;
  border-radius: 50%;
  display: block;
}

.hero__product-info__color li.color-count {
  margin-right: 0;
  border: 0;
  border-radius: 0;
  width: auto;
  height: auto;
  font-size: 15px;
  line-height: 1;
  color: #fdabb5;
  font-weight: 700;
}

.hero__slider-2,
.hero__slider-1 {
  width: 255px;
}

.hero_slider {
  z-index: 9;
}

.hero__slider-2 {
  height: 1080px;
}

.hero__product-item {
  position: relative;
  margin-bottom: 25px;
}

.hero__slider--horizontal {
  display: none;
}
span#profit-range {
  font-weight: 500;
}
@media only screen and (max-width: 1720px) {
  .hero__text {
    max-width: 680px;
  }
  .hero__text h1 {
    font-size: 64px;
  }

  .hero__buttons a {
    padding: 18px 28px;
  }

  .hero__buttons a.view-products {
    padding: 18px 28px 18px 50px;
  }

  .view-products::before {
    left: 28px;
  }
}

@media only screen and (max-width: 1600px) {
  .hero__text {
    max-width: 600px;
  }
  .hero__text h1 {
    font-size: 58px;
  }

  .hero__slider--right {
    right: -10%;
  }

  .hero__slider--left {
    left: -10%;
  }

  .btn-hero-sale {
    margin-right: 20px;
  }
}

@media only screen and (max-width: 1536px) {
  .hero__text {
    max-width: 550px;
  }
  .hero__text h1 {
    font-size: 52px;
    letter-spacing: -2px;
  }
  .hero__text h1 span {
    margin: 0px 5px;
  }
  .hero__buttons a {
    font-size: 14px;
  }

  .hero__buttons a {
    padding: 14px 25px;
  }

  .hero__buttons a.view-products {
    padding: 14px 25px 14px 45px;
  }

  .view-products::before {
    left: 25px;
  }

  .hero__content {
    padding-top: 150px;
  }

  .hero__platform {
    margin-top: 150px;
  }
}

@media only screen and (max-width: 1440px) {
  .hero__product-item {
    width: 235px;
    height: 275px;
    margin-bottom: 20px;
  }

  .hero__product-img img {
    max-width: 90%;
  }

  .hero__product-info__title,
  .hero__product-info__color li.color-count {
    font-size: 14px;
  }

  .hero__slider {
    gap: 20px;
  }

  .hero__content {
    padding-top: 130px;
  }
  .hero__platform {
    margin-top: 130px;
  }

  .hero__platform__list__item {
    width: 45px;
    height: 45px;
  }
}

@media only screen and (max-width: 1366px) {
  .hero,
  .hero__container {
    min-height: calc(100vh - 100px);
  }
  .hero__text h1 {
    font-size: 48px;
  }

  .hero__product-item {
    width: 220px;
    height: 260px;
  }

  .hero__platform__list__item {
    margin-left: 15px;
    margin-right: 15px;
  }

  .hero__content {
    padding-top: 110px;
  }

  .hero__platform {
    margin-top: 110px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 1280px) {
  .hero__slider--left {
    left: -9%;
  }
  .hero__slider--right {
    right: -9%;
  }

  .hero__buttons a {
    padding: 12px 22px;
  }

  .hero__buttons a.view-products {
    padding: 12px 22px 12px 43px;
  }

  .view-products::before {
    left: 20px;
  }

  .hero__text {
    max-width: 500px;
  }

  .hero__text h1 {
    font-size: 42px;
    margin-bottom: 45px;
  }

  .hero__list {
    margin-bottom: 60px;
  }

  .hero__text h1 span::before {
    height: 42px;
  }
  .btn-hero-sale {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .hero__platform__text p,
  .hero__list {
    font-size: 13px;
  }

  .hero__platform__list__item {
    width: 42px;
    height: 42px;
  }

  .hero__product-info__title,
  .hero__product-info__color li.color-count {
    font-size: 12px;
  }

  .hero__product-info__color li {
    width: 12px;
    height: 12px;
  }

  .hero__product-info__color li span {
    width: 8px;
    height: 8px;
  }
}

@media only screen and (max-width: 1199px) {
  .hero__slider--left {
    left: 20px;
    display: block;
  }

  .products__slider-1,
  .products__slider-4 {
    display: none;
  }
  .hero__slider--right {
    right: 20px;
    display: block;
  }

  .hero__product-item {
    width: 210px;
    height: 245px;
  }

  .hero__product-info {
    left: 15px;
    height: 15px;
    bottom: 11px;
  }

  .hero__product-img.hero__product-img--mt {
    margin-top: 35px;
  }
}

@media only screen and (max-width: 991px) {
  .hero__slider--left,
  .hero__slider--right {
    display: none;
  }

  .hero__text {
    max-width: 100%;
  }

  .hero__buttons a {
    margin-left: 7px;
    margin-right: 7px;
  }

  .hero__text h1 {
    font-size: 38px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__text h1 span::before {
    height: 38px;
  }

  .hero {
    margin-top: 0;
  }

  .hero,
  .hero__container {
    min-height: auto;
  }

  .hero__slider--horizontal {
    display: block;
  }

  .hero .swiper-container {
    height: auto;
  }
  .hero .swiper-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .hero__slider {
    position: relative;
    max-width: 100vw;
    overflow: hidden;
    height: auto;
    margin-top: 30px;
  }

  .hero__product-item {
    margin-left: 10px;
    margin-right: 10px;
  }

  .hero__platform {
    margin: 60px 0px 25px;
  }

  .hero__buttons a {
    font-weight: 500;
    font-size: 13px;
  }

  .hero__platform__text p,
  .hero__list {
    font-size: 12px;
  }

  .hero__content {
    padding-top: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .hero__content {
    padding-top: 60px;
  }

  .hero__text h1 {
    font-size: 35px;
    margin-bottom: 31px;
  }

  .hero__list {
    font-size: 10px;
    opacity: 0.7;
    margin-bottom: 45px;
  }

  .hero__list li:not(:last-of-type)::after {
    height: 12px;
  }

  .hero__buttons a {
    font-size: 11px;
    line-height: 19px;
  }

  .hero__slider {
    margin-top: 34px;
  }

  .hero__platform {
    margin-top: 45px;
  }

  .hero__text {
    padding-left: 20px;
    padding-right: 20px;
  }

  .view-products::before {
    width: 11px;
    top: calc(50% - 1px);
  }
  .hero__buttons a.view-products {
    padding-left: 38px;
  }

  .btn-hero-sale,
  .view-products {
    margin-bottom: 16px;
  }
  .hero__product-new {
    left: 15px;
  }

  .hero__product-new img {
    max-width: 40px;
  }
}

@media only screen and (max-width: 575px) {
  .hero__content {
    padding-top: 40px;
  }

  .hero__list {
    margin-bottom: 35px;
  }

  .hero__slider {
    margin-top: 10px;
  }

  .hero__platform {
    margin-top: 25px;
  }

  .hero__product-item {
    height: 188px;
    width: 163px;
  }

  .hero__product-info__title,
  .hero__product-info__color li.color-count {
    font-size: 10px;
  }

  .hero__product-info__color li.color-count {
    position: relative;
    top: 1px;
    font-weight: 500;
  }

  .hero__product-info__color li {
    width: 9px;
    height: 9px;
    margin: 0 2px;
  }
  .hero__product-info__color li span {
    width: 5px;
    height: 5px;
  }
  .hero__list li {
    margin: 0 10px;
  }

  .hero__list li:not(:last-of-type)::after {
    right: -12px;
  }
}

@media only screen and (max-width: 389px) {
  .hero__text h1 {
    font-size: 32px;
  }

  .hero__text h1 span::before {
    height: 32px;
  }

  .hero__list li {
    margin: 0 10px;
  }

  .hero__list li:not(:last-of-type)::after {
    right: -15px;
  }

  .hero__platform__list__item {
    width: 35px;
    height: 35px;
    margin: 15px 12px;
  }

  .hero__list li:not(:last-of-type)::after {
    right: -10px;
  }
}

@media only screen and (max-width: 389px) {
  .hero__text h1 {
    font-size: 29px;
  }

  .hero__text h1 span::before {
    height: 29px;
  }
}

/* Denic 10.05.23 */
section.benefits.container-fluid {
  padding: 100px 0;
}
h2.benefits-title {
  text-align: center;
  color: var(--clr-primary);
  font-weight: 600;
  font-size: 42px;
  line-height: 47px;
  letter-spacing: -0.5px;
}
section.benefits .row {
  padding-top: 57px;
}
img.second-first-img {
  position: absolute;
  top: 0;
  z-index: 2;
}
.single-benefit-img {
  position: relative;
}
img.second-first-img {
  position: absolute;
  top: 0;
  z-index: 2;
  right: 0;
}
img.third-first-img {
  position: absolute;
  z-index: 3;
  right: 0;
  top: 40px;
}
.single-benefit {
  border-radius: 30px;
  border: 1px solid #fddfe3;
}
.second-first-img,
.first-first-img {
  border-top-right-radius: 30px;
}
.first-benefit .single-benefit-content {
  padding-top: 21px;
}

.single-benefit-content {
  padding-left: 43px;
  padding-right: 43px;
}
h4.single-benefit-title {
  font-size: 26px;
  font-weight: 500;
  line-height: 35px;
  letter-spacing: -1.91px;
  color: var(--clr-primary);
  margin: 0;
  margin-bottom: 40px;
  max-width: 310px;
}
/* img.single-benefit-icon {
  margin-left: 20px;
} */
/* a.btn-theme.single-benefit-btn {
  margin-left: 43px;
} */

.single-benefit-icon {
  box-shadow: 0px 9px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 17px;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  object-fit: contain;
}
a.btn-theme.single-benefit-btn {
  padding: 15px 33px;
  -webkit-box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.12);
  display: inline-block;
  margin-bottom: 40px;
}
.first-benefit,
.fourth-benefit {
  height: 100%;
}
.benefits-col.benefits-mid .single-benefit {
  height: calc(50% - 13px);
}
.benefits-col.benefits-mid .single-benefit:not(:first-child) {
  margin-top: 26px;
}
.benefits-col.benefits-mid .single-benefit-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #656978;
  max-width: 350px;
}
.benefits-col.benefits-mid .single-benefit {
  padding-top: 20px;
}
.benefits-col.benefits-mid .single-benefit-title {
  margin-bottom: 13px;
}
.fourth-benefit .single-benefit-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 20px;
}

.fourth-benefit h4.single-benefit-title {
  padding: 0;
  text-align: center;
  margin-bottom: 13px;
  margin-left: auto;
  margin-right: auto;
}
p.single-benefit-text.fourth-box-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #656978;
  text-align: center;
  margin: 0;
}
.fourth-benefit .single-benefit-img {
  padding-top: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 26px;
  padding-right: 26px;
  margin-bottom: 26px;
}

.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
  top: 65%;
  left: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

span.swiper-pagination-bullet {
  width: 30px;
  border-radius: 0;
  height: 3px;
  margin-right: 27px !important;
}
span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 215px;
  border-radius: 0;
  height: 3px;
  transition: width 0.4s ease-out;
}

span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
}
span.swiper-pagination-bullet {
  background: #f9b0b8;
  position: relative;
}
span.pag-num {
  position: absolute;
  padding-top: 15px;
  padding-right: 15px;
  top: 0;
  left: 0px;
  color: #fff;
}

.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: none;
}

section.how-it-work.container-fluid {
  padding-top: 100px;
}
p.how-it-work-subtitle {
  font-weight: 500;
  font-size: 14px;
  line-height: 0px;
  color: #000;
  text-align: center;
}
.col-md-6.how-it-work-img-box {
  position: relative;
}
img.second-img-img-box {
  position: absolute;
  top: 0;
  z-index: 2;
  right: 42px;
}
.col-md-6.how-it-work-img-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-right: 100px;
}
img.second-img-2-box,
img.third-img-2-box,
img.fourth-img-2-box {
  position: absolute;
}
img.first-img-2-box {
  position: relative;
}
img.second-img-2-box {
  position: absolute;
  top: 20px;
  left: 40px;
}
img.fourth-img-2-box {
  bottom: 0;
  left: 230px;
}
img.first-img-3-box {
  position: relative;
}
img.second-img-3-box,
img.third-img-3-box,
img.fourth-img-3-box {
  position: absolute;
}
img.third-img-3-box {
  right: 210px;
}
img.fourth-img-3-box {
  bottom: 0;
  right: 100px;
}
img.second-img-3-box {
  top: 15px;
  right: 180px;
}
img.first-img-4-box,
img.first-img-5-box {
  position: relative;
}
img.second-img-4-box,
img.third-img-4-box,
img.second-img-5-box,
img.third-img-5-box {
  position: absolute;
}
img.first-img-4-box {
  position: relative;
  left: 30px;
}
img.third-img-4-box {
  bottom: 30px;
  left: 190px;
}
img.second-img-4-box {
  top: 5px;
  left: 20px;
}
img.second-img-5-box {
  left: 160px;
  top: -23px;
}
img.second-img-5-box {
  left: 205px;
  top: -23px;
}
h3.h-i-w-t-b-title {
  font-weight: 500;
  font-size: 42px;
  line-height: 47px;
  letter-spacing: -1.4px;
  color: #f3364c;
}
a.first-img-box-btn {
  position: absolute;
}
h2.how-it-work-title {
  font-weight: 600;
  font-size: 42px;
  line-height: 47px;
  text-align: center;
  letter-spacing: -0.5px;
  color: #f3364c;
  margin-bottom: 0;
  padding-top: 30px;
}
.h-i-w-t-b-text {
  max-width: 480px;
  font-weight: 500;
  font-size: 14px;
  line-height: 26px;
  color: #656978;
}
.col-md-6.how-it-work-text-box {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
img.first-img-img-box {
  position: relative;
}
.col-md-6.how-it-work-img-box.second-img-box {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  left: 60px;
}
img.third-img-2-box {
  z-index: 3;
  left: 0;
}
img.third-img-3-box {
  left: 220px;
  z-index: 3;
}
.how-it-work-text-content {
  width: 100%;
  max-width: 510px;
  position: relative;
}
.how-it-work-img-content {
  max-width: 500px;
  width: 100%;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
img.third-img-5-box {
  bottom: 30px;
  right: 100px;
}
img.img-text-arrow {
  position: absolute;
  right: -180px;
}
.col-md-6.how-it-work-img-box,
.col-md-6.how-it-work-text-box {
  margin-top: 150px;
  position: relative;
}
img.img-text-arrow-left {
  position: absolute;
  left: -240px;
  margin-top: -30px;
}
a.first-img-box-btn {
  position: absolute;
  z-index: 3;
  opacity: 0.95;
  -webkit-filter: drop-shadow(0px 16.8493px 33.6986px rgba(0, 0, 0, 0.12));
  filter: drop-shadow(0px 16.8493px 33.6986px rgba(0, 0, 0, 0.12));
  text-decoration: none;
  font-weight: 500;
  font-size: 17.0242px;
  line-height: 26px;
  letter-spacing: -0.01em;
  color: #ef394e;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 15px;
  border-radius: 15px;
  left: 190px;
  bottom: 75px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.card {
  display: inline-block;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 8px;
  margin-right: 10px;
  cursor: pointer;
  -webkit-transition: border-color 0.3s ease;
  -o-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
  -webkit-filter: drop-shadow(0px 14px 30px rgba(0, 0, 0, 0.07));
  filter: drop-shadow(0px 14px 30px rgba(0, 0, 0, 0.07));
  width: 90px;
  height: 90px;
}

.card-body {
  text-align: center;
}
.card-body p {
  font-size: 12px;
  line-height: 13px;
  color: #212121;
  border-top: 1px solid #f4f4f4;
  padding-top: 4px;
}
input[type="radio"] {
  display: none;
}

input[type="radio"]:checked + .card {
  background-color: #007bff;
  color: #fff;
  border: 2px solid red; /* Add red border */
}

input[type="radio"]:checked + .card .card-body {
  color: #fff;
}
.card-body img {
  margin-bottom: 8px;
  margin-top: 7px;
}
.card:hover {
  background-color: rgba(239, 57, 78, 0.04);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
label.card.default-border {
  border: 1px solid #f3364c;
}
input#range1,
input#myRange2 {
  position: relative;
  width: 500px;
}
p.input-range-num {
  width: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0;
  padding: 0 !important;
}
.product-number-range {
  padding-top: 35px;
}
section.calculator-section {
  padding: 113px 0px;
}
.calculator-content {
  background: #ffffff;
  border-radius: 30px;
  padding: 100px 0;
}
.calc-right-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
h2.calc-left-title {
  font-weight: 600;
  font-size: 42px;
  line-height: 47px;
  letter-spacing: -0.5px;
  color: #ef394e;
}
p.calc-left-text {
  font-size: 18px;
  line-height: 26px;
  color: #6b6b6b;
}
a.calc-left-btn {
  background: #ef394e;
  -webkit-box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.12);
  border-radius: 36px;
  text-decoration: none;
  color: #fff;
  padding: 20px 40px;
  font-size: 15px;
  font-weight: 600;
  padding-left: 60px;
}
.users-img {
  padding-top: 50px;
}
.calc-btn-box {
  padding-top: 50px;
}
.product-price-range {
  position: relative;
}
p.product-number,
.product-price-range p,
p.result-text,
.choose-type {
  font-size: 18px;
  line-height: 26px;
  color: #6b6b6b;
  padding: 0;
  margin-bottom: 10px;
}
p.input-range-num span {
  font-weight: 500;
  font-size: 12.4px;
  line-height: 16px;
  color: rgba(107, 107, 107, 0.4);
}
span#firstRange {
  color: #ef394e;
}
span#firstRange,
span#rangeValue2 {
  color: #ef394e;
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  font-style: italic;
}
#range1,
#myRange2 {
  font-weight: 500;
  font-size: 12.4px;
  line-height: 16px;
  color: rgba(107, 107, 107, 0.4);
}
p.result-price-number {
  border: 1px solid #ffd0d6;
  border-radius: 10px;
  width: 500px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
p.result-price-number span {
  font-weight: 500;
  font-size: 26.5756px;
  line-height: 40px;
  letter-spacing: -1.55024px;
  color: #474747;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
p.note {
  font-weight: 500;
  font-size: 11px;
  line-height: 14px;
  color: rgba(71, 71, 71, 0.8);
  width: 500px;
  padding-top: 5px;
}
p.cta-left-subtitle {
  font-weight: 500;
  font-size: 14px;
  line-height: 0px;
  color: #000000;
  padding: 0;
  margin: 0;
}
h2.cta-left-title {
  font-weight: 600;
  font-size: 42px;
  line-height: 47px;
  letter-spacing: -0.5px;
  color: #f3364c;
  padding-top: 20px;
  margin: 0;
}

.cta-right-content--mobile {
  display: none;
}
.cta-right-btn-box a.btn-theme {
  padding: 21px 39px;
  gap: 10px;
  width: 285px;
  height: 60px;
  -webkit-box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.12);
  border-radius: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.cta-right-btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.container.cta-section-content {
  padding: 30px 0;
}
/* section.brendly-platform-section .swiper-slide.swiper-slide-active {
  margin-left: 113px;
} */

/* ////////////////swiper2 */
.brendly-platform-section .swiper-container,
.brendly-platform-section .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.brendly-platform-section .swiper-container {
  padding-right: 143px;
}
.brendly-platform-section .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding-left: 113px;
}
.brendly-platform-section .swiper-button-next {
  background-image: url("https://brendly.rs/wp-content/uploads/2023/06/download.png");
  right: 10px;
  left: auto;
}
.brendly-platform-section .swiper-button-prev {
  background-image: url("https://brendly.rs/wp-content/uploads/2023/06/download-prev.png");
  left: 10px;
  right: auto;
}

.brendly-platform-section .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  width: auto;
  margin-right: 30px;
}
.brendly-platform-section .swiper-slide img {
  max-width: 780px;
  max-height: 655px;
}
/* .brendly-platform-section .swiper-slide:last-child{
margin-right:90px;
} */
/* .brendly-platform-section .thumbContainer {
  opacity: 1;
  transform: translateY(60%);
} */

.brendly-platform-section .thumbContainer img,
.brendly-platform-section .thumbContainer video {
  display: block;
  position: relative;
  max-width: calc(380px + 43vh);
  max-height: calc(255px + 43vh);
  box-shadow: 0px 21px 32px 0px rgba(0, 0, 0, 0.07);
  border-radius: 11px;
}
.fadeInSlide {
  -webkit-animation-name: fadeInSlide;
  animation-name: fadeInSlide;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-timing-function: cubic-bezier(1, 0.055, 0.32, 1);
  animation-timing-function: cubic-bezier(1, 0.055, 0.32, 1);
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
/* @keyframes fadeInSlide {
  0% {
    transform: translateY(60%);
  }
  100% {
    transform: translateY(0);
  }
} */
/* //////end swiper2 */
section.brendly-platform-section {
  padding: 55px 0 65px 0px;
}
p.product-info {
  font-size: 21px;
  line-height: 24px;
  letter-spacing: -0.03em;
  color: #9e9e9e;
  margin: 21px 0px;
}
section.popular-products {
  /* padding: 0 113px; */
}
.popular-products-content {
  background: #ffffff;
  border-radius: 30px;
  padding: 88px 0;
}
h2.popular-products-title {
  font-weight: 600;
  font-size: 42px;
  line-height: 47px;
  letter-spacing: -0.5px;
  color: #ef394e;
  margin: 0;
}
p.popular-products-subtitle {
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: -0.03em;
  color: #9e9e9e;
  margin: 15px 0px;
}
.img-popular-product img {
  border-radius: 22px;
  width: 100%;
}
.info-popular-product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 10px;
}
.popular-color-box {
  padding: 20px 10px 0 10px;
}
h5.product-name {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #111827;
}

p.product-dscp {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  color: #64748b;
}
p.product-price {
  border: 2px solid #ef394e;
  border-radius: 8px;
  padding: 8px 11.13px 8px 12px;
  gap: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #64748b;
}
p.product-price span {
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  color: #ef394e;
}
.text-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
section.popular-products .row {
  padding-top: 50px;
}
.popular-products-btn a {
  padding: 21px 42px;
  gap: 10px;
  display: inline-block;
  background: #ffffff;
  border: 1px solid #ef394e;
  border-radius: 36px;
  color: #ef394e;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: -0.22px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
a.calc-left-btn {
  padding: 22px 39px 22px 60px;
  border-radius: 36px;
  text-decoration: none;
  font-weight: 500;
  border: 1px solid var(--clr-primary);
  font-size: 15px;
  line-height: 1;
  letter-spacing: -0.22px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
  -webkit-box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.12);
  display: inline-block;
}
.popular-products-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* padding-top: 30px; */
}
/* ///////////////// */
#range1,
#myRange2 {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  cursor: pointer;
  outline: none;
  overflow: hidden;
  border-radius: 16px;
}
#range1::-webkit-slider-runnable-track,
#myRange2::-webkit-slider-runnable-track {
  height: 6px;
  background: #ccc;
  border-radius: 16px;
}
#range1::-moz-range-track,
#myRange2::-moz-range-track {
  height: 6px;
  background: #ccc;
  border-radius: 16px;
}

#range1::-webkit-slider-thumb,
#myRange2::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  height: 15px;
  width: 15px;
  background-color: #ef394e;
  border-radius: 50%;
  border: 2px solid #fff;
  -webkit-box-shadow: -407px 0 0 400px #ef394e;
  box-shadow: -407px 0 0 400px #ef394e;
  pointer-events: auto;
}

#range1::-moz-range-thumb,
#myRange2::-moz-range-thumb {
  height: 15px;
  width: 15px;
  background-color: #ef394e;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: -407px 0 0 400px #ef394e;
  pointer-events: auto;
}
/* ///// */
.range-container {
  position: relative;
  width: 100%;
}

.range-container input[type="range"] {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  z-index: 1;
}

.custom-thumb,
.custom-thumb2 {
  position: absolute;
  top: -2px; /* Adjust the top position to extend the thumb above the input */
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 30px; /* Adjust the width to make the thumb larger */
  height: 20px; /* Adjust the height to make the thumb larger */
  background-color: #ef394e;
  border-radius: 10px;
  border: 2px solid #fff;
  -webkit-box-shadow: 0 0 0 0px #ef394e;
  box-shadow: 0 0 0 0px #ef394e;
  z-index: 2;
  cursor: pointer;
  pointer-events: auto;
}

/* //// */

/* ////faq */
.accordion .accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #eeeeee;
  font-size: 20px;
  line-height: 20px;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}
.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: #fff;
}
.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: #fff;
  border: 1px solid #fff;
}
.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}
.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
}
.accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 16px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 2px;
  left: 12px;
  width: 2px;
  height: 16px;
  background: currentColor;
  -webkit-transition: all 100ms ease;
  -o-transition: all 100ms ease;
  transition: all 100ms ease;
  will-change: opacity, max-height;
}
.accordion button[aria-expanded="true"] {
  color: #fff;
}
.accordion button[aria-expanded="true"] .icon::after {
  width: 0;
  -webkit-transform: translateY(0) rotate(90deg);
  -ms-transform: translateY(0) rotate(90deg);
  transform: translateY(0) rotate(90deg);
}
.accordion button[aria-expanded="true"] + .accordion-content {
  opacity: 1;
  max-height: 90em;
  -webkit-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: opacity 500ms ease, max-height 500ms ease;
  -o-transition: opacity 500ms ease, max-height 500ms ease;
  transition: opacity 500ms ease, max-height 500ms ease;
  will-change: opacity, max-height;
}
.accordion .accordion-content p,
.accordion .accordion-content ul,
.accordion .accordion-content a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 300;
  margin: 1em 0;
  color: #fff;
  line-height: 1.3;
}
section.faq-section {
  margin-top: -50px;
}
.faq-section-content {
  background: #ef394e;
  border-radius: 30px;
}
.faq-section-content {
  background: #ef394e;
  border-radius: 30px;
  padding-top: 65px;
  padding-bottom: 45px;
  position: relative;
}
.faq-section-content:before {
  content: "";
  display: block;
  background: url(/wp-content/uploads/2023/05/Mask-group.png);
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
}
.faq-section-content .container {
  z-index: 3;
  position: relative;
}
h2.faq-title {
  font-weight: 600;
  font-size: 42px;
  line-height: 47px;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin: 0;
}
p.faq-subtitle {
  font-size: 16px;
  line-height: 32px;
  color: #eeeeee;
  margin: 16px 0px;
}
.faq-tabs {
  padding-top: 20px;
  padding-right: 10px;
}
span.accordion-title {
  font-size: 20px;
  line-height: 20px;
  letter-spacing: -0.6px;
}
.faq-right-content {
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  padding: 25px;
}
h3.faq-right-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.72px;
  color: #ffffff;
}
.faq-right-content p,
.faq-right-content p a {
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  text-decoration: none;
}
a.faq-left-btn {
  padding: 21px 39px;
  gap: 7px;
  display: inline-block;
  background: #ffffff;
  border: 1px solid #ffffff;
  -webkit-box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.12);
  border-radius: 36px;
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: -0.22px;
  color: #ef394e;
  text-decoration: none;
}
a.faq-right-btn {
  padding: 21px 39px;
  border: 1px solid #ffffff;
  -webkit-filter: drop-shadow(0px 20px 40px rgba(0, 0, 0, 0.12));
  filter: drop-shadow(0px 20px 40px rgba(0, 0, 0, 0.12));
  border-radius: 36px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.22px;
  color: #ffffff;
  text-decoration: none;
  background: #ef394e;
}
.faq-right-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 90px;
}
.single-benefit.fourth-benefit .single-benefit-content > div {
  text-align: center;
  padding: 0;
}
.how-it-work-title-mob {
  display: none;
}
.slider-products,
.brendly-mob-platform {
  display: none;
}
.calc-btn-box.calc-btn-box-mob {
  display: none;
}
.how-it-work-img-box img {
  opacity: 0;
  -webkit-transition: opacity 0.45s;
  -o-transition: opacity 0.45s;
  transition: opacity 0.45s;
}
.how-it-work-img-box img.show {
  opacity: 1;
}
.single-benefit-img img {
  opacity: 0;
  -webkit-transition: opacity 0.45s;
  -o-transition: opacity 0.45s;
  transition: opacity 0.45s;
}
.single-benefit-img img.show {
  opacity: 1;
}
.how-it-work-text-content img {
  opacity: 0;
  -webkit-transition: opacity 0.45s;
  -o-transition: opacity 0.45s;
  transition: opacity 0.45s;
}
.how-it-work-text-content img.show {
  opacity: 1;
}
.users-img .hero__platform__list__item {
  margin: 0;
  -webkit-box-shadow: 0px 0px 0px 3px #d32d40;
  box-shadow: 0px 0px 0px 3px #d32d40;
  border-radius: 50%;
  overflow: hidden;
  width: 36px;
  height: 36px;
  margin-left: -15px;
}
.users-img .hero__platform__list__item:hover img {
  -webkit-transform: unset;
  -ms-transform: unset;
  transform: unset;
}
.users-img .hero__platform__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  list-style: none;
  margin: 0;
  padding-left: 20px;
}
.users-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
p.user-img-text {
  color: #9e9e9e;
  padding-left: 20px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}
p.user-img-text span {
  color: #ef394e;
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  line-height: 24px;
}
a.calc-left-btn,
.popular-products-btn a {
  position: relative;
}
.popular-products-btn a {
  padding-left: 60px;
}
.popular-products-btn a:before {
  content: "";
  background-image: url("/wp-content/uploads/2023/05/Group-1833red.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 14px;
  height: 21px;
  position: absolute;
  left: 39px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
a.calc-left-btn:before {
  content: "";
  background-image: url("/wp-content/uploads/2023/05/Group-1833-1.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 14px;
  height: 21px;
  position: absolute;
  left: 39px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.result-price {
  padding-top: 30px;
}
.how-it-work-img-second-content img,
.col-md-6.how-it-work-img-box img {
  border-radius: 19px;
}
a.faq-right-btn,
a.faq-left-btn {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
a.calc-left-btn span {
  color: rgba(255, 255, 255, 0.7);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
  padding-left: 23px;
}
a.calc-left-btn span::before {
  content: "";
  position: absolute;
  top: 60%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
h2.how-it-work-title span {
  position: relative;
  margin-left: 170px;
}
.col-lg-4.col-md-12.benefits-col.benefits-col-fourth .single-benefit-img img {
  -webkit-box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.12),
    0px 19px 38.2216px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.12),
    0px 19px 38.2216px rgba(0, 0, 0, 0.06);
  border-radius: 15px;
}
.no-slider-products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
h2.how-it-work-title span::before {
  content: "";
  background-image: url("/wp-content/uploads/2023/06/Layer_1.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 166px;
  height: 70px;
  position: absolute;
  left: -170px;
  top: 33%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.calc-left-content {
  padding-right: 30px;
  /* padding-left: 50px; */
}
.product-item__text__info h4 {
  position: absolute;
}
.product-item__text__info p {
  padding-top: 30px;
}
.calc-left-content .hero__platform__list__item a,
.calc-left-content .hero__platform__list__item img {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
section.faq-section {
  position: relative;
}
section.faq-section::after {
  content: "";
  width: 80%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0.5;
  -webkit-filter: blur(27.1828px);
  filter: blur(27.1828px);
  border-radius: 2px;
  position: absolute;
  bottom: -30px;
  z-index: 1;
}
.calc-left-content .hero__platform__list__item a {
  pointer-events: none;
}

@media only screen and (max-width: 1600px) {
  .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets {
    top: 70%;
  }

  .popular-products-content {
    padding: 88px 30px;
  }
  .faq-section-content {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media only screen and (max-width: 1536px) {
  .first-benefit .single-benefit-content {
    padding-top: 80px;
  }

  .brendly-platform-section .swiper-wrapper {
    padding-left: 102px;
  }

  .brendly-platform-section .swiper-container {
    padding-right: 132px;
  }
  h2.benefits-title,
  h2.how-it-work-title,
  h2.calc-left-title,
  h2.cta-left-title,
  h2.popular-products-title,
  h2.faq-title {
    font-size: 35px;
    line-height: 35px;
  }
  section.benefits .row {
    padding-top: 26px;
  }
  .benefits-col.benefits-mid .single-benefit-text,
  p.single-benefit-text.fourth-box-text {
    line-height: 20px;
  }
  .fourth-benefit .single-benefit-img {
    padding-top: 45px;
  }

  .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets {
    top: 55%;
  }

  h2.how-it-work-title span::before {
    height: 60px;
  }
  .col-md-6.how-it-work-img-box {
    padding-right: 0;
  }
  section.how-it-work.container-fluid .container {
    max-width: 900px;
  }
  .how-it-work-img-content img,
  .how-it-work-img-second-content img {
    max-width: 250px;
  }
  img.second-img-img-box.show {
    max-width: 300px;
    right: -15%;
  }
  a.first-img-box-btn {
    left: 40%;
  }
  h3.h-i-w-t-b-title {
    font-size: 35px;
    line-height: 40px;
  }
  .col-md-6.how-it-work-img-box.second-img-box {
    left: 0;
  }
  img.second-img-2-box.show {
    max-width: 190px;
    top: 10px;
  }
  img.second-img-3-box {
    right: 8%;
    max-width: 170px;
    top: 10px;
  }
  img.fourth-img-3-box {
    right: -8%;
  }
  img.third-img-3-box {
    left: 45%;
  }
  img.third-img-5-box {
    right: -5%;
  }
  img.second-img-5-box {
    left: 43%;
    max-width: 150px;
  }
  img.fourth-img-2-box {
    left: 35%;
  }
  img.second-img-4-box {
    max-width: 180px;
    left: 5%;
  }
  img.third-img-4-box {
    max-width: 170px;
    left: 33%;
  }

  p.user-img-text {
    padding-left: 10px;
    font-size: 12px;
  }
  .calculator-content {
    padding: 80px 0;
  }
  .cta-right-btn-box {
    height: 100%;
  }
  span.accordion-title {
    font-size: 18px;
  }
  a.faq-right-btn,
  a.faq-left-btn {
    padding: 20px 30px;
  }
  .faq-right-btns {
    padding-top: 10px;
  }
  .calc-left-content {
    padding-left: 10px;
  }
  img.img-text-arrow {
    max-height: 180px;
  }
  img.img-text-arrow-left {
    max-height: 220px;
  }
  p.calc-left-text,
  p.product-number,
  .product-price-range p,
  p.result-text,
  .choose-type,
  p.product-info {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1500px) {
  .faq-right-content {
    padding: 20px;
  }
  .calc-left-content {
    padding-right: 0;
    padding-left: 50px;
  }
  .container.cta-section-content {
    padding: 0px 40px;
  }
  a.faq-left-btn {
    padding: 10px 25px;
  }
}

@media only screen and (max-width: 1440px) {
  .brendly-platform-section .swiper-wrapper {
    padding-left: 82px;
  }

  .brendly-platform-section .swiper-container {
    padding-right: 112px;
  }
}

@media only screen and (max-width: 1366px) {
  .brendly-platform-section .swiper-wrapper {
    padding-left: 62px;
  }

  .brendly-platform-section .swiper-container {
    padding-right: 92px;
  }
}
@media only screen and (max-width: 1399px) {
  a.first-img-box-btn {
    left: 40%;
  }
  img.third-img-3-box {
    left: 45%;
  }
  img.second-img-5-box {
    left: 45%;
  }
  img.third-img-5-box {
    right: -3%;
  }

  a.faq-right-btn,
  a.faq-left-btn {
    padding: 10px 20px;
    font-size: 15px;
    line-height: 19px;
  }

  p.product-price {
    padding: 6px 7px 6px 7px;
  }
  .faq-right-content {
    padding: 20px;
  }
  h3.h-i-w-t-b-title {
    font-size: 38px;
    line-height: 42px;
  }
  img.third-first-img {
    top: 0px;
  }
  .calc-left-content {
    padding-left: 0;
  }
  p.user-img-text {
    padding-left: 10px;
  }
  img.img-text-arrow-left {
    position: absolute;
    left: -150px;
    margin-top: -30px;
  }
  .product-item__text__info p {
    padding-top: 20px;
  }

  .single-benefit-content {
    padding-left: 32px;
    padding-right: 32px;
  }
  h2.benefits-title,
  h2.how-it-work-title,
  h2.calc-left-title,
  h2.cta-left-title,
  h2.popular-products-title,
  h2.faq-title,
  h3.h-i-w-t-b-title {
    font-size: 32px;
    line-height: 38px;
  }
  h4.single-benefit-title {
    font-size: 22px;
    line-height: 30px;
  }
  .first-benefit .single-benefit-content {
    padding-top: 40px;
  }
  img.third-first-img.show {
    max-width: 160px;
  }
  .fourth-benefit .single-benefit-img {
    padding-top: 110px;
  }
  .single-benefit-img {
    margin-bottom: 45px;
  }
  .benefits-col.benefits-mid .single-benefit,
  .single-benefit-content {
    padding-top: 10px;
  }
  .single-benefit-content {
    padding-top: 0;
  }
  .fourth-benefit .single-benefit-content {
    padding-top: 10px;
  }

  .accordion button {
    padding: 10px 0;
  }
  h3.faq-right-title {
    font-size: 20px;
  }
  .faq-right-btns {
    padding-top: 0;
  }

  .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets {
    top: 45%;
  }

  .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets {
    top: 60%;
  }
}

@media only screen and (max-width: 1199px) {
  .no-slider-products {
    display: flex;
  }
  img.first-img-img-box.show {
    right: 40px;
  }
  img.first-img-3-box.show {
    right: 40px;
  }
  .benefits-col.benefits-mid .single-benefit-text,
  p.single-benefit-text.fourth-box-text {
    line-height: 20px;
  }
  img.third-first-img {
    position: absolute;
    z-index: 3;
    right: 0;
    top: 10px;
    width: 160px;
  }
  /* h4.single-benefit-title,
  .single-benefit-text,
  .fourth-benefit h4.single-benefit-title {
    padding: 0 20px !important;
  } */
  .benefits-col.benefits-col-first .single-benefit-img {
    margin-bottom: 60px;
  }

  .brendly-platform-section .swiper-wrapper {
    padding-left: 42px;
  }

  .brendly-platform-section .swiper-container {
    padding-right: 52px;
  }

  .brendly-platform-section .swiper-button-prev,
  .brendly-platform-section .swiper-button-next {
    width: 20px;
    background-size: contain;
  }

  .single-benefit-content {
    padding-left: 25px;
    padding-right: 25px;
  }

  h4.single-benefit-title {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 10px;
  }

  .benefits-col.benefits-mid .single-benefit-text,
  p.single-benefit-text.fourth-box-text,
  a.btn-theme.single-benefit-btn {
    font-size: 13px;
  }

  a.btn-theme.single-benefit-btn {
    padding-top: 13px;
    padding-bottom: 13px;
  }

  .single-benefit-icon {
    margin-bottom: 12px;
  }

  .first-benefit h4.single-benefit-title {
    margin-bottom: 15px;
  }
  .fourth-benefit .single-benefit-img {
    padding-top: 60px;
  }

  .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets {
    top: 65%;
  }

  a.first-img-box-btn {
    left: 0;
  }
  .col-md-6.how-it-work-img-box {
    padding-right: 0;
  }
  img.second-img-img-box {
    position: absolute;
    top: 0;
    z-index: 2;
    right: 0;
  }
  .col-md-6.how-it-work-img-box.second-img-box {
    left: 0;
  }
  img.second-img-3-box {
    top: 15px;
    right: 15%;
  }
  img.first-img-5-box.show {
    right: 40px;
  }
  img.third-img-3-box {
    left: 35%;
  }
  img.fourth-img-3-box {
    bottom: 0;
    right: 0;
  }
  img.third-img-5-box {
    right: 5%;
  }
  .card {
    padding: 3px;
    width: 75px;
    height: 75px;
    margin-right: 10px;
  }
  .product-number-range,
  p.input-range-num,
  input#range1,
  input#myRange2,
  .product-price-range,
  .result-price,
  p.result-price-number,
  .calc-right-content > div,
  p.note {
    width: 100%;
  }
  a.faq-right-btn,
  a.faq-left-btn {
    padding: 10px 15px;
    font-size: 14px;
    line-height: 18px;
  }
  .col-md-6.how-it-work-img-box,
  .col-md-6.how-it-work-text-box {
    margin-top: 120px;
  }
  .card-body img {
    margin-bottom: 3px;
    margin-top: 3px;
  }
  p.user-img-text {
    padding-left: 10px;
    font-size: 12px;
  }

  .first-benefit .single-benefit-content {
    padding-top: 20px;
  }

  img.second-img-img-box.show {
    right: 0;
  }
  .users-img .hero__platform__list__item {
    width: 30px;
    height: 30px;
  }
  a.first-img-box-btn {
    left: 30%;
  }
}
@media only screen and (max-width: 1024px) {
  .brendly-mob-platform,
  .cta-right-content--mobile {
    display: block;
  }
  .swiper-button-next {
    display: none;
  }
  .swiper-button-prev {
    display: none;
  }

  section.brendly-platform-section {
    padding-top: 25px;
  }

  .slider-products {
    display: block;
    padding-top: 20px;
  }
  .no-slider-products {
    display: none;
  }
  .slider-products .swiper-slide {
    width: 80px;
    margin-right: 10px;
  }
  .card {
    display: inline-block;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 5px;
    margin-right: 0;
    cursor: pointer;
    -webkit-transition: border-color 0.3s ease;
    -o-transition: border-color 0.3s ease;
    transition: border-color 0.3s ease;
    -webkit-filter: drop-shadow(0px 14px 30px rgba(0, 0, 0, 0.07));
    filter: drop-shadow(0px 14px 30px rgba(0, 0, 0, 0.07));
    width: 80px;
    height: 80px;
  }
  .slider-products .swiper-container {
    width: 100%;
  }
  .slider-products .swiper-wrapper {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100px;
    padding: 10px;
  }

  .brendly-platform-section .swiper-container {
    padding-right: 22px;
    position: relative;
  }

  .cta-left-title {
    position: relative;
    width: auto;
  }

  .cta-left-title::after {
    content: "";
    position: absolute;
    right: -50px;
    top: calc(50% + 10px);
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background-image: url("../img/icon/swipe.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 3;
    animation: iconSwipe 2s ease-in-out 0s infinite;
  }

  @keyframes iconSwipe {
    0% {
      right: -50px;
    }
    50% {
      right: -60px;
    }
    100% {
      right: -50px;
    }
  }

  .brendly-platform-section .swiper-wrapper {
    padding-left: 24px;
  }

  .brendly-mob-platform .swiper-container {
    width: 100%;
    height: 100%;
  }

  .brendly-mob-platform .swiper-slide img {
    width: 100%;
    height: auto;
  }
  .cta-right-btn-box a.btn-theme,
  p.cta-left-subtitle {
    display: none;
  }
  h2.cta-left-title {
    text-align: center;
  }
  .container.cta-section-content .col-md-6 {
    width: 100%;
  }
  section.brendly-mob-platform {
    padding: 40px 0 90px 0px;
  }

  .brendly-mob-platform .swiper-container {
    padding-left: 20px;
  }
  section.calculator-section {
    padding: 60px 0px;
  }
  section.popular-products {
    padding: 0;
  }
  section.brendly-mob-platform img {
    max-height: auto;
  }
  .popular-products-content {
    background: #ffffff;
  }
  h2.popular-products-title {
    text-align: center;
  }
  p.popular-products-subtitle {
    text-align: center;
  }
  section.faq-section {
    padding: 0;
    margin: -30px 0 0 0;
  }

  .faq-right-content {
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    padding: 10px;
  }
  a.faq-right-btn,
  a.faq-left-btn {
    padding: 10px 15px;
    font-size: 14px;
    line-height: 18px;
  }
  .faq-right-btns {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  p.product-price {
    display: none;
  }
  /* section.calculator-section {
    padding: 0;
  } */
  .calculator-content {
    border-radius: 30px;
    padding: 60px 0;
  }
  .product-number-range,
  p.input-range-num,
  input#range1,
  input#myRange2,
  .product-price-range,
  .result-price,
  p.result-price-number,
  .calc-right-content > div,
  p.note {
    width: 100%;
  }
  .users-img img {
    width: 80%;
  }
  section.how-it-work.container-fluid {
    padding: 100px 20px;
  }

  .quote-slider.swiper-container-initialized {
    height: 100%;
  }
  .users-img {
    display: none;
  }
  .cta-left-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  h2.cta-left-title {
    width: 80%;
    width: auto;
  }

  .cta-right-content--mobile a.btn-theme {
    display: block;
    font-size: 14px;
    padding: 18px 30px;
    width: auto;
    height: auto;
  }

  .cta-right-content--mobile {
    text-align: center;
    margin-top: 25px;
  }

  .cta-right-content--mobile .cta-right-btn-box {
    justify-content: center;
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media only screen and (max-width: 991px) {
  section.calculator-section {
    padding-top: 0px;
  }

  .fourth-benefit h4.single-benefit-title {
    text-align: left;
    margin-left: 0;
  }

  img.fourth-img-3-box {
    right: 0;
  }

  .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets {
    top: 35%;
  }
  .single-benefit {
    margin-bottom: 20px;
  }

  .first-benefit,
  .fourth-benefit {
    min-height: auto;
    height: auto;
  }
  .benefits-col.benefits-col-first .single-benefit-img {
    margin-bottom: 0;
    text-align: right;
  }
  h4.single-benefit-title,
  .benefits-col.benefits-mid .single-benefit-text,
  p.single-benefit-text.fourth-box-text,
  h4.single-benefit-title.fourth-box-title {
    max-width: 500px;
  }
  .fourth-benefit .single-benefit-content {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
  .single-benefit.fourth-benefit .single-benefit-content > div {
    text-align: left;
    padding-left: 0;
    width: 100%;
  }
  h4.single-benefit-title.fourth-box-title,
  p.single-benefit-text.fourth-box-text {
    text-align: left;
  }
  /* img.first-img-img-box,
  .first-img-2-box,
  .first-img-3-box,
  .first-img-4-box,
  .first-img-5-box {
    max-width: 300px;
  } */
  img.second-img-2-box {
    right: 10%;
    width: 210px;
  }
  img.third-img-3-box {
    left: 35%;
  }
  img.fourth-img-3-box {
    right: 5%;
  }
  img.second-img-3-box {
    width: 200px;
  }
  img.second-img-4-box {
    top: 5px;
    left: 0;
    width: 250px;
  }
  img.third-img-4-box {
    bottom: 40px;
    left: unset;
    right: 30%;
  }
  a.first-img-box-btn {
    left: 30%;
  }
  img.second-img-5-box {
    left: 35%;
  }
  img.second-img-3-box {
    top: 15px;
    right: 22%;
  }
  .col-md-6.how-it-work-img-box,
  .col-md-6.how-it-work-text-box {
    margin-top: 150px;
  }
  .slider-products .swiper-wrapper {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
  }
  a.calc-left-btn {
    padding: 18px 12px;
    font-size: 14px;
  }
  .product-number-range {
    padding-top: 0;
  }
  .col-lg-3.col-md-6.col-sm-6.col-6 {
    margin-bottom: 20px;
  }
  .faq-right-btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 15px;
  }
  a.faq-left-btn {
    margin-bottom: 10px;
  }

  .benefits-col.benefits-mid .single-benefit {
    min-height: 200px;
    height: auto;
  }

  .benefits-col.benefits-mid .single-benefit:not(:first-child) {
    margin-top: 0;
  }
  .fourth-benefit .single-benefit-img {
    padding-top: 40px;
  }
  a.calc-left-btn:before {
    display: none;
  }
  .popular-products-content .container {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  h3.faq-right-title {
    font-size: 18px;
    line-height: 20px;
  }
  .faq-right-content p,
  .faq-right-content p a {
    font-size: 14px;
    line-height: 20px;
  }
  h2.popular-products-title {
    max-width: 80%;
  }
  .faq-section-content {
    padding-left: 0;
    padding-right: 0;
  }
  .calc-left-content {
    padding-left: 0;
  }

  a.faq-right-btn,
  a.faq-left-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  img.img-text-arrow-left {
    margin-top: 15px;
  }

  h2.benefits-title,
  h2.how-it-work-title,
  h2.calc-left-title,
  h2.cta-left-title,
  h2.popular-products-title,
  h2.faq-title,
  h3.h-i-w-t-b-title {
    font-size: 30px;
    line-height: 35px;
  }
  img.third-img-2-box,
  img.second-img-4-box {
    left: 5%;
  }
  h2.benefits-title,
  h2.how-it-work-title,
  h2.calc-left-title,
  h2.cta-left-title,
  h2.popular-products-title,
  h2.faq-title,
  h3.h-i-w-t-b-title {
    font-size: 25px;
    line-height: 30px;
  }

  h2.cta-left-title {
    padding: 0 0 0 0;
  }

  .cta-left-title::after {
    top: 50%;
    width: 26px;
    height: 26px;
  }

  p.product-info {
    font-size: 14px;
    margin: 15px 0px;
  }

  .brendly-platform-section .thumbContainer img,
  .brendly-platform-section .thumbContainer video {
    max-width: calc(380px + 36vh);
    max-height: calc(255px + 36vh);
  }
}
@media only screen and (max-width: 767px) {
  h4.single-benefit-title,
  .single-benefit-text,
  .fourth-benefit h4.single-benefit-title {
    padding: 0px !important;
  }

  .calc-left-content {
    margin-bottom: 46px;
  }
  .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets {
    top: 55%;
  }
  img.img-text-arrow-left,
  img.img-text-arrow {
    display: none;
  }

  a.calc-left-btn {
    font-size: 12px;
  }
  h2.how-it-work-title-mob {
    display: block;
    font-weight: 600;
    font-size: 28px;
    line-height: 36px;
    text-align: center;
    letter-spacing: -0.365163px;
    color: #f3364c;
  }
  .how-it-work-title {
    display: none;
  }
  .calc-btn-box,
  .users-img {
    display: none;
  }

  .calc-btn-box.calc-btn-box-mob {
    display: block;
  }
  /* section.calculator-section {
    padding: 0;
  } */

  section.calculator-section.section-mx {
    margin-left: 0;
    margin-right: 0;
  }

  h2.benefits-title {
    padding-top: 30px;
  }

  .first-benefit .single-benefit-content {
    padding-top: 17px;
  }
  .single-benefit-img {
    display: none;
  }
  .first-benefit,
  .benefits-col.benefits-mid .single-benefit {
    min-height: 150px;
  }

  .benefits-col.benefits-mid .single-benefit {
    padding-top: 0;
  }
  .single-benefit-icon {
    margin-right: 24px;
    margin-bottom: 0;
    margin-top: 6px;
  }
  .single-benefit-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  h4.single-benefit-title {
    font-weight: 500;
    font-size: 22px;
    line-height: 1.36;
    letter-spacing: -1.6px;
    margin: 0;
    padding: 0;
  }
  a.btn-theme.single-benefit-btn {
    padding: 10px 20px;
    margin: 0;
  }
  /* .single-benefit-content {
    height: 190px;
    padding: 0;
  } */

  .single-benefit-content {
    padding-left: 35px;
    padding-right: 35px;
    padding-top: 17px;
  }
  .single-benefit-content div {
    /* display: -webkit-box;
    display: -ms-flexbox;
    display: flex; */
    /* -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    height: 100%;
    padding: 10px; */
  }
  .benefits-col.benefits-mid .single-benefit-text,
  p.single-benefit-text.fourth-box-text {
    padding-left: 0;
    margin: 0;
    font-size: 12px;
    line-height: 1.84;
    text-align: left;
    padding-bottom: 20px;
  }
  .benefits-col.benefits-mid .single-benefit-title {
    margin-bottom: 12px;
  }
  .single-benefit.fourth-benefit .single-benefit-content > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .benefits-col.benefits-mid .single-benefit:not(:first-child) {
    margin-top: 0;
  }
  .single-benefit {
    margin-bottom: 20px;
  }
  .fourth-benefit h4.single-benefit-title {
    padding: 0;
    text-align: left;
    margin-bottom: 0;
  }
  .fourth-benefit .single-benefit-content {
    padding-top: 17px;
  }
  .fourth-benefit .single-benefit-img {
    padding-top: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 22px;
    padding-right: 22px;
  }

  .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets {
    /* top: 60%; */
    left: 0;
  }

  p.how-it-work-subtitle {
    font-size: 14px;
  }
  .col-md-6.how-it-work-text-box {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .col-md-6.how-it-work-img-box,
  .col-md-6.how-it-work-text-box {
    margin-top: 0;
    position: relative;
  }
  section.how-it-work.container-fluid .row {
    padding-top: 50px;
  }
  section.how-it-work.container-fluid .title-content {
    margin-bottom: 30px;
  }
  .col-md-6.how-it-work-img-box {
    padding-right: 0;
  }
  img.second-img-img-box {
    right: auto;
    width: 300px;
  }
  h3.h-i-w-t-b-title {
    font-size: 26px;
    line-height: 42px;
    text-align: center;
    margin: 10px;
  }
  /* section.how-it-work.container-fluid img {
    max-width: 300px;
  } */
  .how-it-work-img-content {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  img.first-img-img-box,
  .first-img-2-box,
  .first-img-3-box,
  .first-img-4-box,
  .first-img-5-box {
    max-width: 250px;
  }
  a.first-img-box-btn {
    font-size: 16px;
    line-height: 18px;
    padding: 10px 15px;
    left: 30%;
    bottom: 70px;
  }
  .h-i-w-t-b-text {
    text-align: center;
  }
  .col-md-6.how-it-work-img-box.second-img-box {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    left: unset;
  }
  section.how-it-work img.second-img-2-box {
    max-width: 100px;
  }
  .how-it-work-img-second-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  section.how-it-work img.second-img-2-box {
    max-width: 190px;
    left: unset;
    right: unset;
    top: 10px;
  }
  img.fourth-img-2-box {
    width: 90px;
    left: unset;
    right: 25%;
  }
  img.third-img-2-box {
    width: 70px;
    left: 33%;
  }
  img.second-img-3-box {
    width: 170px;
    right: unset;
    top: 7px;
  }
  img.third-img-3-box {
    left: 35%;
    width: 70px;
  }
  img.fourth-img-3-box {
    bottom: 0px;
    right: 30%;
    width: 130px;
  }
  img.first-img-4-box {
    left: unset;
  }
  img.second-img-4-box {
    top: 5px;
    left: 32%;
    width: 200px;
  }
  img.third-img-4-box {
    bottom: 20px;
    right: 28%;
    width: 140px;
    left: unset;
  }
  img.second-img-5-box {
    left: 31%;
    top: -10px;
    width: 143px;
  }
  img.third-img-5-box {
    bottom: 20px;
    right: 30%;
    width: 240px;
  }
  section.benefits.container-fluid {
    padding-top: 0;
  }

  /* section.calculator-section {
    padding: 0;
  } */
  .calculator-content {
    border-radius: 0px;
    padding: 50px 8px;
  }
  h2.calc-left-title {
    font-size: 28px;
    line-height: 34px;
    text-align: center;
    margin-bottom: 40px;
  }
  .fourth-benefit .single-benefit-content {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
  .calc-right-content > div {
    width: 95%;
  }
  p.calc-left-text {
    text-align: center;
  }
  .calc-btn-box.calc-btn-box-mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 54px;
  }
  .calc-btn-box.calc-btn-box-mob a {
    padding-left: 20px;
  }
  section.how-it-work.container-fluid {
    padding: 60px 20px;
  }
  h2.popular-products-title {
    font-size: 30px;
    line-height: 34px;
  }
  h5.product-name,
  p.product-dscp {
    font-size: 12px;
    line-height: 18px;
    color: #111827;
  }
  p.product-price {
    display: none;
  }
  .popular-products-content .col-lg-3.col-md-6.col-sm-6 {
    padding-bottom: 20px;
  }
  section.popular-products .col-lg-3.col-md-.col-sm-6 {
    margin-bottom: 20px;
  }
  p.faq-subtitle {
    display: none;
  }
  h2.faq-title {
    font-weight: 600;
    font-size: 28px;
    line-height: 34px;
    letter-spacing: -0.5px;
    color: #ffffff;
    margin: 0;
    text-align: center;
  }
  .container.cta-section-content {
    padding: 0;
    max-width: 90%;
  }
  section.brendly-mob-platform {
    padding-top: 0;
  }
  .faq-right-content {
    margin-top: 20px;
  }
  .faq-right-btns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding-top: 40px;
  }
  a.faq-right-btn,
  a.faq-left-btn {
    padding: 10px 30px;
    font-size: 14px;
    line-height: 11px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 47px;
  }
  .slider-products .swiper-wrapper {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .card-body p {
    font-size: 12px;
    line-height: 12px;
    padding-top: 2px;
  }
  .single-benefit.fourth-benefit .single-benefit-content > div {
    padding-left: 0;
  }

  img.second-img-img-box.show {
    right: unset;
  }
  .h-i-w-t-b-text {
    max-width: 700px;
  }
  section.calculator-section {
    padding-bottom: 55px;
  }
  h2.cta-left-title {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  section.benefits.container-fluid {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 575px) {
  section.benefits.container-fluid {
    padding-left: 8px;
    padding-right: 8px;
  }
  h2.popular-products-title {
    font-size: 26px;
    line-height: 34px;
  }

  .brendly-platform-section .swiper-container {
    padding-right: 20px;
  }

  .brendly-platform-section .swiper-slide {
    margin-right: 20px;
  }

  .brendly-platform-section .swiper-wrapper {
    padding-left: 20px;
  }

  .first-benefit,
  .benefits-col.benefits-mid .single-benefit {
    min-height: 168px;
  }

  .single-benefit-content {
    padding-bottom: 17px;
  }
  p.popular-products-subtitle {
    font-size: 14px;
    line-height: 22px;
  }
  h2.how-it-work-title-mob {
    display: block;
    font-weight: 600;
    font-size: 26px;
    line-height: 34px;
    text-align: center;
    letter-spacing: -0.365163px;
    color: #f3364c;
  }
  h2.cta-left-title {
    font-size: 26px;
    line-height: 34px;
    margin: 0;
  }
  h4.single-benefit-title {
    font-weight: 500;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: -1.6px;
    margin: 0;
    padding: 0;
  }
  .benefits-col.benefits-mid .single-benefit-text,
  p.single-benefit-text.fourth-box-text {
    padding-left: 0;
    margin: 0;
    font-size: 12px;
    line-height: 22px;
    text-align: left;
  }

  h3.h-i-w-t-b-title {
    font-size: 24px;
    line-height: 42px;
    text-align: center;
    margin: 10px;
  }
  img.first-img-img-box,
  .first-img-2-box,
  .first-img-3-box,
  .first-img-4-box,
  .first-img-5-box {
    max-width: 140px !important;
  }
  section.how-it-work img.second-img-2-box {
    max-width: 100px;
    left: unset;
    right: unset;
    top: 10px;
  }
  img.fourth-img-2-box {
    width: 50px;
    left: unset;
    right: 33%;
  }
  p.how-it-work-subtitle {
    font-size: 12px;
  }
  img.third-img-2-box {
    width: 40px;
    left: 39%;
  }
  img.second-img-3-box {
    width: 87px;
    right: unset;
    top: 3px;
  }
  img.third-img-3-box {
    left: 40%;
    width: 40px;
  }
  img.fourth-img-3-box {
    bottom: 5px;
    right: 30%;
    width: 90px;
  }
  img.first-img-4-box {
    left: unset;
  }
  img.second-img-4-box {
    top: 5px;
    left: 35%;
    width: 108px;
  }
  img.third-img-4-box {
    bottom: 15px;
    right: 33%;
    width: 90px;
    left: unset;
  }
  img.second-img-5-box {
    left: 37%;
    top: -10px;
    width: 93px;
  }
  img.third-img-5-box {
    bottom: 10px;
    right: 33%;
    width: 140px;
  }
  a.first-img-box-btn {
    font-size: 12px;
    line-height: 18px;
    padding: 5px 10px;
    left: 30%;
    bottom: 45px;
  }
  h2.calc-left-title {
    font-size: 26px;
    line-height: 34px;
    text-align: center;
  }
  img.second-img-img-box {
    right: auto;
    width: 160px;
  }
  .slider-products .swiper-wrapper {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0px;
  }
  .popular-products-btn a {
    padding: 18px 60px;
    gap: 10px;
    display: inline-block;
    background: #ffffff;
    border: 1px solid #ef394e;
    border-radius: 36px;
    color: #ef394e;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: -0.22px;
  }
  .faq-section-content {
    padding-top: 35px;
    padding-bottom: 20px;
  }
  h2.faq-title {
    font-size: 26px;
    line-height: 34px;
    text-align: center;
  }
  span.accordion-title {
    font-size: 14px;
    line-height: 16px;
    letter-spacing: -0.3px;
  }
  .accordion .accordion-content p {
    font-size: 14px;
    margin-top: 0;
  }
  .accordion-item button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
  }
  .faq-right-content {
    margin-top: 35px;
  }
  h3.faq-right-title {
    font-size: 18px;
    line-height: 27px;
  }
  p.faq-right-subtitle,
  p.faq-right-subtitle a {
    font-size: 12px;
    line-height: 21px;
    color: #ffffff;
    text-decoration: none;
  }
  a.faq-right-btn,
  a.faq-left-btn {
    padding: 18px 25px;
    font-size: 12px;
    line-height: 19px;
  }
  .faq-right-content {
    padding: 20px 10px;
  }

  .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets {
    top: 60%;
  }

  .card {
    padding: 5px;
  }
  .card-body img {
    margin-bottom: 3px;
    margin-top: 4px;
  }
  a.calc-left-btn:before {
    display: none;
  }
  .single-benefit-img img {
    max-width: 100%;
  }
  .how-it-work-img-second-content img,
  .col-md-6.how-it-work-img-box img {
    border-radius: 5px;
  }
  section.calculator-section {
    padding: 0px 0px 45px 0;
  }

  .popular-products.section-mx {
    margin-left: 0;
    margin-right: 0;
  }

  .popular-products-content {
    padding: 35px 8px 50px 8px;
    border-radius: 0;
  }

  section.faq-section {
    margin: 55px 0 0 0;
  }

  .faq-titles-box,
  .faq-tabs {
    padding-left: 4px;
    padding-right: 4px;
  }

  .faq-right-content {
    margin-left: 4px;
    margin-right: 4px;
    padding: 30px 20px 28px 20px;
  }

  .faq-right-btns {
    justify-content: flex-start;
    gap: 15px;
  }

  .cta-left-title::after {
    right: -35px;
  }

  @keyframes iconSwipe {
    0% {
      right: -32px;
    }
    50% {
      right: -37px;
    }
    100% {
      right: -32px;
    }
  }
}
@media only screen and (max-width: 460px) {
  .slider-products .swiper-wrapper {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
  }
}
@media only screen and (max-width: 420px) {
  img.third-img-5-box {
    right: 25%;
  }
  img.second-img-5-box {
    left: 32%;
  }
  img.second-img-4-box {
    left: 32%;
  }
  img.third-img-4-box {
    right: 27%;
  }
  img.third-img-3-box {
    left: 37%;
  }
  img.third-img-2-box {
    left: 35%;
  }
  img.fourth-img-2-box {
    right: 29%;
  }
}
@media only screen and (max-width: 390px) {
  .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets {
    top: 65%;
  }
  h2.popular-products-title {
    max-width: 90%;
  }
  .fourth-benefit .single-benefit-img {
    padding-top: 10px;
  }
}
@media only screen and (max-width: 370px) {
  a.calc-left-btn:before {
    display: none;
  }
  .calc-btn-box.calc-btn-box-mob a {
    padding-left: 20px;
  }

  a.faq-right-btn,
  a.faq-left-btn {
    padding: 18px 15px;
    height: 42px;
    font-size: 11px;
    line-height: 19px;
  }

  h2.cta-left-title {
    font-size: 24px;
  }
}
/* Denic 12.05.23 end */

/*Product*/

.product-item {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: calc(100% - 30px);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.product-item > a {
  height: 330px;
  display: block;
  -webkit-box-flex: 0;
  -ms-flex: 0;
  flex: 0;
}

.product-item__thumb {
  background-color: #fff7f8;
  border-radius: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 30px 20px;
  min-height: 330px;
  position: relative;
  height: 100%;
}

.product-item__label {
  position: absolute;
  left: 20px;
  top: 16px;
}

.product-item__thumb img {
  max-width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.product-item__label img {
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
  -webkit-filter: drop-shadow(
    1.61399px 5.64895px 8.87693px rgba(0, 0, 0, 0.04)
  );
  filter: drop-shadow(1.61399px 5.64895px 8.87693px rgba(0, 0, 0, 0.04));
  height: 20px;
}

.product-item__info {
  padding: 15px 10px 15px 10px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.product-item__color {
  margin: 0 0 18px 0;
  padding-left: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.product-item__color li {
  margin: 5px;
  width: 18px;
  height: 18px;
  border: 1px solid;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-color: #cbd5e1;
}

.product-item__color li span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.1);
}

.product-item__color li:first-of-type {
  margin-left: 0;
}

.product-item__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.product-item__text__price {
  width: 100px;
  border: 2px solid #ef394e;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1;
  color: #64748b;
  font-weight: 500;
  padding: 6px 5px;
  text-align: center;
}

.product-item__text__price span {
  color: #ef394e;
}

.product-item__text__info {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-right: 5px;
}

.product-item__text__info p {
  margin: 4px 0 0 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.43;
  color: #64748b;
}

.empty-response {
  color: #64748b;
  font-size: 16px;
  line-height: 1.2;
}

.product-item__text__info h4 {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
}

.product-item__text__info h4 a {
  text-decoration: none;
  color: #111827;
}

@media only screen and (max-width: 1536px) {
  .product-item__color li {
    margin: 4px;
  }

  .product-item__text__price {
    font-size: 12px;
    width: 80px;
    padding: 4px 3px;
  }

  .product-item__text__info h4 {
    font-size: 15px;
  }

  .product-item__text__info p {
    font-size: 12px;
  }

  .products__load-more a {
    padding-top: 19px;
    padding-bottom: 19px;
  }
}

@media only screen and (max-width: 1399px) {
  .product-item__color li {
    width: 16px;
    height: 16px;
  }

  .product-item__color li span {
    width: 12px;
    height: 12px;
  }

  .product-item__thumb {
    min-height: 290px;
  }

  .product-item > a {
    height: 290px;
  }

  .product-item__info {
    padding-top: 10px;
    padding-bottom: 35px;
  }

  .product-item__color {
    margin-bottom: 12px;
  }

  .product-item__color li {
    margin: 4px 3px;
  }

  .product-item__text__price {
    font-size: 11px;
    padding: 4px 3px;
  }

  .product-item__text__info h4 {
    font-size: 14px;
  }

  .product-item__text__info p {
    font-size: 11px;
  }

  .products-cta__content p {
    max-width: 400px;
  }
}

@media only screen and (max-width: 1199px) {
  .product-item__thumb {
    min-height: auto;
  }
  .product-item > a {
    height: 100%;
  }
}

@media only screen and (max-width: 991px) {
  .product-item__color li {
    margin: 3px;
  }
}

@media only screen and (max-width: 767px) {
  .product-item__thumb {
    padding: 40px 10px 35px 10px;
  }

  .product-item > a {
    -webkit-box-flex: 0;
    -ms-flex: 0;
    flex: 0;
  }

  img.first-img-img-box.show,
  img.first-img-3-box.show,
  img.first-img-5-box.show {
    right: 0px;
  }
}

@media only screen and (max-width: 575px) {
  .product-item__label {
    left: 18px;
  }

  .product-item__label img {
    height: 18px;
  }

  .product-item__thumb {
    border-radius: 12px;
    /* min-height: 320px; */
  }

  .product-item__info {
    padding-bottom: 15px;
  }
}

a.first-img-box-btn:hover,
.popular-products-btn a:hover,
a.faq-left-btn:hover {
  background-color: #fbdde0;
}
.btn-theme:hover,
a.calc-left-btn:hover,
.cta-right-btn-box a.btn-theme:hover,
a.faq-right-btn:hover {
  background-color: rgba(239, 57, 78, 0.85);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
a.faq-right-btn:hover {
  background-color: #fff;
  border-color: #ef394e;
  color: #ef394e;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.product-price-range {
  padding-top: 20px;
}

/*Testimonials Recodeing*/

.testimonials-wrap {
  margin-top: 30px;
}

.testimonials-wrap {
  background-color: #ef394e;
  border-radius: 30px;
  padding: 41px 103px;
  background-size: cover;
  background-position: left top;
  background-image: url(../img/cta-background.png);
}

.testimonials-wrap__slider {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.testimonials-wrap__image-slider {
  width: 40%;
}

.testimonials-wrap__image-slider img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 40px;
}

.testimonials-wrap__text-slider {
  width: 60%;
  padding-left: 138px;
  position: relative;
}

.testimonials-wrap__image-slider .slick-list {
  padding-left: 42px !important;
  padding-right: 42px !important;
}

.testimonials-wrap__image-slider .slick-track {
  max-width: 100% !important;
  transform: translate3d(0, 0, 0) !important;
  perspective: 100px;
}

.testimonials-wrap__image-slider .slick-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  opacity: 0;
  width: 100% !important;
  transform: translate3d(0, 0, 0);
  transition: transform 0.6s, opacity 0.4s;
}

.testimonials-wrap__image-slider .slick-current {
  opacity: 1;
  position: relative;
  display: block;
  z-index: 2;
}

.testimonials-wrap__image-slider .slick-snext,
.testimonials-wrap__image-slider .slick-sprev {
  display: block;
  opacity: 0.9;
}

.testimonials-wrap__image-slider .slick-snext {
  transform: translate3d(-142px, 0, -40px);
  z-index: 1;
  perspective: 1000px;
}

.testimonials-wrap__image-slider .slick-sprev {
  transform: translate3d(142px, 0, -40px);
}

.testimonials-wrap__image-slider .slick-disabled {
  opacity: 0;
}

.testimonials-wrap__text__desc {
  color: #fff;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.44;
  margin-bottom: 123px;
}

.testimonials-wrap__text__desc p:last-of-type {
  margin-bottom: 0;
}

.testimonials-wrap__text__creator {
  display: flex;
  align-items: flex-start;
  padding-top: 24px;
}

.testimonials-wrap__text__icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  margin-right: 17px;
  margin-top: 2px;
}

.testimonials-wrap__text__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.testimonials-wrap__text__info h6 {
  margin: 0 0 3px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.78;
  color: #fff;
}

.testimonials-wrap__text__info p {
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.78;
  color: #fff;
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.testimonials-wrap__text {
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
}

.testimonials-wrap__text-slider .slick-track {
  display: flex !important;
}

.testimonials-wrap__text.slick-slide {
  height: inherit !important;
}

.testimonials-wrap__text-slider-dots {
  position: absolute;
  bottom: 72px;
}

.testimonials-wrap__text-slider-dots__list {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  color: #fff;
  list-style: none;
  font-weight: 500;
  font-size: 11px;
  line-height: 20px;
  display: flex;
  align-items: center;
  letter-spacing: -0.2px;
}

.testimonials-wrap__text-slider-dots__list li {
  position: relative;
  padding-top: 7px;
  width: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonials-wrap__text-slider-dots__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  border-top: 3px solid #ffffff;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.testimonials-wrap__text-slider-dots__list li.slick-active {
  width: 214px;
}

.testimonials-wrap__text-slider-dots__list li.slick-active::before {
  opacity: 1;
}

.testimonials-wrap__text-slider-dots__list li:hover::before {
  opacity: 1;
}

.testimonials-wrap__text-slider-dots__list li:not(:last-of-type) {
  margin-right: 27px;
}

/*Testimonials Slider - Responsive*/

@media only screen and (max-width: 1700px) {
  .testimonials-wrap__text-slider {
    padding-left: 100px;
  }

  .testimonials-wrap__text__desc {
    font-size: 26px;
  }

  .testimonials-wrap__image-slider .slick-snext {
    transform: translate3d(-130px, 0, -40px);
  }

  .testimonials-wrap__image-slider .slick-sprev {
    transform: translate3d(130px, 0, -40px);
  }
}

@media only screen and (max-width: 1536px) {
  .testimonials-wrap {
    padding: 40px 80px;
  }

  .testimonials-wrap__text-slider {
    padding-left: 80px;
  }

  .testimonials-wrap__text__desc {
    font-size: 24px;
  }
}

@media only screen and (max-width: 1440px) {
  .testimonials-wrap {
    padding: 40px 60px;
  }
  .testimonials-wrap__text__desc {
    font-size: 22px;
  }

  .testimonials-wrap__text-slider {
    padding-left: 60px;
  }
}

@media only screen and (max-width: 1399px) {
  .testimonials-wrap__image-slider .slick-snext {
    transform: translate3d(-110px, 0, -40px);
  }

  .testimonials-wrap__image-slider .slick-sprev {
    transform: translate3d(110px, 0, -40px);
  }
}

@media only screen and (max-width: 1366px) {
  .testimonials-wrap__text__desc {
    font-size: 20px;
    line-height: 1.55;
  }

  .testimonials-wrap__text-slider-dots {
    bottom: 62px;
  }
}

@media only screen and (max-width: 1280px) {
  .testimonials-wrap {
    padding: 40px 40px;
  }
  .testimonials-wrap__image-slider .slick-snext {
    transform: translate3d(-115px, 0, -40px);
  }

  .testimonials-wrap__image-slider .slick-sprev {
    transform: translate3d(115px, 0, -40px);
  }

  .testimonials-wrap__text-slider {
    padding-left: 40px;
  }

  .testimonials-wrap__text__desc {
    margin-bottom: 110px;
  }
}

@media only screen and (max-width: 1199px) {
  .testimonials-wrap__image-slider .slick-snext {
    transform: translate3d(-100px, 0, -40px);
  }

  .testimonials-wrap__image-slider .slick-sprev {
    transform: translate3d(100px, 0, -40px);
  }
}

@media only screen and (max-width: 991px) {
  .testimonials-wrap {
    padding: 60px 40px;
  }
  .testimonials-wrap__image-slider,
  .testimonials-wrap__text-slider {
    width: 100%;
  }

  .testimonials-wrap__text-slider {
    margin-top: 60px;
    padding-left: 0;
  }

  .testimonials-wrap__image-slider .slick-snext {
    transform: translate3d(-175px, 0, -40px);
  }

  .testimonials-wrap__image-slider .slick-sprev {
    transform: translate3d(175px, 0, -40px);
  }

  .testimonials-wrap__text__desc {
    margin-bottom: 94px;
  }
  .testimonials-wrap__image-slider img {
    border-radius: 30px;
  }

  .testimonials-wrap__text__creator {
    padding-top: 14px;
  }

  .testimonials-wrap__text__desc {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .testimonials-section.section-mx {
    margin-left: 0;
    margin-right: 0;
  }

  .testimonials-wrap {
    border-radius: 0;
    padding: 0px 20px 40px 20px;
  }

  .testimonials-wrap__image-slider .slick-snext {
    transform: translate3d(0, 0, 0);
  }

  .testimonials-wrap__image-slider .slick-sprev {
    transform: translate3d(0, 0, 0);
  }
  .testimonials-wrap__image-slider img {
    border-radius: 16px;
  }

  .testimonials-wrap__image-slider .slick-list {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .testimonials-slider-image {
    max-width: 300px;
  }

  .testimonials-wrap__image-slider {
    margin-top: -28px;
  }

  .testimonials-wrap__text-slider {
    margin-top: 20px;
  }

  .testimonials-wrap__text__desc {
    font-size: 16px;
  }
}

@media only screen and (max-width: 575px) {
  .testimonials-slider-image {
    max-width: 190px;
  }

  .testimonials-wrap__text-slider-dots__list li.slick-active {
    max-width: 190px;
  }

  .testimonials-wrap__text__info h6,
  .testimonials-wrap__text__info p {
    font-size: 14px;
  }
}

@media only screen and (max-width: 360px) {
  .testimonials-wrap__text-slider-dots__list li.slick-active {
    max-width: 160px;
  }
}
