/* Call fonts */
@font-face {
    font-family: 'Novatica Light';
    src: url('..//fonts/NovaticaLight.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@import url('https://fonts.googleapis.com/css2?family=Wix+Madefor+Text:wght@400;500;600;700&display=swap');
/* Call fonts */


/* General Style Start */
* {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

/* General Style End */


/* Header Style Start */
.nextwp-header {
    background: transparent;
    padding: 59px 0px 0px 0px;
    z-index: 99;
}

.nextwp-header .container {
    max-width: 1490px;
}

.nextwp-header-menus-container {
    width: 100%;
    gap: 50px;
}

.nextwp-header-menus-container .offcanvas-toggler {
    padding: 0;
    box-shadow: none;
    background: none;
    border: none;
    display: none;
}

.logo-wrap {
    width: 155px;
    overflow: hidden;
}

.logo-wrap p {
    margin: 0;
    font-family: 'Inter';
    font-weight: 500;
    font-size: 10px;
    line-height: 100%;
    text-align: end;
    color: #FFFFFF80;
    transition: 0.3s;
    /* opacity: 0; */
    /* transform: translateX(30px); */
}

.logo-wrap a:hover p {
    /* opacity: 1; */
    /* transform: translateX(0px); */
    color: #fff;
}

.logo-wrap p span {
    font-weight: 700;
}

.nextwp-header-menus-container .nextwp-menus-wrapper {
    width: calc(100% - 205px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nextwp-header-menus-container .nextwp-menus-wrapper ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 27px;
    width: calc(100% - 239px);
}

.nextwp-menus-wrapper .button-action {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.nextwp-header-menus-container .nextwp-menus-wrapper ul li {
    position: relative;
}

.nextwp-header-menus-container .nextwp-menus-wrapper ul li a {
    font-family: 'Helvetica';
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
}

.nextwp-header-menus-container .nextwp-menus-wrapper ul .has-child-menu .child-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #FC37B7 0%, #873EFF 61.05%);
    border-radius: 12px;
    padding: 2px 0;
    min-width: 166px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 999;
    margin: 15px 0 0 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.nextwp-header-menus-container .nextwp-menus-wrapper ul .has-child-menu:hover .child-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

.nextwp-header-menus-container .nextwp-menus-wrapper ul .has-child-menu .child-menu::after {
    content: '';
    position: absolute;
    left: 25%;
    top: -18px;
    width: 47%;
    height: 18px;
}

.nextwp-header-menus-container .nextwp-menus-wrapper ul .has-child-menu .child-menu::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    width: 14px;
    height: 14px;
    background: linear-gradient(90deg, #FC37B7 0%, #873EFF 61.05%);
    transform: translateX(-50%) rotate(45deg);
}

.nextwp-header-menus-container .nextwp-menus-wrapper ul li:hover a {
    color: #FC37B7;
}

.nextwp-header-menus-container .nextwp-menus-wrapper ul li a svg path,
.nextwp-header-menus-container .nextwp-menus-wrapper ul li a svg {
    transition: 0.3s;
}

.nextwp-header-menus-container .nextwp-menus-wrapper ul li:hover a svg path {
    fill: #FC37B7;
}

.nextwp-header-menus-container .nextwp-menus-wrapper ul li:hover a svg {
    transform: rotate(180deg);
}

.nextwp-header-menus-container .nextwp-menus-wrapper ul .has-child-menu .child-menu li {
    opacity: 0;
    transform: translateY(10px);
    animation: none;
    width: 100%;
}

.nextwp-header-menus-container .nextwp-menus-wrapper ul .has-child-menu:hover .child-menu li {
    animation: slideInItem 0.3s ease forwards;
}

.nextwp-header-menus-container .nextwp-menus-wrapper ul .has-child-menu .child-menu li:nth-child(1) {
    animation-delay: 0.1s;
}

.nextwp-header-menus-container .nextwp-menus-wrapper ul .has-child-menu .child-menu li:nth-child(2) {
    animation-delay: 0.15s;
}

.nextwp-header-menus-container .nextwp-menus-wrapper ul .has-child-menu .child-menu li:nth-child(3) {
    animation-delay: 0.20s;
}

.nextwp-header-menus-container .nextwp-menus-wrapper ul .has-child-menu .child-menu li:nth-child(4) {
    animation-delay: 0.25s;
}

@keyframes slideInItem {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nextwp-header-menus-container .nextwp-menus-wrapper ul .has-child-menu .child-menu li a {
    padding: 10px 14px;
    display: flex;
    gap: 8px;
    color: #fff !important;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 14px;
    line-height: 18px;
}

.nextwp-header-menus-container .nextwp-menus-wrapper ul .has-child-menu .child-menu li a:hover {
    padding-left: 20px;
}

.nextwp-header-menus-container .nextwp-menus-wrapper ul .has-child-menu .child-menu li:first-child a {
    border-radius: 12px 12px 0px 0px;
}

.nextwp-header-menus-container .nextwp-menus-wrapper ul .has-child-menu .child-menu li:last-child a {
    border-radius: 0px 0px 12px 12px;
}

.nextwp-menus-wrapper .button-action .btn-start {
    font-family: 'Helvetica';
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    background: linear-gradient(92.68deg, #AFAFAF 35.47%, rgba(175, 175, 175, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border: 1px solid #FFFFFF24;
    padding: 20px 25px 20px 28px;
    border-radius: 87px;
    transition: 0.5s;
}

.nextwp-menus-wrapper .button-action .btn-start:hover {
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #fff;
    background: linear-gradient(90deg, #5a5aff, #7f6fff);
    border-color: #5a5aff;
}

.nextwp-menus-wrapper .button-action .btn-login:hover {
    background: linear-gradient(90deg, #5a5aff, #7f6fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.nextwp-menus-wrapper .button-action .btn-login {
    font-family: 'Helvetica';
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    transition: 0.3s;
    padding: 0px 13px;
    border: none;
    border-radius: 87px;
}

.header-menus-offcanvas {
    background: linear-gradient(145deg, #100714, #251D28);
    height: 80vh !important;
}

.header-menus-offcanvas .offcanvas-header {
    justify-content: space-between;
    padding: 20px 25px;
}

.header-menus-offcanvas .offcanvas-header button {
    border: none;
    background: none;
    outline: none;
    display: flex;
}

.header-menus-offcanvas .offcanvas-body {
    padding-left: 25px;
    padding-right: 25px;
}

.header-menus-offcanvas .offcanvas-body .nextwp-menus-wrapper ul {
    padding: 0;
    list-style: none;
    margin: 0 0 0 0;
}

.header-menus-offcanvas .offcanvas-body .nextwp-menus-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.header-menus-offcanvas .offcanvas-body .nextwp-menus-wrapper ul li {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-menus-offcanvas .offcanvas-body .nextwp-menus-wrapper ul li a {
    padding: 14px 0;
    justify-content: space-between;
    font-family: 'Helvetica';
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
}

.header-menus-offcanvas .offcanvas-body .nextwp-menus-wrapper ul li .mobile-child-menu li a {
    font-size: 14px;
    line-height: 18px;
}

.header-menus-offcanvas .offcanvas-body .nextwp-menus-wrapper ul .mobile-has-child-menu.active a:not(.mobile-child-menu li a),
.header-menus-offcanvas .offcanvas-body .nextwp-menus-wrapper ul li a:hover,
.header-menus-offcanvas .offcanvas-body .nextwp-menus-wrapper ul li .mobile-child-menu li a:hover {
    color: #FC37B7;
}

.header-menus-offcanvas .offcanvas-body .nextwp-menus-wrapper ul li a:hover svg path {
    fill: #FC37B7;
}

.header-menus-offcanvas .offcanvas-body .nextwp-menus-wrapper ul .mobile-has-child-menu.active a svg path  {
    fill: #FC37B7;
}

.header-menus-offcanvas .offcanvas-body .nextwp-menus-wrapper ul .mobile-has-child-menu.active a svg {
    transform: rotate(180deg);
}

.header-menus-offcanvas .offcanvas-body .nextwp-menus-wrapper ul li .mobile-child-menu {
    display: none;
    padding: 0px 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
}

.header-menus-offcanvas .offcanvas-body .nextwp-menus-wrapper ul li .mobile-child-menu li:last-child {
    border: none;
}

.header-menus-offcanvas .offcanvas-header button svg,
.nextwp-header-menus-container .offcanvas-toggler svg {
    width: 20px;
    height: 20px;
}

.header-menus-offcanvas .offcanvas-body .nextwp-menus-wrapper .button-action {
    max-width: 100%;
    justify-content: flex-start;
}

.header-menus-offcanvas .offcanvas-body .nextwp-menus-wrapper .button-action .btn-start {
    padding: 15px 20px 15px 20px;
    line-height: 20px;
}
/* header css end */


/* Banner css start */


@keyframes move-border {
    0% {
        background-position: 100% 0%;
    }

    100% {
        background-position: 181% 0%;
    }

}


/* .next-wp-banner-box::after {
    content: " ";
    position: absolute;
    inset: -1px;
    border: 1px solid transparent;
    border-radius: inherit;
    background-image: conic-gradient(from var(--angle), rgba(255, 255, 255, 0.2) var(--percent1), #fff var(--percent2), #fff var(--percent3), rgba(255, 255, 255, 0.2) var(--percent4));
    background-origin: border-box;
    -webkit-mask: linear-gradient(black, black) content-box, linear-gradient(black, black);
    mask: linear-gradient(black, black), linear-gradient(black, black);
    -webkit-mask-clip: content-box, border-box;
    mask-clip: content-box, border-box;
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: spin 5s linear infinite;
} */

@property --angle {
    syntax: "<angle>";
    inherits: true;
    initial-value: 0turn;
}

@property --percent1 {
    syntax: "<percentage>";
    inherits: true;
    initial-value: 74%;
}

@property --percent2 {
    syntax: "<percentage>";
    inherits: true;
    initial-value: 81%;
}

@property --percent3 {
    syntax: "<percentage>";
    inherits: true;
    initial-value: 94%;
}

@property --percent4 {
    syntax: "<percentage>";
    inherits: true;
    initial-value: 100%;
}

/* @keyframes spin {
    100% {
        --angle: 1turn;
    }
} */





.nextwp-banner .container {
    max-width: 1424px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner-conntent-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner-conntent-wrap .banner-conntent-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Helvetica';
    font-weight: 500;
    font-size: 13px;
    line-height: 21px;
    color: #fff;
    backdrop-filter: blur(32px);
    border: 1px solid #9BB2FF;
    background: #758AFF1A;
    padding: 8.5px 13px;
    border-radius: 100px;
    margin-bottom: 11px;
}

.banner-conntent-wrap h1 {
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 75px;
    line-height: 85px;
    letter-spacing: 1px;
    color: #FFFFFF;
    margin-bottom: 15px;
    text-align: center;
}

.banner-conntent-wrap .banner-conntent-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 0;
    margin: 0 0 91px 0;
    gap: 66px;
    list-style: none;
}

.banner-conntent-wrap .banner-conntent-list li {
    display: flex;
    align-items: center;
    gap: 3px;
    font-family: 'Helvetica';
    font-weight: 400;
    font-size: 24px;
    line-height: 29px;
    color: #FFFFFF;
}

.wp-banner-slide-bottom-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.wp-banner-slide-bottom .next-wp-banner-box {
    display: flex;
    max-width: 738px;
    flex-direction: column;
    gap: 9px;
}

.next-wp-banner-box .box-content-heading {
    font-family: 'Helvetica';
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: #D6D6D6;
    text-align: center;
}

.next-wp-banner-box .box-content-heading span {
    text-decoration: underline;
}

.next-wp-banner-box .box-content {
    position: relative;
    display: flex;
    align-items: center;
    background: #301B3C;
    border-radius: 15px;
    padding: 10px 9px 10px 20px;
}

.box-content .input-area-container {
    width: calc(100% - 60px);
    display: flex;
}

.box-content .input-area-container input {
    outline: none;
    width: 100%;
    background: #fff0;
    border: 0;
    font-family: 'Helvetica';
    font-weight: 400;
    font-size: 18px;
    overflow: hidden;
    color: #D6D6D6;
    height: 50px;
    padding: 0;
}

.box-content .input-area-container input::placeholder {
    color: #D6D6D6;
}


.box-content .generate-button {
    transition: 0.3s;
    border: none;
    width: 60px;
    padding: 10px 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #873EFF;
    box-shadow: 0px 0px 0px 3.37px #FFFFFF12;
    border-radius: 10px;
    outline: none;
}

.box-content .generate-button:hover {
    transform: scale(1.02);
    background: #fff0;
    box-shadow: 0px 0px 0px 3.37px #873EFF;
}

.box-content .generate-button:hover svg {
    fill: #873EFF;
}

.nextwp-banner .wp-banner-slide-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
}

.wp-banner-slide-bottom-wrap .wp-banner-suggestion,
.wp-banner-slide-bottom-wrap .more-suggestion {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    font-family: 'Helvetica';
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    color: #fff;
    padding: 9px 15px;
    background: #FFFFFF1A;
    border-radius: 20px;
    cursor: pointer;
}

.wp-banner-slide-bottom-wrap .wp-banner-suggestion svg {
    width: 24px;
    height: 24px;
}

.wp-banner-slide-bottom-wrap .wp-banner-suggestion.hide {
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
    transition: all 0.4s ease;
    display: none;
}

/* .wp-banner-slide-bottom .container:before {
    content: "";
    position: absolute;
    height: 44px;
    width: 95px;
    top: 26px;
    left: -17px;
    pointer-events: none;
    z-index: 99999999999 !important;
    background: linear-gradient(89deg, #200b2d 4%, rgb(0 0 0 / 0%) 99.76%);
    border-radius: 0;
} */

/* .wp-banner-slide-bottom .container:after {
    content: "";
    position: absolute;
    height: 44px;
    width: 95px;
    top: 26px;
    right: -17px;
    pointer-events: none;
    z-index: 99999999999 !important;
    background: linear-gradient(281deg, #200b2d 4%, rgb(0 0 0 / 0%) 99.76%);
    border-radius: 0;
} */

.wp-banner-slide-bottom .container {
    overflow: hidden;
    position: relative;
}

.nextwp-banner {
    color: #fff;
    min-height: 840px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-top: -141px;
    padding-bottom: 71px;
    padding-top: 20px;
    position: relative;
    background-image: url('../images/banner-back-img.png');
    background-color: #2B0B3A;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}

.nextwp-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(42.82% 42.82% at 50% 50%, rgba(19, 15, 53, 0) 68.17%, #00000040 90%);
    pointer-events: none;
    z-index: 1;
}

/* Banner css End */

/* Why Our Platform is Superior */
.our-platform-superior-section {
    background: #251D28;
    padding: 52px 0 80px 0;
}

.our-platform-superior-section .container {
    max-width: 1420px;
}

.our-platform-superior-head h3 {
    margin-bottom: 54px;
    font-family: 'Roboto';
    font-weight: 700;
    font-size: 28px;
    line-height: 100%;
    text-align: center;
    color: #FFFFFF;
}

.our-platform-superior-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 90px;
}

.our-platform-superior-content .our-platform-superior-item img {
    width: 100%;
    margin-bottom: 24px;
}

.our-platform-superior-content .our-platform-superior-item h4 {
    font-family: 'Helvetica';
    font-weight: 300;
    font-size: 27px;
    line-height: 34px;
    letter-spacing: -0.28px;
    color: #FFFFFF;
    margin-bottom: 9.5px;
}

.our-platform-superior-content .our-platform-superior-item p {
    font-family: 'Helvetica';
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: #FFFFFF;
    margin: 0;
}

/* Why Our Platform is Superior */


/* Endless Possibilities with Wooster */

.endless-possibilities-with-wooster-section {
    background: #111111;
    padding: 82px 0 56px 0;
    overflow: hidden;
}

.endless-possibilities-with-wooster-section .container {
    max-width: 1420px;
}

.endless-possibilities-wooster-head .endless-possibilities-head-label {
    display: flex;
    align-items: center;
    gap: 11px;
    font-family: 'Inter';
    font-weight: 500;
    font-size: 13px;
    line-height: 22px;
    color: #FFFFFF;
    background: #1F1F1F;
    border-radius: 24px;
    padding: 8px 15px;
    margin-bottom: 12px;
    width: fit-content;
}

.endless-possibilities-wooster-head h3 {
    font-family: 'Roboto';
    font-weight: 600;
    font-size: 54px;
    line-height: 70px;
    color: #FFFFFF;
    margin-bottom: 13px;
}

.endless-possibilities-wooster-head h5 {
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 42px;
    line-height: 64px;
    color: #C0C0C0;
    margin-bottom: 72px;
}

.endless-possibilities-wooster-head h5 span {
    text-decoration: underline dotted;
    text-decoration-thickness: 5%;
    text-underline-offset: 10px;
}

.endless-possibilities-wooster-built-items {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.endless-wooster-built-dropdown {
    position: relative;
    min-width: 144px;
}

.endless-wooster-built-dropdown .endless-built-dropdown-toggle {
    box-shadow: 0px 1px 2px 0px #0000000D;
    border: 1px solid #40403F;
    background: #FFFFFF01;
    padding: 9px 13px;
    border-radius: 6px;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 13px;
    line-height: 21px;
    color: #FCFBF8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    transition: all 0.4s ease;
}

.endless-wooster-built-dropdown .endless-built-dropdown-toggle:hover,
.endless-wooster-built-dropdown .endless-built-dropdown-toggle.active {
    background: #40403F;
}

.endless-wooster-built-dropdown .endless-built-dropdown-toggle svg {
    transition: all 0.4s ease;
}

.endless-wooster-built-dropdown .endless-built-dropdown-toggle.active svg {
    transform: rotate(180deg);
}

.endless-wooster-built-dropdown .endless-built-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #111111 0%, #272725 61.05%);
    border-radius: 12px;
    padding: 0;
    min-width: 166px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 999;
    margin: 15px 0 0 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    list-style: none;
    padding: 7px 0;
}

.endless-wooster-built-dropdown .endless-built-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

.endless-wooster-built-dropdown .endless-built-dropdown-menu .endless-built-dropdown-item {
    font-family: 'Inter';
    font-weight: 400;
    font-size: 13px;
    line-height: 21px;
    color: #FCFBF8;
    padding: 6px 20px;
    width: 100%;
    display: flex;
}

.endless-possibilities-wooster-built-items .endless-wooster-built-items {
    padding: 0;
    margin: 0 0 0 0;
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.endless-wooster-built-items .wooster-built-items .endless-built-item {
    font-family: 'Inter';
    font-weight: 500;
    font-size: 13px;
    line-height: 21px;
    color: #FCFBF8;
    padding: 9px 13px;
    border-radius: 4px;
    background: #FFFFFF01;
    border: 1px solid #272725;
    box-shadow: 0px 1px 2px 0px #0000000D;
    transition: 0.3s;
    min-width: 81px;
    width: 100%;
}

.endless-wooster-built-items .wooster-built-items .endless-built-item.active {
    background: #272725;
}

.endless-wooster-built-items .wooster-built-items .endless-built-item:hover {
    background: #272725;
}

.endless-wooster-built-items-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 34px;
    min-height: 241px;
}

.endless-wooster-content-item {
    display: flex;
    flex-direction: column;
    gap: 13px;
    width: 100%;
}

.endless-wooster-content-item .wooster-built-content-thumb {
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.endless-wooster-content-item .wooster-built-content-thumb img {
    width: 100%;
    height: 186px;
    object-fit: cover;
    object-position: top;
    transition: 1s ease;
}


.endless-wooster-content-item .wooster-built-content-thumb img:hover {
    object-position: bottom;
}

.endless-wooster-content-item .wooster-built-content-details {
    display: flex;
    align-items: center;
    gap: 8px;
}

.endless-wooster-content-item .wooster-built-content-details .author-img {
    width: 36px;
    height: 36px;
    border-radius: 100%;
    object-fit: cover;
    cursor: pointer;
}

.endless-wooster-content-item .wooster-built-content-details .built-content-detail h6 {
    font-family: 'Inter';
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #FCFBF8;
    margin-bottom: 1px;
    cursor: pointer;
}

.endless-wooster-content-item .wooster-built-content-details .built-content-detail p {
    font-family: 'Inter';
    font-weight: 400;
    font-size: 13px;
    line-height: 21px;
    color: #C5C1BA;
    margin: 0;
}

.wooster-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(28, 28, 28, 0.8);
    backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.5s ease;
    z-index: 999;
    overflow: auto;
    scrollbar-width: none;
}

.wooster-popup-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.wooster-popup {
    border-radius: 25px;
    width: 95%;
    max-width: 1517px;
    transform: scale(0.6);
    opacity: 0;
    transition: 0.5s ease;
}

.wooster-popup-overlay.active .wooster-popup {
    transform: scale(1);
    opacity: 1;
}

.wooster-popup-close {
    position: absolute;
    top: 8%;
    right: 3.54%;
    background: linear-gradient(90deg, #873EFF 0%, #FA38B8 100%);
    border: none;
    color: #fff;
    cursor: pointer;
    width: 40px;
    height: 40px;
    font-size: 18px;
    border-radius: 100%;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 0px;
    transform: scale(0.6);
    transition: 0.5s ease;
}

.wooster-popup-overlay.active .wooster-popup-close {
    transform: scale(1);
}

.endless-wooster-popup-content-item {
    display: flex;
    align-items: center;
    background: #F7F6F6;
    border-radius: 25px;
    padding: 36px 32px 32px 36px;
    gap: 48px;
}

.endless-wooster-popup-content-item .endless-wooster-popup-item-thumb {
    width: calc(100% - 448px);
    height: 650px;
    overflow: hidden;
}

.endless-wooster-popup-content-item .endless-wooster-popup-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: 2s ease;
    border: 1px solid #000000;
    border-radius: 12px;
}

.endless-wooster-popup-content-item .endless-wooster-popup-item-thumb img:hover {
    object-position: bottom;
}

.endless-wooster-popup-content-item .endless-wooster-popup-item-content {
    width: 400px;
    display: flex;
    flex-direction: column;
}

.endless-wooster-popup-content-item .endless-wooster-popup-item-content h3 {
    font-family: 'Plus Jakarta Sans';
    font-weight: 700;
    font-size: 60px;
    line-height: 70px;
    text-transform: capitalize;
    color: #000000;
    margin-bottom: 26px;
}

.endless-wooster-popup-content-item .endless-wooster-popup-item-content p {
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    font-size: 15px;
    line-height: 30px;
    color: #000000;
    padding-bottom: 42px;
    margin-bottom: 40px;
    border-bottom: 1px solid #b9b9b9c2;
}

.endless-wooster-popup-content-item .endless-wooster-popup-item-content .popup-category {
    display: flex;
    flex-direction: column;
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    font-size: 15px;
    line-height: 30px;
    color: #000;
    margin-bottom: 26px;
}

.endless-wooster-popup-content-item .endless-wooster-popup-item-content a {
    width: 100%;
    font-family: 'Plus Jakarta Sans';
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    padding: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border-radius: 5px;
    transition: 0.5s;
}

.endless-wooster-popup-content-item .endless-wooster-popup-item-content .view-project {
    border: 1px solid #000000;
    background: #fff0;
    backdrop-filter: blur(100px);
    color: #000000;
    margin-bottom: 16px;
}

.endless-wooster-popup-content-item .endless-wooster-popup-item-content .view-project:hover {
    border-color: #5300DB;
    background: #5300DB;
    color: #FFFFFF;
}

.endless-wooster-popup-content-item .endless-wooster-popup-item-content .clone-customize {
    border: 1px solid #5300DB;
    background: #5300DB;
    backdrop-filter: blur(100px);
    color: #FFFFFF;
}

.endless-wooster-popup-content-item .endless-wooster-popup-item-content .clone-customize:hover {
    border-color: #000000;
    background: #fff0;
    color: #000000;
}

/* Endless Possibilities with Wooster */

/* Using AI Intelligently */
.using-ai-intelligently-section {
    background: linear-gradient(180deg, #000000 19%, #FFFFFF 76.66%);
    padding: 71px 0 201px 0;
}

.using-ai-intelligently-section .container {
    max-width: 1420px;
}

.using-ai-intelligently-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 65px;
}

.using-ai-intelligently-head h3 {
    font-family: 'Helvetica';
    font-weight: 400;
    font-size: 54px;
    line-height: 62px;
    letter-spacing: -2.24px;
    color: #FFFFFF;
    margin-bottom: 0px;
    max-width: 964px;
}

.using-ai-intelligently-head h3 span {
    font-weight: 700;
}

.using-ai-head-lists {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1rem, 2vw, 2rem);
    margin-bottom: 58px;
}

.using-ai-head-lists .using-ai-head-list {
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.using-ai-head-lists .using-ai-head-list .ai-head-icon {
    margin-top: -2px;
}

.using-ai-head-lists .using-ai-head-list .ai-head-icon-content h4 {
    font-family: 'Arial';
    font-weight: 400;
    font-size: 19px;
    line-height: 22px;
    color: #FFFFFF;
    margin-bottom: 6px;
}

.using-ai-head-lists .using-ai-head-list .ai-head-icon-content p {
    font-family: 'Arial';
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    margin: 0;
    color: #A0A1A2;
}

.using-ai-intelligently-content-lists {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 94px;
}

.using-ai-intelligently-content-lists .using-ai-content-item {
    background-image: linear-gradient(180deg, #E3D4FE 26%, #FEAAA8 87%);
    border-radius: 24px 24px 0px 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.using-ai-intelligently-content-lists .using-ai-content-item.topend {
    border-radius: 24px 24px 24px 0px;
    align-items: flex-start;
}

.using-ai-content-item .intelligently-content-main {
    margin-bottom: -1px;
}

.using-ai-content-item .using-ai-content-item-head {
    padding: 45px 15px 29px 32px;
    width: 100%;
}

.using-ai-content-item .using-ai-content-item-head h4 {
    font-family: 'Helvetica';
    font-weight: 400;
    font-size: 27px;
    line-height: 34px;
    letter-spacing: -0.28px;
    color: #000000;
    margin-bottom: 9px;
}

.using-ai-content-item .using-ai-content-item-head p {
    font-family: 'Helvetica';
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
    margin: 0;
}

.using-ai-content-item .ai-img {
    position: absolute;
    top: 36%;
    right: 18%;
    width: 42px;
    height: 42px;
}

.using-ai-content-item.topend .ai-img {
    top: 37%;
    right: 9%;
}

.using-ai-intelligently-content-lists .using-ai-content-item.bottomstart {
    flex-direction: column-reverse;
    border-radius: 24px 0px 24px 24px;
}

.using-ai-intelligently-content-lists .using-ai-content-item.bottomend {
    border-radius: 0px 24px 24px 24px;
    flex-direction: column-reverse;
    align-items: flex-start;
}

.using-ai-content-item.bottomstart .ai-img {
    top: 4%;
    right: unset;
    left: 15%;
}

.using-ai-content-item.bottomend .ai-img {
    top: 34%;
    right: 10%;
}

.using-ai-intelligently-bottom-head h3 {
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 54px;
    line-height: 58px;
    letter-spacing: -1.35px;
    color: #101517;
    margin-bottom: 41px;
}

.using-ai-intelligently-bottom-head h3 span {
    font-weight: 600;
}

.using-ai-bottom-list-item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.using-ai-bottom-list-item .using-ai-bottom-item.end {
    align-items: flex-start;
}

.using-ai-bottom-list-item .using-ai-bottom-item {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    border-radius: 12px;
    background: radial-gradient(70.71% 70.71% at 50% 50%, #694B74 0%, #39293E 44%, #251D28 70%, #3B2643 100%);
    border-top: 1px solid #251D28;
    box-shadow: 0px 2px 2px 0px #0000001A;
}

.using-ai-bottom-item .using-ai-bottom-item-content {
    width: 100%;
    padding: 39px 15px 42px 32px;
    background: #100714;
    border-radius: 0px 0px 12px 12px;
}

.using-ai-bottom-item .using-ai-bottom-item-content h4 {
    font-family: 'Helvetica';
    font-weight: 400;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0.3px;
    color: #FFFFFF;
    margin-bottom: 6px;
}

.using-ai-bottom-item .using-ai-bottom-item-content p {
    font-family: 'Helvetica';
    font-weight: 400;
    font-size: 17px;
    line-height: 22px;
    letter-spacing: 0.72px;
    color: #F6F6F6;
    margin: 0;
}
/* Using AI Intelligently */


/* Unleash Limitless E-commerce Start */
.unleash-limitless-e-commerce-section {
    background: #251D28;
    position: relative;
    padding: 179px 0 122px 0;
}

.unleash-limitless-e-commerce-section .container {
    max-width: 1372px;
}

.unleash-limitless-e-commerce-section .imgone {
    position: absolute;
    top: 0;
    right: 0;
}

.unleash-limitless-e-commerce-section .imgtwo {
    position: absolute;
    right: 0;
    bottom: 0;
}

.unleash-limitless-e-commerce-head h3 {
    font-family: 'Roboto';
    font-weight: 600;
    font-size: 54px;
    line-height: 54px;
    letter-spacing: -0.27px;
    color: #FFFFFF;
    margin-bottom: 22px;
    max-width: 491px;
}

.unleash-limitless-e-commerce-head p {
    font-family: 'Inter';
    font-weight: 400;
    font-size: 21px;
    line-height: 29px;
    letter-spacing: -0.36px;
    color: #FFFFFF;
    margin-bottom: 92px;
    max-width: 709px;
}

.unleash-limitless-e-commerce-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 57px;
    column-gap: 20px;
    justify-content: space-between;
    z-index: 9;
    position: relative;
}

.unleash-limitless-commerce-item h4 {
    font-family: 'Roboto';
    font-weight: 600;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: -0.72px;
    color: #FFFFFF;
    margin-bottom: 7px;
}

.unleash-limitless-commerce-item p {
    font-family: 'Inter';
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: -0.25px;
    color: #FFFFFF;
    margin: 0;
}
.unleash-limitless-commerce-item:first-child p {
    max-width: 603px;
}
.unleash-limitless-commerce-item:nth-child(2) p {
    max-width: 580px;
}
.unleash-limitless-commerce-item:nth-child(3) p {
    max-width: 594px;
}
.unleash-limitless-commerce-item:last-child p {
    max-width: 540px;
}
/* Unleash Limitless E-commerce End */



/* Run your entire online business Start */
.run-entire-online-business-section {
    padding: 85px 0 94px 0;
}

.run-entire-online-business-section .container {
    max-width: 1372px;
}

.run-entire-online-business-head h3 {
    font-family: 'Roboto';
    font-weight: 600;
    font-size: 54px;
    line-height: 60px;
    text-align: center;
    color: #000000;
    margin-bottom: 60px;
}

.run-entire-online-business-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.run-entire-online-business-content .run-entire-business-item {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    border-radius: 12px;
    background: radial-gradient(70.71% 70.71% at 50% 50%, #4E277C 0%, #382351 34%, #261A35 70%, #251D28 100%);
}

.run-entire-business-item .run-entire-business-item-detail {
    width: 100%;
    padding: 32px 10px 33px 32px;
    background: #251D28;
    border-radius: 0px 0px 12px 12px;
}

.run-entire-business-item .run-entire-business-item-detail h5 {
    font-family: 'Helvetica';
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.3px;
    color: #fff;
    margin-bottom: 9px;
}

.run-entire-business-item .run-entire-business-item-detail p {
    font-family: 'Helvetica';
    font-weight: 400;
    font-size: 17px;
    line-height: 22px;
    letter-spacing: 0.72px;
    color: #9DABAD;
    margin: 0;
}

.run-entire-business-item .run-entire-business-item-thumb img {
    max-width: 100%;
    width: 100%;
}

.run-entire-business-item:first-child .run-entire-business-item-thumb {
    padding-left: 32px;
}

.run-entire-business-item:nth-child(2) .run-entire-business-item-thumb {
    padding-left: 43px;
}
/* Run your entire online business End */



/* Control and customize your operations */
.control-customize-operations-section {
    padding: 94px 0 94px 0;
    background: #F6F3FA;
}

.control-customize-operations-section .container {
    max-width: 1372px;
}

.control-customize-operations-head h3 {
    font-family: 'Roboto';
    font-weight: 600;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: -0.72px;
    color: #101517;
    margin-bottom: 26px;
}

.control-customize-operations-head p {
    font-family: 'Inter';
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: -0.25px;
    color: #101517;
    margin-bottom: 66px;
    max-width: 714px;
}

.control-customize-operations-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    background: #FBF9F6;
}

.control-customize-operations-items:last-child {
    margin-top: 26px;
}

.control-customize-item {
    background: #FFFFFF;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px;
    gap: 27px;
}

.control-customize-item p {
    font-family: 'Inter';
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: -0.25px;
    color: #101517;
    margin: 0;
}
/* Control and customize your operations */



/* next wp performance css end */



/* nextwp client testimonials css start */

.testimonial-user strong {
    display: block;
    font-size: 16px;
    color: #111;
}

.testimonial-user span {
    font-size: 13px;
    color: #888;
    display: block;
    margin-bottom: 10px;
}

.nextwp-client-testimonials-button button:hover {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

/* nextwp client testimonials css end */

/* nextwp QA css start */

.nextwp-QA {
    padding: 94px 0px 80px 0px;
}

.nextwp-QA .container {
    max-width: 1036px;
}

.nextwp-QA button.accordion-button {
    font-family: 'Arial';
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #000000;
    padding: 28px 0px 29px 0px;
    border-bottom: 1px solid #EAEAEA;
}

.nextwp-QA .accordion-button:not(.collapsed) {
    background: transparent !important;
}

.nextwp-QA .accordion-body {
    padding: 26px 0 28px 0;
    border-bottom: 1px solid #EAEAEA;
    font-family: 'Helvetica';
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
}

.nextwp-QA .accordion-item {
    border: unset !important;
}

.nextwp-QA h3 {
    font-family: 'Inter';
    font-weight: 300;
    font-size: 49px;
    line-height: 61px;
    color: #000000;
    margin-bottom: 25px;
}

button.accordion-button::after {
    display: none;
}

button.accordion-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nextwp-QA .accordion-button:not(.collapsed) .open-icon {
    display: none;
}

button.accordion-button.collapsed .close-icon {
    display: none;
}

.nextwp-QA button.accordion-button:focus {
    box-shadow: unset !important;
}

/* nextwp QA css End */

/* Nextwp build first css start */

.nextwp-build-first {
    background-image: url('../images/Ready-to-Build-Background-img.png');
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 126px 0px 84px 0px;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nextwp-build-first .container {
    max-width: 800px;
}

.nextwp-build-first .content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nextwp-build-first h2 {
    font-family: 'Inter';
    font-weight: 300;
    font-size: 50px;
    line-height: 60px;
    text-align: center;
    color: #F3EDED;
    margin-bottom: 8px;
}

.nextwp-build-first p {
    font-family: 'Helvetica';
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    text-align: center;
    color: #DBDBDB;
    margin-bottom: 49px;
}

.nextwp-build-first .btn-get-started {
    background-color: #335CFF;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: 'Helvetica';
    font-weight: 400;
    font-size: 16px;
    line-height: 17px;
    color: #FFFFFF;
    transition: 0.3s;
}

.nextwp-build-first .btn-get-started:hover {
    background: #7f5af0;
}

/* Nextwp build first css End */





/* Wooster table css start */
.wooster-table-main {
    background: #F6F3FA;
    padding: 114px 0px 89px 0px;
}

.wooster-table-heading h2 {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 43px;
    line-height: 57px;
    letter-spacing: -0.96px;
    color: #000000;
    margin-bottom: 0;
}

.wooster-table-header {
    margin-bottom: 40px;
}

.wooster-table-subtext span {
    font-family: DM Sans;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: -0.4px;
}

.wooster-table-subtext {
    max-width: 420px;
    margin: 0px;
    font-family: DM Sans;
    font-weight: 700;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: -0.4px;
}

.wooster-table-container {
    background: #fff;
    border-radius: 16px;
    padding: 6px;
    width: 100%;
    box-shadow: 0px 4px 24px 0px #0000001A;
}

.wooster-compare-table {
    width: 100%;

}

.wooster-compare-table th,
.wooster-compare-table td {
    padding: 10px 24px !important;
    white-space: nowrap;
    border: 1px solid #E2E2E2;
    /* width: 123px; */
    height: 64px;
    font-family: DM Sans;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: -0.32px;
    text-align: center;
}

.wooster-compare-table td span {
    display: block;
    font-family: 'DM Sans';
    font-weight: 400;
    font-size: 10px;
    line-height: 100%;
    letter-spacing: -0.32px;
    text-align: center;
    text-transform: uppercase;
    color: #212121;
    margin-top: 3px;
}

.wooster-compare-table tr {
    border-bottom: 1px solid #E2E2E2;
    background: #FAFAFA;
}

.wooster-compare-table th:first-child,
.wooster-compare-table td:first-child {
    font-family: DM Sans;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.32px;
    color: #212121;
    text-align: left;
}

.wooster-compare-table .highlight-col span {
    color: #fff;
}

.highlight-col {
    background: #251D28;
    border-radius: 0;
    padding: 0px !important;
    font-family: DM Sans;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: -0.32px;
    color: #FFFFFF;
}

.wooster-note {
    margin-top: 32px;
    color: #212121;
    font-family: DM Sans;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: -0.28px;
    text-align: center;
}

.wooster-note span {
    font-family: DM Sans;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: -0.28px;
}

.wooster-compare-table thead tr:first-child th:first-child {
    background-color: #fff;
}

.wooster-table-main .wooster-table-heading {
    display: flex;
    align-items: start;
    justify-content: center;
    width: 100%;
}

.wooster-table-main .container {
    max-width: 834px;
}

.wooster-compare-table {
    border-collapse: separate;
    border-spacing: 0;
}

.wooster-compare-table tr {
    border-bottom: 1px solid #E2E2E2;
    background: #FAFAFA;
}


.wooster-compare-table tr:first-child th:first-child {
    border-top-left-radius: 14px;
}

.wooster-compare-table tr:first-child th:last-child {
    border-top-right-radius: 14px;
}

.wooster-compare-table tr:last-child td:first-child {
    border-bottom-left-radius: 14px;
}

.wooster-compare-table tr:last-child td:last-child {
    border-bottom-right-radius: 14px;
}

/* Wooster table  css end */



/*   wooster Every Possibile css start   */
.wooster-ep-main {
    padding: 92px 0px !important;
}

.wooster-ep-card.ep-card-right {
    background-color: #4123b8;
    display: flex;
    flex-direction: row;
}

.wooster-ep-card.ep-card-right p {
    margin-right: 0 !important;
    margin-bottom: 46px;
}

.wooster-ep-card-2-image {
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.wooster-ep-main .container {
    max-width: 1420px;
}

.wooster-ep-card-2-content {
    display: flex;
    flex-direction: column;
    justify-content: end;
    width: 621px;
}

.wooster-ep-card-inner-content {
    display: flex;
    flex-direction: column;
    justify-content: end;
    background: linear-gradient(0deg, #000A1E, #000A1E);
    padding: 20px;
}

.nextwp-menus-wrapper .button-action .username {
    font-family: 'Helvetica';
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    padding: 0px 13px;
}

.wooster-ep-card-inner-content h3 {
    font-family: Helvetica;
    font-weight: 300;
    font-size: 48px;
    line-height: 64px;
    color: #FFFFFF;
    max-width: 100% !important;
    text-align: center !important;
}

.wooster-ep-card-inner-content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.18px;
    color: #FFFFFF;
    font-family: 'Inter', 'DM Sans', sans-serif;
    margin: 0;
    margin-bottom: 0 !important;
    max-width: 100% !important;
}

.wooster-ep-card.ep-card-bot {
    background-image: url('../images/ep\ third\ bg.svg');
    background-color: #000;
    object-fit: cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    justify-content: end;
    overflow: hidden;
    min-height: 543px;
}

.wooster-ep-card-inner-content h3 {
    font-weight: 300 !important;
    font-size: 48px !important;
    line-height: 64px !important;
    color: #FFFFFF;

}

.wooster-ep-card-inner-content p {
    color: #BDBDCA;
    font-family: Helvetica;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.3px;
    margin-left: 76px !important;
}

.wooster-ep-card-4 {
    background: #2C045D;
    border-radius: 16px;
    background-image: url('../images/lastep-back-img.png');
    min-height: 543px;
    padding: 32px 20px 0px 32px;
}

.wooster-ep-card-4 h4 {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 36px;
    line-height: 39px;
    letter-spacing: -0.72px;
    font-family: 'Roboto';
    text-align: left;
    max-width: 230px;
    margin: 0;
}

.wooster-ep-card.ep-card-right h3 {
    font-weight: 600;
    font-size: 35px;
    line-height: 39px;
    letter-spacing: -0.72px;
    max-width: 100%;
    margin-right: 0;
}

.wooster-ep-heading h2 {
    font-family: 'Roboto';
    font-weight: 600;
    font-size: 54px;
    line-height: 60px;
    letter-spacing: -1.35px;
    text-align: center;
    color: #101517;
    margin: 0;
}

.wooster-ep-heading.mb-5 {
    margin-bottom: 92px !important;
}

.wooster-ep-card {
    border-radius: 16px;
    text-align: left;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Left Big Card */
.ep-card-left {
    background-image: url('../images/Ship\ background.png');
    object-fit: cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0px 15px 0px;
}

/* Right Tall Card */
.ep-card-right {
    background: linear-gradient(135deg, #6A2CF3 0%, #3E1A8B 100%);
}

/* Bottom 3 Cards */
.ep-card-bottom:nth-child(1) {
    background: linear-gradient(135deg, #5E3CF8 0%, #3E1A8B 100%);
}

.ep-card-bottom:nth-child(2) {
    background: #000;
}

.ep-card-bottom:nth-child(3) {
    background: linear-gradient(135deg, #FF6A00 0%, #E04F00 100%);
}

.wooster-ep-card h3 {
    color: #fff;
    font-weight: 600;
    font-size: 35px;
    line-height: 39px;
    letter-spacing: -0.72px;
    font-family: 'Roboto', sans-serif;
    margin: 0 32px;
    margin-bottom: 15px;
    max-width: 309px;
}

.wooster-ep-card p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.18px;
    color: #FFFFFF;
    font-family: 'Inter', 'DM Sans', sans-serif;
    margin: 0px 32px;
    margin-bottom: 62px;
    max-width: 401px;
}


.wooster-ep-icons img {
    height: auto;
    width: 100%;
}

.woosterwp-company-logos img {
    width: 100%;
}

.wooster-ep-card-4 p {
    font-family: 'Inter';
    font-weight: 600;
    font-size: 21px;
    line-height: 29px;
    letter-spacing: -0.36px;
    color: #FFFFFF;
    text-align: left;
    margin-top: 20px;
    margin-bottom: 0;
}


.wooster-ep-card-4-content span {
    font-weight: 400;
}


/*   wooster Every Possibile css End   */


/* wooster forget trafic css start */
.woostertrafic-main {
    padding: 85px 0px 129px 0px;
    background-color: #F2E9FF;
}

.woostertrafic-main .container {
    max-width: 1420px;
}

.woostertrafic-heading {
    color: #000000;
    font-family: 'Roboto';
    font-weight: 600;
    font-size: 54px;
    line-height: 60px;
    text-align: center;
    margin-bottom: 60px;
}

.woostertrafic-cards {
    display: flex;
    gap: 11px;

}

.woostertrafic-main .woostertrafic-card-1 {
    max-width: 509px;
    opacity: 1;
    border-radius: 8px;
    background: #F8F7FE;
    padding: 12px 19px 29px 26px;
}



.woostertrafic-card-img {

    margin-bottom: 27px;
}

.woostertrafic-card-img img {
    width: 100%;
    height: 100%;

}

.woostertrafic-card-1 h3 {
    font-family: DM Sans;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.4px;
    color: #251D28;
    margin-bottom: 10px;
}

.woostertrafic-card-1 p {
    color: #251D28;
    font-family: DM Sans;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.32px;
}

.woostertrafic-card-2 h3 {
    font-family: DM Sans;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.4px;
    color: #251D28;
    margin-bottom: 4px;
}

.woostertrafic-card-3 {
    max-width: 509px;
    opacity: 1;
    border-radius: 8px;
    background: #F8F7FE;
    padding: 12px 19px 0px 26px;
}

.woostertrafic-card-2 p {
    color: #251D28;
    font-family: DM Sans;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.32px;
    margin-top: 30px;
    margin-bottom: 0;
}

.woostertrafic-card-2 {
    max-width: 378px;
    opacity: 1;
    border-radius: 8px;
    background: #FBFBFE;
    padding: 35px 22px 0px 40px;
}

.woostertrafic-card-2 .woostertrafic-card-img {
    margin-top: 67px;
    margin-bottom: 0;
}

.woostertrafic-card-3 p {
    color: #251D28;
    font-family: DM Sans;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.32px;
    margin-bottom: 15px;
}

.woostertrafic-card-3 h3 {
    font-family: DM Sans;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.4px;
    color: #251D28;
    margin-bottom: 10px;
}

.woostertrafic-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    text-align: center;
}

/* wooster forget trafic css start */


/* wooster trusted dev css start */

.wooster-trusted-dev-main {
    padding: 92px 0px 20px 0px;
    background: #161413;
}

.wooster-trusted-dev-main .container {
    max-width: 1372px;
}

.wooster-trusted-heading {
    color: #FFFFFF;
    font-family: 'Roboto';
    font-weight: 600;
    font-size: 54px;
    line-height: 54px;
    margin-bottom: 0;
    max-width: 798px;
}

.wooster-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 66px;
    margin-top: 85px;
}

.wooster-stat {
    border-left: 1.5px solid #8E47FF;
    padding: 10px 33px 10px 33px;
}

.wooster-stat p {
    max-width: 221px;
    font-family: Inter;
    font-weight: 600;
    font-size: 21px;
    line-height: 29px;
    letter-spacing: -0.36px;
    color: #FFFFFF;
    margin: 0;
    margin-bottom: 10px;
}

.wooster-stat a {
    color: #C3C4C7;
    font-family: Inter;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: -0.15px;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
}

.wooster-4m-main {
    display: flex;
    gap: 4px;
    align-items: center;
}

.wooster-4m-main h5 {
    color: #C3C4C7;
    font-family: Inter;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: -0.15px;
    margin: 0;
}

.wooster-stat h3 {
    color: #873EFF;
    font-family: 'Roboto';
    font-weight: 600;
    font-size: 68px;
    line-height: 61px;
    letter-spacing: -2px;
    margin-bottom: 15px;
}

.wooster-stat span {
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 47px;
    line-height: 43px;
    letter-spacing: -2.04px;
}

.wooster-brand-slider {
    overflow: hidden;
    position: relative;
}

.wooster-brand-track {
    display: flex;
    gap: 50px;
    animation: slide 10s linear infinite;
}

.wooster-brand-track img {
    height: 100%;
    width: 100%;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.wooster-brand-slider {
    overflow: hidden;
    position: relative;
}


.wooster-brand-slider::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 200px;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(90deg, #1D2328 0%, rgba(29, 35, 40, 0) 100%);
    z-index: 2;
}

.wooster-brand-slider::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 200px;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(270deg, #1D2328 0%, rgba(29, 35, 40, 0) 100%);
    z-index: 2;
}


/* wooster trusted dev css End */




/* woooster ecom-dev-css start */



.wooster-ecom-dev-main {
    background-color: #251D28;
    padding: 90px 0px;
}

.wooster-ecom-dev-main .container.wooster {
    max-width: 1372px;
}

.wooster-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.wooster-ecom-dev-header {
    margin-bottom: 64px;
}

.wooster-ecom-dev-title {
    font-family: 'Roboto';
    font-weight: 600;
    font-size: 54px;
    line-height: 54px;
    letter-spacing: -0.27px;
    color: #FFFFFF;
    max-width: 911px;
    margin-bottom: 0;
}

.wooster-ecom-dev-subtitle {
    color: #FFFFFF;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 21px;
    line-height: 29px;
    letter-spacing: -0.36px;
    margin-top: 22px;
    margin-bottom: 0;
    max-width: 653px;
}

.wooster-ecom-dev-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.wooster-ecom-dev-card {
    display: flex;
    flex-direction: column;
    padding: 32px 16px 16px 16px;
    background-color: #1B131E;
    border-radius: 16px;
    text-decoration: none;
    min-height: 293px;
}

.wooster-ecom-dev-icon {
    margin-bottom: 17px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wooster-ecom-dev-icon img {
    width: 100%;
}

.wooster-card-title {
    color: #FFFFFF;
    font-family: 'Roboto';
    font-weight: 600;
    font-size: 21px;
    line-height: 29px;
    letter-spacing: -0.36px;
    margin-bottom: 23px;
}

.wooster-card-text {
    color: #FFFFFF;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.18px;
    margin: 0;
}

.wooster-ecom-dev-card a:hover {
    color: #873eff;
}




/* nextwp footer css start */
.nextwp-footer .container:not(.footer-bottom .container) {
    display: none;
}

.nextwp-footer {
    background-color: #111;
    /* padding-top: 40px; */
    margin-top: -1px;
}

.nextwp-footer .container {
    max-width: 1272px;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #FFFFFF4D;
    padding-bottom: 40px;
}

.footer-columns .column {
    max-width: 390px;
}


.column-group-2 {
    margin-top: 40px;
}

.footer-columns .column h3 {
    margin-bottom: 20px;
    font-family: 'Helvetica';
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: #FFFFFF80;
}

.footer-columns .column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-columns .column li {
    margin-bottom: 8px;
}

.footer-columns .column a {
    transition: 0.3s;
    font-family: 'Helvetica';
    font-weight: 400;
    font-size: 16px;
    line-height: 35px;
    color: #FFFFFF;
}

.footer-columns .column a:hover {
    color: #7f5af0;
}

.footer-bottom {
    padding: 40px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom .contact-info p {
    text-align: left;
    margin-bottom: 8px;
    font-family: 'Helvetica';
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
}

.footer-bottom .contact-info p:last-child {
    margin-bottom: 0px;
}

.social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons a {
    color: #fff;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.social-icons a:hover svg path {
    stroke: #4A60FF;
}

/* Footer css End */