/* -----/------base styling----/------ */
@font-face {
    font-family: "TT Firs Neue" ;
    src: url(./assets/fonts/fonts/tt-firs/TT\ Firs\ Neue\ Trial\ Medium.ttf);
    scr: url(./assets/fonts/fonts/aeonik/AeonikTRIAL-Regular.otf);
}

:root {
    --text-primary-color: rgba(0, 0, 0, 0.60);
    --text-primary-font-size: 1.5rem;
    --text-primary-font-family: "Aeonik", sans-serif;
    --text-primary-font-weight: 400;
    --text-primary-line-height: 29px;

    --text-title-font-weight: 500;
    --text-title-width: 549px;
    --text-title-color: #1C1C1C;
    --text-title-font-size: 3.25rem;
    --text-title-line-height: 52px;
    --text-title-font-family: "TT Firs Neue", sans-serif;

    --text-link-font-size: 1.25rem;
    --text-link-font-weight: 400;
    --text-link-color: #00000099;
    --text-link-font-family: "Aeonik", sans-serif;
}

body {
    font-family: "TT Firs Neue";
    background-color: white;
}

p {
    color: var(--text-primary-color);
    font-family: var(--text-primary-font-family);
    font-size: var(--text-primary-font-size);
    list-style: none;
    font-weight: var(--text-primary-font-weight);
}

h2 {
    font-weight: var(--text-title-font-weight);
    width: var(--text-title-width);
    color: var(--text-title-color);
    font-size: var(--text-title-font-size);
    line-height: var(--text-title-line-height);
    font-family: var(--text-title-font-family);
}

a {
    font-family: var(--text-link-font-family);
    font-size: 1.25rem;
    font-weight: var(--text-link-font-weight);
    color: var(--text-link-color);
    text-decoration: none;
}

a:hover {
    color: #181818 !important;
}

li {
    list-style: none;
}

h1 {
    width: 1030px;
    font-family: var(--text-title-font-family);
    font-size: 6.25rem;
    font-weight: 500;
    line-height: 100px;
    letter-spacing: 0em;
    text-align: center;
}

img:hover {
    transform: scale(1.02);
}

section {
    padding-top: 100px;
}

img {
    max-width: 100%;
}

/* -----/------base styling----/------ */

/* -----/------navbar----/------ */
.navbar {
    border-bottom: 1px solid #F0F0F0;
    height: 90px;
}

.navbar .navbar-brand {
    width: 199px;
    height: 46.05px;
}

.navbar .list-container a {
    font-family: var(--text-link-font-family);
    font-size: 1.25rem;
    font-weight: var(--text-link-font-weight);
    color: var(--text-link-color);
    text-decoration: none;
}

.navbar .icons {
    display: flex;
    gap: 8px;
}

.navbar .hamburger-menu-container {
    width: 100%;
    display: flex;
    align-items: center;
}

.navbar .hamburger-menu-container .list-container {
    display: flex;
    gap: 38px;
}

.navbar .icons img:hover {
    transform: scale(1.05);
}

@media screen and (max-width: 991px) {
    .hamburger-menu-container {
        width: 100%;
        height: calc(100vh - 90px + 20px) !important;
        display: flex;
        flex-direction: column;
        align-content: space-between;
        margin: 0 !important;
        padding: 0 !important;
        text-align: center;
        background-color: white;
    }

    .hamburger-menu-container .list-container {
        padding-top: 50px;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .hamburger-menu-container ul {
        width: 100%;
        height: 100%;
    }

    .hamburger-menu-container .icons {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-end;
        padding-bottom: 80px;
    }

}

/* -----/------navbar----/------ */

/* -----/------hero----/------ */
.hero {
    padding-top: 200px;
    overflow: hidden;
}

.hero .container {
    position: relative;
}

.hero .container .images img:nth-child(1) {
    position: absolute;
    top: 0;
    left: 0;
}

.hero .container .images img:nth-child(2) {
    position: absolute;
    top: 41%;
    left: 0;
}

.hero .container .images img:nth-child(3) {
    position: absolute;
    top: 0;
    right: 0;
}

.hero .container .images img:nth-child(4) {
    position: absolute;
    top: 40%;
    right: 0;
}

.hero main p {
    width: 808px;
    font-size: 1.5rem;
}

.hero .button-group {
    display: flex;
    gap: 18.96px;
}

.hero .button-group img:hover {
    cursor: pointer;
}

.hero .button-group-mobile {
    display: none;
}

.hero .content p:last-child {
    font-family: TT Firs Neue;
    font-size: 1.5rem;
    font-weight: 500;
    color: #1C1C1C;
}

.hero main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.hero img {
    max-width: fit-content !important;
    height: fit-content;
}

.hero .list-container {
    animation-name: moveToLeft;
    animation-duration: 60s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes moveToLeft {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}


@media screen and (max-width: 1399px) {
    .hero h1 {
        font-size: 5.3125rem;
        line-height: 80px;
    }

    .hero .container .images img:nth-child(2) {
        position: absolute;
        top: 36%;
        left: 0;
    }

    .hero .container .images img:nth-child(4) {
        position: absolute;
        top: 35%;
        right: 0;
    }

    /* .hero .list-container img {
        height: 80px;
    } */
}

@media screen and (max-width: 1199px) {
    .hero h1 {
        font-size: 4.375rem;
        width: 750px;
    }

    .hero .container .images img:nth-child(2) {
        position: absolute;
        top: 41%;
        left: 0;
    }

    .hero .container .images img:nth-child(4) {
        position: absolute;
        top: 40%;
        right: 0;
    }

    .hero .list-container img {
        height: 70px;
    }
}

@media screen and (max-width: 991px) {
    .hero .container .images {
        display: none;
    }

    .hero .list-container img {
        height: 50px;
    }

    .hero main p {
        max-width: 90% !important;
    }
}

@media screen and (max-width: 767px) {

    .hero .list-container img {
        height: 35px;
    }

    .hero h1 {
        font-size: 3.3rem;
        max-width: 100%;
        line-height: 60px;
    }

    .hero p {
        font-size: 1.3rem;
        max-width: 100%;
        line-height: 35px;
    }
}

@media screen and (max-width: 576px) {
    .hero {
        padding-top: 200px !important;
    }

    .hero .button-group {
        display: none;
    }

    .hero .button-group-mobile {
        display: flex;
        gap: 11.26px;
    }

    .hero h1 {
        font-size: 2.625rem;
        width: 339px;
        line-height: 42px;
        width: 500;
    }

    .hero main p {
        width: 349px;
        font-weight: 400;
        font-size: 1rem;
        line-height: 21.6px;
    }

    .hero main {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    .hero .content .pt-5 {
        width: 100%;
        font-size: 0.875rem !important;
        font-weight: 500 !important;
        padding-top: 5px !important;
    }

    .hero .list-container {
        padding-top: 0 !important;
    }
}

/* -----/------hero----/------ */

/* -----/------features----/------ */
/* -----/------features row-1----/------ */
.features .features-content {
    height: 100%;
    border-radius: 8px;
    background: #FAFAFA;
    padding-left: 30px;
    padding: 50px 20px 50px 20px !important;
}


.features .intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.features .image {
    display: flex;
    justify-content: center !important;
    align-items: flex-start;
}

.features img:hover {
    transform: none;
}

.features .intro p,
.intro-2 p,
.intro-3 p {
    width: 550px !important;
}


@media screen and (max-width: 1399px) {

    .features .features-content h2 {
        font-size: 2.5rem;
        max-width: 95% !important;
        line-height: 40px;
    }

    .features .image img {
        max-width: 95% !important;
    }

    .features .features-content .intro p {
        width: 95% !important;
    }
}

@media screen and (max-width: 1199px) {

    .features .features-content h2 {
        font-size: 2.3rem;
    }
}

@media screen and (max-width: 991px) {

    .features .features-content h2 {
        font-size: 1.7rem !important;
        line-height: 30px;
    }

    .features .features-content p {
        line-height: 28px;
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 767px) {
    .features .features-content {
        display: flex;
        flex-direction: column-reverse;
        gap: 50px;
        padding-bottom: 50px;
    }

    .features .features-content h2 {
        text-align: center;
        width: 350px;
    }

    .features .features-content p {
        text-align: center;
    }
}

/* -----/------features row-1----/------ */

/* -----/------features row-2----/------ */
.features .features-content-2 {
    height: 100%;
    border-radius: 8px;
    background: #FAFAFA;
    padding-left: 30px;
    padding: 50px 20px 50px 20px !important;
}


.features .intro-2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.features .image-2 {
    display: flex;
    justify-content: center !important;
    align-items: flex-start;

}

@media screen and (max-width: 1399px) {

    .features .features-content-2 h2 {
        font-size: 2.5rem;
        max-width: 95% !important;
        line-height: 40px;
    }

    .features .image-2 img {
        max-width: 95% !important;
    }

    .features .features-content-2 .intro-2 p {
        width: 95% !important;
    }
}

@media screen and (max-width: 1199px) {

    .features .features-content-2 h2 {
        font-size: 2.3rem;
        ;
    }
}

@media screen and (max-width: 991px) {
    .features .features-content-2 h2 {
        font-size: 1.7rem !important;
        line-height: 30px;
    }

    .features .features-content-2 p {
        line-height: 28px;
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 767px) {
    .features .features-content-2 {
        display: flex;
        flex-direction: column-;
        gap: 50px;
        padding-bottom: 50px;
    }

    .features .features-content-2 h2 {
        text-align: center;
        width: 350px;
    }

    .features .features-content-2 p {
        text-align: center;
    }
}

/* -----/------features row-2----/------ */

/* -----/------features row-3----/------ */
.features .features-content-3 {
    height: 100%;
    border-radius: 8px;
    background: #FAFAFA;
    padding-left: 30px;
    padding: 50px 20px 50px 20px !important;
}

.features .intro-3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.features .image-3 {
    display: flex;
    justify-content: center !important;
    align-items: flex-start;
}

@media screen and (max-width: 1399px) {
    .features .features-content-3 h2 {
        font-size: 2.5rem;
        max-width: 95% !important;
        line-height: 40px;
    }

    .features .image-3 img {
        max-width: 95% !important;
    }

    .features .features-content-3 .intro-3 p {
        width: 95% !important;
    }
}

@media screen and (max-width: 1199px) {
    .features .features-content-3 h2 {
        font-size: 2.3rem;
    }
}

@media screen and (max-width: 991px) {
    .features .features-content-3 h2 {
        font-size: 1.7rem !important;
        line-height: 30px;
    }

    .features .features-content-3 p {
        line-height: 28px;
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 767px) {
    .features .features-content-3 {
        display: flex;
        flex-direction: column-reverse;
        gap: 50px;
        padding-bottom: 50px;
    }

    .features .features-content-3 h2 {
        text-align: center;
        width: 350px;
    }

    .features .features-content-3 p {
        text-align: center;
    }
}

/* -----/------features row-3----/------ */

/* -----/------features row-4----/------ */
.features .features-content-4 .title p {
    width: 575px !important;
    line-height: 28.8px;
    font-size: 1.5rem;
    font-family: var(--text-primary-font-family);
    line-height: 29px;
    letter-spacing: 0em;
}

.features .card {
    height: 272px;
    border-radius: 8px;

}

.features .card .card-body {
    height: 100%;
    Padding: 24px !important;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.features .card h5 {
    font-family: var(--text-title-font-family);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    text-align: left;
    line-height: 32.4px;
}

.features .card p {
    font-family: var(--text-primary-font-family);
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0em;
    text-align: left;
    line-height: 24px;

}

@media screen and (max-width: 1399px) {
    .features .card {
        height: 100%;
    }

    .features .card p {
        max-width: 100% !important;
    }
}

@media screen and (max-width: 1199px) {
    .features .card p {
        font-size: 1.15rem;
        line-height: 22px;
        width: 100% !important;
    }

    .features .card h5 {
        font-size: 1.4rem;
        line-height: 25.4px;
    }
}

@media screen and (max-width: 991px) {
    .features-content-4 .card-icon img {
        width: 40px;
        height: 39.38px;
    }

    .features .card p {
        line-height: 23px;
        font-size: 1rem;
    }

    .features .card h5 {
        font-size: 1.3rem;
    }

    .features .card .card-body {
        Padding: 20px !important;
        gap: 10px;
    }

    .features .card h5 {
        line-height: 20px !important;

    }

    .features .card p {
        line-height: 20px;
    }
}

@media screen and (max-width: 767px) {
    .features .features-content-4 .title {
        width: 100%;
    }

    .features .features-content-4 .title h2 {
        width: 100% !important;
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 30px !important;
    }

    .features .features-content-4 .title p {
        font-size: 1.4rem !important;
        width: 100% !important;
        text-align: center;
        margin-bottom: 30px !important;
    }

    .features .features-content-4.card p {
        font-size: 1.3rem;
        line-height: 40px;
        width: 100% !important;
    }

    .features .features-content-4.card h5 {
        font-size: 2.5rem;
        line-height: 50px;
    }

    .features .features-content-4 .first-row {
        padding-bottom: 0 !important;
    }

    .features .card-container {
        margin-bottom: 30px !important;
    }

    .features .features-content-4 .card-body {
        gap: 20px !important;
    }
}

@media screen and (max-width: 576px) {
    .features .features-content-4 .title h2 {
        width: 350px !important;
        font-size: 2rem;
        line-height: 32px;
    }

    .features .features-content-4 .title p {
        width: 100% !important;
        font-size: 1.3rem !important;
        /* Line-height:19.2px; */
    }


}

/* -----/------features row-4----/------ */
/* -----/------features----/------ */

/* -----/------events----/------ */
.events .events-content {
    border-radius: 8px;
    background: #FAFAFA;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 50px 20px 50px 20px !important;
}

.events .intro {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 25px;
    align-items: start;

}

.events .intro h2 {
    font-size: 2.8125rem;
    font-weight: 500;
    letter-spacing: 0em;
    text-align: left;
    width: 549px;
    color: #1C1C1C;
    padding: 0;
    margin: 0;
}

.events .events-content .intro p {
    width: 650px;
    font-family: var(--text-primary-font-family);
    font-size: 1.375rem;
    font-weight: 400;
    letter-spacing: 0em;
    text-align: left;
    width: 609px;
    padding: 0;
    margin: 0;
}

.events-content .image-2 {
    padding: 0;
    margin: 0;
}

.events-content .image-2 img {
    max-width: 100% !important;
}

.events-content img:hover {
    transform: none;
}

.events-content .image-2 img {
    max-width: 100% !important;
}

@media screen and (max-width: 1399px) {
    .events .events-content {
        display: flex;
        align-items: center;
        padding-top: 80px;
    }

    .events .events-content h2 {
        font-size: 2.5rem;
        width: 400px;
        line-height: 40px;
    }

    .events .events-content p {
        font-size: 1.5rem;
        width: 400px !important;
    }


    .events .events-content .image {
        display: flex;
        justify-content: center;
    }

    .events .events-content .image img {
        max-width: 80%;
    }
}

@media screen and (max-width: 991px) {
    .events .events-content h2 {
        font-size: 2rem;
        width: 335px;
    }

    .events .events-content p {
        font-size: 1.1rem !important;
        width: 300px !important;
    }
}

@media screen and (max-width: 767px) {
    .events .events-content {
        display: flex !important;
        gap: 50px;
        padding: 0;
        margin: 0;
        padding: 50px 0;
        max-height: 100% !important;
    }

    .events .events-content .intro {
        display: flex;
        align-items: center;
        justify-content: center;

    }

    .events .intro .image-2 {
        display: flex;
        justify-content: center;
    }

    .events .events-content h2 {
        text-align: center !important;
    }

    .events .events-content p {
        text-align: center !important;
    }

    .events-content .image-2 img {
        max-width: 80% !important;
    }
}

@media screen and (max-width: 576px) {
    .events .events-content {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .events .events-content h2 {
        width: 310px;
        height: 48px;
        font-size: 24px;
        font-weight: 500;
        line-height: 24px;
        letter-spacing: 0em;
        text-align: center;
    }

    .events .events-content p {
        font-size: 1rem;
        font-weight: 400;
        line-height: 19px;
        letter-spacing: 0em;
        text-align: center !important;
        width: 310px !important;
    }

    .events .intro .image-2 {
        display: flex;
        align-items: center;
        justify-content: center;
    }


    .events-content .image-2 img {
        max-width: 90% !important;
    }
}

/* -----/------events----/------ */

/* -----/------review----/------ */
.review .title h2 {
    width: 561px;
}

.review .title p {
    width: 600px;
    font-family: var(--text-primary-font-family);
    font-weight: 400;
    line-height: 29px;
    font-size: 1.5rem;
}

.review .control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.review .card {
    background: #000000;
    border-radius: 8px;
    height: 258px;
}


.review .card .card-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.review .card-body h5 {
    font-family: var(--text-title-font-family);
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.01em;
    text-align: left;
    color: #FFFFFF;

}

.review .card-body p {
    color: #FFFFFF;
    font-family: var(--text-primary-font-family);
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0em;
    text-align: left;
}

.review .carousel {
    display: none;
}

.review .control img {
    cursor: pointer;
}

@media screen and (max-width: 1399px) {
    .review .card {
        height: 100%;
    }
}

@media screen and (max-width: 991px) {
    .review .card-body h5 {
        font-size: 1.2rem;
    }

    .review .card-body p {
        font-size: 1rem;
    }

    .review .card-body {
        margin: 0;
        padding: 10px;
    }
}

@media screen and (max-width: 767px) {

    .review .title {
        width: 100%;
    }

    .review .container {
        width: 100%;
    }

    .review .card {
        background: #000000;
        border-radius: 8px;
    }

    .review .card-body {
        padding: 30px;
    }

    .review .card-content {
        display: none;
    }

    .review .carousel {
        display: block;
    }

    .review .title h2 {
        font-size: 2.8rem;
        width: 100% !important;
        line-height: 50px;
        font-weight: 500;
    }

    .review .title p {
        width: 90%;
    }

    .review .control{
        display: none;
    }
}

@media screen and (max-width: 576px) {
    .review .title h2 {
        font-size: 2rem;
        line-height: 32px;
    }

    .review .title p {
        font-size: 1.1rem;
        line-height: 19.2px;
    }

}
/* -----/------review----/------ */

/* -----/------one-click----/------ */
.one-click .one-click-desktop {
    background-image: url(./assets/images/one-click/one-click-bg.png);
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center !important;
    justify-content: center;
    padding: 50px 0 50px 0;
    overflow: hidden;
}

.one-click-desktop .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.one-click-mobile {
    display: none !important;
}

.one-click-desktop .text {
    width: 80%;
    padding-bottom: 30px;
}

.one-click-desktop h2 {
    width: 570px !important;
    font-family: TT Firs Neue;
    font-size: 52px;
    font-weight: 500;
    line-height: 52px;
    letter-spacing: 0em;
    text-align: left;
    color: #FFFFFF;
}

.one-click-desktop .image {
    max-width: 80% !important;
    display: flex;
    justify-content: center;
}

.one-click img:hover {
    transform: none;
}

.one-click .slider {
    max-height: 180px;
    padding: 40px 0;
    background: #000000;
    overflow: hidden;
}

.one-click ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0;
    padding: 0;
    animation-name: move-left;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-duration: 20s;
}

@keyframes move-left {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}

.one-click ul li {
    font-family: var(--text-title-font-family);
    font-size: 3.25rem;
    font-weight: 500;
    color: #FFFFFF;
    display: flex;
    align-items: center;
}

.one-click .slider-mobile {
    display: none;
}

@media screen and (max-width: 1391px) {
    .one-click .slider {
        padding: 20px 0;
    }

    .one-click ul li {
        font-size: 3rem;
    }

    .one-click .slider img {
        width: 80px;
        height: 80px;
    }

}

@media screen and (max-width: 991px) {
    .one-click ul li {
        font-size: 2.5rem;
    }

    .one-click .slider img {
        width: 60px;
        height: 60px;
    }
}

@media screen and (max-width: 767px) {
    .one-click h2 {
        font-size: 2.8rem;
    }

    .one-click ul li {
        font-size: 2.3rem;
    }

    .one-click .slider img {
        width: 50px;
        height: 50px;
    }
}

@media (orientation: portrait) {
    .one-click-desktop {
        display: none !important;
    }

    .one-click .slider {
        display: none !important;
    }

    .one-click-mobile {
        background: url(./assets/images/one-click/one-click-mobile-bg.png) !important;
        display: flex !important;
        flex-direction: column-reverse;
        width: 100% !important;
        height: 100% !important;
        padding-bottom: 50px;
        background-repeat: no-repeat !important;
        background-size: cover !important;
        display: flex;
        align-items: center !important;
        justify-content: center;
        padding-left: 5%;
    }

    .one-click-mobile .content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .one-click-mobile .text {
        width: 90%;
        padding-bottom: 30px;
        display: flex;
        justify-content: center;
    }

    .one-click-mobile h2 {
        width: 100%;
        font-size: 2.2rem !important;
        font-weight: 500;
        line-height: 32px;
        letter-spacing: 0em;
        text-align: left;
        color: #FFFFFF;
        padding-top: 50px;
    }

    .one-click-mobile .image {
        display: flex;
        justify-content: center;
        width: 90%;
        height: 90%;
    }

    .one-click-mobile .image img {
        width: 100% !important;
        height: 100 !important;
    }

    .one-click .slider-mobile {
        display: flex !important;
        max-height: 100px;
        padding: 20px 0;
        background: #000000;
        overflow: hidden;
    }

    .one-click .slider-mobile img {
        width: 40px;
        height: 40px;
    }

    .one-click .slider-mobile li {
        font-size: 1.7rem;
    }
}

@media screen and (max-width: 576px) {
    .one-click-mobile h2 {
        font-size: 2rem !important;
        line-height: 32px;
        width: 100%;
    }

    .one-click .slider-mobile li {
        font-size: 1.2rem;
    }

    .one-click .slider-mobile img {
        width: 27px;
        height: 27px;
    }
}

/* -----/------one-click----/------ */

/* -----/------pricing----/------ */
.pricing .pricing-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pricing .pricing-header h4 {
    font-family: var(--text-title-font-family);
    font-size: 3.25rem !important;
    font-weight: 500 !important;
    max-width: 50% !important;
    text-align: center;
}

.pricing .pricing-header p {
    width: 660px;
}

.pricing .card {
    padding: 15px 15px 0 15px !important;
    height: 100% !important;
}

.pricing .card .card-header {
    height: 153px;
    display: flex;
    align-items: flex-start;
}

.pricing .card-header h4 {
    font-family: var(--text-title-font-family);
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0em;
    text-align: left;
}

.pricing .card-header .part-2 h3 {
    font-family: var(--text-title-font-family);
    font-size: 3.25rem;
    font-weight: 500;
    letter-spacing: 0em;
    text-align: center;
}

.pricing .card-header p {
    font-family: var(--text-primary-font-family);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0em;
    text-align: left;
    width: 213.5px;
}

.pricing .card-body {

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

}

.pricing .mobile-basic-plan {
    display: none;
}

.pricing .card-header .part-2 h3 sub {
    font-family: var(--text-primary-font-family);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0em;
    text-align: left;
    width: 213.5px
}


.pricing .container .card-header .part-2 .mobile {
    display: none;
}

.pricing .card-body h4 {
    font-family: var(--text-title-font-family);
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0em;
    text-align: left;
}

.pricing .card-body p {
    font-family: var(--text-primary-font-family);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0em;
    text-align: left;
    width: 100%;
}

.pricing .card-body .list-container {
    display: flex;
    justify-content: space-between;
}

.pricing .card-body ul li {
    font-family: var(--text-primary-font-family);
    font-size: 1rem;
    font-weight: 400;
    text-align: left;
    display: flex;
    align-items: flex-start;
}

.pricing .card-body button {
    border-radius: 8px;
    border: 1px solid #FF7043;
    background: #FF7043;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    width: 476.5px;
    height: 48px;
    color: white;
    font-size: 1rem;
    font-family: var(--text-primary-font-family);
    font-weight: 500;
    padding: 0 !important;
    margin: 0 !important;
}

.pricing .card-body button:hover {
    background: #f16a41;
}

.pricing footer {
    width: 100%;
    border-top: 1px solid gainsboro;
    height: 112px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 1199px) {
    .pricing .card-header {
        display: flex;
        flex-direction: column;
        height: 200px !important;

    }

    .pricing .card-header .desktop-basic-plan {
        display: none;
    }

    .pricing .card-header .mobile-basic-plan {
        display: block;
    }

    .pricing .card-header p {
        width: 90% !important;
    }
}

@media screen and (max-width: 991px) {
    .pricing .card-1 .list-unstyled {
        padding-top: 15px;
        padding-bottom: 30px;
    }
}

@media screen and (max-width: 767px) {

    .pricing .card-mobile {
        margin-bottom: 40px !important;
    }

    .pricing header h4 {
        width: 100% !important;
    }

    .pricing header p {
        width: 100% !important;
    }

    .pricing .card-1 .list-unstyled {
        margin: 0 !important;
        padding-bottom: 20px !important;
    }
}

@media screen and (max-width: 575px) {
    .pricing .card .card-header {
        height: 180px !important;
        gap: 1px;
    }


    .pricing .pricing-header p {
        font-size: 1rem;
        line-height: 19.2px;
        width: 295px !important;
    }

    .pricing .pricing-header h4 {
        font-size: 2rem !important;
    }

    .pricing .card-header h4 {
        font-size: 1.5rem;
        font-weight: 500;
    }

    .pricing .card-header .part-2 h3 {
        font-size: 2.625rem;
        font-weight: 500;
    }
}
/* -----/------pricing----/------ */

/* -----/------questions-section----/------ */
.questions-section .card {
    background: transparent;
    border: none;
}

.questions-section .card-text:last-child {
    font-family: var(--text-primary-font-family);
    font-size: 1.375rem;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0em;
    text-align: left;
    width: 459px !important;
}

.questions-section .accordion-body {
    font-family: var(--text-primary-font-family);
    font-size: 1.375rem;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0em;
    text-align: left;
    width: 100% !important;
    color: #00000099;
}

.accordion-button {
font-size: 1.5rem;
}

@media screen and (max-width: 1199px) {
    .questions-section .card-title {
        font-size: 3rem !important;
    }
}

@media screen and (max-width: 991px) {
    .questions-section .card-title {
        font-size: 2.3rem !important;
        line-height: 40px;
        max-width: 100% !important;
    }

    .questions-section .card-text {
        font-family: var();
        font-size: 1.375rem;
        font-weight: 400;
        line-height: 26px;
        letter-spacing: 0em;
        text-align: left;
        max-width: 100% !important;
    }
}

@media screen and (max-width: 767px) {
    .questions-section .card-title {
        max-width: 90% !important;
    }

    .questions-section .card-text {
        max-width: 90% !important;
    }

}

@media screen and (max-width: 576px) {
    .questions-section .card-title {
        font-size: 2rem;
        line-height: 32px;
        width: 350px;
    }

    .questions-section .card-text {
        font-size: 1rem !important;
        line-height: 19px;
        width: 350px;
    }

    .questions-section .accordion-button {
        max-width: 100% !important;
    }

    .questions-section .accordion-button {
        font-size: 1rem;
    }

    .questions-section .accordion-body {
        font-size: 1rem;
        line-height: 19px;
    }
}

/* -----/------questions-section----/------ */

/* -----/------integration-section----/------ */
.integration .integration-content {
    height: 100%;
    border-radius: 8px;
    background: #000000;
    padding: 50px 20px 0 20px !important;
}

.integration .intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 0 0 10px 0;
    text-align: left;
}

.integration .image {
    display: flex;
    justify-content: center !important;
    align-items: flex-start;

}

.integration .image img {
    transform: none;
}

.integration .button-group img {
    cursor: pointer;
}

.integration .intro h2 {
    color: #FFFFFF !important;
}

.integration .intro p {
    width: 550px !important;
    color: #FFFFFFCC;
    line-height: 25px;
}

.integration .button-group {
    display: flex;
    gap: 20px;
    justify-content: start;
    width: 550px !important;
}

.integration .button-group button img {
    width: 100% !important;
    background-color: rosybrown;
}

.integration .button-group-mobile {
    display: none;
}

@media screen and (max-width: 1399px) {
    .integration .integration-content {
        padding-left: 40px !important;
    }

    .integration .intro {
        gap: 10px !important;
    }

    .integration .integration-content h2 {
        font-size: 2.5rem;
        max-width: 95% !important;
        line-height: 40px;
    }

    .integration .image img {
        max-width: 95% !important;
    }

    .integration .integration-content .intro p {
        width: 95% !important;
    }

    .integration .button-group {
        max-width: 95% !important;
        margin: 0 !important;
    }
}

@media screen and (max-width: 1199px) {

    .integration .integration-content h2 {
        font-size: 2.3rem;
        ;
    }
}

@media screen and (max-width: 991px) {
    .integration .integration-content .intro {
        display: flex;
        flex-direction: column;
        align-items: center !important;
        justify-content: center !important;
    }

    .integration .integration-content .intro p {
        font-size: 1rem;
        line-height: 19.2px;
    }

    .integration .integration-content h2 {
        font-size: 1.75rem !important;
        line-height: 28px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .integration .integration-content .button-group {
        display: none;
    }

    .integration .integration-content .button-group-mobile {
        display: flex;
        gap: 10px;
        width: 95% !important;
    }
}

@media screen and (max-width: 767px) {
    .integration {
        display: none;
    }

    /* .integration .integration-content {
        display: flex;
        flex-direction: column-reverse;
        gap: 50px;
        align-items: center;
        padding-bottom: 50px !important;

    }

    .integration-content .intro {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .integration .integration-content h2 {
        text-align: center;
        width: 350px;
    }

    .integration .integration-content p {
        text-align: center;
    } */
}
/* -----/------integration-section----/------ */

/* -----/------footer-section----/------ */
footer .footer {
    height: 90px;
}

footer .part-1 img {
    width: 199px !important;
    height: 46.05px !important;
}

footer .part-1 img {
    cursor: pointer;
}

.footer ul li a {
    font-size: 1.25rem !important;
    font-family: var(--text-link-font-family);
    font-size: var(--text-primary-font-size);
    font-weight: var(--text-link-font-weight);
    color: var(--text-link-color);
    text-decoration: none;
}

.footer p {
    font-size: 1.25rem;
}

@media (max-width:767px) {
    footer .footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        height: 100%;
        padding-bottom: 30px;
        padding-top: 20px;
    }

    .footer ul {
        flex-direction: column;
    }
}

@media screen and (max-width: 576px) {
    footer .part-1 img {
        width: 146.93px !important;
        height: 34px !important;
    }

    .footer p {
        font-size: 1rem;
    }

    .footer ul li a {
        font-size: 1rem !important;

    }
}

/* -----/------footer-section----/------ */