@font-face {
    font-family: "Material Symbols Outlined";
    font-style: normal;
    font-weight: 100 700;
    src: url(fonts/materialsymbolsoutlined.woff2) format("woff2");
}
.material-symbols-outlined {
    font-family: "Material Symbols Outlined";
    font-weight: 400;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -moz-font-feature-settings: "liga";
    -moz-osx-font-smoothing: grayscale;
}
* {
    margin: 0;
    padding: 0;
}
body,
html {
    color: #c8c8cd;
    scroll-behavior: smooth;
    font-family: "Poppins", sans-serif;
    background-color: #0e0e0e;
    overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #fefefe;
    font-weight: 600;
    line-height: 1.4;
    font-family: "Unbounded", sans-serif;
}
h4 {
    font-size: clamp(20px, 2vw, 24px);
}
h5 {
    font-size: clamp(16px, 2vw, 20px);
}
p {
    font-size: 16px;
    line-height: 1.67;
}
@media only screen and (min-width: 1200px) {
    p {
        font-size: 18px;
    }
}
a,
a:hover,
a:focus {
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    text-decoration: none;
    outline: 0 solid #fff0;
    color: #fefefe;
    font-family: "Unbounded", sans-serif;
}
ul,
ol {
    margin-bottom: 0;
}
button,
.btn {
    font-family: "Unbounded", sans-serif;
}
img {
    max-width: 100%;
    height: auto;
}
input:required,
textarea:required {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}
input:invalid,
textarea:invalid {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}
ul li,
ol li {
    line-height: 1.75;
}
.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    max-width: 320px;
}
@media (min-width: 400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 360px;
    }
}
@media (min-width: 480px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 420px;
    }
}
@media (min-width: 576px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 520px;
    }
}
@media (min-width: 768px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 700px;
    }
}
@media (min-width: 992px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 940px;
    }
}
@media (min-width: 1200px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1120px;
    }
}
@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1280px;
    }
}
.row.g-4,
.row.gy-4 {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.gap-4 {
    gap: 30px !important;
}
.btn {
    border: 0 !important;
    font-size: 13px;
    padding: 14px 32px;
    border-radius: 2rem;
    font-weight: 600;
    letter-spacing: -0.14px;
    overflow: hidden;
    position: relative;
    height: 48px;
    min-width: 200px;
    text-transform: uppercase;
}
@media only screen and (min-width: 1200px) {
    .btn {
        font-size: 14px;
        padding: 18px 40px;
        height: 57px;
        min-width: 210px;
    }
}
.btn span {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition:
        transform 0.5s ease,
        -webkit-transform 0.5s ease;
    white-space: nowrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}
.btn span:first-child {
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.btn span:last-child {
    -webkit-transform: translateX(-50%) translateY(80px);
    transform: translateX(-50%) translateY(80px);
}
.btn:active span:first-child,
.btn:focus span:first-child,
.btn:hover span:first-child {
    -webkit-transform: translateX(-50%) translateY(-80px);
    transform: translateX(-50%) translateY(-80px);
}
.btn:active span:last-child,
.btn:focus span:last-child,
.btn:hover span:last-child {
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.btn-primary {
    background-color: #ecc80b;
    color: #0e0e0e;
}
.btn-primary:active,
.btn-primary:hover,
.btn-primary:focus {
    background-color: #ecb50b;
    color: #0e0e0e;
}
.btn-primary:disabled,
.btn-primary.disabled {
    background-color: #ecc80b;
    color: #0e0e0e;
    opacity: 0.65;
    cursor: not-allowed;
}
.btn-dark {
    background-color: #141212;
    color: #ffffff !important;
    transition: background-color 0.3s ease;
}
.btn-dark span {
    color: #fff;
}
.btn-dark:active,
.btn-dark:hover,
.btn-dark:focus {
    background-color: #252424;
    color: #ffffff !important;
}
form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
}
form .form-control {
    width: 100%;
    height: 64px;
    border-radius: 8px;
    border: 1px solid rgb(254 254 254 / 0.2);
    background-color: #fff0;
    color: #c8c8cd;
    font-size: 16px;
    padding: 17px 24px;
}
@media only screen and (min-width: 1200px) {
    form .form-control {
        font-size: 18px;
    }
}
form .form-control::-webkit-input-placeholder {
    color: #c8c8cd;
}
form .form-control::-moz-placeholder {
    color: #c8c8cd;
}
form .form-control:-ms-input-placeholder {
    color: #c8c8cd;
}
form .form-control::-ms-input-placeholder {
    color: #c8c8cd;
}
form .form-control::placeholder {
    color: #c8c8cd;
}
form .form-control:focus {
    border: 1px solid #ecc80b;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    background-color: #fff0;
    color: #fff;
}
form .form-control:disabled,
form .form-control.disabled {
    background-color: rgb(254 254 254 / 0.05);
    border: 1px solid rgb(254 254 254 / 0.1);
    color: rgb(200 200 205 / 0.5);
    cursor: not-allowed;
    opacity: 0.7;
}
form .form-control option {
    color: #1a1a1a;
}
form .btn {
    height: 64px;
    border-radius: 8px;
}
.divider {
    width: 100%;
    display: block;
    height: 80px;
}
@media only screen and (min-width: 768px) {
    .divider {
        height: 120px;
    }
}
@media only screen and (min-width: 1200px) {
    .divider {
        height: 140px;
    }
}
.divider-sm {
    width: 100%;
    display: block;
    height: 60px;
}
#preloader,
.preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9999999;
    top: 0;
    left: 0;
    background-color: #0e0e0e;
    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;
    overflow: hidden;
}
#preloader .spinner-grow,
.preloader .spinner-grow {
    background-color: #ecc80b;
}
#scrollTopButton {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    -webkit-transition: all 500ms;
    transition: all 500ms;
    z-index: 9999;
    width: 2.5rem;
    height: 2.5rem;
    background-color: #ecc80b;
    font-size: 1.5rem;
    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;
    border-radius: 0.25rem;
    color: #1a1a1a;
    cursor: pointer;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    border-radius: 50%;
    border: 0;
}
#scrollTopButton span {
    font-size: 1.75rem;
}
#scrollTopButton.scrolltop-show {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
#scrollTopButton.scrolltop-hide {
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
}
@media only screen and (min-width: 992px) {
    #scrollTopButton {
        width: 3rem;
        height: 3rem;
        bottom: 2rem;
        right: 2rem;
    }
}
.section-heading h2 {
    font-size: 25px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1.8px;
}
@media only screen and (min-width: 992px) {
    .section-heading h2 {
        font-size: 28px;
    }
}
@media only screen and (min-width: 1200px) {
    .section-heading h2 {
        font-size: 32px;
    }
}
.bg-img {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.bg-overlay {
    position: relative;
    z-index: 1;
}
.bg-overlay::after {
    position: absolute;
    content: "";
    background-color: #0e0e0e;
    opacity: 0.5;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}
.bg-secondary {
    background-color: #1a1a1a !important;
}
.text-primary {
    color: #ecc80b !important;
}
.header-area {
    background-color: #fff0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: #0e0e0e;
    -webkit-transition: all 400ms;
    transition: all 400ms;
}
.header-area::after {
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: rgb(254 254 254 / 0.2);
    content: "";
    bottom: 0;
    left: 0;
    z-index: -10;
}
@media only screen and (min-width: 992px) {
    .header-area {
        -webkit-box-shadow: none;
        box-shadow: none;
    }
}
.header-area.mobile-menu-open {
    background-color: #0e0e0e;
}
.header-area .navbar-toggler {
    padding: 0;
    width: 1.75rem;
    height: 1.75rem;
    font-size: 1.5rem;
    color: #fff;
    border: 0;
}
.header-area .navbar-toggler:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.header-area .navbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
    -webkit-transition: all 400ms;
    transition: all 400ms;
}
@media only screen and (min-width: 992px) {
    .header-area .navbar {
        height: 110px;
        padding-top: 0;
        padding-bottom: 0;
    }
}
.header-area .navbar .navbar-brand {
    margin-right: 2rem;
    line-height: 1 !important;
}
@media only screen and (min-width: 992px) {
    .header-area .navbar .navbar-brand {
        margin-right: 3rem;
    }
}
@media only screen and (min-width: 1200px) {
    .header-area .navbar .navbar-brand {
        margin-right: 4rem;
    }
}
.header-area .navbar-nav {
    margin-top: 1rem;
    margin-bottom: 1rem;
}
@media only screen and (min-width: 992px) {
    .header-area .navbar-nav {
        gap: 36px;
    }
}
@media only screen and (min-width: 1200px) {
    .header-area .navbar-nav {
        gap: 44px;
    }
}
.header-area .navbar-nav li > a {
    display: inline-block;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
@media only screen and (min-width: 1200px) {
    .header-area .navbar-nav li > a {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
}
.header-area .navbar-nav li > a:hover {
    color: #ffc107;
}
.header-area .navbar-nav li .vorix-dd-menu {
    list-style: none;
    background-color: #fff0;
    position: relative;
    z-index: 100;
    top: 100%;
    width: 100%;
    border: 0;
    border-radius: 0.5rem;
    display: none;
    padding-left: 0;
}
@media only screen and (min-width: 992px) {
    .header-area .navbar-nav li .vorix-dd-menu {
        padding: 1rem 0;
        -webkit-transition: all 500ms ease-in-out;
        transition: all 500ms ease-in-out;
        position: absolute;
        top: calc(100% + 8px);
        width: 15rem;
        background-color: #1a1a1a;
        -webkit-box-shadow: 0 1rem 3rem rgb(0 0 0 / 0.125);
        box-shadow: 0 1rem 3rem rgb(0 0 0 / 0.125);
        visibility: hidden;
        opacity: 0;
        display: block;
        left: -1rem;
    }
}
.header-area .navbar-nav li .vorix-dd-menu li > a {
    -webkit-transition: all 400ms;
    transition: all 400ms;
    position: relative;
    font-size: 13px;
    padding: 0.375rem 1rem;
    color: #c8c8cd;
    text-transform: capitalize;
}
@media only screen and (min-width: 992px) {
    .header-area .navbar-nav li .vorix-dd-menu li > a {
        padding: 0.375rem 1.5rem;
    }
}
.header-area .navbar-nav li .vorix-dd-menu li > a:hover,
.header-area .navbar-nav li .vorix-dd-menu li > a:focus {
    background-color: #fff0;
    color: #ffc107;
}
@media only screen and (min-width: 992px) {
    .header-area .navbar-nav li .vorix-dd-menu li > a:hover,
    .header-area .navbar-nav li .vorix-dd-menu li > a:focus {
        color: #ecc80b;
    }
}
.header-area .navbar-nav li.vorix-dd {
    position: relative;
    z-index: 1;
}
.header-area .navbar-nav li.vorix-dd .dropdown-toggler {
    position: absolute;
    width: 100%;
    height: 36px;
    z-index: 100;
    background-color: #fff0;
    color: #ffc107;
    top: 2px;
    cursor: pointer;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    font-size: 14px;
}
@media only screen and (min-width: 992px) {
    .header-area .navbar-nav li.vorix-dd .dropdown-toggler {
        display: none;
    }
}
@media only screen and (min-width: 992px) {
    .header-area .navbar-nav li.vorix-dd:hover .vorix-dd-menu,
    .header-area .navbar-nav li.vorix-dd:focus .vorix-dd-menu {
        visibility: visible;
        opacity: 1;
        top: 100%;
    }
}
.header-area.sticky-on {
    background-color: #0e0e0e;
    -webkit-box-shadow: 0 1rem 3rem rgb(194 199 240 / 0.175);
    box-shadow: 0 1rem 3rem rgb(194 199 240 / 0.175);
}
@media only screen and (min-width: 992px) {
    .header-area.sticky-on .navbar {
        height: 90px;
    }
}
.light-logo {
    display: none;
}
.theme-btn {
    margin-right: 36px;
    border: 0;
    background-color: #fff0;
    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;
}
.theme-btn span {
    color: #c8c8cd;
    font-size: 24px;
}
.theme-btn .moon {
    display: none;
}
.theme-btn.light-mode-active .sun {
    display: none;
}
.theme-btn.light-mode-active .moon {
    display: block;
}
.hero-wrapper {
    position: relative;
    z-index: 1;
    margin-top: 68px;
}
@media only screen and (min-width: 992px) {
    .hero-wrapper {
        margin-top: 110px;
    }
}
.hero-card {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding-top: 50px;
}
@media only screen and (min-width: 992px) {
    .hero-card {
        height: 900px;
        padding-top: 0;
    }
}
@media only screen and (min-width: 1200px) {
    .hero-card {
        height: 1000px;
    }
}
.hero-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(80deg, #000 20.5%, #fff0 105.71%);
    z-index: -1;
}
.hero-card h2 {
    letter-spacing: -2.6px;
    font-size: 30px;
}
@media only screen and (min-width: 992px) {
    .hero-card h2 {
        font-size: 35px;
    }
}
@media only screen and (min-width: 1200px) {
    .hero-card h2 {
        font-size: 40px;
    }
}
@media only screen and (min-width: 992px) {
    .hero-card p {
        font-size: 18px;
    }
}
.about-wrapper {
    position: relative;
    z-index: 1;
}
.about-image img {
    border-radius: 20px;
    width: 100%;
}
.service-card {
    border-radius: 20px;
    border: 1px solid rgb(254 254 254 / 0.2);
    background: #1a1a1a;
    padding: 40px 30px;
    text-align: center;
}
@media only screen and (min-width: 992px) {
    .service-card {
        padding: 50px 36px;
    }
}
.service-card .icon-wrapper {
    margin-left: auto;
    margin-right: auto;
    width: 100px;
    height: 100px;
    background-color: rgb(236 200 11 / 0.3);
    border-radius: 50%;
    margin-bottom: 40px;
    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;
}
.service-card h2 {
    color: #fff;
    font-size: 24px;
    letter-spacing: -0.48px;
}
.service-list {
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 0;
}
.service-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}
.service-list li .material-symbols-outlined {
    color: #ecc80b;
    font-size: 24px;
}
.mission-vision-wrapper {
    position: relative;
    z-index: 1;
}
.price-table-wrapper {
    position: relative;
    z-index: 1;
}
.price-card {
    border-radius: 20px;
    border: 1px solid rgb(254 254 254 / 0.2);
    padding: 40px 36px;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.price-card .price-info {
    margin-bottom: 40px;
}
.price-card .price-info h6 {
    color: #c8c8cd;
    font-size: 14px;
    margin-bottom: 14px !important;
    opacity: 0.8;
}
.price-card .price-info .price {
    color: #fff;
    font-size: 25px;
    letter-spacing: -1.8px;
}
.price-card .choose-plan {
    margin-top: auto;
}
@media only screen and (min-width: 992px) {
    .price-card .price-info .price {
        font-size: 28px;
    }
}
@media only screen and (min-width: 1200px) {
    .price-card .price-info .price {
        font-size: 32px;
    }
}
.price-card .price-info .price span {
    font-size: 16px;
    letter-spacing: 0;
}
@media only screen and (min-width: 1200px) {
    .price-card .price-info .price span {
        font-size: 18px;
    }
}
.price-card .price-description {
    margin-bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
}
.price-card .price-description li {
    font-size: 16px;
    line-height: 1.4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}
@media only screen and (min-width: 1200px) {
    .price-card .price-description li {
        font-size: 18px;
    }
}
.price-card .price-description li span {
    font-size: 24px;
}
.about-us-text-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 28px;
}
.about-us-text-content ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
}
.about-us-text-content ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 16px;
}
@media only screen and (min-width: 1200px) {
    .about-us-text-content ul li {
        font-size: 18px;
    }
}
.testimonials-card {
    padding: 36px 30px;
    border-radius: 18px;
    background: rgb(254 254 254 / 0.1);
}
@media only screen and (min-width: 1200px) {
    .testimonials-card {
        padding: 50px 40px;
    }
}
.testimonials-card .testimonial-text {
    font-size: 16px;
}
@media only screen and (min-width: 1200px) {
    .testimonials-card .testimonial-text {
        font-size: 18px;
    }
}
.testimonials-card .testimonials-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 18px;
}
.testimonials-card .testimonials-info img {
    width: 60px;
    height: 60px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60px;
    flex: 0 0 60px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.swiper-pagination-two {
    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;
    gap: 12px;
}
.swiper-pagination-two .swiper-pagination-bullet {
    margin: 0 !important;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: #fff0;
    border: 1px solid #fefefe;
    -webkit-transition-duration: 400ms;
    transition-duration: 400ms;
    opacity: 1;
}
.swiper-pagination-two .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #ecc80b;
    border-color: #ecc80b;
}
.faq-accordion .accordion {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
}
.faq-accordion .accordion-item {
    background-color: #fff0;
    border-radius: 8px;
    border: 1px solid rgb(254 254 254 / 0.2);
}
.faq-accordion .accordion-item .accordion-button {
    border-radius: 8px !important;
    background: #fff0;
    color: #fefefe;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.4px;
    padding: 20px 30px;
}
@media only screen and (min-width: 992px) {
    .faq-accordion .accordion-item .accordion-button {
        font-size: 17px;
    }
}
.faq-accordion .accordion-item .accordion-button::after {
    background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><g clip-path="url(%23clip0_1_908)"><path d="M12.1429 8.21429C11.9456 8.21429 11.7857 8.05437 11.7857 7.85714V1.78571C11.7857 0.799491 10.9862 0 10 0C9.01378 0 8.21429 0.799491 8.21429 1.78571V7.85714C8.21429 8.05437 8.05437 8.21429 7.85714 8.21429H1.78571C0.799491 8.21429 0 9.01378 0 10C0 10.9862 0.799491 11.7857 1.78571 11.7857H7.85714C8.05437 11.7857 8.21429 11.9456 8.21429 12.1429V18.2143C8.21429 19.2005 9.01378 20 10 20C10.9862 20 11.7857 19.2005 11.7857 18.2143V12.1429C11.7857 11.9456 11.9456 11.7857 12.1429 11.7857H18.2143C19.2005 11.7857 20 10.9862 20 10C20 9.01378 19.2005 8.21429 18.2143 8.21429H12.1429Z" fill="%23FEFEFE"/></g><defs><clipPath id="clip0_1_908"><rect width="20" height="20" fill="white"/></clipPath></defs></svg>');
}
.faq-accordion .accordion-item .accordion-button:not(.collapsed) {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 8px 8px 0 0 !important;
}
.faq-accordion .accordion-item .accordion-button:not(.collapsed)::after {
    background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><path d="M18.5714 8.57031H1.42858C0.639598 8.57031 0 9.20991 0 9.99889C0 10.7879 0.639598 11.4275 1.42858 11.4275H18.5714C19.3604 11.4275 20 10.7879 20 9.99889C20 9.20991 19.3604 8.57031 18.5714 8.57031Z" fill="%23FEFEFE"/></svg>');
}
.faq-accordion .accordion-item .accordion-body {
    padding: 20px 30px;
    color: #c8c8cd;
    font-size: 16px;
    border-radius: 0 0 9px 9px;
}
@media only screen and (min-width: 1200px) {
    .faq-accordion .accordion-item .accordion-body {
        font-size: 18px;
    }
}
.contact-details-wrap {
    position: relative;
    z-index: 1;
}
.contact-info-card {
    border-radius: 20px;
    border: 1px solid rgb(254 254 254 / 0.2);
    background: #1a1a1a;
    padding: 40px 30px;
}
@media only screen and (min-width: 992px) {
    .contact-info-card {
        padding: 40px 36px;
    }
}
.contact-info-card .icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: rgb(236 200 11 / 0.3);
    border-radius: 50%;
    margin-bottom: 54px;
    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;
}
.contact-info-card h4,
.contact-info-card h6 {
    color: #fff;
    font-size: 18px;
    letter-spacing: -0.48px;
    margin-bottom: 0;
}
@media only screen and (min-width: 1200px) {
    .contact-info-card h4,
    .contact-info-card h6 {
        font-size: 20px;
    }
}
@media only screen and (min-width: 1400px) {
    .contact-info-card h4,
    .contact-info-card h6 {
        font-size: 24px;
    }
}
.maps-wrap iframe {
    width: 100%;
    height: 400px;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    border: 0 !important;
}
@media only screen and (min-width: 576px) {
    .maps-wrap iframe {
        height: 500px;
    }
}
@media only screen and (min-width: 1200px) {
    .maps-wrap iframe {
        height: 600px;
    }
}
@media only screen and (min-width: 1400px) {
    .maps-wrap iframe {
        height: 700px;
    }
}
.contact-form-wrap {
    position: relative;
    z-index: 1;
}
.contact-page-form {
    -webkit-transform: translateY(-140px);
    transform: translateY(-140px);
}
.contact-form {
    padding: 40px 30px;
    background: #0e0e0e;
    margin: 90px 20px;
    border-radius: 20px;
}
@media only screen and (min-width: 992px) {
    .contact-form {
        padding: 60px 40px;
    }
}
@media only screen and (min-width: 1200px) {
    .contact-form {
        padding: 80px 60px;
    }
}
.footer-wrapper {
    background-color: #0e0e0e;
}
.footer-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 32px;
}
.footer-card .social-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}
.footer-card .social-nav a {
    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;
    width: 44px;
    height: 44px;
    background-color: #1a1a1a;
    border-radius: 50%;
    font-size: 16px;
    color: #fff;
}
.footer-card .social-nav a:hover,
.footer-card .social-nav a:focus {
    background-color: #ecc80b;
    color: #1a1a1a;
}
.footer-card .footer-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    list-style: none;
}
.footer-card .footer-nav li a {
    color: #c8c8cd;
    font-size: 16px;
    line-height: 1.4;
    display: block;
}
.footer-card .footer-nav li a:hover,
.footer-card .footer-nav li a:focus {
    color: #ecc80b;
}
.footer-line {
    background: rgb(246 245 243 / 0.2);
    width: 100%;
    height: 1px;
    margin-bottom: 40px;
    margin-top: 60px;
}
@media only screen and (min-width: 768px) {
    .footer-line {
        margin-top: 80px;
    }
}
@media only screen and (min-width: 1200px) {
    .footer-line {
        margin-top: 100px;
    }
}
.footer-bottom-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
@media only screen and (min-width: 768px) {
    .footer-bottom-nav {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
}
@media only screen and (min-width: 1200px) {
    .footer-bottom-nav {
        gap: 2rem;
    }
}
.footer-bottom-nav a {
    color: #c8c8cd;
    font-size: 14px;
    line-height: 1.4;
    text-transform: capitalize;
}
@media only screen and (min-width: 992px) {
    .footer-bottom-nav a {
        font-size: 16px;
    }
}
.footer-bottom-nav a:hover,
.footer-bottom-nav a:focus {
    color: #ecc80b;
}
.subscribe-form {
    position: relative;
}
.subscribe-form .form-control {
    border-radius: 30px;
    border: 1px solid rgb(254 254 254 / 0.2);
    background: #0e0e0e;
    height: 60px;
    padding: 16px 24px;
    color: #fff;
}
.subscribe-form .form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.subscribe-form .form-control::-webkit-input-placeholder {
    color: rgb(200 200 205 / 0.5);
}
.subscribe-form .form-control::-moz-placeholder {
    color: rgb(200 200 205 / 0.5);
}
.subscribe-form .form-control:-ms-input-placeholder {
    color: rgb(200 200 205 / 0.5);
}
.subscribe-form .form-control::-ms-input-placeholder {
    color: rgb(200 200 205 / 0.5);
}
.subscribe-form .form-control::placeholder {
    color: rgb(200 200 205 / 0.5);
}
.subscribe-form .btn {
    width: 50px;
    height: 50px;
    border-radius: 24px;
    background: #ecc80b;
    min-width: 50px;
    padding: 0;
    position: absolute;
    top: 5px;
    right: 10px;
    bottom: 5px;
    color: #1a1a1a;
    font-size: 20px;
}
.copyright {
    font-size: 14px;
}
@media only screen and (min-width: 992px) {
    .copyright {
        font-size: 16px;
    }
}
.copyright a {
    font-size: 14px;
}
@media only screen and (min-width: 992px) {
    .copyright a {
        font-size: 16px;
    }
}
.blog-page-wrap {
    position: relative;
    z-index: 1;
}
.dark-mode-404 {
    display: block;
}
.light-mode-404 {
    display: none;
}
.light-mode .dark-mode-404 {
    display: none;
}
.light-mode .light-mode-404 {
    display: block;
}
.light-mode {
    background-color: #fefefe;
    color: #1a1a1a;
}
.light-mode h1,
.light-mode h2,
.light-mode h3,
.light-mode h4,
.light-mode h5,
.light-mode h6 {
    color: #0e0e0e;
}
.light-mode a,
.light-mode a:hover,
.light-mode a:focus {
    color: #1a1a1a;
}
.light-mode .bg-secondary {
    background-color: #f6f5f3 !important;
}
.light-mode #preloader,
.light-mode .preloader {
    background-color: #f6f5f3;
}
.light-mode .header-area {
    background-color: #fefefe;
}
.light-mode .header-area::after {
    background-color: rgb(26 26 26 / 0.2);
}
.light-mode .header-area .navbar-toggler {
    color: #0e0e0e;
}
.light-mode .header-area .navbar-nav li > a {
    color: #0e0e0e;
}
.light-mode .header-area .navbar-nav li .vorix-dd-menu {
    background-color: #f6f5f3;
    border: 1px solid rgb(26 26 26 / 0.2);
}
.light-mode .header-area .navbar-nav li .vorix-dd-menu li > a {
    color: #0e0e0e;
}
.light-mode .header-area .navbar-nav li .vorix-dd-menu li > a:hover,
.light-mode .header-area .navbar-nav li .vorix-dd-menu li > a:focus {
    color: #ecc80b;
}
.light-mode .header-area.sticky-on {
    -webkit-box-shadow: 0 1rem 3rem rgb(15 30 150 / 0.175);
    box-shadow: 0 1rem 3rem rgb(15 30 150 / 0.175);
}
.light-mode .light-logo {
    display: block;
}
.light-mode .dark-logo {
    display: none;
}
.light-mode .theme-btn span {
    color: #1a1a1a;
}
.light-mode .btn-dark {
    background-color: #0e0e0e;
    color: #ffffff !important;
}
.light-mode .btn-dark span {
    color: #fff;
}
.light-mode .btn-dark:active,
.light-mode .btn-dark:hover,
.light-mode .btn-dark:focus {
    background-color: #252424;
    color: #ffffff !important;
}
.light-mode form .form-control {
    border-color: rgb(26 26 26 / 0.3);
    color: #1a1a1a;
}
.light-mode form .form-control::-webkit-input-placeholder {
    color: rgb(26 26 26 / 0.5);
}
.light-mode form .form-control::-moz-placeholder {
    color: rgb(26 26 26 / 0.5);
}
.light-mode form .form-control:-ms-input-placeholder {
    color: rgb(26 26 26 / 0.5);
}
.light-mode form .form-control::-ms-input-placeholder {
    color: rgb(26 26 26 / 0.5);
}
.light-mode form .form-control::placeholder {
    color: rgb(26 26 26 / 0.5);
}
.light-mode .footer-wrapper {
    background-color: #fefefe;
}
.light-mode .footer-card .footer-nav li a {
    color: #1a1a1a;
}
.light-mode .footer-card .footer-nav li a:hover,
.light-mode .footer-card .footer-nav li a:focus {
    color: #ecc80b;
}
.light-mode .footer-card .social-nav a {
    background-color: #f6f5f3;
    color: #0e0e0e;
}
.light-mode .footer-card .social-nav a:hover,
.light-mode .footer-card .social-nav a:focus {
    background-color: #ecc80b;
}
.light-mode .footer-line {
    background: rgb(26 26 26 / 0.2);
}
.light-mode .footer-bottom-nav a:hover,
.light-mode .footer-bottom-nav a:focus {
    color: #ecc80b;
}
.light-mode .subscribe-form .form-control {
    border-color: rgb(26 26 26 / 0.3);
    background: #fefefe;
    color: #1a1a1a;
}
.light-mode .subscribe-form .form-control::-webkit-input-placeholder {
    color: rgb(26 26 26 / 0.5);
}
.light-mode .subscribe-form .form-control::-moz-placeholder {
    color: rgb(26 26 26 / 0.5);
}
.light-mode .subscribe-form .form-control:-ms-input-placeholder {
    color: rgb(26 26 26 / 0.5);
}
.light-mode .subscribe-form .form-control::-ms-input-placeholder {
    color: rgb(26 26 26 / 0.5);
}
.light-mode .subscribe-form .form-control::placeholder {
    color: rgb(26 26 26 / 0.5);
}
.light-mode .contact-info-card {
    border-color: rgb(26 26 26 / 0.3);
    background: #f6f5f3;
}
.light-mode .contact-info-card .icon-wrapper {
    background-color: #fff;
}
.light-mode .contact-form {
    background: #fefefe;
}
.light-mode .faq-accordion .accordion-item {
    background-color: #fff0;
    border-color: rgb(26 26 26 / 0.3);
}
.light-mode .faq-accordion .accordion-item .accordion-button::after {
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M12 5V19" stroke="%230E0E0E" stroke-width="2" stroke-linecap="square"/><path d="M5 12H19" stroke="%230E0E0E" stroke-width="2" stroke-linecap="square"/></svg>');
}
.light-mode .faq-accordion .accordion-item .accordion-button:not(.collapsed)::after {
    background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M5%2012H19%22%20stroke%3D%22%23000000%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22square%22/%3E%3C/svg%3E);
}
.light-mode .faq-accordion .accordion-item .accordion-button {
    color: #0e0e0e;
}
.light-mode .faq-accordion .accordion-item .accordion-body {
    color: #1a1a1a;
}
.light-mode .testimonials-wrapper {
    background-color: #fff;
}
.light-mode .testimonials-wrapper h2 {
    color: #0e0e0e;
}
.light-mode .testimonials-card {
    background-color: #fff;
    border: 1px solid rgb(26 26 26 / 0.3);
}
.light-mode .testimonials-card p {
    color: #1a1a1a;
}
.light-mode .testimonials-card hr {
    border-color: rgb(26 26 26 / 0.2);
}
.light-mode .testimonials-card h4 {
    color: #0e0e0e;
}
.light-mode .copyright a:hover,
.light-mode .copyright a:focus {
    color: #ecc80b;
}
.light-mode .hero-card h2,
.light-mode .hero-card p {
    color: #fff;
}
.light-mode .price-card {
    border-color: rgb(26 26 26 / 0.3);
}
.light-mode .price-card .price-info h6 {
    color: #1a1a1a;
    opacity: 0.8;
}
.light-mode .price-card .price-info .price {
    color: #0e0e0e;
}
.light-mode .about-us-text-content ul li {
    color: #0e0e0e;
}
.light-mode .about-us-text-content ul li svg path {
    fill: #0e0e0e;
}
.hero-title,
.preview-title {
    font-size: 30px;
}
@media only screen and (min-width: 992px) {
    .hero-title,
    .preview-title {
        font-size: 35px;
    }
}
@media only screen and (min-width: 1200px) {
    .hero-title,
    .preview-title {
        font-size: 40px;
    }
}
.about-section-title {
    font-size: 20px;
}
@media only screen and (min-width: 992px) {
    .about-section-title {
        font-size: 23px;
    }
}
@media only screen and (min-width: 1200px) {
    .about-section-title {
        font-size: 26px;
    }
}
.subtitle-text {
    font-size: 15px;
}
@media only screen and (min-width: 992px) {
    .subtitle-text {
        font-size: 16px;
    }
}
@media only screen and (min-width: 1200px) {
    .subtitle-text {
        font-size: 18px;
    }
}
.price-info h6 {
    font-size: 11px;
}
@media only screen and (min-width: 992px) {
    .price-info h6 {
        font-size: 12px;
    }
}
@media only screen and (min-width: 1200px) {
    .price-info h6 {
        font-size: 13px;
    }
}
.faq-accordion .accordion-button {
    font-size: 17px;
}
@media only screen and (min-width: 992px) {
    .faq-accordion .accordion-button {
        font-size: 18px;
    }
}
@media only screen and (min-width: 1200px) {
    .faq-accordion .accordion-button {
        font-size: 20px;
    }
}
.faq-accordion .accordion-body {
    font-size: 15px;
}
@media only screen and (min-width: 992px) {
    .faq-accordion .accordion-body {
        font-size: 16px;
    }
}
@media only screen and (min-width: 1200px) {
    .faq-accordion .accordion-body {
        font-size: 18px;
    }
}
.logo-text {
    font-size: 30px;
}
@media only screen and (min-width: 992px) {
    .logo-text {
        font-size: 33px;
    }
}
@media only screen and (min-width: 1200px) {
    .logo-text {
        font-size: 36px;
    }
}
.banner-title {
    font-size: 25px;
}
@media only screen and (min-width: 992px) {
    .banner-title {
        font-size: 28px;
    }
}
@media only screen and (min-width: 1200px) {
    .banner-title {
        font-size: 32px;
    }
}
.invitation-title {
    font-size: 25px;
}
@media only screen and (min-width: 992px) {
    .invitation-title {
        font-size: 28px;
    }
}
@media only screen and (min-width: 1200px) {
    .invitation-title {
        font-size: 32px;
    }
}
@media only screen and (max-width: 479px) {
    .hero-card.fit {
        background-size: auto 220%;
    }
}
@media only screen and (min-width: 480px) {
    .hero-card.fit {
        background-size: auto 210%;
    }
}
@media only screen and (min-width: 992px) {
    .hero-card.fit {
        background-size: cover;
    }
}

.btn-check:checked+.btn-primary,
.btn-primary.active,
.btn-primary.show,
.btn-primary:first-child:active,
:not(.btn-check)+.btn-primary:active {
    background-color: #ecb50b !important;
    color: #0e0e0e !important;
    border-color: #ecb50b !important;
    box-shadow: none !important;
}

