:root {
    --primary-color: #FF6B31;
    --body-color: #696969;
    --heading-color: #131313;
    --navbar-height: 120px;
}

/*=== 1. Reset-CSS ===*/
body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--body-color);
    line-height: 1.4;
    overflow-x: hidden;
    overflow-y: auto;
}

P:last-child {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 16px;
}

a:focus,
a:hover,
a {
    text-decoration: none;
    outline: none;
}

a {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

img {
    max-width: 100%;
}

.row > div {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1312px;
}

/*=== 2. Button-CSS ===*/
.primary-button {
    background: var(--primary-color);
    color: #ffffff;
    display: inline-block;
    border-radius: 100px;
    -webkit-box-shadow: 0px 0px 0px rgba(255, 112, 49, 0);
    box-shadow: 0px 0px 0px rgba(255, 112, 49, 0);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.primary-button:hover {
    color: #ffffff;
}

.primary-button .part {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 30px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 6px;
    min-width: 120px;
}

.primary-button .back {
    position: absolute;
    top: 100%;
    left: 0%;
    background-color: var(--heading-color);
    color: #ffffff;
}

.primary-button.button-active .part,
.primary-button:not(.toggle):hover .part {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
}

.primary-button .icon {
    font-size: 80%;
    margin-left: 10px;
}

.primary-button.white-button .front {
    background-color: #ffffff;
    color: var(--primary-color);
}

.primary-button.white-button .back {
    background-color: var(--primary-color);
    color: #ffffff;
}

/*=== 3. Helper-Class-CSS ===*/
.page-wrapper {
    position: relative;
    z-index: 1;
    overflow: hidden;
    min-height: 100%;
}

.section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
}

.section-padding-top {
    padding-top: 80px;
}

.section-padding-bottom {
    padding-bottom: 80px;
}

.mb-n40 {
    margin-bottom: -40px;
}

.z2 {
    z-index: 6 !important;
    position: relative;
}

/*=== 4. Section-Title-CSS ===*/
.section-title {
    text-align: center;
    margin-bottom: 56px;
}

.section-title .title {
    font-size: 42px;
    margin-bottom: 12px;
    font-weight: 600;
}

.section-title .primary-button {
    margin-top: 48px;
}

.section-title.white-title .title {
    color: #ffffff;
}

.section-title.white-title .desc {
    color: #ffffff;
}

/*=== 6. Preloader-CSS ===*/
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    pointer-events: none;
    z-index: 999;
}

.preloader .load {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--primary-color);
    opacity: 0.1;
}

.preloader .count {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 18vw;
    color: var(--primary-color);
    font-weight: 700;
    text-align: center;
    display: inline-block;
}


/*=== 8. Mainmenu-CSS ===*/
.mainmenu-area {
    width: 100%;
    z-index: 99;
    right: 0;
    left: 0;
    top: 0;
    position: absolute;
}

.mainmenu-area .container {
    min-height: var(--navbar-height);
    display: flex;
    align-items: center;
}

.mainmenu-area.sticky {
    position: fixed;
    background-color: #ffffff;
}

.mainmenu-area .nav-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.mainmenu-area .nav-row .nav-logo {
    -webkit-box-flex: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
    width: 120px;
}


.mainmenu-area .nav-row .nav-logo .logo {
    display: inline-block;
}

.transparent-light .mainmenu-area:not(.sticky) .nav-row .nav-logo .dark-logo {
    display: none;
}

body:not(.transparent-light) .mainmenu-area .nav-row .nav-logo .light-logo,
.transparent-light .mainmenu-area.sticky .nav-row .nav-logo .light-logo {
    display: none;
}

.transparent-dark .mainmenu-area .nav-row .nav-logo .light-logo {
    display: none;
}

.mainmenu-area .nav-actions {
    order: 1;
    display: flex;
    align-items: center;
}

.mainmenu-area .nav-actions .primary-button {
    margin-left: 12px;
    border-radius: 6px;
    background-color: transparent !important;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.07);
}

.mainmenu-area .nav-actions .primary-button:hover {
    box-shadow: 0px 4px 4px rgba(255, 107, 49, 0.2);
}

.mainmenu-area .nav-actions .primary-button .front {
    background-color: #ffffff;
    color: var(--heading-color);
}

.transparent-light .mainmenu-area:not(.sticky) .nav-actions .primary-button .front {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.07);
}

.mainmenu-area .nav-actions .primary-button .back {
    background-color: var(--primary-color);
}

.mainmenu-area .nav-actions .primary-button.cirlce .part {
    padding: 0;
    width: 50px;
    height: 50px;
    font-size: 20px;
}

.ls-bar {
    font-size: 80%;
}

.mainmenu-area .nav-actions .primary-button.menu-toggle {
    display: none;
}

.mainmenu-area .nav-row .menu-items {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 8;
}

.mainmenu-area .nav-row .menu-items ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mainmenu-area .nav-row .menu-items ul li {
    position: relative;
}

.mainmenu-area .nav-row .menu-items ul li a {
    color: var(--heading-color);
    display: inline-block;
}

.mainmenu-area .nav-row .menu-items ul li > a.active,
.mainmenu-area .nav-row .menu-items ul li:hover > a {
    color: var(--heading-color);
    text-shadow: 0 0 1px var(--heading-color);
}

.mainmenu-area .nav-row .menu-items > ul {
    display: flex;
    justify-content: center;
}

.mainmenu-area .nav-row .menu-items > ul > li {
    padding: 0 20px;
    display: flex;
    align-items: center;

}

.mainmenu-area .nav-row .menu-items > ul > li > a {
    line-height: var(--navbar-height);
    opacity: 0.7;
}

.mainmenu-area .nav-row .menu-items > ul > li:hover > a,
.mainmenu-area .nav-row .menu-items > ul > li > a.active {
    opacity: 1;
}

.mainmenu-area .nav-row .menu-items > ul > li > a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: var(--heading-color);
    border-radius: 10px 10px 0 0;
    z-index: -1;
    opacity: 0;
    transition: 0.5s;
}

.mainmenu-area .nav-row .menu-items ul li > a.active:after {
    opacity: 1;
}

.mainmenu-area .nav-row .menu-items ul li > .plus {
    width: 12px;
    height: 24px;
    position: relative;
    cursor: pointer;
    margin-top: 3px;
    margin-left: 8px;
}

.mainmenu-area .nav-row .menu-items ul li li > .plus {
    float: right;
}

.mainmenu-area .nav-row .menu-items ul li > .plus:before,
.mainmenu-area .nav-row .menu-items ul li > .plus:after {
    content: "";
    width: 12px;
    height: 2px;
    display: block;
    background-color: var(--heading-color);
    position: absolute;
    left: calc(50% - 6px);
    top: calc(50% - 2px);
    transition: 0.5s;
}

.mainmenu-area .nav-row .menu-items ul li > a.active ~ .plus:before,
.mainmenu-area .nav-row .menu-items ul li > a.active ~ .plus:after,
.mainmenu-area .nav-row .menu-items ul li:hover > .plus:before,
.mainmenu-area .nav-row .menu-items ul li:hover > .plus:after {
    background-color: var(--heading-color);
}

.mainmenu-area .nav-row .menu-items ul li > .plus:before {
    transform: rotate(90deg);
}

.mainmenu-area .nav-row .menu-items ul li.menu-open > .plus:before {
    transform: rotate(0deg);
}

/*=== 9. Sub-Menu-CSS ===*/
.mainmenu-area .nav-row .menu-items li ul {
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #ffffff;
    border-radius: 4px;
    padding: 16px 0;
    transition: 0.5s;
    transform: scaleY(0);
    transform-origin: top left;
    z-index: 2;
    box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.1);
    opacity: 0;
}

.mainmenu-area .nav-row .menu-items li ul ul {
    left: 100%;
    top: 0;
}

.mainmenu-area .nav-row .menu-items li.menu-open > ul {
    transform: scaleY(1);
    opacity: 1;
}

.mainmenu-area .nav-row .menu-items > ul ul.over-items {
    display: grid;
    grid-template-columns: auto auto;
}

.mainmenu-area .nav-row .menu-items > ul ul li {
    padding: 3px 24px;
    min-width: 250px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.mainmenu-area .nav-row .menu-items > ul ul li a {
    color: #131313;
}

.mainmenu-area .nav-row .menu-items > ul ul li:hover > a {
    color: #131313;
}


.transparent-light .mainmenu-area:not(.sticky) {
    --heading-color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


/*=== 8. Header-CSS ===*/
.header-area {
    background-color: #FFF5F2;
    padding-top: var(--navbar-height);
    background: url('../images/theme-2/header-overlay.png') no-repeat scroll right bottom / cover, url('../images/theme-2/header-bg.jpg') no-repeat scroll center center / cover;
}

.header-area .main-title {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 32px;
    margin-right: -30px;
    color: #ffffff;
}
.header-area .main-title>span {
    color: #fc4f19;
}

.header-area .desc {
    color: #ffffff;
    margin-bottom: 56px;
}

.header-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: flex-start;
}

.play-button .play-icon {
    width: 56px;
    height: 56px;
    background-color: var(--primary-color);
    display: inline-block;
    text-align: center;
    line-height: 56px;
    border-radius: 100px;
    color: #ffffff;
    margin-right: 12px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    padding-left: 3px;
}

.play-button {
    color: #ffffff;
    display: inline-block;
}

.play-button:hover {
    color: #ffffff;
}

.play-button:hover .play-icon {
    background-color: #ffffff;
    color: var(--primary-color);
}

.header-area .header-image {
    margin: 40px -60px 0 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.header-area .header-image .header-image-bg {
    position: absolute;
    left: -0.5vw;
    bottom: 0;
    z-index: -1;
    width: 50vw;
    max-width: 880px;
}

/* Feature-Area-CSS */
.play-image-box {
    position: relative;
    z-index: 1;
}

.play-image-box .text-image {
    position: absolute;
    left: 50%;
    bottom: 80px;
    width: 100vw;
    max-width: 1920px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: -1;
}

.play-image-box .play-vr-image {
    text-align: center;
    margin: 0;
}

.feature-box-1 .icon {
    width: 64px;
    height: 64px;
    background-color: var(--primary-color);
    text-align: center;
    line-height: 64px;
    font-size: 32px;
    color: #ffffff;
    font-weight: 500;
    border-radius: 100px;
    text-align: center;
    display: inline-block;
    margin-bottom: 40px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.feature-box-1 {
    text-align: center;
}

.feature-box-1:hover .icon {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.feature-box-1.purple-box .icon {
    background-color: #8B44FF;
}

.feature-box-1.green-box .icon {
    background-color: #3CB868;
}

.feature-box-1.yellow-box .icon {
    background-color: #FDA800;
}

.feature-box-1 .title {
    font-size: 26px;
    margin-bottom: 12px;
    font-weight: 600;
}
.feature-box-1 .title>span{
    color: #fc4f19;
}

.play-step-boxes {
    position: relative;
    z-index: 1;
}

.play-step-boxes:before {
    content: "";
    position: absolute;
    left: 0;
    top: 65px;
    height: 5px;
    width: 100%;
    background: url('../images/theme-2/dotted-line.svg') no-repeat scroll center center / auto;
}

/* Feedback-Area-CSS */
.feedback-area {
    background: url('../images/theme-2/feedback-bg.jpg') no-repeat scroll right top / cover;
    z-index: 1;
}


.icon-box-1 .icon {
    width: 64px;
    height: 64px;
    text-align: center;
    line-height: 64px;
    background-color: var(--primary-color);
    font-size: 32px;
    color: #ffffff;
    border-radius: 6px;
    margin-bottom: 24px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-box-shadow: 0px 0px 0px rgba(255, 112, 49, 0.3);
    box-shadow: 0px 0px 0px rgba(255, 112, 49, 0.3);
}

.icon-box-1:hover .icon {
    background-color: #ffffff;
    color: var(--primary-color);
    -webkit-box-shadow: 0px 15px 35px rgba(255, 112, 49, 0.3);
    box-shadow: 0px 15px 35px rgba(255, 112, 49, 0.3);
}

.icon-box-1 .title {
    font-size: 26px;
    margin-bottom: 8px;
    font-weight: 300;
}

.icon-box-1.white-box .title {
    color: #ffffff;
}

.icon-box-1.white-box .desc {
    color: rgba(255, 255, 255, 0.7);
}

.feedback-area .feedback-image {
    margin: 0;
    width: 50vw;
    float: right;
    position: relative;
    z-index: -1;
    max-width: 900px;
}

.feedback-area .feedback-image::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 28%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 130%;
    height: 130%;
    background: url('../images/theme-2/feedback-image-bg.png') no-repeat scroll top center / contain;
    z-index: -1;
}

/* -- Call-To-Actions -- */
.action-image {
    position: relative;
}

.action-image .main-image {
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    max-width: 90%;
}

.action-image .bg-image {
    max-width: 55%;
}

.actions-two .action-image .main-image {
    left: auto;
    right: 0;
}

.settings-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.settings-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 16px;
}

.settings-list li:last-child {
    margin-bottom: 0;
}

.settings-list li:before {
    content: "\e940";
    font-family: 'landshop';
    color: #FDA800;
    margin-right: 12px;
}

/* == Testimonial-Area-CSS == */

.rating-star {
    display: inline-block;
    position: relative;
    color: #FDB12E;
    letter-spacing: 5px;
}

.rating-star .star {
    font-family: 'landshop' !important;
}

.rating-star .star:before {
    content: "\e960 \e960 \e960 \e960 \e960";
}

.rating-star .back {
    opacity: 0.4;
}

.rating-star .front {
    position: absolute;
    left: 0;
    top: 0px;
    white-space: nowrap;
    overflow: hidden;
    width: 90%;
    z-index: 2;
}

.testimonial-slider {
    margin: -72px;
    padding: 60px;
}

.testimonial-slider .swiper-slide {
    opacity: 0 !important;
    transition: 0.5s;
}

.testimonial-slider .swiper-slide.swiper-slide-visible {
    opacity: 1 !important;
}

.testimonial-box {
    padding: 40px;
    background-color: #ffffff;
    box-shadow: 0px 15px 55px rgba(0, 0, 0, 0.07);
    border-radius: 8px;
    margin: 16px;
    position: relative;
}

.testimonial-box .quote:before,
.testimonial-box .quote:after {
    content: "";
    border-right: 15px solid var(--primary-color);
    border-top: 20px solid var(--primary-color);
    border-bottom: 10px solid transparent;
    width: 0px;
    height: 0px;
    display: block;
    margin-left: 10px;
}

.testimonial-box .quote {
    display: flex;
    justify-content: flex-end;
    position: absolute;
    right: 40px;
    top: -10px;
}

.testimonial-box .rating-star {
    margin-bottom: 20px;
}

.testimonial-box .desc {
    margin-bottom: 24px;
}

.testimonial-box .profile {
    display: flex;
}

.testimonial-box .profile .title {
    font-size: 20px;
    margin-bottom: 4px;
}

.testimonial-box .profile .thumb {
    width: 56px;
    height: 56px;
    border-radius: 56px;
    overflow: hidden;
    line-height: 0;
    margin-right: 16px;
}

/* -- Product-Area-CSS-- */
.product-slider {
    margin: -60px 0;
}

.product-box {
    background-color: #ffffff;
    border-radius: 6px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin: 60px 16px;
    -webkit-box-shadow: 0px 25px 35px rgba(0, 0, 0, 0.04);
    box-shadow: 0px 25px 35px rgba(0, 0, 0, 0.04);
}

.product-box.color-1 {
    background-color: #ECE6F8;
}

.product-box.color-2 {
    background-color: #E6F5EE;
}

.product-box.color-3 {
    background-color: #FFEDED;
}

.product-box.color-4 {
    background-color: #E7EEFE;
}

.product-box .thumb {
    margin-bottom: 32px;
}

.product-box .title {
    font-size: 24px;
    margin-bottom: 12px;
}

.product-box .price-and-rating > * {
    margin: 0 12px;
}

.product-box .price-and-rating {
    margin: 0 -12px;
}

.product-box .hover {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background-image: -o-linear-gradient(top, rgba(19, 19, 19, 0.65) 0%, rgba(19, 19, 19, 0.48) 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(19, 19, 19, 0.65)), to(rgba(19, 19, 19, 0.48)));
    background-image: linear-gradient(180deg, rgba(19, 19, 19, 0.65) 0%, rgba(19, 19, 19, 0.48) 100%);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    z-index: 3;
}

.product-box:hover .hover {
    opacity: 1;
    height: 100%;
}

.product-box .hover .action {
    width: 56px;
    height: 56px;
    text-align: center;
    line-height: 54px;
    background-color: #ffffff;
    color: var(--heading-color);
    border-radius: 100px;
    margin: 8px;
    font-size: 20px;
}

.product-box .hover .action:hover {
    background-color: var(--heading-color);
    color: #ffffff;
}

.lity-content {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 6px;
    overflow: hidden;
}

/*=== 17. Footer-CSS ===*/
.footer-area {
    background-color: #170B37;
    color: rgba(255, 255, 255, 0.7);
    --body-color: rgba(255, 255, 255, 0.7);
    --heading-color: rgba(255, 255, 255, 1);
}

.footer-area .section-padding {
    padding: 80px 0;
}

.footer-widget .footer-logo {
    display: inline-block;
    margin-bottom: 12px;
    width: 250px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    text-align: center;
}

.social-menu {
    list-style: none;
    margin: -10px;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.social-menu li a {
    width: 48px;
    height: 48px;
    line-height: 48px;
    display: inline-block;
    text-align: center;
    background-color: #ffffff;
    color: var(--body-color);
    border-radius: 100px;
    margin: 10px;
    -webkit-box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.05);
}

.social-menu li:hover a {
    background-color: var(--primary-color);
    color: #ffffff;
}

.footer-area .social-menu li a {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.footer-area .social-menu li a:hover {
    background-color: var(--primary-color);
}

.footer-widget .desc {
    margin-bottom: 24px;
}

.footer-widget .widget-title {
    margin-bottom: 24px;
}

.block-list {
    list-style: none;
    margin: -8px 0;
    padding: 0;
}

.block-list li {
    display: block;
}

.block-list li a {
    color: var(--body-color);
    display: inline-block;
    margin: 8px 0;
}

.block-list li:hover a {
    color: var(--primary-color);
}

.input-control {
    background-color: #ffffff;
    border: none;
    border-radius: 4px;
    display: inline-block;
    padding: 15px 24px;
    font-weight: 400;
    outline: none;
    line-height: 1.445em;
    -webkit-box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.05);
}

.subscribe-form .input-control {
    width: calc(100% - 66px);
    padding-left: 44px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.subscribe-form {
    position: relative;
    z-index: 1;
}

.subscribe-form .ls-envelope {
    position: absolute;
    left: 16px;
    top: 14px;
    z-index: 2;
}

.subscribe-form button[type="submit"] {
    width: 56px;
    height: 56px;
    font-size: 20px;
    text-align: center;
    line-height: 56px;
    border-radius: 4px;
    border: none;
    background-color: var(--primary-color);
    color: #ffffff;
    float: right;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-box-shadow: 0 0 0 rgba(255, 107, 49, 0.3);
    box-shadow: 0 0 0 rgba(255, 107, 49, 0.3);
}

.subscribe-form button[type="submit"]:hover {
    background-color: #ffffff;
    color: var(--primary-color);
    -webkit-box-shadow: 0px 15px 30px rgba(255, 107, 49, 0.3);
    box-shadow: 0px 15px 30px rgba(255, 107, 49, 0.3);
}

.subscribe-form .mc-error {
    position: absolute;
    left: 0;
    top: 100%;
    padding-top: 10px;
}
.header-banner-btns-cus{
    gap: 12px;
}
.header-banner-btns-cus a{
    background: #fff0;
}
.header-banner-btns-cus a:hover{
  transform: translateY(-6px);
}
.header-banner-btns-cus img{
    width: 200px;
    height: 50px;
    object-fit: contain;
    object-position: left;
}
.process-card-wrap {
    margin-bottom: 0px;
    position: relative;
}
.process-card {
    text-align: center;
    max-width: 338px;
    margin: 0 auto 0 auto;
    position: relative;
}
.process-card_img {
    margin-bottom: 37px;
    -webkit-transform: rotate(-30deg);
    -ms-transform: rotate(-30deg);
    transform: rotate(-30deg);
    border-radius: 20px;
    display: inline-block;
    overflow: hidden;
    width: 170px;
    height: 170px;
}
.process-card_img img {
    -webkit-transform: rotate(30deg) scale(1.3);
    -ms-transform: rotate(30deg) scale(1.3);
    transform: rotate(30deg) scale(1.3);
}
.process-card_icon {
    width: 80px;
    height: 80px;
    line-height: 72px;
    border-radius: 50%;
    border: 4px solid #fff;
    background: #0d5ef4;
    position: initial;
    top: -53px;
    left: 80px;
    text-align: center;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.process-card_icon img {
    -webkit-transition: 0.4s;
    transition: 0.4s;
        width: 40px;
}
.box-title {
font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    margin-top: -0.32em;
    margin-bottom: 6px;
}
.box-title>span {
    color: #fc4f19;
    display: block;
}
.process-card_text {
    margin-bottom: -0.5em;
}
.process-card-wrap .process-arrow {
    position: absolute;
    right: 0;
    top: 24px;
    -webkit-transform: translate(50%, 0);
    -ms-transform: translate(50%, 0);
    transform: translate(50%, 0);
        width: 35%;
}
.process-card-wrap:last-child .process-arrow {
    display: none;
}
.process-card_text {
    margin-bottom: -0.5em;
        font-size: 14px;
}
.space, .space-bottom {
    padding-bottom: 120px;
}
.space, .space-top {
    padding-top: 120px;
}
.title-area {
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}
.sub-title {
    font-size: 16px;
    font-weight: 500;
    color: #0f60f7;
    text-transform: uppercase;
    margin-top: -0.41em;
    margin-bottom: 22px;
    display: block;
}
.title-area .sec-title {
    margin-bottom: 15px;
}
.price-card {
    padding: 40px;
    position: relative;
    z-index: 2;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    text-align: center;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 6px 50px 0px rgba(0,0,0,0.05);
}

.price-card:after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    height: 4px;
    width: calc(100% - 80px);
    background: #0d5ef4;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.price-card_top {
    margin-bottom: 42px;
}

.price-card_title {
    font-size: 30px;
    font-weight: 600;
    margin-top: -0.2em;
    margin-bottom: 20px;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.price-card_text {
    margin-bottom: -0.4em;
    margin-top: 11px;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.price-card_price {
    font-size: 44px;
    font-weight: 600;
    line-height: 1;
    margin: 0;
    position: relative;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    background: var(--smoke-color);
    border-radius: 10px;
    padding: 20px;
    color: #0d5ef4;
}

.price-card_price .duration {
    font-size: 14px;
    font-weight: 400;
    margin-top: 12px;
    margin-bottom: 0;
    position: relative;
    display: block;
    top: -1px;
    left: 0;
    color: #9FAAB7;
}

.price-card .checklist {
    margin: 0px 0 32px 0;
}

.price-card .checklist ul {
    text-align: start;
}

.price-card .checklist li {
    padding-left: 0;
    font-family: var(--body-font);
    font-weight: 400;
    color: var(--body-color);
    margin-bottom: 13px;
}

.price-card .checklist li i {
    color: #0e62ff;
    margin-right: 4px;
}

.price-card .checklist li.unavailable>i {
    color: #ff1214;
}

.price-card .checklist li:before {
    display: none;
}

.price-card .th-btn {
    width: 100%;
}

.price-card .th-btn:hover:before {
    background: transparent;
}

.price-card.active:after,.price-card:hover:after {
    background: var(--theme-color2);
}

.price-card.active .th-btn,.price-card:hover .th-btn {
    background: var(--theme-color2);
}

.price-card.active .th-btn:hover,.price-card:hover .th-btn:hover {
    background: #0d5ef4;
}
.checklist ul {
    padding-left: 0;
    list-style: none;
    text-align: left;
    margin-bottom: 0;
}
.th-btn {
    position: relative;
    z-index: 2;
    overflow: hidden;
    vertical-align: middle;
    display: inline-block;
    border: none;
    text-transform: uppercase;
    text-align: center;
    background-color: #0e62ff;
    color: #ffffff;
    box-shadow: 0px 6px 16px rgba(13, 94, 244, 0.24);
    border-radius: 5px;
        font-size: 14px;
    font-weight: 600;
    line-height: 1;
    padding: 20.5px 29px;
}
.price-card .th-btn {
    width: 100%;
}
.th-btn:before {
    content: "";
    position: absolute;
    height: 0%;
    left: 50%;
    top: 50%;
    width: 600%;
    background-color: #0c1c30;
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(60deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(60deg);
    transform: translateX(-50%) translateY(-50%) rotate(60deg);
    z-index: -1;
    -webkit-transition: 0.7s ease;
    transition: 0.7s ease;
}
.th-btn:hover::before, .th-btn.active::before {
    height: 560%;
}
.th-btn.style10:before {
    background-color: #ff1719;
}
.price-card .th-btn:hover:before {
    background: transparent;
}
.price-card.active .th-btn:hover, .price-card:hover .th-btn:hover {
    background: #0c61ff;
}
.price-card.active .th-btn, .price-card:hover .th-btn {
    background: #ff1112;
}
.price-card_price {
    font-size: 44px;
    font-weight: 600;
    line-height: 1;
    margin: 0;
    position: relative;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    background: #f1f8ff;
    border-radius: 10px;
    padding: 20px;
    color: #1064ff;
}
.price-card .checklist li i {
    color: #0e62ff;
    margin-right: 4px;
}
.price-card .checklist li.unavailable>i {
    color: #ff1214;
}
.price-card.active:after, .price-card:hover:after {
    background: #ff1112;
}

/*=== 16. FAQ-CSS ===*/
.faq-image {
    border-radius: 6px;
    overflow: hidden;
}

.accordion .item {
    background-color: #ffffff;
    -webkit-box-shadow: 0px 8px 35px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 8px 35px rgba(0, 0, 0, 0.07);
    border-radius: 6px;
    margin-bottom: 20px;
}

.accordion .item:last-child {
    margin-bottom: 0;
}

.accordion .item .title {
    font-size: 20px;
    font-weight: 600;
    padding: 20px 24px;
    margin: 0;
    cursor: pointer;
}

.accordion .item .title a {
    display: block;
    color: var(--heading-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accordion .item .title a:after {
    content: "\e963";
    font-family: 'landshop';
    float: right;
    line-height: 1;
    margin-left: 10px;
}

.accordion .item .title a[aria-expanded="true"]:after {
    content: "\e962";
}

.accordion .item .desc p {
    padding: 0 24px 24px 24px;
}
/* -- Feature-Area-CSS -- */
.feature-box {
    background-color: #ffffff;
    border: 1px solid #ECECEC;
    border-radius: 8px;
    padding: 24px;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0), inset 0 0 0 0 var(--primary-color);
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0), inset 0 0 0 0 var(--primary-color);
    min-height: 240px;
}

.feature-box:hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-box-shadow: 0px 30px 55px rgba(0, 0, 0, 0.08), inset 0 3px 0 0 var(--primary-color);
    box-shadow: 0px 30px 55px rgba(0, 0, 0, 0.08), inset 0 3px 0 0 var(--primary-color);
}

.feature-box .icon {
    background-color: #ffffff;
    width: 80px;
    height: 80px;
    text-align: center;
    line-height: 80px;
    color: var(--primary-color);
    font-size: 40px;
    border-radius: 100px;
    margin-bottom: 24px;
    display: inline-block;
    position: relative;
    z-index: 1;
    overflow: hidden;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.feature-box .icon:after,
.feature-box .icon:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    z-index: -1;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.feature-box .icon:before {
    opacity: 0.1;
}

.feature-box .icon:after {
    opacity: 0;
}

.feature-box:hover .icon:after {
    opacity: 1;
}

.feature-box:hover .icon {
    color: #ffffff;
}

.feature-box .title {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}
.feature-box  .desc{}
.feature-box  .desc p{
    font-size: 14px;
}

.feature-box-2 {
    position: relative;
    padding-left: 112px;
    margin-bottom: 40px;
}

.feature-box-2:last-child {
    margin-bottom: 0;
}

.feature-box-2 .icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #FDA800;
    text-align: center;
    font-size: 32px;
    color: #ffffff;
    border-radius: 100px;
}

.feature-box-2 .title {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 500;
}

/* Best-Product-Area-CSS */
.best-product-area {
    background-color: #FFF5F2;
    position: relative;
    z-index: 1;
}

.best-product-area .element {
    position: absolute;
    z-index: -1;
}

.best-product-area .element-1 {
    left: 15%;
    top: 15%;
}

.best-product-area .element-2 {
    left: 5%;
    bottom: 15%;
}

.best-product-area .element-3 {
    left: 50%;
    bottom: 85%;
}

.best-product-area .element-4 {
    right: 10%;
    bottom: 15%;
}

.check-list {
    list-style: none;
    margin: 0px 0;
    padding: 0;
}

.check-list li {
    margin: 10px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.check-list li:before {
    content: "\e92a";
    font-family: 'landshop';
    margin-right: 12px;
    color: #3CB868;
}

/* Service-Area-CSS */
.feature-box-1 {
    text-align: center;
}

.feature-box-1 .icon {
    width: 88px;
    height: 88px;
    line-height: 88px;
    text-align: center;
    display: inline-block;
    -webkit-box-shadow: 0px 20px 65px -5px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 20px 65px -5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 44px;
    color: var(--primary-color);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-bottom: 40px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.feature-box-1 .icon:before {
    content: "";
    position: absolute;
    right: -100%;
    bottom: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    border-radius: 8px;
}

.feature-box-1:hover .icon:before {
    bottom: 0;
    right: 0;
}

.feature-box-1:hover .icon {
    color: #ffffff;
}

.feature-box-1 .icon span {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    display: inline-block;
}

.feature-box-1 .title {
    font-size: 24px;
    margin-bottom: 12px;
}
.registerpg-box-cus {
    border: 1px solid #ddd;
    box-shadow: 0px 0px 50px 8px #ddd;
    padding: 48px;
    border-radius: 8px;
}

/* Header */
  .header-eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.22em;
    color: #ff6b31;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
  }

  .header-title {
    font-size: 52px;
    color: #000000;
    line-height: 1.1;
    letter-spacing: 0.03em;
    margin-bottom: 0rem;
    font-weight: 600;
  }

  .header-title span {
    color: #ff6b31;
  }

  .header-sub {
    font-size: 14px;
    color: rgb(1 92 224);
    letter-spacing: 0.01em;
    margin-bottom: 3rem;
    font-weight: 500;
  }

  /* Income cards */
  .package-card {
    background: var(--primary-color);
    border: 1px solid rgba(245, 197, 66, 0.18);
    border-radius: 16px;
    padding: 1.6rem 1.4rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    cursor: default;
    height: 100%;
  }

  .package-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(245,197,66,0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.22s ease;
  }

  .package-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245,197,66,0.5);
    box-shadow: 0 20px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(245,197,66,0.15);
  }

  .package-card:hover::before { opacity: 1; }

  /* Featured card */
  .package-card.featured {
border-color: #F5C542;
    background: linear-gradient(145deg, #ffffff 0%, #015ce0 60%);
  }

  .package-card.featured::after {
    content: 'MOST POPULAR';
    position: absolute;
    top: 14px;
    right: -26px;
    background: #F5C542;
    color: #0C0C0F;
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.12em;
    padding: 4px 32px;
    transform: rotate(35deg);
  }

  /* Corner glyph */
  .corner-glyph {
    position: absolute;
    top: 14px;
    left: 16px;
    font-size: 14px;
    letter-spacing: 0.1em;
    color: #313091;
    opacity: 0.55;
  }

  .pkg-amount { 
    font-size: 3.2rem;
    color: #F5C542;
    line-height: 1;
    margin-top: 1.8rem;
    margin-bottom: 0.1rem;
    font-weight: 600;
  }

  .pkg-currency {
    font-size: 12px;
    color: rgb(255 255 255);
    letter-spacing: 0.08em;
    margin-bottom: 1.4rem;
  }

  .divider-line {
    height: 1px;
    background: linear-gradient(90deg, #ffffff, transparent);
    opacity: 0.2;
    margin-bottom: 1.2rem;
  }

  .stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.7rem;
  }

  .stat-label {
    font-size: 11px;
    color: rgb(255 255 255);
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .stat-value {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
  }

  .stat-value.highlight {
    color: #F5C542;
    font-family: 'DM Mono', monospace;
  }

  .ads-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(245,197,66,0.08);
    border: 1px solid rgba(245,197,66,0.2);
    border-radius: 6px;
    padding: 2px 8px;
    font-size: 12px;
    font-family: 'DM Mono', monospace;
    color: #F5C542;
  }

  /* Points pill */
  .points-pill {
    font-size: 11px;
    color: rgb(255 255 255);
    letter-spacing: 0.06em;
    margin-bottom: 1.1rem;
  }

  /* Footer note */
  .footer-note {
    text-align: center;
    font-size: 12px;
    color: rgb(1 92 224);
    font-family: 'DM Mono', monospace;
    letter-spacing: 0.08em;
    margin-top: 2.5rem;
    font-weight: 800;
  }

  /* Daily return tag */
  .return-tag {
    display: inline-block;
    background: rgba(245, 197, 66, 0.12);
    color: #ffffff;
    font-size: 10px;
    font-family: 'DM Mono', monospace;
    letter-spacing: 0.1em;
    padding: 3px 10px;
    border-radius: 30px;
    border: 1px solid rgb(255 255 255 / 25%);
    margin-top: 0.8rem;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .package-card { animation: fadeUp 0.5s ease both; }
  .package-card:nth-child(1) { animation-delay: 0.05s; }
  .package-card:nth-child(2) { animation-delay: 0.12s; }
  .package-card:nth-child(3) { animation-delay: 0.19s; }
  .package-card:nth-child(4) { animation-delay: 0.26s; }
  .package-card:nth-child(5) { animation-delay: 0.33s; }