/* =======================================
Header Start
==========================================*/
.main-header {
    display: block;
    width: 100%;
    z-index: 9999;
    top: 0;
    left: 0;
    clear: both;
}

.header-notice {
    position: relative;
    text-align: center;
    padding: 10px 0;
    background: var(--primary-color);
}

.header-notice p,
.header-notice p a {
    color: var(--white-color);
    font-size: 16px;
}

.header-notice-close {
    color: var(--white-color);
    font-size: 20px;
    position: absolute;
    right: 20px;
    top: 12px;
    cursor: pointer;
}

.main-header .header-lower {
    position: relative;
    background: linear-gradient(
        0deg,
        rgba(255, 147, 35, 0.2) 0%,
        rgba(255, 255, 255, 0.9220063025210083) 100%
    );
    border-bottom: 1px solid #d7d7d7;
}

.main-header .header-lower .container {
    max-width: 1600px;
}

.main-header .header-lower .logo-box .logo {
    position: relative;
    display: block;
}

.main-header .header-lower .left-column {
    position: relative;
}

.main-header .nav-outer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.navbar-right-info .mobile-nav-toggler {
    position: relative;
    width: 50px;
    height: 50px;
    line-height: 44px;
    text-align: center;
    color: rgb(255, 255, 255);
    font-size: 20px;
    margin-left: 30px;
    cursor: pointer;
    border-radius: 50%;
}

.main-menu .inner-container {
    box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.12);
    margin-bottom: -25px;
    background: var(--white-color);
}

.main-menu .inner-container .nav-outer {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.main-menu .contact-info {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-right: 35px;
}

.main-menu .contact-info .icon {
    width: 75px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    color: var(--white-color);
    font-size: 30px;
    margin-right: 20px;
}

.main-menu .contact-info h6 {
    font-size: 14px;
    margin-bottom: 5px;
}

.main-menu .contact-info h4 {
    font-size: 22px;
}

.main-menu .navbar-collapse {
    padding: 0px;
    display: block !important;
}

.main-menu .navigation {
    margin: 0px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.main-menu .navigation > li {
    position: unset;
    padding: 25px 0px;
    margin-right: 10px;
    padding-right: 25px;
    transition: all 300ms ease;
}

.main-menu .navigation > li:before {
    position: absolute;
    content: "";
    bottom: 30px;
    left: 0;
    width: 23px;
    height: 1px;
    opacity: 0;
}

.main-menu .navigation > li.current:before {
    opacity: 1;
}

.main-menu .navigation > li:last-child:before {
    display: none;
}

.main-menu .navigation > li:last-child {
    margin-right: 0px;
}

.main-menu .navigation > li > a {
    position: relative;
    display: block;
    text-transform: capitalize;
    opacity: 1;
    font-size: 18px;
    line-height: 28px;
    color: var(--black-color);
    font-weight: 500;
}

.main-menu .navigation > li.current > a,
.main-menu .navigation > li > a:hover {
    color: var(--primary-color);
}

.navigation .active {
    color: var(--primary-color) !important;
}

.main-menu .navigation > li > ul {
    position: absolute;
    left: 0px;
    top: 100%;
    width: max-content;
    min-width: 240px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    background: var(--white-color);
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    transition: 0.5s;
    box-shadow: var(--shadow-1);
    border-top: 3px solid var(--primary-color);
    padding: 10px 20px;
}

.sticky-header .main-menu .navigation > li > ul {
    top: 100%;
}

.main-menu .navigation > li > ul.from-right {
    left: auto;
    right: 0px;
}

.main-menu .navigation > li > ul > li {
    position: relative;
    width: 100%;
    padding: 3px 0;
    border-bottom: 1px solid #f3f0f0;
}

.main-menu .navigation > li > ul > li:last-child {
    border-bottom: none;
}

.main-menu .navigation > li > ul > li:before {
    position: absolute;
    content: "";
    right: 0px;
    top: 0px;
    width: 0%;
    height: 100%;
    display: block;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}

.main-menu .navigation > li > ul > li > a {
    position: relative;
    display: block;
    padding: 8.5px 0px;
    line-height: 22px;
    text-align: left;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    color: var(--text-color-1);
    font-weight: 400;
    font-size: 16px;
    font-weight: 400;
}

.main-menu .navigation > li > ul > li > a.active {
    color: var(--praimary-color);
}

.main-menu .navigation > li > ul > li > a.active:before {
    opacity: 1;
}

.main-menu .navigation > li > ul > li:last-child > a {
    border-bottom: 0px;
}

.main-menu .navigation > li > ul > li > a:hover {
    color: var(--secondary-color);
}

.main-menu .navigation > li > ul > li > a.active {
    color: var(--secondary-color);
}

.main-menu .navigation > li > ul > li > ul {
    position: absolute;
    left: 110%;
    top: 0;
    width: 270px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    background-color: var(--white-color);
    transition: 0.5s;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
    border-top: 3px solid var(--secondary-color);
    padding: 20px 0;
}

.main-menu .navigation > li > ul > li > ul.from-right {
    left: auto;
    right: 0px;
}

.main-menu .navigation > li > ul > li > ul > li {
    position: relative;
    width: 100%;
    padding: 0 30px;
}

.main-menu .navigation > li > ul > li > ul > li:last-child {
    border-bottom: none;
}

.main-menu .navigation > li > ul > li > ul > li:before {
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    width: 0%;
    height: 100%;
    display: block;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.main-menu .navigation > li > ul > li > ul > li:last-child {
    border-bottom: none;
}

.main-menu .navigation > li > ul > li > ul > li > a {
    position: relative;
    display: block;
    padding: 8.5px 0;
    line-height: 24px;
    font-weight: 500;
    font-size: 17px;
    color: var(--white-color);
    text-align: left;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    font-size: 16px;
    color: #6e6c70;
    font-weight: 400;
    font-family: "Heebo";
}

.main-menu .navigation > li > ul > li > ul > li > a:before {
    position: absolute;
    content: "*";
    left: 0;
    top: 11px;
    transition: 0.5s;
    opacity: 0;
    font-size: 26px;
    line-height: 28px;
    color: var(--theme-color);
    font-weight: 600;
    font-family: "Inter";
}

.main-menu .navigation > li > ul > li > ul > li > a:hover:before {
    opacity: 1;
}

.main-menu .navigation > li > ul > li > ul > li:last-child > a {
    border-bottom: 0;
}

.main-menu .navigation > li > ul > li > ul > li > a:hover {
    color: var(--theme-color);
    padding-left: 20px;
}

.main-menu .navigation > li > ul > li > ul > li.dropdown > a:after {
    font-family: "Font Awesome 5 Pro";
    content: "\f105";
    position: absolute;
    right: 30px;
    top: 12px;
    display: block;
    line-height: 24px;
    font-size: 16px;
    font-weight: 400;
    z-index: 5;
}

.main-menu .navigation > li.dropdown:hover > ul {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}

.main-menu .navigation li > ul > li.dropdown:hover > ul {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}

.main-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    right: 10px;
    top: 8px;
    width: 34px;
    height: 30px;
    border: 1px solid var(--white-color);
    text-align: center;
    font-size: 16px;
    line-height: 26px;
    color: var(--white-color);
    cursor: pointer;
    z-index: 5;
    display: none;
}

/* right-column */
.header-right-inner {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-box {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
}

.header-right-inner .btn-1 {
    padding: 10px 20px !important;
    border-radius: 30px;
}

.header-right-inner .btn-1::after {
    border-radius: 10px;
}

/* =======================================
Header one
==========================================*/

/* =======================================
			Sticky Header
========================================== */
.sticky-header {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    left: 0px;
    top: 0px;
    width: 100%;
    padding: 0px 0px;
    z-index: -1;
    -webkit-transition: top 300ms ease;
    -o-transition: top 300ms ease;
    transition: top 300ms ease;
}

.sticky-header .main-menu .navigation {
    margin-left: 0;
}

.sticky-header .header-upper {
    padding: 0;
}

.sticky-header .header-upper .container {
    max-width: 1600px;
}

.fixed-header .sticky-header {
    opacity: 1;
    z-index: 99901;
    visibility: visible;
    background: var(--white-color);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.05);
}

.fixed-header .sticky-header .inner-container {
    margin-bottom: 0;
}

.main-header .sticky-header .header-lower .logo-box .logo {
    padding: 18.5px 0px;
}

.sticky-header .main-menu .navigation > li {
    padding: 25px 0px;
    padding-right: 25px;
}

.main-header .sticky-header .header-lower .inner-container {
    min-height: 70px;
}

.sticky-header .main-menu .navigation > li:before {
    bottom: 20px;
}

.sticky-header .right-column {
    gap: 25px;
}

/* =============================================
			Sticky Header
================================================ */

/* ==========================================
			Mobile Menu
=========================================== */
.nav-outer .mobile-nav-toggler {
    position: relative;
    width: 36px;
    height: 45px;
    line-height: 39px;
    text-align: center;
    color: #222222;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    float: right;
    margin: 13px 0;
    display: none;
    transition: 0.5s;
}

.mobile-menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 300px;
    padding-right: 30px;
    max-width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
    pointer-events: auto;
    transition: 0.9s;
}

.mobile-menu .mCSB_scrollTools {
    right: -6px;
}

.mobile-menu .mCSB_inside > .mCSB_container {
    margin-right: 5px;
}

.mobile-menu .navbar-collapse {
    display: block !important;
}

.mobile-menu .nav-logo {
    position: relative;
    padding: 30px 16px;
    text-align: left;
    margin-bottom: 23px;
    margin-top: 0;
}

.mobile-menu-visible {
    overflow: hidden;
}

.mobile-menu-visible .mobile-menu {
    opacity: 1;
    visibility: visible;
    transition: 0.9s;
}

.mobile-menu .menu-backdrop {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
    background-color: rgba(0, 0, 0, 0.9);
}

.mobile-menu-visible .mobile-menu .menu-backdrop {
    opacity: 0.7;
    visibility: visible;
    -webkit-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.mobile-menu .menu-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    /* overflow-y: auto; */
    background: var(--white-color);
    box-shadow: 2px 2px 5px 1px rgba(255, 255, 255, 0.05),
    -2px 0px 5px 1px rgba(255, 255, 255, 0.05);
    padding: 0px 0px;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    border-radius: 0px;
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
    transition: 0.9s;
}

.mobile-menu-visible .mobile-menu .menu-box {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.mobile-menu .menu-box:before {
    position: absolute;
    content: "";
    top: -10%;
    left: -200px;
    width: 900px;
    height: 900px;
    background: var(--gradient-circle);
    z-index: -1;
}

.mobile-menu .close-btn {
    position: absolute;
    right: 20px;
    top: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    color: var(--white-color);
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
    transition: all 0.9s ease;
}

.mobile-menu .menu-outer {
    margin-top: 90px;
}

.mobile-menu .navigation {
    position: relative;
    display: block;
    width: 100%;
    float: none;
}

.mobile-menu .navigation li {
    position: relative;
    display: block;
    border-top: 1px solid rgb(178 169 169 / 10%);
}

.mobile-menu .navigation:last-child {
    border-bottom: 1px solid rgb(178 169 169 / 10%);
}

.mobile-menu .navigation li > ul > li:first-child {
    border-top: 1px solid rgb(178 169 169 / 10%);
}

.mobile-menu .navigation li > a {
    position: relative;
    display: block;
    line-height: 24px;
    padding: 10px 25px;
    font-size: 15px;
    font-weight: 500;
    color: var(--white-color) fff;
    text-transform: uppercase;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.mobile-menu .navigation li ul li > a {
    font-size: 15px;
    margin-left: 20px;
    text-transform: capitalize;
}

.mobile-menu .navigation li > a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 0;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.mobile-menu .navigation li.current > a:before {
    height: 100%;
}

.mobile-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    right: 6px;
    top: 6px;
    width: 32px;
    height: 32px;
    text-align: center;
    font-size: 16px;
    line-height: 32px;
    color: var(--white-color) fff;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    border-radius: 2px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 5;
}

.mobile-menu .navigation li.dropdown .dropdown-btn.open {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.mobile-menu .navigation li > .megamenu,
.mobile-menu .navigation li > ul,
.mobile-menu .navigation li > ul > li > ul {
    display: none;
}

.mobile-menu .social-links {
    position: relative;
    text-align: center;
    padding: 30px 25px;
    margin-top: 50px;
}

.mobile-menu .social-links li {
    position: relative;
    display: inline-block;
    margin: 0px 5px 10px;
}

.mobile-menu .social-links li a {
    position: relative;
    font-size: 16px;
    line-height: 16px;
    width: 28px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color) fff;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border: 1px solid #656565;
    padding: 3px 5px;
}

.mobile-menu .social-links li a span {
    display: inline-block;
}

.mobile-menu .menu-box .header-right-inner {
    margin-top: 50px;
    margin-left: 30px;
}

.mobile-menu .header-right-icon {
    color: var(--white-color);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #6c6e6e;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* ==========================================
			Mobile Menu
=========================================== */

/* -------- Header Responsive ------*/
@media only screen and (max-width: 1680px) {
    .header-style-one .header-lower .header-call-center {
        display: none;
    }

    .header-style-one .header-lower .header-link-btn {
        display: none;
    }
}

@media only screen and (max-width: 1400px) {
    .main-menu .navigation > li:nth-last-child(-n + 3) > ul > li > ul {
        left: auto;
        right: 100%;
    }

    .main-menu .navigation > li:nth-last-child(-n + 2) > ul {
        left: auto;
        right: 0;
    }

    .main-menu .navigation > li:nth-last-child(-n + 2) > ul > li > ul {
        left: auto;
        right: 100%;
    }

    .sidemenu-nav-toggler {
        display: none;
    }

    .consult_btn {
        display: none;
    }

    .header-lower .shape {
        display: none;
    }

    .header-link-btn {
        margin-left: 20px;
    }

    .main-header .header-lower .logo-box .logo {
        margin-right: 20px;
    }
}

@media only screen and (max-width: 1350px) {
    .header-style-one .auto-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .main-header .inner-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .header_top .left-column {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .header_top .right-column {
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;
    }

    /* stky header */
    .sticky-header .nav-outer .main-menu {
        padding-right: 15px;
    }

    .sticky-header .main-menu .navigation > li {
        margin-right: 25px;
    }

    .sticky-header .main-menu .navigation {
        margin-left: 90px;
    }
}

@media only screen and (max-width: 1200px) {
    /* Default */
    .main-header .inner-container {
        padding: 10px 0 !important;
    }

    .main-header .nav-outer {
        position: absolute;
        right: 10px;
        top: -4px;
    }

    .main-header .header-right-inner {
        margin-right: 46px;
    }

    .nav-outer .mobile-nav-toggler {
        display: block !important;
    }

    .banner-section .banner-slider-nav {
        display: none;
    }

    button.theme-btn.search-toggler {
        display: none;
    }

    .header-link-btn {
        display: none !important;
    }

    /* stky header */
    .sticky-header .nav-outer .main-menu {
        padding-right: 15px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .header-top-end .nice-select .list {
        left: -21px;
    }

    .header-style-one .middle-column,
    .header-style-two .middle-column {
        order: 3;
    }

    .header-style-one .sticky-header .nav-outer,
    .header-style-two .sticky-header .nav-outer {
        order: 3;
    }

    .main-menu {
        display: none;
    }

    .header-lower .mobile-nav-toggler {
        display: block !important;
    }

    .sticky-header .mobile-nav-toggler {
        display: block !important;
    }

    .main-header .header-lower .logo-box .logo {
        margin-right: 0;
    }

    .main-menu .navigation > li {
        margin-right: 35px;
    }
}

/* Tablet Layout: 768px. */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-top-end .nice-select .list {
        left: -21px;
    }

    .header-style-one .middle-column,
    .header-style-two .middle-column {
        order: 3;
    }

    .header-style-one .sticky-header .nav-outer,
    .header-style-two .sticky-header .nav-outer {
        order: 3;
    }

    .main-menu {
        display: none;
    }

    .header-lower .mobile-nav-toggler {
        display: block !important;
    }

    .header-top-coupon p {
        font-size: 13px;
    }

    .fixed-header .mobile-menu {
        top: 70px;
    }
}

/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {
    .fixed-header .mobile-menu {
        top: 60px;
    }

    .main-header .inner-container {
        padding: 15px 0 !important;
    }

    .header-top-inner {
        justify-content: center;
    }

    .header-top-coupon p {
        display: none;
    }

    .header-top-end {
        display: none;
    }

    .main-header .header-lower {
        margin-top: 0;
    }

    .header-style-one .header-lower .inner-container {
        padding: 0;
    }

    .sticky-header .nav-outer .mobile-nav-toggler {
        width: 25px;
        height: 36px;
        line-height: 30px;
    }

    .sticky-header .logo img {
        width: 120px;
    }

    .sticky-header .right-column .header-right-inner {
        display: none !important;
    }

    .sticky-header .right-column .nav-outer {
        top: 1px;
    }

    .header-style-one .color-social-links {
        display: none;
    }

    .main-menu {
        display: none;
    }

    .nav-outer .mobile-nav-toggler {
        margin-left: 90px !important;
    }

    .main-header .header-lower .left-column {
        width: 150px;
    }

    .main-header .header-lower .logo-box .logo {
        width: 120px;
    }

    .nav-outer .mobile-nav-toggler {
        right: 5px;
    }

    .main-header .header-lower .right-column .header-right-inner {
        display: none !important;
    }

    .nice-select .list {
        left: -35px !important;
    }
}

@media only screen and (max-width: 575px) {
    .header-link-btn {
        display: none;
    }

    .main-header * {
        flex-wrap: wrap;
    }

    .main-header .header-lower .logo-box .logo img {
        width: 150px;
    }

    .header_appointment_btn a {
        padding-right: 15px;
        padding-left: 15px;
        clip-path: none;
    }
}

@media only screen and (min-width: 320px) and (max-width: 359px) {
    .main-header .header-lower .logo-box .logo {
        margin-right: 0;
        margin-left: 0;
        width: 120px;
    }
}

/* =============================================
	Headder End
================================================*/

/*----------------- banner-section -------------------*/
.banner-section {
    position: relative;
    overflow: hidden;
    padding: 150px 0;
    background: var(--gradient-color);
}

.banner-content-box {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.bags {
    display: inline-block;
    padding: 3px 20px;
    border-radius: 20px;
    font-weight: 600;
    color: rgb(113 63 18);
    border: 1px solid rgb(113 63 18 / 25%);
    background-color: hsl(49deg 100% 90%);
}

.bags i {
    color: rgb(250 204 21);
}

.banner-content-box .bags {
    position: relative;
    padding: 3px 20px 3px 40px;
}

.banner-content-box .bags::after {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgb(250 204 21);
    position: absolute;
    top: 13px;
    left: 20px;
}

.banner-list ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 30px 0 30px;
}

.banner-list ul li {
    position: relative;
    color: var(--text-color-1);
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 7px;
}

.banner-content-box h2 {
    display: block;
    font-size: 64px;
    line-height: 85px;
    color: var(--black-color);
    font-weight: 700;
    margin-bottom: 24px;
}

.banner-content-box p {
    font-size: 24px;
    line-height: 40px;
}

.banner-content-box .banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

/*------------------------- banner-section -----------------------*/

/*------------------------- mobile section -----------------------*/
.mobile-section {
    padding: 100px 0;
    position: relative;
}

.common-title h2 {
    margin-bottom: 30px;
    line-height: 65px;
    font-size: 48px !important;
}

.mobile-section-left-container {
    height: 100%;
    display: flex;
    align-items: center;
}

.mobile-app {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-app .mobile-app-frame {
    width: 360px;
    height: calc(100vh - 120px);
    border-radius: 36px;
    border: 10px solid #ddd;
    flex-shrink: 0;
    display: block;
    box-shadow: 0 0 24px 6px rgba(0, 0, 0, 0.05);
    opacity: 0.5;
    transform: rotate(5deg);
    pointer-events: none;
    transition: all linear 0.2s;
}

.mobile-section-left-container .theme-btn {
    background: var(--white-color);
    border: 1px solid var(--black-color);
    margin-top: 50px;
}

.mobile-section-left-container .theme-btn:hover {
    border: 1px solid var(--primary-color);
}

.mobile-section .btn-box {
    margin-top: 40px;
}

/*------------------------- mobile section -----------------------*/

/*------------------------- Features ----------------------------*/
.features {
    padding: 140px 0 0;
    position: relative;
}

.features-container {
    position: relative;
    padding: 60px 60px;
    border-radius: 16px;
    background-color: var(--bg-3);
    border: 1px solid rgb(228 229 235);
    margin-bottom: 40px;
    z-index: 1;
}

.features-container .bg-layer {
    position: absolute;
    top: 50%;
    right: 34px;
    transform: translateY(-50%);
    width: 50%;
    height: 75%;
    background-size: 91% !important;
    background-position: right bottom !important;
    background-repeat: no-repeat !important;
    z-index: -1;
}

.features-content {
    margin-right: 64px;
}

.features-content span {
    display: inline-block;
    padding: 3px 20px 3px 32px;
    border-radius: 7px;
    font-weight: 600;
    color: var(--primary-color);
    background-color: transparent;
    border: 1px solid var(--light-color);
    position: relative;
    width: 105px;
    text-align: center;
}

.features-content span::after {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-color);
    position: absolute;
    top: 13px;
    left: 14px;
}

.features-content h4 {
    font-size: 34px;
    margin: 30px 0 20px;
}

.features-list {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.features-list ul li {
    margin-bottom: 20px;
    display: flex;
    gap: 5px;
}

.features-list ul li:last-child {
    margin-bottom: 0;
}

.features-list ul li a {
    color: var(--black-color);
    font-size: 20px;
}

.features-right {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*------------------------- Features ----------------------------*/

/*------------------------- Panel ----------------------------*/
.panel {
    padding: 140px 0;
}

.panel-container {
    background: var(--bg-3);
    border-radius: 16px;
    overflow: hidden;
}

.panel-container nav {
    height: 100%;
    display: flex;
    align-items: center;
    background-color: var(--light-color);
}

.panel-container .nav-tabs {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: space-between;
}

.panel-container .nav-tabs .nav-link {
    width: 100%;
    border-left: 4px solid var(--light-color);
    border-radius: 0;
    padding: 30px 0;
    color: var(--black-color);
    font-size: 24px;
}

.panel-container .nav-tabs .nav-link:first-child {
    border-top-left-radius: 0;
}

.panel-container .nav-tabs .nav-link:last-child {
    border-top-right-radius: 0;
}

.panel-container .nav-tabs .nav-link.active {
    border-left: 4px solid var(--primary-color);
    background-color: var(--white-color);
    color: var(--black-color);
}

.panel-container .tab-content {
    padding: 40px 40px;
}

.panel-container .single-item {
    position: relative;
    display: block;
    width: 100%;
    height: 500px;
    padding-right: 60px;
}

.panel-container .single-item img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.panel-content {
    height: 100%;
    display: flex;
    align-items: center;
}

.panel-content h3 {
    font-size: 38px;
    line-height: 50px;
    margin-bottom: 20px;
    font-weight: 700;
}

.panel-content p {
    margin-bottom: 30px;
}

/*------------------------- Panel ----------------------------*/

/*------------------------- board ----------------------------*/
.board {
    padding: 140px 0 0;
}

.board-title {
    position: sticky;
    top: 120px;
    margin-top: 130px;
    transition: all 0.3s ease-in-out;
}

.scrolling {
    transform: translateY(-235px);
    opacity: 0.7;
}

.board-container {
    position: sticky;
    top: 400px;
    margin-bottom: 30px;
}

.board-container:last-child {
    margin-bottom: 30px;
}

.board-container-left {
    height: 100%;
    display: flex;
    align-items: center;
    margin-right: 100px;
    background-color: var(--white-color);
}

.board-container-title span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--light-color);
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 70px;
}

.board-container-title h4 {
    font-size: 34px;
    margin-bottom: 20px;
}

.board-container-title a {
    margin-top: 30px;
}

.board-container-image {
    position: relative;
    width: 100%;
    height: 450px;
    /* padding: 60px 0 0 60px; */
    border-radius: 8px;
    /* background: var(--gradient-color); */
    overflow: hidden;
    box-shadow: 30px 30px 0px rgb(3 63 27 / 27%);
}

.board-container-image::after {
    content: "";
    width: 120%;
    height: 120%;
    background: var(--gradient-circle);
    position: absolute;
    left: -10%;
    top: -10%;
    transform: rotate(15deg);
    opacity: 0.5;
}

.board-container-image img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: 1px solid var(--border-2);
}

/*------------------------- board ----------------------------*/

/*------------------------- payment method ----------------------------*/
.payment-method-item-wrapper {
    position: relative;
    height: 450px;
    padding: 60px 40px;
    border-radius: 20px;
    background: var(--primary-color);
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.payment-method-item-wrapper::after {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(var(--white-color-rgb), 0.1);
    transform: skewX(-36deg);
    position: absolute;
    right: -140px;
    top: 0;
}

.payment-method-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--white-color);
    padding: 6px 20px;
    border-radius: 5px;
    border: 1px solid rgb(228 229 235);
    transition: 0.5s;
}

.payment-method-item:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.payment-method-item-thumb {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-1);
}

.payment-method-item-image {
    padding: 6px 0;
}

.payment-method-item-thumb img {
    width: 21px;
    height: 21px;
}

.payment-method-item-content h4 {
    font-size: 18px;
}

/*------------------------- payment method ----------------------------*/

/*------------------------- tools-section ----------------------------*/
.tools-section-wrapper {
    position: relative;
    padding: 60px 40px;
    border-radius: 20px;
    background: var(--primary-color);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.tools-section-wrapper::after {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(var(--white-color-rgb), 0.1);
    transform: skewX(-36deg);
    position: absolute;
    right: -140px;
    top: 0;
}

.tools-section-wrapper .payment-method-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--white-color);
    padding: 10px 15px;
    border-radius: 5px;
    transition: 0.5s;
}

.tools-section-container h3 {
    font-size: 24px;
    min-inline-size: max-content;
    max-width: 117px;
    width: 100%;
}

.payment-method-item-content h4 {
    min-inline-size: max-content;
    font-size: 18px;
    font-weight: 500;
}

.backend-container {
    background-color: rgb(243 244 246);
}

.mobile-famework {
    background-color: #eaeeff;
}

.front-end {
    background-color: #fbf0e5;
}

.others {
    background-color: #ebf4ef;
}

.tools-section-thumb {
    max-width: 32px;
    width: 100%;
    height: 22px;
    display: flex;
    align-items: center;
}

.tools-section-thumb img {
    width: 100%;
    height: 100%;
}

/*------------------------- tools-section ----------------------------*/

/*------------------------- showcasing ----------------------------*/
.showcasing {
    padding: 140px 0 140px;
    background: var(--bg-2);
}

.website {
    padding: 140px 0 0;
}

.website-list {
    margin: 30px 0;
    display: flex;
    /* align-items: center; */
    gap: 25px;
}

.website-list li {
    margin-bottom: 15px;
    font-size: 16px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.website-list li i {
    color: var(--primary-color);
}

.website-list li:last-child {
    margin-bottom: 0;
}

.website-left-content {
    margin-right: 50px;
}

.website-left-content .btn-1 {
    margin-top: 20px;
}

.website .board-container-image {
    height: 570px;
}

.website-image-container {
    height: 100%;
    display: flex;
    margin-right: 30px;
}

.website-2 .board-container-image {
    box-shadow: -30px 30px 0px rgb(92 92 240 / 27%);
}

.website-2 .website-left-content {
    margin-right: 0;
}

/* about */
.about {
    padding: 140px 0 0;
}

.message {
    padding: 140px 0;
}

.message .features-container {
    margin-bottom: 0;
}

.message .message-image {
    text-align: center;
}

.message .message-image img {
    width: 450px;
    border-radius: 10px;
}

.message .website-left-content {
    height: 100%;
    display: flex;
    align-items: center;
    margin-right: 0;
}

.website-left-content h4 {
    font-size: 34px;
    margin: 0 0 20px;
}

.message .website-left-content .website-left-content-inner i {
    font-size: 18px;
    color: var(--primary-color);
}

.message .website-left-content p {
    margin-left: 20px;
}

.website-left-content p {
    margin-bottom: 15px;
}

/*------------------------- showcasing ----------------------------*/

/* --------------------------- solution-demo ------------------------*/
.solution-demo {
    position: relative;
    padding: 140px 0 110px;
    background-color: #fafbfc;
}

.solution-demo-single {
    position: relative;
    border: 1px solid var(--border-2);
    background-color: var(--bg-2);
    border-radius: 42px;
    padding: 50px 35px 35px;
    width: 100%;
    margin-bottom: 30px;
    /* overflow: hidden; */
    transition: 0.5s;
    text-align: center;
    z-index: 1;
}

.solution-demo-single::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 42px;
    background: var(--gradient-color);
    opacity: 0;
    transition: 0.5s;
    z-index: -1;
}

.solution-demo-single:hover::after {
    opacity: 1;
}

.solution-demo-icon {
    max-width: 60px;
    width: 100%;
    height: 60px;
    border-radius: 50%;
    transition: 0.5s;
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    margin: auto;
}

.solution-demo-content {
    padding-top: 10px;
    transition: 0.5s;
}

.solution-demo-content h5 {
    font-size: 28px;
}

.solution-demo-icon img {
    width: 100%;
    height: 100%;
}

.solution-demo-content p {
    padding: 10px 0 20px;
}

.solution-demo-content .btn-1 {
    padding: 10px 25px !important;
    transition: 0.5s;
}

/* --------------------------- solution-demo ------------------------*/

/* --------------------------- feature-two ------------------------*/
.feature-two {
    padding: 140px 0 0;
}

.feature-two .col-lg-4 {
    margin-bottom: 24px;
}

.feature-two-single {
    position: relative;
    padding: 70px 40px 40px;
    border-radius: 20px;
    background: var(--bg-2);
    height: 100%;
    z-index: 1;
    position: relative;
    text-align: center;
}

.feature-two-single::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 20px;
    background: var(--gradient-color);
    opacity: 0;
    transition: 0.5s;
    z-index: -1;
}

.feature-two-single:hover::after {
    opacity: 1;
}

.feature-two-single-icon {
    max-width: 80px;
    width: 100%;
    height: 80px;
    background: var(--bage-soft-color);
    border: 1px solid var(--white-color);
    font-size: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    position: absolute;
    top: -40px;
    margin: 0 auto;
    right: 0;
    left: 0;
}

.feature-two-single h4 {
    margin-bottom: 20px;
}

.feature-two-single p {
    font-size: 18px;
}

/* --------------------------- feature-two ------------------------*/

/* --------------------------- testimonial ------------------------*/
.testimonial {
    padding: 110px 0 0;
}

.testimonial-single {
    position: relative;
    padding: 40px 40px;
    border-radius: 24px;
    border: 1px solid var(--border-2);
    margin-left: 1px;
    z-index: 1;
}

.testimonial-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-icon-1 {
    background: hsl(240deg 100% 90%);
}

.testimonial-icon-2 {
    background: hsl(2deg 100% 90%);
}

.testimonial-icon-3 {
    background: hsl(49deg 100% 90%);
}

.testimonial-title h4 {
    margin: 20px 0 40px;
}

.testimonial-description p {
    font-size: 18px;
    color: var(--text-color-2);
}

.testimonial-shape {
    position: absolute;
    right: 36px;
    bottom: 70px;
    z-index: -1;
}

.testimonial-info-box {
    margin-top: 48px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-info h6 {
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 18px;
}

.testimonial-info p {
    font-size: 16px;
    line-height: 24px;
    color: var(--text-color-2);
}

.testimonial-shape img,
.testimonial-cloent-image img {
    max-width: 40px;
    border-radius: 50%;
}

/* --------------------------- testimonial ------------------------*/

/* --------------------------- resorces ---------------------------- */
.resorces {
    padding: 120px 0 120px;
}

.resorces-single {
    position: relative;
    /* padding: 5px; */
    text-align: center;
    border: 1px solid var(--border-2);
    border-radius: 10px;
    margin-bottom: 30px;
    overflow: hidden;
    height: 200px;
}

.resorces-single::after {
    content: "";
    width: 100%;
    height: 100%;
    /* background: var(--gradient-color); */
    border-radius: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.resorces-image {
    position: relative;
    display: block;
    width: 100%;
    height: 200px;
    border-radius: 8px;
    transition: 0.3s;
    overflow: hidden;
    z-index: 1;
}

.resorces-image img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    margin-top: 45px;
}

.resorces-image::after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background-color: rgb(255 147 35 / 28%);
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transform: scale(0);
    transition: 0.3s;
}

.resorces-single-title {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    transition: 0.3s;
    z-index: 1;
}

.resorces-single-title h4 {
    color: var(--black-color);
    text-shadow: 0px 4px 4px rgba(255, 255, 255, 0.65);
    transition: 0.3s;
}

.resorces-single:hover .resorces-single-title {
    transform: translate(-50%, -100%);
}

.resorces-single:hover .resorces-image::after {
    opacity: 1;
    transform: scale(1);
}

.resorces-single:hover .resorces-single-title h4 {
    color: #5e6aa1;
    text-shadow: none;
}

/* --------------------------- resorces ---------------------------- */

/* --------------------------- pricing ---------------------------- */
.pricing {
    padding: 100px 0 100px;
    background: var(--bg-2);
}

.pricing-title {
    height: 100%;
    display: flex;
    align-items: center;
}

.pricing-title .common-title h2 {
    font-size: 40px !important;
    line-height: 60px;
}

.pricing-title h5 {
    margin-bottom: 20px;
}

.pricing-title p {
    margin-top: 20px;
}

.pricing-card {
    padding: 30px 30px;
    border-radius: 30px;
    border: 1px solid var(--border-2);
    background-size: cover;
    background-repeat: no-repeat;
    transition: 0.5s;
}

.pricing .pricing-card-popular {
    border: 1px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing .pricing-card-popular .pricing-card-title .popular-badge {
    display: inline-block;
    padding: 3px 20px;
    border-radius: 7px;
    font-weight: 600;
    color: var(--white-color);
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
    border-radius: 20px;
    position: absolute;
    top: -50px;
    right: 20px;
}

.pricing-card:hover {
    border: 1px solid var(--primary-color);
}

.pricing-card-title h5 {
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
    color: var(--black-color);
    margin-bottom: 8px;
}

.pricing-card-title h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 36px;
    color: var(--black-color);
    margin-top: 30px;
}

.pricing-card-title h2 sub {
    bottom: -0.1em;
    font-size: 24px;
    font-weight: 400;
}

.pricing-card-title {
    position: relative;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-2);
}

.pricing-card-list {
    margin: 30px 0 40px;
}

.pricing-card-list ul li {
    margin-bottom: 15px;
    font-size: 18px;
}

.pricing-card-list ul li:last-child {
    margin-bottom: 0;
}

.pricing-card-list ul li i {
    margin-right: 5px;
}

.pricing-card-list ul li.highlight i {
    color: var(--primary-color);
    font-weight: 500;
}

.pricing-card-title .bags {
    position: absolute;
    right: 30px;
    top: -48px;
}

.pricing-card-btn .btn-1 i {
    margin-left: 7px;
    font-weight: 500;
}

@media only screen and (max-width: 1200px) {
    .pricing-card {
        border-radius: 37px;
    }

    .pricing-card-list ul li {
        font-size: 16px;
    }
}

/* Tablet Layout: 768px. */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .pricing {
        padding: 100px 0 70px;
    }

    .pricing-card {
        border-radius: 50px;
        margin-bottom: 30px;
    }
}

/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {
    .pricing {
        padding: 100px 0 70px;
    }

    .pricing-card {
        border-radius: 50px;
        margin-bottom: 30px;
    }

    .pricing-card-title {
        text-align: center;
    }

    .pricing-card-btn {
        text-align: center;
    }

    .pricing-title .common-title h2 {
        font-size: 28px !important;
        line-height: 47px;
    }

    .pricing-card {
        padding: 30px 15px;
        border-radius: 20px;
    }
}

/* --------------------------- pricing ---------------------------- */

/* --------------------------- Enterprise ---------------------------- */
.enterprise {
    padding: 140px 0 0;
}

.enterprise-container {
    background: var(--gradient-color);
    padding: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--border-2);
}

.enterprise-right-container {
    max-width: 400px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 40px;
    background: var(--white-color);
    border-radius: 10px;
}

.enterprise-left-container p {
    color: var(--black-color);
    text-transform: uppercase;
}

.enterprise-left-container h3 {
    color: var(--black-color);
    font-size: 48px;
    margin: 20px 0 30px;
}

.enterprise-list {
    display: flex;
    align-items: center;
    gap: 50px;
}

.enterprise-list ul li {
    color: var(--black-color);
    font-size: 18px;
    margin-bottom: 20px;
}

.enterprise-list ul li:last-child {
    margin-bottom: 0;
}

.enterprise-list ul li i {
    margin-right: 5px;
}

.enterprise-right-container-inner h6 {
    color: var(--text-color-1);
    font-size: 18px;
    margin-bottom: 25px;
}

.enterprise-right-container-inner .btn-1 {
    width: 100%;
    text-align: center;
}

/* --------------------------- Enterprise ---------------------------- */

/* --------------------------- faq ---------------------------- */
.faq {
    padding: 120px 0 120px;
    position: relative;
}

.faq-container {
    position: relative;
}

.faq-container .accordion-item {
    background-color: var(--bg-2) !important;
    border: none !important;
    margin-bottom: 16px;
    border-radius: 8px;
    transition: 0.5s;
}

.faq-container .accordion-item:hover {
    transform: scaleX(1.05);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.faq-container .accordion-body {
    padding: 0 20px 20px 20px;
}

.faq-container .accordion-button {
    padding: 22px 22px !important;
    font-size: 20px !important;
    background-color: var(--bg-2) !important;
    font-weight: 600;
    line-height: 28px;
    border-radius: 8px !important;
}

.faq-container .accordion-button:focus {
    box-shadow: none !important;
}

.faq-container .accordion-button:not(.collapsed) {
    color: var(--bs-accordion-active-color);
    background-color: var(--bg-2) !important;
    box-shadow: none !important;
}

.faq-container .accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 8px !important;
    border-top-right-radius: 8px !important;
}

.faq-container .accordion-body p {
    font-size: 18px;
}

.faq-text {
    color: var(--text-color-2);
    margin-top: 30px;
    font-size: 18px;
}

.faq-text a {
    color: var(--black-color);
}

/* Tablet Layout: 768px. */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .faq {
        padding: 100px 0 100px;
    }
}

/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {
    .faq {
        padding: 80px 0 80px;
    }

    .faq-container .accordion-button {
        padding: 15px 10px !important;
        font-size: 16px !important;
        line-height: 25px;
    }
}

/* --------------------------- faq ---------------------------- */

/*------------------------- main-footer ----------------------------*/
.main-footer {
    position: relative;
    padding: 40px 0px 100px;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 30px;
    background: var(--gradient-color);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.footer-list ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-list ul li a {
    color: var(--text-color-1);
    font-size: 20px;
}

.footer-list ul li a:hover {
    color: var(--black-color);
}

.copyright {
    margin-top: 60px;
    text-align: center;
}

.copyright h6 {
    font-size: 20px;
    margin-bottom: 20px;
}

/*------------------------- main-footer ----------------------------*/

/*-------------------- text-fill-animation -----------------------------*/
[data-animation].data-title-fill:before,
[data-animation].data-title-fill:after,
[data-animation].data-title-fill {
    opacity: 1;
}

.data-title-fill {
    white-space: nowrap;
    color: transparent;
    position: relative;
    display: inline-block;
}

.data-title-fill:before,
.data-title-fill:after {
    content: attr(data-text);
    position: absolute;
    top: 50%;
    color: var(--text-color-1);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    -webkit-transition: 1s cubic-bezier(0.767, 0.01, 0.18, 1.01);
    -o-transition: 1s cubic-bezier(0.767, 0.01, 0.18, 1.01);
    transition: 1s cubic-bezier(0.767, 0.01, 0.18, 1.01);
    width: 0%;
    white-space: nowrap;
    overflow: hidden;
}

.data-title-fill:after {
    color: var(--black-color);
    -webkit-transition-delay: 0.4s;
    -o-transition-delay: 0.4s;
    transition-delay: 0.4s;
}

.data-title-fill.fill-anim:before,
.data-title-fill.fill-anim:after {
    width: 100%;
}

.tr-delay01.data-title-fill:after {
    -webkit-transition-delay: 0.5s !important;
    -o-transition-delay: 0.5s !important;
    transition-delay: 0.5s !important;
}

.tr-delay03.data-title-fill:after {
    -webkit-transition-delay: 0.6s !important;
    -o-transition-delay: 0.6s !important;
    transition-delay: 0.6s !important;
}

/*-------------------- text-fill-animation -----------------------------*/

.flexibility {
    background: hsl(49deg 100% 90%);
}

.design_quality {
    background: hsl(2deg 100% 90%);
}

.code_quality {
    background: hsl(240deg 100% 90%);
}

.customer_support {
    background: hsl(120deg 100% 90%);
}

.documentation_quality {
    background: hsl(30deg 100% 90%);
}

.feature_availability {
    background: hsl(190deg 100% 90%);
}

.bugs {
    background: hsl(350deg 85% 85%);

}

.customizability {
    background: hsl(280deg 100% 90%);
}

.other {
    background: hsl(60deg 100% 90%);
}

