:root {
    --main-text-color: #363C66;
    --main-gradient: linear-gradient(45deg, rgba(69, 128, 241, 1) 0%, rgba(110, 171, 252, 1) 100%);
    --main-gradient-darken: linear-gradient(45deg, rgb(62, 121, 231) 0%, rgb(98, 162, 245) 100%);
    --main-color: #628BFD;
    --main-color-light: rgba(99, 140, 253, 0.08);
    --main-color-super-light: rgba(99, 140, 253, 0.05);
    --white: rgba(255, 255, 255, .9);
    --gold: #FFA800;
    --darken-gold: #ffa700;
    --swiper-navigation-size: 28px;
}

* {
    color: var(--main-text-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Merriweather', serif;
    font-weight: bold;
}

.text-bold {
    font-weight: bold;
}

button:focus {
    outline: none !important;
}

.meetnow-logo {
    width: 200px;
}

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

.mt-30px {
    margin-top: 30px;
}

.font-bold {
    font-weight: bold;
}

.w-100\% {
    width: 100%;
}

/* svg */

.svg-icon {
    width: 18px;
    height: 18px;
}

.svg-icon.arrow-right {
    width: 10px;
    transition: all 300ms ease;
}


/* button */
.cta-hero {
    margin-top: 30px;
}

.mybtn {
    font-weight: 500;
    display: inline-block;
    border-radius: 5px;
    border: none;
    padding: 15px 30px;
    min-width: 180px;
    text-align: center;
    transition: 300ms;
}

.mybtn:hover {
    color: white !important;
    text-decoration: none !important;
}

.mybtn:focus {
    outline: none;
}

.btn--primary {
    background: #fff;
    color: var(--main-text-color);
}

.btn--primary:hover {
    text-decoration: none;
    color: var(--main-text-color) !important;
    background: rgba(255, 255, 255, .95);
}

.btn--secondary {
    border: 1.5px solid #fff;
    color: #fff;
}

.btn--secondary span {
    color: #fff;
}

.btn--secondary:hover {
    text-decoration: none;
    background: #fff;
}

.btn--secondary:hover span {
    color: var(--main-text-color);
}

.btn--secondary:hover .svg-icon path {
    fill: var(--main-text-color);
}

.btn--gold {
    background: var(--gold);
    box-shadow: 0 5px 20px 0px rgba(255, 170, 0, 0.303);
    color: white;
}

.btn--gold:hover {
    background: var(--darken-gold);
    box-shadow: 0 5px 25px 0px rgba(255, 170, 0, 0.6);
    color: white;
    text-decoration: none;
}

.btn--gradient {
    width: 100%;
    background: var(--main-gradient);
    border-radius: 5px;
    font-weight: 500;
    font-size: 16px;
    color: white;
    border: 0 none;
    cursor: pointer;
    padding: 15px 5px;
}

.btn--gradient:hover {
    background: var(--main-gradient-darken);
    outline: none;
}

.btn--blue-transparent {
    width: 100%;
    background-color: rgba(99, 140, 253, 0.2);
    border-radius: 5px;
    font-weight: 500;
    font-size: 16px;
    color: var(--main-color);
    border: 0 none;
    cursor: pointer;
    padding: 15px 5px;
}

.btn--blue-transparent:hover {
    background: var(--main-gradient-darken);
    outline: none;
}


/* NAVBAR */
.navbar {
    padding: 10px 0px;
    transition: all 300ms ease;
}

.navbar.scrolled {
    background: #fff;
    box-shadow: #4959d125 0px 3px 15px;
}

.navbar.scrolled .nav-link {
    color: #333 !important;
}

.container-navbar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-toggler {
    background: rgba(99, 140, 253, 0.1);
    border: none;
}

.navbar-toggler:focus {
    background: rgba(99, 140, 253, 0.2);
}

.hamburger {
    padding: 10px !important;
}

.hamburger-box {
    margin-top: 1px;
    width: 25px;
    height: 17px;
    z-index: 20;
}

.navbar-toggler.is-active .hamburger-box {
    margin-top: 2px;
    margin-bottom: -2px;
}

.navbar-toggler .hamburger-inner,
.navbar-toggler .hamburger-inner::before,
.navbar-toggler .hamburger-inner::after {
    background: var(--main-color);
    width: 25px;
    height: 2px;
}

.navbar-toggler.is-active .hamburger-inner,
.navbar-toggler.is-active .hamburger-inner::before,
.navbar-toggler.is-active .hamburger-inner::after {
    background: var(--main-color);
    width: 25px;
    height: 2px;
}

.nav-item:not(:last-child) {
    padding-right: 20px;
}

.nav-link {
    color: white !important;
    opacity: 1;
}

.dropdown-menu {
    border: none;
    border-radius: 6px;
    box-shadow: #4959d125 0px 3px 15px;
}

.dropdown-item {
    color: var(--main-text-color);
}

.dropdown-item:hover {
    background: #628bfd15;
    color: var(--main-text-color);
    font-weight: 500;
}

.navbar-highlight {
    background: #ffffff21;
    border-radius: 6px;
    padding: 0px 10px 0px 10px;
}

.navbar-highlight:hover {
    background: #ffffff2c;
}

.navbar-highlight.navbar-highlight-scroll {
    font-weight: 500;
    background-color: rgba(99, 140, 253, 0.1);
    border-radius: 5px;
    transition: all 300ms ease;
}

.navbar-highlight.navbar-highlight-scroll:hover {
    background-color: rgba(99, 140, 253, 0.2);
}

.navbar-highlight.navbar-highlight-scroll .nav-link {
    color: #4580F1 !important;
}

/* END NAVBAR */


/* CAROUSEL */
.floating-form {
    position: absolute;
    right: 15px;
    top: -45vh;
    transform: translate(0, -50%);
    border-radius: 15px;
    z-index: 50;
    background: #fff;
    padding: 30px 0;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.floating-form input {
    background: rgba(243, 245, 252, 0.93);
    border: none !important;
    height: 50px;
}

.floating-form input:focus {
    background: rgb(236, 239, 247);
    border: none !important;
    box-shadow: none;
    height: 50px;
}

.floating-form .form-group label {
    font-size: 14px;
}

.floating-form .form-group input.error {
    background: rgba(255, 0, 0, 0.05);
}

.floating-form .form-group input.error::placeholder {
    color: crimson !important;
}

.floating-form .form-group label.error {
    color: white !important;
}

.floating-form .form-group .alert-circle {
    stroke: #FF6E6E;
    float: right;
    margin-left: -38px;
    margin-top: -8px;
    position: relative;
    z-index: 2;
}

.popover-error {
    background-color: #FF6E6E;
    border-radius: 5px;
    margin-top: 50px;
    color: #fff;
    font-size: 14px;
    font-family: 'Helvetica', sans-serif;
    right: 0px;
    padding: 7px 10px;
    position: absolute;
    text-align: center;
    z-index: 4;
}

.popover-error::before {
    content: url('/img/alert-circle.svg');
    float: right;
    top: -43px;
    right: 35px;
    position: relative;
    margin-bottom: -10px;
    margin-right: -30px;
    z-index: 2;
}

.popover-error::after {
    border-bottom: 7px solid #FF6E6E;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    top: -6px;
    content: '';
    display: block;
    right: 20px;
    margin-left: -7px;
    position: absolute;
}

.hero-carousel .row {
    display: block;
    margin-right: 0;
    margin-left: 0;
}

.carousel-caption h5 {
    font-size: 42px;
    font-weight: 600;
}

.carousel-caption h5,
.carousel-caption p {
    color: #fff;
}

.carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    text-align: center;
}

.carousel-indicators li.active {
    transform: scale(1.2);
}

.carousel-item {
    height: 100vh;
}

.carousel-item .carousel-caption {
    position: relative;
    left: unset;
    right: unset;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    text-align: left;
    opacity: 0;
    transition: all 100ms ease;
}

.carousel-item.active .carousel-caption {
    opacity: 1;
    transition: all 100ms ease;
}

.carousel-img {
    position: absolute;
    height: 100vh;
    width: auto;
    min-width: 100vw;
    display: block;
    background-size: cover;
    background-position: fixed;
    background-repeat: no-repeat;
}

/* END CAROUSEL */


/*form styles*/
#msform {
    width: 400px;
    position: relative;
}

#msform .form-container {
    width: 80%;
    margin: 0 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

#msform .form-container h2 {
    font-size: 24px;
}

#msform .error {
    font-size: 80%;
    font-weight: 400;
    color: red;
}

#msform fieldset {
    background: white;
    border: 0 none;
    border-radius: 3px;
    box-sizing: border-box;
    width: 80%;
    margin: 0 10%;

    /*stacking fieldsets above each other*/
    position: relative;
}

/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
    display: none;
}

/*inputs*/
#msform input,
#msform textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
    font-family: montserrat;
    color: #2C3E50;
    font-size: 15px;
}

#msform input::placeholder,
#msform textarea::placeholder {
    color: #525252;
    opacity: .2;
}

/*buttons*/
#msform .previous {
    background: transparent !important;
    color: #888 !important;
}


/*headings*/
.fs-title {
    font-size: 15px;
    text-transform: uppercase;
    color: #2C3E50;
    margin-bottom: 10px;
}

.fs-subtitle {
    font-weight: normal;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

/*progressbar*/
#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    /*CSS counters to number the steps*/
    counter-reset: step;
}

#progressbar li {
    list-style-type: none;
    color: white;
    text-transform: uppercase;
    font-size: 9px;
    width: 16.33%;
    float: left;
    position: relative;
}

#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 40px;
    line-height: 40px;
    display: block;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    color: #fff;
    background: #ddd;
    border-radius: 50%;
    margin: 0 auto 5px auto;
    transition: all 300ms ease;
}

/*progressbar connectors*/
#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: #ddd;
    position: absolute;
    left: -50%;
    top: 19px;
    z-index: -1;
    transition: all 300ms ease;
    /*put it behind the numbers*/
}

#progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
}

/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before,
#progressbar li.active:after {
    background: var(--main-gradient);
    color: white;
}

.syarat-text p,
.syarat-text a {
    font-size: 13px;
}


/* section fitur */
section {
    padding: 80px 0;
    overflow: hidden !important;
}

section#hero {
    padding: 0;
}

section#features {
    padding-top: 80px;
    width: 100%;
    overflow-x: hidden;
}

h2.title-section {
    text-align: center;
    font-size: 42px;
    position: relative;
    font-weight: 600;
}

.title-section::after {
    content: "";
    position: absolute;
    background: var(--main-color);
    height: 4px;
    width: 300px;
    border-radius: 99px;
    bottom: -10px;
    left: 50%;
    transform: translate(-50%);
}

section#features .feature {
    padding: 80px 0;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.feature .btn--feature {
    color: #4580F1;
    font-weight: 500;
    padding: 10px 40px;
    background-color: rgba(99, 140, 253, 0.1);
    border-radius: 5px;
    transition: all 300ms ease;
}

.feature .btn--feature.bf-blue {
    background-color: rgba(99, 140, 253, 0.1);
}

.feature .btn--feature.bf-blue:hover {
    background-color: rgba(99, 140, 253, 0.2);
}

.bf-white:hover,
.bf-blue:hover {
    text-decoration: none;
}

.bf-white:hover svg {
    text-decoration: none;
    transform: translate(3px);
    transition: all 300ms ease;
}

.feature .btn--feature.bf-white {
    background: #fff;
    box-shadow: 5px 5px 5px 0px rgba(52, 96, 218, 0.02);
}

.feature .btn--feature.bf-white:hover {
    background: #fff;
    box-shadow: 0px 10px 30px 0px rgba(52, 96, 218, 0.07);
}

.title--number {
    font-size: 28px;
    font-weight: 600;
    position: relative;
}

.title--number::before {
    color: var(--main-color-super-light);
    position: absolute;
    font-size: 170px;
    top: 50%;
    left: -30%;
    transform: translate(0, -50%);
    z-index: -1;
}

.title--number.n-1::before {
    content: "01";
}

.title--number.n-2::before {
    content: "02";
}

.title--number.n-3::before {
    content: "03";
}

.title--number.n-4::before {
    content: "04";
}

.feature-img {
    width: 150%;
}

.feature-img.human {
    height: 100%;
    width: auto;
    position: absolute;
    bottom: 0;
    left: 0;
}

.bg-gradient-light {
    background: linear-gradient(266deg, rgba(69, 128, 241, 0.18389362580969892) 0%, rgba(247, 249, 253, 0.1782913849133403) 69%);
}

.bg-gradient-light.bg-gradient-light-reverse {
    background: linear-gradient(90deg, rgba(69, 128, 241, 0.18389362580969892) 0%, rgba(247, 249, 253, 0.1782913849133403) 69%);
}

.bg-gradient-light .feature-img {
    float: right;
}

.feature-list {
    list-style: none;
    margin-top: 30px;
}

.feature-list li {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 10px 30px 0px rgba(36, 72, 170, 0.07);
}

.feature-list li:not(:last-child) {
    margin-bottom: 15px;
}

.feature-list img {
    min-width: 100px;
    min-height: 100px;
    max-width: 100px;
    max-height: 100px;
    margin-right: 10px;
}


/* section pricing */

.pricing .container .row {
    margin-top: 100px;
}

.pricing-card-single {
    padding: 55px 30px 30px 30px;
    box-shadow: 0px 15px 30px 0px rgba(86, 22, 176, 0.05);
    border-radius: 10px;
    transition: 250ms;
}

.pricing-card-single:hover {
    box-shadow: 0px 20px 35px 0px rgba(86, 22, 176, 0.1);
    margin-top: -5px;
}

.pricing-card-single.pricing-monthly {
    border-top: 5px solid var(--main-color);
}

.pricing-card-single.pricing-yearly {
    border-top: 5px solid var(--gold);
    box-shadow: 0px 15px 30px 0px rgba(86, 22, 176, 0.07);
    margin-top: -25px;
}

.pricing-card-single.pricing-yearly:hover {
    margin-top: -30px;
    margin-bottom: 5px;
}

.pricing-card-single.pricing-yearly img {
    position: absolute;
    width: 140px;
    margin-top: -69px;
    right: 5px;
}

.pricing-card-single ul {
    margin-left: 10px;
    list-style: none;
}

.pricing-card-single ul li {
    color: #888;
    font-size: 14px;
    margin-top: 10px;
    padding-left: 1rem;
}

.pricing-card-single ul li::before {
    margin-left: -1.5rem;
    margin-right: 6px;
    vertical-align: middle;
}

.pricing-card-single.pricing-monthly ul li::before {
    content: url('/img/check-blue.svg');
}

.pricing-card-single.pricing-yearly ul li::before {
    content: url('/img/check-gold.svg');
}


.pcs-title {
    text-align: center;
    font-weight: 600;
}

.pcs-title span {
    display: block;
    font-weight: 600;
}

.pcs-value {
    font-family: 'Lato', sans-serif;
    font-size: 46px;
    font-weight: 900;
    text-align: center;
}

.pcs-value::before {
    content: 'Rp.';
    font-size: 18px;
    font-weight: 600;
    margin-top: -20px;
    margin-left: -25px;
    position: absolute;
}

.pcs-value .before-discount {
    color: #aaa;
    font-size: 24px;
    font-weight: 400;
    margin-top: -20px;
    margin-left: 40px;
    position: absolute;
}

.discount-percentage {
    background: rgba(255, 170, 0, 0.1);
    border-radius: 5px;
    color: var(--gold);
    font-weight: 600;
    height: 35px;
    padding: 5px;
    width: 80%;
}



/* section testi */
.testi {
    padding-bottom: 30px;
}

.containerswiper {
    display: flex;
    justify-content: center;
}

.testi-single {
    padding: 30px;
    text-align: center;
    box-shadow: 0px 6px 50px 0px rgba(86, 22, 176, 0.11);
}

.swiper-slide {
    display: flex;
}

.testi-single-content {
    opacity: 0;
}

.swiper-slide-active .testi-single .testi-single-content {
    opacity: 1;
}


/*  */

.swiper-container {
    box-shadow: 0px 0px 33px 63px white inset;
    position: relative;
    width: 70vw;
    height: 600px;
}

.swiper-container>.swiper-slide__content {
    position: absolute;
    top: 0;
}

.swiper-mask {
    position: absolute;
    width: 100%;
    height: 100%;
}

.swiper-wrapper {
    align-items: center;
}

.swiper-slide {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 200ms linear;
    transform: scale(0.8);
    opacity: 0.2;
}

.swiper-slide.swiper-slide-active {
    width: 500px;
    border-radius: 30px !important;
    transform: scale(1);
    opacity: 1;
}

.swiper-slide__content {
    height: 300px;
}

.testi-single {
    border-radius: 10px;
    width: 400px !important;
}

.testi-single hr {
    background: #dddddd;
    height: 4px;
    width: 40px;
    border-radius: 99px;
    margin: auto;
    border: none;
}

.testi-words {
    font-weight: 500;
    margin-top: 20px;
}

.testi-avatar {
    background-size: cover !important;
    background-position: center !important;
    border-radius: 100%;
    height: 70px;
    margin: auto;
    width: 70px;
}

.testi-name {
    color: #A9ABB8;
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: 600;
}

.testi-title {
    color: #c1c2ce;
    font-size: 15px;
}

/* navigation */
.swiper-button-prev,
.swiper-container-rtl,
.swiper-button-next {
    background: #fafafa;
    border-radius: 10px;
    margin-top: -20px;
    padding: 30px;
}

.swiper-button-prev:hover,
.swiper-container-rtl:hover,
.swiper-button-next:hover {
    background: #f7f7f7;
}

.swiper-button-prev:focus,
.swiper-container-rtl:focus,
.swiper-button-next:focus {
    outline: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next::after,
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev::after {
    color: #363C66;
    font-weight: bold;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    left: 5vw;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    right: 5vw;
}



/* OUR CLIENTS */

.our-client {
    background: #f8f8ff7e;
    padding-bottom: 100px !important;
}

.card-our-client {
    background: white;
    border: none;
    border-radius: 7px;
    box-shadow: 5px 15px 20px rgba(59, 17, 180, 0.05);
    height: 70px;
    padding: 20px !important;
}

.card-our-client img {
    width: auto;
    max-height: 35px !important;
    align-self: center;
}




/* DOWNLOAD */

section#download {
    background-image: url("/img/download-bg.jpg");
    background-attachment: fixed;
}

section#download p,
section#download h2,
section#download a {
    color: #fff;
}

section#download h2 {
    font-size: 48px;
    font-weight: 600;
}

.download-btn {
    margin-top: 20px;
    display: flex;
}

.download-btn a {
    display: inline-block;
    min-width: 160px;
    border-radius: 5px;
    border: 1.5px solid #fff;
    padding: 15px 10px;
    margin: 0 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 300ms ease;
}

.download-btn a:hover {
    text-decoration: none;
    background: #fff;
    color: #333 !important;
    transition: all 300ms ease;
}

.download-btn a:hover svg path {
    fill: #333;
    transition: all 300ms ease;
}


/* FOOTER */

footer {
    padding-top: 80px;
}

footer h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 25px;
}

footer h3 {
    font-size: 14px;
    padding: 25px 0;
}

footer h3 a {
    font-size: 13px;
    font-weight: 500;
}

.logo-footer {
    width: 240px;
    max-width: 90%;
    margin-bottom: 25px;
}

.list-footer {
    list-style: none;
    margin-bottom: 40px;
}

.list-footer li {
    position: relative;
    font-size: 14px;
    margin-left: 12px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.list-footer li a {
    color: var(--main-text-color);
    transition: 100ms;
}

.list-footer li a:hover {
    font-weight: 500;
    margin-left: 5px;
    text-decoration: none;
}

.list-footer li a svg {
    margin-right: 5px;
}

.list-footer.footer-col-1 li {
    padding-left: 35px;
}

.list-footer i,
.list-footer svg {
    left: 0;
    top: 0;
    width: 20px !important;
    height: 20px;
}

.list-footer.footer-col-1 svg {
    position: absolute;
}

.list-footer.socmed-icon li {
    margin-left: 0px;
}

.list-footer.no-icon li {
    padding-left: 0;
    margin-left: 0;
}


.footer-bottom .container {
    border-top: 1px solid #ddd;
}