:root {
  scroll-behavior: smooth;
}

/* Reset CSS */
/* 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,
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,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
} */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

label{
   font-size: 1.125em;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: #000;
  transition: all 500ms ease-out;
}

strong,
b {
  font-weight: 700;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #F43AB0;
}

* {
  outline: none !important;
}

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

section {
  position: relative;
}

html,
body {
  height: 100%;
}

body {
  font-family: 'Quicksand', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  background-color: #FFFFFF;
  color: #000000;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
  line-height: 1.4;
}

/* Color */

.text-primary {
  color: #F43AB0 !important;
}

a.text-primary:focus,
a.text-primary:hover {
  color: #cc1c8b !important;
}

.text-dark {
  color: #000000 !important;
}

.text-light {
  color: #808184 !important;
}

.text-warning {
  color: #FFCE00 !important;
}

.bg-primary {
  background-color: #F43AB0 !important;
}

.bg-light {
  background-color: #F2F2F2 !important;
}

.bg-dark {
  background-color: #000000 !important;
}

.bg-opacity-pink {
  background-color: rgba(244, 58, 176, 0.05);
}

.bg-opacity-lavender {
  background-color: rgba(185, 128, 255, 0.15);
}

.bg-opacity-sky {
  background-color: rgba(0, 187, 249, 0.05);
}

.bg-opacity-green {
  background-color: rgba(52, 221, 194, 0.05);
}

.bg-opacity-dark {
  background-color: rgba(0, 0, 0, 0.03);
}

/* Buttons */
.btn {
  border: 0;
  border-radius: 10px;
  box-shadow: none !important;
  color: #FFFFFF;
  cursor: pointer;
  font-size: 24px;
  font-weight: 500;
  height: 58px;
  padding: 10px 15px;
  position: relative;
  transition: all 500ms ease-out;
  text-align: center;
  text-transform: capitalize;
}

.btn-lg {
  min-width: 220px;
}

.btn.focus,
.btn:focus {
  outline: 0;
  box-shadow: none !important;
}

.btn.disabled,
.btn:disabled {
  opacity: .3;
  pointer-events: none;
}

.btn-primary,
.btn-primary.focus,
.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle,
.btn-primary.disabled,
.btn-primary:disabled {
  background-color: #F43AB0;
  border-color: #F43AB0;
}

.btn-primary:hover {
  color: #FFFFFF;
  border-color: #f965c3;
  background-color: #f965c3;
}

.btn-dark,
.btn-dark.focus,
.btn-dark:focus,
.btn-dark:not(:disabled):not(.disabled).active,
.btn-dark:not(:disabled):not(.disabled):active,
.show>.btn-dark.dropdown-toggle,
.btn-dark.disabled,
.btn-dark:disabled {
  background-color: #000000;
  border-color: #000000;
}

.btn-dark:hover {
  color: #FFFFFF;
  background-color: #F43AB0;
  border-color: #F43AB0;
}

/* Form */

.form-control {
  height: 64px;
  background-color: #FFFFFF;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  padding: 10px 15px;
  box-shadow: none !important;
  resize: none;
}

.form-control::-webkit-input-placeholder {
  color: #000000;
}

.form-control::-moz-placeholder {
  color: #000000;
}

.form-control:-ms-input-placeholder {
  color: #000000;
}

.form-control:-moz-placeholder {
  color: #000000;
}

.form-control:focus {
  border: 1px solid rgba(0, 0, 0, 0.5);
}

.form-label {
  font-size: 25px;
  margin-bottom: 16px;
  display: inline-block;
}

input.form-control{
  font-size: 1.125em;
}

.extra-info {
  display: none;
  line-height: 1em;
  font-size: 0.75em;
	position: absolute;
  max-width: 0;
  transition: all .2s ease;
}

.extra-info i{
  font-size: 0.75em;
}

.form-info-icon:hover{
  height: auto;
  text-align: left !important;
  transition: all .2s ease;
}

.form-info-icon:hover .extra-info{
  bottom: 25%;
  left: 50%;
  background-color: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  border-radius: 10px;
  padding: 0.5em;
  display: block;
  transition: all .2s ease;
  max-width: 350px;
  width: max-content;
  z-index: 2;
}

/* RADIO */

.custom-radio .custom-control-label::before,
.custom-radio .custom-control-label::after {
  height: 24px;
  width: 24px;
  border-color: #000000;
}

.custom-radio .custom-control-input:checked~.custom-control-label::before {
  border-color: #FFFFFF;
  background-color: #FFFFFF;
}

.custom-radio .custom-control-input:checked~.custom-control-label::after {
  background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:%23f43ab0;%7D%3C/style%3E%3C/defs%3E%3Cpath class='a' d='M32,20A12,12,0,1,1,20,8,12,12,0,0,1,32,20ZM18.612,26.354l8.9-8.9a.774.774,0,0,0,0-1.095L26.42,15.261a.774.774,0,0,0-1.095,0l-7.261,7.261-3.39-3.39a.774.774,0,0,0-1.095,0l-1.095,1.095a.774.774,0,0,0,0,1.095l5.032,5.032a.774.774,0,0,0,1.095,0Z' transform='translate(-8 -8)'/%3E%3C/svg%3E");
  padding: 0;
  height: 48px;
  width: 48px;
  top: -8px;
  left: -36px;
}

/* CHECKBOX */

.custom-checkbox .custom-control-label::before,
.custom-checkbox .custom-control-label::after {
  top: .05rem;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
  color: #fff;
  border-color: #f43ab0;
  background-color: #f43ab0;
}

/* CUSTOM CHECKBOX */

.custom-text {
  margin-right: 0;
  padding-left: 1rem;
}

.custom-text .custom-control-label:before,
.custom-text .custom-control-label:after {
  content: none;
}

.custom-text .custom-control-label {
  font-size: 14px;
  font-weight: 600;
  color: #000000;
}

.custom-text .custom-control-input:checked~.custom-control-label {
  color: #F43AB0;
}

/* DROPDOWN */

.dropdown-toggle:after {
  content: none;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: #f43ab0;
}

.dropdown-item {
  padding: .25rem .75rem;
}

/* Common Title */

.display-1 {
  font-size: 70px;
}

.display-2 {
  font-size: 56px;
}

.display-3 {
  font-size: 48px;
}

.display-4 {
  font-size: 30px;
}

.display-5 {
  font-size: 24px;
}

.lead {
  font-size: 20px;
  font-weight: normal;
}

.medium {
  font-size: 16px;
}

.small {
  font-size: 14px;
}

.extra-small {
  font-size: 12px;
}

.text-underline {
  text-decoration: underline;
}

.font-weight-medium {
  font-weight: 500;
}

.font-weight-semimedium {
  font-weight: 600;
}

/* CARD */

.card {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 12px;
  border: 0;
}

/* Guttter */

.gutters-7 {
  margin-left: -7.5px;
  margin-right: -7.5px;
}

.gutters-7>div {
  padding-left: 7.5px;
  padding-right: 7.5px;
}

.container-1672 {
  max-width: 95%;
  width: 104.5em;
  border-radius: 3.375em;
  position: relative;
}

/* BORDER ANIMATIO */

.animated-border {
  display: inline-block;
  /* border-bottom: 4px solid transparent;
  opacity: 0;
  transition: .5s width ease-in-out; */
  position: relative;
}

.animated-border:before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 4px;
  background-color: transparent;
  transition: 1s width ease-in-out;
  border-radius: 4px;
}

.animated-border-dark:before {
  background-color: #000000;
}

.animated-border-green:before {
  background-color: #34DDC2;
}

.animated-border-sky:before {
  background-color: #50CEF8;
}

.animated-border-lavender:before {
  background-color: #B980FF;
}

.animated-border.active:before {
  opacity: 1;
  width: 100%;
}

/* LOADER */

#preloader {
  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;
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #ffffff;
  z-index: 999999;
}

#preloader .loader {
  display: block;
  height: 32px;
  width: 32px;
  -webkit-animation: spin1 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
  animation: spin1 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

#preloader .loader::before,
#preloader .loader::after {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #F43AB0;
  border-radius: 50%;
  margin: auto;
}

#preloader .loader::before {
  top: 0;
  left: 0;
  bottom: 0;
  right: auto;
  -webkit-animation: spin2 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
  animation: spin2 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

#preloader .loader::after {
  top: 0;
  left: auto;
  bottom: 0;
  right: 0;
  -webkit-animation: spin3 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
  animation: spin3 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

#preloader .loader span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  height: 32px;
  width: 32px;
}

#preloader .loader span::before,
#preloader .loader span::after {
  content: "";
  display: block;
  position: absolute;
  margin: auto;
  width: 8px;
  height: 8px;
  background-color: #F43AB0;
  border-radius: 50%;
}

#preloader .loader span::before {
  top: 0;
  left: 0;
  bottom: auto;
  right: 0;
  -webkit-animation: spin4 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
  animation: spin4 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

#preloader .loader span::after {
  top: auto;
  left: 0;
  bottom: 0;
  right: 0;
  -webkit-animation: spin5 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
  animation: spin5 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

@keyframes spin1 {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes spin2 {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(24px, 0, 0) scale(.5);
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes spin3 {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-24px, 0, 0) scale(.5);
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes spin4 {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, 24px, 0) scale(.5);
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes spin5 {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -24px, 0) scale(.5);
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

/* HEADER */

.header {
  padding: 3.75em 0;
  transition: all .5s ease;
  background-color: #ffffff;
  z-index: 1;
  top: 0;
  position: fixed;
  left: 0;
  width: 100%;
}

.header.sticky {
  padding: 1.25em 0;
  box-shadow: 0px 1px 12px rgba(0, 0, 0, .05);
}

.header .navbar-toggler {
  width: 18px;
  height: 18px;
  flex-direction: column;
  justify-content: space-around;
  padding: 0;
  border: 0;
}

.header .navbar-toggler .icon-bar {
  width: 18px;
  height: 2px;
  background-color: #000000;
  display: block;
  -webkit-transition: opacity, -webkit-transform;
  transition: opacity, -webkit-transform;
  transition: opacity, transform;
  transition: opacity, transform, -webkit-transform;
  -webkit-transition-duration: 200ms;
  transition-duration: 200ms;
  -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0, 0.7);
  transition-timing-function: cubic-bezier(0.7, 0, 0, 0.7);
}

.header .navbar-toggler:not(.collapsed) .icon-bar:nth-child(1) {
  -webkit-transform: translateY(6px) rotate(45deg);
  transform: translateY(6px) rotate(45deg);
}

.header .navbar-toggler:not(.collapsed) .icon-bar:nth-child(2) {
  opacity: 0;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.header .navbar-toggler:not(.collapsed) .icon-bar:nth-child(3) {
  -webkit-transform: translateY(-6px) rotate(-45deg);
  transform: translateY(-6px) rotate(-45deg);
}

.header .navbar-nav .nav-link {
  font-size: 1.5625em;
  font-weight: 700;
  text-transform: uppercase;
  color: #000000;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
  margin-right: 22px;
}

.header .navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  width: 11px;
  height: 11px;
  border-radius: 11px;
  background-color: #F43AB0;
  transition: .2s ease-in-out;
  bottom: -10px;
  margin: 0 auto;
  opacity: 0;
}

.header .navbar-nav .nav-link:hover::before,
.header .navbar-nav .nav-link.active::before {
  opacity: 1;
}

.app_icons{
  display: flex;
  margin: 0 3em;
}

.google_app, .apple_app{
  max-height: 50px;
}

.app{
  margin-left: 1.125em;
}

/* HOME PAGE */

.section-lavender-one {
  padding-top: 30px;
}

.section-lavender-one p {
  font-size: 2.75em;
  max-width: 465px;
  margin-top: 70px;
}

.section-lavender-one .btn {
  margin-top: 90px;
}

.section-lavender-one .bg-arrow {
  bottom: 0;
}

.section-feelgood {
  padding: 155px 0 165px;
}

.section-sky-two {
  padding-top: 70px;
}

.sky-two-image {
  position: relative;
  right: 205px;
}

.list-services {
  margin-bottom: 65px;
}

.list-services li {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.list-services li .icon-left img {
  display: block;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

.list-services li h6 {
  font-size: 2.5em;
  font-weight: 700;
  margin-left: 30px;
  flex: 1;
}

.section-pink-three {
  padding-top: 40px;
}

.pink-three-image {
  position: relative;
  right: 50px;
}

.section-already {
  padding: 140px 0 200px;
}

.section-already .store-slider {
  margin-top: 80px;
}

.section-already .store-slider .already-list-item {
  text-align: center;
}

.section-already .store-slider .already-list-item img {
  height: 132px;
  width: 132px;
  object-fit: cover;
  border-radius: 100%;
}

.section-green-four {
  padding-top: 125px;
}

.green-four-image {
  position: relative;
  left: -55px;
}

.section-green-four .col-lg-7 {
  padding-left: 125px;
  padding-right: 0;
}

.section-green-four .btn {
  margin-top: 40px;
  margin-bottom: 80px;
}

.section-loop {
  padding: 115px 0;
}

.section-loop h5 {
  font-size: 1.875em;
  line-height: 1.6666666666666667em;
  margin-top: 1.5em;
  margin-bottom: 2.8333333333333335em;
}

.section-loop .card {
  padding: 85px 100px;
  max-width: 635px;
  margin: 0 auto;
}

.section-pink-five {
  padding-top: 35px;
}

.section-pink-five .bg-arrow {
  bottom: 80px;
}

.section-pink-five .btn {
  margin-top: 85px;
}

.section-pink-five .card {
  position: absolute;
  top: 270px;
  right: 50px;
}

.pink-five-image {
  margin-left: 15px;
}

.section-benifit {
  padding: 280px 0;
}

.section-benifit sup {
  font-size: 1.875em;
}

.section-slot {
  padding: 220px 0 195px;
}

.section-slot .display-3 {
  margin-bottom: 65px;
}

.section-noshow {
  padding: 215px 0 175px;
}

.section-noshow .display-3 {
  margin-bottom: 105px;
}

.section-hand {
  padding: 160px 0 290px;
}

.section-join {
  padding: 205px 0;
}

.section-join form,
.section-join .btn {
  margin-top: 2rem;
}

.section-sky-six {
  padding-top: 25px;
}

.section-sky-six .display-4 {
  margin: 35px 0;
  padding-right: 10px;
}

.list-benefit li {
  font-size: 2.125em;
  font-weight: bold;
  margin-bottom: 0.7352941176470589em;
}

.section-lavender-seven {
  padding-top: 10px;
}

.lavender-seven-image {
  margin-left: -4.375em;
}

.section-lavender-seven .display-4 {
  margin: 2.1875em 0 2.5em;
}

.section-lavender-seven .list-benefit {
  margin-right: -2.1875em;
}

.section-green-eight {
  padding-top: 5.3125em;
}

.green-eight-image {
  margin-left: 1.875em;
}

.section-green-eight .display-4 {
  margin: 1.875em 0 4.0625em;
}

.section-howwork {
  /* background-color: rgba(0, 0, 0, 0.02); */
  padding: 6.5625em 0 8.125em;
}

.section-howwork .display-3 {
  margin-bottom: 1.875em;
}

.nav-pills-howwork {
  display: none;
}

.nav-pills-howwork a:hover,
.nav-pills-howwork a:focus {
  color: inherit;
}

.nav-pills-howwork .nav-link,
.tab-content-howwork .nav-link {
  font-size: 2.1875em;
  padding: 0;
  margin-bottom: 1em;
}

.nav-pills-howwork .nav-link span,
.tab-content-howwork .nav-link span {
  display: block;
  font-weight: 600;
  padding: 7px 10px;
  border-radius: 8px;
}

.nav-pills-howwork .nav-link span:last-child,
.tab-content-howwork .nav-link span:last-child {
  font-weight: 400;
  padding: 0 10px;
  color: #000000;
}

.nav-pills-howwork .nav-link.active span:first-child,
.tab-content-howwork .tab-pane:nth-child(1) .nav-link[aria-expanded="true"] span:first-child {
  background-color: #3CC3C3;
  color: #000000;
}

.nav-pills-howwork .nav-link.active:nth-child(2) span:first-child,
.tab-content-howwork .tab-pane:nth-child(2) .nav-link[aria-expanded="true"] span:first-child {
  background-color: #00BBF9;
  color: #000000;
}

.nav-pills-howwork .nav-link.active:nth-child(3) span:first-child,
.tab-content-howwork .tab-pane:nth-child(3) .nav-link[aria-expanded="true"] span:first-child {
  background-color: #FCC81A;
  color: #000000;
}

.nav-pills-howwork .nav-link.active:nth-child(4) span:first-child,
.tab-content-howwork .tab-pane:nth-child(4) .nav-link[aria-expanded="true"] span:first-child {
  background-color: #3EB238;
  color: #000000;
}

.nav-pills-howwork .nav-link.active span:first-child,
.tab-content-howwork .tab-pane:nth-child(5) .nav-link[aria-expanded="true"] span:first-child {
  color: #000000;
  background-color: #3CC3C3;
}

.tab-content-howwork {}

.tab-content-howwork-image {
  text-align: right;
}

.tab-content-howwork .tab-pane:nth-child(1) .tab-content-howwork-image {
  margin-top: 30px;
}

.tab-content-howwork .tab-pane:nth-child(2) .tab-content-howwork-image {
  margin-top: 180px;
}

.tab-content-howwork .tab-pane:nth-child(3) .tab-content-howwork-image {
  margin-top: 120px;
}

.tab-content-howwork .tab-pane:nth-child(4) .tab-content-howwork-image {
  margin-top: 90px;
}

.tab-content-howwork .tab-pane:nth-child(5) .tab-content-howwork-image {
  margin-top: 70px;
}

.col-lg-460 {
  max-width: 460px;
}

.col-lg-100 {
  max-width: calc(100% - 460px);
}

.section-coupon {
  padding: 155px 0;
}

.section-coupon .card {
  margin: 80px 20px;
}

.section-coupon .card .icon-left {
  max-width: 117px;
}

.section-coupon .card p {
  font-size: 1.3125em;
}

.section-pink-nine {
  margin-top: 50px;
  padding: 70px 0 45px;
}

.pink-nine-image {
  position: relative;
  left: -200px;
  margin-top: -120px;
}

.pink-inner-nine-image {
  position: relative;
  z-index: -1;
  margin-top: 45px;
  margin-bottom: 50px;
}

.section-pink-nine .card .icon-left {
  width: 78px;
}

.section-pink-nine .card .icon-left img {
  width: 100%;
}

/* SECTION FORM STEP */

.section-step {
  padding: 185px 0;
}

.section-step .card {
  padding: 80px 90px;
  margin-bottom: 125px;
}

/* WIZARD FORM */

.progressbar-form {
  margin-bottom: 70px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  margin-top: 90px;
}

.progressbar-form li {
  list-style-type: none;
  color: #000;
  text-transform: uppercase;
  font-size: 1.5em;
  width: 130px;
  float: left;
  position: relative;
  text-align: center;
  user-select: none;
}

.progressbar-form li:before {
  content: "";
  width: 9px;
  height: 9px;
  line-height: 26px;
  display: block;
  font-size: 0.75em;
  color: #333;
  background: #CACACA;
  border-radius: 10px;
  margin: 5px auto 10px auto;
  outline: 4px solid #fff;
}

.progressbar-form li:after {
  content: '';
  width: 100%;
  height: 2px;
  background: #CACACA;
  position: absolute;
  left: -50%;
  top: 9px;
  z-index: -1;
}

.progressbar-form li:first-child:after {
  content: none;
}

.progressbar-form li.active:before,
.progressbar-form li.active:after {
  background: #ee0979;
  color: white;
}

.progressbar-form li.active {
  font-weight: 700;
}

.progress-step-01 .display-4 {
  margin-bottom: 110px;
}

.progress-step-02 .display-4 {
  margin: 50px 0 75px;
}

.icon-search {
  position: relative;
}

.icon-search img {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}

.dataTables_filter label{
  float: left;
  margin-bottom: 2em;
}

.tab-content-venues{
  overflow-x: auto;
  width: 100%;
  float: left;
}

.icon-search .form-control {
  font-size: 1.5625em;
  padding-left: 2em;
}

.list-suggestion {
  padding: 15px 0;
}

.list-suggestion+.list-suggestion {
  border-top: 1px solid #707070;
  padding-top: 30px;
}

.list-suggestion {
  margin-bottom: 20px;
}

.list-suggestion .list-suggestion-text {
  font-size: 1.5625em;
}

.list-suggestion .list-suggestion-image {
  height: 34px;
  width: 34px;
  border: 1px solid #7F7F7F;
  border-radius: 34px;
}

.list-suggestion .moveBtn{
  border: 1px solid #F43AB0;
  background-color: #F43AB0;
  border-radius: 50%;
  color: white;
  width: 34px;
  height: 34px;
}

.list-suggestion ::-webkit-scrollbar {
  height: 4px;
}

.builded_form{
  width: 100%;
}

.dataTables_empty{
  display: none;
}

/* Track */
.list-suggestion ::-webkit-scrollbar-track {
  background: #000000; 
}
 
/* Handle */
.list-suggestion ::-webkit-scrollbar-thumb {
  background: #000000; 
}

/* Handle on hover */
.list-suggestion ::-webkit-scrollbar-thumb:hover {
  background: #000000; 
}

.list-suggestion li.active a .list-suggestion-text {
  font-weight: 700;
}

.list-suggestion li.active a .list-suggestion-image {
  border-color: transparent;
}

.list-suggestion li.active .list-suggestion-image {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='34' viewBox='0 0 34 34'%3E%3Cg id='icon-minus' transform='translate(-1130 -5925)'%3E%3Ccircle id='Ellipse_280' data-name='Ellipse 280' cx='17' cy='17' r='17' transform='translate(1130 5925)' fill='%23f43ab0'/%3E%3Crect id='Rectangle_1661' data-name='Rectangle 1661' width='20' height='6' rx='1' transform='translate(1137 5939)' fill='%23fff'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 34px 34px;
}

img{
  max-width: 63.6875em;
}

.progress-step-02 .btn {
  margin-top: 50px;
}

.progress-step-02 table{
  padding-bottom: 1em;
}

.progress-step-02 thead{
  display: none;
}

.progress-step-02 .btn.btn_load_more,
.progress-step-02 .btn.btn_load_more:active,
.progress-step-02 .btn.btn_load_more:focus
{
  color: black;
  background-color: #F43AB0;
  font-size: 1.125em;
  margin-top: 1.1111111111111112em;
  padding: 0%;
  height: 2.6666666666666665em;

}

.animation{
  width: 27%;
  margin: auto;
  min-width: 300px;
}

.progress-step-03 .display-3 {
  margin-bottom: 5.625em;
}

.progress-step-03 .btn {
  margin-top: 3.75em;
}

.progress-step-04 .google-captch {
  margin: 4.375em 0 3.75em;
}

.progress-step-05,
.progress-step-06{
  width: 100%;
}

/* FOOTER */

.footer {
  padding: 75px 0;
}

.footer ul.footer-copyright{
  list-style: none;
}

.footer ul.footer-copyright li:not(:last-child){
  margin-right: .7em;
}

.footer .footer-copyright,
.footer .footer-copyright a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 1.125em;
  font-weight: 700;
  color: #ffffff;
}

.footer .footer-copyright p+p {
  margin-left: 4.722222222222222em;
}

/* SLIDER */

.swiper-pagination {
  position: inherit;
}

.swiper-pagination-bullet-active {
  background: #F43AB0;
}

.card1{
  background-color: #fef6fb;
  border-radius: 54px;
  padding: 2.5em 2.5em 2.5em 2.5em;
  margin: 1.66em 0;
}

.card2{
  background-color: #f7fdff;
  border-radius: 54px;
  padding: 2.5em 2.5em 2.5em 2.5em;
  margin: 1.66em 0;
}

.card3{
  background-color: #f5ecff;
  border-radius: 54px;
  padding: 2.5em 2.5em 2.5em 2.5em;
  margin: 1.66em 0;
}

.card4{
  background-color: #f5fdfc;
  border-radius: 54px;
  padding: 2.5em 2.5em 2.5em 2.5em;
  margin: 1.66em 0;
}

.card-body{
  padding: 0;
}

.card-title{
  font-size: 2em;
  margin-top: 1em;
  font-weight: bold;
}

.card-text{
  font-size: 1.3125em;
  margin-bottom: 1.90em;
}

.card_btn{
  display: inline-flex;
  flex-wrap: wrap;
  background-color: #000;
  color: #fff;
  font-size: 1.5em;
  padding: 0.583em 2.125em;
  border-radius: 15px;
  border: unset;
}

.card_btn:hover{
  background-color: #F43AB0;
  color: #fff;
}

.load_btn{
  background-color: #000;
  color: #fff;
  font-size: 1.5em;
  padding: 0.583em 2.125em;
  border-radius: 15px;
  margin: 6.66em 0 7.166em 0;
}

.load_btn:hover{
  background-color: #F43AB0;
  color: #fff;
}

.blog_card{
  display:none;
}


.blog_img{
  width: 64em;
}

.blog_title h3{
  font-weight: bold;
  font-size: 2.5em;
  margin-top: 1.11em;
}

.blog_title p{
  font-size: 1.3125em;
  margin-top: 0.571428em;
}

.blog_body{
  margin-top: 2.5em;
  font-size: 2.15em;
  line-height: 1.5;
  margin-bottom:  5.375em;
}

.blog_body p a{
  color: #F43AB0;
  border-bottom: 3px solid black;
  font-weight: bold;
  text-decoration: none;
}

.blog_body blockquote p{
  display: flex;
  justify-content: center;
  text-align: center;
  margin: 2.5em auto ;
  max-width: 640px;
  font-size: 1.375em;
}

.blog_body h2{
  margin-top: 1.375em;
  font-weight: bold;
}