@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

a:hover,
a {
  text-decoration: none;
}

:focus {
  outline: 0;
}

ul {
  list-style-type: none;
}

* {
  margin: 0;
  padding: 0;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  width: 100%;
  height: 100%;
  -webkit-overflow-scrolling: touch;
  color: rgb(26, 26, 26);
  -webkit-text-size-adjust: 100%;
  background: #fff;
}

.container {
  width: 100%;
  max-width: 950px;
  padding: 0 30px;
  margin: 0 auto;
}
@media (max-width: 1280px) {
  .container {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .container {
    padding: 0 15px;
  }
}
.container--md {
  max-width: 1176px;
}
.container--fuild {
  max-width: 1440px;
  padding: 0 48px;
}
@media (max-width: 1280px) {
  .container--fuild {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .container--fuild {
    padding: 0 15px;
  }
}

.burger {
  display: none;
  position: relative;
  width: 26px;
  height: 23px;
  cursor: pointer;
  z-index: 111;
  margin-left: 10px;
}
.burger.open:before {
  background: #000;
  transform: rotate(-45deg);
  top: 8px;
  height: 2px;
}
.burger.open:after {
  background: #000;
  top: 8px;
  transform: rotate(45deg);
  height: 2px;
}
.burger.open span:before {
  display: none;
}
.burger:before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 26px;
  height: 2px;
  background: #000;
  transition: 0.5s;
}
.burger:after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 26px;
  height: 2px;
  background: #000;
  transition: 0.5s;
}
.burger span {
  position: relative;
  display: block;
  width: 26px;
  height: 23px;
}
.burger span:before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 26px;
  height: 2px;
  background: #000;
}
@media (max-width: 767px) {
  .burger {
    display: block;
  }
}

.wrapper {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  min-height: 100vh;
}

.header {
  background: rgb(252, 252, 252);
  position: relative;
  z-index: 100;
}
@media (max-width: 767px) {
  .header {
    background: transparent;
  }
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
@media (max-width: 767px) {
  .header-content {
    height: 76px;
  }
}
.header-content__left {
  width: 175px;
}
@media (max-width: 992px) {
  .header-content__left {
    width: auto;
  }
}
@media (max-width: 767px) {
  .header-content__left {
    position: relative;
    z-index: 13;
  }
}
@media (max-width: 767px) {
  .header-content__nav {
    width: 100vw;
    height: 100vh;
    background: #fff;
    transform: translateX(100vw);
    padding: 108px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: 0.5s;
    position: fixed;
    top: 0;
    right: 0;
  }
}
.header-content__nav.open {
  transform: translateX(0px);
}
.header-content__nav .btn {
  display: none;
}
@media (max-width: 767px) {
  .header-content__nav .btn {
    display: flex;
    width: 176px;
  }
}
.header-content__nav ul {
  display: flex;
}
@media (max-width: 767px) {
  .header-content__nav ul {
    flex-direction: column;
    align-items: center;
  }
}
.header-content__nav ul li {
  margin: 0 24px;
}
@media (max-width: 992px) {
  .header-content__nav ul li {
    margin: 0 6px;
  }
}
@media (max-width: 767px) {
  .header-content__nav ul li {
    margin: 0 0 32px 0;
  }
}
.header-content__nav ul li a {
  color: rgb(22, 22, 22);
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
  letter-spacing: 0%;
  border-bottom: 1px solid transparent;
  transition: 0.5s;
}
@media (max-width: 992px) {
  .header-content__nav ul li a {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .header-content__nav ul li a {
    font-size: 15px;
  }
}
.header-content__nav ul li a:hover {
  border-color: rgba(22, 22, 22, 0.7);
}
.header-content__right {
  width: 175px;
}
@media (max-width: 992px) {
  .header-content__right {
    margin-left: 12px;
  }
}
@media (max-width: 767px) {
  .header-content__right {
    display: none;
  }
}

.logo img {
  display: block;
  height: 52px;
}
@media (max-width: 992px) {
  .logo img {
    height: 40px;
  }
}

.btn {
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 57px;
  display: flex;
  background: rgb(194, 10, 62);
  color: rgb(255, 255, 255);
  font-size: 15px;
  font-weight: 600;
  line-height: 23px;
  letter-spacing: 0%;
  text-align: center;
  transition: 0.5s;
  border: 0;
  cursor: pointer;
}
.btn:hover {
  background: rgb(247, 97, 140);
}

.main-section {
  padding: 48px 0;
}
@media (max-width: 767px) {
  .main-section {
    padding: 20px 0;
  }
}

h1, .h1 {
  font-size: 48px;
  font-weight: 600;
  line-height: 124%;
  letter-spacing: -3%;
  text-align: left;
  margin-bottom: 24px;
}
@media (max-width: 1280px) {
  h1, .h1 {
    font-size: 36px;
  }
}
@media (max-width: 992px) {
  h1, .h1 {
    font-size: 28px;
  }
}
h1 span, .h1 span {
  color: rgb(194, 10, 62);
}

h2, .h2 {
  color: rgb(26, 26, 26);
  font-size: 36px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: -2%;
  text-align: center;
  margin-bottom: 48px;
}
@media (max-width: 1280px) {
  h2, .h2 {
    font-size: 24px;
    margin-bottom: 36px;
  }
}
@media (max-width: 992px) {
  h2, .h2 {
    font-size: 24px;
    margin-bottom: 24px;
  }
}
h2.left, .h2.left {
  text-align: left;
}
h2 span, .h2 span {
  color: rgb(194, 10, 62);
}

.title-text {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  margin-top: -32px;
  margin-bottom: 64px;
  color: rgb(22, 22, 22);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
}
@media (max-width: 992px) {
  .title-text {
    font-size: 15px;
    line-height: 22px;
    margin-top: 0;
    margin-bottom: 32px;
  }
}

.welcome {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .welcome {
    flex-direction: column;
  }
}
.welcome__desc {
  color: rgb(26, 26, 26);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: left;
  border-radius: 16px;
  background: rgb(253, 211, 223);
  padding: 16px 24px;
}
@media (max-width: 992px) {
  .welcome__desc {
    font-size: 15px;
    line-height: 22px;
  }
}
@media (max-width: 767px) {
  .welcome__desc {
    padding: 12px 16px;
  }
}
.welcome__content {
  width: calc(54% - 24px);
}
@media (max-width: 767px) {
  .welcome__content {
    width: 100%;
    margin-bottom: 32px;
  }
}
.welcome__content p {
  color: rgb(51, 51, 51);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 32px;
  padding-right: 50px;
}
@media (max-width: 992px) {
  .welcome__content p {
    font-size: 15px;
    line-height: 22px;
  }
}
.welcome__image {
  width: calc(46% - 24px);
}
@media (max-width: 767px) {
  .welcome__image {
    width: 100%;
  }
}
.welcome__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 32px;
}

.subscribe-form {
  border-radius: 24px;
  padding: 24px;
  background: rgb(254, 236, 241);
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .subscribe-form {
    padding: 16px;
  }
}
.subscribe-form--bright {
  background: rgb(255, 245, 248);
}
.subscribe-form__title {
  color: rgb(26, 26, 26);
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: left;
  display: block;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .subscribe-form__title {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 12px;
  }
}
.subscribe-form__content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .subscribe-form__content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.subscribe-form__content input {
  border-radius: 57px;
  height: 48px;
  background: rgb(255, 255, 255);
  width: calc(100% - 212px);
  padding: 0 20px;
  color: rgb(26, 26, 26);
  font-family: "Poppins";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: left;
  border: 0;
}
@media (max-width: 992px) {
  .subscribe-form__content input {
    font-size: 14px;
    line-height: 22px;
    width: 100%;
    margin-bottom: 12px;
  }
}
.subscribe-form__content input::-moz-placeholder {
  color: rgb(26, 26, 26);
}
.subscribe-form__content input::placeholder {
  color: rgb(26, 26, 26);
}
.subscribe-form__content button {
  width: 200px;
}
@media (max-width: 480px) {
  .subscribe-form__content button {
    width: 100%;
  }
}
.subscribe-form__bottom {
  display: flex;
  align-items: center;
  color: rgb(26, 26, 26);
  font-size: 15px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: left;
}
@media (max-width: 767px) {
  .subscribe-form__bottom {
    font-size: 13px;
  }
}
.subscribe-form__bottom .icon {
  display: block;
  margin-right: 16px;
  min-width: 48px;
}
@media (max-width: 767px) {
  .subscribe-form__bottom .icon {
    min-width: 36px;
  }
}
.subscribe-form__bottom .icon img {
  display: block;
  width: 48px;
  height: 48px;
}
@media (max-width: 767px) {
  .subscribe-form__bottom .icon img {
    width: 36px;
    height: 36px;
  }
}

.why-section {
  padding: 84px 0;
}
@media (max-width: 1280px) {
  .why-section {
    padding: 42px 0;
  }
}

.why-item {
  padding: 24px;
  margin-bottom: 20px;
  border-radius: 24px;
  background: rgb(255, 245, 248);
  display: flex;
  align-items: center;
  transition: 0.5s;
}
@media (max-width: 767px) {
  .why-item {
    padding: 16px;
    align-items: flex-start;
    flex-direction: column;
  }
}
.why-item:hover {
  transform: scale(1.05);
}
.why-item:last-child {
  margin-bottom: 0;
}
.why-item .icon {
  display: block;
  margin-right: 28px;
  min-width: 72px;
}
@media (max-width: 767px) {
  .why-item .icon {
    min-width: 48px;
    margin-bottom: 20px;
  }
}
.why-item .icon img {
  display: block;
  width: 72px;
  height: 72px;
}
@media (max-width: 767px) {
  .why-item .icon img {
    width: 48px;
    height: 48px;
  }
}
.why-item__content p {
  color: rgb(22, 22, 22);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: left;
}
@media (max-width: 992px) {
  .why-item__content p {
    font-size: 15px;
    line-height: 22px;
  }
}
.why-item__title {
  color: rgb(22, 22, 22);
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: left;
  display: block;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .why-item__title {
    font-size: 18px;
    margin-bottom: 4px;
  }
}

.inside-section {
  padding: 64px 0 0 0;
}
@media (max-width: 1280px) {
  .inside-section {
    padding: 42px 0 0 0;
  }
}

.inside-image {
  display: flex;
  justify-content: center;
}
.inside-image img {
  display: block;
  width: 100%;
  max-width: 500px;
}

.inside-content {
  padding: 84px 0;
  background: rgb(253, 211, 223);
}
@media (max-width: 1280px) {
  .inside-content {
    padding: 42px 0;
  }
}
.inside-content__bottom {
  margin-top: 12px;
  padding: 12px;
  background: rgb(247, 97, 140);
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
  border-radius: 16px;
  width: 100%;
}
@media (max-width: 992px) {
  .inside-content__bottom {
    font-size: 15px;
    line-height: 22px;
  }
}

.inside-content__main {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.inside-item {
  margin-bottom: 20px;
  padding: 24px;
  background: #fff;
  border-radius: 24px;
  width: calc(33.3333333333% - 14px);
  transition: 0.5s;
}
@media (max-width: 992px) {
  .inside-item {
    width: calc(50% - 6px);
    margin-bottom: 12px;
  }
}
@media (max-width: 767px) {
  .inside-item {
    padding: 16px;
  }
}
@media (max-width: 566px) {
  .inside-item {
    width: 100%;
  }
}
.inside-item:hover {
  transform: scale(1.05);
}
.inside-item p {
  color: rgb(22, 22, 22);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: left;
}
@media (max-width: 992px) {
  .inside-item p {
    font-size: 15px;
    line-height: 22px;
  }
}
.inside-item__content {
  margin-bottom: 24px;
  display: flex;
}
@media (max-width: 767px) {
  .inside-item__content {
    margin-bottom: 12px;
  }
}
.inside-item__content .icon {
  display: block;
  margin-right: 16px;
  min-width: 48px;
}
@media (max-width: 767px) {
  .inside-item__content .icon {
    min-width: 36px;
  }
}
.inside-item__content .icon img {
  display: block;
  width: 48px;
  height: 48px;
}
@media (max-width: 767px) {
  .inside-item__content .icon img {
    width: 36px;
    height: 36px;
  }
}
.inside-item__title {
  color: rgb(22, 22, 22);
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: left;
}

.inside-bg {
  background: url(../images/pink-bg.svg) 50% 0 no-repeat;
  background-size: cover;
  padding-bottom: 90px;
}
@media (max-width: 1280px) {
  .inside-bg {
    padding-bottom: 30px;
  }
}
@media (max-width: 680px) {
  .inside-bg {
    background: url(../images/pink-bg-mobile.svg) 50% 145px no-repeat;
    padding-bottom: 0;
  }
}

.step-section {
  padding: 64px 0;
  background: rgb(254, 236, 241);
}
@media (max-width: 1280px) {
  .step-section {
    padding: 24px 0;
  }
}

.step {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .step {
    flex-direction: column;
  }
}
.step__image {
  width: calc(40% - 24px);
}
@media (max-width: 767px) {
  .step__image {
    width: 100%;
    margin-bottom: 30px;
  }
}
.step__image img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  -o-object-fit: cover;
     object-fit: cover;
}
.step__content {
  width: calc(60% - 24px);
}
@media (max-width: 767px) {
  .step__content {
    width: 100%;
  }
}
.step__content h2 {
  margin-bottom: 24px;
}
.step__content p {
  color: rgb(22, 22, 22);
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .step__content p {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 20px;
  }
}

.early-sub {
  border-radius: 16px;
  padding: 12px 24px;
  background: rgb(251, 182, 202);
  display: flex;
  align-items: center;
  color: rgb(26, 26, 26);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: left;
}
@media (max-width: 767px) {
  .early-sub {
    padding: 12px 16px;
  }
}
.early-sub .icon {
  display: block;
  margin-right: 16px;
  min-width: 48px;
}
@media (max-width: 767px) {
  .early-sub .icon {
    min-width: 36px;
  }
}
.early-sub .icon img {
  display: block;
  width: 48px;
  height: 48px;
}
@media (max-width: 767px) {
  .early-sub .icon img {
    width: 36px;
    height: 36px;
  }
}
@media (max-width: 992px) {
  .early-sub {
    font-size: 15px;
    line-height: 22px;
  }
}

.footer {
  padding: 64px 0;
  background: rgb(254, 236, 241);
}
@media (max-width: 1280px) {
  .footer {
    padding: 42px 0;
  }
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .footer-main .logo {
    margin-bottom: 24px;
    display: inline-block;
  }
}
@media (max-width: 767px) {
  .footer-main__nav {
    width: 100%;
    margin-bottom: 24px;
  }
}
.footer-main__nav ul {
  display: flex;
}
@media (max-width: 767px) {
  .footer-main__nav ul {
    justify-content: space-between;
    width: 100%;
  }
}
.footer-main__nav ul li {
  margin: 0 24px;
}
@media (max-width: 767px) {
  .footer-main__nav ul li {
    margin: 0;
  }
}
.footer-main__nav ul li a {
  color: rgb(22, 22, 22);
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
  letter-spacing: 0%;
  border-bottom: 1px solid transparent;
  transition: 0.5s;
}
.footer-main__nav ul li a:hover {
  border-color: rgba(22, 22, 22, 0.7);
}
.social {
  display: flex;
  align-items: center;
}
.social a {
  margin-left: 32px;
  transition: 0.5s;
}
@media (max-width: 767px) {
  .social a {
    margin-left: 0;
    margin-right: 28px;
  }
}
.social a:hover {
  transform: scale(1.1);
}
.social a:first-child {
  margin-left: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.footer-bottom ul {
  display: flex;
}
@media (max-width: 767px) {
  .footer-bottom ul {
    margin-bottom: 24px;
    width: 100%;
  }
}
.footer-bottom ul li {
  margin: 0 24px;
}
@media (max-width: 767px) {
  .footer-bottom ul li {
    margin: 0 30px 0 0;
  }
}
.footer-bottom ul li a {
  color: rgb(22, 22, 22);
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: 0%;
  border-bottom: 1px solid transparent;
  transition: 0.5s;
}
@media (max-width: 767px) {
  .footer-bottom ul li a {
    font-weight: 400;
  }
}
.footer-bottom ul li a:hover {
  border-color: rgba(22, 22, 22, 0.7);
}

.copy {
  color: rgb(51, 51, 51);
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: -1%;
  text-align: right;
}
@media (max-width: 767px) {
  .copy {
    width: 100%;
    text-align: left;
  }
}

.slider .swiper-slide {
  border: 1px solid rgb(204, 204, 204);
  transition: 0.5s;
  border-radius: 32px;
  padding: 20px;
  opacity: 0.6;
  transform: scale(0.9);
}
@media (max-width: 767px) {
  .slider .swiper-slide {
    border: 0;
    width: 324px;
    padding: 0 8px;
  }
}
@media (max-width: 480px) {
  .slider .swiper-slide {
    transform: scaleY(0.8) scaleX(1);
  }
}
.slider .swiper-slide.swiper-slide-active {
  transform: scale(1.1);
  z-index: 12;
  position: relative;
  border-color: rgb(251, 182, 202);
  background: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .slider .swiper-slide.swiper-slide-active {
    transform: scaleX(1);
  }
}
@media (max-width: 767px) {
  .slider .swiper-slide.swiper-slide-active .review-item {
    border: 1px solid rgb(251, 182, 202);
  }
}

@media (max-width: 767px) {
  .slider {
    width: calc(100% + 30px);
    margin: 0 -15px;
  }
}

.swiper-wrapper {
  align-items: center;
  padding: 30px 10px 80px 10px;
  width: calc(100% + 20px);
  margin: 0 -10px;
}
@media (max-width: 767px) {
  .swiper-wrapper {
    width: 100%;
    margin: 0;
    padding: 0 0 50px 0;
  }
}

.slider-section {
  padding: 100px 0;
}
@media (max-width: 1280px) {
  .slider-section {
    padding: 42px 0;
  }
}

.review-item {
  background: #fff;
  transition: 0.5s;
}
@media (max-width: 767px) {
  .review-item {
    border: 1px solid rgb(204, 204, 204);
    transition: 0.5s;
    border-radius: 32px;
    padding: 20px;
  }
}
.review-item p {
  color: rgb(22, 22, 22);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .review-item p {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 20px;
  }
}
.review-item__content {
  display: flex;
  align-items: center;
}
.review-item__avatar {
  display: block;
  margin-right: 20px;
  width: 48px;
}
.review-item__avatar img {
  width: 48px;
  height: 48px;
  max-width: 48px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.review-item__name {
  color: rgb(22, 22, 22);
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  letter-spacing: -2%;
  text-align: left;
}
.review-item__name span {
  display: block;
  color: rgb(141, 7, 45);
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0%;
  text-align: left;
}

.swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 16px;
  margin-bottom: 0px;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgb(204, 204, 204);
  margin: 0 4px;
  transition: 0.5s;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 16px;
  height: 16px;
  background: rgb(250, 148, 177);
}

.swiper-button-next {
  border-radius: 50px;
  box-shadow: 2px 4px 9px 0px rgba(0, 0, 0, 0.1);
  background: rgb(254, 236, 241);
  width: 36Px;
  height: 36px;
  top: calc(50% - 18px);
  right: 3px;
}
@media (max-width: 767px) {
  .swiper-button-next {
    right: 20px;
  }
}
.swiper-button-next:before {
  content: "";
  width: 9px;
  height: 14px;
  position: absolute;
  top: calc(50% - 7px);
  left: calc(50% - 4.5px);
  background: url(../images/slider-arrow.svg) 50% 50% no-repeat;
  transform: rotate(-180deg);
}
.swiper-button-next:after {
  display: none;
}

.swiper-button-prev {
  border-radius: 50px;
  box-shadow: 2px 4px 9px 0px rgba(0, 0, 0, 0.1);
  background: rgb(254, 236, 241);
  width: 36Px;
  height: 36px;
  top: calc(50% - 18px);
  left: 2px;
}
@media (max-width: 767px) {
  .swiper-button-prev {
    left: 20px;
  }
}
.swiper-button-prev:before {
  content: "";
  width: 9px;
  height: 14px;
  position: absolute;
  top: calc(50% - 7px);
  left: calc(50% - 4.5px);
  background: url(../images/slider-arrow.svg) 50% 50% no-repeat;
}
.swiper-button-prev:after {
  display: none;
}/*# sourceMappingURL=styles.css.map */