@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* CSS Document */
* {
    margin: 0px;
    padding: 0px;
    list-style: none;
    box-sizing: border-box;
    border: none;
}
body {
    height: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow: auto !important;
    overflow-x: hidden !important;
    font-family: 'Poppins', sans-serif;
}
img {
    max-width: 100%;
}
a {
    text-decoration: none !important;
    outline: none;
}
h1, h2, h3, h4, h5 {
    font-weight: normal;
    font-family: 'Poppins', sans-serif;
}
p {
    font-family: 'Poppins', sans-serif;
}
ul {
    margin: 0;
}
input, select, button {
    outline: none !important;
}
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}
/* width */ ::-webkit-scrollbar {
    width: 8px;
    height: 5px;
}
/* Track */ ::-webkit-scrollbar-track {
    background: #f1f1f1;
}
/* Handle */ ::-webkit-scrollbar-thumb {
    background: #ced9df;
}
/* Handle on hover */ ::-webkit-scrollbar-thumb:hover {
    background: #ced9df;
}
.all-btn {
    padding: 10px 8px;
    color: #fff !important;
    border-radius: 5px;
    font-weight: 400 !important;
    font-size: 15px !important;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 0 13px;
    position: relative;
    border: 2px solid #008765
}
.all-btn:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background: #004c3f;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}
.all-btn:hover:before {
    width: 100%;
    opacity: 1;
}
.all-btn:hover {
    border: 2px solid #004c3f;
}
.material-symbols-outlined {
    font-variation-settings:
        'FILL'0, 'wght'300, 'GRAD'0, 'opsz'48
}
.nopadding {
    padding: 0 !important;
    margin: 0 !important;
}
.nomargin {
    padding: 0 !important;
    margin: 0 auto !important;
}
.nomargin-bottom {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}
.modal {
    padding: 0 !important;
}
.modal-open {
    padding: 0 !important;
}
.error-page {
    margin: 0;
    padding: 100px 0 0 0;
    position: relative;
    min-height: calc(100vh - 50px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.error-page .error-page-body {
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1320px;
    width: 100%;
}
.error-page h2 {
    margin: 20px 0;
    font-size: 90px;
    font-weight: bold;
    color: #008765;
}
/*-----------------HEADER SEC--------------*/
/*---------NEW THEMES SEC--------*/
.new-theme-banner-sec {
    margin: 0;
    padding: 80px 0 0 0;
    position: relative;
    background: radial-gradient(at 36% 63%, #e6f7ff 0, transparent 50%), radial-gradient(at 15% 77%, #e6f7ff 0, transparent 50%), radial-gradient(at 12% 25%, #ffe8db 0, transparent 50%), radial-gradient(at 43% 12%, #f5feff 0, transparent 50%), radial-gradient(at 64% 64%, #ffe9e0 0, transparent 50%), radial-gradient(at 100% 0, #e6f7ff 0, transparent 50%);
    overflow: hidden;
    border-bottom: 2px solid #f7f7f7;
}
.new-theme-banner-body {
    margin: 0 auto;
    padding: 1px 40px 0 40px;
    position: relative;
    max-width: 1320px;
    text-align: center;
}
.new-theme-banner-body h1 {
    margin: 70px auto 20px auto;
    padding: 0;
    position: relative;
    display: block;
    font-size: 38px;
    font-weight: bold;
    color: #000;
    max-width: fit-content;
}
.new-theme-banner-body h1 span {
    position: absolute;
    font-size: 14px;
    padding: 4px 12px;
    background: linear-gradient(45deg, #f3ff33, #13e185);
    border-radius: 28px;
    color: #000;
    top: -28px;
    right: 10px;
}
.new-theme-btns {
    margin: 50px 0 0 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 14px;
}
.new-theme-btns a {
    margin: 0;
    padding: 9px 22px;
    background: #008765;
    color: #FFF !important;
    border-radius: 5px;
    font-weight: 400 !important;
    font-size: 15px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    grid-gap: 0 9px;
    position: relative;
    z-index: 5;
    border: 1px solid #008765;
    overflow: hidden;
    cursor: pointer;
    min-width: 160px;
}
.new-theme-btns a:last-child {
    background: #ffffff;
    color: #008765 !important;
}
.new-theme-banner {
    margin: 0 auto -42px auto;
    padding: 0;
    position: relative;
    max-width: 1320px;
}
/*--OVERVIEW--*/
.new-theme-overview {
    margin: 0;
    padding: 60px 0 0 0;
    position: relative;
    background: #fff6e4;
}
.new-theme-overview .new-theme-o-body {
    margin: 0 auto;
    padding: 0 40px;
    max-width: 1320px;
    position: relative;
}
.new-theme-overview .new-theme-o-body h2 {
    margin: 0 0 15px 0;
    padding: 0;
    position: relative;
    font-size: 30px;
    font-weight: 600;
    color: #000;
}
.new-theme-overview .new-theme-o-body p {
    margin: 15px 0 20px 0;
    padding: 0;
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    line-height: 21px;
    position: relative;
}
.new-theme-o-details {
    margin: 0;
    top: 45px;
    padding: 20px 40px 0 40px;
    position: relative;
    background: #FFF;
    border-radius: 15px;
    border: 1px solid #ddd;
    box-shadow: 0 10px 26px #0000001c;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0 5%;
}
.new-theme-o-details ul {
    margin: 0;
    padding: 0;
    position: relative;
    flex: 1;
}
.new-theme-o-details ul li {
    margin: 0 0 18px 0;
    padding: 0 0 0 30px;
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    line-height: 20px;
    position: relative;
    display: flex;
    justify-content: space-between;
}
.new-theme-o-details ul li .material-symbols-outlined {
    position: absolute;
    left: 0;
    color: #ff531d;
    font-variation-settings: 'FILL'0, 'wght'800, 'GRAD'0, 'opsz'48;
    font-size: 19px;
}
.new-theme-o-details ul li:nth-child(2) .material-symbols-outlined {
    color: #00b3fb;
}
.new-theme-o-details ul li:nth-child(3) .material-symbols-outlined {
    color: #18b71e;
}
.new-theme-o-details ul li:nth-child(4) .material-symbols-outlined {
    color: #866dfd;
}
.new-theme-o-details ul li span {
    width: 65%;
    color: #7a7a7a;
}
.new-theme-o-details .new-theme-o-img {
    margin: 0;
    padding: 0;
    position: relative;
    flex: 1;
}
/*--OVERVIEW--*/
/*--CORE FEATURES--*/
.core-features-sec {
    margin: 100px 0 0 0;
    padding: 0;
    position: relative;
    text-align: center;
}
.core-features-sec .core-feature-body {
    margin: 0 auto;
    padding: 40px;
    max-width: 1230px;
    position: relative;
    background: #f1f4f7;
    border-radius: 20px;
}
.core-features-sec .core-feature-body h2 {
    margin: 0 0 40px 0;
    padding: 0;
    position: relative;
    font-size: 30px;
    font-weight: 600;
    color: #000;
}
.core-feature-list {
    margin: 0;
    padding: 0;
    position: relative;
    gap: 32px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    justify-items: center;
}
.core-feature-list.layout-3 {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}
.core-feature-list .core-feature-box {
    margin: 0;
    padding: 10px;
    border-radius: 10px;
    transition: all .2s ease-in-out;
    background: linear-gradient(45deg, #FFF, transparent);
    border: 4px solid #ffffff;
    width: 100%;
}
.core-feature-list .core-feature-box h3 {
    margin: 20px 0;
    padding: 0;
    position: relative;
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #000;
}
.core-feature-box .core-f-icon {
    margin: 0;
    padding: 30px;
    background: linear-gradient(45deg, #e4f0ff, #ffdbc8);
    border-radius: 8px;
    height: 180px;
    display: flex;
    align-items: center;
}
.feature-box-color-2 .core-f-icon {
    background: linear-gradient(45deg, #f1ffe4, #cbcbff) !important;
}
.feature-box-color-3 .core-f-icon {
    background: linear-gradient(45deg, #fff3de, #fff3de) !important;
}
.feature-box-color-4 .core-f-icon {
    background: #ebe6ff !important;
}
.feature-box-color-5 .core-f-icon {
    background: linear-gradient(45deg, #bcedff, #ebe9ff) !important;
}
.feature-box-color-6 .core-f-icon {
    background: linear-gradient(45deg, #e4e4ff, #ffc8c8) !important;
}
.feature-box-color-7 .core-f-icon {
    background: linear-gradient(45deg, #f1f1f1, #e7e3e1) !important;
}
.feature-box-color-8 .core-f-icon {
    background: linear-gradient(45deg, #fff2f2, #ffdbc8) !important;
}
.core-feature-box .core-f-icon img {
    margin: 0 auto;
    padding: 10px;
    width: 100px;
    height: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFF;
    border-radius: 9px;
    box-shadow: 0 2px 5px #00000012;
}
/*--CORE FEATURES--*/
/*--COMMON BOX--*/
.multi-directories-sec {
    margin: 80px 0;
    position: relative;
    padding: 0;
}
.multi-directories-sec .multi-directories-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0 5%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}
.multi-directorie-box {
    margin: 0;
    padding: 0;
    flex: 1;
}
.multi-directorie-box h3 {
    margin: 0 0 30px 0;
    padding: 0;
    position: relative;
    font-size: 30px;
    font-weight: 600;
    color: #000;
}
.multi-directorie-box h3 span {
    display: block;
}
.multi-directorie-box p {
    margin: 0 0 20px 0;
    padding: 0;
    font-size: 15px;
    font-weight: 500;
    color: #000000ba;
    line-height: 23px;
    position: relative;
}
.multi-directorie-box ul {
    margin: 40px 0 0 0;
}
.multi-directorie-box ul li {
    margin: 0 0 18px 0;
    padding: 0 0 0 30px;
    font-size: 15px;
    font-weight: 500;
    color: #000000;
    line-height: 20px;
    position: relative;
}
.multi-directorie-box ul li::before {
    position: absolute;
    content: "\e86c";
    left: 0px;
    top: 0px;
    bottom: 0px;
    font-size: 20px;
    font-family: "Material Symbols Outlined";
    font-variation-settings: 'FILL'1, 'wght'600, 'GRAD'0, 'opsz'48;
    color: #f9b259;
}
.common-box-sec {
    margin: 0;
    padding: 0;
    position: relative;
}
.common-box-sec h2 {
    margin: 0 0 20px 0;
    padding: 0;
    position: relative;
    font-size: 30px;
    font-weight: 600;
    color: #000;
    text-align: center;
}
.common-box-sec > p {
    margin: 0 auto 20px auto;
    padding: 0;
    font-size: 15px;
    font-weight: 500;
    color: #000000ba;
    line-height: 23px;
    position: relative;
    text-align: center;
    max-width: 600px;
}
.common-box-body {
    margin: 50px auto 0 auto;
    padding: 0 40px;
    max-width: 1320px;
    display: flex;
    justify-content: space-between;
    gap: 0 2%;
    flex-wrap: wrap;
}
.common-box-body .common-box {
    margin: 0 0 30px 0;
    padding: 25px;
    flex: 0 0 32%;
    width: 32%;
    background: linear-gradient(45deg, #ffffff, #fffbf8);
    border-radius: 14px;
    box-shadow: -7px 7px 20px #69788942;
    text-align: center;
}
.common-box-body .common-box .common-box-icon {
    margin: 0 auto 18px auto;
    padding: 0;
    width: 180px;
    height: 180px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    overflow: hidden;
}
.common-box-body .common-box h3 {
    margin: 0 0 15px 0;
    padding: 0;
    position: relative;
    font-size: 20px;
    font-weight: 600;
    color: #000000;
}
.common-box-body .common-box p {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    color: #514f60;
    line-height: 23px;
    position: relative;
}
/*--COMMON BOX--*/
.common-second-sec {
    margin: 70px 0;
    padding: 50px 0;
    position: relative;
}
.common-second-sec:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 900px;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #faf7f1, #f7f9ff);
}
.common-second-sec .common-second-body {
    margin: 0 auto 30px auto;
    padding: 0 40px;
    max-width: 1240px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0 5%;
    position: relative;
}
.common-second-box {
    margin: 0;
    padding: 0;
    flex: 1;
    position: relative;
}
.common-second-box h3 {
    margin: 0 0 30px 0;
    padding: 0;
    position: relative;
    font-size: 30px;
    font-weight: 600;
    color: #000;
}
.common-second-box p {
    margin: 0 0 20px 0;
    padding: 0;
    font-size: 15px;
    font-weight: 500;
    color: #000000ba;
    line-height: 23px;
    position: relative;
}
.common-second-box ul {
    margin: 40px 0 0 0;
}
.common-second-box ul li {
    margin: 0 0 18px 0;
    padding: 0 0 0 30px;
    font-size: 15px;
    font-weight: 500;
    color: #000000;
    line-height: 20px;
    position: relative;
}
.common-second-box ul li::before {
    position: absolute;
    content: "\e86c";
    left: 0px;
    top: 0px;
    bottom: 0px;
    font-size: 20px;
    font-family: "Material Symbols Outlined";
    font-variation-settings: 'FILL'1, 'wght'600, 'GRAD'0, 'opsz'48;
    color: #f9b259;
}
/*--Mordern User Dashboard--*/
.modern-user-dashboard {
    margin: 0 0 220px 0;
    padding: 50px 0 0 0;
    position: relative;
    background: #f9f6f0;
}
.modern-user-dashboard-body {
    margin: 0 auto;
    padding: 0 40px;
    max-width: 1260px;
    position: relative;
    text-align: center;
}
.modern-user-dashboard-body h2 {
    margin: 0 0 20px 0;
    padding: 0;
    position: relative;
    font-size: 30px;
    font-weight: 600;
    color: #000;
    text-align: center;
}
.modern-user-dashboard-body p {
    margin: 0 auto;
    padding: 0;
    font-size: 15px;
    font-weight: 500;
    color: #000000ba;
    line-height: 23px;
    position: relative;
    text-align: center;
    max-width: 600px;
}
.modern-user-dashboard-body img {
    margin: 0 0 -15% 50px;
    max-width: 1000px;
}
/*--Mordern User Dashboard--*/
.feature-list-icon {
    margin: 30px 0 0 0;
    padding: 50px 0;
    position: relative;
    background: #f9f6f0;
}
.feature-list-icon .feature-list-icon-body {
    margin: 0 auto -232px auto;
    padding: 0 40px;
    max-width: 1260px;
    position: relative;
}
.feature-list-icon .feature-list-icon-body h2 {
    margin: 0 auto 50px auto;
    padding: 0;
    position: relative;
    font-size: 30px;
    font-weight: 600;
    color: #000;
    text-align: center;
    max-width: 300px;
}
.feature-icon-list {
    display: flex;
    margin: 0;
    padding: 0;
    position: relative;
    align-items: center;
    justify-content: space-between;
    gap: 0 1%;
}
.feature-icon-list-box {
    margin: 0;
    padding: 0;
    flex: 1;
    position: relative;
}
.feature-icon-list-box .feature-icon {
    margin: 0 0 15px 0;
    padding: 13px;
    background: #FFF;
    box-shadow: 0 5px 30px #0000001c;
    height: 160px;
    position: relative;
    border-radius: 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.feature-icon-list-box .feature-icon img {
    width: 50px;
}
.feature-icon-list-box .feature-icon h4 {
    margin: 15px 0 0 0;
    padding: 0;
    position: relative;
    font-size: 14px;
    font-weight: 600;
    color: #161c2c;
}
.animation-box-1 {
    animation: jumping-approach 3.8s infinite;
    animation-delay: .1s;
}
.animation-box-2 {
    animation: jumping-approach2 3.8s infinite;
    animation-delay: .1s;
}
@keyframes jumping-approach {
    0% {
        transform: translateY(-10px)
    }
    50% {
        transform: translateY(5px)
    }
    to {
        transform: translateY(-10px)
    }
}
@keyframes jumping-approach2 {
    0% {
        transform: translateY(10px)
    }
    50% {
        transform: translateY(-5px)
    }
    to {
        transform: translateY(10px)
    }
}
.twice-box-sec {
    margin: 250px 0 50px 0;
    padding: 80px 0;
    position: relative;
    background: #eaf4ff;
}
.twice-box-sec .twice-box-body {
    margin: 0 auto;
    padding: 0 40px;
    max-width: 1260px;
    display: flex;
    justify-content: space-between;
    gap: 0 5%;
}
.twice-box-sec .twice-box-body .twice-box {
    margin: 0;
    padding: 30px;
    text-align: center;
    background: #ffffff;
    border-radius: 15px;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.twice-box-sec .twice-box-body .twice-box .twice-box-icon {
    margin: 0 0 20px 0;
    padding: 40px;
    height: 150px;
    width: 150px;
    background: #237bff;
    border-radius: 15px;
    box-shadow: 0 5px 8px #91bdffa6;
}
.twice-box-sec .twice-box-body .twice-box:nth-child(2) .twice-box-icon {
    background: #ff9f23;
}
.twice-box-sec .twice-box-body .twice-box h3 {
    margin: 0 0 15px 0;
    padding: 0;
    position: relative;
    font-size: 28px;
    font-weight: 600;
    color: #000000;
    min-height: 75px;
}
.twice-box-sec .twice-box-body .twice-box p {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    color: #514f60;
    line-height: 23px;
    position: relative;
}
/*---------NEW THEMES SEC--------*/
@media only screen and (max-width: 991px) {
    .modern-user-dashboard-body img {
        margin: 0;
        max-width: 1000px;
        width: 100%;
    }
    .modern-user-dashboard {
        margin: 0 0 40px 0;
        padding: 35px 0;
    }
}
@media only screen and (max-width: 768px) {
    .new-theme-banner-body h1 {
        font-size: 24px;
    }
    .new-theme-btns a {
        padding: 5px 22px;
        font-size: 12px !important;
        min-width: 130px;
    }
    .new-theme-overview {
        padding: 50px 0;
    }
    .new-theme-overview .new-theme-o-body h2 {
        font-size: 24px;
        text-align: center;
    }
    .new-theme-overview .new-theme-o-body p {
        text-align: center;
    }
    .new-theme-o-details ul {
        width: 100%;
    }
    .new-theme-o-details {
        padding: 20px 40px 0 40px;
        flex-direction: column;
        top: 0;
    }
    .multi-directories-sec {
        margin: 30px 0;
    }
    .multi-directories-sec .multi-directories-body, .common-second-sec .common-second-body {
        padding: 0 30px;
        flex-direction: column;
        gap: 20px 0 !important;
    }
    .v-direction-change {
        margin: 0;
        flex-direction: column-reverse !important;
    }
    .multi-directorie-box h3, .common-second-box h3 {
        margin: 0 0 12px 0;
        font-size: 24px;
    }
    .multi-directorie-box h3 span, .common-second-box h3 span {
        display: initial;
    }
    .multi-directorie-box p, .common-second-box p {
        margin: 0 0 15px 0;
        font-size: 14px;
        line-height: 21px;
    }
    .multi-directorie-box ul, .common-second-box ul {
        margin: 20px 0 0 0;
    }
    .multi-directorie-box ul li, .common-second-box ul li {
        margin: 0 0 10px 0;
        font-size: 14px;
        line-height: 20px;
    }
    .common-box-body .common-box {
        flex: 0 0 47%;
        width: 47%;
    }
    .feature-icon-list {
        flex-direction: column;
    }
    .feature-list-icon .feature-list-icon-body {
        margin: 0 auto 0 auto;
    }
    .feature-icon-list-box {
        display: flex;
        width: 100%;
        justify-content: center;
        gap: 0 20px;
        animation: none !important;
    }
    .feature-icon-list-box .feature-icon {
        height: 160px;
        width: 160px;
    }
    .twice-box-sec {
        margin: 0 0 40px 0;
        padding: 50px 0;
    }
    .twice-box-sec .twice-box-body {
        gap: 40px 0;
        flex-direction: column;
    }
    .twice-box-sec .twice-box-body .twice-box {
        min-height: 400px;
    }
    .twice-box-sec .twice-box-body .twice-box .twice-box-icon {
        padding: 30px;
        height: 120px;
        width: 120px;
    }
    .twice-box-sec .twice-box-body .twice-box h3 {
        font-size: 24px;
        min-height: auto;
    }
}
@media only screen and (max-width: 480px) {
    .common-second-sec {
        margin: 50px 0 0 0;
    }
    .common-box-sec h2 {
        padding: 0 30px;
        font-size: 24px;
    }
    .common-box-sec > p {
        padding: 0 30px;
        font-size: 14px;
    }
    .common-box-body .common-box {
        flex: 0 0 100%;
        width: 100%;
    }
    .modern-user-dashboard-body h2 {
        margin: 0 0 14px 0;
        font-size: 24px;
    }
    .modern-user-dashboard-body p {
        margin: 0 auto 20px auto;
        font-size: 14px;
        font-weight: 400;
        line-height: 21px;
    }
    .common-box-body .common-box h3 {
        margin: 0 0 15px 0;
        font-size: 18px;
    }
    .common-box-body .common-box p {
        font-size: 13px;
        font-weight: 500;
        line-height: 22px;
    }
    .feature-list-icon .feature-list-icon-body h2 {
        margin: 0 auto 36px auto;
        font-size: 24px;
    }
    .twice-box-sec .twice-box-body .twice-box h3 {
        font-size: 22px;
    }
    .twice-box-sec .twice-box-body .twice-box p {
        font-size: 13px;
        line-height: 21px;
    }
    .multi-directorie-box h3 span {
        display: initial;
    }
    .multi-directorie-box h3, .common-second-box h3 {
        font-size: 22px;
    }
    .new-theme-o-details ul li {
        flex-direction: column;
    }
    .feature-list-icon {
        padding: 30px 0;
    }
    .feature-icon-list-box .feature-icon {
        height: fit-content;
        width: 130px;
    }
}