html {
    overflow-x: hidden;
}
:root {
    --primary: #9773FF;
    --secondary: #C4CCE9;
    --dark: #051242;
    --themeBlack: #070C38;
    --white: #ffffff;
    --text: #596582;
    --gray: #4A5E81;
    --lightGray: #B7C4DB;

    --body-bg: #1D074A;

    --btnbg-primary: linear-gradient(98.42deg, #9773FF 5.2%, #683AEC 100%);
    --btnbg-secondary: #1E0C50;
    --btn-border: #322873;
    --btn-bg: #0A05274D;

    --bgBox: #0407224D;
    --bgBigBox: #21286033;
    --borderBox: #252B60;

    /* font-family */
    --exo: "Exo 2", sans-serif;

    /* font-size */
    --fsNav: 18px;
    --lhNav: 21.6px;

    --fsBtn: 18px;
    --lhBtn: 21.6px;

    --fs-h1: 65px;

    --fs-h2: 50px;

    --fs-h3: 40px;

    --fs-h4: 30px;

    --fs-h5: 24px;
    --fs-md-h5: 20px;

    --fs-h6: 22px;
    --fs-md-h6: 18px;

    --fs-lg-p: 24px;
    --fs-md-p: 20px;
    --fs-sm-p: 16px;

}

body{
    font-family: var(--exo);
    background-color: var(--body-bg);
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

h1 {
    font-size: var(--fs-h1) !important;
}
h2 {
    font-size: var(--fs-h2) !important;
}
h3 {
    font-size: var(--fs-h3) !important;
}
h4 {
    font-size: var(--fs-h4) !important;
}
h5 {
    font-size: var(--fs-h5) !important;
}
h6 {
    font-size: var(--fs-h6) !important;
}


@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1140px !important;
    }
}

.btn {
    font-family: var(--exo);
    text-transform: uppercase;
    height: 50px;
    padding: 6px 30px;
    border-radius: 10px;
}

.btn.btn-link {
    font-size: var(--fsBtn);
    line-height: 1.9;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--white) !important;
    text-decoration: none;
}

a.btn.btn-link:after {
    content: "";
    width: calc(100% - 60px);
    border: 1px solid var(--white);
    height: 1px;
    left: 30px;
    position: absolute;
    bottom: 5px;
}

.btn.btn-primary {
    font-size: var(--fsBtn);
    background: var(--btnbg-primary);
    line-height: 2.2;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--white) !important;
    box-shadow: 0 4px 20px 0 #683AEC66;
    border: 0 !important;
    position: relative;
    overflow: hidden;
}

.btn.btn-primary:hover:after {
    transform: translateX(100%);
    transition: 0.5s ease-in-out;
}

.btn.btn-primary:after {
    transform: translateX(-100%);
    transition: 0.5s ease-in-out;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #c4cce985;
    top: 0;
    left: 0;
}

.btn.btn-secondary.title {
    font-size: var(--fsBtn);
    border: 1px solid var(--btn-border);
    background: #09194A;
    line-height: 1.4;
    letter-spacing: 0.1em;
    font-weight: 700;
    border-radius: 20px;
    height: 40px;
    box-shadow: 0 0 0 0;
    color: var(--primary) !important;
    background: var(--btn-bg);
    cursor: default;
}

.btn.btn-secondary.title:hover {
    background: var(--btn-bg);
}

.btn.btn-secondary {
    font-size: var(--fsBtn);
    border: 1px solid var(--primary);
    background: #09194A;
    line-height: 2;
    letter-spacing: 0.1em;
    font-weight: 700;
    border-radius: 20px;
    height: 60px;
    box-shadow: 0 4px 20px 0 #9773FF40;
    background: var(--btnbg-secondary);
}
.btn.btn-secondary:hover {
    background: var(--primary);
}


/* Header */
header {
    position: fixed;
    width: calc(100% - 0px);
    z-index: 3;
}

header .navbar {
    padding: 0 100px !important;
    height: 114px;
}
nav.navbar.stickyHeader {
    background: #1d074ae8;
}

/* .spacerheader {
    height: 114px;
} */

ul.navbar-nav {
    flex: auto !important;
    justify-content: center;
}

ul.navbar-nav li {
    margin: 0 15px;
}

ul.navbar-nav li a.nav-link {
    font-family: var(--exo);
    font-size: var(--fsNav);
    line-height: var(--lhNav);
    color: var(--secondary) !important;
    font-weight: 500;
    text-align: center;
}

/* loader */
div#preloader {position: fixed;z-index: 3;width: 100%;height: 100vh;}

div#preloader figure {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
}

div#preloader figure video {
    width: 240px;
    height: 240px;
    /* box-shadow: 0px 0px 69px 60px #1c114e; */
}

/* hero */
.hero {
    padding: 340px 100px 220px;
    background-image: url(../images/hero-bg.png);
    background-position: top left;
    background-repeat: no-repeat;
    background-blend-mode: exclusion;
    background-color: var(--body-bg);
    background-size: cover;
    position: relative;
    overflow: hidden;
}
.hero:after {
    content: "";
    background-image: url(../images/hero-bottom-bg.png);
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: bottom;
    bottom: -4px;
    left: 0;
    z-index: 1;
}

.hero .content {
    position: relative;
    z-index: 2;
}

.hero .textBox {}

.hero .textBox h5 {
    font-family: var(--exo);
    font-size: var(--fs-md-h5) !important;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.1em;
    text-align: left;
    color: var(--primary);
    margin-bottom: 30px;
}

.hero .textBox h1 {
    font-family: var(--exo);
    font-weight: 700;
    line-height: 78px;
    text-align: left;
    color: var(--white);
    margin-bottom: 40px;
}

.hero .textBox p {
    font-family: var(--exo);
    font-size: var(--fs-h5);
    font-weight: 500;
    line-height: 45px;
    text-align: left;
    color: var(--secondary);
    margin-bottom: 40px;
}

.hero .textBox a.btn.btn-secondary {
    height: 60px;
    border-radius: 10px;
    padding: 10px 43px;
    line-height: 2.2;
}

.hero .imgBox {
    position: relative;
}

.hero .imgBox figure {position: absolute;top: -120px;right: -110px;margin: 0;}

.hero .imgBox figure img {}

.hero .content a.btn.btn-icon {
    display: table;
    margin: 0 auto -70px;
    position: relative;
    top: -20px;
    padding: 5px;
    box-shadow: 0 0 0 0;
    -webkit-animation: action 1s infinite  alternate;
    animation: action 1s infinite  alternate;
}


@-webkit-keyframes action {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

@keyframes action {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

/* powerful */
section.powerful {
    padding: 170px 0 50px;
    position: relative;
}

section.powerful .content {}

section.powerful .content .btn.btn-secondary {
    margin: 0 auto;
    display: block;
    margin-bottom: 30px;
}

.pBox:before {
    content: "";
    display: block;
    width: 315px;
    height: 315px;
    position: absolute;
    left: -160px;
    bottom: -170px;
    background-image: url(../images/circle-shadow-left.png);
    background-size: contain;
    z-index: -1;
}

.pBox:after {
    content: "";
    display: block;
    width: 231px;
    height: 231px;
    position: absolute;
    right: -130px;
    bottom: 160px;
    background-image: url(../images/circle-shadow-left.png);
    background-size: contain;
    z-index: -1;
}

.pBox {
    position: relative;
}

section.powerful .content h2 {
    font-family: var(--exo);
    font-weight: 700;
    line-height: 60px;
    text-align: center;
    color: var(
    --white);
}

section.powerful .content p {
    font-family: var(--exo);
    font-size: 20px;
    font-weight: 500;
    line-height: 36px;
    text-align: center;
    color: var(--secondary);
}

.powerBox {}

.powerBox .imgBox {
    background: #070C3833;
    width: 102px;
    height: 102px;
    margin: 0 auto;
    border-radius: 50%;
    border: 1px solid #262D68;
    padding: 13px;
    position: relative;
    bottom: -50px;
}
.powerBox .imgBox figure {
    background: var(--primary);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.powerBox .imgBox img {}

.innerBox {
    background: var(--bgBox);
    border: 1px solid var(--borderBox);
    border-radius: 20px;
    padding: 87px 10px 35px;
    transition: 0.5s ease-in-out;
}

.powerBox:hover .innerBox {
    background: #9772f7;
}

.innerBox h6 {
    font-family: var(--exo);
    font-size: 22px !important;
    font-weight: 600;
    line-height: 26.4px;
    text-align: center;
    color: var(--white);
    margin-bottom: 15px;
}

.innerBox h6 p {}

.innerBox p {
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 24px !important;
}

/* why probot x */
section.whyProbot {
    padding: 128px 0 50px;
    background-image: url(../images/why-probot-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

section.whyProbot .content {}

section.whyProbot .content .btn.btn-secondary {
    margin: 0 auto;
    display: block;
    border: 1px solid var(--btn-border);
    border-radius: 20px;
    height: 40px;
    padding: 0 24px;
    margin-bottom: 20px;
}

section.whyProbot .content h2 {
    font-family: var(--exo);
    line-height: 60px;
    text-align: center;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 35px;
}

section.whyProbot .content h5 {
    font-family: var(--exo);
    font-size: var(--fs-md-h5) !important;
    font-weight: 500;
    line-height: 36px;
    text-align: center;
    color: var(--secondary);
    margin-bottom: 90px;
    padding: 0 10%;
}

section.whyProbot .content .imgBox {}

section.whyProbot .content .imgBox figure {
    margin: 0;
    position: relative;
    left: -100px;
    -webkit-animation: action 1s infinite  alternate;
    animation: action 1s infinite  alternate;
}

section.whyProbot .content .imgBox figure img {
    width: 100%;
}

section.whyProbot .content .textBox {}

section.whyProbot .content .textBox h5 {
    font-family: var(--exo);
    font-size: var(--fs-md-h5) !important;
    font-weight: 500;
    line-height: 36px;
    text-align: left;
    color: var(--secondary);
    margin-bottom: 30px;
}

.probotBox {
    background: var(--bgBox);
    border: 1px solid var(--borderBox);
    border-radius: 20px;
    padding: 28px 30px;
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.probotBox figure {}

.probotBox figure img {
    width: 60px;
    height: auto;
}

.probotBox hr.dvdr {
    border: 1px solid #1E1C80;
    height: 86px;
    width: 1px;
    margin: 0 40px 0 40px;
}

.probotBox h6 {
    font-family: var(--exo);
    font-size: var(
    --fs-h6) !important;
    font-weight: 600;
    line-height: 26.4px;
    text-align: left;
    color: var(
    --white);
}

.probotBox p {
    font-family: var(--exo);
    font-size: var(--fs-sm-p);
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: var(
    --secondary);
    margin: 0;
}

/* Reviewa */
section.reviews {
    padding: 100px 100px;
    position: relative;
}

.circleShadow {
    position: absolute;
    right: 0;
    top: -220px;
    z-index: -1;
}

section.reviews:after {
    content: "";
    background-image: url(../images/reviews-bg.png);
    background-repeat: no-repeat;
    background-position: bottom center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 260px;
    z-index: -1;
    left: 0;
}

.contentReview {
    background: var(--btn-bg);
    border: 1px solid var(--btn-border);
    padding: 90px 0;
    border-radius: 50px;
}

section.reviews button.btn.btn-secondary.title {
    display: block;
    margin: 0 auto 20px;
}

section.reviews h2 {
    font-family: var(--exo);
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
    text-align: center;
    color: var(--white);
    margin-bottom: 50px;
}

.reviewSlider {}

.reviewSlider .item {
    margin: 0 auto;
    padding: 0 0;
}

.reviewSlider .item .icon {
    width: 70px;
    height: 60px;
    margin: 0 auto 30px;
}

.reviewSlider .item .icon figure {}

.reviewSlider .item .icon figure img {}

.reviewSlider .item h3 {
    font-family: var(--exo);
    font-size: 40px !important;
    font-weight: 500;
    line-height: 60px;
    text-align: center;
    color: var(--white);
    margin: 0 auto 60px;
}

.reviewSlider .item .client {
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviewSlider .item .client .imgCol {
    margin-right: 40px;
}

.reviewSlider .item .client .imgCol figure {
    width: 116px;
    height: 116px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0;
}

.reviewSlider .item .client .imgCol figure img {
    margin: 0;
}

.reviewSlider .item .client .textCol {}

.reviewSlider .item .client .textCol h4 {
    font-family: var(--exo);
    font-size: 30px !important;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 0.1em;
    text-align: left;
    color: var(--primary);
    margin-bottom: 0;
}

.reviewSlider .item .client .textCol h5 {
    font-family: var(--exo);
    font-size: 20px !important;
    font-weight: 500;
    line-height: 36px;
    text-align: left;
    color: var(--white);
    margin: 0;
}

/* Testimonials Slider (Livewire + Alpine) */
.testimonialSlider {
    position: relative;
    max-width: 960px;
}

.testimonialTrack {
    position: relative;
    min-height: 360px;
}

.testimonialSlider .item {
    position: absolute;
    inset: 0;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
    will-change: opacity, transform;
}

.testimonialSlider .item.is-active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.testimonialSlider .item .icon {
    width: 70px;
    height: 60px;
    margin: 0 auto 30px;
}

.testimonialSlider .item .icon figure {
    margin: 0;
}

.testimonialSlider .item h3 {
    font-family: var(--exo);
    font-size: 36px !important;
    font-weight: 500;
    line-height: 52px;
    text-align: center;
    color: var(--white);
    max-width: 820px;
    margin: 0 auto 50px;
}

.testimonialSlider .item .client {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonialSlider .item .client .imgCol {
    margin-right: 24px;
}

.testimonialSlider .item .client .avatarInitials {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: var(--btnbg-primary);
    border: 2px solid var(--btn-border);
    color: var(--white);
    font-family: var(--exo);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    user-select: none;
}

.testimonialSlider .item .client .textCol {
    text-align: left;
}

.testimonialSlider .item .client .textCol .sep {
    display: none;
}

.testimonialSlider .item .client .textCol h4 {
    font-family: var(--exo);
    font-size: 26px !important;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: 2px;
}

.testimonialSlider .item .client .textCol h5 {
    font-family: var(--exo);
    font-size: 18px !important;
    font-weight: 500;
    line-height: 26px;
    color: var(--white);
    margin: 0;
}

.testimonialNav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 48px;
}

.testimonialNav .navArrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--btn-border);
    background: var(--btnbg-secondary);
    color: var(--secondary);
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.testimonialNav .navArrow:hover {
    background: var(--btnbg-primary);
    border-color: transparent;
    color: var(--white);
}

.testimonialNav .navArrow:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.testimonialDots {
    display: flex;
    align-items: center;
    gap: 4px;
}

.testimonialDots .dot {
    width: 30px;
    height: 30px;
    padding: 10px;
    border: 0;
    background: var(--secondary);
    background-clip: content-box;
    border-radius: 50%;
    opacity: 0.4;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.testimonialDots .dot:hover {
    opacity: 0.7;
}

.testimonialDots .dot.is-active {
    opacity: 1;
    background-color: var(--primary);
    transform: scale(1.15);
}

.testimonialDots .dot:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 1px;
}

@media (max-width: 991px) {
    .testimonialTrack {
        min-height: 420px;
    }

    .testimonialSlider .item h3 {
        font-size: 26px !important;
        line-height: 38px;
    }
}

@media (max-width: 575px) {
    .testimonialTrack {
        min-height: 460px;
    }

    .testimonialSlider .item h3 {
        font-size: 21px !important;
        line-height: 32px;
        margin-bottom: 36px;
    }

    .testimonialSlider .item .client {
        flex-direction: column;
        text-align: center;
    }

    .testimonialSlider .item .client .imgCol {
        margin: 0 0 14px;
    }

    .testimonialSlider .item .client .textCol {
        text-align: center;
    }

    .testimonialNav {
        margin-top: 32px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .testimonialSlider .item {
        transition: none;
        transform: none;
    }
}

/* Get In Touch */
section.getInTouch {
    padding: 200px 0 20px;
}

section.getInTouch .content {
    position: relative;
}

section.getInTouch .content:before {
    content: "";
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='550' height='650' viewBox='0 0 550 650' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg opacity='0.2' filter='url(%23filter0_f_188_135)'%3e%3ccircle cx='325' cy='325' r='125' fill='%23B297FF'/%3e%3c/g%3e%3cdefs%3e%3cfilter id='filter0_f_188_135' x='0' y='0' width='650' height='650' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='100' result='effect1_foregroundBlur_188_135'/%3e%3c/filter%3e%3c/defs%3e%3c/svg%3e ");
    width: 250px;
    height: 250px;
    position: absolute;
    display: block;
    right: -15%;
    top: -80px;
    background-size: 100%;
    background-repeat: no-repeat;
    box-shadow: 0 15px 110px 0 #251d3f;
}

section.getInTouch figure.image img {
    width: 100%;
}

section.getInTouch .formBox {}

section.getInTouch .formBox h2 {
    font-family: var(--exo);
    color: var(--white);
    margin-bottom: 16px;
    text-transform: uppercase;
    font-size: 50px !important;
    font-weight: 700;
    line-height: 60px;
}

section.getInTouch .formBox h5 {
    font-family: var(--exo);
    font-size: var(--fs-md-h5) !important;
    font-weight: 500;
    line-height: 36px;
    text-align: left;
    color: var(--secondary);
    margin-bottom: 30px;
}

form.getIn {}

input.form-control {
    background: #0A05274D;
    height: 60px;
    padding: 0 32px;
    font-family: var(--exo);
    font-size: 16px;
    font-weight: 500;
    line-height: 19.2px;
    text-align: left;
    color: var(--secondary);
    border: 1px solid #322873;
    border-radius: 10px;
}

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

input.form-control:focus, textarea.form-control:focus {
    outline: 0;
    box-shadow: 0 0 0;
    background: transparent;
    border: 1px solid #322873;
}

textarea.form-control {
    background: #0A05274D;
    height: 120px;
    padding: 15px 32px 10px;
    font-family: var(--exo);
    font-size: 16px;
    font-weight: 500;
    line-height: 19.2px;
    text-align: left;
    color: var(--secondary);
    border: 1px solid #322873;
    border-radius: 10px;
    resize: none;
}

textarea.form-control::placeholder{
    color: #C4BEE5;
}

/* Pricing */

section.pricing {
    padding: 220px 0 40px;
    background-image: url(../images/pricing-bg.webp);
    background-size: contain;
    background-position-y: 270px;
    background-repeat: repeat-x;
    background-position-x: center;
}

section.pricing .content {}

section.pricing .content .btn.btn-secondary.title {
    margin: 0 auto;
    display: block;
}

section.pricing h2 {
    font-family: var(--exo);
    color: var(--white);
    margin-bottom: 40px;
    text-transform: uppercase;
    font-size: 50px !important;
    font-weight: 700;
    line-height: 60px;
    text-align: center;
}

.pkgBox {
    background: #0A05274D;
    border: 1px solid #322873;
    height: 284px;
    max-width: 264px;
    text-align: center;
    padding: 40px 20px;
    border-radius: 20px;
    transition: 0.5s ease-in-out;
    position: relative;
    overflow: hidden;
}

.pkgBox h6 {
    font-family: var(--exo);
    font-size: 18px;
    font-weight: 700;
    line-height: 21.6px;
    letter-spacing: 0.1em;
    text-align: center;
    color: #B297FF;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    transition: 0.5s ease-in-out;
}

.pkgBox h3.pkgPrice {
    font-family: var(--exo);
    font-size: 70px !important;
    font-weight: 700;
    line-height: 84px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.pkgBox .btn.btn-plan {
    background: linear-gradient(98.42deg, #9773FF 5.2%, #683AEC 100%);
    font-family: var(--exo);
    font-size: 18px;
    font-weight: 700;
    line-height: 21.6px;
    letter-spacing: 0.1em;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 1;
    transition: 0.5s ease-in-out;
    box-shadow: 0 4px 20px 0 #683AEC66;
    border: 0;
}

.pkgBox:before {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(98.42deg, #9773FF 5.2%, #683AEC 100%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    transform: translateX(-100%);
    transition: 0.5s ease-in-out;
}

.pkgBox:hover:before {
    transition: 0.5s ease-in-out;
    transform: translateX(0%);
}

.pkgBox:hover h6 {
    color: #fff;
    transition: 0.5s ease-in-out;
}

.pkgBox:hover .btn.btn-plan {
    background: #FFFFFF;
    box-shadow: 0 4px 20px 0 #683AEC66;
    color: #1D074A;
    transition: 0.5s ease-in-out;
}

/* FAQ */
section.faq {
    padding: 130px 0;
    position: relative;
}
.cirleShadowLeftCenter {
    position: absolute;
    top: 46%;
    left: 0;
}
.cirleShadowLeftCenter img {
    width: 80%;
}

section.faq .content {}

section.faq .content button.btn.btn-secondary.title {
    display: block;
    margin: 0 auto 30px;
}

section.faq .content h2 {
    color: var(--white);
    text-align: center;
    font-weight: 700;
    line-height: 60px;
    text-transform: uppercase;
    margin-bottom: 0;
}

section.faq .content h5 {
    font-size: var(--fs-md-h5);
    font-weight: 500;
    line-height: 36px;
    text-align: center;
    color: var(--secondary);
    padding: 0 10%;
    margin-bottom: 60px;
}

.accordion-item {
    border: 1px solid #322873;
    background: #0A05274D;
    border-radius: 20px !important;
    margin-bottom: 30px;
    padding: 28px 40px;
    position: relative;
}

.accordion-item .accordion-header {border-radius: 20px;}

.accordion-item .accordion-header button.accordion-button.collapsed {
}

.accordion-item .accordion-header button.accordion-button {
    background: transparent;
    box-shadow: 0 0 0 0;
    border-radius: 20px;
    font-family: var(--exo);
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    text-align: left;
    color: #fff;
    padding: 0;
    width: calc(100% - 30px);
}

.accordion-item .accordion-header button.accordion-button:after {
    content: "-" !important;
    font-family: var(--exo);
    font-size: 30px;
    font-weight: 500;
    text-align: left;
    color: #9773FF;
    background-image: none;
    line-height: 0.5;
    position: absolute;
    right: -50px;
}

.accordion-item .accordion-header button.accordion-button.collapsed:after {
    content: "+" !important;
    /* background-image: none; */
}

.accordion-item .accordion-body {
    padding: 20px 0 0;
}

.accordion-item .accordion-body p {
    font-family: var(--exo);
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    text-align: left;
    color: #C4CCE9;
}

/* trading */
section.trading {
    padding: 140px 0;
    position: relative;
    /* overflow-x: hidden; */
}

section.trading .linesBg img {
    width: 100%;
}

section.trading .linesBg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: -86%;
    left: 0;
    z-index: -1;
}

section.trading .content {
    background: linear-gradient(98.42deg, #9773FF 5.2%, #683AEC 100%);
    padding: 40px 70px;
    border-radius: 30px;
    position: relative;
}

section.trading h2 {
    font-family: var(--exo);
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
    text-align: left;
    color: #fff;
}

section.trading p {
    font-family: var(--exo);
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    text-align: left;
    color: #fff;
}

section.trading a.btn.btn-white {
    color: #060542;
    background: #fff;
    font-family: var(--exo);
    font-size: 18px;
    font-weight: 700;
    line-height: 2;
    letter-spacing: 0.1em;
    text-align: center;
}

section.trading .tradingImg {
    position: absolute;
    right: 50px;
    top: -180px;
    -webkit-animation: action 1s infinite  alternate;
    animation: action 1s infinite  alternate;
}

/* Newsletter */
section.newsletter {
    padding: 120px 0 50px;
    position: relative;
}

.shadowNewsletter {
    position: absolute;
    right: 10%;
    top: -70px;
    z-index: -1;
}

section.newsletter .content {}

section.newsletter .content .btn.btn-secondary.title {
    border-radius: 10px;
    display: block;
    margin: 0 auto 20px;
}

section.newsletter h2 {
    font-family: var(--exo);
    font-weight: 700;
    line-height: 60px;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
}

section.newsletter p {
    font-family: var(--exo);
    font-size: 18px;
    font-weight: 500;
    line-height: 21.6px;
    text-align: center;
    color: var(
    --secondary);
    margin-bottom: 30px;
}

section.newsletter form {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}

section.newsletter form input.form-control {
    background: #0A05274D;
    height: 60px;
    padding: 0 32px;
    font-family: var(--exo);
    font-size: 16px;
    font-weight: 500;
    line-height: 19.2px;
    text-align: left;
    color: var(--secondary);
    border: 1px solid #322873;
    border-radius: 20px;
}

section.newsletter form button.btn.btn-primary {
    height: 60px;
    padding: 0 26px;
}

section.newsletter form input.form-control::placeholder {
    color: var(--secondary);
}

/* authority content */
section.authorityContent {
    padding: 190px 0 50px;
}

section.authorityContent h2 {
    font-family: var(--exo);
    font-weight: 700;
    line-height: 78px;
    text-align: left;
    color: var(--white);
    margin-bottom: 40px;
}

section.authorityContent p {
    font-family: var(--exo);
    font-size: var(--fs-h6);
    font-weight: 400;
    line-height: 30px;
    text-align: left;
    color: var(--secondary);
    margin-bottom: 30px;
}

section.authorityContent ul {
    padding: 0;
    margin: 0 0 30px 40px;
}

section.authorityContent ul li {
    font-family: var(--exo);
    font-size: var(--fs-h6);
    font-weight: 400;
    line-height: 30px;
    text-align: left;
    color: var(--secondary);
    margin-bottom: 10px;
}

/* footer */
footer {
    background-color: var(--body-bg);
    background-image: url(../images/footer-bg.png);
    background-position-y: -60px;
    background-repeat: repeat-x;
    padding: 130px 0 130px;
    background-blend-mode: lighten;
    background-position-x: center;

}

.footerLogo {
    width: 180px;
}

a.linkLogo img {
    width: 100%;
}

.navBox {
    margin: 20px 0 0;
}

.navBox ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
}

.navBox ul li {
    margin: 0 15px;
}

.navBox ul li a.linkNav {
    font-family: var(--exo);
    font-size: 16px;
    font-weight: 500;
    line-height: 21.6px;
    text-align: center;
    color: var(
    --secondary);
    text-decoration: none;
}

.navBox p.copyRight {
    font-family: var(--exo);
    font-size: 16px;
    font-weight: 500;
    line-height: 19.2px;
    text-align: center;
    color: var(--secondary);
}

ul.social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

ul.social li {
    background: #0407224D;
    border: 1px solid #252B60;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    margin: 0 3px;
}

ul.social li a.linkIcon {
    display: flex;
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
}


@media (max-width: 1800px) {
    .hero {
        padding-top: 280px;
        padding-bottom: 60px;
    }
    .hero .imgBox {
        height: 100%;
    }
    .hero .imgBox figure {
        bottom: -60px;
        right: -100px;
        margin: 0;
        top: auto;
        width: 110%;
    }
    .hero .imgBox figure img {
        width: 100%;
    }
}

@media (max-width: 1600px) {
}

@media (max-width: 1500px) {
    :root {
        /* font-size */
        --fsNav: 16px;
        --lhNav: 21.6px;

        --fsBtn: 16px;
        --lhBtn: 21.6px;

        --fs-h1: 50px;

        --fs-h2: 40px;

        --fs-h3: 30px;

        --fs-h4: 24px;

        --fs-h5: 24px;
        --fs-md-h5: 18px;

        --fs-h6: 20px;
        --fs-md-h6: 16px;

        --fs-lg-p: 20px;
        --fs-md-p: 18px;
        --fs-sm-p: 15px;

    }

    .hero {
        padding-top: 220px;
        padding-bottom: 60px;
    }
    .hero .textBox h5 {
        margin-bottom: 20px;
    }
    .hero .textBox h1 {
        line-height: 60px;
        margin-bottom: 30px;
    }

    .hero .textBox p {
        margin-bottom: 30px;
        line-height: 35px;
    }


    section.powerful .content h2 {
        line-height: 50px;
    }

    section.trading .linesBg {
        top: -56%;
    }

    section.whyProbot .content h2 {
        line-height: 50px;
    }

    section.trading h2 {
        line-height: 50px;
    }
}

@media (max-width: 1400px) {
    section.powerful .content h2 {
        line-height: 40px;
    }

    .pBox:before {
        bottom: -40px;
    }

    .reviewSlider .item h3 {
        font-size: 30px !important;
        line-height: 50px;
        max-width: 830px;
    }

    .reviewSlider .item .client .imgCol figure {
        width: 86px;
        height: 86px;
    }

    .reviewSlider .item .client .textCol h4 {
        font-size: 20px !important;
        line-height: 26px;
    }

    .reviewSlider .item .client .textCol h5 {
        font-size: 16px !important;
        line-height: 26px;
    }

    .innerBox {
        height: 330px;
    }
}

@media (max-width: 1300px) {
    :root {
        /* font-size */
        --fsNav: 14px;
        --lhNav: 21.6px;

        --fsBtn: 16px;
        --lhBtn: 21.6px;

        --fs-h1: 40px;

        --fs-h2: 30px;

        --fs-h3: 24px;

        --fs-h4: 20px;

        --fs-h5: 18px;
        --fs-md-h5: 14px;

        --fs-h6: 16px;
        --fs-md-h6: 13px;

        --fs-lg-p: 20px;
        --fs-md-p: 18px;
        --fs-sm-p: 15px;

    }
    header {
        width: calc(100% - 40px);
    }

    header .navbar {
        padding: 0 20px !important;
    }

    a.navbar-brand img {
        width: 100%;
    }

    a.navbar-brand {
        width: 150px;
    }

    ul.navbar-nav li {
        margin: 0 5px;
    }

    .hero {
        padding: 220px 20px 60px;
    }
    .hero .textBox h1 {
        line-height: 50px;
    }
    .hero .imgBox figure {
        right: 0;
    }

    section.whyProbot .content h2 {
        line-height: 40px;
    }

    section.trading h2 {
        line-height: 40px;
    }
}

@media (max-width: 1200px) {

    header {
        width: calc(100% - 0px);
    }

    section.trading p {
        font-size: 12px;
        line-height: 18px;
    }

    a.linkLogo {
        width: 150px;
        display: block;
    }

    a.linkLogo img {
        width: 100%;
    }

    .navBox, ul.social {
        margin: 10px 0 0;
    }

    .navBox ul li {
        margin: 0 10px;
    }

    .navBox ul li a.linkNav {
        font-size: 16px;
        font-weight: 500;
        line-height: 19.6px;
    }

    section.powerful {
        overflow: hidden;
    }

    .pkgBox h3.pkgPrice {
        font-size: 50px !important;
        line-height: 64px;
    }

    .pkgBox .btn.btn-plan {
        font-size: 15px;
        padding: 10px 20px;
    }
}


@media (max-width: 1100px) {}

@media (max-width: 992px) {
    .navbar-light .navbar-toggler-icon {
        filter: invert(1);
        opacity: 1;
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 0;
    }

    span.navbar-toggler-icon.probot-ico {
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='63' height='60' viewBox='0 0 63 60' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M55.744 0L62.7689 0.00394953L35.5092 29.349L35.234 29.6452L50.3147 46.7217L43.1805 46.7361L31.8309 33.8001L7.32268 60H0.251709L28.4777 29.6676L14.2462 13.36L21.3804 13.3837L31.8809 25.5561L55.744 0Z' fill='%239773FF'/%3e%3c/svg%3e");
        filter: unset;
    }

    div#navbarText {
        position: fixed;
        right: 0;
        width: 100%;
        height: 100%;
        background: var(--body-bg);
        top: 0;
    }

    header .navbar .navbar-collapse.show {
        transform: translateX(0%);
        transition: 0.5s ease-in-out;
        z-index: -1;
    }

    header .navbar .navbar-collapse {
        transform: translateX(100%);
        transition: 0.5s ease-in-out;
    }

    header .navbar .navbar-collapse.collapsing {
        height: 100% !important;
        position: fixed;
        transition: 0.5s ease-in-out;
        overflow: unset;
    }

    span.navbar-toggler-icon.probot-ico {
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='63' height='60' viewBox='0 0 63 60' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M55.744 0L62.7689 0.00394953L35.5092 29.349L35.234 29.6452L50.3147 46.7217L43.1805 46.7361L31.8309 33.8001L7.32268 60H0.251709L28.4777 29.6676L14.2462 13.36L21.3804 13.3837L31.8809 25.5561L55.744 0Z' fill='%239773FF'/%3e%3c/svg%3e ");
        filter: unset;
    }

    ul.navbar-nav {
        margin-top: 130px;
    }

    span.navbar-text {
        display: flex;
        flex-direction: column;
        width: 180px;
        margin: 0 auto;
        position: relative;
    }

    .hero {
        padding: 150px 20px 60px;
    }
    .hero .imgBox figure {
        position: relative;
        top: 0;
        right: 0;
        margin: 0;
        margin-bottom: -60px;
        width: 100%;
    }

    .hero .textBox h5 {
        text-align: center;
    }

    .hero .textBox h1 {
        text-align: center;
    }

    .hero .textBox p {
        text-align: center;
    }

    .hero .textBox a.btn.btn-secondary {
        line-height: 2.4;
        margin: 0 auto;
        display: table;
        margin-bottom: 60px;
    }

    .hero .content a.btn.btn-icon {
        display: none;
    }

    section.whyProbot .content .imgBox figure {
        left: 0;
    }

    section.reviews {
        padding: 50px 30px;
        position: relative;
    }

    section.getInTouch figure.image {
        margin-bottom: 50px;
    }

    section.getInTouch .formBox button.btn.btn-secondary.title {
        display: block;
        margin: 0 auto;
    }

    section.getInTouch .formBox h2 {
        text-align: center;
    }

    section.getInTouch .formBox h5 {
        text-align: center;
    }

    form.getIn input.form-control, textarea.form-control {
        text-align: center;
    }

    form.getIn .btn.btn-primary {
        display: block;
        margin: 0 auto;
    }

    section.trading {
        padding: 140px 0 0;
    }

    section.trading .tradingImg {
        position: absolute;
        width: 23%;
        right: 50px;
        top: 30px;
    }

    section.trading .tradingImg figure {
        margin: 0;
    }

    section.trading .tradingImg figure img {
        width: 100%;
    }

    section.pricing {
        padding: 220px 20px 40px;
        background-size: cover;
    }

    .pkgBox {
        display: block;
        margin: 0 auto 40px;
    }

    .footerLogo {
        margin: 0 auto 20px;
        display: table;
    }

    .navBox, ul.social {
        justify-content: center;
    }

    footer {
        padding: 130px 0 50px;
    }

    a.linkLogo {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .innerBox {
        height: auto;
    }

    section.trading .tradingImg {
        display: none;
    }

    .reviewSlider .item h3 {
        font-size: 20px !important;
        line-height: 35px;
        max-width: 830px;
    }

    section.trading h2, section.trading p {
        text-align: center;
    }

    section.trading a.btn.btn-white {
        font-size: 14px;
        line-height: 2.6;
        margin: 0 auto;
        display: block;
        width: 260px;
    }

    section.whyProbot .content .textBox h5 {
        text-align: center;
    }

    footer{
        padding: 70px 0 50px;
        background-position-y: 90px;
    }

    .navBox ul {
        flex-direction: column;
    }
    .navBox ul li {
        margin: 5px 0;
    }
}

@media (max-width: 575px) {
    section.authorityContent {
        padding: 150px 20px 30px;
    }

    section.authorityContent h2 {
        font-size: 22px !important;
        line-height: 30px;
        margin-bottom: 20px;
    }

    section.authorityContent p {
        font-size: 15px;
        line-height: 24px;
        margin-bottom: 20px;
    }

    section.pricing h2 {
        font-size: 30px !important;
        line-height: 38px;
    }
}

@media (max-width: 480px) {
    a.navbar-brand {
        width: 130px;
    }
    button.navbar-toggler {
        padding: 0;
    }

    .hero .textBox h1 {
        font-size: 22px !important;
        line-height: 30px;
    }

    .hero .textBox p {
        font-size: 15px;
        line-height: 24px;
    }
    .hero .textBox a.btn.btn-secondary {
        height: 40px;
    }

    section.powerful .content p br {
        display: none;
    }

    .btn.btn-secondary {
        font-size: 10px;
        padding: 0 20px;
    }

    section.powerful {
        padding: 70px 0 50px;
    }

    section.powerful .content h2 {
        font-size: 22px !important;
        line-height: 30px;
    }

    section.powerful .content p {
        font-size: 14px;
        line-height: 23px;
    }

    section.whyProbot {
        padding: 70px 0 50px;
    }

    section.whyProbot .content h2 {
        line-height: 34px;
        font-size: 24px !important;
    }

    section.whyProbot .content .textBox h5 {
        line-height: 26px;
    }

    .probotBox {
        flex-direction: column;
    }

    .probotBox .imgCol {
        text-align: center;
        width: 100%;
    }

    .probotBox hr.dvdr {
        width: 100%;
        height: 1px;
        margin: 10px auto;
    }

    .probotBox h6 {
        font-size: 14px !important;
        text-align: center;
    }

    .probotBox p {
        font-size: 11px;
        line-height: 18px;
        text-align: center;
    }

    section.whyProbot .content .textBox a.btn.btn-primary {
        margin: 0 auto;
        display: block;
        width: 200px;
    }

    section.reviews {
        padding: 50px 0;
        position: relative;
    }

    section.reviews h2 {
        font-size: 24px !important;
        line-height: 32px;
    }

    .reviewSlider .item h3 {
        font-size: 14px !important;
        line-height: 22px;
        max-width: 830px;
    }

    .reviewSlider .item .client {
        flex-direction: column;
    }

    .reviewSlider .item .client .imgCol {
        margin-right: 0;
        text-align: center;
    }

    .reviewSlider .item .client .textCol h4 {
        text-align: center;
    }

    .reviewSlider .item .client .textCol h5 {
        text-align: center;
    }

    section.faq {
        padding: 130px 0 0;
    }

    section.faq .content h2 {
        font-size: 20px !important;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    section.faq .content h5 {
        font-size: 14px !important;
        line-height: 24px;
    }

    .accordion-item .accordion-header {
        border-radius: 20px;
        margin: 0 !important;
    }

    .accordion-item .accordion-header button.accordion-button {
        font-size: 14px;
        line-height: 20px;
    }

    .accordion-item .accordion-body p {
        font-size: 14px;
        line-height: 20px;
    }

    section.trading {
        padding: 70px 0 0;
    }

    section.trading .content {
        padding: 30px;
    }

    section.trading h2 {
        line-height: 31px;
        font-size: 22px !important;
    }

    section.trading a.btn.btn-white {
        font-size: 12px;
        line-height: 2;
        padding: 10px 13px;
        width: 100%;
    }
}
.text-secondary {
    color: var(--secondary);
}
