/*-===========================-global-style-for-ol-browsers-================================-*/

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%;
    font: inherit;
    vertical-align: baseline;
}

body {
    margin: 0;
    padding: 0;
}

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

ol,
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul li {
    list-style: none;
}

li>ul,
li>ol {
    padding-left: 0;
}


table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

* {
    outline: none !important;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

input {
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    -ms-box-shadow: none;
}

button,
a {
    cursor: pointer;
    text-decoration: none;
    border: 0;
    display: inline-block;
    padding: 0;
}

img {
    max-width: 100%;
    max-height: 100%;
    vertical-align: middle;
}

.container {
    max-width: 1080px;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
    position: relative;
}
/*-=====================-global-style-for-ol-browsers-end-=========================-*/

/*-=====================-header-style-start-================================-*/
body {
    background-color: transparent;
    background-image: url("../img/bg-body.png");
    background-size: cover;
    background-repeat: no-repeat;
}

.header {
    padding: 10px 0;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: transparent;
    border-bottom: 0px solid #E5E7EB;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    box-shadow: none;
    position: relative;
    z-index: 1;
    position: sticky;
    top: 0;
    z-index: 1020;
}

.header.active {
    background: #ffffff;
}

.header .container {
    max-width: 1140px;
    font-family: "Inter", sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .logo {
    max-width: 200px;
}

.header .button{
    font-family: "Poppins", sans-serif;
}

.navbar-toggle {
    display: none;
    border-bottom: 1px solid #140F33;
    height: 17px;
    position: relative;
    transition: all 300ms linear;
    width: 24px;
    background-image: none !important;
    vertical-align: middle;
    content: "";
    background: no-repeat center center;
    background-size: 100% 100%;
    cursor: pointer;
}

.navbar-toggle:after, .navbar-toggle:before {
    background-color: #140F33;
    content: '';
    height: 1px;
    left: 0;
    position: absolute;
    top: 0;
    transition: all 300ms linear;
    width: 24px;
    z-index: 2;
}

.navbar-toggle:after {
    top: 8px;
}

.header nav {
    display: flex;
    align-items: center;
    gap: 56px;
}

.header nav ul li {
    display: inline-block;
    margin-right: 40px;
}

.header nav ul li a {
    padding: 8px;
    font-family: 'Inter', sans-serif;
    color: #140F33 !important;
    font-size: 14px !important;
    transition: all 0.3s ease-out;
    border-bottom: 2px solid rgba(225, 225, 225, 0);
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
}

.header nav ul li a:hover {
    color: #47C0A5 !important;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    border-bottom: 2px solid #47C0A5;
}

.header nav ul li:last-child {
    margin-right: 0;
}

.btn {
    width: auto;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    background-color: #a52834;
    font-size: 16px;
    border-top: 2px solid #a52834;
    border-bottom: 2px solid #a52834;
    border-left: 2px solid #a52834;
    border-right: 2px solid #a52834;
    color: #ffffff;
    border-radius: 6px;
    padding: 12px 40px !important;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn:hover {
    background-color: #ffffff;
    border-top: 2px solid #a52834;
    border-bottom: 2px solid #a52834;
    border-left: 2px solid #a52834;
    border-right: 2px solid #a52834;
    color: #a52834;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
}

.header .btn.button {
    width: auto;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    background-color: #a52834;
    font-size: 14px;
    border-top: 1px solid #47C0A5;
    border-bottom: 1px solid #47C0A5;
    border-left: 1px solid #47C0A5;
    border-right: 1px solid #47C0A5;
    color: #ffffff;
    border-radius: 6px;
    padding: 12px 40px !important;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
}

.header .btn.button:hover {
    background-color: #ffffff;
    border-top: 1px solid #a52834;
    border-bottom: 1px solid #a52834;
    border-left: 1px solid #a52834;
    border-right: 1px solid #a52834;
    color: #a52834;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
}

.header .mobile-nav {
    display: none;
}
/*-=====================-header-style-end-================================-*/
/*-=====================-hero-style-start-================================-*/
.hero {
    padding-top: 60px;
}

.hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero .hero__text {
    max-width: 480px;
}

.hero .hero__text h1 {
    font-family: 'Poppins', sans-serif;
    color: black;
    font-size: 42px;
    letter-spacing: 0px;
    line-height: 125% !important;
    font-weight: bold;
    font-style: normal;
    text-decoration: none;
    margin-bottom: 10px;
}

.hero .hero__text h1 span {
    color: rgb(165, 40, 52);
}

.hero .hero__text span.line {
    font-family: 'Nunito', sans-serif;
}

.hero .hero__text p {
    font-family: 'Nunito', sans-serif;
    color: #000000;
    font-size: 20px;
    margin: 0 0 15px 0;
    line-height: 150% !important;
    margin-top: 10px;
    margin-bottom: 15px;
}

.hero .hero__text p strong{
    font-weight: bolder;
}

.hero .hero__img {
    max-width: 480px;
}

.hero hr {
    margin-bottom: 30px;
    margin-top: 30px;
    border-top: 1px solid #e5e7eb;
    width: 100%;
}
/*-=====================-hero-style-end-================================-*/

/*-=====================-smart-sales-style-start-================================-*/
.smart-sales {
    padding-bottom: 30px;
    padding-top: 50px;
    background-color: #a52834;
}

.smart-sales h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: bolder;
    color: #ffffff;
    font-size: 42px;
    letter-spacing: 0px;
    line-height: 125%;
    font-weight: bold;
    font-style: normal;
    text-decoration: none;
    max-width: 670px;
    margin-bottom: 70px;
}

.smart-sales_content {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.smart-sales_box {
    max-width: 360px;
    padding: 0 30px;
}

.smart-sales_box img {
    max-width: 64px;
}

.smart-sales_box h5 {
    font-family: 'Inter', sans-serif;
    font-weight: bolder;
    color: #ffffff;
    font-size: 20px;
    letter-spacing: 0px;
    line-height: 125%;
    margin: 24px 0 8px 0;
}

.smart-sales_box p {
    font-family: 'Nunito', sans-serif;
    color: #ffffff;
    font-size: 16px;
    margin: 0 0 15px 0;
    line-height: 150%;
}
/*-=====================-smart-sales-style-end-================================-*/

/*-=====================-plan-style-end-================================-*/
.plan {
    padding-top: 50px;
    background-color: #ffffff;
}

.plan_hero {
    text-align: center;
    margin-bottom: 60px;
}

.plan_hero h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: bolder;
    color: black;
    font-size: 42px;
    letter-spacing: 0px;
    line-height: 125%;
    font-weight: bold;
    font-style: normal;
    text-decoration: none;
    margin-bottom: 8px;
    
}

.plan_hero p {
    font-family: 'Nunito', sans-serif;
    color: #000000;
    font-size: 16px;
    margin: 0 0 15px 0;
    line-height: 150%;
}

.plan_content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.plan_box {
    display: flex;
    flex-direction: column;
    max-width: 300px;
    background-color: #ffffff;
    background-image: none;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid #e5e7eb;
    border-radius: 0px;
    padding: 1.75rem;
}

.plan_box .label {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: bolder;
    color: #000000;
    font-size: 20px;
    letter-spacing: 0px;
    line-height: 125%;
    margin-bottom: 40px;
}

.plan_box .plan_desc {
    margin-top: 70px;
}

.plan_box .price del {
    color: rgb(255, 0, 0)!important;
    font-family: 'Nunito', sans-serif;
    color: #000000;
    font-size: 28px;
    margin: 0 0 15px 0;
    line-height: 150%;
}

.plan_box .price {
    font-family: 'Nunito', sans-serif;
 }

.price-now {
    font-size: 24px;
}

em {
    font-style: italic;
    font-size: 11px;
}

.plan_desc {
    font-family: 'Nunito', sans-serif;
    color: #000000;
    font-size: 16px;
    margin: 0 0 15px 0;
    line-height: 150% !important;
}

.plan_desc p {
    margin-bottom: 15px;
}

.plan_desc em {
    display: inline-block;
    margin-bottom: 15px;
}

.plan_desc h6 {
    font-family: 'Nunito', sans-serif;
    color: #000000;
    font-weight: bolder;
    margin: 0 0 15px 0;
    line-height: 150% !important;
    font-size: 14px;
}

.plan_acttion {
    width: 100%;
    text-align: center;
    margin: auto 0 0 0;
}

.plan_box.grey {
    background-color: #f6f6f6;
    background-image: none;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid #e5e7eb;
    border-radius: 0px;
}

.plan_box.black {
    background-color: #000000;
    background-image: none;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid #e5e7eb;
    border-radius: 0px;
}

.plan_box.black .label {
    color: rgb(165, 40, 52);
}

.plan_box.black .price-now {
    color: #ffffff;
}

.plan_box.black em, .plan_box.black .plan_desc p, .plan_box.black .plan_desc h6 {
    color: rgb(255, 255, 255);
}

.banner {
    padding-bottom: 30px;
    padding-top: 50px;
    background-color: #D1D3D3;
}

.banner p {
    text-align: center;
    text-decoration: underline;
    font-family: 'Nunito', sans-serif;
    color: #000000;
    font-size: 16px;
    margin: 0 0 15px 0;
    line-height: 150%;
}
/*-=====================-plan-style-end-================================-*/

.faq {
    padding-bottom: 30px; 
}

.faq h3 {
    font-family: 'Poppins', sans-serif;
    color: black;
    font-size: 42px;
    letter-spacing: 0px;
    line-height: 125%;
    font-weight: bold;
    font-style: normal;
    text-decoration: none;
    margin-bottom: 50px;
}

.faq-first {
    padding-top: 50px;
    background-color: #f6f6f6;
}

.faq-first_content {
    display: flex;
    margin-right: -30px;
    margin-left: -30px;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.faq-box {
    padding-left: 30px;
    padding-right: 30px;
    max-width: 540px;
    width: 100%;
}

.faq-box h5 {
    font-family: 'Inter', sans-serif;
    color: #000000;
    font-size: 20px;
    letter-spacing: 0px;
    line-height: 125%;
    font-weight: bolder;
    margin-bottom: 8px;
}

.faq-box p {
    font-family: 'Nunito', sans-serif;
    color: #000000;
    font-size: 16px;
    margin: 0 0 15px 0;
    line-height: 150% !important;
}

.faq-secund_content {
    display: flex;
    margin-right: -30px;
    margin-left: -30px;
    margin-bottom: 30px;
}

.faq-box-duble {
    display: flex;
    flex-direction: column;
}

.action-banner {
    padding-bottom: 50px;
    padding-top: 50px;
    background-color: transparent;
}

.action-banner_content {
    padding: 3rem;
    background-color: #a52834;
    background-image: none;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    border: 0px solid #dddddd;
    border-radius: 10px;
    text-align: center;
}

.action-banner_content p {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-size: 40px;
    letter-spacing: 0px;
    line-height: 125%;
    font-weight: bold;
    font-style: normal;
    text-decoration: none;
    text-align: center;
    margin-bottom: 1.8rem;
}

.action-banner_content a {
    width: auto;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    font-size: 16px;
    border-top: 0px solid #ffffff;
    border-bottom: 0px solid #ffffff;
    border-left: 0px solid #ffffff;
    border-right: 0px solid #ffffff;
    color: #140F33;
    border-radius: 6px;
    padding: 12px 40px;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.action-banner_content a:hover {
    background-color: #000000;
    border-top: 0px solid #000000;
    border-bottom: 0px solid #000000;
    border-left: 0px solid #000000;
    border-right: 0px solid #000000;
    color: #ffffff;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
}

footer {
    background-color: #000000;
    padding-top: 30px;
    padding-bottom: 30px;
}

footer p, footer a {
    font-family: 'Nunito', sans-serif;
    color: #ffffff;
    font-size: 14px;
    line-height: 24px;
}

footer a {
    text-decoration: underline;
}
/*-=====================-media-start-================================-*/
@media screen and (max-width: 1200px) { 
    .header .container {
        max-width: 960px;
    }

    .container {
        max-width: 945px;
    }

    .hero .col {
        max-width: 390px;
    }
}

@media screen and (max-width: 991px) { 
    .header .container {
        max-width: 720px;
    }

    .container {
        max-width: 690px;
    }

    .hero .col {
        max-width: 300px;
    }
}

@media screen and (max-width: 768px) {
    .navbar-toggle {
        display: inline-block;
    }

    .header .desktop-nav {
        display: none;
    }

    .header .mobile-nav {
        display: block;
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
        text-align: center;
        overflow: hidden;
        margin-top: 0;
        height: 0;
        transition: all 0.3s ease;
        visibility: hidden;
    }

    .header .mobile-nav.expanded {
        height: 145px;
        visibility: visible;
        margin-top: 24px;
    }

    .navbar-toggle.expanded {
        border-color: transparent;
    }

    .navbar-toggle.expanded::after {
        transform: rotate(45deg);
    }

    .navbar-toggle.expanded::before {
        transform: translateY(8px) rotate(-45deg);
    }

    .header nav.mobile-nav ul li {
        display: block;
        margin-right: 0;
    }

    .header .header__actions {
        width: 100%;
        margin-top: 24px;
    }

    .header .btn.button {
        max-width: 100%;
        width: 100%;
    }

    .header .container {
        justify-content: space-between;
    }

    .hero .container {
        flex-direction: column-reverse;
    }

    .container {
        max-width: 540px;
    }

    .hero .col {
        max-width: 100%;
    }

    .hero .hero__img {
        margin-bottom: 24px;
    }

    .hero .hero__text h1 {
        font-size: 28px !important;
    }

    .hero .hero__text p {
        font-size: 19px;
        line-height: 135%!important;
    }

    .smart-sales_box {
        max-width: 100%;
        padding: 0;
    }

    .smart-sales_content {
        flex-direction: column;
        gap: 48px;
    }

    .smart-sales h3 {
        font-size: 28px;
    }

    .plan_content {
        flex-direction: column;
    }

    .plan_box {
        max-width: 100%;
    }

    .plan_hero h3 {
        font-size: 28px;
    }

    .faq-first_content, .faq-secund_content {
        flex-direction: column;
    }

    .faq h3 {
        font-size: 28px;
    }

    .faq-box {
        padding: 0;
        max-width: 100%;
    }

    .faq-first_content, .faq-secund_content {
        margin-left: 0;
        margin-right: 0;
    }

    .action-banner_content {
        padding: 1.2rem;
    }

    .action-banner_content p {
        font-size: 24px;
    }
    
    footer p {
        text-align: center;
    }
}
/*-=====================-media-end-================================-*/