/*! ======================fonts ============================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

/* Inter font  */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Robot font  */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* Urbanist */

@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root {
    --Inter: 'Inter';
    --AnticDione: 'Antic Didone';
    --Roboto: 'Roboto';
    --Urbanist: 'Urbanist';
    --Poppins: 'Poppins';
    --Lato: 'Lato';
}

/************************** Defaults ********************/
/***********************************************************/

*,
*:before,
*:after {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
    /* outline: 1px solid red; */
}

body {
    -webkit-text-size-adjust: 100%;
}

html {
    /* font-size: 10px; */
    /* 10px / 16 px = 0.625 *100 = 62.5%  */
    /* Percentage of user's Browser font-size Setting  */
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* mobile tap highlight color remove  */
input,
textarea,
button,
select,
a,
div {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    appearance: none;
}
img {
    max-width: 100%;
    display: block;
}
a {
    text-decoration: none;
}

li {
    list-style: none;
}

.section {
    max-width: 160rem;
    margin: 0 auto;
    width: 100%;
}

/* ====================================================== */

/* !=================================== */
/* !home ============================== */
/* !=================================== */

/* !=================================== */
/*! header ============================ */
/* !=================================== */

.header {
    position: relative;
    display: flex;
    width: 100%;
    position: relative;
    justify-content: space-between;
    align-items: center;
    padding: 3.5rem 10rem;
    background-color: #f5f6f7;
    border-bottom: 2px solid #eeeeee;
}
.header .logo a {
    transition: all 0.3s ease-in-out;
}
.header .links {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;

    z-index: 5;
}

.header .links ul {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    gap: 5rem;
}
.header .links ul a {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 2.4rem;

    letter-spacing: -0.01em;

    color: #202225;
    transition: all 0.3s ease-in-out;
}

.header .button {
    position: relative;
    z-index: 5;
    margin-left: 7rem;
}

.header .button a {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 2.4rem;
    letter-spacing: -0.01em;
    color: #202225;
    padding: 1.2rem 2.4rem;
    background: #eeeeee;
    border-radius: 48px;
    transition: all 0.3s ease-in-out;
}

.header a:hover {
    opacity: 0.7;
}

.menu-btn {
    display: none;
}
.header .logo-mobile {
    display: none;
}

/* ! home pop up =======================  */

.h_popUp {
    position: fixed;
    bottom: 1rem;
    right: 10rem;
    z-index: 100;
    display: flex;
    /* border: 2px solid red; */
    background-color: #201d38;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 9.1px;
    transition: all 0.3s ease-in-out;
    display: none;
    animation: fadeIn 0.3s linear;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 100;
    }
}

.h_popUp h1 {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 600;
    font-size: 1.9rem;
    line-height: 2.6rem;
    /* or 131% */

    letter-spacing: -0.04em;

    color: #fcfdfe;
    padding: 1.2rem 2rem;
}
.h_popUp .arrow {
    position: relative;
    padding: 1.2rem 2rem 1.2rem 0rem;
    /* border: 2px solid red; */
}

#popUp-Close {
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    position: absolute;
    /* border: 2px solid red; */
    right: 0%;
    top: 0%;
    transform: translate(50%, -50%);
}

#popUp-Close:hover {
    scale: 1.05;
}

/* !================================= */
/* !Home Banner=====================  */
/* !================================= */

.h-banner {
    display: flex;
    padding: 0rem 2rem 6rem 10rem;
    position: relative;
    background-color: #f5f6f7;
}

.h-banner .c1 {
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.h-banner .c2 {
    width: 55%;
    margin-top: -7rem;
    z-index: 1;
}
/* .h-banner .c2 img {
    position: relative;
    height: 100%;
    width: 100%;
    object-fit: contain;
} */

.h-banner .c2 .h-banner-lottie {
    position: relative;
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.h-banner .c1 h1 {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 600;
    font-size: 6.1rem;
    line-height: 6.7rem;
    /* or 110% */

    letter-spacing: -0.04em;

    /* Neutral/07 */

    color: #202225;
    margin-top: 13rem;
}
.h-banner .c1 h2 {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 2.8rem;
    line-height: 3.6rem;
    /* or 129% */

    letter-spacing: -0.03em;

    /* Neutral/04 */

    color: #787f84;
    margin-top: 1.6rem;
}
.h-banner .c1 p {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 3.6rem;
    /* identical to box height, or 240% */

    letter-spacing: -0.03em;

    /* Neutral/04 */

    color: #787f84;
    margin-top: 1.6rem;
}

.h-banner .c1 > a {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 2.4rem;
    /* identical to box height, or 171% */

    letter-spacing: -0.01em;

    color: #fcfdfe;
    padding: 1.2rem 2.4rem;
    background: #4353ff;
    box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.1);
    border-radius: 4.8rem;
    margin-top: 4rem;
    transition: all 0.3s ease-in-out;
}
.h-banner .c1 a:hover {
    opacity: 0.7;
}

.h-banner .scrollDown a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 1.6rem;
    /* identical to box height, or 133% */

    letter-spacing: -0.01em;

    /* Neutral/04 */
    margin-top: 10rem;
    color: #787f84;
    transition: all 0.3s ease-in-out;
}

.h-banner .scrollDown a:hover {
    opacity: 0.7;
}

/* !================================== */
/* !simple===========================  */
/* !================================== */

.h-simple {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 13rem 10rem 13rem 10rem;
}

.h-simple .c1 {
    display: flex;
    flex-direction: column;
}
.h-simple .c2 {
    display: flex;
}
.h-simple .c1 h1 {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 600;
    font-size: 4.8rem;
    line-height: 5.6rem;
    /* or 117% */

    text-align: center;
    letter-spacing: -0.02em;

    /* Neutral/07 */

    color: #202225;
    margin-bottom: 1.8rem;
}
.h-simple .c1 p {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 2.8rem;
    line-height: 3.6rem;
    /* identical to box height, or 129% */

    text-align: center;
    letter-spacing: -0.03em;

    /* Neutral/04 */

    color: #787f84;
    margin-bottom: 8rem;
}

.h-simple .bg {
    width: 100%;
    display: flex;
    flex-direction: row;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 50rem;
    z-index: -1;
}

.h-simple .bg .c1 {
    width: 60%;
    background-color: #f5f6f7;
}
.h-simple .bg .c2 {
    width: 40%;
    background-color: #eff0f4;
}

/* !=================================== */
/* !customize=========================  */
/* !=================================== */

.h-customize {
    display: flex;
    padding: 13.6rem 10rem 13.6rem 10rem;
    gap: 2.2rem;
}

.h-customize .item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.h-customize .item img {
    width: 100%;
    height: 100%;
}

.h-customize .item h1 {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 600;
    font-size: 2.2rem;
    line-height: 3.2rem;
    /* identical to box height, or 145% */

    letter-spacing: -0.01em;

    /* Neutral/06 */

    color: #313336;
    margin-top: 2rem;
    margin-bottom: 0.3rem;
}

.h-customize .item p {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 2rem;
    /* identical to box height, or 175% */

    letter-spacing: -0.01em;

    /* Neutral/04 */

    color: #787f84;
}

/* !=================================== */
/* !reach=============================  */
/* !=================================== */

.h-reach {
    display: flex;
    padding: 7rem 10rem 8rem 10rem;
    position: relative;

    gap: 5rem;
}

.h-reach .c1 {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.h-reach .c2 {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.h-reach .c1 h1 {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 600;
    font-size: 4.8rem;
    line-height: 5.6rem;
    /* or 110% */

    letter-spacing: -0.04em;

    /* Neutral/07 */

    color: #202225;
}
.h-reach .c1 h2 {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 2.2rem;
    line-height: 3.2rem;
    /* or 129% */

    letter-spacing: -0.03em;

    /* Neutral/04 */

    color: #787f84;
    margin-top: 1.6rem;
}

.h-reach .c1 a {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 2.4rem;
    /* identical to box height, or 171% */

    letter-spacing: -0.01em;

    color: #fcfdfe;
    padding: 1.2rem 2.4rem;
    background: #4353ff;
    box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.1);
    border-radius: 4.8rem;
    margin-top: 2rem;
    transition: all 0.3s ease-in-out;
}
.h-reach .c1 a:hover {
    opacity: 0.7;
}
.h-reach .c2 img {
    position: relative;
    max-width: 37rem;
    height: 100%;
}
.h-reach .c2 h1 {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 2.5rem;
    /* identical to box height, or 133% */

    text-align: center;

    /* Black */

    color: #12141d;
    margin-top: 3.6rem;
}

/* !=================================== */
/* !whyNeed===========================  */
/* !=================================== */

.h-whyNeed {
    display: flex;
    flex-direction: column;
    padding: 13.6rem 10rem 13.8rem 10rem;
}

.h-whyNeed > h1 {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 600;
    font-size: 4.8rem;
    line-height: 5.6rem;
    /* identical to box height, or 117% */

    text-align: center;
    letter-spacing: -0.02em;

    /* Neutral/07 */

    color: #202225;
    margin-bottom: 5rem;
}

.h-whyNeed .content {
    display: flex;
    gap: 2rem;
}
.h-whyNeed .item {
    flex-grow: 1;
    flex-basis: 0;
}

.h-whyNeed .item h1 {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 6.8rem;
    line-height: 8.9rem;
    /* identical to box height, or 127% */

    text-align: center;
    letter-spacing: -0.07em;

    color: #343434;
    background-color: #eff0f4;
    padding: 7rem 3rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}
.h-whyNeed .item p {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 600;
    font-size: 2.2rem;
    line-height: 3.2rem;
    /* or 145% */

    text-align: center;
    letter-spacing: -0.01em;

    /* Neutral/06 */

    color: #313336;
}

/* !=================================== */
/* !features==========================  */
/* !=================================== */

.h-features {
    display: flex;
    flex-direction: column;
    padding: 8rem 10rem 15rem 10rem;
    background-color: #f5f6f7;
}

.h-features > h1 {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 600;
    font-size: 4.8rem;
    line-height: 5.6rem;
    /* or 117% */

    text-align: center;
    letter-spacing: -0.02em;

    /* Neutral/07 */

    color: #202225;
    margin-bottom: 5rem;
}

.h-features .content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-column-gap: 4rem;
    grid-row-gap: 3rem;
}

.h-features .item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 3rem;
    background: #ffffff;
    border-radius: 16px;
    padding: 4rem 4rem;
}
.h-features .item > h1 {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 2.7rem;
    /* identical to box height */

    letter-spacing: 0.01em;

    color: #151515;
}

.h-features .item img {
    width: 2.4rem;
    height: 2.4rem;
}

/* !=================================== */
/* !how Integrate=====================  */
/* !=================================== */

.h-howIntegrate {
    display: flex;
    padding: 13rem 10rem 6rem 10rem;
    position: relative;
    background-color: #fcfdfe;
}

.h-howIntegrate .content {
    position: relative;
    background-color: #f7f9f9;
    display: flex;
    width: 100%;
    padding: 11rem 8rem;
    gap: 7rem;
    border-radius: 16px;
}
.h-howIntegrate .c1 {
    position: relative;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.h-howIntegrate .c1::after {
    content: '';
    position: absolute;
    width: 2px;
    height: calc(100% + 22rem);
    background-color: #eeeeee;
    top: -11rem;
    right: 0;
}

.h-howIntegrate .c1::before {
    background-image: url('https://www.incluzive.app/wp-content/themes/incluzive/assets/images/dots.png');
    background-size: 2rem 15rem;
    display: inline-block;
    width: 2rem;
    height: 15rem;
    content: '';
    position: absolute;
    right: 0%;
    top: 50%;
    transform: translate(50%, -50%);

    z-index: 1;
}

.h-howIntegrate .c2 {
    position: relative;
    width: 50%;
}

.h-howIntegrate .c1 > h1 {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 600;
    font-size: 3.6rem;
    line-height: 4.4rem;
    /* or 122% */

    letter-spacing: -0.02em;

    /* Neutral/07 */

    color: #202225;
    margin-bottom: 12rem;
    width: 95%;
}

.h-howIntegrate .c1 .button {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2.4rem;
}

.h-howIntegrate .c1 .button img {
    max-width: 6.4rem;
    max-height: 6.4rem;
}
.h-howIntegrate .c1 .button a {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 2.4rem;
    /* identical to box height, or 171% */

    letter-spacing: -0.01em;
    /* Neutral/01 */
    color: #fcfdfe;
    padding: 1.2rem 2.4rem;
    background: #4353ff;
    box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.1);
    border-radius: 48px;
    transition: all 0.3s ease-in-out;
}

.h-howIntegrate .c1 .button a:hover {
    opacity: 0.7;
}

.h-howIntegrate .c2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.h-howIntegrate .c2 .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4.8rem 0;
}

.h-howIntegrate .c2 .item:nth-child(2) {
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

.h-howIntegrate .c2 .item .icon {
    max-height: 6.4rem;
    max-width: 6.4rem;
}

.h-howIntegrate .c2 .item .icon img {
    width: 100%;
    height: 100%;
}

.h-howIntegrate .c2 .item h1 {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 600;
    font-size: 1.6rem;
    line-height: 2.4rem;
    /* identical to box height, or 150% */

    letter-spacing: -0.01em;

    /* Neutral/07 */

    color: #202225;
}
.h-howIntegrate .c2 .item p {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 2.4rem;
    /* identical to box height, or 171% */

    letter-spacing: -0.01em;

    /* Neutral/04 */

    color: #787f84;
}
/* !=================================== */
/* ! Integrate Seamless=====================  */
/* !=================================== */

.h-integrateSeamless {
    display: flex;
    padding: 6rem 10rem 13.6rem 10rem;
    position: relative;
    background-color: #fcfdfe;
}

.h-integrateSeamless .content {
    position: relative;
    background-color: #f7f9f9;
    display: flex;
    width: 100%;
    padding: 11rem 8rem;
    gap: 7rem;
    border-radius: 16px;
}
.h-integrateSeamless .c1 {
    position: relative;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.h-integrateSeamless .c1::after {
    content: '';
    position: absolute;
    width: 2px;
    height: calc(100% + 22rem);
    background-color: #eeeeee;
    top: -11rem;
    right: 0;
}

.h-integrateSeamless .c1::before {
    background-image: url('https://www.incluzive.app/wp-content/themes/incluzive/assets/images/dots.png');
    background-size: 2rem 15rem;
    display: inline-block;
    width: 2rem;
    height: 15rem;
    content: '';
    position: absolute;
    right: 0%;
    top: 50%;
    transform: translate(50%, -50%);

    z-index: 1;
}

.h-integrateSeamless .c2 {
    position: relative;
    width: 50%;
}
.h-integrateSeamless .c2 img {
    width: 100%;
    height: 100%;
}

.h-integrateSeamless .c1 > h1 {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 600;
    font-size: 3.6rem;
    line-height: 4.4rem;
    /* or 122% */

    letter-spacing: -0.02em;

    /* Neutral/07 */

    color: #202225;
    margin-bottom: 12rem;
}

.h-integrateSeamless .c1 .button {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2.4rem;
}

.h-integrateSeamless .c1 .button img {
    max-width: 6.4rem;
    max-height: 6.4rem;
}
.h-integrateSeamless .c1 .button a {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 2.4rem;
    /* identical to box height, or 171% */

    letter-spacing: -0.01em;
    /* Neutral/01 */
    color: #fcfdfe;
    padding: 1.2rem 2.4rem;
    background: #4353ff;
    box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.1);
    border-radius: 48px;
    transition: all 0.3s ease-in-out;
}

.h-integrateSeamless .c1 .button a:hover {
    opacity: 0.7;
}

.h-integrateSeamless .c2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.h-integrateSeamless .c2 img {
    border-radius: 50%;
    border: 5rem solid #fefefc;
    box-shadow: 0px 54px 67px -50px #e3e2da;
}

/* !=================================== */
/* !testimony ========================  */
/* !=================================== */

.h-testimony {
    display: flex;
    flex-direction: column;
    padding: 13.6rem 10rem 13.6rem 10rem;
    background-color: #f5f6f7;
}

.h-testimony > h1 {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 600;
    font-size: 4.8rem;
    line-height: 5.6rem;
    /* identical to box height, or 117% */

    text-align: center;
    letter-spacing: -0.02em;

    /* Neutral/07 */

    color: #202225;
    margin-bottom: 5.5rem;
}

.h-testimony .content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 2.2rem;
    grid-row-gap: 2.2rem;
}
.h-testimony .item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fcfdfe;
    border-radius: 16px;
    padding: 4.8rem 4rem 4rem;
}

.h-testimony .item img {
    max-width: 6.4rem;
    max-height: 6.4rem;
    margin-bottom: 2rem;
}
.h-testimony .item p {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 2.8rem;
    /* or 175% */

    letter-spacing: -0.01em;

    /* Neutral/04 */

    color: #787f84;
    margin-bottom: 4.8rem;
}
.h-testimony .item h1 {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 600;
    font-size: 1.6rem;
    line-height: 2.4rem;
    /* identical to box height, or 150% */

    /* Neutral/07 */

    color: #202225;
}
.h-testimony .item h2 {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 2.4rem;
    /* identical to box height, or 171% */

    letter-spacing: -0.01em;

    /* Neutral/04 */

    color: #787f84;
}

/* !=================================== */
/* !Brands ===========================  */
/* !=================================== */

.h-brands {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 13rem 10rem 13rem 10rem;
    background-color: #f5f6f7;
}

.h-brands > h1 {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 600;
    font-size: 4.8rem;
    line-height: 5.6rem;
    /* identical to box height, or 117% */

    text-align: center;
    letter-spacing: -0.02em;

    /* Neutral/07 */

    color: #202225;
    margin-bottom: 5.5rem;
}

.h-brands .content {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 2.2rem;
}

.h-brands .content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 17rem;
}

.h-brands .content .logo {
    padding: 3rem 4rem;
    display: flex;
    justify-content: center;

    background: #fcfdfe;
    border-radius: 16px;
}

/* !===================================== */
/* !h- FAQ ============================== */
/* !===================================== */

.h-FAQ {
    display: flex;
    flex-direction: column;
    padding: 16rem 15rem 10rem 15rem;
    background-color: #fcfdfe;
}
.h-FAQ > h1 {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 600;
    font-size: 4.8rem;
    line-height: 5.6rem;
    /* identical to box height, or 117% */

    text-align: center;
    letter-spacing: -0.02em;

    /* Neutral/07 */

    color: #202225;
    margin-bottom: 6.4rem;
}

.h-FAQ .box {
    cursor: pointer;
}
.h-FAQ .label {
    position: relative;
    /* border: 2px solid red; */
    display: flex;
    justify-content: space-between;
    padding: 2.5rem 3rem;
    border-radius: 12px 12px 0 0;
    border-bottom: 1px solid #f7f9f9;
}

.h-FAQ .label:nth-child(1) {
    border-top: 2px solid #f7f9f9;
}

.h-FAQ .label::before {
    content: url(https://www.incluzive.app/wp-content/themes/incluzive/assets/images/FAQ-plus.png);
    position: absolute;
    top: 50%;
    right: 2.5rem;
    transform: translate(0%, -50%);
}

.h-FAQ .label h1 {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 600;
    font-size: 1.6rem;
    line-height: 2.4rem;
    /* identical to box height, or 150% */
    letter-spacing: -0.01em;
    /* Neutral/07 */
    color: #202225;
    width: 90%;
}

.h-FAQ .content {
    height: 0px;
    background-color: #f7f9f9;
    padding: 0rem 2.5rem;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}
.h-FAQ .content p {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 2.4rem;
    /* or 171% */

    letter-spacing: -0.01em;

    /* Neutral/06 */

    color: #313336;
    width: 90%;
}

.h-FAQ .content a:hover {
    opacity: 0.75;
}

.h-FAQ .box.active .content {
    height: auto;
    padding: 0rem 2.5rem 3.5rem 2.5rem;
    border-radius: 0px 0px 12px 12px;
}

.h-FAQ .box.active .label {
    background-color: #f7f9f9;
}

.h-FAQ .box.active .label::before {
    content: url(https://www.incluzive.app/wp-content/themes/incluzive/assets/images/FAQ-cross.png);
}

/* !============================= */
/* !ready=======================  */
/* !============================= */

.h-ready {
    display: flex;
    position: relative;
}
.h-ready .desktop {
    width: 100%;
    height: 100%;
}

.h-ready .mobile {
    display: none;
}

.h-ready .content {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.h-ready .content h1 {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 600;
    font-size: 7.2rem;
    line-height: 7.5rem;
    /* identical to box height, or 104% */

    text-align: center;
    letter-spacing: -0.03em;

    /* Neutral/07 */

    color: #202225;
    margin-bottom: 1.2rem;
}
.h-ready .content p {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 2.8rem;
    line-height: 3.6rem;
    /* identical to box height, or 129% */

    text-align: center;
    letter-spacing: -0.03em;

    /* Neutral/04 */

    color: #787f84;
    margin-bottom: 2.5rem;
}
.h-ready .content a {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 2.4rem;
    /* identical to box height, or 171% */

    letter-spacing: -0.01em;

    /* Neutral/01 */

    color: #fcfdfe;
    padding: 1.2rem 2rem;

    background: #4353ff;
    box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.1);
    border-radius: 4.8rem;
    transition: all 0.3s ease-in-out;
}

.h-ready .content a:hover {
    opacity: 0.7;
}

/* !============================= */
/* !footer======================  */
/* !============================= */

.footer {
    padding: 5rem 10rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 11rem;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

.footer .logo {
    display: flex;
    flex-direction: column;
}

.footer .logo a {
    transition: all 0.3s ease-in-out;
}

.footer .logo a:hover {
    opacity: 0.7;
}

.footer .logo h1 {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 2.4rem;
    /* identical to box height, or 171% */
    letter-spacing: -0.01em;
    /* Neutral/04 */
    color: #787f84;
    margin-top: 1.8rem;
}

.footer .links {
    display: flex;
    flex-grow: 1;
}

.footer .links ul {
    display: flex;
    flex-direction: column;
    gap: 1.9rem;
}

.footer .links a {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 2.4rem;
    /* identical to box height, or 171% */

    letter-spacing: -0.01em;

    /* Neutral/04 */

    color: #787f84;
    transition: all 0.3s ease-in-out;
}

.footer .links a:hover {
    opacity: 0.7;
}

.footer .button {
    display: flex;
}

.footer .button a {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 2.4rem;
    /* identical to box height, or 171% */
    letter-spacing: -0.01em;
    /* Neutral/01 */
    color: #fcfdfe;
    padding: 1.2rem 2rem;
    background: #4353ff;
    box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.1);
    border-radius: 4.8rem;
    transition: all 0.3s ease-in-out;
}
.footer .button a:hover {
    opacity: 0.7;
}

.copyright {
    padding: 2.4rem 10rem 9.6rem 10rem;
    display: flex;
    justify-content: center;
}

.copyright h1 {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 1.6rem;
    /* identical to box height, or 133% */

    letter-spacing: -0.01em;

    /* Neutral/04 */

    color: #787f84;
}

/* !=================================== */
/* !Support Page======================= */
/* !=================================== */

/* !Support list  */

.support-list {
    position: relative;
    padding: 10.5rem 10rem 10rem 10rem;
}

.support-list > h1 {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 600;
    font-size: 6.2rem;
    line-height: 6.8rem;
    /* identical to box height, or 110% */

    letter-spacing: -0.04em;

    /* Neutral/07 */

    color: #202225;
    margin-bottom: 5.8rem;
}

.support-list .content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    grid-column-gap: 1.7rem;
    grid-row-gap: 1.7rem;
}

.support-list .content .block {
    background-color: #f5f6f7;
    border-radius: 8px;
    padding: 2rem 2rem 3.2rem 2rem;
    transition: all 0.3s ease-in-out;
}

.support-list .content .block:hover {
    opacity: 0.75;
}

.support-list .content img {
    object-fit: contain;
    margin-bottom: 2.8rem;
    max-width: 4.9rem;
    max-height: 4.9rem;
}

.support-list .content p {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 2.1rem;
    line-height: 3.2rem;
    letter-spacing: -0.01em;

    color: #000000;
}

/* !Support contact*/

.support-contact {
    position: relative;
    padding: 14rem 10rem 18rem 10rem;
    display: flex;
    justify-content: center;
    background-color: #f5f6f7;
}

.support-contact .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.support-contact .content h1,
.support-contact .content h2 {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 600;
    font-size: 4.8rem;
    line-height: 5.6rem;
    /* or 117% */

    text-align: center;
    letter-spacing: -0.02em;

    /* Neutral/07 */

    color: #202225;
}

.support-contact .content a {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 600;
    font-size: 4.8rem;
    line-height: 5.6rem;
    /* or 117% */

    text-align: center;
    letter-spacing: -0.02em;

    /* Neutral/07 */

    color: #4353ff;
    transition: all 0.3s ease-in-out;
}

.support-contact .content a:hover {
    opacity: 0.7;
}

/* !=================================== */
/* !BLog Page========================== */
/* !=================================== */

/* !Support list  */

.blog-list {
    position: relative;
    padding: 10.5rem 10rem 10rem 10rem;
    display: flex;
    flex-direction: column;
}

.blog-list > h1 {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 600;
    font-size: 6.2rem;
    line-height: 6.8rem;
    /* identical to box height, or 110% */

    letter-spacing: -0.04em;

    /* Neutral/07 */

    color: #202225;
    margin-bottom: 5.8rem;
}

.blog-list .content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    grid-column-gap: 2.4rem;
    grid-row-gap: 3.7rem;
}

.blog-list .content .block {
    background-color: #f5f6f7;
    border-radius: 8px;
    padding: 2rem 2rem 3.2rem 2rem;
    transition: all 0.3s ease-in-out;
}

.blog-list .content .block:hover {
    opacity: 0.75;
}

.blog-list .content p {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 2.1rem;
    line-height: 3.2rem;
    letter-spacing: -0.01em;

    color: #000000;
}

/* !=================================== */
/* !Single post Page=================== */
/* !=================================== */

/* !b-title  ==============*/

.b-title {
    position: relative;
    padding: 7.6rem 10rem 8rem 10rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.b-title .head{
    position: relative;
    padding-bottom: 8rem;
}

.b-title h1 {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.6rem;
    /* identical to box height, or 133% */

    text-align: center;
    letter-spacing: 0.01em;
    text-transform: uppercase;

    /* Color/01 */

    color: #2377fc;
    margin-bottom: 1.2rem;
}

.b-title > p{
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 2.8rem;
    /* or 175% */

    letter-spacing: -0.01em;

    /* Neutral/04 */
    text-align: left;
    color: #787f84;
    margin-bottom: 4.8rem;
}


.b-title h2 {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 600;
    font-size: 4.8rem;
    line-height: 5.6rem;
    /* identical to box height, or 117% */

    text-align: center;
    letter-spacing: -0.02em;

    /* Neutral/07 */

    color: #202225;
}
/* !b-block 1============================ */
.b-block-1 {
    position: relative;
    padding: 3rem 22% 3rem 22%;
}

.b-block-1 p {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 2.8rem;
    /* or 175% */

    letter-spacing: -0.01em;

    /* Neutral/04 */

    color: #787f84;
    margin-bottom: 4.8rem;
}

.b-block-1 img {
    /* border: 2px solid red; */
    border-radius: 16px;
}

/* !b-block 2============================ */

.b-block-2 {
    position: relative;
    padding: 3rem 22% 3rem 22%;
}

.b-block-2 h1 {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 600;
    font-size: 3.6rem;
    line-height: 4.4rem;
    /* identical to box height, or 122% */

    letter-spacing: -0.02em;

    /* Neutral/06 */

    color: #313336;
    margin-bottom: 2.4rem;
}

.b-block-2 p {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 2.8rem;
    /* or 175% */

    letter-spacing: -0.01em;

    /* Neutral/04 */

    color: #787f84;
    margin-bottom: 4.8rem;
}

.b-block-2 img {
    /* border: 2px solid red; */
    border-radius: 16px;
}

/* !b-block 3============================ */

.b-block-3 {
    position: relative;
    padding: 3rem 22% 8rem 22%;
}

.b-block-3 h1 {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 600;
    font-size: 3.6rem;
    line-height: 4.4rem;
    /* identical to box height, or 122% */

    letter-spacing: -0.02em;

    /* Neutral/06 */

    color: #313336;
    margin-bottom: 2.4rem;
}

.b-block-3 p {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 2.8rem;
    /* or 175% */

    letter-spacing: -0.01em;

    /* Neutral/04 */

    color: #787f84;
    margin-bottom: 2.4rem;
}

.b-block-3 .list ul {
    display: flex;
    flex-direction: column;
}

.b-block-3 .list ul li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1.6rem;
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 2.8rem;
    /* identical to box height, or 175% */

    letter-spacing: -0.01em;

    /* Neutral/04 */

    color: #787f84;
    margin-bottom: 1.6rem;
    width: 100%;
}
.b-block-3 .list ul li span {
    display: flex;
    flex-shrink: 0;
}

/* !============================= */
/* ! b-ready=======================  */
/* !============================= */

.b-ready {
    display: flex;
    position: relative;
}
.b-ready .desktop {
    width: 100%;
    height: 100%;
}

.b-ready .mobile {
    display: none;
}

.b-ready .content {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.b-ready .content h1 {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 600;
    font-size: 7.2rem;
    line-height: 7.5rem;
    /* identical to box height, or 104% */

    text-align: center;
    letter-spacing: -0.03em;

    /* Neutral/07 */

    color: #202225;
    margin-bottom: 1.2rem;
}
.b-ready .content p {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 2.8rem;
    line-height: 3.6rem;
    /* identical to box height, or 129% */

    text-align: center;
    letter-spacing: -0.03em;

    /* Neutral/04 */

    color: #787f84;
    margin-bottom: 2.5rem;
}
.b-ready .content a {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 2.4rem;
    /* identical to box height, or 171% */

    letter-spacing: -0.01em;

    /* Neutral/01 */

    color: #fcfdfe;
    padding: 1.2rem 2rem;

    background: #4353ff;
    box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.1);
    border-radius: 4.8rem;
    transition: all 0.3s ease-in-out;
}

.b-ready .content a:hover {
    opacity: 0.7;
}

.showMore{
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 2.4rem;
    letter-spacing: -0.01em;
    color: #fcfdfe;
    padding: 1.2rem 2rem;
    background: #4353ff;
    box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.1);
    border-radius: 4.8rem;
    transition: all 0.3s ease-in-out;
    border: none;
    cursor: pointer;
align-self: center;
margin-top: 5rem;
}
.showMore:hover{
    opacity: .7;
}


/* !==================================== */
/* !Pricing page ======================  */
/* !==================================== */

.pricing {
    /* border: 2px solid red; */
    display: flex;
    flex-direction: row;
    /* height: 100vh; */
}

.pricing .bg-circle-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    margin: 0rem;
}

.pricing .content {
    position: relative;
}

.pricing .content h1 {
    font-family: var(--Urbanist);
    font-style: normal;
    font-weight: 700;
    font-size: 4rem;
    line-height: 5rem;
    letter-spacing: 0.02em;
    max-width: 40rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}
.pricing .content > p {
    font-family: var(--Urbanist);
    font-style: normal;
    font-weight: 400;
    font-size: 2.2rem;
    line-height: 3.1rem;
    letter-spacing: 0.01em;
    color: #c9c9c9;
}
/* accordion ================= */
.pricingAcc {
    /* padding-left: 5rem; */
}

.pricingAcc .label {
    /* border: 2px solid red; */
    position: relative;
    cursor: pointer;
    margin-bottom: 2.4rem;
}

.pricing .label::before {
    content: url(/assets/images/Acc-plus.svg);
    position: absolute;
    right: 1rem;
    top: 50%;
    translate: 0% -50%;
}

.pricingAcc .content {
    position: relative;
    height: 0.1px;
    overflow: hidden;
    overflow-y: auto;
    transition: all 0.3s ease-in-out;
}

.pricingAcc .label h1 {
    font-family: var(--Urbanist);
    font-style: normal;
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 3.5rem;
    letter-spacing: 0.01em;
    color: #ffffff;
    padding: 0 4rem 0 0;
}
.pricingAcc .content p {
    font-family: var(--Urbanist);
    font-style: normal;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 2rem;
    letter-spacing: 0.01em;
    color: #dedede;
    max-width: 45rem;
    padding: 0 3rem 0 0;
}
.pricingAcc .accBox.active {
    padding-bottom: 1rem;
}

.pricingAcc .accBox.active .label {
    margin-bottom: 0.5rem;
}

.pricingAcc .accBox.active .content {
    position: relative;
    height: 10rem;
    padding: 0.5rem 0rem;
}
/* width */
.pricingAcc .content::-webkit-scrollbar {
    width: 0px;
}
/* width */
.pricingAcc .accBox.active .content::-webkit-scrollbar {
    width: 5px;
}

/* Track */
.pricingAcc .content::-webkit-scrollbar-track {
    border-radius: 10px;
}

/* Handle */
.pricingAcc .content::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

/* Handle on hover */
.pricingAcc .content::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.7);
}
.pricing .accBox.active .label::before {
    content: url(/assets/images/Acc-minus.svg);
}
/* container 2 =============== */

.pricing .c1 {
    /* border: 2px solid red; */
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 7rem;
}

/* .pricing .c2 .pricingList {
} */

.p-Card .memberShip {
    display: flex;

    padding: 2rem 2rem 3rem 2.5rem;
    border-radius: 8px;
    box-shadow: 0px 1px 4px rgba(152, 152, 152, 0.25);
    margin-bottom: 1.5rem;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.p-Card .memberShip:hover {
    outline: 4px solid rgb(66, 82, 255, 0.8);
}
.p-Card .memberShip .price {
    flex-grow: 1;

    display: flex;
    justify-content: flex-end;
}

.memberShip .circle {
    flex-shrink: 0;
    width: 2.4rem;
    height: 2.4rem;
    background-color: transparent;
    border-radius: 50%;
    align-self: flex-start;
    margin-right: 2.2rem;
    margin-top: 1rem;
    transition: all 0.2s ease-in-out;
    /* border: 2px solid red; */
    box-shadow: inset 0px 0px 0px 2px #828282;
}

.p-Card input[type='radio'] {
    display: none;
}

#one:checked ~ .first .memberShip,
#two:checked ~ .second .memberShip,
#three:checked ~ .third .memberShip {
    outline: 4px solid #4353ff;
}
#one:checked ~ .first .memberShip .price p,
#two:checked ~ .second .memberShip .price p,
#three:checked ~ .third .memberShip .price p {
    color: #4353ff;
}

#one:checked ~ .first .memberShip .circle,
#two:checked ~ .second .memberShip .circle,
#three:checked ~ .third .memberShip .circle {
    background-color: #4353ff;
    border: 2px solid #4353ff;
    box-shadow: inset 0px 0px 0px 2px #fff;
}

.p-Card .title {
    max-width: 30rem;
    margin-right: 5rem;
}

.p-Card .title h1 {
    font-family: var(--Urbanist);
    font-style: normal;
    font-weight: 600;
    font-size: 2rem;
    line-height: 3.5rem;
    letter-spacing: 0.01em;
    color: #1b1c20;
}
.p-Card .title p {
    font-family: var(--Urbanist);
    font-style: normal;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.9rem;
    letter-spacing: 0.01em;
    color: #323232;
    display: flex;
    align-items: center;
    /* border: 2px solid red; */
}

.p-Card .title p .count {
    display: flex;
    flex-direction: row;
    /* border: 2px solid red; */
}

.p-Card .title p .count input {
    width: 3.3rem;
    height: 3.3rem;
    border-radius: 8px 0px 0px 8px;

    font-family: var(--Urbanist);
    font-style: normal;
    font-weight: 600;
    font-size: 1.6rem;
    line-height: 1.9rem;
    letter-spacing: 0.01em;

    color: #323232;
    border: 1px solid #e2e2e2;
    margin-left: 2.5rem;
    padding: 0.5rem 0.5rem;
    text-align: center;
}
.p-Card .title p .count .btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    border-radius: 0 8px 8px 0;
    overflow: hidden;
    gap: 0.4rem;
    background: #d9d9d9;
}
.p-Card .title p .count button {
    width: 100%;
    height: 100%;
    outline: none;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: #d9d9d9;
}
.p-Card .title p .count button:nth-child(odd) {
    padding-top: 0.5rem;
}
.p-Card .title p .count button:nth-child(even) {
    padding-bottom: 0.5rem;
}

.p-Card .title p .count button:hover {
    opacity: 0.7;
}

#yearlyPlan .offer {
    font-family: var(--Urbanist);
    font-style: normal;
    font-weight: 700;
    font-size: 1.3rem;
    line-height: 1.9rem;
    /* identical to box height, or 146% */

    letter-spacing: 0.01em;

    color: #4353ff;
    display: flex;

    justify-content: center;
    align-items: center;
    margin-left: 0.9rem;
    width: 50%;
    white-space: nowrap;
}

.p-Card .price {
    display: flex;
    flex-direction: column;
}

.p-Card .price p {
    font-family: var(--Urbanist);
    font-style: normal;
    font-weight: 700;
    font-size: 2rem;
    line-height: 3.5rem;
    letter-spacing: 0.01em;
    color: #343434;
    white-space: nowrap;
    text-align: right;
}

.p-Card .price h1 {
    font-family: var(--Urbanist);
    font-style: normal;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.9rem;
    /* or 127% */

    text-align: right;
    letter-spacing: 0.01em;

    color: #1b1c20;
}

.pricingList {
    width: 50%;
}

.pricingList > h1 {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 600;
    font-size: 6.2rem;
    line-height: 6.8rem;
    /* identical to box height, or 110% */

    letter-spacing: -0.04em;

    /* Neutral/07 */

    color: #202225;
    margin: 7.3rem 0 3.7rem 0;
}
.pricingList > p {
    font-family: var(--Inter);
    font-style: normal;
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 2.2rem;
    /* identical to box height */

    letter-spacing: -0.01em;

    color: #292929;
    margin-bottom: 1.5rem;
}

.pricingList input {
    appearance: auto;
}

.proceed {
    /* width: 100%; */
    outline: none;
    border: none;
    background-color: #4353ff;
    font-family: var(--Urbanist);
    font-style: normal;
    font-weight: 600;
    font-size: 2rem;
    line-height: 2.4rem;
    letter-spacing: 0.01em;
    color: #ffffff;
    border-radius: 8px;
    padding: 1.2rem 7.6rem;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    margin-top: 1.3rem;
    margin-bottom: 8.3rem;
}
.proceed:hover {
    opacity: 0.8;
}
#pricing .mobile-circle-bg {
    display: none;
}

/*! contact page ============================  */

.contact {
    position: relative;
    padding: 8.2rem 10rem 35rem 10rem;
}

.contact h1 {
    font-family: var(--Poppins);
    font-style: normal;
    font-weight: 600;
    font-size: 6.2rem;
    line-height: 6.8rem;
    /* identical to box height, or 110% */

    letter-spacing: -0.04em;

    /* Neutral/07 */

    color: #202225;
}
.contact p {
    font-family: var(--Inter);
    font-style: normal;
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 2.2rem;
    /* identical to box height */

    letter-spacing: -0.01em;

    color: #292929;
    margin-top: 1.2rem;
    margin-bottom: 3.6rem;
}
.contact a {
    font-family: var(--Inter);
    font-style: normal;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.9rem;
    letter-spacing: -0.01em;

    color: #ffffff;
    background: #4353ff;
    border-radius: 6px;
    padding: 1.2rem 8.4rem;
}
