
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap');
/****header css *********/
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Geist:wght@100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

.select-menu {
    margin: 4px 0 14px 0;
}
.select-menu .select-btn {
    cursor: pointer;
    display: inline-flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    gap: 10px;
    width: fit-content;
    height: 26px;
    background: #3F3F46;
    border-radius: 20px;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
}
.select-menu .options {
    position: absolute;
    overflow-y: auto;
    max-height: 205px;
    padding: 10px;
    margin-top: 10px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    animation-name: fadeInDown;
    -webkit-animation-name: fadeInDown;
    animation-duration: 0.35s;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.35s;
    -webkit-animation-fill-mode: both;
    width: 100%;
    visibility: hidden;
    flex-flow: column;
    gap: 10px;
    width: auto;
}
.select-menu .options .option {
    display: flex;
    cursor: pointer;
    padding: 5px 10px;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    width: 100%;
    transition: .3s;
    color: #F4F4F5;
}
.select-menu .options .option .option-text {
    color: #F4F4F5;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: normal;
    text-transform: capitalize;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
}
.select-menu .options {
    position: absolute;
    overflow-y: auto;
    max-height: 205px;
    padding: 10px;
    margin-top: 10px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    animation-name: fadeInDown;
    -webkit-animation-name: fadeInDown;
    animation-duration: 0.35s;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.35s;
    -webkit-animation-fill-mode: both;
    width: 100%;
    visibility: hidden;
    flex-flow: column;
    gap: 10px;
    width: auto;
}
.select-menu .options .option {
    display: flex;
    cursor: pointer;
    padding: 5px 16px;
    align-items: center;
    justify-content: center;
    background: #F1F1F1;
    border-radius: 50px;
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: normal;
    text-transform: uppercase;
    color: #000000;
    width: 100%;
    transition: .3s;
}
.select-menu .options .option:hover {
    background: #ffef8a;
    color: #000;
}
.select-menu .options .option .option-text {
    font-size: 11px;
    color: #333;
}

.select-menu.active .select-btn svg {
    transform: rotate(-180deg);
    transition: .3s;
}
.select-menu.active .options {
    display: flex;
    opacity: 0;
    z-index: 10;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
    animation-duration: 0.4s;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.4s;
    -webkit-animation-fill-mode: both;
    visibility: visible;
    background: #27272A;
    border: 1px solid #3F3F46;
    box-shadow: 10px 4px 54px rgba(0, 0, 0, 0.65);
    border-radius: 10px;
    width: max-content;
}

@keyframes fadeInUp {
    from {
        transform: translate3d(0, 30px, 0);
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}
@keyframes fadeInDown {
    from {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
    to {
        transform: translate3d(0, 20px, 0);
        opacity: 0;
    }
}
.pricing-page-header h1 {
    font-style: normal;
    font-size: 57px;
    color: #ffffff;
    margin: 0 0 10px;
    font-family: "Geist", sans-serif;
    font-weight: 700;
    line-height: 66px;
    letter-spacing: -3px;
    text-align: center;
}

.pricing-page-header p {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: #AAAAAA;
}
.pricing-page-header h3 {
    font-style: normal;
    color: #D4D4D8;
    margin: 0 0 10px;
    font-family: "Geist", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    text-align: center;
}
.pricing-page-header {
    margin: 20px auto 0;
    width: 600px;
    max-width: 100%;
}

.pricing-page-plans {
    padding: 40px 0px;
}

.main-plans-pricing {
    display: grid;
    /*grid-template-columns: repeat(3, 1fr);*/
    gap: 30px;
    align-items: start;
    font-family: "Geist", sans-serif;
    width: 1186px;
    margin: 0 auto;
    max-width: 100%;
    grid-template-areas:
        "monthly quarterly yearly"
        "team team team";
    /*padding: 0 20px;*/
}

@media only screen and (max-width: 1170px) and (min-width: 769px) {
    .main-plans-pricing {
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas:
            "monthly quarterly"
            "yearly yearly"
            "team team";
        gap: 20px;
    }
}

@media only screen and (max-width: 768px) {
    .main-plans-pricing {
        grid-template-columns: 1fr;
        grid-template-areas:
            "monthly"
            "quarterly"
            "yearly"
            "team";
        gap: 20px;
    }

    .team-plan .flex {
        flex-direction: column;
    }

    .team-plan .plan-benifits-list {
        margin-top: 25px;
    }

    .plan-billed-year {
        margin-top: 20px;
    }
}

.monthly-plan {
    grid-area: monthly;
}

/*.quarterly-plan {*/
/*    grid-area: quarterly;*/
/*}*/

.yearly-plan {
    grid-area: yearly;
}

/*.team-plan {*/
/*    grid-area: team;*/
/*    padding: 33px 80px !important;*/
/*}*/

.pricing-plan-block {
    padding: 30px 15px;
    position: relative;
    align-items: center;
    background: #27272A;
    border-radius: 12px;
    border: 1.5px solid #27272A;
    height: fit-content;
}

span.best-deal {
    padding: 4px 6px;
    background: #FEF08A;
    border-radius: 6px 6px;
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    line-height: 17.36px;
    letter-spacing: -0.5px;
    text-align: center;
}
.plan-name {
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    color: #E4E4E7;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap:10px;
}

.plan-price {
    font-style: normal;
    color: #ffffff;
    font-size: 44px;
    font-weight: 600;
    line-height: 55px;
    letter-spacing: -3px;
    font-family: "Geist", sans-serif;
    margin-top:10px;
}

.pricing-plan-block p {
    color: #AAAAAA;
    margin: 0 0 25px;
    font-family: "Geist", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}
.plan-benifits-list {
    margin-top:25px;
}
.plan-benifits-list ul li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 8px;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: left;
    color: #D4D4D8;
}

.plan-benifits-list ul {
    display: flex;
    flex-flow: column;
    gap: 10px;
}

.plan-benifits-list ul li svg {
    flex: 0 0 15px;
    position: relative;
    top: 5px;
}

.plan-billed-year {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    color: #A1A1AA;
    margin-top: 20px;
}
.team-new-inner {
    /*display: flex;*/
    /*justify-content: space-between;*/
    align-items: center;
    /*flex-flow: row-reverse;*/
}
.pricing-plan-block button{
    padding: 14px 16px;
    font-family: "Geist", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 19.84px;
    letter-spacing: -0.5px;
    background: #FFFFFF;
    min-width: 320px;
    text-align: center;
    justify-content: center;
    height: 48px;
    border-radius: 10px;
}
.pricing-plan-block button:hover, .pricing-plan-block a:hover {
    background: #FEF08A;
    transition: .3s;
}
.selected-plan {
    border: 1.5px solid #FEF08A;
}
.selected-plan.pricing-plan-block button {
    background: #FEF08A;
}
.team-plan-block {
    padding: 70px 40px 40px;
    background: #FFFFFF;
    border-radius: 12px;
}
.bestVAlue {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    text-align: center;
    color: #FEF08A;
    margin-top: 15px;
}
.team-plan-block button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 16px;
    gap: 12px;
    height: 48px;
    background: #A389C3;
    border-radius: 30px;
    width: 90%;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #FFFFFF;
    transition: .3s;
    margin: 0 auto;
}
.team-plan-block .plan-name {
    background: #a389c3;
}
.change-seat {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #000000;
    margin: 0 0 140px;
}
.select-menu .options .option:hover .option-text {
    color: #000;
}

.select-menu .select-btn svg {
    transition: .3s;
}
.student-educators {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #000000;
    margin: 30px 0 0;
}

.student-educators a {
    text-decoration: underline;
}

.student-educators a:hover {
    text-decoration: none;
}
.trusted-by-html {
    padding: 50px 0 0;
    text-align: center;
}
.trusted-by-html h4 {
    font-family: "Geist", sans-serif;
    font-size: 44px;
    font-weight: 600;
    line-height: 55px;
    letter-spacing: -3px;
    text-align: center;
    color: #FFFFFF;
    max-width: 100%;
    width: 500px;
    margin: 0 auto 45px;
}
.trusted-by-logos.marquee-wrapper{
    width: 100%;
}
.trusted-by-logos .marquee {
    animation-name: marquee;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    grid-column-gap: 3rem;
    opacity: 1;
    width:88rem;
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
    display: inline-flex;
}
.trusted-by-logos.marquee-wrapper a img{
    height: 32px;
}
.trusted-by-logos.marquee-wrapper .marquee a {
    padding-right:0;
}
.apps-library-logos.marquee-wrapper {
    width: 100%;
}
.apps-library-logos.marquee-wrapper .marquee>a>img {
    height: 98px;
    width: 98px;
    border-radius: 14px;
    object-fit: contain;
}

.app-library-rowOne  .marquee {
    animation-name: marquee;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    grid-column-gap: 1rem;
    opacity: 1;
    width:86rem;
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
    display: inline-flex;
}
.app-library-rowTwo  .marquee {
    animation-name: marqueeRowTwo;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    grid-column-gap: 1rem;
    opacity: 1;
    width: 90rem;
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
    display: inline-flex;
}
.app-library-rowOne .marquee:last-child {
    margin-left: -12px;
}
.app-library-rowTwo .marquee:last-child {
    margin-left: 12px;
}
@keyframes marqueeRowTwo {
    0% {
        transform: translate3d(-100%, 0, 0); /* Start off-screen to the left */
    }
    100% {
        transform: translate3d(0%, 0, 0); /* Fully visible on the right */
    }
}
.apps-library-logos.marquee-wrapper .marquee a {
    padding-right:0;
}
.pagelow-apps-library {
    padding-top: 90px;
}
.pagelow-apps-library h4 {
    font-family: "Geist", sans-serif;
    font-size: 44px;
    font-weight: 600;
    line-height: 55px;
    letter-spacing: -3px;
    text-align: center;
    color: #FFFFFF;
    max-width: 100%;
    width: 600px;
    margin: 0 auto 45px;
}
.faqs-header h2 {
    font-family: "Geist", sans-serif;
    font-size: 44px;
    font-weight: 600;
    line-height: 55px;
    letter-spacing: -3px;
    text-align: center;
    color: #ffffff;
}
.faqs-header {
    margin: 0 0 70px;
}
.faqs-block-question {
    align-items: center;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    letter-spacing: -1px;
    padding: 25px 30px 25px;
}
.faqs-block {
    background: #27272A;
    border-radius: 10px;
    border: 1px solid #3F3F46;
    width: 791px;
    max-width:100%;
    margin: 0 auto 10px;
}
.faqs-block-question.acc__title.active {
    padding-bottom: 0;
}
.acc__panel[style="display: block;"] {
    padding-bottom: 25px;
}
.faqs-block p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: left;
    color: #838383;
    padding: 0 30px;
    margin-top: 15px;
}
.pricing-faqs {
    margin: 0 auto;
    padding: 100px 0;
}
.mobile-plan-box {display: none;}
.acc__panel {
    display: none;
}
.designers-worldwide {
    padding:100px 0;
}
.designers-worldwide-img span img {
    width: 38px;
    height: 38px;
}
.designers-worldwide-img {
    display: flex;
    align-items: center;
    justify-content: center;
}
.designers-worldwide-img span {
    width: fit-content;
    height: fit-content;
}
.designers-worldwide-img span:nth-child(1) {
    margin-right: -12px;
}
.designers-worldwide-img span:last-child {
    margin-left: -12px;
}
.designers-worldwide h4 {
    font-family: "Geist", sans-serif;
    font-size: 44px;
    font-weight: 600;
    line-height: 55px;
    letter-spacing: -3px;
    text-align: center;
    color: #ffffff;
    max-width: 100%;
    width: 580px;
    margin: 5px auto 35px;
}
.pageflow-slider-slide {
    background: #27272A;
    border: 1px solid #3F3F46;
    padding: 25px 25px;
    border-radius: 10px;
}
.pageFlow-infoWrapper {
    background: #27272A;
    border: 1px solid #3F3F46;
    padding: 25px 25px;
    border-radius: 10px;
    margin: 10px;
}
.pageflowSlider-info {
    display: flex;
    align-items: center;
    position: relative;
}
.pageflowSlider-info .star-rating-img {
    position: absolute;
    right: 0;
}
.pageflowSlider-img img {
    width: 48px;
    height: 48px;
    margin-right: 10px;
    border-radius: 10px;
    background: #18181b;
    display: none;
}
.pageflowSlider-img {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    margin-right: 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 24px;
    background: #474747;
}
.pageflowSlider-name-info h5, .pageflowSlider-name-info .h5 {
    font-family: "Geist", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: -0.5px;
    color: #FFFFFF;
}
.pageflowSlider-name-info p {
    font-family: "Geist", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
    color: #A1A1AA;
}
.pageflowSlider-content {
    margin: 0 0 40px;
}
.pageflowSlider-content svg {
    margin-bottom: 25px;
}
.pageflowSlider-content p {
    font-family: "Geist", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: -0.5px;
    text-align: left;
    color:#FFFFFF;
    margin-bottom: 10px;
}
.pageflowSlider-content p:last-child {
    margin-bottom:0;
}
.faqs-block-question.active svg {
    transform:rotate(180deg);
    transition: .3s;
}

.faqs-block-question svg {
    transition: .3s;
}
.have-question {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: #000000;
    margin: 40px 0 70px;
}

.have-question a {
    color: #a389c3;
    text-decoration: underline;
}

.have-question a:hover {
    text-decoration: none;
}
.screens-library h4{
    font-family: "Geist", sans-serif;
    font-size: 44px;
    font-weight: 600;
    line-height: 55px;
    letter-spacing: -3px;
    text-align: center;
    color: #ffffff;
    max-width: 100%;
    width: 520px;
    margin: 5px auto 35px;
}
.screens-library-img {
    padding: 10px;
}
.screens-library-img img {
    border-radius: 20px;
}
.pricing-trusted-by-logos.trusted-logs {
    margin: 0;
    width: 100%;
}


@media only screen and (max-width:1371px) {
    .trusted-by-logos.marquee-wrapper .marquee a:last-child {
        padding-right: 5.4rem;
    }
}
@media only screen and (max-width:1024px) {
    .pagelow-apps-library {
        padding-top:60px;
    }
    .designers-worldwide {
        padding: 40px 0;
    }
    .pricing-faqs {
        padding-top: 40px;
    }
}

@media only screen and (max-width: 992px) {
    .pricing-page-header h1 {
        font-size: 44px;
        line-height: 55px;
        padding: 0 20px;
    }
    .trusted-by-html h4 {
        font-size: 30px;
        line-height: 38px;
        padding: 0 20px;
    }
    .pagelow-apps-library h4 {
        font-size: 30px;
        line-height: 38px;
        padding: 0 20px;
    }
    .designers-worldwide h4 {
        font-size: 30px;
        line-height: 38px;
        padding: 0 20px;
    }
    .screens-library h4 {
        font-size: 30px;
        line-height: 38px;
        padding: 0 20px;
    }
    .pricing-faqs {
        max-width: 100%;
        padding: 50px 20px;
    }
    .faqs-header h2 {
        font-size: 30px;
        line-height: 38px;
    }
    .faqs-block-question {
        font-size: 18px;
        line-height: 26px;
    }
    .faqs-block p {
        font-size: 16px;
        line-height: 24px;
    }
    .faqs-block {
        margin-bottom: 30px;
    }
    .apps-library-logos.marquee-wrapper .marquee>a>img {
        height: 50px;
        width: 50px;
    }
    .app-library-rowOne .marquee {
        width: 49rem;
    }
    .app-library-rowTwo .marquee {
        width:53.5rem;
    }
    .pricing-page-header h3 {
        font-size: 14px;
        line-height: 24px;
    }
    .plan-price {
        font-size: 30px;
        line-height: 38px;
    }
    .bestVAlue {
        font-size: 14px;
        line-height: 24px;
    }
    .pageflowSlider-img img {
        width: 40px;
        height: 40px;
    }
    .faqs-block-question {
        font-size: 18px;
        line-height: 24px;
    }
    .faqs-block p {
        font-size: 14px;
        line-height: 22px;
    }
    .pageflow-testimonials-slider-head {
        font-size: 30px;
        line-height: 43px;
        letter-spacing: -2px;
    }
    .home-pricing-section .pricing-page-header h2 {
        font-size: 30px;
        line-height: 43px;
    }
    .inspiration-again-content h2 {
        font-size: 30px;
        line-height: 43px;
        letter-spacing: -2;
    }
}
@media only screen and (max-width: 768px) {
    .main-plans-pricing {
        grid-template-columns: 1fr;
    }
}
@media only screen and (max-width: 767px) {
    .mobile-plan-box {display: block;}
    .mobile-plan-box .plan-name {
        background: transparent;
        border-radius: 0px;
    }
    .team-new-inner {
            flex-flow: column;
            align-items: baseline;
        }
    .mobile-plan-box .pricing-plan-block {
        padding: 30px;
        background: #FFFFFF;
        border-radius: 12px;
    }

    .mobile-plan-box .plan-name .select-menu {
        margin: 20px auto 0;
    }

    .plan-benifits-list ul li {
        text-align: left;
    }

    .team-plan-block {
        padding: 30px;
    }
    .pricing-page-header p {
        font-size: 16px;
    }
    .trusted-by-html {
        padding-bottom: 0;
    }
    .spacing-fixed {
        max-width: 100%;
        margin-top: 0;
    }
    .team-plan {
        padding: 20px 15px !important;
    }
    .pricing-plan-block button {
        width: 100%;
        min-width: 100%;
    }

    .team-new-inner-items {
        width: 100%;
    }
    .main-plans-pricing {
        padding: 0 20px;
    }
    .main-plans-pricing {
        width: 100%;
    }
    .pageflowSlider-info .star-rating-img {
        position: static;
        margin-top: 10px;
    }
    .pageflowSlider-info {
        flex-flow: column;
        align-items: baseline;
    }
    .pageflowSlider-content {
        margin: 0 0 20px;
    }
    .pageflowSlider-content p {
        font-size: 13px;
        line-height: 20px;
    }
    .pageFlow-infoWrapper {
        padding: 15px;
    }
    .pageflowSlider-img {
        width: 35px;
        height: 35px;
        flex: 0 0 35px;
        margin: 0 0 10px 0;
        font-size: 16px;
    }
    .reviews-masonary .slick-slider {
        overflow: hidden;
    }
}
