@charset "UTF-8";
/*
Author        :
Author Uri    :
Template Name :
Version       : 1.0
*/
/*----------------------------------------------
[Table of contents]

01. Nav section start
02. Bottom Mobile, Tab nav section start
03. Hero section start
04. Service category section start
05. Location map section start
06. Featured section start
07. Destination section start
08. latest ads section start
09. Multiple search section start
10. Listing section start
11. Product details page start
12. Ad section2 start
13. Ad section3 start
14. Review section start
15. Posts page start
16. pricing section start
17. Faq section start
18. Blog section start
19. Newsletter section start
20. Footer section start
21. Copyright section start
22. Contact section start
23. Map section start
24. Login Signup section start
25. Blog details section start
26. Pagination section start
27. Error section start
----------------------------------------------*/
/*----------------------------------------------
Typography
----------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Oleo+Script:wght@400;700&display=swap");

:root {
    --heading-font: "Instrument Sans", sans-serif;
    --body-font: "Instrument Sans", sans-serif;
    --primary-color: 124, 58, 237;
    --body-color: 141, 141, 141;
    --soft-blue: 89, 86, 233;
    --heading-color: 16, 16, 15;
    --black: 16, 16, 15;
    --gray: 178, 178, 178;
    --light-gray: 207, 207, 207;
    --very-dark-gray: 51, 51, 51;
    --very-dark-gray2: 73, 73, 73;
    --light-grayish-blue: 243, 245, 247;
    --white: 255, 255, 255;
    --lime-green: 5 220 87;
    --soft-red: 216, 42, 104;
    --bright-red: 253, 38, 38;
    --orange: 255, 193, 7;
    --input-color: var(--bg-color2);
    --bg-color1: #ffffff;
    --bg-color2: #fafafa;
    --bg-color3: #10100f;
    --bg-color4: #efefef;
    --bg-color5: #f5f5f5;
    --bg-color6: #f4f4f4;
    --border-color1: #efefef;
    --border-color2: #8d8d8d;
    --border-color3: rgba(255, 255, 255, 0.06);
    --border-color4: #e3e3e3;
    --shadow1: 0 0.375rem 0.75rem rgba(140, 152, 164, 0.075);
    --shadow2: 0 0.1875rem 0.75rem rgba(140, 152, 164, 0.25);
    --shadow3: 0 0.6125rem 2.5rem 0.6125rem rgba(140, 152, 164, 0.175);
    --transition: all 0.3s ease-in-out;
}

/*----------------------------------------------
Reset section start
----------------------------------------------*/
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -webkit-appearance: textfield;
    appearance: textfield;
    -moz-appearance: textfield;
}

*,
*::after,
*::before {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

p {
    margin-bottom: 10px;
}

@media (max-width: 575px) {
    p {
        font-size: 15px;
        line-height: 26px;
    }
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

a:hover {
    text-decoration: none;
    color: rgb(var(--primary-color));
}

button {
    background: none;
    border: none;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--heading-font);
    font-weight: 500;
    color: rgb(var(--heading-color));
}

h1 {
    font-size: 80px;
    margin-bottom: 10px;
    line-height: 100px;
    letter-spacing: 0.8px;
}

@media (max-width: 1399px) {
    h1 {
        font-size: 70px;
        line-height: 80px;
    }
}

@media (max-width: 1199px) {
    h1 {
        font-size: 60px;
        line-height: 80px;
    }
}

@media (max-width: 991px) {
    h1 {
        font-size: 38px;
        line-height: 55px;
    }
}

@media (max-width: 460px) {
    h1 {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    h1 {
        line-height: 45px;
    }
}

h2 {
    font-size: 48px;
    margin-bottom: 5px;
    line-height: 70px;
}

@media (max-width: 991px) {
    h2 {
        font-size: 36px;
        line-height: 50px;
    }
}

@media (max-width: 767px) {
    h2 {
        font-size: 28px;
        line-height: 42px;
    }
}

h3 {
    font-size: 36px;
    margin-bottom: 5px;
}

@media (max-width: 991px) {
    h3 {
        font-size: 24px;
    }
}

h4 {
    font-size: 28px;
    margin-bottom: 5px;
    font-weight: 500;
    line-height: 40px;
}

@media (max-width: 991px) {
    h4 {
        font-size: 22px;
        line-height: 30px;
    }
}

h5 {
    font-size: 20px;
    margin-bottom: 5px;
    line-height: 30px;
}

h6 {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 0;
    font-family: var(--heading-font);
    color: rgb(var(--heading-color));
    font-weight: 500;
}

/* custom col  */

@media (max-width: 991px) {
    .custom-col-sm-6 {
        width: 50%;
    }
}

@media (max-width: 500px) {
    .custom-col-sm-6s {
        width: 100%;
    }
}

@media (max-width: 450px) {
    .custom-col-sm-6xs {
        width: 100% !important;
    }
}
/* custom col  */

img {
    max-width: 100%;
    height: auto;
    pointer-events: none;
    -o-object-fit: cover;
    object-fit: cover;
}

.fix {
    overflow: hidden;
}

figure {
    margin: 0;
}

.pb-48 {
    padding-bottom: 48px !important;
}

.logo {
    max-width: 130px;
    min-width: 120px;
}

.footer-logo {
    max-width: 130px;
    min-width: 120px;
}

body {
    font-family: var(--body-font);
    line-height: 1.4;
    line-height: 32px;
    color: rgb(var(--body-color));
    background-color: var(--bg-color1);
}

html {
    scroll-behavior: smooth;
}

textarea.form-control {
    height: initial;
    border-radius: 0;
}

textarea.form-control.two {
    border: 1px solid var(--border-color1);
    border-radius: 8px;
}

textarea.form-control.two:focus {
    border-color: rgb(var(--primary-color));
}

.form-label {
    color: rgb(var(--heading-color));
    text-transform: capitalize;
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 500;
    line-height: 26px;
}

.form-select {
    color: rgb(var(--body-color));
}

option {
    background-color: rgb(var(--bg-color1));
}

.form-control,
.form-select {
    border-radius: 0;
    background-color: var(--input-color);
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--border-color1);
    height: 56px;
    color: rgb(var(--heading-color));
    font-weight: 300;
    padding: 10px 20px;
}

.form-control::-moz-placeholder,
.form-select::-moz-placeholder {
    color: rgb(var(--body-color));
}

.form-control::placeholder,
.form-select::placeholder {
    color: rgb(var(--body-color));
}

.form-control:focus,
.form-select:focus {
    box-shadow: none;
    border-color: rgb(var(--primary-color));
    background-color: rgb(var(--bg-color1));
    color: rgb(var(--heading-color));
}

.form-control.two,
.form-select.two {
    border: 1px solid var(--border-color1);
    border-radius: 8px;
}

.form-control.two:focus,
.form-select.two:focus {
    border-color: rgb(var(--primary-color));
}

.form-control:disabled {
    background: #f2f2f2;
}

.form-check {
    line-height: 24px;
}

.form-check label,
.form-check-input {
    cursor: pointer;
}

.form-check-input:checked {
    background-color: rgb(var(--primary-color));
    border-color: rgb(var(--primary-color));
}

.form-check-input:focus {
    border-color: rgb(var(--primary-color));
    box-shadow: none;
}

html[dir="rtl"] .form-check {
    padding-right: 1.5em;
}

html[dir="rtl"] .form-check .form-check-input {
    float: right;
    margin-right: -1.5em;
}

.form-select {
    background-repeat: no-repeat;
}

html[dir="rtl"] .form-select {
    background-position: left 0.75rem center;
}

.input-group {
    height: 45px;
    border-radius: 8px;
}

.input-group-text {
    min-width: 45px;
    border: none;
    display: flex;
    justify-content: center;
    color: rgb(var(--primary-color));
    background-color: rgb(var(--primary-color), 0.1);
    cursor: pointer;
    gap: 5px;
}

/*----------------------------------------------
Select2 section start
----------------------------------------------*/
img.img-flag {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--border-color2);
}

span.select2.select2-container.select2-container--default {
    width: 100% !important;
}

.select2-container .select2-selection--single,
.select2-container .select2-selection--multiple {
    border: none;
    border-bottom: 1px solid var(--border-color1);
    height: 56px;
    display: flex;
    align-items: center;
    font-size: 15px;
    padding: 0.375rem 15px;
    border-radius: 0;
    background-color: transparent;
}

.select2-container .select2-selection--single:focus,
.select2-container .select2-selection--multiple:focus {
    border-color: rgb(var(--primary-color));
}

.select2-container .select2-dropdown {
    border: 1px solid var(--border-color1);
    background-color: var(--bg-color1);
    border-radius: 0 0 8px 8px;
}

.select2-container .select2-dropdown .select2-search__field {
    border-radius: 5px;
    border: 1px solid rgb(var(--primary-color));
    outline: 1px solid rgb(var(--primary-color));
}

.select2-container .select2-dropdown .select2-search__field {
    background-color: rgb(var(--bg-color1));
}

.select2-container .select2-dropdown .select2-search__field:focus-visible {
    box-shadow: none;
    border: 1px solid var(--border-color2);
}

.select2-results__option {
    color: rgb(var(--heading-color));
}

.select2-results__option span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.select2-container--default
.select2-results__option--highlighted.select2-results__option--selectable {
    background: rgb(var(--primary-color));
}

.select2-container--default .select2-results__option--selected {
    background: rgb(var(--primary-color));
    color: rgb(var(--white));
}

.select2-container--default .select2-results__option--selected:hover {
    background-color: rgb(var(--primary-color));
    color: rgb(var(--white));
}

.select2-container--default .select2-results > .select2-results__options {
    text-transform: capitalize;
    max-height: 300px;
}

.select2-container--default.select2-container--focus
.select2-selection--multiple {
    border: 1px solid rgb(var(--primary-color));
    box-shadow: 0 0 0 4px rgba(0, 141, 255, 0.1);
}

.select2-container--default .select2-selection--multiple {
    border: 1px solid var(--border-color2);
    height: 45px;
    display: flex;
    align-items: center;
    background-color: rgb(var(--bg-color1));
}

.select2-container--default
.select2-selection--single
.select2-selection__rendered {
    padding-right: 10px;
    text-transform: capitalize;
    color: rgb(var(--body-color));
    padding-left: 0;
}

.select2-container--default
.select2-selection--single
.select2-selection__rendered
span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.select2-container--default
.select2-selection--single
.select2-selection__arrow {
    top: auto;
}

.select2-container--default
.select2-selection--single
.select2-selection__arrow
b {
    border-color: rgb(var(--body-color)) transparent transparent transparent;
    border-width: 4px 4px 0 4px;
    margin-left: -10px;
}

.select2-container--default.select2-container--open
.select2-selection--single
.select2-selection__arrow
b {
    border-color: transparent transparent rgb(var(--primary-color)) transparent;
    border-width: 0 4px 4px 4px;
}

html[dir="rtl"]
.select2-container--default
.select2-selection--single
.select2-selection__arrow {
    left: 5px;
}

html[dir="rtl"]
.select2-container
.select2-selection--single
.select2-selection__rendered {
    text-align: right;
    width: 100%;
    padding-right: 0;
    padding-left: 10px;
}

html[dir="rtl"]
.select2-container--default
.select2-selection--single
.select2-selection__arrow
b {
    margin-left: -4px;
}

html[dir="rtl"]
.select2-container--default
.select2-selection--single
.select2-selection__rendered
span {
    flex-direction: row-reverse;
}

/*----------------------------------------------
Select2 end
----------------------------------------------*/
/*----------------------------------------------
Breadcrumb start
----------------------------------------------*/
.breadcrumb {
    display: inline-flex;
    justify-content: center;
    margin-bottom: 0;
    font-size: 16px;
}

.breadcrumb .breadcrumb-item {
    color: rgb(var(--white));
}

.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "\f105";
    color: rgb(var(--white));
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
}

.breadcrumb .breadcrumb-item.active {
    color: rgb(var(--white));
    text-transform: capitalize;
}

html[dir="rtl"] .breadcrumb-item + .breadcrumb-item::before {
    float: right;
    padding-left: var(--bs-breadcrumb-item-padding-x);
    transform: rotate(180deg);
}

/*----------------------------------------------
Breadcrumb end
----------------------------------------------*/
::-webkit-scrollbar {
    width: 4px;
    height: 6px;
}

::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgb(var(--primary-color), 0.8);
    visibility: hidden;
    opacity: 0;
}

:hover::-webkit-scrollbar-thumb {
    visibility: visible;
    opacity: 1;
}

body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-thumb {
    visibility: visible;
    opacity: 1;
}

body::-webkit-scrollbar-thumb:hover {
    background-color: rgb(var(--primary-color));
}

.owl-theme .owl-nav {
    margin-top: 20px;
    display: flex;
    justify-content: end;
}

.owl-theme .owl-nav .owl-prev,
.owl-theme .owl-nav .owl-next {
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    background: rgb(var(--primary-color)) !important;
    background-size: 200% auto !important;
    color: rgb(var(--white)) !important;
    font-size: 16px !important;
    transition: var(--transition);
    box-shadow: var(--shadow2);
}

.owl-theme .owl-nav .owl-prev:hover,
.owl-theme .owl-nav .owl-next:hover {
    background-position: center right !important;
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 5px;
    background: rgb(var(--primary-color));
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: rgb(var(--primary-color));
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots span {
    background: rgb(var(--primary-color));
    width: 30px;
    height: 5px;
}

.owl-theme .owl-dots .owl-dot span {
    transition: all 0.5s ease-in-out;
}

html[dir="rtl"] .owl-theme .owl-nav .owl-prev i {
    transform: rotate(180deg);
}

html[dir="rtl"] .owl-theme .owl-nav .owl-next i {
    transform: rotate(180deg);
}

@keyframes modalFadeInUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal {
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    background-color: rgb(var(--black), 0.1);
}

.modal-content {
    border: none;
    background-color: var(--bg-color1);
    border-radius: 12px;
    animation: modalFadeInUp 0.4s ease-out;
}

.modal-footer {
    padding: 16px 30px 20px;
}

.modal-header {
    border-bottom: 1px solid var(--border-color1);
    padding: 15px 30px;
}

.modal-header .modal-title {
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
}

.modal-footer {
    border-top: 1px solid var(--border-color1);
}

@media (min-width: 576px) {
    .modal-body {
        padding: 20px 30px;
    }
}

.promotional-modal .modal-content {
    border-radius: 16px;
    background: linear-gradient(145deg, #ffffff, #f3f3f3);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.promotional-modal .modal-body {
    padding: 16px;
}

.promotional-modal .img-box {
    background-color: var(--bg-color2);
    border-radius: 16px;
    display: block;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.promotional-modal .img-box:hover img {
    transform: scale(1.03);
}

.promotional-modal .img-box img {
    width: 100%;
    border-radius: 16px;
    aspect-ratio: 5/3;
    transition: var(--transition);
}

.promotional-modal .text-box {
    text-align: center;
}

.promotional-modal .text-box .title {
    padding: 20px 50px 4px;
    font-size: 20px;
    color: rgb(var(--heading-color));
    font-weight: 600;
}

.promotional-modal .text-box .title:hover {
    color: rgb(var(--primary-color));
}

.cmn-btn-close {
    font-size: 18px;
    width: 40px;
    min-width: 40px;
    height: 40px;
    padding: 0;
    margin: 0;
    border: 1px solid var(--border-color1);
    opacity: 1;
    box-shadow: none;
    border-radius: 6px;
    transition: background-color 0.3s ease-in-out;
    color: rgb(var(--body-color));
}

.cmn-btn-close:hover {
    background-color: rgb(var(--primary-color), 0.1);
    color: rgb(var(--primary-color));
}

.cmn-btn-close:focus {
    border-color: rgb(var(--primary-color));
    outline: 1px solid rgb(var(--primary-color)) !important;
}

.accordion-item {
    margin-bottom: 0;
    border-radius: 10px;
    border: none;
    color: rgb(var(--body-color));
    background-color: transparent;
    border-bottom: 1px solid var(--border-color1);
    border-radius: 0;
}

.accordion-button {
    color: rgb(var(--heading-color));
    font-weight: 500;
    font-size: 24px;
    border-radius: 10px !important;
    text-transform: capitalize;
    padding: 34px 0;
    background-color: transparent;
    gap: 10px;
    line-height: 32px;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    box-shadow: none;
    background: transparent;
    color: rgb(var(--primary-color));
}

.accordion-button::after {
    background: url(https://bug-finder.s3.ap-southeast-1.amazonaws.com/assets/v2/accordion/plus.png);
    width: 25px;
    height: 25px;
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    border: 1px solid rgb(var(--body-color));
}

.accordion-button:not(.collapsed)::after {
    background: url(https://bug-finder.s3.ap-southeast-1.amazonaws.com/assets/v2/accordion/minus.png);
    width: 25px;
    height: 25px;
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    border: 1px solid rgb(var(--body-color));
}

.accordion-body {
    padding: 0 20px 34px;
    max-width: 1097px;
}

@media (max-width: 991px) {
    .accordion-button {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .accordion-button {
        font-size: 18px;
        padding: 24px 0;
    }
}

html[dir="rtl"] .accordion-button::after {
    margin-left: 0;
    margin-right: auto;
}

.fw-medium {
    font-weight: 500;
}

.fs-18 {
    font-size: 18px;
}

@media (max-width: 767px) {
    .fs-5 {
        font-size: 16px !important;
    }
}

html[dir="rtl"] .text-end {
    text-align: left !important;
}

strong {
    font-weight: 600;
}

.swiper-button-next,
.swiper-button-prev {
    width: 40px;
    min-width: 40px;
    height: 40px;
    border: 1px solid var(--border-color1);
    border-radius: 50%;
    color: rgb(var(--body-color));
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--bg-color3);
    color: rgb(var(--white));
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

.swiper-pagination-bullet-active {
    width: 56px;
    border-radius: 6px;
    background-color: var(--bg-color3);
}

html[dir="rtl"] i {
    transform: rotateY(180deg);
}

/*----------------------------------------------
Reset section end
----------------------------------------------*/
/*----------------------------------------------
Reusable style section start
----------------------------------------------*/
@media (min-width: 1400px) {
    .container {
        max-width: 1520px;
    }
}

.language-box .dropdown-toggle {
    padding: 12px 20px;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    background-color: var(--bg-color2);
    border-radius: 60px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.language-box .dropdown-toggle:hover {
    background-color: rgb(var(--primary-color), 0.1);
}

.language-box .dropdown-toggle img {
    width: 20px;
    min-width: 20px;
    height: 20px;
    min-height: 20px;
    border-radius: 50%;
}

.language-box .dropdown-menu {
    padding: 0;
    border: none;
    border-radius: 10px;
    min-width: initial;
    box-shadow: var(--shadow1);
}

.language-box .dropdown-menu .dropdown-item {
    padding: 7px 15px;
    text-transform: capitalize;
    align-items: center;
    border-radius: 0;
}

.language-box .dropdown-menu .dropdown-item img {
    width: 25px;
    min-width: 25px;
    height: 25px;
    min-height: 25px;
    border-radius: 50%;
}

@media (max-width: 991px) {
    .language-box {
        display: flex;
        justify-content: center;
    }

    .dropdown-toggle.show::after {
        border-top: 0;
        border-bottom: 0.3em solid;
    }
}

.cmn-box {
    display: flex;
    align-items: center;
    -moz-column-gap: 60px;
    column-gap: 60px;
    row-gap: 20px;
}

.cmn-box:not(:last-child) {
    margin-bottom: 32px;
}

.cmn-box .icon-box {
    width: 80px;
    height: 80px;
}

.cmn-box .text-box .title {
    margin-bottom: 12px;
}

@media (max-width: 1199px) {
    .cmn-box {
        -moz-column-gap: 20px;
        column-gap: 20px;
    }
}

@media (max-width: 430px) {
    .cmn-box {
        flex-direction: column;
        text-align: center;
    }
}

.cmn-box2 {
    background-color: rgb(var(--primary-color), 0.05);
    border-radius: 20px;
    padding: 56px 32px;
}

.cmn-box2 .title {
    font-size: 28px;
    color: rgb(var(--heading-color));
    margin-bottom: 24px;
}

.text-underline {
    position: relative;
    z-index: 1;
    display: inline-flex;
}

.text-underline::after {
    background-position: bottom;
    background-repeat: no-repeat;
    bottom: -0.1em;
    content: "";
    display: block;
    height: 0.3em;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: -1;
}

.link {
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    font-size: 18px;
}

.link:hover {
    text-decoration: underline;
}

.link-box {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    border-radius: 10px;
    background-color: rgb(var(--primary-color), 0.1);
    font-size: 18px;
}

.link-underline {
    text-decoration: underline;
    cursor: pointer;
}

.link-underline:hover {
    text-decoration: underline;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box .search-btn {
    position: absolute;
    background-color: rgb(var(--primary-color));
    width: 45px;
    height: 90%;
    border-radius: 5px;
    right: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-box .search-btn i {
    color: rgb(var(--white));
    font-size: 18px;
}

html[dir="rtl"] .search-box .search-btn {
    left: 2px;
    right: auto;
}

html[dir="rtl"] .search-box .search-btn i {
    transform: rotateY(180deg);
}

html[dir="rtl"] .search-box .form-control {
    padding-right: 10px;
    padding-left: 50px;
}

.search-box2 {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 650px;
    margin: 0 auto;
}

.search-box2.active {
    position: relative;
    z-index: 99999;
}

.search-box2.active .search-result {
    opacity: 1;
    visibility: visible;
    display: block;
}

.search-box2 .form-control {
    background-color: var(--bg-color1);
    border-radius: 4px;
    height: 40px;
    border-radius: 10px;
    padding: 10px 60px 10px 20px;
    height: 60px;
}

.search-box2 .form-control:focus {
    outline: 1px solid rgb(var(--primary-color));
}

.search-box2 .search-btn {
    transition: var(--transition);
    position: absolute;
    right: 6px;
    background-color: rgb(var(--primary-color));
    height: calc(100% - 12px);
    border-radius: 10px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(var(--white));
    text-transform: capitalize;
    gap: 10px;
    font-size: 16px;
}

.search-box2 .search-btn:hover {
    color: rgb(var(--white));
}

.search-box2 .search-result {
    position: absolute;
    left: 0;
    top: calc(100% + 2px);
    width: 100%;
    background-color: var(--bg-color1);
    box-shadow: var(--shadow2);
    border-radius: 10px;
    z-index: 1;
    color: var(--body-color);
    max-height: 330px;
    overflow: auto;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.search-box2 .search-result .search-item {
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.2;
    cursor: pointer;
}

.search-box2 .search-result .search-item:hover {
    background-color: rgb(var(--light-grayish-blue));
}

.search-box2 .search-result .search-item .icon-box {
    font-size: 18px;
    color: rgb(var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    min-width: 35px;
}

.search-box2 .search-result .search-item .img-box {
    width: 45px;
    height: 45px;
    min-width: 45px;
}

.search-box2 .search-result .search-item .img-box img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.search-box2 .search-result .search-item .title {
    font-size: 16px;
    text-transform: capitalize;
    color: rgb(var(--heading-color));
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    font-weight: 500;
}

.search-box2 .search-result .search-item .sub-title {
    margin-top: 5px;
    font-size: 13px;
    font-weight: 600;
    text-transform: capitalize;
    color: rgb(var(--heading-color));
    background-color: rgb(var(--primary-color), 0.2);
    padding: 2px 5px;
    border-radius: 9999px;
    display: inline-flex;
}

.search-box2 .search-result .search-item .price {
    font-size: 15px;
    display: flex;
    align-items: center;
    font-weight: 500;
    gap: 5px;
}

.search-box2 .search-result .search-item .original-price.line-through {
    text-decoration: line-through;
}

.search-box2 .search-result .search-item .promo-price {
    background-color: rgb(var(--primary-color));
    border-radius: 9999px;
    padding: 2px 5px;
    color: rgb(var(--white));
}

.search-box2 .search-result .search-item:not(:last-child) {
    border-bottom: 1px solid var(--border-color1);
}

.search-box2 .search-result .recent-clear {
    border-bottom: 1px solid var(--border-color1);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: capitalize;
    padding: 10px 20px;
}

html[dir="rtl"] .search-box2 .form-control {
    padding: 10px 20px 10px 60px;
}

html[dir="rtl"] .search-box2 .search-btn {
    right: auto;
    left: 6px;
}

html[dir="rtl"] .search-box2 .search-btn i {
    transform: rotate(90deg);
}

.search-box3 {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box3 .form-control {
    padding: 6px 16px 6px 45px;
    background-color: var(--bg-color1);
}

.search-box3 .form-control:focus {
    border-bottom: 1px solid rgb(var(--primary-color));
}

.search-box3 .search-btn {
    transition: var(--transition);
    position: absolute;
    left: 16px;
    height: calc(100% - 12px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
    font-size: 16px;
}

html[dir="rtl"] .search-box3 .form-control {
    padding: 6px 45px 6px 12px;
}

html[dir="rtl"] .search-box3 .search-btn {
    left: auto;
    right: 16px;
}

/*----------------------------------------------
Offcanvas section start
----------------------------------------------*/
.offcanvas {
    z-index: 99999;
    background-color: var(--bg-color1);
}

.offcanvas.custom-offcanvas {
    width: 500px !important;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.offcanvas.custom-offcanvas .offcanvas-header {
    padding: 16px 16px 5px;
}

.offcanvas.custom-offcanvas .offcanvas-body {
    padding: 0 30px 16px;
}

.offcanvas .accordion-button {
    font-size: 16px;
    font-weight: 500;
}

.offcanvas-footer {
    padding: 20px 30px;
    border-top: 1px solid var(--border-color2);
    display: flex;
    justify-content: space-between;
}

/*----------------------------------------------
Offcanvas end
----------------------------------------------*/
.shape2 {
    position: absolute;
    z-index: -1;
    right: 0;
    top: 0;
}

.shape3 {
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: 0;
}

.ellipse-blur-1 {
    width: 1220px;
    height: 1220px;
    border-radius: 50%;
    position: absolute;
    z-index: -1;
    background: radial-gradient(
        50% 50% at 50% 50%,
        rgba(124, 58, 237, 0) 0%,
        rgba(124, 58, 237, 0.12) 0%,
        rgba(124, 58, 237, 0) 100%
    );
}

.ellipse-blur-2 {
    width: 1220px;
    height: 1220px;
    border-radius: 50%;
    position: absolute;
    z-index: -1;
    background: radial-gradient(
        50% 50% at 50% 50%,
        rgba(72, 224, 104, 0) 0%,
        rgba(72, 224, 104, 0.12) 0%,
        rgba(119, 233, 143, 0) 100%
    );
}

.section-header {
    margin-bottom: 60px;
}

@media (max-width: 767px) {
    .section-header {
        margin-bottom: 40px;
    }
}

.top-right-radius-0 {
    border-top-right-radius: 0 !important;
}

.top-left-radius-0 {
    border-top-left-radius: 0 !important;
}

.bottom-right-radius-0 {
    border-bottom-right-radius: 0 !important;
}

.bottom-left-radius-0 {
    border-bottom-left-radius: 0 !important;
}

.highlight {
    color: rgb(var(--primary-color));
    display: inline-block;
}

.highlight-bg {
    background-color: rgb(var(--primary-color)) !important;
}

.body-color {
    color: rgb(var(--body-color));
}

.highlight-title {
    background-color: var(--yellow);
    padding: 3px 0 5px 10px;
}

.bg-highlight {
    background: rgb(var(--primary-color)) !important;
}

.text-gradient {
    background-image: linear-gradient(90deg, #47beb9, #ddcd86);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cmn-btn {
    background-color: rgb(var(--primary-color));
    color: rgb(var(--white));
    padding: 0 24px;
    transition: var(--transition);
    font-size: 16px;
    display: inline-flex;
    justify-content: center;
    text-transform: capitalize;
    gap: 5px;
    font-weight: 500;
    border-radius: 4px;
}

.cmn-btn:hover {
    color: rgb(var(--white));
}

.cmn-btn:hover .btn-wrapper .main-text {
    transform: translateY(-130%) translateZ(0);
}

.cmn-btn:hover .btn-wrapper .hover-text {
    transform: translateY(0) translateZ(0);
}

.cmn-btn .btn-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    pointer-events: none;
    gap: 8px;
    height: 50px;
}

.cmn-btn .btn-wrapper .btn-single {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    pointer-events: none;
    gap: 8px;
    height: 50px;
}

.cmn-btn .btn-wrapper .main-text {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: 0.5s;
}

.cmn-btn .btn-wrapper .hover-text {
    position: absolute;
    left: 0;
    transform: translateY(130%) translateZ(0);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: 0.5s;
}

.cmn-btn2 {
    background-color: rgb(var(--black));
    color: rgb(var(--white));
    padding: 0 24px;
    transition: var(--transition);
    font-size: 16px;
    display: inline-flex;
    justify-content: center;
    text-transform: capitalize;
    gap: 5px;
    font-weight: 500;
    border-radius: 4px;
    white-space: nowrap;
}

.cmn-btn2:hover {
    color: rgb(var(--white));
}

.cmn-btn2:hover .btn-wrapper .main-text {
    transform: translateY(-130%) translateZ(0);
}

.cmn-btn2:hover .btn-wrapper .hover-text {
    transform: translateY(0) translateZ(0);
}

.cmn-btn2 .btn-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    pointer-events: none;
    gap: 8px;
    height: 45px;
}

.cmn-btn2 .btn-wrapper .btn-single {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    pointer-events: none;
    gap: 8px;
    height: 45px;
}

.cmn-btn2 .btn-wrapper .main-text {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: 0.5s;
}

.cmn-btn2 .btn-wrapper .hover-text {
    position: absolute;
    left: 0;
    transform: translateY(130%) translateZ(0);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: 0.5s;
}

.cmn-btn3 {
    background-color: var(--bg-color4);
    position: relative;
    z-index: 1;
    border: 1px solid var(--border-color1);
    padding: 0 20px;
    transition: var(--transition);
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    text-transform: capitalize;
    gap: 5px;
    border-radius: 4px;
    color: rgb(var(--heading-color));
}

.cmn-btn3:hover {
    color: rgb(var(--heading-color));
}

.cmn-btn3:hover .btn-wrapper .main-text {
    transform: translateY(-130%) translateZ(0);
}

.cmn-btn3:hover .btn-wrapper .hover-text {
    transform: translateY(0) translateZ(0);
}

.cmn-btn3 .btn-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    pointer-events: none;
    gap: 8px;
    height: 46px;
}

.cmn-btn3 .btn-wrapper .btn-single {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    pointer-events: none;
    gap: 8px;
    height: 46px;
}

.cmn-btn3 .btn-wrapper .main-text {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: 0.5s;
}

.cmn-btn3 .btn-wrapper .hover-text {
    position: absolute;
    left: 0;
    transform: translateY(130%) translateZ(0);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: 0.5s;
}

.cmn-btn4 {
    color: rgb(var(--heading-color));
    transition: var(--transition);
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
    gap: 5px;
    font-weight: 500;
    position: relative;
}

.cmn-btn4::after {
    position: absolute;
    content: "";
    width: 80%;
    height: 2px;
    background-color: rgb(var(--black));
    left: 0;
    top: 100%;
    transition: width 0.28s cubic-bezier(0.47, 0, 0.745, 0.715);
}

.cmn-btn4:hover {
    color: rgb(var(--heading-color));
}

.cmn-btn4:hover::after {
    width: 100%;
}

.cmn-btn5 {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.cmn-btn5:hover .text {
    color: rgb(var(--primary-color));
}

.cmn-btn5 i:first-child {
    width: 60px;
    height: 60px;
    border: 2px solid rgba(141, 141, 141, 0.2);
    font-size: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.cmn-btn5 i:last-child {
    width: 28px;
    height: 28px;
    background-color: rgb(var(--primary-color));
    color: rgb(var(--white));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -10px;
    font-size: 14px;
}

.cmn-btn5 .text {
    font-size: 18px;
    text-decoration: underline;
    color: rgb(var(--heading-color));
    font-weight: 500;
    letter-spacing: 0.18px;
}

html[dir="rtl"] .hero-section .top-box .right-side .cmn-btn5 {
    margin-left: auto;
    margin-right: -170px;
}

html[dir="rtl"] .cmn-btn5 i {
    transform: rotateY(180deg);
}

@media (max-width: 767px) {
    html[dir="rtl"] .hero-section .top-box .right-side .cmn-btn5 {
        margin-right: 0;
    }
}

.cmn-btn6 {
    border-radius: 9999px;
    border: 1px solid rgba(124, 58, 237, 0.16);
    background: rgba(124, 58, 237, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px;
    line-height: normal;
    font-weight: 500;
    gap: 10px;
    transition: var(--transition);
}

.cmn-btn6 .left-side .highlight {
    text-decoration: underline;
}

.cmn-btn6 .right-side i {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgb(var(--white));
    color: rgb(var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1199px) {
    .cmn-btn6 .right-side {
        display: none;
    }
}

.login-btn {
    display: flex;
    padding: 10px 20px;
    text-transform: capitalize;
    transition: var(--transition);
    color: rgb(var(--primary-color));
    border-radius: 12px;
    font-family: var(--heading-font);
    gap: 5px;
    font-size: 14px;
    font-weight: 600;
}

.login-btn:hover {
    color: rgb(var(--primary-color));
    background-color: rgba(163, 163, 163, 0.2);
}

@media (max-width: 575px) {
    .login-btn {
        padding: 5px;
        height: 40px;
        width: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgb(var(--primary-color));
        color: rgb(var(--white));
    }
}

.register-btn {
    padding: 7px 20px;
    transition: var(--transition);
    font-size: 16px;
    color: rgb(var(--primary-color));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
    gap: 5px;
    border-radius: 5px;
    font-weight: 500;
    border: 1px solid rgb(var(--primary-color));
}

.register-btn:hover {
    background-color: rgb(var(--primary-color), 0.8);
    color: rgb(var(--white));
}

.social-btn {
    background: var(--bg-color1);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--border-color1);
    transition: var(--transition);
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
    gap: 5px;
    font-weight: 500;
    color: rgb(var(--heading-color));
}

.social-btn:hover {
    color: rgb(var(--primary-color));
    box-shadow: var(--shadow2);
}

.social-btn img {
    width: 20px;
}

.location-btn {
    background-color: rgb(var(--white));
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-align: start;
}

.location-btn i {
    font-size: 20px;
    color: rgb(var(--primary-color));
}

.location-btn .text {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border-radius: 999px;
    height: 40px;
    width: 40px;
    min-width: 40px;
    padding: 6px;
    background-color: rgb(var(--white));
    transition: var(--transition);
}

.action-btn:hover {
    background-color: rgb(var(--white), 0.8);
}

.action-btn.invite {
    width: auto;
    padding: 8px 12px;
}

.action-btn2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 999px;
    height: 40px;
    width: 40px;
    min-width: 40px;
    padding: 6px;
    transition: var(--transition);
    font-size: 20px;
}

.action-btn2.active {
    color: rgb(var(--primary-color));
}

.action-btn2:hover {
    background-color: rgb(var(--white), 0.1);
}

@media (max-width: 575px) {
    .nav-login-btn .text-box {
        display: none;
    }

    .nav-login-btn .icon-box {
        width: 40px;
        height: 40px;
    }
}

.nav-cart-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--bg-color2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.nav-cart-btn:hover {
    background-color: rgb(var(--primary-color), 0.1);
}

@media (max-width: 575px) {
    .nav-cart-btn {
        width: 40px;
        height: 40px;
    }
}

.back-btn {
    text-transform: capitalize;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 8px;
}

.back-btn:hover {
    transition: var(--transition);
    background-color: rgb(var(--light-grayish-blue));
}

html[dir="rtl"] .back-btn i {
    transform: rotate(180deg);
}

.view-all-btn {
    text-transform: capitalize;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.view-all-btn:hover {
    transition: var(--transition);
    text-decoration: underline;
}

html[dir="rtl"] .back-btn i {
    transform: rotate(180deg);
}

/* .round-btn {
    position: relative;
    overflow: hidden;
    width: 128px;
    min-width: 128px;
    height: 128px;
    border-radius: 50%;
    border: 1px solid var(--border-color1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    z-index: 1;
    transition: all 0.5s ease-in-out;
    padding: 10px;
    font-size: 16px;
    text-transform: capitalize;
}

.round-btn i {
    transform: rotate(45deg);
}

.round-btn:hover {
    color: rgb(var(--white));
    z-index: 1;
    position: relative;
}

.round-btn .fill {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    color: rgb(var(--white));
    border-radius: 50%;
    transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
    transform: translate(-50%, -50%);
    background: rgb(var(--primary-color));
    z-index: -1;
}

.round-btn:hover .fill {
    width: 225%;
    height: 562.5px;
    z-index: -1;
} */

html[dir="rtl"] .round-btn i {
    transform: rotate(-45deg);
}

.round-btn-sm {
    position: relative;
    overflow: hidden;
    width: 45px;
    min-width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgb(var(--black));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: var(--transition);
    color: rgb(var(--heading-color));
    font-size: 16px;
}

.round-btn-sm:hover {
    background-color: rgb(var(--black));
    color: rgb(var(--white));
    z-index: 1;
    position: relative;
}

.round-btn-sm2 {
    position: relative;
    overflow: hidden;
    width: 45px;
    min-width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: var(--transition);
    color: rgb(var(--heading-color));
    font-size: 16px;
}

.round-btn-sm2:hover {
    border: 1px solid rgb(var(--black));
}

.round-box-content {
    width: 172px;
    height: 172px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    position: relative;
    font-weight: 400;
}

.round-box-content .inner-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 78px;
    height: 78px;
    padding: 10px;
    border-radius: 50%;
}

.round-box-content .inner-icon i {
    font-size: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: rgb(var(--light-gray));
}

.round-box-content2 {
    width: 132px;
    height: 132px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    position: relative;
    font-weight: 400;
    color: rgb(var(--heading-color));
}

.round-box-content2:hover {
    color: rgb(var(--heading-color));
}

.round-box-content2:hover .curved-circle2 {
    animation-play-state: paused;
}

.round-box-content2 .curved-circle2 {
    text-transform: uppercase;
    animation: rotate 20s linear infinite;
}

.round-box-content2 .inner-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 78px;
    height: 78px;
    padding: 10px;
    border: 1px solid var(--border-color1);
    border-radius: 50%;
}

.round-box-content2 .inner-icon i {
    font-size: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: rgb(var(--white));
    background-color: rgb(var(--primary-color));
}

.kew-btn {
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    justify-content: space-between;
    transition: var(--transition);
    gap: 10px;
}

.kew-btn:hover {
    color: rgb(var(--primary-color));
}

.kew-btn:hover .kew-text {
    color: rgb(var(--primary-color));
}

.kew-btn:hover .kew-arrow {
    border-color: rgb(var(--primary-color));
}

.kew-btn:hover .kew-arrow .kt-two {
    left: 100px;
}

.kew-btn:hover .kew-arrow .kt-one {
    left: 10px;
}

.kew-btn .kew-text {
    color: rgb(var(--heading-color));
    text-decoration: underline;
    transition: var(--transition);
}

.kew-btn .kew-arrow {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    transform: rotate(-40deg);
    border: 1px solid var(--border-color1);
}

.kew-btn .kew-arrow .kt-one,
.kew-btn .kew-arrow .kt-two {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.5s;
}

.kew-btn .kew-arrow .kt-two {
    left: 10px;
}

.kew-btn .kew-arrow .kt-one {
    left: -30px;
}

html[dir="rtl"] .kew-btn .kew-arrow {
    transform: rotate(215deg);
    margin-left: 0;
    margin-right: -4px;
}

html[dir="rtl"] .kew-btn .kew-arrow i {
    transform: rotate(0);
}

.delete-btn {
    position: relative;
    background-color: rgb(var(--soft-red));
    padding: 8px 15px;
    border-radius: 9999px;
    transition: var(--transition);
    font-size: 16px;
    color: rgb(var(--white));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    text-transform: capitalize;
    gap: 5px;
}

.delete-btn:hover {
    color: rgb(var(--white));
    background-color: rgb(var(--soft-red), 0.8);
}

.action-btn-primary {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    background-color: rgb(var(--primary-color));
    line-height: initial;
    color: rgb(var(--white));
    display: flex;
}

.action-btn-primary:hover {
    color: rgb(var(--white));
    box-shadow: 0 3px 6px -2px rgba(0, 140, 255, 0.25);
}

.action-btn-secondary {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    background-color: rgb(var(--white));
    line-height: initial;
    color: #677788;
    border: 1px solid var(--border-color1);
    transition: var(--transition);
}

.action-btn-secondary:hover {
    color: rgb(var(--primary-color));
    background-color: rgb(var(--white));
    box-shadow: 0 3px 6px -2px rgba(140, 152, 164, 0.25);
}

.action-btn-secondary.show {
    box-shadow: 0 3px 6px -2px rgba(140, 152, 164, 0.25);
}

.add-place-btn {
    border: 1px dashed var(--border-color2);
    padding: 24px;
    width: 100%;
    border-radius: 10px;
}

.expand-compressed-btn {
    text-decoration: underline;
    font-weight: 500;
    font-size: 16px;
    color: rgb(var(--heading-color));
}

.expand-compressed-btn:hover {
    color: rgb(var(--heading-color), 0.8);
}

.remove-btn {
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(var(--white));
    color: rgb(var(--body-color));
    font-size: 18px;
}

.remove-btn:hover {
    color: rgb(var(--body-color));
}

/*----------------------------------------------
Alerts section start
----------------------------------------------*/
.alert {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 15px;
    border-left: 15px solid;
}

.alert .icon-area i {
    font-size: 30px;
    margin-right: 15px;
}

.alert .title {
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 600;
}

.alert .title {
    font-size: 18px;
}

.alert .title,
.alert .description {
    color: rgb(var(--heading-color));
}

.alert-dismissible .btn-close {
    position: absolute;
    top: 50%;
    right: 10px;
    z-index: 2;
    transform: translateY(-50%);
    padding: 0;
    background: none;
    height: initial;
    width: initial;
}

.alert-dismissible .btn-close i {
    font-size: 24px;
}

.alert-success {
    color: #3ac279;
    background: #c5f7dc;
    border-color: #c5f7dc;
    border-left-color: #3ac279;
}

.alert-success .btn-close {
    color: #3ac279;
}

.alert-danger {
    color: #e9594c;
    background: #ffcfcb;
    border-color: #ffcfcb;
    border-left-color: #e9594c;
}

.alert-danger .btn-close {
    color: #e9594c;
}

.alert-warning {
    color: #e89f29;
    background: #ffe8c3;
    border-color: #ffe8c3;
    border-left-color: #e89f29;
}

.alert-warning .btn-close {
    color: #e89f29;
}

.alert-message {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #fcf2e3;
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 12px;
    color: rgb(var(--heading-color));
    font-weight: 500;
}

.alert-message i {
    color: rgb(var(--orange));
    font-size: 16px;
}

.dark-theme .alert-message {
    background-color: #a38558;
}

.alert-box {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 20px;
    background-color: rgb(var(--primary-color), 0.1);
    border-radius: 9999px;
}

.alert-box .text-box {
    font-size: 12px;
}

.alert-box i {
    color: rgb(var(--primary-color));
}

/*----------------------------------------------
Alerts end
----------------------------------------------*/
/*----------------------------------------------
Cmn tab section start
----------------------------------------------*/
.cmn-tabs .nav-pills {
    row-gap: 4px;
    -moz-column-gap: 4px;
    column-gap: 4px;
    border-radius: 8px;
    background-color: var(--bg-color5);
    padding: 6px;
}

.cmn-tabs .nav-pills .nav-link {
    padding: 12px 24px;
    text-transform: capitalize;
    font-family: var(--heading-font);
    color: rgb(var(--white), 0.85);
    color: rgb(var(--heading-color));
    width: 100%;
    border-radius: 6px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-weight: 500;
    border: none;
    line-height: 22px;
}

.cmn-tabs .nav-pills .nav-link.active {
    opacity: 1;
    background-color: var(--bg-color1);
    color: rgb(var(--heading-color));
}

.cmn-tabs .nav-pills .nav-link .count {
    position: relative;
    top: -6px;
    padding: 0px 4px;
    border-radius: 4px;
    color: rgb(var(--white));
    font-size: 12px;
}

/*----------------------------------------------
Cmn tab section end
----------------------------------------------*/
/*----------------------------------------------
Cmn tab2 section start
----------------------------------------------*/
.cmn-tabs2 {
    background-color: var(--bg-color6);
}

.cmn-tabs2 .nav-pills {
    gap: 10px;
    background-color: var(--bg-color1);
    padding: 8px;
    border-radius: 16px;
}

.cmn-tabs2 .nav-pills .nav-item {
    flex-grow: 1;
}

.cmn-tabs2 .nav-pills .nav-link {
    color: rgb(var(--heading-color));
    opacity: 0.9;
    font-size: 16px;
    transition: var(--transition);
    border-radius: 8px;
    border-bottom: 1px solid transparent;
    padding: 12px;
    text-transform: capitalize;
    width: 100%;
}

.cmn-tabs2 .nav-pills .nav-link.active,
.cmn-tabs2 .nav-pills .nav-link:hover {
    opacity: 1;
    background-color: var(--bg-color2);
}

/*----------------------------------------------
Cmn tab2 end
----------------------------------------------*/
@keyframes jkit-ripple {
    70% {
        box-shadow: 0 0 0 15px currentColor;
        opacity: 0;
    }

    100% {
        box-shadow: 0 0 0 0 currentColor;
        opacity: 0;
    }
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.video-play-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: rgb(var(--primary-color));
    border-radius: 50%;
    box-shadow: 0 0 0 0 currentColor;
    animation: jkit-ripple 1.5s infinite;
    opacity: 0.6;
    z-index: -1;
}

.video-play-btn i {
    color: rgb(var(--white));
    background: rgb(var(--primary-color));
    height: 98px;
    width: 98px;
    font-size: 30px;
    transition: var(--transition);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .video-play-btn i {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
}

.video-play-btn2 {
    position: absolute;
    z-index: 1;
    top: 86px;
    left: 122px;
}

.video-play-btn2::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: rgb(var(--white));
    border-radius: 50%;
    box-shadow: 0 0 0 0 currentColor;
    animation: jkit-ripple 1.5s infinite;
    opacity: 0.6;
    z-index: -1;
}

.video-play-btn2 i {
    color: rgb(var(--white));
    height: 46px;
    width: 46px;
    font-size: 20px;
    transition: var(--transition);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(var(--white));
}

section {
    padding: 100px 0;
}

@media (max-width: 991px) {
    section {
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    section {
        padding: 50px 0;
    }
}

.cmn-para-text {
    max-width: 700px;
    font-size: 16px;
}

.section-title {
    margin-bottom: 24px;
}

.section-subtitle {
    position: relative;
    display: flex;
    align-items: center;
    text-transform: capitalize;
    margin-bottom: 20px;
    font-family: var(--heading-font);
    font-weight: 500;
    gap: 11px;
    font-size: 16px;
    line-height: 26px;
}

@media (max-width: 767px) {
    .section-subtitle {
        display: flex;
        align-items: center;
        justify-content: center !important;
    }
}


.section-subtitle .circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgb(var(--primary-color));
}

.section-subtitle2 {
    position: relative;
    display: inline-flex;
    align-items: center;
    text-transform: capitalize;
    margin-bottom: 32px;
    color: rgb(var(--heading-color));
    font-family: var(--heading-font);
    gap: 4px;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 24px;
    border-radius: 8px;
    border: 1px solid rgba(124, 58, 237, 0.12);
    background-color: rgba(124, 58, 237, 0.04);
    line-height: 26px;
}

.section-subtitle2 i:first-child {
    font-size: 12px;
    color: rgb(var(--white));
    width: 24px;
    min-width: 24px;
    height: 24px;
    background-color: rgb(var(--soft-blue));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-subtitle2 i:last-child {
    font-size: 14px;
    color: rgb(var(--soft-blue));
}

@media (max-width: 991px) {
    .section-subtitle2 {
        margin-bottom: 20px;
        font-size: 14px;
        padding: 6px 20px;
    }

    .section-subtitle2 i:first-child {
        width: 20px;
        min-width: 20px;
        height: 20px;
        font-size: 10px;
    }
}

html[dir="rtl"] .section-subtitle2 i {
    transform: rotateY(180deg);
}

.social-box {
    display: flex;
    gap: 16px;
}

.social-box a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    min-width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--bg-color4);
    color: rgb(var(--heading-color));
}

.social-box a:hover {
    background-color: rgb(var(--primary-color), 0.2);
    color: rgb(var(--primary-color));
}

.star ul li i {
    color: rgb(var(--primary-color));
}

.star-list li .active {
    color: rgb(var(--orange));
}

.opacity {
    opacity: 0.5;
}

.badge {
    position: relative;
    font-weight: 600;
    text-transform: uppercase;
    padding: 5px;
    border-radius: 8px;
    padding-left: 20px;
    text-transform: capitalize !important;
}

.badge::before {
    position: absolute;
    height: 6px;
    width: 6px;
    border-radius: 50%;
    content: "";
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
}

html[dir="rtl"] .badge {
    margin-right: 8px;
    margin-left: 0;
}

.badge.text-bg-primary {
    color: RGBA(13, 110, 253) !important;
    background-color: RGBA(13, 110, 253, var(--bs-bg-opacity, 0.1)) !important;
}

.badge.text-bg-primary::before {
    background-color: RGBA(13, 110, 253) !important;
}

.badge.text-bg-secondary {
    color: RGBA(108, 117, 125) !important;
    background-color: RGBA(108, 117, 125, var(--bs-bg-opacity, 0.1)) !important;
}

.badge.text-bg-secondary::before {
    background-color: RGBA(108, 117, 125) !important;
}

.badge.text-bg-success {
    color: rgb(0, 211, 144) !important;
    background-color: RGBA(0, 211, 144, var(--bs-bg-opacity, 0.1)) !important;
}

.badge.text-bg-success::before {
    background-color: RGBA(0, 211, 144) !important;
}

.badge.outline-success {
    color: RGBA(0, 211, 144) !important;
    border: 1px solid RGBA(0, 211, 144, var(--bs-bg-opacity, 1)) !important;
}

.badge.outline-success::before {
    background-color: RGBA(0, 211, 144) !important;
}

.badge.text-bg-danger {
    color: rgb(255, 99, 125) !important;
    background-color: RGBA(255, 99, 125, var(--bs-bg-opacity, 0.1)) !important;
}

.badge.text-bg-danger::before {
    background-color: RGBA(255, 99, 125) !important;
}

.badge.outline-danger {
    color: rgb(255, 99, 125) !important;
    border: 1px solid RGBA(255, 99, 125, var(--bs-bg-opacity, 1)) !important;
}

.badge.outline-danger::before {
    background-color: RGBA(255, 99, 125) !important;
}

.badge.text-bg-warning {
    color: RGBA(255, 193, 7) !important;
    opacity: 1;
    background-color: RGBA(255, 193, 7, var(--bs-bg-opacity, 0.1)) !important;
}

.badge.text-bg-warning::before {
    background-color: RGBA(255, 193, 7) !important;
}

.badge.text-bg-info {
    color: rgb(0, 186, 254) !important;
    opacity: 1;
    background-color: RGBA(13, 202, 240, var(--bs-bg-opacity, 0.1)) !important;
}

.badge.text-bg-info::before {
    background-color: rgb(0, 186, 254) !important;
}

.badge.outline-info {
    color: rgb(0, 186, 254) !important;
    opacity: 1;
    border: 1px solid RGBA(13, 202, 240, var(--bs-bg-opacity, 1)) !important;
}

.badge.outline-info::before {
    background-color: rgb(0, 186, 254) !important;
}

.badge.text-bg-dark {
    color: RGBA(33, 37, 41) !important;
    opacity: 1;
    background-color: RGBA(33, 37, 41, var(--bs-bg-opacity, 0.1)) !important;
}

.badge.text-bg-dark::before {
    background-color: RGBA(33, 37, 41) !important;
}

hr {
    margin: 10px 0;
    border-color: var(--border-color2);
    opacity: 1;
}

.footer-hr {
    margin: 30px 0;
    border-color: rgb(var(--primary-color));
}

.cmn-hr {
    background-color: transparent;
    background-image: linear-gradient(
        90deg,
        rgba(206, 211, 246, 0) 0,
        #a9aaad 38%,
        #a9aaad 64%,
        rgba(206, 211, 246, 0) 99%
    );
    opacity: 0.3;
    border-top: initial;
    height: 1px;
    margin: 50px 0;
}

.cmn-hr2 {
    margin: 20px 0;
    border-color: var(--border-color1);
}

.divider {
    margin: 40px 0;
    white-space: nowrap;
    display: flex;
    align-items: center;
    flex-direction: row;
    align-self: stretch;
    gap: 16px;
}

.divider::before {
    content: "";
    background-image: linear-gradient(
        90deg,
        rgba(124, 58, 237, 0) 0.02%,
        #7c3aed 100%
    );
    flex-grow: 1;
    width: 100%;
    height: 1px;
}

.divider::after {
    content: "";
    background-image: linear-gradient(
        90deg,
        #7c3aed 0.02%,
        rgba(124, 58, 237, 0) 100%
    );
    flex-grow: 1;
    width: 100%;
    height: 1px;
}

@media (max-width: 991px) {
    .divider {
        margin: 20px 0;
    }
}

.dropdown-menu {
    max-height: calc(100vh - 75px);
    min-width: 13rem;
    overflow-y: auto;
    border-radius: 8px;
    padding: 8px;
    background: var(--bg-color1);
    border-color: var(--border-color1);
    box-shadow: var(--shadow1);
}

.dropdown-menu .dropdown-item {
    border-radius: 5px;
    padding: 3px 8px;
    transition: var(--transition);
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    margin-bottom: 5px;
    text-transform: capitalize;
    font-weight: 500;
    gap: 5px;
    color: rgb(var(--body-color));
    white-space: wrap;
}

.dropdown-menu .dropdown-item:hover {
    background: rgb(var(--primary-color), 0.1);
}

.title-border {
    position: relative;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    border-radius: 30px;
}

.title-border::before {
    position: absolute;
    content: "";
    top: 50%;
    left: -50px;
    height: 5px;
    width: 70px;
    border: 1px solid rgb(var(--primary-color));
    border-radius: 30px;
    overflow: hidden;
}

.title-border::after {
    position: absolute;
    content: "";
    top: 50%;
    left: -33px;
    height: 5px;
    width: 35px;
    background-color: rgb(var(--primary-color));
    animation: divider-effect 5s linear infinite;
}

#slider {
    height: 10px;
}

#slider .noUi-connect {
    background-color: rgb(var(--primary-color));
}

#slider .noUi-handle {
    height: 18px;
    width: 18px;
    top: -5px;
    right: -9px;
    /* half the width */
    border-radius: 9px;
    background-color: rgb(var(--primary-color));
}

#slider .noUi-handle::after,
#slider .noUi-handle::before {
    background: transparent;
}

.slider-value {
    margin-top: 10px;
    text-align: center;
}

.text-with-icon {
    display: inline-flex;
    gap: 5px;
}

.cmn-list {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    line-height: 26px;
}

@media (max-width: 1399px) {
    .cmn-list {
        row-gap: 10px;
    }
}

.cmn-list .item {
    display: flex;
    align-items: center;
    gap: 12px;
}

@media (max-width: 1399px) {
    .cmn-list .item {
        font-size: 14px;
    }

    .navbar .navbar-nav {
        margin-right: 30px;
    }
}

.cmn-list .item i {
    color: rgb(var(--heading-color));
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--border-color1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

html[dir="rtl"] .cmn-list .item:not(:last-child)::after {
    left: 0;
    right: 12px;
}

.cmn-list2 {
    display: flex;
    flex-direction: column;
    gap: 38px;
}

.cmn-list2 .cmn-list2-item {
    color: rgb(var(--heading-color));
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    border-bottom: 1px solid var(--border-color1);
    padding-bottom: 16px;
}

html[dir="rtl"] .cmn-list .item:not(:last-child)::after {
    left: 0;
    right: 12px;
}

.cmn-list3 {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.cmn-list3 .cmn-list-item3 {
    display: flex;
    align-items: center;
    gap: 7px;
}

.cmn-list3 .cmn-list-item3 .icon-box.ok {
    color: rgb(var(--lime-green));
}

.cmn-list3 .cmn-list-item3 .icon-box.cancel {
    color: rgb(var(--soft-red));
}

.cmn-list4 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cmn-list4 .cmn-list4-item {
    display: flex;
    gap: 10px;
}

.cmn-list4 .cmn-list4-item .img-box {
    width: 22px;
    height: 22px;
}

.cmn-list4 .cmn-list4-item .img-box img {
    width: 100%;
    height: 100%;
}

.reviews {
    font-size: 14px;
}

.reviews i {
    color: #dee2e8;
}

.reviews .active {
    color: rgb(var(--orange));
    opacity: 1;
}

.ratings {
    display: flex;
    flex-direction: row-reverse;
    justify-content: start;
    gap: 5px;
}

.ratings:not(:checked) > input {
    position: absolute;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.ratings:not(:checked) > label {
    cursor: pointer;
    font-size: 36px;
    color: #dee2e8;
}

.ratings:not(:checked) > label:before {
    content: "★";
}

.ratings > input:checked + label:hover,
.ratings > input:checked + label:hover ~ label,
.ratings > input:checked ~ label:hover,
.ratings > input:checked ~ label:hover ~ label,
.ratings > label:hover ~ input:checked ~ label {
    color: rgb(var(--orange));
}

.ratings:not(:checked) > label:hover,
.ratings:not(:checked) > label:hover ~ label {
    color: rgb(var(--orange));
}

.ratings > input:checked ~ label {
    color: rgb(var(--orange));
}

.average-review .card-box {
    text-align: center;
}

.average-review .card-box i {
    color: rgb(var(--orange));
    font-size: 14px;
}

.average-review .index {
    display: inline-block;
    margin-bottom: 5px;
}

.average-review .progress {
    width: 100%;
    height: 10px;
}

.average-review .progress .progress-bar {
    background: rgb(var(--primary-color));
}

.countdown-area {
    display: flex;
    gap: 10px;
}

.countdown-area #countdown1 {
    display: flex;
}

.country-flags-container {
    max-height: 300px;
    overflow: hidden;
    overflow-y: auto;
}

.country-flags-container::-webkit-scrollbar-thumb {
    visibility: visible;
    opacity: 1;
}

.country-flags-container .item {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 12px;
    border-radius: 5px;
    text-transform: capitalize;
    border: 1px solid var(--border-color1);
    font-family: var(--heading-font);
    font-weight: 500;
}

.country-flags-container .item:hover {
    background-color: rgb(var(--light-grayish-blue));
}

.country-flags-container .item img {
    width: 25px;
    border: 1px solid var(--border-color1);
    height: 18px;
    border-radius: 3px;
}

.country-flags-container .item i {
    font-size: 18px;
    color: rgb(var(--primary-color));
}

.category-modal-section .category-list {
    padding-bottom: 10px;
}

.category-modal-section .category-list .item {
    min-width: 212px;
}

@media (max-width: 1199px) {
    .category-modal-section .category-list {
        flex-wrap: wrap;
        justify-content: start;
    }

    .category-modal-section .category-list .item {
        box-shadow: var(--shadow1);
    }
}

@media (max-width: 575px) {
    .category-modal-section .category-list {
        flex-wrap: wrap;
        justify-content: start;
    }

    .category-modal-section .category-list .item {
        width: 100%;
    }
}

.location-modal .modal-dialog {
    max-width: 750px;
}

.location-modal .search-box {
    position: sticky;
    top: 0;
}

.card {
    border-radius: 20px;
    background-color: var(--bg-color2);
    border: none;
}

.card .card-header {
    padding: 20px;
    background-color: rgb(var(--bg-color1));
    padding-bottom: 15px;
    border-color: var(--border-color1);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.card .card-header .title {
    display: flex;
    align-items: center;
    gap: 5px;
}

.card .card-header .title .icon-area {
    color: rgb(var(--primary-color));
}

.card .card-body {
    padding: 20px;
}

@media (max-width: 575px) {
    .card .card-header {
        padding: 12px;
    }

    .card .card-body {
        padding: 12px;
    }
}

.nice-select {
    border-color: var(--border-color1);
    text-transform: capitalize;
    font-size: 14px;
    background-color: var(--bg-color2);
    border-radius: 9999px;
    font-weight: 500;
}

.nice-select .option {
    text-transform: capitalize;
    font-weight: 500;
}

.nice-select .option.selected {
    border-left: 2px solid rgb(var(--primary-color));
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
    background-color: rgb(var(--primary-color), 0.1);
}

.nice-select:focus {
    border-color: transparent;
}

html[dir="rtl"] .nice-select.right .list {
    left: 0;
    right: auto;
}

.dark-theme .nice-select .list {
    background-color: rgb(var(--very-dark-gray));
}

.range-area .irs--flat .irs-bar {
    height: 3px;
    background-color: rgb(var(--primary-color));
}

.range-area .irs--flat .irs-line {
    height: 3px;
}

.range-area .irs--flat .irs-from,
.range-area .irs--flat .irs-to,
.range-area .irs--flat .irs-single {
    background: rgb(var(--primary-color));
}

.range-area .irs--flat .irs-from:before,
.range-area .irs--flat .irs-to:before,
.range-area .irs--flat .irs-single:before {
    border-top-color: rgb(var(--primary-color));
}

.range-area .irs--flat .irs-handle > i:first-child {
    width: 12px;
    height: 12px;
    border-radius: 7px;
    background-color: rgb(var(--primary-color));
    border: 4px solid rgb(var(--primary-color));
}

.range-area .irs--flat .irs-handle {
    width: 0;
    height: 0;
}

.range-area .irs--flat .irs-handle > i:first-child {
    top: -2px;
    left: 0;
}

.range-area .irs--flat .irs-min,
.range-area .irs--flat .irs-max {
    display: none;
}

.checkbox-categories-area .categories-list {
    padding-right: 5px;
}

.checkbox-categories-area .category-link {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    text-transform: capitalize;
    padding: 7px 16px;
    transition: var(--transition);
    border-radius: 40px;
    font-weight: 500;
    color: rgb(var(--heading-color));
}

.checkbox-categories-area .category-link:hover {
    background-color: rgb(var(--primary-color), 0.1);
}

.checkbox-categories-area .category-link:not(:last-child) {
    margin-bottom: 10px;
}

.checkbox-categories-area .category-link i {
    color: rgb(var(--primary-color));
}

.checkbox-categories-area .form-check {
    margin: 15px 0;
}

.checkbox-categories-area .form-check .form-check-input {
    cursor: pointer;
    border-radius: 5px;
}

.checkbox-categories-area
.form-check
.form-check-input:checked
+ .form-check-label {
    color: rgb(var(--primary-color));
}

.checkbox-categories-area .form-check .form-check-label {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    text-transform: capitalize;
}

html[dir="rtl"] .checkbox-categories-area .categories-list {
    padding-right: 0;
    padding-left: 5px;
}

/*----------------------------------------------
user nav Profile start
----------------------------------------------*/
.user-profile-box {
    position: relative;
    display: inline-block;
    width: auto;
    padding: 0;
}

.user-profile-box:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 10px);
    transform: scaleY(1);
}

.user-profile-box .img-box {
    cursor: pointer;
    border: 1px solid var(--border-color2);
    background-color: var(--bg-color2);
    border-radius: 50%;
    padding: 2px;
}

.user-profile-box .img-box img {
    width: 35px;
    height: 35px;
    min-width: 35px;
    border-radius: 50%;
}

.user-profile-box .user-dropdown {
    background: var(--bg-color3);
    box-shadow: var(--shadow1);
    width: 200px;
    overflow: hidden;
    padding-top: 0;
    padding-left: 0;
    position: absolute;
    right: 0;
    top: 55px;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: scaleY(0);
    transform-origin: 0 0;
    transition: var(--transition);
    z-index: 3;
    border: 1px solid var(--border-color1);
}

.user-profile-box .user-dropdown li {
    list-style: none;
}

.user-profile-box .user-dropdown li button {
    width: 190px;
    height: 38px;
    padding: 5px;
    margin: 5px;
    margin-bottom: 0;
    border-radius: 5px;
    font-size: 13px;
}

.user-profile-box .user-dropdown li a {
    color: rgb(var(--heading-color));
    font-weight: 400;
    padding: 5px;
    margin: 5px;
    border-radius: 5px;
    display: flex;
    transition: 0.4s;
}

.user-profile-box .user-dropdown li a:active,
.user-profile-box .user-dropdown li a:focus,
.user-profile-box .user-dropdown li a:hover {
    background-color: rgb(var(--primary-color), 0.1);
}

.user-profile-box .user-dropdown li a:last-child {
    border-bottom: none;
}

.user-profile-box .user-dropdown li a i {
    width: 25px;
    height: 25px;
    border-radius: 5px;
    color: rgb(var(--primary-color));
    margin: 0 5px;
    font-size: 16px;
    text-align: center;
}

html[dir="rtl"] .navbar-brand {
    margin-right: 0;
    margin-left: var(--bs-navbar-brand-margin-end);
}

html[dir="rtl"] .navbar .nav-right {
    left: 60px;
    right: auto;
}

html[dir="rtl"] .user-profile-box .user-dropdown {
    left: 0;
    right: auto;
}

/*----------------------------------------------
user nav Profile end
----------------------------------------------*/
.notification-panel {
    position: relative;
    display: inline-block;
    width: auto;
    padding: 0px 0;
}

.notification-panel:hover .notification-dropdown {
    visibility: visible;
    opacity: 1;
    top: 54px;
    transform: scale(1);
}

.notification-panel .dropdown-box {
    overflow-y: scroll;
    width: 100%;
    height: 100%;
    max-height: 285px;
}

.notification-panel .dropdown-box::-webkit-scrollbar {
    width: 0px;
    height: 100%;
}

.notification-panel .dropdown-box::-webkit-scrollbar-track {
    background: var(--ghostColor);
}

.notification-panel .dropdown-box::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 5px;
}

.notification-panel .dropdown-box::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

.notification-panel .notification-dropdown {
    background: rgb(var(--white));
    box-shadow: var(--shadow2);
    width: 290px;
    max-height: 336px;
    overflow: hidden;
    padding: 5px;
    padding-bottom: 44px;
    position: absolute;
    right: -60px;
    top: 54px;
    border-radius: 5px;
    visibility: hidden;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: 0 0;
    transition: var(--transition);
    z-index: 151;
}

.notification-panel .notification-dropdown li:not(:last-child) {
    border-bottom: 1px solid var(--border-color1);
}

.notification-panel .notification-dropdown li:not(:first-child) a {
    margin-top: 5px;
}

.notification-panel .notification-dropdown li a {
    padding: 10px 10px 10px 15px;
    display: flex;
    gap: 10px;
    white-space: normal;
    transition: var(--transition);
    margin-bottom: 5px;
    border-radius: 5px;
}

.notification-panel .notification-dropdown li a:not(:first-child) {
    margin-top: 5px;
}

.notification-panel .notification-dropdown li a:active,
.notification-panel .notification-dropdown li a:focus,
.notification-panel .notification-dropdown li a:hover {
    background: rgb(var(--primary-color), 0.1);
}

.notification-panel .notification-dropdown li a i {
    background: rgb(var(--primary-color));
    border-radius: 5px;
    padding: 0px;
    width: 30px;
    height: 30px;
    text-align: center;
    color: rgb(var(--white));
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-panel .notification-dropdown li a .text {
    width: calc(100% - 40px);
}

.notification-panel .notification-dropdown li a .text p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 5px;
}

.notification-panel .notification-dropdown li a .text .time {
    font-size: 12px;
    font-weight: 400;
    color: rgb(var(--primary-color));
}

.notification-panel .notification-dropdown .clear-all {
    font-weight: 500;
    font-size: 16px;
    text-transform: capitalize;
    text-align: center;
    padding: 10px 10px 11px 15px;
    position: absolute;
    bottom: 0;
    left: 0;
    border-top: 1px solid var(--border-color1);
    background-color: rgb(var(--white));
}

.notification-panel .notification-dropdown .clear-all a {
    color: rgb(var(--primary-color));
    transition: 0.4s;
}

.notification-panel .notification-dropdown .clear-all a:hover {
    color: rgb(var(--primary-color));
}

.dropdown-toggle {
    position: relative;
}

.dropdown-toggle i {
    font-size: 18px;
    color: rgb(var(--heading-color));
}

.dropdown-toggle .count {
    background: rgb(var(--primary-color));
    min-width: 18px;
    height: 18px;
    width: 18px;
    border-radius: 3px 6px 3px 6px;
    color: rgb(var(--white));
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

html[dir="rtl"] .notification-panel .dropdown-toggle .count {
    right: auto;
    left: -4px;
}

html[dir="rtl"] .notification-panel .notification-dropdown {
    left: -60px;
    right: auto;
}

html[dir="rtl"] .dropdown-toggle .count {
    right: auto;
    left: -4px;
}

.shopping-cart {
    position: relative;
}

.shopping-cart:hover .cart-dropdown {
    top: calc(100% + 15px);
    transform: scale(1);
    visibility: visible;
    opacity: 1;
}

.shopping-cart .menu-cart-top {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 10px 25px;
    border-bottom: 1px solid var(--border-color1);
}

.shopping-cart .menu-cart-top h5 {
    color: rgb(var(--heading-color));
    font-weight: 500;
    font-size: 18px;
}

.shopping-cart .dropdown-box {
    overflow-y: auto;
    width: 100%;
    height: 100%;
    max-height: 328px;
    padding: 0 5px 23px 5px;
}

.shopping-cart .dropdown-box .dropdown-item {
    font-weight: 500;
}

.shopping-cart .dropdown-box .dropdown-item small {
    color: rgb(var(--body-color));
}

.shopping-cart .cart-dropdown {
    background: rgb(var(--bg-color1));
    width: 360px;
    box-shadow: var(--shadow1);
    max-height: 470px;
    overflow: hidden;
    padding-bottom: 102px;
    padding-top: 0px;
    padding-left: 0;
    position: absolute;
    right: -90px;
    top: 50px;
    border-radius: 5px;
    transition: var(--transition);
    z-index: 151;
    transform: scaleY(0);
    transform-origin: 0 0;
    visibility: hidden;
    opacity: 0;
}

.shopping-cart .cart-dropdown li .dropdown-item {
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgb(var(--heading-color));
    white-space: normal;
    padding: 15px;
    margin: 5px 0;
    border-radius: 5px;
}

.shopping-cart .cart-dropdown li .dropdown-item:hover {
    background-color: rgb(var(--primary-color), 0.1);
}

.shopping-cart .cart-dropdown li .dropdown-item:hover .title {
    color: rgb(var(--primary-color));
}

.shopping-cart .cart-dropdown li .dropdown-item img {
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 10px;
    -o-object-fit: cover;
    object-fit: cover;
}

.shopping-cart .cart-dropdown li .dropdown-item .text {
    width: calc(100% - 100px);
    position: relative;
}

.shopping-cart .cart-dropdown li .dropdown-item .text .title {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    transition: var(--transition);
    color: rgb(var(--heading-color));
    font-size: 15px;
    font-weight: 500;
}

.shopping-cart .cart-dropdown li .dropdown-item .close {
    color: rgb(var(--body-color));
    transition: var(--transition);
    width: 25px;
    height: 25px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shopping-cart .cart-dropdown li .dropdown-item .close:hover {
    color: rgb(var(--heading-color));
    background-color: rgb(var(--bg-color1));
}

.shopping-cart .cart-dropdown li:not(:last-child) {
    border-bottom: 1px solid var(--border-color1);
}

.shopping-cart .cart-dropdown .cart-bottom {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    background: rgb(var(--bg-color1));
}

.shopping-cart .cart-dropdown .cart-bottom .sub-total {
    margin-bottom: 0;
    padding: 7px 15px;
    background-color: var(--bg-color2);
    font-weight: 600;
    font-size: 17px;
    color: rgb(var(--heading-color));
}

.shopping-cart .cart-dropdown .cart-bottom .btn-area {
    padding: 15px;
}

@media (max-width: 575px) {
    .shopping-cart .cart-dropdown {
        width: 290px;
        right: -150px;
    }

    .shopping-cart .cart-dropdown li a {
        padding: 15px;
    }
}

html[dir="rtl"] .navbar .dropdown .dropdown-menu {
    text-align: right;
}

html[dir="rtl"] .shopping-cart .cart-dropdown {
    right: auto;
    left: -90px;
}

html[dir="rtl"] .shopping-cart .cart-dropdown li a .text .close {
    right: auto;
    left: 0;
}

html[dir="rtl"] .shopping-cart .cart-dropdown .cart-bottom p span {
    float: left;
}

html[dir="rtl"] .notification-panel .notification-dropdown {
    right: auto;
    left: -60px;
}

html[dir="rtl"] .notification-panel .notification-dropdown li a i {
    margin-right: 0;
    margin-left: 5px;
}

@media (max-width: 575px) {
    html[dir="rtl"] .shopping-cart .cart-dropdown {
        width: 290px;
        left: -75px;
    }
}

.profile-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.profile-box .img-box {
    position: relative;
}

.profile-box .img-box img {
    width: 52px;
    min-width: 52px;
    height: 52px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    border: 2px solid rgb(var(--white));
    background-color: rgb(var(--white));
}

.profile-box .img-box .status {
    position: absolute;
    background-color: #f5ca99;
    border: 3px solid rgb(var(--white));
    border-radius: 50%;
    bottom: 2px;
    height: 16px;
    right: 2px;
    width: 16px;
}

.profile-box .img-box .status.active {
    background-color: rgb(var(--lime-green));
}

.profile-box .text-box {
    text-transform: capitalize;
    font-size: 14px;
    font-family: var(--heading-font);
    font-weight: 500;
}

.profile-box .text-box .title {
    font-family: var(--heading-font);
    display: block;
}

.profile-box2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 496px;
    margin: 0 auto;
}

.profile-box2 .img-box {
    width: 80px;
    height: 80px;
}

.profile-box2 .img-box img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
}

.profile-box2 .text-box {
    text-align: center;
}

.profile-box2 .text-box .title {
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 5px;
}

.profile-box3 {
    display: flex;
    align-items: end;
    gap: 24px;
}

.profile-box3 .img-box {
    max-width: 80px;
    max-height: 80px;
}

.profile-box3 .img-box img {
    width: 100%;
    height: 100%;
}

.profile-box3 .custom-badge {
    background-color: rgb(var(--primary-color));
    color: rgb(var(--white));
    border-radius: 4px;
    padding: 2px 10px;
    font-size: 14px;
    line-height: 22px;
}

.profile-box3 strong {
    color: rgb(var(--heading-color));
}

.profile-box3 .title {
    font-size: 24px;
    color: rgb(var(--heading-color));
    font-weight: 500;
    margin-bottom: 12px;
}

@keyframes input-amount-box-animation {
    0% {
        transform: scaleX(0);
    }

    to {
        transform: scale(1);
    }
}

@keyframes marquee-right {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes marquee-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes slideInRight {
    0% {
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp {
    0% {
        transform: translateY(-30px);
        opacity: 0;
    }

    50% {
        transform: translateY(30px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes topToBottom {
    0% {
        top: -5px;
    }

    100% {
        top: 5px;
    }
}

@keyframes jump {
    0% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -20px, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes jumpTwo {
    0% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, 20px, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes moveUp {
    0% {
        opacity: 1;
        transform: translateX(0px) translateY(0px) scale(1);
    }

    25% {
        opacity: 0;
        transform: translateX(10px) translateY(-10px) scale(0.9);
    }

    26% {
        opacity: 0;
        transform: translateX(-10px) translateY(10px) scale(0.9);
    }

    55% {
        opacity: 1;
        transform: translateX(0px) translateY(0px) scale(1);
    }
}

.border-effect {
    display: inline !important;
    width: 100%;
    background-repeat: no-repeat;
    background-position-y: -2px;
    background-image: linear-gradient(
        transparent calc(100% - 1px),
        rgb(var(--primary-color)) 1px
    );
    transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    background-size: 0 100%;
    backface-visibility: hidden;
}

.border-effect:hover {
    background-image: linear-gradient(
        transparent calc(100% - 1px),
        rgb(var(--primary-color)) 1px
    );
    background-size: 100% 100%;
}

.tag-list2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.tag-list2 .item {
    text-transform: capitalize;
    padding: 3px 15px;
    border-radius: 99999px;
    background-color: var(--bg-color4);
}

@media (min-width: 768px) {
    .h-md-100 {
        height: 100%;
    }
}

@media (min-width: 768px) {
    html[dir="rtl"] .text-md-start {
        text-align: right !important;
    }
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 12px;
    column-gap: 12px;
    row-gap: 20px;
}

.tag-list .item {
    font-size: 14px;
    padding: 4px 20px;
    transition: var(--transition);
    border-radius: 5px;
    background-color: var(--bg-color1);
    gap: 5px;
    font-weight: 500;
    text-transform: capitalize;
    color: rgb(var(--heading-color));
}

.tag-list .item:hover {
    color: rgb(var(--primary-color));
    border-color: var(--border-color2);
}

.custom-dropdown {
    position: initial;
}

.custom-dropdown .nav-link i {
    font-size: 14px;
    transition: 0.3s;
    color: rgb(var(--heading-color));
}

.custom-dropdown .dropdown-menu {
    overflow: visible;
    padding: 4px;
    overflow: auto;
    margin-top: 0;
}

.custom-dropdown .dropdown-menu .dropdown-item {
    padding: 8px 20px;
    transition: var(--transition);
    font-size: 16px;
    font-family: var(--heading-font);
    text-transform: capitalize;
    font-weight: 400;
    border-radius: 0;
}

.custom-dropdown .dropdown-menu li:not(:last-child) {
    border-bottom: 1px solid var(--border-color1);
}

.custom-dropdown .dropdown-menu li:not(:last-child) .dropdown-item {
    margin-bottom: 5px;
}

.custom-dropdown .mega-menu .dropdown-item {
    gap: 16px;
    display: flex;
    border-radius: 0;
    position: relative;
    margin-bottom: 0;
}

.custom-dropdown .mega-menu .dropdown-item:hover {
    background-color: transparent;
}

.custom-dropdown .mega-menu .dropdown-item:hover .text-box .title {
    text-decoration: underline;
}

.custom-dropdown .mega-menu .dropdown-item.with-right-line::after {
    content: "";
    height: calc(100% + 20px);
    width: 1px;
    background-color: var(--border-color1);
    left: calc(100% + 20px);
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
}

.custom-dropdown .mega-menu .dropdown-item .img-box {
    width: 32px;
    min-width: 32px;
    height: 32px;
    color: rgb(var(--body-color));
}

.custom-dropdown .mega-menu .dropdown-item .text-box {
    text-align: start;
}

.custom-dropdown .mega-menu .dropdown-item .text-box .title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
    transition: var(--transition);
    color: rgb(var(--heading-color));
    line-height: 30px;
}

.custom-dropdown .mega-menu .dropdown-item .text-box .sub-title {
    line-height: 26px;
}

.custom-dropdown .mega-menu .cmn-btn4 {
    color: rgb(var(--very-dark-gray2));
}

.custom-dropdown .mega-menu .cmn-btn4::after {
    background: rgb(var(--very-dark-gray2));
    height: 1px;
}

.custom-dropdown .mega-menu.mega-menu2 .right-side {
    background-color: rgb(var(--primary-color));
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 16px 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 10px;
    align-items: center;
    /* position: relative; */
}
/* .custom-dropdown .mega-menu.mega-menu2 .right-side .banner-bg{
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
} */

.custom-dropdown .mega-menu.mega-menu2 .right-side .img-box {
    max-width: 330px;
}

.custom-dropdown .mega-menu.mega-menu2 .right-side .title {
    color: rgb(var(--white));
    font-size: 22px;
    font-weight: 500;
    line-height: 26px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.custom-dropdown .mega-menu.mega-menu2 .right-side .title .highlight2 {
    font-weight: 700;
    font-size: 26px;
    line-height: 40px;
    color: #ebff88;
}

@media (min-width: 992px) {
    .custom-dropdown .nav-link {
        border-radius: 4px 4px 0 0 !important;
    }

    .custom-dropdown:hover .nav-link {
        color: rgb(var(--primary-color)) !important;
    }

    .custom-dropdown:hover .nav-link i {
        transform: rotate(180deg);
        color: rgb(var(--primary-color));
    }

    .custom-dropdown:hover .dropdown-menu {
        top: calc(100% - 5px);
    }

    .custom-dropdown .dropdown-menu {
        top: 80%;
        visibility: hidden;
        opacity: 0;
        min-width: 270px;
        display: block;
        transition: var(--transition);
    }

    .custom-dropdown .dropdown-menu > li:hover > .dropdown-menu {
        visibility: visible;
        opacity: 1;
        top: 100%;
    }

    .custom-dropdown .mega-menu {
        min-width: calc(100% - 24px);
        left: 50%;
        transform: translateX(-50%);
        padding: 40px;
        border-radius: 8px;
        border: none;
        box-shadow: var(--shadow2);
    }

    .custom-dropdown .mega-menu .mega-menu-wrapper {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-rows: 1fr 1fr;
        gap: 20px;
    }

    .custom-dropdown .mega-menu.mega-menu2 {
        padding: 0;
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 32px;
    }

    .custom-dropdown .mega-menu.mega-menu2 .left-side {
        padding: 40px 0 40px 40px;
    }

    .custom-dropdown .mega-menu.mega-menu2 .mega-menu-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .custom-dropdown:hover > .dropdown-menu {
        visibility: visible;
        opacity: 1;
    }
}

.dropdown-menu-end {
    right: 0;
    left: auto;
}

@media (max-width: 991px) {
    .custom-dropdown .dropdown-menu {
        box-shadow: none;
    }

    .custom-dropdown .dropdown-menu .dropdown-item {
        justify-content: center;
    }

    .custom-dropdown .nav-link.show[aria-expanded="true"] i {
        transform: rotate(180deg);
    }

    .custom-dropdown .mega-menu-wrapper {
        margin-top: 20px;
    }

    .custom-dropdown .mega-menu .dropdown-item .text-box .title {
        font-size: 16px;
        line-height: 26px;
    }

    .custom-dropdown .mega-menu .dropdown-item .text-box .sub-title {
        font-size: 14px;
    }

    .custom-dropdown .mega-menu.mega-menu2 .right-side {
        border-radius: 4px;
        margin-top: 16px;
    }

    .custom-dropdown .dropdown-menu li:not(:last-child) {
        border-bottom: none;
    }
}

.avater-group-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.avater-group-box .img-box img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.avater-group-box .img-box img:not(:first-child) {
    margin-left: -15px;
}

.avater-group-box .text-box {
    font-weight: 400;
}

html[dir="rtl"] .avater-group-box .img-box img:not(:first-child) {
    margin-left: auto;
    margin-right: -15px;
}

.custom-ul {
    padding-left: 2rem;
    margin-bottom: 1rem;
    list-style: disc;
}

.custom-ul li:not(:last-child) {
    margin-bottom: 20px;
}

html[dir="rtl"] .custom-ul {
    padding-left: 0;
    padding-right: 2rem;
}

.custom-ol {
    padding-left: 2rem;
    margin-bottom: 1rem;
    list-style: decimal;
}

.custom-ol li:not(:last-child) {
    margin-bottom: 20px;
}

html[dir="rtl"] .custom-ol {
    padding-left: 0;
    padding-right: 2rem;
}

.line-hight-26 {
    line-height: 26px;
}

.white-space-nowrap {
    white-space: nowrap;
}

.sidebar-widget-box {
    padding: 25px;
    background-color: var(--bg-color2);
    border-radius: 10px;
    border: 1px solid var(--border-color1);
}

.sidebar-widget-box:not(:last-child) {
    margin-bottom: 30px;
}

.sidebar-widget-box-2 {
    padding: 24px;
    background-color: var(--bg-color6);
    border-radius: 10px;
}

.sidebar-widget-box-2:not(:last-child) {
    margin-bottom: 30px;
}

.sidebar-widget-box-2 .widget-title {
    color: rgb(var(--heading-color));
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    position: relative;
}

.sidebar-widget-box-2 .widget-title::before {
    position: absolute;
    content: "";
    width: 6px;
    height: 100%;
    border-radius: 6px;
    background-color: rgb(var(--primary-color));
    width: 2px;
    height: 25px;
    left: -24px;
    top: 50%;
    transform: translateY(-50%);
}

.sidebar-widget-box-2 .cmn-hr2 {
    border-color: var(--border-color4);
}

/*----------------------------------------------
Reusable style section end
----------------------------------------------*/
/*----------------------------------------------
Margin top start
----------------------------------------------*/
.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-25 {
    margin-top: 25px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-35 {
    margin-top: 35px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-45 {
    margin-top: 45px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-75 {
    margin-top: 75px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-100 {
    margin-top: 100px;
}

.mt-150 {
    margin-top: 150px;
}

.mt-190 {
    margin-top: 190px;
}

/*----------------------------------------------
Margin top end
----------------------------------------------*/
/*----------------------------------------------
Margin bottom start
----------------------------------------------*/
.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-35 {
    margin-bottom: 35px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-45 {
    margin-bottom: 45px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-65 {
    margin-bottom: 65px;
}

.mb-75 {
    margin-bottom: 75px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mb-150 {
    margin-bottom: 150px;
}

/*----------------------------------------------
Margin bottom end
----------------------------------------------*/
/*----------------------------------------------
Padding top start
----------------------------------------------*/
.pt-10 {
    padding-top: 15px;
}

.pt-15 {
    padding-top: 15px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-25 {
    padding-top: 25px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-35 {
    padding-top: 35px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-45 {
    padding-top: 45px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-75 {
    padding-top: 75px;
}

.pt-60 {
    padding-top: 60px;
}

.pt-80 {
    padding-top: 80px;
}

.pt-100 {
    padding-top: 100px;
}

.pt-150 {
    padding-top: 150px !important;
}

.pt-190 {
    padding-top: 190px;
}

.pt-200 {
    padding-top: 200px;
}

/*----------------------------------------------
Padding top end
----------------------------------------------*/
/*----------------------------------------------
Padding bottom start
----------------------------------------------*/
.pb-15 {
    padding-bottom: 15px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-25 {
    padding-bottom: 25px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-35 {
    padding-bottom: 35px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-45 {
    padding-bottom: 45px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-65 {
    padding-bottom: 65px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-75 {
    padding-bottom: 75px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pb-150 {
    padding-bottom: 150px;
}

/*----------------------------------------------
Padding bottom end
----------------------------------------------*/
/*----------------------------------------------
height start
----------------------------------------------*/
.h-35 {
    height: 40px !important;
}

.h-40 {
    height: 40px !important;
}

.h-45 {
    height: 45px !important;
}

.h-55 {
    height: 55px !important;
}

.h-60 {
    height: 60px !important;
}

/*----------------------------------------------
height end
----------------------------------------------*/
/*----------------------------------------------
top start
----------------------------------------------*/
.top-100px {
    top: 100px;
}

/*----------------------------------------------
top end
----------------------------------------------*/
/*----------------------------------------------
font weight start
----------------------------------------------*/
.fw-400 {
    font-weight: 400;
}

/*----------------------------------------------
font weight end
----------------------------------------------*/
/*----------------------------------------------
Promo banner start
----------------------------------------------*/
.promo-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    padding: 12px 20px 12px 56px;
    color: rgb(var(--white));
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    opacity: 1;
    visibility: visible;
    max-height: 70px;
}

.promo-banner.hide {
    opacity: 0;
    visibility: hidden;
}

.promo-banner .left-side {
    font-family: "Oleo Script", system-ui;
    font-size: 24px;
    font-weight: 400;
    white-space: nowrap;
}

.promo-banner .mid-side {
    text-align: center;
}

.promo-banner .right-side {
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 16px;
    -moz-column-gap: 56px;
    column-gap: 56px;
}

.promo-banner .cmn-btn {
    font-size: 14px;
}

.promo-swiper-banner-box {
    height: 64px;
    background: linear-gradient(to right, rgb(var(--primary-color)), #4b0082);
}

.promo-banner-swiper .swiper-slide {
    align-items: stretch;
    height: 100%;
}

.promo-swiper-banner-box .swiper-wrapper {
    height: 64px;
}

.offer-close-btn {
    font-size: 20px;
    color: rgb(var(--white));
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border-radius: 3px;
}

.offer-close-btn:hover {
    background-color: rgb(var(--black));
}

@media (max-width: 1199px) {
    .promo-banner {
        padding: 16px;
        font-size: 16px;
    }

    .promo-banner .left-side {
        font-size: 20px;
    }

    .promo-banner .right-side {
        -moz-column-gap: 30px;
        column-gap: 30px;
    }
}

@media (max-width: 991px) {
    .promo-swiper-banner-box {
        display: none;
    }
}

/*----------------------------------------------
Promo banner end
----------------------------------------------*/
/*----------------------------------------------
01. Nav section start
----------------------------------------------*/
.navbar.active {
    background-color: var(--bg-color1);
    z-index: 999;
    box-shadow: var(--shadow1);
}

.navbar.active .navbar-nav .nav-link {
    color: rgb(var(--heading-color));
}

.navbar.active .navbar-nav .nav-link::after {
    background-color: rgb(var(--heading-color));
}

.navbar.active .get-start-btn {
    background-color: rgb(var(--primary-color));
}

.navbar.active .get-start-btn:hover {
    color: rgb(var(--primary-color));
    background-color: var(--btn-hover-bg);
}

.navbar.active .dropdown-toggle i {
    color: rgb(var(--heading-color));
}

.navbar.active .navbar-toggler {
    color: rgb(var(--body-color));
}

.navbar {
    padding: 0;
    z-index: 999;
    transition: var(--transition);
    transition: all ease 0.3s;
    position: absolute;
    width: 100%;
}

.navbar .container {
    position: relative;
}

.navbar .navbar-toggler {
    font-size: 18px;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color1);
    box-shadow: none;
    border-radius: 6px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
}

.navbar .navbar-toggler:hover {
    background-color: rgb(var(--primary-color), 0.1);
    color: rgb(var(--primary-color));
}

.navbar .navbar-toggler:focus {
    border-color: rgb(var(--primary-color));
    outline: 1px solid rgb(var(--primary-color));
}

.navbar .navbar-nav .nav-link {
    font-size: 16px;
    color: rgb(var(--very-dark-gray));
    text-transform: capitalize;
    padding: 25px 20px;
    transition: var(--transition);
    border-radius: 0;
    position: relative;
    font-weight: 500;
    border-radius: 10px;
}

@media (max-width: 1399px) {
    .navbar .navbar-nav .nav-link {
        padding: 25px 15px;
    }

    .navbar .navbar-nav {
        margin-right: 30px;
    }
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: rgb(var(--primary-color));
}

.navbar .nav-right {
    font-size: 16px;
    font-weight: 500;
    color: rgb(var(--heading-color));
}

.navbar .nav-right .custom-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar .toggle-btn {
    font-size: 20px;
    cursor: pointer;
}

.navbar .cmn-bt2 {
    font-size: 14px;
}

.logo-text {
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    display: none;
}

.transparent {
    background-color: transparent;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-toggler {
        display: none !important;
    }

    .navbar .navbar-nav {
        margin-right: 10px;
    }
}

@media (max-width: 1199px) {
    .navbar .navbar-nav .nav-link {
        font-size: 13px;
        padding: 20px 10px;
    }
}

@media (max-width: 991px) {
    .navbar {
        padding: 15px;
    }

    .navbar.active {
        padding: 15px;
    }

    .navbar .navbar-nav .nav-link {
        padding: 15px;
        text-align: center;
        font-size: 16px;
    }

    .navbar .nav-right {
        position: absolute;
        right: 65px;
    }

    .navbar .cmn-btn2 {
        padding: 0 12px;
    }

    .navbar .cmn-btn2 .btn-wrapper {
        height: 36px !important;
    }

    .navbar .cmn-btn2 .btn-wrapper .btn-single {
        height: 36px !important;
    }
}

@media (max-width: 350px) {
    .logo {
        max-width: 100px;
        min-width: 100px;
    }

    .navbar .cmn-btn2 {
        font-size: 14px;
    }
}

html[dir="rtl"] .navbar-nav.ms-auto {
    margin-right: auto;
    margin-left: 0 !important;
}

html[dir="rtl"] .navbar .navbar-nav .nav-link i {
    margin-right: 0;
    margin-left: 5px;
}

/*----------------------------------------------
Nav end
----------------------------------------------*/
/*----------------------------------------------
Hero section start
----------------------------------------------*/
.hero-section {
    position: relative;
    z-index: 0;
    padding: 160px 0 0;
    overflow: hidden;
}

.hero-section .top-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-section .top-box .left-side {
    width: 71%;
}

.hero-section .top-box .right-side {
    width: 29%;
}

.hero-section .top-box .right-side .cmn-btn5 {
    margin-left: -170px;
    margin-top: 15px;
}

@media (max-width: 991px) {
    .hero-section .top-box .left-side .hero-title {
        display: inline-table !important;
    }
}

@media (max-width: 767px) {
    .hero-section .top-box .left-side .hero-title {
        display: inline !important;
    }
}

@media (max-width: 450px) {
    .hero-section .top-box .left-side .hero-title {
        font-size: 28px;
        line-height: 38px;
    }
}

.hero-section .bottom-box {
    margin-top: 60px;
    padding: 40px;
    border-radius: 8px;
    background-color: var(--bg-color2);
    border-radius: 8px;
    display: flex;
    gap: 24px;
}

@media (max-width: 1199px) {
    .hero-section .bottom-box {
        padding: 25px;
    }
}

@media (max-width: 991px) {
    .hero-section .bottom-box {
        padding: 20px;
    }
}

.hero-section .bottom-box .box-1 {
    width: 24.65%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-section .bottom-box .box-1 .box-top {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-section .bottom-box .box-1 .box-top .circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #d9d9d9;
}

.hero-section .bottom-box .box-2 {
    width: 31.69%;
    display: flex;
    flex-direction: column;
}

.hero-section .bottom-box .box-2 .box-bottom {
    height: 100%;
    margin-top: 16px;
}

.hero-section .bottom-box .box-2 .box-bottom .img-box {
    height: 100%;
}

.hero-section .bottom-box .box-2 .box-bottom .img-box img {
    border-radius: 12px;
    height: 100%;
    aspect-ratio: 419/346;
}

.hero-section .bottom-box .box-3 {
    width: 22.98%;
    border-radius: 12px;
}

.hero-section .bottom-box .box-3 .img-box {
    height: 420px;
    width: 330px;
}

.hero-section .bottom-box .box-3 .img-box img {
    margin-top: -20px;
    max-width: 100%;
    border-radius: 12px;
}

.hero-section .bottom-box .box-4 {
    width: 20.68%;
}

.hero-section .bottom-box .box-4 .video-box {
    max-height: 427px;
    position: relative;
}

.hero-section .bottom-box .box-4 .video-box video {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 12px;
    max-height: 427px;
}

.hero-section .bottom-box .box-4 .video-box .text-box {
    position: absolute;
    background-color: rgb(var(--white), 0.8);
    padding: 22px 15px 10px;
    border-radius: 8px;
    bottom: 15px;
    left: 15px;
    right: 15px;
}

.hero-section .bottom-box .box-4 .video-box .text-box .title {
    font-size: 20px;
    color: rgb(var(--heading-color));
    font-weight: 500;
    line-height: 30px;
}

.hero-section .bottom-box .box-4 .video-box .text-box .title .number {
    font-size: 32px;
}

.hero-section .bottom-box .box-4 .video-box .text-box .title .big-text {
    font-size: 38px;
    line-height: 66px;
    margin-top: 10px;
}

.hero-section .solution {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-section .solution .solution-item {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(-120px);
    animation: fallDown 0.8s forwards ease-out;
}

@media (max-width: 449px) {
    .hero-section .solution .solution-item {
        font-size: 12px;
    }
}

.hero-section .solution-item:nth-child(1) {
    animation-delay: 1.2s;
}

.hero-section .solution-item:nth-child(2) {
    animation-delay: 0.9s;
}

.hero-section .solution-item:nth-child(3) {
    animation-delay: 0.5s;
}

.hero-section .solution .solution-item:nth-child(2) .text-box {
    background-color: #a678f6;
}

.hero-section .solution .solution-item:nth-child(3) .text-box {
    background-color: #9a449a;
}

.hero-section .solution .solution-item .text-box {
    padding: 10px 18px;
    background-color: rgba(0, 0, 0, 0.7);
    color: rgb(var(--white));
    border-radius: 8px;
    line-height: normal;
}

@media (max-width: 1600px) {
    .hero-section .solution .solution-item .text-box {
        padding: 10px 12px;
        font-size: 15px;
    }
}

@media (max-width: 1199px) {
    .hero-section .solution .solution-item .text-box {
        padding: 10px;
        font-size: 14px;
    }
}

.hero-section .solution .solution-item .icon-box {
    background-color: rgb(var(--gray));
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(var(--white));
}

.hero-section .review-box {
    padding: 20px;
    border-radius: 8px;
    background-color: rgb(var(--soft-blue));
    color: rgb(var(--white));
}

.hero-section .review-box .title {
    font-weight: 500;
    display: flex;
    gap: 26px;
    letter-spacing: 0.16px;
}

.hero-section .review-box .title i {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section .bg-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    max-width: 1332px;
    max-height: 980px;
    z-index: -1;
}

@media (max-width: 992px) {
    .hero-section .bg-img {
        top: 0;
    }
}

.hero-section .bg-img img {
    width: 100%;
    height: 100%;
}

.hero-service-box {
    background-color: rgb(var(--white));
    border-radius: 12px;
    position: relative;
    z-index: 0;
    height: 437px;
}

.hero-service-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(https://bug-finder.s3.ap-southeast-1.amazonaws.com/assets/v2/hero/box-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: var(--transition);
    z-index: -1;
    border-radius: 8px;
}

.hero-service-box.active .toggle-btn {
    transform: rotate(45deg);
}

.hero-service-box .first-content {
    height: 100%;
    position: relative;
}

.hero-service-box .first-content .img-box {
    height: 100%;
}

.hero-service-box .first-content .img-box img {
    aspect-ratio: 67/68;
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
    border-radius: 12px;
    width: 100%;
}

.hero-service-box .first-content .text-box {
    position: absolute;
    top: 0;
    padding: 24px;
    z-index: 1;
    width: 100%;
}

.hero-service-box .first-content .text-box::after {
    content: "";
    background-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.75),
        transparent
    );
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 12px;
}

.hero-service-box .first-content .text-box .title {
    font-size: 28px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: 0.32px;
    color: rgb(var(--white));
    text-transform: capitalize;
}

.hero-service-box .second-content {
    border: 1px solid rgba(124, 58, 237, 0.12);
    padding: 20px;
    display: none;
    overflow-y: auto;
    height: 100%;
    border-radius: 12px;
}

.hero-service-box .second-content .title {
    text-transform: capitalize;
}

.hero-service-box .second-content .description {
    margin: 20px 0 0;
    line-height: 26px;
}

.hero-service-box .toggle-btn {
    width: 30px;
    height: 30px;
    bottom: 12px;
    right: 12px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    background-color: rgb(var(--light-gray), 0.8);
    color: rgb(var(--white));
    border-radius: 50%;
    transition: var(--transition);
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
    background-color: #ede9fe;
    color: #6b21a8;
}

.hero-service-box .toggle-btn:hover {
    background-color: rgb(var(--light-gray));
    background-color: #c4b5fd;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .hero-section .bottom-box .box-4 .video-box .text-box .title .big-text {
        font-size: 28px;
    }
}

@media (min-width: 992px) and (max-width: 1399px) {
    .hero-section .bottom-box .box-1 {
        width: 32.86%;
    }

    .hero-section .bottom-box .box-2 {
        width: 42.23%;
    }

    .hero-section .bottom-box .box-4 {
        width: 26.23%;
    }

    .hero-section .bottom-box .box-3 {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .hero-section .bottom-box .box-4 .video-box {
        height: 100%;
    }

    .hero-section .bottom-box .box-4 .video-box video {
        height: 100%;
    }
}

@media (max-width: 991px) {
    .hero-section {
        padding: 140px 0 0;
    }

    .hero-section .top-box .left-side {
        width: 60%;
    }

    .hero-section .top-box .right-side {
        width: 40%;
    }

    .hero-section .bottom-box {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .hero-section .bottom-box .box {
        width: auto;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 110px 0 0;
    }

    .hero-section .top-box {
        flex-direction: column;
        text-align: center;
    }

    .hero-section .top-box .left-side {
        width: 100%;
    }

    .hero-section .top-box .right-side {
        width: 100%;
    }

    .hero-section .top-box .right-side .cmn-btn5 {
        margin-left: 0;
    }

    .hero-section .bottom-box {
        margin-top: 40px;
    }

    .hero-section .bottom-box .box-3 {
        display: none;
    }

    .hero-service-box {
        height: 500px;
    }
}

@media (max-width: 767px) {
    .hero-service-box {
        height: 400px;
    }
}

@media (max-width: 575px) {
    .hero-section .bottom-box {
        padding: 20px;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 425px) {
    .hero-section .bottom-box .box-4 .video-box {
        height: 100%;
        max-height: 300px;
    }

    .hero-section .bottom-box .box-4 .video-box video {
        height: 100%;
        max-height: 300px;
    }
}

@media (max-width: 350px) {
    .hero-section .bottom-box .avater-group-box {
        display: none;
    }
}

/*----------------------------------------------
Hero section end
----------------------------------------------*/
/*----------------------------------------------
About section start
----------------------------------------------*/
.about-section .section-title {
    max-width: 620px;
    margin: 24px 0 45px auto;
}

.about-section .bottom-box {
    margin-top: 100px;
}

.about-section .bottom-box .left-side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    position: relative;
}

.about-section .bottom-box .left-side .box-top {
    max-width: 644px;
}

@media (max-width: 991px) {
    .about-section .bottom-box .left-side .box-top {
        max-width: 100%;
    }

    .about-section .bottom-box{
        margin-top: 20px !important;
    }
}

.about-section .bottom-box .left-side .box-bottom {
    margin-top: 30px;
    display: flex;
    align-items: center;
    -moz-column-gap: 60px;
    column-gap: 60px;
}

@media (max-width: 991px) {
    .about-section .bottom-box .hidden-box {
        display: none;
    }
}

.about-section .bottom-box .left-side .arrow-shape {
    margin-right: -370px;
}

.about-section .bottom-box .img-box-1 {
    height: 251px;
    width: 358px;
}

@media (max-width: 1599px) {
    .about-section .bottom-box .img-box-1 {
        height: auto;
        width: 100%;
    }
}

.about-section .bottom-box .img-box-1 img {
    margin-top: -80px;
    max-width: 100%;
}

@media (max-width: 768px) {
    .about-section .bottom-box .img-box-1 img {
        width: 100%;
    }
}

.about-section .bottom-box .img-box-2 {
    height: 431px;
    width: 338px;
}

@media (max-width: 1599px) {
    .about-section .bottom-box .img-box-2 {
        height: auto;
        width: 100%;
    }
}

.about-section .bottom-box .img-box-2 img {
    max-width: 100%;
    margin-top: -80px;
}

@media (max-width: 768px) {
    .about-section .bottom-box .img-box-2 img {
        height: auto;
        width: 100%;
    }
}

.counter .counter-item {
    position: relative;
    padding-top: 26px;
    text-align: center;
    border-top: 1px solid var(--border-color1);
}

.counter .counter-item::after {
    content: "";
    position: absolute;
    top: -7px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgb(var(--body-color));
}

.counter .counter-item .title {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1399px) {
    .about-section .bottom-box .left-side .arrow-shape {
        margin-right: -270px;
    }
}

@media (max-width: 1199px) {
    .about-section .bottom-box .left-side .arrow-shape {
        margin-right: -220px;
    }
}

@media (max-width: 991px) {
    .about-section .section-title {
        margin: 24px 0 45px;
    }

    .about-section .bottom-box {
        margin-top: 80px;
    }

    .about-section .bottom-box .left-side .arrow-shape {
        margin-right: 0;
    }
}

@media (max-width: 767px) {
    .about-section {
        text-align: center;
    }

    .about-section .bottom-box {
        margin-top: 50px;
    }

    .about-section .bottom-box .left-side .box-bottom {
        justify-content: center;
        margin-bottom: 0;
    }

    .about-section .bottom-box .left-side .arrow-shape {
        display: none;
    }

    .hero-section .bottom-box .box-2 .box-bottom {
        display: none;
    }
}

html[dir="rtl"] .about-section .section-title {
    margin: 24px auto 45px 0;
}

html[dir="rtl"] .about-section .bottom-box .left-side .arrow-shape {
    margin-right: auto;
    margin-left: -370px;
}

@media (max-width: 1399px) {
    html[dir="rtl"] .about-section .bottom-box .left-side .arrow-shape {
        margin-right: auto;
        margin-left: -270px;
    }
}

@media (max-width: 1199px) {
    html[dir="rtl"] .about-section .bottom-box .left-side .arrow-shape {
        margin-right: auto;
        margin-left: -220px;
    }
}

@media (max-width: 991px) {
    html[dir="rtl"] .about-section .bottom-box .left-side .arrow-shape {
        margin-right: auto;
        margin-left: 0;
    }
}

/*----------------------------------------------
About section end
----------------------------------------------*/
/*----------------------------------------------
Problem solution start
----------------------------------------------*/
.problem-solution-section {
    background-color: var(--bg-color2);
}

.problem-solution-section .section-title {
    max-width: 546px;
}

.problem-solution-box {
    padding: 20px;
    border-radius: 8px;
    background-color: var(--bg-color1);
}

@media (max-width: 991px) {
    .problem-solution-box {
        height: 100%;
    }
}

.problem-solution-box .text-box {
    margin-bottom: 16px;
}

.problem-solution-box .icon-box {
    width: 80px;
    height: 80px;
    border: 1px solid var(--border-color1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-color2);
}

.problem-solution-box .icon-box svg {
    width: 40px;
    height: 40px;
    fill: rgb(var(--body-color));
}

.problem-solution-box .icon-box path {
    fill: rgb(var(--body-color));
}

.problem-solution-box .number {
    color: rgb(var(--body-color));
    font-size: 20px;
    font-weight: 500;
}

.problem-solution-box .img-box img {
    border-radius: 8px;
}

@media (max-width: 991px) {
    .problem-solution-box .img-box {
        display: none;
    }
}

@media (max-width: 767px) {
    .problem-solution-section .section-header {
        text-align: center;
    }
}

/*----------------------------------------------
Problem solution end
----------------------------------------------*/
/*----------------------------------------------
Service section start
----------------------------------------------*/
.service-section .section-header {
    margin-bottom: 40px;
    display: flex;
    -moz-column-gap: 60px;
    column-gap: 60px;
}

@media (max-width: 1399px) {
    .service-section .section-header .section-title {
        font-size: 44px;
        line-height: 55px;
    }
}

@media (max-width: 991px) {
    .service-section .section-header .section-title {
        font-size: 36px;
        line-height: 50px;
    }
}

@media (max-width: 767px) {
    .service-section .section-header .section-title {
        font-size: 28px;
        line-height: 42px;
    }
}

@media (max-width: 991px) {
    .service-section .bottom-box .left-side .top-box {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
    }
}

.service-section .section-header .left-side {
    width: 50%;
}

.service-section .section-header .left-side .circle-img-box {
    margin-top: 35px;
    width: 100px;
    height: 100px;
}

.service-section .section-header .right-side {
    width: 50%;
}

.service-section .section-header .right-side .section-title .highlight {
    display: contents !important;
}

.service-section .bottom-box .left-side {
    border-top: 1px solid var(--border-color1);
    border-right: 1px solid var(--border-color1);
    padding: 60px 38px 0 0;
    height: 100%;
}

@media (max-width: 1199px) {
    .service-section .bottom-box .left-side {
        padding: 60px 10px 0 0;
    }
}

.service-section .round-btn {
    margin-top: 80px;
}

.service-box-container {
    border-top: 1px solid var(--border-color1);
}

.service-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid var(--border-color1);
    padding: 40px 0 40px 32px;
    transition: var(--transition);
}

.service-box:hover .service-box-left-side .icon-box svg {
    fill: rgb(var(--primary-color));
}

.service-box:hover .service-box-left-side .icon-box path {
    fill: rgb(var(--primary-color));
}

.service-box:hover .kew-arrow {
    border-color: rgb(var(--primary-color));
    color: rgb(var(--primary-color));
}

.service-box:hover .kew-arrow .kt-one {
    left: 30px;
}

.service-box:hover .kew-arrow .kt-two {
    left: 150px;
}

.service-box:hover .title {
    color: rgb(var(--primary-color));
}

.service-box .service-box-left-side {
    display: flex;
    align-items: center;
    gap: 160px;
}

.service-box .service-box-left-side .icon-box {
    transition: var(--transition);
}

.service-box .service-box-left-side .icon-box svg {
    fill: rgb(var(--body-color));
    width: 80px;
    height: 80px;
}

.service-box .service-box-left-side .icon-box path {
    fill: rgb(var(--body-color));
}

.service-box .service-box-left-side .text-box {
    max-width: 618px;
    color: rgb(var(--body-color));
}

.service-box .service-box-left-side .text-box .title {
    transition: var(--transition);
    margin-bottom: 12px;
}

.service-box .kew-arrow {
    position: relative;
    overflow: hidden;
    width: 80px;
    min-width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid var(--border-color1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    background-color: var(--bg-color2);
    font-size: 24px;
    transform: rotate(-40deg);
}

.service-box .kew-arrow .kt-one,
.service-box .kew-arrow .kt-two {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.5s;
}

.service-box .kew-arrow .kt-one {
    left: -50px;
}

.service-box .kew-arrow .kt-two {
    left: 30px;
}

@media (max-width: 767px) {
    .service-section .section-header .right-side {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center !important;
        text-align: center;
        flex-direction: column;
    }

    .service-section .section-header .right-side .section-title {
        text-align: center;
    }
}

@media (max-width: 1199px) {
    .service-box .service-box-left-side {
        gap: 24px;
    }
}

@media (max-width: 991px) {
    .service-section .section-header .left-side {
        display: none;
    }

    .service-section .section-header .right-side {
        width: 100%;
    }

    .service-section .bottom-box .left-side {
        border: none;
        padding: 0;
        margin-top: 30px;
    }

    .service-section .round-btn {
        margin-top: 30px;
    }

    .service-box {
        padding: 24px 0;
    }
}

@media (max-width: 767px) {
    .service-box:hover .kew-arrow .kt-one {
        left: 20px;
    }

    .service-box .kew-arrow {
        width: 60px;
        min-width: 60px;
        height: 60px;
        font-size: 20px;
    }

    .service-box .kew-arrow .kt-one {
        left: -30px;
    }

    .service-box .kew-arrow .kt-two {
        left: 20px;
    }
}

@media (max-width: 575px) {
    .service-section .section-header .right-side {
        text-align: center;
    }

    .service-section .bottom-box .left-side .top-box {
        text-align: center;
    }

    .service-section .bottom-box .left-side .top-box .round-btn {
        margin: 30px auto 0;
    }

    .service-box {
        flex-direction: column;
        text-align: center;
    }

    .service-box .service-box-left-side {
        flex-direction: column;
    }
}

html[dir="rtl"] .service-section .bottom-box .left-side {
    padding: 60px 0 0 38px;
    border-right: none;
    border-left: 1px solid var(--border-color1);
}

html[dir="rtl"] .service-box {
    padding: 40px 32px 40px 0;
}

html[dir="rtl"] .service-box .kew-arrow {
    transform: rotate(215deg);
}

html[dir="rtl"] .service-box .kew-arrow i {
    transform: rotate(0);
}

/*----------------------------------------------
Service section end
----------------------------------------------*/
/*----------------------------------------------
Service section2 start
----------------------------------------------*/
.service-section2 .round-btn {
    margin-top: 80px;
}

.service-box2 .img-box img {
    aspect-ratio: 362/411;
    border-radius: 4px;
}

.service-box2:nth-child(even) .service-box2-row {
    flex-direction: row-reverse;
}

.service-box2:not(:last-child) {
    margin-bottom: 140px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .service-box2 .img-box {
        position: sticky;
        top: 100px;
    }
}

@media (max-width: 1199px) {
    .service-box2:not(:last-child) {
        margin-bottom: 100px;
    }

    .service-box2 .round-btn {
        margin-top: 30px;
    }
}

@media (max-width: 991px) {
    .service-box2:not(:last-child) {
        margin-bottom: 80px;
    }
}

@media (max-width: 767px) {
    .service-box2 {
        text-align: center;
    }

    .service-box2:not(:last-child) {
        margin-bottom: 50px;
    }

    .service-box2 .round-btn {
        margin: 30px auto 0;
    }
}

/*----------------------------------------------
Service section2 end
----------------------------------------------*/
/*----------------------------------------------
Top products section start
----------------------------------------------*/
.top-products-section {
    background-color: var(--bg-color2);
}

.top-products-section .section-header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 80px;
}

.top-products-section .section-header .left-side h2 {
    display: inline-block;
}

.top-products-section .section-header h2 span {
    display: contents;
}

.top-products-section .section-header .left-side {
    max-width: 680px;
}

@media (max-width: 767px) {
    .top-products-section .img-box img{
        width: 100%;
    }
}

.product-box2 {
    position: relative;
}

.product-box2:hover .hover-box {
    opacity: 1;
    visibility: visible;
}

.product-box2:hover .line {
    opacity: 1;
    visibility: visible;
    top: -42px;
}

.product-box2 .circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: var(--bg-color2);
    position: absolute;
    top: -35px;
    transform: translateX(-50%);
    left: 50%;
    z-index: 1;
}

.product-box2 .line {
    position: absolute;
    top: -42px;
    top: -56px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: var(--transition);
}

.product-box2 .img-box {
    position: relative;
}

.product-box2 .hover-box {
    position: absolute;
    inset: 0;
    background-color: rgb(var(--white), 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.product-box2 .cmn-btn {
    font-size: 18px;
}

.price-btn {
    font-weight: 500;
    text-decoration: underline;
    font-size: 18px;
}

@media (max-width: 767px) {
    .top-products-section .section-header {
        flex-direction: column;
        margin-bottom: 40px;
        text-align: center;
        align-items: center;
    }
}

/*----------------------------------------------
Top products section end
----------------------------------------------*/
/*----------------------------------------------
Gallery section start
----------------------------------------------*/
.gallery-section {
    background-color: var(--bg-color3);
}

.gallery-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.gallery-section .section-header .section-title {
    color: rgb(var(--white));
}

.gallery-section .section-header .left-side {
    max-width: 673px;
}

.gallery-section .section-header .right-side {
    max-width: 559px;
}

.gallery-section .img-box img {
    height: 100%;
    width: 100%;
    border-radius: 8px;
    -o-object-fit: cover;
    object-fit: cover;
}

.gallery-section .img-box-1 {
    aspect-ratio: 358/551;
}

.gallery-section .img-box-2 {
    aspect-ratio: 356/399;
    margin-top: 110px;
}

.gallery-section .img-box-3 {
    aspect-ratio: 89/137;
}

.gallery-section .img-box-4 {
    aspect-ratio: 356/399;
    margin-top: 40px;
}

.gallery-carousel .owl-stage {
    display: flex;
    align-items: center;
}

.gallery-carousel .item .img-box {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.gallery-carousel .item .img-box .thumb-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: 100%;
    transition: all 0.5s ease-in-out;
    background-size: cover;
}

.gallery-carousel .item .img-box:hover img:nth-child(1) {
    transform: translatex(0) scalex(1);
    opacity: 1;
    filter: blur(0);
}

.gallery-carousel .item .img-box:hover img:nth-child(2) {
    transform: translatex(-50%) scalex(2);
    opacity: 0;
    filter: blur(10px);
}

.gallery-carousel img {
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 4px;
}

@media (max-width: 1199px) {
    .gallery-section .section-header {
        display: flex;
        flex-direction: column;
        align-items: start !important;
    }

    .gallery-section .section-header .left-side {
        max-width: 750px;
    }

    .gallery-section .section-header .right-side {
        max-width: 700px;
    }
}

/*----------------------------------------------
Gallery section end
----------------------------------------------*/
/*----------------------------------------------
Working process start
----------------------------------------------*/
.working-process-section {
    background-color: var(--bg-color2);
}

.working-process-section .section-header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.working-process-section .section-header .section-title {
    color: rgb(var(--white));
}

.working-process-section .section-header .left-side {
    max-width: 578px;
}

.process-box {
    padding: 32px;
    border-radius: 8px;
    background-color: var(--bg-color1);
    position: relative;
    z-index: 0;
    height: 100%;
}

@media (max-width: 1399px) {
    .process-box {
        padding: 15px;
    }

    .process-box .title {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .process-box .title {
        font-size: 16px;
    }
}

@media (max-width: 500px) {
    .process-box .title {
        font-size: 24px;
    }

    .process-box .item {
        font-size: 18px;
    }
}

@media (max-width: 349px) {
    .process-box .title {
        font-size: 18px;
    }

    .process-box .item {
        font-size: 14px;
    }
}

.process-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(https://bug-finder.s3.ap-southeast-1.amazonaws.com/assets/v2/process/process-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: -1;
}

.process-box:hover::after {
    opacity: 1;
    visibility: visible;
}

.process-box:hover .icon-box svg {
    fill: rgb(var(--heading-color));
}

.process-box:hover .icon-box path {
    fill: rgb(var(--heading-color));
}

.process-box:hover .number {
    color: rgb(var(--heading-color));
}

.process-box .icon-box svg {
    width: 40px;
    height: 40px;
    fill: rgb(var(--light-gray));
}

.process-box .icon-box path {
    fill: rgb(var(--light-gray));
    transition: var(--transition);
}

.process-box .shape svg {
    width: 100%;
}

.process-box .number {
    color: rgb(var(--light-gray));
    transition: var(--transition);
}

@media (max-width: 767px) {
    .working-process-section .section-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 500px) {
    .working-process-big {
        display: none;
    }
}

@media (min-width: 501px) {
    .working-process-sm {
        display: none;
    }
}

/*----------------------------------------------
Working process end
----------------------------------------------*/
/*----------------------------------------------
Cta section start
----------------------------------------------*/
.cta-section .text-box .cmn-btn {
    margin-top: 56px;
    padding: 0 60px;
}

.cta-section .text-box .section-title {
    font-size: 42px;
    line-height: 56px;
    margin-bottom: 15px;
}

@media (max-width: 767px) {
    .cta-section .text-box .section-title {
        font-size: 32px;
        line-height: 42px;
    }
}

@media (max-width: 450px) {
    .cta-section .text-box .section-title {
        font-size: 26px;
        line-height: 38px;
    }
}

.cta-section .right-side link {
    font-size: 18px;
    font-weight: 400;
}

.cta-section .contact-message-box {
    background-color: var(--bg-color1);
    border: 1px solid var(--border-color1);
    border-radius: 16px;
}

.cta-section .profile-box3 {
    margin-top: 73px;
}

@media (min-width: 1200px) {
    .cta-section .profile-box3 {
        margin-top: 45px;
    }
}

.cta-section .profile-box3 .img-box {
    max-width: 152px;
    max-height: 152px;
}

.cta-section-inner {
    padding: 70px 100px;
    border-radius: 16px;
    position: relative;
    z-index: 0;
    background-image: url(https://bug-finder.s3.ap-southeast-1.amazonaws.com/assets/v2/cta/shape.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.cta-section-inner::after {
    content: "";
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    background-color: rgb(var(--light-grayish-blue));
    border-radius: 16px;
    opacity: 0.96;
}

@media (min-width: 1200px) {
    .cta-section .right-side {
        max-width: 545px;
    }

    .cta-section .text-box {
        max-width: 497px;
    }
}

@media (max-width: 1199px) {
    .cta-section .profile-box3 {
        margin-top: 40px;
    }

    .cta-section-inner {
        padding: 30px;
    }
}

@media (max-width: 991px) {
    .cta-section .text-box {
        text-align: center;
    }

    .cta-section .profile-box3 {
        display: none;
    }
}

@media (max-width: 575px) {
    .cta-section-inner {
        padding: 15px;
    }

    .cta-section .text-box {
        text-align: center;
    }

    .cta-section .profile-box3 {
        flex-direction: column;
        align-items: center;
    }
}

/*----------------------------------------------
Cta section end
----------------------------------------------*/
/*----------------------------------------------
Testimonial section start
----------------------------------------------*/
.testimonial-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.testimonial-section .section-header .section-title {
    color: rgb(var(--white));
}

.testimonial-section .section-header .left-side {
    max-width: 589px;
}

.testimonial-section .text-box {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-section .text-box .cmn-hr2 {
    margin-top: 60px;
}

@media (max-width: 767px) {
    .testimonial-section .text-box .cmn-hr2 {
        margin-top: 25px;
    }
}

.testimonial-section .bottom-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: auto;
}

.testimonial-section .quote-icon svg {
    fill: rgb(var(--body-color));
}

.testimonial-section .quote-icon path {
    fill: rgb(var(--body-color));
}

.testimonial-box {
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color1);
}

@media (max-width: 767px) {
    .testimonial-box {
        padding: 20px;
    }
}

.testimonial-box:not(:last-child) {
    margin-bottom: 40px;
}

.testimonial-box:nth-child(even) .testimonial-box-row {
    flex-direction: row-reverse;
}

.testimonial-box .img-box {
    position: relative;
    aspect-ratio: 695/434;
    height: 100%;
    width: 100%;
}

.testimonial-box .img-box img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 767px) {
    .testimonial-section .section-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 575px) {
    .testimonial-section .text-box .cmn-hr2 {
        margin-top: 30px;
    }

    .testimonial-box {
        padding: 20px;
    }
}

/*----------------------------------------------
Testimonial section end
----------------------------------------------*/
/*----------------------------------------------
Newsletter section start
----------------------------------------------*/
.newsletter-section {
    background-color: var(--bg-color2);
    position: relative;
    background-image: url(https://bug-finder.s3.ap-southeast-1.amazonaws.com/assets/v2/newsletter/mask-group.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.newsletter-section .text-box {
    max-width: 676px;
    margin: auto;
    text-align: center;
}

.newsletter-section .section-subtitle {
    text-transform: uppercase;
    color: rgb(var(--primary-color));
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 3.2px;
}

.newsletter-section .img-box {
    position: absolute;
}

@media (max-width: 1199px) {
    .newsletter-section .img-box {
        display: none !important;
    }
}

.newsletter-section .img-box img {
    width: 100%;
    height: 100%;
}

.newsletter-section .img-box-1 {
    aspect-ratio: 142/159;
    left: 15%;
    top: 73px;
    max-width: 142px;
}

.newsletter-section .img-box-2 {
    aspect-ratio: 1/1;
    top: 73px;
    right: 15%;
    max-width: 75px;
}

.newsletter-section .img-box-3 {
    aspect-ratio: 1/1;
    bottom: 79px;
    left: 22%;
    max-width: 75px;
}

.newsletter-section .img-box-4 {
    aspect-ratio: 142/159;
    bottom: 79px;
    right: 19%;
    max-width: 142px;
}

.newsletter-form {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 550px;
    margin: 20px auto 0;
}

.newsletter-form .form-control {
    border-radius: 8px;
    height: 54px;
    padding: 10px 50px 10px 20px;
    border: 1px solid var(--border-color1);
    background-color: var(--bg-color1);
}

.newsletter-form .form-control:focus {
    border-color: rgb(var(--primary-color));
}

.newsletter-form .subscribe-btn {
    transition: var(--transition);
    position: absolute;
    right: 5px;
    background-color: rgb(var(--primary-color));
    height: calc(100% - 10px);
    width: 42px;
    height: 42px;
    border-radius: 6px;
    color: rgb(var(--white));
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form .subscribe-btn:hover {
    background-color: rgb(var(--primary-color), 0.8);
    color: rgb(var(--white));
}

@media (max-width: 1399px) {
    .newsletter-section .img-box-1 {
        left: 2%;
    }

    .newsletter-section .img-box-2 {
        right: 3%;
    }

    .newsletter-section .img-box-3 {
        left: 10%;
    }

    .newsletter-section .img-box-4 {
        right: 3%;
    }
}

@media (max-width: 991px) {
    .newsletter-section .img-box {
        display: none;
    }
}

html[dir="rtl"] .newsletter-form .form-control {
    padding: 10px 10px 10px 50px;
}

html[dir="rtl"] .newsletter-form .subscribe-btn {
    left: 5px;
    right: auto;
}

html[dir="rtl"] .newsletter-form .subscribe-btn i {
    transform: rotatey(180deg);
}

/*----------------------------------------------
Newsletter section end
----------------------------------------------*/
/*----------------------------------------------
18. Blog section start
----------------------------------------------*/
.blog-section-top .page-tabs {
    display: inline-flex;
}

.blog-section {
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.blog-btn {
    color: rgb(var(--heading-color));
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-btn:hover {
    gap: 10px;
}

.blog-btn i {
    margin-top: 2px;
}

.blog-box:hover .img-box {
    overflow: hidden;
    border-radius: 4px;
}

.blog-box:hover .img-box img {
    transform: scale(1);
    border-radius: 4px;
}

.blog-box .img-box {
    overflow: hidden;
    width: 100%;
    border-radius: 4px;
}

.blog-box .img-box img {
    transition: var(--transition);
    transform: scale(1.05);
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 4px;
}

.blog-box .text-box .para-text {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
}

.blog-box .blog-title {
    margin-top: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    font-size: 18px;
    line-height: 30px;
    color: rgb(var(--heading-color));
}

.blog-box .blog-title:hover {
    color: rgb(var(--primary-color));
}

.blog-box .cmn-btn3 {
    margin-top: 30px;
}

.blog-box.blog-box-list {
    display: flex;
    -moz-column-gap: 27px;
    column-gap: 27px;
}

.blog-box.blog-box-list .img-box {
    max-width: 207px;
}

.blog-box.blog-box-list .img-box img {
    aspect-ratio: 69/44;
    height: 100%;
}

.blog-box.blog-box-list .blog-title {
    -webkit-line-clamp: 3;
    line-clamp: 3;
    font-weight: 500;
}

.blog-box.blog-box-small:not(:last-child) {
    margin-bottom: 100px;
}

.blog-box.blog-box-small .img-box {
    max-width: 358px;
}

.blog-box.blog-box-small .img-box img {
    aspect-ratio: 175/114;
}

.blog-box.blog-box-small .text-box {
    margin-top: 16px;
}

.blog-box.blog-box-big:not(:last-child) {
    margin-bottom: 50px;
}

.blog-box.blog-box-big .img-box {
    max-width: 745px;
}

.blog-box.blog-box-big .img-box img {
    aspect-ratio: 723/491;
}

.blog-box.blog-box-big .text-box {
    margin-top: 30px;
}

.blog-box.blog-box-big .blog-title {
    max-width: 512px;
}

.blog-box.blog-box-without-img {
    border-bottom: 1px solid var(--border-color1);
    padding-bottom: 32px;
}

.blog-box.blog-box-without-img:not(:last-child) {
    margin-bottom: 50px;
}

.blog-box.blog-box-without-img .blog-title {
    margin: 0 0 16px;
}

.blog-meta {
    display: flex;
    align-items: center;
    -moz-column-gap: 40px;
    column-gap: 40px;
}

@media (max-width: 1199px) {
    .blog-box.blog-box-list {
        -moz-column-gap: 16px;
        column-gap: 16px;
    }
}

@media (max-width: 767px) {
    .blog-box.blog-box-small:not(:last-child) {
        margin-bottom: 40px;
    }

    .blog-box.blog-box-small .img-box {
        max-width: 100%;
    }
}

html[dir="rtl"] .blog-box .blog-author .author-img {
    margin-right: 0;
    margin-left: 10px;
}

html[dir="rtl"] .blog-box .blog-btn i {
    transform: rotate(180deg);
}

/*----------------------------------------------
Blog section end
----------------------------------------------*/
/*----------------------------------------------
Blog section 2 start
----------------------------------------------*/
.blog-box-2 {
    padding: 20px;
    border-radius: 8px;
    background-color: var(--bg-color6);
}

.blog-box-2:hover .img-box img {
    transform: scale(1);
}

.blog-box-2 .img-box {
    overflow: hidden;
    border-radius: 8px;
}

.blog-box-2 .img-box img {
    border-radius: 8px;
    aspect-ratio: 423/331;
    transform: scale(1.05);
    transition: var(--transition);
}

.blog-box-2 .text-box .blog-title {
    margin-top: 32px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    font-size: 24px;
    line-height: 38px;
    color: rgb(var(--heading-color));
    font-weight: 500;
}

.blog-box-2 .text-box .blog-title:hover {
    color: rgb(var(--primary-color));
}

.blog-box-2 .cmn-hr2 {
    border-color: var(--border-color4);
}

.blog-meta-2 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 32px;
    gap: 7px;
}

.blog-meta-2 .item {
    border: 1px solid var(--border-color4);
    padding: 6px 24px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
}

.blog-meta-2 .category {
    background-color: rgb(var(--primary-color));
    color: rgb(var(--white));
    text-transform: uppercase;
}

.category-list {
    margin-top: 32px;
}

.category-list .item {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    line-height: 26px;
    padding: 16px 24px;
    background-color: var(--bg-color1);
    border-radius: 8px;
    font-size: 18px;
}

.category-list .item:not(:last-child) {
    margin-bottom: 24px;
}

@media (max-width: 1199px) {
    .blog-box-2 {
        padding: 16px;
    }

    .blog-meta-2 .item {
        font-size: 12px;
        padding: 6px 16px;
    }
}

@media (max-width: 991px) {
    .blog-box-2 .text-box .blog-title {
        font-size: 20px;
        line-height: 32px;
    }
}

/*----------------------------------------------
Blog section 2 end
----------------------------------------------*/
/*----------------------------------------------
25. Blog details section start
----------------------------------------------*/
.blog-details-section {
    background: var(--bg-color1);
}

.blog-details-section .blog-box-large .img-box {
    max-width: 1133px;
}

.blog-details-section .blog-box-large .img-box img {
    border-radius: 8px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 124/65;
}

.blog-details-section .blog-box-large .text-box {
    max-width: 1089px;
    margin-top: 60px;
}

.blog-details-section .blog-box-large .text-box .blog-title {
    margin-bottom: 20px;
    max-width: 806px;
}

.blog-quote-box {
    margin-top: 50px;
    position: relative;
    padding: 4px 0 0 32px;
    border-left: 8px solid rgb(var(--primary-color));
    border-radius: 12px 0 0 12px;
    max-width: 975px;
}

.blog-quote-box .content {
    position: relative;
    z-index: 1;
}

.blog-quote-box .title {
    position: relative;
    padding: 10px 0 0 30px;
    margin: 0;
    display: flex;
    align-items: center;
    font-weight: 400;
}

.blog-quote-box .title::after {
    position: absolute;
    content: "";
    background-color: rgb(var(--primary-color));
    width: 20px;
    height: 2px;
    left: 0;
}

.social-share-box {
    margin-top: 30px;
}

.social-share-box .title {
    text-transform: capitalize;
    margin-bottom: 10px;
}

.blog-img-box-container {
    margin-top: 100px;
}

.blog-img-box-container .blog-img-box {
    max-width: 553px;
    position: relative;
    margin: 0 auto;
}

.blog-img-box-container .blog-img-box img {
    aspect-ratio: 273/164;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 4px;
}

.blog-img-box-container .blog-img-box .video-play-btn::after {
    color: rgb(var(--white));
}

.blog-img-box-container .blog-img-box .video-play-btn i {
    background-color: rgb(var(--white));
    color: rgb(var(--heading-color));
}

@media (max-width: 767px) {
    .blog-img-box-container {
        margin-top: 50px;
    }

    .blog-box.blog-box-without-img:not(:last-child) {
        margin-bottom: 30px;
    }

    .blog-quote-box {
        margin-top: 30px;
        padding: 4px 0 0 16px;
    }
}

html[dir="rtl"] .sidebar-widget-item .content-area {
    margin-left: 0;
    margin-right: 15px;
}

html[dir="rtl"] .sidebar-widget-box .widget-title::before,
html[dir="rtl"] .sidebar-widget-box .widget-title::after {
    right: 0;
    left: auto;
}

html[dir="rtl"] .blog-quote-box {
    border-left: none;
    border-right: 8px solid rgb(var(--primary-color));
    padding: 4px 32px 0 0;
    border-radius: 0 12px 12px 0;
}

html[dir="rtl"] .blog-quote-box .icon-area {
    left: 20px;
    right: auto;
}

html[dir="rtl"] .blog-quote-box .icon-area i {
    transform: rotateY(180deg);
}

html[dir="rtl"] .blog-quote-box .title {
    padding: 10px 30px 0 0;
}

html[dir="rtl"] .blog-quote-box .title::after {
    left: auto;
    right: 0;
}

/*----------------------------------------------
Recent post start
----------------------------------------------*/
.recent-post-item {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    gap: 8px;
    background-color: var(--bg-color1);
}

.recent-post-item:hover .img-box img {
    transform: scale(1);
}

.recent-post-item:not(:last-child) {
    margin-bottom: 24px;
}

.recent-post-item .img-box {
    width: 128px;
    flex-shrink: 0;
    overflow: hidden;
}

.recent-post-item .img-box img {
    transform: scale(1.05);
    transition: var(--transition);
    height: 100%;
}

.recent-post-item .text-box {
    padding: 16px;
}

.recent-post-item .text-box .title {
    font-size: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    line-height: 28px;
    color: rgb(var(--heading-color));
}

.recent-post-item .text-box .title:hover {
    color: rgb(var(--primary-color));
}

.recent-post-item .text-box .date {
    font-size: 14px;
    margin-top: 16px;
    line-height: 26px;
    display: flex;
    gap: 7px;
}

@media (max-width: 375px) {
    .sidebar-widget-box-2 {
        padding: 15px;
    }

    .recent-post-item {
        gap: 0;
    }

    .recent-post-item .img-box {
        width: 100px;
    }

    .recent-post-item .text-box .date {
        font-size: 13px;
    }
}

html[dir="rtl"] .sidebar-widget-box-2 .widget-title::before {
    left: auto;
    right: -24px;
}

/*----------------------------------------------
Recent post end
----------------------------------------------*/
/*----------------------------------------------
Blog details end
----------------------------------------------*/
/*----------------------------------------------
20. Footer section start
----------------------------------------------*/
.footer-section {
    position: relative;
    z-index: 0;
    padding-bottom: 40px;
    background-color: var(--bg-color1);
}

.footer-section .footer-widget .widget-title {
    position: relative;
    margin-bottom: 20px;
    text-transform: capitalize;
    font-size: 20px;
    font-family: var(--heading-font);
    color: rgb(var(--heading-color));
}

.footer-section .partner-carousel .owl-stage {
    display: flex;
    align-items: center;
}

.footer-section .partner-carousel .item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-section .social-box a {
    background-color: var(--bg-color4);
    color: rgb(var(--heading-color));
}

.footer-section .social-box a:hover {
    background-color: rgb(var(--primary-color));
    color: rgb(var(--white));
}

.footer-widget .widget-logo {
    margin-bottom: 20px;
    display: inline-flex;
}

.footer-service-extra-list {
    margin-top: 50px;
}

@media (max-width: 499px) {
    .footer-service-extra-list {
        margin-top: 0;
    }
}

.footer-widget ul li {
    line-height: 2.5;
}

.footer-widget .widget-link {
    position: relative;
}

@media (max-width: 1399px) {
    .footer-widget .widget-link {
        font-size: 13px;
    }
}

@media (max-width: 1200px) {
    .footer-widget .widget-link {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .footer-widget .widget-link {
        font-size: 13px;
        line-height: 20px;

    }
}

@media (max-width: 450px) {
    .footer-widget .widget-link {
        font-size: 18px;
        line-height: 20px;

    }
}

.footer-widget .widget-link:hover {
    color: rgb(var(--primary-color));
}

.store-box {
    margin-top: 30px;
    display: flex;
    gap: 10px;
}

.footer-section-inner {
    border-bottom: 1px solid var(--border-color1);
}

.copyright-section {
    padding-top: 30px;
}

.copyright-section .policy-links {
    display: flex;
    -moz-column-gap: 32px;
    column-gap: 32px;
    line-height: 26px;
}

.copyright-section .policy-links li:not(:last-child) a {
    position: relative;
}

.copyright-section .policy-links li:not(:last-child) a:after {
    content: "";
    width: 1px;
    height: 10px;
    position: absolute;
    background-color: #cfcfcf;
    top: 50%;
    left: calc(100% + 16px);
    transform: translateY(-50%);
}

@media (min-width: 1200px) {
    .footer-section .left-side-col {
        border-right: 1px solid var(--border-color1);
    }
}

@media (min-width: 992px) {
    .footer-section .left-side-col {
        padding-right: 18px;
        padding-bottom: 60px;
    }

    .footer-section .right-side-col {
        padding-left: 60px;
        padding-bottom: 60px;
    }
}

@media (max-width: 991px) {
    .footer-section .right-side-col {
        padding-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .footer-widget {
        text-align: center;
    }
}

html[dir="rtl"] .footer-section .footer-widget .widget-title::before,
html[dir="rtl"] .footer-section .footer-widget .widget-title::after {
    right: 0;
    left: auto;
}

html[dir="rtl"] .footer-section .footer-widget .widget-link {
    margin-left: 0;
    margin-right: 18px;
}

html[dir="rtl"] .footer-section .footer-widget .widget-link::before {
    left: auto;
    right: -17px;
}

html[dir="rtl"] .footer-section .footer-widget .contact-item i {
    margin-right: 0;
    margin-left: 10px;
}

@media (min-width: 992px) {
    html[dir="rtl"] .footer-section .left-side-col {
        border-right: none;
        border-left: 1px solid var(--border-color1);
        padding-right: 0;
        padding-left: 60px;
    }

    html[dir="rtl"] .footer-section .right-side-col {
        padding-left: 0;
        padding-right: 60px;
    }
}

/*----------------------------------------------
Footer section end
----------------------------------------------*/
/*----------------------------------------------
24. Contact section start
----------------------------------------------*/
.contact-section-top {
    display: flex;
    -moz-column-gap: 101px;
    column-gap: 101px;
}

.contact-section-top .right-side-box {
    margin-top: 137px;
    display: flex;
    align-items: center;
    -moz-column-gap: 65px;
    column-gap: 45px;
}

.contact-section-top .right-side-box .icon-box svg {
    width: 100%;
}

.contact-section-top .right-side-box .text {
    max-width: 528px;
}

.contact-section-top .img-box {
    max-width: 745px;
}

.contact-section-top .img-box img {
    aspect-ratio: 736/587;
    -o-object-fit: cover;
    object-fit: cover;
}

.contact-section {
    position: relative;
    z-index: 0;
}

.contact-section .section-title {
    max-width: 470px;
}

.contact-item-list {
    margin-top: 40px;
    display: flex;
    -moz-column-gap: 40px;
    column-gap: 40px;
    row-gap: 16px;
}

.contact-item-list .item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item-list .item .icon-area {
    border-radius: 5px;
    width: 40px;
    height: 40px;
    font-size: 18px;
    color: rgb(var(--primary-color));
    background-color: rgb(var(--primary-color), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-message-box {
    background-color: var(--bg-color2);
    padding: 40px 30px;
    max-width: 745px;
    margin-left: auto;
}

@media (max-width: 767px) {
    .contact-message-box {
        padding: 15px;
    }
}

.contact-message-box .contact-header {
    margin-bottom: 30px;
}

.contact-message-box .btn-area {
    margin-top: 60px;
}

@media (max-width: 767px) {
    .contact-message-box .btn-area {
        margin-top: 30px;
    }
}

.contact-message-box .form-label {
    text-transform: capitalize;
}

.contact-message-box .form-label h5 {
    font-weight: 600;
}

.contact-section2 .contact-message-box {
    background-color: var(--bg-color1);
}

.contact-section2 .contact-message-box .form-control,
.contact-section2 .contact-message-box .form-select {
    background-color: var(--bg-color1);
}

@media (min-width: 768px) {
    .contact-section-top .left-side-box {
        max-width: 405px;
    }
}

@media (min-width: 992px) {
    .contact-section-top .left-side-box .last-text {
        font-size: 60px;
    }
}

@media (max-width: 1199px) {
    .contact-section-top {
        -moz-column-gap: 20px;
        column-gap: 20px;
    }

    .contact-section-top .right-side-box {
        margin-top: 60px;
        -moz-column-gap: 30px;
        column-gap: 30px;
    }
}

@media (max-width: 991px) {
    .contact-section-top .right-side-box {
        margin-top: 0;
    }

    .contact-section-top .right-side-box .icon-box {
        display: none;
    }
}

@media (max-width: 767px) {
    .contact-section .section-title {
        margin: 0 auto 24px;
    }

    .contact-section-top {
        flex-direction: column;
        text-align: center;
    }

    .contact-box {
        text-align: center;
    }

    .contact-item-list {
        justify-content: center;
    }

    .location-box {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .contact-message-box {
        padding: 20px 15px;
    }

    .contact-item-list {
        margin-top: 0;
        flex-direction: column;
        align-items: center;
    }
}

/*----------------------------------------------
Contact section end
----------------------------------------------*/
/*----------------------------------------------
24. Login Signup section start
----------------------------------------------*/
.login-register-section {
    background-color: var(--bg-color2);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.login-register-wrapper {
    padding: 30px;
    background-color: var(--bg-color1);
    border-radius: 16px;
    margin: 20px;
}

.login-register-section-inner {
    background-image: url(https://bug-finder.s3.ap-southeast-1.amazonaws.com/assets/v2/login-signup/login-signup-bg.png);
    padding: 30px;
    border-radius: 16px;
    display: flex;
    justify-content: end;
    align-items: center;
}

.login-register-form {
    padding: 40px;
    z-index: 1;
    position: relative;
    background-color: var(--bg-color1);
    max-width: 593px;
    border-radius: 16px;
}

.login-register-form .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.login-register-form .logo {
    margin-bottom: 24px;
    display: inline-flex;
}

.login-register-form .form-control {
    height: 60px;
    border-radius: 8px;
}

.login-register-form .cmn-btn {
    height: 60px;
    border-radius: 8px;
}

.login-register-form .cmn-btn .btn-wrapper {
    height: 60px;
}

.login-register-form .cmn-btn .btn-wrapper .btn-single {
    height: 60px;
}

.password-box {
    position: relative;
    display: flex;
    align-items: center;
}

.password-box .form-control {
    padding-right: 35px;
}

.password-box .password-icon {
    position: absolute;
    right: 15px;
    cursor: pointer;
}

@media (max-width: 991px) {
    .login-register-section .login-register-form {
        padding: 40px;
    }

    .login-register-form .section-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .login-register-section .login-register-form {
        margin: auto;
    }

    .login-register-wrapper {
        padding: 0;
        margin: 20px 0;
    }

    .login-register-section-inner {
        padding: 16px;
    }
}

@media (max-width: 575px) {
    .login-register-section .login-register-form {
        padding: 20px;
    }
}

html[dir="rtl"] .password-box .form-control {
    padding-right: 0.75rem;
    padding-left: 35px;
}

html[dir="rtl"] .password-box .password-icon {
    right: auto;
    left: 15px;
}

html[dir="rtl"] .login-register-box .img-box img {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

/*----------------------------------------------
Login Signup end
----------------------------------------------*/
/*----------------------------------------------
26. Pagination section start
----------------------------------------------*/
.pagination-section {
    margin-top: 60px;
}

.pagination-section nav .pagination {
    gap: 16px;
}

.pagination-section nav .pagination .page-item .page-link {
    width: 40px;
    height: 40px;
    border-radius: 4px !important;
    color: rgb(var(--heading-color));
    background-color: var(--bg-color1);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--border-color1);
    box-shadow: none;
}

.pagination-section nav .pagination .page-item .page-link:hover,
.pagination-section nav .pagination .page-item .page-link:focus {
    background-color: rgb(var(--primary-color));
    color: rgb(var(--white));
    border: 1px solid rgb(var(--primary-color));
}

.pagination-section nav .pagination .page-item.active .page-link {
    background-color: rgb(var(--primary-color));
    color: rgb(var(--white));
    border-color: rgb(var(--primary-color));
}

html[dir="rtl"] .pagination-section nav .pagination .page-item .page-link i {
    transform: rotate(180deg);
}

/*----------------------------------------------
Pagination end
----------------------------------------------*/
/*----------------------------------------------
About hero section start
----------------------------------------------*/
.about-hero-section {
    position: relative;
    padding: 160px 0 100px;
}

.about-hero-section .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-hero-section .section-header .left-side {
    max-width: 1006px;
}

.about-hero-section .section-header .title {
    font-weight: 600;
    font-size: 80px;
    line-height: 110px;
    letter-spacing: 0.8px;
}

.about-hero-section .section-header .icon-box {
    width: 152px;
    min-width: 152px;
    height: 152px;
    border-radius: 50%;
    border: 1px solid var(--border-color1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-hero-section .bottom-box .img-box {
    height: 100%;
}

.about-hero-section .bottom-box .img-box-1 {
    aspect-ratio: 981/574;
}

.about-hero-section .bottom-box .img-box-1 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 8px;
}

.about-hero-section .bottom-box .img-box-2 {
    aspect-ratio: 483/580;
}

.about-hero-section .bottom-box .img-box-2 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 8px;
}

.about-hero-section .bg-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    max-width: 1332px;
    max-height: 980px;
    z-index: -1;
}

.about-hero-section .bg-img img {
    height: 100%;
    width: 100%;
}

@media (max-width: 1399px) {
    .about-hero-section .section-header .title {
        font-size: 60px;
        line-height: 86px;
    }
}

@media (max-width: 991px) {
    .about-hero-section {
        padding: 140px 0 80px;
    }

    .about-hero-section .section-header .title {
        font-size: 46px;
        line-height: 65px;
    }

    .about-hero-section .section-header .icon-box {
        display: none;
    }
}

@media (max-width: 767px) {
    .about-hero-section {
        padding: 110px 0 50px;
    }

    .about-hero-section .section-header .title {
        font-size: 32px;
        line-height: 50px;
        text-align: center;
    }
}

/*----------------------------------------------
About hero section end
----------------------------------------------*/
/*----------------------------------------------
Vission section start
----------------------------------------------*/
.vission-section {
    background-color: var(--bg-color2);
}

.vission-section .section-title {
    margin-bottom: 40px;
}

.vission-section .img-box {
    aspect-ratio: 736/421;
}

.vission-section .img-box img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    -o-object-fit: cover;
    object-fit: cover;
}

.vission-box {
    background-color: var(--bg-color1);
    border-radius: 4px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
}

.vission-box .description {
    color: rgb(var(--body-color));
    margin-top: 24px;
}

.vission-box .top-box {
    display: flex;
    align-items: center;
    gap: 18px;
}

.vission-box .bottom-box {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-top: 48px;
}

.vission-box .bottom-box .arrow-shape {
    margin: 0 -24px -32px 0;
}

.vission-box .bottom-box .arrow-shape svg {
    width: 100%;
    height: 100%;
}

.vission-box .number {
    font-size: 80px;
    font-weight: 500;
    line-height: 70px;
    letter-spacing: 0.8px;
    color: rgb(var(--light-gray));
}

@media (min-width: 992px) {
    .vission-section .round-btn {
        margin: 60px 0;
    }

    .vission-box .description {
        line-height: 44px;
    }
}

@media (max-width: 1199px) {
    .vission-box .bottom-box {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .vission-section {
        text-align: center;
    }

    .vission-box .top-box {
        justify-content: center;
    }

    .vission-box .top-box .shape {
        display: none;
    }

    .vission-box .description {
        margin-top: 10px;
    }
}

/*----------------------------------------------
Vission section end
----------------------------------------------*/
/*----------------------------------------------
Message section start
----------------------------------------------*/
.message-section {
    background-color: var(--bg-color3);
}

.message-box-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 130px;
}

.message-box-container::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 1px;
    background-color: #242422;
    left: 50%;
    transform: translateX(-50%);
}

.message-box .section-title {
    color: rgb(var(--white));
    max-width: 509px;
    margin-bottom: 32px;
}

.message-box .section-title .line-right {
    margin-left: 37px;
}

.message-box .profile-box {
    margin-top: 40px;
}

.message-box .profile-box .title {
    color: rgb(var(--white));
}

@media (max-width: 1199px) {
    .message-box-container {
        gap: 80px;
    }

    .message-box .section-title img {
        display: none;
    }
}

@media (max-width: 991px) {
    .message-box-container {
        gap: 50px;
    }
}

@media (max-width: 767px) {
    .message-box-container {
        gap: 80px;
        grid-template-columns: repeat(1, 1fr);
    }

    .message-box-container::after {
        width: 100%;
        height: 1px;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
    }

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

/*----------------------------------------------
Message section end
----------------------------------------------*/
/*----------------------------------------------
Career section start
----------------------------------------------*/
.career-section {
    background-color: var(--bg-color2);
}

.career-section .round-btn {
    width: 156px;
    height: 156px;
    margin-top: 40px;
}

.career-section .img-box {
    max-width: 539px;
    margin: 0 auto;
}

.career-section .img-box img {
    aspect-ratio: 539/573;
}

@media (min-width: 992px) {
    .career-section .left-side {
        max-width: 544px;
    }
}

@media (max-width: 767px) {
    .career-section {
        text-align: center;
    }

    .career-section .round-btn {
        margin: 40px auto 0;
    }
}

/*----------------------------------------------
Career section end
----------------------------------------------*/
/*----------------------------------------------
Team section start
----------------------------------------------*/
.team-section .section-header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 80px;
}

.team-section .section-header .left-side {
    max-width: 571px;
}

.team-carousel .owl-stage {
    display: flex;
    align-items: center;
}

.team-carousel .item .img-box {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.team-carousel .item .img-box .thumb-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: 100%;
    transition: all 0.5s ease-in-out;
    background-size: cover;
}

.team-carousel.item .img-box:hover img:nth-child(1) {
    transform: translatex(0) scalex(1);
    opacity: 1;
    filter: blur(0);
}

.team-carousel .item .img-box:hover img:nth-child(2) {
    transform: translatex(-50%) scalex(2);
    opacity: 0;
    filter: blur(10px);
}

.team-carousel img {
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 4px;
}

@media (max-width: 991px) {
    .team-section .section-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .team-section .section-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/*----------------------------------------------
Team section end
----------------------------------------------*/
/*----------------------------------------------
Banner section start
----------------------------------------------*/
.banner-section {
    padding: 180px 0 100px;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.banner-section .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 0;
}

.section-header-two {
    display: inline-block;
    width: 100%;
}

.section-header-two .left-side {
    max-width: 100% !important;
}

.banner-section .left-side {
    max-width: 1360px;
}

.banner-section .banner-title {
    color: rgb(var(--heading-color));
    font-family: var(--heading-font);
    font-size: 80px;
    font-weight: 600;
    line-height: 120px;
    letter-spacing: 0.8px;
}

.banner-section .banner-title-two {
    color: rgb(var(--heading-color));
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 60px;
    line-height: normal;
    letter-spacing: 0.01em;
    text-align: center;
    max-width: 1070px;
    justify-content: center !important;
    margin: 0 auto;
}

.banner-section .banner-text-two {
    font-family: var(--heading-font);
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0em;
    text-align: center;
    color: #8d8d8d;
    max-width: 712px;
    margin: 0 auto;
}

.banner-section .banner-title-two .gift-thumb {
    width: 70px;
    height: 70px;
    display: inline-block;
}

.banner-section .banner-title-two .gift-thumb img {
    margin-bottom: 23px;
}

@media (max-width: 768px) {
    .banner-section .banner-title-two {
        font-size: 45px;
    }
}

@media (max-width: 576px) {
    .banner-section .banner-title-two {
        font-size: 40px;
    }
}

@media (max-width: 500px) {
    .banner-section .banner-title-two {
        font-size: 38px;
    }
}

@media (max-width: 470px) {
    .banner-section .banner-title-two {
        font-size: 35px;
    }
}

@media (max-width: 450px) {
    .banner-section .banner-title-two {
        font-size: 25px;
    }
}

.banner-section .banner-text {
    font-family: var(--heading-font);
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0em;
    text-align: center;
    color: #8d8d8d;
    margin-top: 24px;
}

.banner-text-three {
    max-width: 463px;
    margin: 0 auto;
}

.banner-section .bg-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    max-width: 1332px;
    max-height: 980px;
    z-index: -1;
}

.banner-section .shape {
    position: absolute;
    top: 68%;
    left: 30%;
    z-index: -1;
}

.banner-section .ellipse-blur-1 {
    bottom: -86px;
    left: -31px;
}

.banner-section .ellipse-blur-2 {
    bottom: -86px;
    right: -127px;
}

.banner-section.blog-banner {
    padding: 146px 0 100px;
}

.banner-section.blog-banner .ellipse-blur-1 {
    bottom: auto;
    top: -120%;
    left: -31px;
}

.banner-section.blog-banner .ellipse-blur-2 {
    bottom: auto;
    top: -120%;
    right: -127px;
}

@media (max-width: 1399px) {
    .banner-section .banner-title {
        font-size: 60px;
        line-height: 80px;
    }

    .banner-section .banner-title img {
        max-width: 200px;
    }
}

@media (max-width: 1199px) {
    .banner-section .banner-title {
        font-size: 55px;
        line-height: 80px;
    }

    .banner-section .banner-title img {
        max-width: 160px;
    }
}

@media (max-width: 991px) {
    .banner-section {
        padding: 160px 0 80px;
    }

    .banner-section .banner-title {
        font-size: 46px;
        line-height: 65px;
    }

    .banner-section .right-side {
        display: none;
    }

    .banner-section .shape {
        top: 28%;
        right: 11%;
        left: auto;
    }

    .banner-section.blog-banner {
        padding: 120px 0 80px;
    }
}

@media (max-width: 767px) {
    .banner-section {
        padding: 130px 0 50px;
    }

    .banner-section .banner-title {
        font-size: 32px;
        line-height: 50px;
    }

    .banner-section .banner-title img {
        max-width: 100px;
    }

    .banner-section.blog-banner {
        padding: 90px 0 50px;
    }
}

@media (max-width: 575px) {
    .banner-section {
        padding: 100px 0 50px;
    }

    .banner-section .banner-title {
        font-size: 26px;
        line-height: 40px;
    }
}

@media (max-width: 424px) {
    .banner-section .banner-title {
        font-size: 22px;
        line-height: 40px;
    }

    .banner-section .banner-title img {
        max-width: 80px;
    }
}

html[dir="rtl"] .banner-section .banner-title img {
    transform: rotateY(180deg);
}

/*----------------------------------------------
Banner section end
----------------------------------------------*/
/*----------------------------------------------
Banner section2 start
----------------------------------------------*/
.banner-section2 {
    padding: 180px 0 100px;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.banner-section2 .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 0;
}

.banner-section2 .left-side {
    max-width: 1002px;
    width: 73.71%;
}

.banner-section2 .left-side .description {
    margin-top: 40px;
    max-width: 1002px;
}

.banner-section2 .left-side .bottom-box {
    margin-top: 74px;
    display: flex;
    align-items: center;
    -moz-column-gap: 77px;
    column-gap: 77px;
}

.banner-section2 .right-side {
    width: 26.29%;
}

.banner-section2 .right-side .img-box {
    max-width: 357px;
    margin-left: auto;
}

.banner-section2 .banner-title {
    color: rgb(var(--heading-color));
    font-family: var(--heading-font);
    font-size: 80px;
    font-weight: 600;
    line-height: 120px;
    letter-spacing: 0.8px;
}

.banner-section2 .right-side .img-box img {
    aspect-ratio: 354/275;
}

.banner-section2 .bg-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    max-width: 1332px;
    max-height: 980px;
    z-index: -1;
}

.banner-section2 .shape {
    position: absolute;
    top: 23%;
    left: 11%;
    z-index: -1;
}

.banner-section2 .ellipse-blur-1 {
    bottom: -86px;
    left: -31px;
}

.banner-section2 .ellipse-blur-2 {
    bottom: -86px;
    right: -127px;
}

.banner-section2.customer-review-banner .left-side {
    width: 68.63%;
}

.banner-section2.customer-review-banner .right-side {
    width: 31.37%;
}

.banner-section2.customer-review-banner .img-box {
    max-width: 475px;
    position: relative;
    margin: 0 auto;
}

.banner-section2.customer-review-banner .img-box img {
    aspect-ratio: 242/233;
    -o-object-fit: cover;
    object-fit: cover;
}

.banner-section2.customer-review-banner .img-box .text-box {
    position: absolute;
    bottom: 0;
    left: 0;
}

.banner-section2.customer-review-banner .img-box .text-box .time {
    margin-left: 40px;
}

.banner-section2.customer-review-banner .img-box .text-box .description {
    margin-top: 70px;
    max-width: 440px;
    padding: 12px 20px;
    background-color: rgb(var(--white), 0.6);
}

@media (max-width: 1399px) {
    .banner-section2 .banner-title {
        font-size: 60px;
        line-height: 80px;
    }
}

@media (max-width: 1199px) {
    .banner-section2 .banner-title {
        font-size: 55px;
        line-height: 80px;
    }

    .banner-section2 .banner-title img {
        max-width: 160px;
    }

    .banner-section2.customer-review-banner .left-side {
        width: 50%;
    }

    .banner-section2.customer-review-banner .left-side .bottom-box img {
        display: none;
    }

    .banner-section2.customer-review-banner .right-side {
        width: 50%;
    }
}

@media (max-width: 991px) {
    .banner-section2 {
        padding: 160px 0 80px;
    }

    .banner-section2 .banner-title {
        font-size: 46px;
        line-height: 65px;
    }

    .banner-section2 .left-side {
        width: 100%;
    }

    .banner-section2 .left-side .description {
        margin-top: 20px;
    }

    .banner-section2 .right-side {
        display: none;
    }

    .banner-section2 .shape {
        top: 28%;
        right: 11%;
        left: auto;
    }

    .banner-section2.customer-review-banner .section-header {
        flex-direction: column;
    }

    .banner-section2.customer-review-banner .left-side {
        width: 100%;
    }

    .banner-section2.customer-review-banner .right-side {
        display: block;
        width: 100%;
    }

    .banner-section2.customer-review-banner .bottom-box {
        display: none;
    }
}

@media (max-width: 767px) {
    .banner-section2 {
        padding: 130px 0 50px;
        text-align: center;
    }

    .banner-section2 .banner-title {
        font-size: 32px;
        line-height: 50px;
    }

    .banner-section2 .shape {
        top: 17%;
    }
}

html[dir="rtl"] .banner-section2 .banner-title img {
    transform: rotateY(180deg);
}

/*----------------------------------------------
Banner section2 end
----------------------------------------------*/
/*----------------------------------------------
Banner section start
----------------------------------------------*/
.banner-section3 {
    padding: 260px 0 120px;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.banner-section3 .section-header {
    max-width: 520px;
    margin: 0 auto 57px;
    text-align: center;
}

.banner-section3 .bottom-box {
    text-align: center;
}

.banner-section3 .bottom-box .cmn-btn2 {
    margin-top: 37px;
}

.banner-section3 .bg-img {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1332px;
    max-height: 980px;
    z-index: -1;
}

.banner-section3 .section-header {
    position: relative;
    z-index: 9;
}

.banner-section3 .ellipse-blur-1 {
    top: -50%;
    left: -31px;
}

.banner-section3 .ellipse-blur-2 {
    top: -50%;
    right: -127px;
}

.banner-section3 .team-single-img {
    position: absolute;
    z-index: 0;
}

.banner-section3 .team-single-img.img-1 {
    max-width: 184px;
    top: 126px;
    left: 20%;
}

.banner-section3 .team-single-img.img-2 {
    max-width: 275px;
    top: 126px;
    right: 10%;
}

.banner-section3 .team-single-img.img-3 {
    max-width: 184px;
    top: 439px;
    left: 10%;
}

.banner-section3 .team-single-img.img-4 {
    max-width: 263px;
    top: 570px;
    left: 27%;
}

.banner-section3 .team-single-img.img-5 {
    max-width: 280px;
    top: 570px;
    right: 23%;
}

@media (max-width: 1600px) {
    .banner-section3 .team-single-img.img-1 {
        left: 12%;
    }

    .banner-section3 .team-single-img.img-2 {
        right: 2%;
    }

    .banner-section3 .team-single-img.img-3 {
        left: 2%;
    }

    .banner-section3 .team-single-img.img-4 {
        left: 19%;
    }

    .banner-section3 .team-single-img.img-5 {
        right: 15%;
    }
}

@media (max-width: 1399px) {
    .banner-section3 .team-single-img.img-1 {
        left: 12%;
    }

    .banner-section3 .team-single-img.img-2 {
        right: 2%;
    }

    .banner-section3 .team-single-img.img-3 {
        left: 2%;
    }

    .banner-section3 .team-single-img.img-4 {
        left: 19%;
    }

    .banner-section3 .team-single-img.img-5 {
        right: 15%;
    }
}

@media (max-width: 1199px) {
    .banner-section3 .team-single-img.img-1 {
        left: 10%;
        max-width: 130px;
    }

    .banner-section3 .team-single-img.img-2 {
        right: 1%;
        max-width: 221px;
    }

    .banner-section3 .team-single-img.img-3 {
        left: 1%;
        max-width: 130px;
    }

    .banner-section3 .team-single-img.img-4 {
        left: 18%;
        max-width: 209px;
    }

    .banner-section3 .team-single-img.img-5 {
        right: 13%;
        max-width: 226px;
    }

    .banner-section3 .img-wrapper {
        height: 100%;
    }
}

@media (max-width: 991px) {
    .banner-section3 {
        padding: 140px 0 171px;
    }

    .banner-section3 .team-single-img.img-1 {
        left: 9%;
        max-width: 80px;
        top: 80px;
    }

    .banner-section3 .team-single-img.img-2 {
        right: 1%;
        max-width: 130px;
        top: 80px;
    }

    .banner-section3 .team-single-img.img-3 {
        left: 1%;
        max-width: 80px;
        top: 439px;
        top: 250px;
    }

    .banner-section3 .team-single-img.img-4 {
        left: 18%;
        max-width: 118px;
        top: 381px;
    }

    .banner-section3 .team-single-img.img-5 {
        right: 13%;
        max-width: 135px;
        top: 381px;
    }

    .banner-section3 .bottom-box .cmn-btn2 {
        margin-top: 0;
    }

    .banner-section3 .bottom-box .arrow {
        display: none;
    }
}

@media (max-width: 767px) {
    .banner-section3 {
        padding: 120px 0 50px;
    }

    .banner-section3 .section-header {
        margin: 0 auto 30px;
    }

    .banner-section3 .team-single-img {
        display: none;
    }
}

/*----------------------------------------------
Banner section end
----------------------------------------------*/
/*----------------------------------------------
Banner section4 start
----------------------------------------------*/
.banner-section4 {
    position: relative;
    padding: 143px 0 76px;
    background-image: url(https://bug-finder.s3.ap-southeast-1.amazonaws.com/assets/v2/banner/banner-img-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
}

.banner-section4 .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.banner-section4 .section-header .left-side {
    display: flex;
    gap: 137px;
    width: 69.14%;
}

.banner-section4 .section-header .left-side .icon-box {
    flex-shrink: 0;
    display: flex;
    align-items: end;
}

.banner-section4 .section-header .left-side .text-box {
    max-width: 637px;
}

.banner-section4 .section-header .left-side .text-box .banner-title {
    color: rgb(var(--heading-color));
    font-family: var(--heading-font);
    font-size: 48px;
    font-weight: 500;
    line-height: 70px;
}

.banner-section4 .section-header .left-side .text-box .description {
    margin-top: 32px;
}

.banner-section4 .section-header .left-side .text-box .cmn-btn2 {
    margin-top: 60px;
    border-radius: 999999px;
}

.banner-section4 .section-header .right-side {
    width: 30.86%;
    max-width: 352px;
}

.banner-section4 .section-header .right-side .img-box img {
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 1399px) {
    .banner-section4 .section-header .left-side {
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .banner-section4 .section-header {
        gap: 20px;
    }

    .banner-section4 .section-header .left-side {
        width: 55%;
    }

    .banner-section4 .section-header .left-side .icon-box {
        display: none;
    }

    .banner-section4 .section-header .left-side .text-box .banner-title {
        font-size: 36px;
        line-height: 50px;
    }

    .banner-section4 .section-header .left-side .text-box .description {
        margin-top: 16px;
    }

    .banner-section4 .section-header .left-side .text-box .cmn-btn2 {
        margin-top: 30px;
    }

    .banner-section4 .section-header .right-side {
        width: 45%;
    }
}

@media (max-width: 767px) {
    .banner-section4 .section-header {
        flex-direction: column;
        gap: 35px;
    }

    .banner-section4 .section-header .left-side {
        width: 100%;
        text-align: center;
        order: 2;
    }

    .banner-section4 .section-header .right-side {
        width: 100%;
        order: 1;
    }
}

/*----------------------------------------------
Banner section4 end
----------------------------------------------*/
/*----------------------------------------------
Service section3 start
----------------------------------------------*/
.service-section3 {
    background-color: var(--bg-color2);
}

.service-section3 .section-header {
    max-width: 596px;
    margin: 0 auto 80px;
    text-align: center;
}

.service-section3.brand-design .section-header {
    max-width: 752px;
}

.service-section3.web-design-development .section-header {
    max-width: 1035px;
}

.service-section3.mobile-app-development .section-header {
    max-width: 776px;
}

.service-section3.wordpress-development .section-header {
    max-width: 970px;
}

.service-section3.shopify-development .section-header {
    max-width: 700px;
}

.service-section3.webflow-development .section-header {
    max-width: 740px;
}

.service-section3.devops .section-header {
    max-width: 770px;
}

.service-box3 {
    padding: 32px;
    background-color: var(--bg-color1);
    border-radius: 4px;
    height: 100%;
}

.service-box3 .icon-box svg {
    width: 60px;
    height: 60px;
}

.service-box3 .text-box {
    margin-top: 16px;
}

.service-box3 .text-box .title {
    margin-bottom: 16px;
    font-size: 24px;
}

@media (max-width: 991px) {
    .service-section3 .section-header {
        margin: 0 auto 40px;
    }
}

@media (max-width: 767px) {
    .service-box3 {
        text-align: center;
    }
}

/*----------------------------------------------
Service section3 end
----------------------------------------------*/
/*----------------------------------------------
Faq section start
----------------------------------------------*/
.faq-section .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.faq-swiper .swiper-slide {
    width: auto !important;
}

.faq-swiper .nav-link {
    border: 1px solid var(--border-color1);
    background-color: var(--bg-color1);
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 500;
    color: rgb(var(--heading-color));
    font-size: 18px;
}

.faq-swiper .nav-link.active {
    background-color: rgb(var(--primary-color));
    color: rgb(var(--white));
}

.faq-swiper-box {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-swiper-box .swiper-button-prev,
.faq-swiper-box .swiper-button-next {
    position: initial;
    margin-top: initial;
    width: 45px;
    min-width: 45px;
    height: 45px;
}

@media (max-width: 991px) {
    .faq-section .section-header {
        margin-bottom: 30px;
    }
}

/*----------------------------------------------
Faq section end
----------------------------------------------*/
/*----------------------------------------------
Solution section start
----------------------------------------------*/
.solution-box-container {
    display: flex;
    gap: 30px;
}

.solution-box-container:not(:last-child) {
    margin-bottom: 30px;
}

.solution-box {
    border-radius: 8px;
    padding: 40px;
    border: 1px solid var(--border-color1);
    background-image: url(https://bug-finder.s3.ap-southeast-1.amazonaws.com/assets/v2/solution/solution-box-bg.png);
    background-repeat: no-repeat;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    background-size: cover;
}

.solution-box.big {
    padding: 80px 0 0 40px;
}

.solution-box.big .img-box img {
    aspect-ratio: 477/490;
}

.solution-box.big .description {
    margin-top: 50px;
}

.solution-box .img-box img {
    background-color: rgb(var(--white));
    aspect-ratio: 85/52;
    border-radius: 8px;
}

.solution-box .text-box {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.solution-box .title {
    font-size: 32px;
    line-height: 40px;
}

.solution-box .description {
    margin-top: 28px;
    line-height: 26px;
}

.solution-box .kew-btn {
    margin-top: 20px;
    margin-top: auto;
    padding-top: 20px;
}

.solution-box .arrow-shape {
    margin-top: -23px;
}

.solution-box-inner {
    display: flex;
    margin-top: 67px;
    gap: 30px;
}

.solution-box-inner .left-side {
    display: flex;
    flex-direction: column;
}

@media (min-width: 992px) {
    .solution-box-inner .right-side {
        width: 56%;
    }

    .solution-box-inner .left-side {
        width: 44%;
    }

    .solution-box-inner .kew-btn {
        margin-bottom: 40px;
    }

    .solution-box {
        width: 39.6%;
    }

    .solution-box.big {
        width: 60.4%;
        padding: 80px 0 0 40px;
    }
}

@media (max-width: 991px) {
    .solution-box-container {
        flex-direction: column;
    }

    .solution-box-inner {
        margin-top: 30px;
        flex-direction: column;
    }

    .solution-box-inner .left-side {
        order: 2;
    }

    .solution-box-inner .arrow-shape {
        display: none;
    }

    .solution-box {
        padding: 30px;
    }

    .solution-box.big {
        padding: 30px;
    }

    .solution-box.big .description {
        margin-top: 0;
    }

    .solution-box .text-box {
        margin-top: 30px;
    }

    .solution-box .title {
        margin-bottom: 0;
        font-size: 26px;
    }

    .solution-box .description {
        margin-top: 20px;
    }
}

@media (max-width: 575px) {
    .solution-box {
        padding: 20px;
    }

    .solution-box.big {
        padding: 20px;
    }

    .solution-box .title {
        font-size: 20px;
        line-height: 30px;
    }
}

@media (min-width: 992px) {
    html[dir="rtl"] .solution-box.big {
        padding: 80px 40px 0 0;
    }
}

/*----------------------------------------------
Solution section end
----------------------------------------------*/
/*----------------------------------------------
Solution section2 start
----------------------------------------------*/
.solution-section2 {
    background-color: var(--bg-color2);
    position: relative;
    overflow: hidden;
}

.solution-section2 .section-header {
    text-align: center;
    max-width: 980px;
    margin: 0 auto 60px;
}

.solution-section2 .title-anim span {
    display: inline-block;
}

.solution-box2 {
    padding: 24px;
    border-radius: 4px;
    background-color: var(--bg-color1);
    border: 1px solid var(--border-color1);
}

.solution-box2:not(:last-child) {
    margin-bottom: 30px;
}

.solution-box2 .icon-box {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgb(var(--primary-color));
    display: flex;
    justify-content: center;
    align-items: center;
}

.solution-box2 .icon-box svg {
    fill: rgb(var(--white));
}

.solution-box2 .text-box {
    margin-top: 20px;
}

.solution-section-middle {
    display: flex;
    justify-content: center;
}

.solution-section-middle .img-box img {
    margin-top: 70px;
}

@media (min-width: 1400px) {
    .solution-section-middle .img-box {
        position: absolute;
        bottom: -101px;
    }
}

@media (max-width: 767px) {
    .solution-box2 {
        text-align: center;
    }

    .solution-box2 .icon-box {
        margin: auto;
    }
}

/*----------------------------------------------
Solution section2 end
----------------------------------------------*/
/*----------------------------------------------
Feature section start
----------------------------------------------*/
.feature-section .section-header {
    max-width: 756px;
}

.feature-section .section-header h2 {
    display: inline-block !important;
}

.feature-section .section-header .section-subtitle {
    display: flex !important;
}

.feature-section .section-header h2 .highlight {
    display: inline-block !important;
}

.feature-section .accordion-button {
    padding-bottom: 16px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .feature-section .img-box {
        position: sticky;
        top: 100px;
    }
}

@media (max-width: 767px) {
    .feature-section .section-header {
        text-align: center;
    }
}

/*----------------------------------------------
Feature section end
----------------------------------------------*/
/*----------------------------------------------
Management solution section start
----------------------------------------------*/
.management-solution-section .section-header {
    max-width: 975px;
    margin: 0 auto 60px;
    text-align: center;
}

.management-solution-section-inner {
    border-radius: 8px;
    background-color: var(--bg-color2);
    padding: 80px 32px 60px;
}

.management-solution-box {
    background-color: var(--bg-color1);
    border-radius: 8px;
    padding: 32px;
    position: relative;
    height: 100%;
}

.management-solution-box::before {
    position: absolute;
    content: "";
    width: 4px;
    height: 60px;
    background-color: var(--border-color1);
    left: 0;
    border-radius: 0 8px 8px 0;
}

.management-solution-box .icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--bg-color2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color1);
}

.management-solution-box .text-box {
    margin-top: 24px;
}

.management-solution-box .text-box .title {
    font-size: 24px;
    line-height: 32px;
}

.management-solution-box .text-box .description {
    margin-top: 20px;
}

@media (max-width: 991px) {
    .management-solution-section-inner {
        padding: 40px 30px;
    }
}

@media (max-width: 991px) {
    .management-solution-section-inner {
        padding: 20px;
    }
}

html[dir="rtl"] .management-solution-box::before {
    left: auto;
    right: 0;
    border-radius: 8px 0 0 8px;
}

/*----------------------------------------------
Management solution section end
----------------------------------------------*/
/*----------------------------------------------
Consultation section start
----------------------------------------------*/
.consultation-section .section-title {
    margin-bottom: 34px;
}

.consultation-section .btn-box {
    display: flex;
    align-items: center;
    -moz-column-gap: 67px;
    column-gap: 67px;
}

.consultation-section .img-box {
    height: 100%;
}

.consultation-section .img-box img {
    height: 100%;
    width: 100%;
    aspect-ratio: 691/764;
}

.consultation-section .swiper-wrapper {
    display: flex;
}

.consultation-section .swiper-wrapper .swiper-slide {
    height: auto !important;
    display: flex;
}

.consultation-section .swiper-wrapper .swiper-slide .consultaion-box {
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: var(--bg-color2);
    border-radius: 8px;
    padding: 24px;
}

.consultation-swiper {
    margin-top: 80px;
}

@media (min-width: 992px) {
    .consultation-swiper {
        margin-right: -398px;
    }
}

@media (max-width: 991px) {
    .consultation-section .img-box {
        display: none;
    }

    .consultation-swiper {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .consultation-section .section-header {
        text-align: center;
    }

    .consultation-section .btn-box {
        justify-content: center;
    }

    .consultation-section .btn-box img {
        display: none;
    }
}

/*----------------------------------------------
Consultation section end
----------------------------------------------*/
/*----------------------------------------------
Products section start
----------------------------------------------*/
.products-section {
    background-color: var(--bg-color2);
}

.products-section .filter-bar {
    margin-bottom: 40px;
}

.products-section .btn-box {
    margin-top: 60px;
}

.products-section .select2-container .select2-selection--single,
.products-section .select2-container .select2-selection--multiple {
    border: 1px solid var(--border-color1);
    background-color: var(--bg-color1);
    border-radius: 8px;
}

.product-box {
    background-color: var(--bg-color1);
    border-radius: 4px;
    line-height: 26px;
}

.product-box .img-box {
    padding: 16px 16px 0;
    width: 100%;
}

.product-box .img-box img {
    width: 100%;
}

.product-box .text-box {
    margin-top: 24px;
    padding: 0 20px 20px;
}

.product-box .text-box .title {
    font-size: 18px;
    font-weight: 500;
    color: rgb(var(--heading-color));
    line-height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
}

.product-box .text-box .title:hover {
    color: rgb(var(--primary-color));
}

.product-box .text-box .category {
    line-height: 26px;
    margin-top: 3px;
}

.product-box .text-box .price-review-box {
    margin-top: 13px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.product-box .text-box .price-review-box .price {
    text-transform: capitalize;
}

.product-box .text-box .btn-sale-box {
    margin-top: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.product-box .cmn-btn3 {
    color: rgb(var(--body-color));
    background-color: transparent;
}

.product-box .cmn-btn3:hover {
    color: rgb(var(--body-color));
}

@media (max-width: 767px) {
    .product-box {
        max-width: 400px;
        margin: 0 auto;
    }
}

/*----------------------------------------------
Products section end
----------------------------------------------*/
/*----------------------------------------------
Product details section start
----------------------------------------------*/
.product-details-section {
    padding: 180px 0 100px;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.product-details-section .title {
    font-weight: 600;
}

.product-details-section .preview-img-box {
    border: 1px solid var(--border-color1);
    margin-top: 32px;
    max-height: 750px;
    overflow: auto;
    border-radius: 8px;
}

.product-details-section .preview-img-box::-webkit-scrollbar {
    background-color: var(--border-color1);
    width: 8px;
}

.product-details-section .preview-img-box::-webkit-scrollbar-thumb {
    visibility: visible;
    opacity: 1;
}

.product-details-section .ellipse-blur-1 {
    top: -587px;
    left: -66px;
}

.product-details-section .ellipse-blur-2 {
    top: -587px;
    right: 0;
}

.product-details-section .dropdown-menu {
    width: 280px;
}

.product-details-section .dropdown-menu h6 {
    font-size: 16px;
}

.product-details-section .dropdown-menu .description {
    line-height: 26px;
}

.product-details-section .dropdown-toggle {
    font-weight: 500;
    font-size: 18px;
}

.product-details-section .cmn-list3 {
    line-height: 26px;
}

.feature-list {
    margin-top: 24px;
    display: flex;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 10px;
    flex-wrap: wrap;
    color: rgb(var(--heading-color));
}

.feature-list .item {
    display: flex;
    align-items: center;
    font-size: 18px;
    gap: 7px;
    border-radius: 5px;
}

.page-tabs {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--border-color1);
}

.page-tabs .item {
    padding: 10px 18px;
    text-transform: capitalize;
    color: rgb(var(--heading-color));
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    text-align: center;
}

.page-tabs .item.active,
.page-tabs .item:hover {
    color: rgb(var(--primary-color));
    font-weight: 500;
}

.product-details-section-body {
    margin-top: 60px;
}

.review-item {
    border: 1px solid var(--border-color1);
    padding: 30px;
    border-radius: 8px;
}

.review-item:not(:last-child) {
    margin-bottom: 30px;
}

.author-profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-profile .img-box img {
    width: 60px;
    min-width: 60px;
    height: 60px;
    border-radius: 10px;
}

.author-reply-box {
    margin-left: 30px;
}

.meta-table.table > :not(caption) > * > * {
    border: none;
}

.meta-table tr td:first-child {
    min-width: 200px;
}

.meta-table h6 {
    color: rgb(var(--body-color));
}

@media (min-width: 992px) and (max-width: 1199px) {
    .meta-table tr td:first-child {
        min-width: auto;
    }
}

@media (max-width: 991px) {
    .product-details-section {
        padding: 130px 0 80px;
    }
}

@media (max-width: 767px) {
    .product-details-section {
        padding: 100px 0 50px;
    }

    .feature-list {
        margin-top: 16px;
    }

    .product-details-section-body {
        margin-top: 40px;
    }
}

@media (max-width: 575px) {
    .meta-table tr td:first-child {
        min-width: auto;
    }

    .review-item {
        padding: 16px;
    }

    .author-reply-box {
        margin-left: 16px;
    }
}

/*----------------------------------------------
Product details section end
----------------------------------------------*/
/*----------------------------------------------
Similar products section start
----------------------------------------------*/
.similar-products-section .product-box {
    border: 1px solid var(--border-color1);
}

/*----------------------------------------------
Similar products section end
----------------------------------------------*/
/*----------------------------------------------
Change log section start
----------------------------------------------*/
.timeline-box {
    line-height: 26px;
}

.timeline-box .timeline-box-item {
    position: relative;
    display: flex;
    gap: 15px;
}

.timeline-box .timeline-box-item::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 1px;
    background-color: rgb(var(--primary-color), 0.5);
    left: 8px;
    z-index: -1;
    background: linear-gradient(
        rgb(var(--primary-color)),
        rgb(var(--primary-color), 0.1)
    );
}

.timeline-box .timeline-box-item .dot {
    min-width: 16px;
    height: 16px;
    border: 1px solid var(--border-color3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(var(--primary-color));
}

.timeline-box .timeline-box-item .content {
    flex-grow: 1;
}

.timeline-box .timeline-box-item .content .content-title {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding-left: 45px;
}

.timeline-box .timeline-box-item .content .content-title::before {
    position: absolute;
    content: "";
    background-color: rgb(var(--primary-color));
    width: 16px;
    height: 16px;
    border-radius: 50%;
    left: 0;
    top: 5px;
    outline: 5px solid var(--bg-color1);
}

.timeline-box .timeline-box-item .content-body {
    margin: 20px 0 0 45px;
    padding: 20px 16px;
    background-color: var(--bg-color2);
    border-radius: 8px;
}

.timeline-box .timeline-box-item .cmn-list {
    row-gap: 15px;
    font-size: 15px;
}

.timeline-box .timeline-box-item:not(:last-child) {
    padding-bottom: 45px;
}

@media (max-width: 575px) {
    .timeline-box .timeline-box-item:not(:last-child) {
        padding-bottom: 30px;
    }

    .timeline-box .timeline-box-item .content-body {
        margin: 12px 0 0 20px;
    }
}

html[dir="rtl"] .timeline-box .timeline-box-item::after {
    left: 0;
    right: 8px;
}

html[dir="rtl"] .timeline-box .timeline-box-item .content .content-title {
    padding-left: 0;
    padding-right: 45px;
}

html[dir="rtl"]
.timeline-box
.timeline-box-item
.content
.content-title::before {
    left: auto;
    right: 0;
}

html[dir="rtl"] .timeline-box .timeline-box-item .content-body {
    margin: 20px 45px 0 0;
}

/*----------------------------------------------
Change log section end
----------------------------------------------*/
/*----------------------------------------------
Feature request section start
----------------------------------------------*/
.feature-request-box {
    padding: 16px;
    border-radius: 8px;
    border: 1px solid var(--border-color1);
    display: flex;
    align-items: center;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 15px;
}

.feature-request-box:not(:last-child) {
    margin-bottom: 26px;
}

.feature-request-box .info {
    border-right: 1px solid var(--border-color1);
    padding-right: 15px;
    flex-grow: 1;
}

.feature-request-box .info .title {
    font-size: 18px;
    font-weight: 500;
    color: rgb(var(--heading-color));
}

.feature-request-box .info .title:hover {
    color: rgb(var(--primary-color));
}

.feature-request-box .comment {
    width: 150px;
    min-width: 150px;
}

.feature-request-box .description {
    line-height: 26px;
    margin-top: 5px;
}

.favorite-btn {
    width: 80px;
    min-width: 80px;
    height: 80px;
    border-radius: 8px;
    background-color: var(--bg-color5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 26px;
}

.favorite-btn .number {
    line-height: 26px;
}

.comment-btn {
    display: flex;
    white-space: nowrap;
}

.comment-btn i {
    background-color: var(--bg-color5);
    min-width: 35px;
    height: 35px;
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
}

html[dir="rtl"] .comment-btn i {
    margin-right: 0;
    margin-left: 5px;
}

@media (max-width: 575px) {
    .feature-request-box {
        flex-direction: column;
    }

    .feature-request-box .info {
        border: none;
        border-bottom: 1px solid var(--border-color1);
        padding: 0;
        padding-bottom: 15px;
        text-align: center;
    }
}

/*----------------------------------------------
Feature request section end
----------------------------------------------*/
/*----------------------------------------------
Feature request details section start
----------------------------------------------*/
.feature-request-details-box {
    padding: 16px;
    border-radius: 8px;
    border: 1px solid var(--border-color1);
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.feature-request-details-box .top-box {
    display: flex;
    align-items: center;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 15px;
}

.feature-request-details-box .info {
    border-right: 1px solid var(--border-color1);
    padding-right: 15px;
    flex-grow: 1;
}

.feature-request-details-box .info .title {
    font-size: 18px;
    font-weight: 500;
    color: rgb(var(--heading-color));
}

.feature-request-details-box .info .title:hover {
    color: rgb(var(--primary-color));
}

.feature-request-details-box .description {
    line-height: 26px;
    margin-top: 15px;
}

.feature-request-details-box .notify-box {
    text-align: center;
    font-size: 14px;
}

.feature-request-details-box .notify-box .link {
    color: rgb(var(--heading-color));
}

@media (max-width: 575px) {
    .feature-request-details-box {
        text-align: center;
    }

    .feature-request-details-box .top-box {
        flex-direction: column;
    }

    .feature-request-details-box .top-box .info {
        border: none;
        border-bottom: 1px solid var(--border-color1);
        padding: 0;
        padding-bottom: 15px;
    }
}

/*----------------------------------------------
Feature request details section end
----------------------------------------------*/
/*----------------------------------------------
Mission section start
----------------------------------------------*/
.mission-section {
    background-color: var(--bg-color2);
}

.mission-section .text-box .title {
    font-size: 32px;
    margin-bottom: 24px;
}

.mission-section .left-side {
    height: 100%;
    padding: 60px 40px 40px;
    border: 1px solid var(--border-color1);
    border-radius: 8px;
    background-image: url(https://bug-finder.s3.ap-southeast-1.amazonaws.com/assets/v2/mission/mission-bg-1.png);
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
}

.mission-section .left-side .text-box .title {
    margin-bottom: 28px;
}

.mission-section .left-side .img-box {
    margin-top: 44px;
    flex-grow: 1;
}

.mission-section .left-side .img-box img {
    border-radius: 8px;
    aspect-ratio: 82/39;
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
}

.mission-section .right-side {
    height: 100%;
    padding: 40px 40px 28px;
    border: 1px solid var(--border-color1);
    border-radius: 8px;
    background-image: url(https://bug-finder.s3.ap-southeast-1.amazonaws.com/assets/v2/mission/mission-bg-1.png);
    background-position: center;
    background-size: cover;
}

.mission-section .right-side .text-box .title {
    margin-bottom: 24px;
}

.mission-section .right-side .img-box {
    margin-bottom: 32px;
}

.mission-section .right-side .img-box img {
    border-radius: 8px;
    aspect-ratio: 85/58;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 991px) {
    .mission-section .text-box .title {
        font-size: 24px;
        margin-bottom: 16px !important;
    }
}

@media (max-width: 767px) {
    .mission-section .left-side {
        text-align: center;
    }

    .mission-section .right-side {
        text-align: center;
    }
}

@media (max-width: 430px) {
    .mission-section .left-side {
        padding: 24px;
    }

    .mission-section .right-side {
        padding: 24px;
    }
}

/*----------------------------------------------
Mission section end
----------------------------------------------*/
/*----------------------------------------------
Foundation section start
----------------------------------------------*/
.foundation-section .section-header {
    margin-bottom: 40px;
    max-width: 660px;
}

.foundation-section .img-box {
    max-width: 537px;
    margin-left: auto;
}

.foundation-section .img-box img {
    aspect-ratio: 179/214;
    -o-object-fit: cover;
    object-fit: cover;
}

.foundation-section .cmn-box {
    max-width: 609px;
}

@media (min-width: 992px) {
    .foundation-section .img-box {
        position: sticky;
        top: 100px;
    }
}

@media (max-width: 991px) {
    .foundation-section .img-box {
        margin: 0;
    }
}

@media (max-width: 767px) {
    .foundation-section .section-header {
        text-align: center;
    }

    .foundation-section .img-box {
        margin: 0 auto;
    }
}

/*----------------------------------------------
Foundation section end
----------------------------------------------*/
/*----------------------------------------------
Mission feature section start
----------------------------------------------*/
.mission-feature-section {
    background-color: var(--bg-color2);
}

.mission-feature-section .left-side .img-box {
    margin-top: -40px;
    max-width: 650px;
}

.mission-feature-section .right-side {
    background-color: var(--bg-color1);
    padding: 32px;
    border-radius: 8px;
}

.mission-feature-section .cmn-box {
    background-color: var(--bg-color2);
    padding: 24px 40px;
    border-radius: 8px;
}

@media (max-width: 1199px) {
    .mission-feature-section .cmn-box {
        padding: 24px;
    }
}

@media (max-width: 430px) {
    .mission-feature-section .right-side {
        padding: 16px;
    }
}

/*----------------------------------------------
Mission feature section end
----------------------------------------------*/
/*----------------------------------------------
Benefit section start
----------------------------------------------*/
.benefit-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.benefit-container:first-child {
    border-bottom: 1px solid var(--border-color1);
}

.benefit-container:first-child .benefit-item {
    padding: 0 30px 40px;
}

.benefit-container:first-child .benefit-item:first-child {
    padding-left: 0;
}

.benefit-container:first-child .benefit-item:last-child {
    padding-right: 0;
    border: none;
}

.benefit-container:last-child .benefit-item {
    padding: 40px 30px 0;
}

.benefit-container:last-child .benefit-item:first-child {
    padding-left: 0;
}

.benefit-container:last-child .benefit-item:last-child {
    padding-right: 0;
    border: none;
}

.benefit-item {
    border-right: 1px solid var(--border-color1);
    padding: 0 30px 40px 0;
}

.benefit-item .icon-box svg {
    width: 50px;
    height: 50px;
    fill: rgb(var(--body-color));
}

.benefit-item .icon-box path {
    fill: rgb(var(--body-color));
}

.benefit-item .text-box {
    margin-top: 20px;
}

.benefit-item .text-box .title {
    text-transform: capitalize;
}

@media (max-width: 1199px) {
    .benefit-container:first-child .benefit-item {
        padding: 0 20px 30px;
    }

    .benefit-container:last-child .benefit-item {
        padding: 30px 20px 0;
    }
}

@media (max-width: 767px) {
    .benefit-section .section-title {
        text-align: center;
    }

    .benefit-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-container .benefit-item:nth-child(2) {
        padding-right: 0;
        border-right: none;
    }

    .benefit-container .benefit-item:nth-child(3) {
        padding-left: 0;
    }
}

@media (max-width: 430px) {
    .benefit-container:first-child .benefit-item {
        padding: 0 10px 15px;
    }

    .benefit-container:last-child .benefit-item {
        padding: 15px 10px 0;
    }

    .benefit-container .benefit-item .text-box .title {
        font-size: 16px;
    }

    .benefit-container .benefit-item:nth-child(2) {
        padding-right: 0;
        border-right: none;
    }

    .benefit-container .benefit-item:nth-child(3) {
        padding-left: 0;
    }
}

html[dir="rtl"] .benefit-container:first-child .benefit-item:first-child {
    padding-left: 30px;
    padding-right: 0;
}

html[dir="rtl"] .benefit-container:first-child .benefit-item:last-child {
    padding-left: 0;
    padding-right: 30px;
}

html[dir="rtl"] .benefit-container:last-child .benefit-item:first-child {
    padding-left: 30px;
    padding-right: 0;
}

html[dir="rtl"] .benefit-container:last-child .benefit-item:last-child {
    padding-right: 30px;
    padding-left: 0;
}

html[dir="rtl"] .benefit-item {
    border-right: none;
    border-left: 1px solid var(--border-color1);
}

@media (max-width: 1199px) {
    html[dir="rtl"] .benefit-container:first-child .benefit-item:first-child {
        padding-left: 20px;
    }

    html[dir="rtl"] .benefit-container:first-child .benefit-item:last-child {
        padding-right: 20px;
    }

    html[dir="rtl"] .benefit-container:last-child .benefit-item:first-child {
        padding-left: 20px;
    }

    html[dir="rtl"] .benefit-container:last-child .benefit-item:last-child {
        padding-right: 20px;
    }
}

@media (max-width: 767px) {
    html[dir="rtl"] .benefit-container .benefit-item:nth-child(2) {
        padding-right: 20px;
        padding-left: 0;
        border-left: none;
    }

    html[dir="rtl"] .benefit-container .benefit-item:nth-child(3) {
        padding-right: 0;
        padding-left: 20px;
    }
}

/*----------------------------------------------
Benefit section end
----------------------------------------------*/
/*----------------------------------------------
Opportunities section start
----------------------------------------------*/
.opportunities-section {
    background-color: var(--bg-color2);
}

.opportunities-section .section-header {
    max-width: 764px;
}

.opportunities-section .section-header .description {
    max-width: 659px;
}

.opportunities-box {
    border: 1px solid var(--border-color1);
    padding: 40px;
    border-radius: 8px;
    line-height: 26px;
    background-color: var(--bg-color1);
    height: 100%;
}

.opportunities-box .icon-box {
    width: 32px;
    height: 32px;
    background-color: var(--bg-color4);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.opportunities-box .title {
    margin-top: 27px;
}

.opportunities-box .salary {
    padding: 8px 24px;
    border-radius: 4px;
    background-color: var(--bg-color4);
    display: inline-flex;
    margin-top: 40px;
}

.opportunities-box .kew-btn .kew-text {
    color: rgb(var(--body-color));
    text-decoration: none;
    text-transform: capitalize;
}

.opportunities-meta {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 17px;
}

.opportunities-meta-separator {
    width: 1px;
    height: 19px;
    background-color: var(--bg-color4);
}

@media (max-width: 1199px) {
    .opportunities-box {
        padding: 16px;
    }

    .opportunities-meta {
        gap: 10px;
    }
}

/*----------------------------------------------
Opportunities section end
----------------------------------------------*/
/*----------------------------------------------
Career details section start
----------------------------------------------*/
.career-details-section {
    background-color: var(--bg-color2);
}

.career-details-section .left-side {
    max-width: 741px;
    width: 100%;
}

.career-details-section .right-side {
    max-width: 447px;
    width: 100%;
}

.career-details-section .custom-ul li:not(:last-child) {
    margin-bottom: 10px;
}

.career-details-section .cmn-list {
    row-gap: 10px;
}

.career-details-top .date {
    font-size: 20px;
}

.career-details-section-inner {
    display: flex;
    -moz-column-gap: 54px;
    column-gap: 54px;
    row-gap: 20px;
}

.apply-box {
    position: sticky;
    z-index: 1;
    top: 100px;
    border-radius: 8px;
    border: 1px solid var(--border-color1);
    background-color: var(--bg-color1);
    padding: 40px;
    text-align: center;
    margin-top: -250px;
}

.apply-box .sub-title {
    font-size: 18px;
    margin-bottom: 24px;
}

.apply-box .description {
    line-height: 26px;
    margin-top: 32px;
}

.apply-box .cmn-btn2 {
    padding: 0 40px;
}

.career-details-meta {
    display: flex;
    -moz-column-gap: 45px;
    column-gap: 45px;
    row-gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .apply-box {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .career-details-section-inner {
        flex-direction: column;
    }

    .apply-box {
        margin-top: 0;
    }
}

@media (max-width: 575px) {
    .career-details-meta {
        -moz-column-gap: 20px;
        column-gap: 20px;
    }
}

/*----------------------------------------------
Career details section end
----------------------------------------------*/
/*----------------------------------------------
Life at section start
----------------------------------------------*/
.life-at-top .small-img-box {
    max-width: 358px;
    margin: 0 auto;
}

.life-at-top .small-img-box img {
    border-radius: 8px;
    aspect-ratio: 179/253;
    -o-object-fit: cover;
    object-fit: cover;
}

.life-at-top .mid-section {
    text-align: center;
    margin-top: 50px;
}

.life-at-top .big-img-box {
    margin-top: 32px;
    max-width: 744px;
}

.life-at-top .big-img-box img {
    border-radius: 8px;
    aspect-ratio: 93/47;
    -o-object-fit: cover;
    object-fit: cover;
}

.life-at-banner {
    padding: 163px 0 100px;
}

@media (max-width: 991px) {
    .life-at-banner {
        padding: 120px 0 8px;
    }

    .life-at-banner .mid-section {
        margin-top: 0;
    }
}

/*----------------------------------------------
Life at section end
----------------------------------------------*/
/*----------------------------------------------
Holyday section start
----------------------------------------------*/
.holyday-section {
    background-color: var(--bg-color2);
}

.holyday-section .img-box {
    max-width: 745px;
}

.holyday-section .img-box img {
    aspect-ratio: 745/718;
    border-radius: 8px;
    -o-object-fit: cover;
    object-fit: cover;
}

.holyday-section .cmn-box {
    line-height: 26px;
}

.holyday-section2 .small-img-box {
    max-width: 358px;
    margin: 0 auto;
}

.holyday-section2 .small-img-box img {
    border-radius: 4px;
    -o-object-fit: cover;
    object-fit: cover;
}

.holyday-section2 .small-img-box.img-1 img {
    aspect-ratio: 179/130;
}

.holyday-section2 .small-img-box.img-2 img {
    aspect-ratio: 179/189;
}

.holyday-section2 .small-img-box.img-3 img {
    aspect-ratio: 179/211;
}

.holyday-section2 .small-img-box.img-4 img {
    aspect-ratio: 179/166;
}

@media (max-width: 575px) {
    .holyday-section .text-box {
        text-align: center;
    }

    .holyday-section2 .text-box {
        text-align: center;
    }
}

/*----------------------------------------------
Holyday section end
----------------------------------------------*/
/*----------------------------------------------
Location section start
----------------------------------------------*/
.location-box .description {
    line-height: 26px;
}

/*----------------------------------------------
Location section end
----------------------------------------------*/
/*----------------------------------------------
Consultation section start
----------------------------------------------*/
.consultation-section-top {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}

.consultation-section-top .left-side-box {
    width: 61.46%;
}

.consultation-section-top .right-side-box {
    width: 38.54%;
}

@media (max-width: 767px) {
    .consultation-section-top {
        flex-direction: column;
        text-align: center;
    }

    .consultation-section-top .left-side-box {
        width: 100%;
    }

    .consultation-section-top .left-side-box svg {
        display: none;
    }

    .consultation-section-top .right-side-box {
        width: 100%;
    }
}

/*----------------------------------------------
Consultation section end
----------------------------------------------*/
/*----------------------------------------------
Customization section start
----------------------------------------------*/
.customization-solution-section .img-box {
    max-width: 745px;
}

.customization-solution-section .img-box img {
    aspect-ratio: 181/147;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 4px;
}

.customization-solution-section .text-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.customization-solution-section .top-box .cmn-list {
    margin-top: 40px;
}

.customization-solution-section .top-box .cmn-list .item {
    font-size: 18px;
    color: rgb(var(--heading-color));
}

.customization-solution-section .bottom-box {
    margin-top: 30px;
    display: flex;
    align-items: center;
    -moz-column-gap: 42px;
    column-gap: 42px;
}

@media (max-width: 575px) {
    .customization-solution-section .bottom-box .arrow-shape {
        display: none;
    }
}

/*----------------------------------------------
Customization section end
----------------------------------------------*/
/*----------------------------------------------
Testimonial section2 start
----------------------------------------------*/
.testimonial-section2 {
    background-image: url(https://bug-finder.s3.ap-southeast-1.amazonaws.com/assets/v2/testimonial-box/subtract.png);
    background-position: left;
    background-repeat: no-repeat;
    background-size: contain;
}

.testimonial-box2 {
    display: flex;
    gap: 30px;
}

.testimonial-box2 .left-side {
    width: 24.03%;
}

.testimonial-box2 .left-side .img-box {
    max-width: 358px;
    height: 100%;
}

.testimonial-box2 .left-side .img-box img {
    aspect-ratio: 179/211;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 4px;
    height: 100%;
}

.testimonial-box2 .right-side {
    width: 75.97%;
    padding: 40px;
    background-color: var(--bg-color2);
    border-radius: 8px;
    display: flex;
}

.testimonial-box2 .right-side .left-box {
    width: 66%;
    border-right: 1px solid var(--border-color1);
    padding-right: 30px;
    position: relative;
}

.testimonial-box2 .right-side .left-box .text {
    max-width: 636px;
}

.testimonial-box2 .right-side .right-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
    width: 34%;
    padding-left: 30px;
}

.testimonial-box2 .right-side .right-box .quote-icon {
    display: flex;
    justify-content: end;
}

.testimonial-swiper .swiper-button-prev {
    top: auto;
    bottom: 0;
    right: 100px;
    left: auto;
}

.testimonial-swiper .swiper-button-next {
    top: auto;
    bottom: 0;
    right: 40px;
}

@media (max-width: 1399px) {
    .testimonial-box2 {
        gap: 0;
    }
}

@media (max-width: 991px) {
    .testimonial-box2 .left-side {
        display: none;
    }

    .testimonial-box2 .right-side {
        width: 100%;
    }
}

@media (min-width: 768px) {
    .slider-active-sm {
        display: none;
    }
}

@media (max-width: 767px) {
    .testimonial-section2 {
        background-image: none;
    }

    .testimonial-box2 .right-side {
        flex-direction: column;
    }

    .testimonial-box2 .right-side .left-box {
        width: 100%;
        padding: 0 0 30px 0;
        border-right: none;
        border-bottom: 1px solid var(--border-color1);
    }

    .testimonial-box2 .right-side .right-box {
        width: 100%;
        flex-direction: row-reverse;
        margin-top: 20px;
        padding-left: 0;
    }

    .testimonial-swiper .swiper-button-prev {
        bottom: -160px;
        right: 50px;
    }

    .testimonial-swiper .swiper-button-next {
        bottom: -160px;
        right: 0;
    }

    .active-big {
        display: none !important;
    }
}

@media (max-width: 575px) {
    .testimonial-box2 .right-side {
        padding: 20px;
    }
}

html[dir="rtl"] .testimonial-box2 .right-side .left-box {
    border-right: none;
    border-left: 1px solid var(--border-color1);
    padding-right: 0;
    padding-left: 30px;
}

html[dir="rtl"] .testimonial-box2 .right-side .right-box {
    padding-left: 0;
    padding-right: 30px;
}

html[dir="rtl"] .testimonial-swiper .swiper-button-prev {
    right: auto;
    left: 40px;
}

html[dir="rtl"] .testimonial-swiper .swiper-button-next {
    right: auto;
    left: 100px;
}

@media (max-width: 767px) {
    html[dir="rtl"] .testimonial-box2 .right-side .left-box {
        border-left: none;
        padding-left: 0;
    }
}

html[dir="rtl"] .swiper i {
    transform: rotateY(0);
}

html[dir="rtl"] .installation-section .swiper-button-prev {
    right: auto;
    left: 0;
}

html[dir="rtl"] .installation-section .swiper-button-prev i {
    transform: rotate(0);
}

html[dir="rtl"] .installation-section .swiper-button-next {
    right: auto;
    left: 60px;
}

html[dir="rtl"] .installation-section .swiper-button-next i {
    transform: rotate(0);
}

/*----------------------------------------------
Testimonial section2 end
----------------------------------------------*/
/*----------------------------------------------
Counter section start
----------------------------------------------*/
.counter-section {
    padding: 60px 0;
}

@media  (max-width: 991px) {
    .counter-section {
        padding: 20px 0;
    }
}

/*----------------------------------------------
Counter section end
----------------------------------------------*/
/*----------------------------------------------
Installation section start
----------------------------------------------*/
.installation-section .section-header {
    position: relative;
    margin-bottom: 80px;
}

.installation-section .section-header .left-side {
    max-width: 811px;
    margin-right: 100px;
}

.installation-section .section-header .swiper-button-next {
    top: 10px;
    right: 0;
    margin-top: 0;
}

.installation-section .section-header .swiper-button-prev {
    top: 10px;
    right: 60px;
    left: auto;
    margin-top: 0;
}

.installation-section .nav-link {
    color: rgb(var(--heading-color));
    align-items: center;
    text-transform: capitalize;
    font-weight: 500;
    line-height: 26px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 10px;
    border-bottom: 1px solid transparent;
}

.installation-section .nav-link.active {
    border-bottom: 1px solid rgb(var(--primary-color));
}

.installation-section .nav-link img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.installation-swiper {
    border-bottom: 1px solid var(--border-color1);
}

.installation-swiper .swiper-slide {
    width: auto !important;
}

@media (max-width: 991px) {
    .installation-section .section-header {
        margin-bottom: 30px;
    }

    .installation-section .section-header .swiper-button-prev {
        top: 60px;
    }

    .installation-section .section-header .swiper-button-next {
        top: 60px;
    }
}

/*----------------------------------------------
Installation section end
----------------------------------------------*/
/*----------------------------------------------
Pricing section start
----------------------------------------------*/
.pricing-box-container {
    margin-top: 60px;
    display: flex;
}

.pricing-box {
    padding: 20px;
    background-color: var(--bg-color1);
    height: 100%;
    transition: var(--transition);
    flex: 1;
}

.pricing-box:hover {
    transform: translateY(-4px);
}

.pricing-box.highlight-pricing {
    background-color: rgb(var(--primary-color));
    color: rgb(var(--white));
    border-radius: 10px;
}

.pricing-box.highlight-pricing .pricing-name {
    color: rgb(var(--white));
}

.pricing-box.highlight-pricing .title .current-price {
    color: rgb(var(--white));
}

.pricing-box .pricing-name {
    font-size: 22px;
}

.pricing-box .img-box {
    width: 48px;
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(var(--primary-color), 0.05);
    border-radius: 50%;
    color: rgb(var(--primary-color));
    font-size: 20px;
}

.pricing-box .img-box img {
    width: 30px;
}

.pricing-box .title {
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 25px;
}

.pricing-box .title .current-price {
    font-weight: 600;
    font-size: 36px;
    color: rgb(var(--heading-color));
}

.pricing-box .title .original-price {
    text-decoration: line-through;
    white-space: nowrap;
    font-weight: 500;
}

.pricing-box .cmn-btn3 {
    background-color: var(--bg-color2);
    border-color: var(--bg-color2);
    margin-top: 30px;
    margin-bottom: 10px;
    width: 100%;
    white-space: nowrap;
}

.pricing-box .pricing-feature {
    margin-top: 40px;
}

.pricing-box .pricing-feature li:not(:last-child) {
    margin-bottom: 20px;
}

.pricing-feature li i {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: rgb(var(--body-color));
    background-color: var(--bg-color4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    margin-right: 7px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .pricing-box {
        padding: 7px;
        font-size: 14px;
        line-height: 26px;
    }

    .pricing-box .pricing-feature li:not(:last-child) {
        margin-bottom: 12px;
    }

    .pricing-feature li i {
        width: 16px;
        height: 16px;
        font-size: 10px;
    }
}

@media (max-width: 767px) {
    .pricing-box-container {
        flex-direction: column;
        gap: 16px;
    }

    .pricing-box {
        border: 1px solid var(--border-color1);
        border-radius: 16px;
    }
}

/*----------------------------------------------
Pricing section end
---------------------------------------------*/
/*----------------------------------------------
Compare pricing section start
----------------------------------------------*/
.compare-pricing-box {
    margin-top: 60px;
}

.compare-pricing-box .box-top {
    display: flex;
    background-color: rgb(var(--white));
    z-index: 9;
}

.compare-pricing-box .box-top .item {
    border-bottom: 1px solid var(--border-color1);
    padding: 50px 16px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.compare-pricing-box .box-top .item:not(:first-child) {
    width: 17%;
    border: 1px solid var(--border-color1);
    border-top: none;
    text-align: center;
}

.compare-pricing-box .box-top .item:first-child {
    width: 32%;
    padding-left: 0;
}

.compare-pricing-box .box-top .item:not(:nth-child(2)) {
    border-left: none;
}

.compare-pricing-box .box-top .item.highlight-bg {
    border-bottom: 1px solid transparent;
}

.compare-pricing-box .highlight-bg {
    color: rgb(var(--white));
}

.compare-pricing-box .highlight-bg .title {
    color: rgb(var(--white));
}

.compare-pricing-box .highlight-bg .price-title {
    color: rgb(var(--white));
}

.compare-pricing-box .price-title {
    margin-top: 16px;
    font-size: 32px;
    font-weight: 500;
    color: rgb(var(--heading-color));
}

.compare-pricing-box .price-title sup {
    top: -16px;
    font-size: 16px;
}

.compare-pricing-box .box-bottom-item .cmn-btn3 {
    background-color: var(--bg-color2);
    border-color: var(--bg-color2);
    margin-bottom: 30px;
    width: 100%;
    white-space: nowrap;
}

.compare-pricing-box .table {
    margin-bottom: 0;
    color: rgb(var(--body-color));
}

.compare-pricing-box .table .highlight-bg {
    border-bottom: 1px solid transparent;
}

.compare-pricing-box .table tr:last-child td {
    border-bottom: none;
}

.compare-pricing-box .table td {
    width: 17%;
    border-left: 1px solid transparent;
    border-right: 1px solid var(--border-color1);
}

.compare-pricing-box .table td:first-of-type {
    width: 32%;
    padding-left: 0;
}

.compare-pricing-box .table td:not(:first-of-type) {
    text-align: center;
}

.compare-pricing-box .table > :not(caption) > * > * {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color1);
}

.compare-pricing-box .table-striped > tbody > tr:nth-of-type(odd) > * {
    --bs-table-accent-bg: rgb(var(--white));
}

@media (min-width: 768px) {
    .compare-pricing-box .box-top {
        top: 75px;
        position: sticky;
    }
}

@media (max-width: 1199px) {
    .compare-pricing-section .container {
        max-width: 100%;
    }
}

@media (max-width: 991px) {
    .compare-pricing-box .box-top .item:first-child {
        display: none;
    }

    .compare-pricing-box .box-top .item:not(:first-child) {
        width: 25%;
    }

    .compare-pricing-box .box-top .item .price-title,
    .compare-pricing-box .box-top .item .price-title2 {
        display: none;
    }

    .compare-pricing-box .table tr {
        display: flex;
        flex-wrap: wrap;
    }

    .compare-pricing-box .table td {
        width: 25%;
        min-width: 100px;
    }

    .compare-pricing-box .table td:first-of-type {
        width: 100%;
        --bs-table-accent-bg: var(--bg-color1) !important;
    }

    .compare-pricing-box .table > :not(caption) > * > * {
        background-color: rgb(var(--white));
    }

    .compare-pricing-box.enterprise .box-top .item:not(:first-child) {
        width: 50%;
    }

    .compare-pricing-box.enterprise .table td {
        width: 50%;
    }

    .compare-pricing-box.enterprise .table td:first-of-type {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .compare-pricing-box .box-top {
        min-width: 400px;
    }

    .compare-pricing-box .box-top .item .cmn-btn,
    .compare-pricing-box .box-top .item .cmn-btn5 {
        display: none;
    }

    .compare-pricing-box .box-bottom {
        min-width: 400px;
    }

    .compare-pricing-box .table > :not(caption) > * > * {
        padding: 8px;
    }

    .box-bottom-item .cmn-btn3 {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .compare-pricing-box {
        overflow: auto;
    }

    .compare-pricing-box .box-top .title {
        font-size: 14px;
    }

    .compare-pricing-box .box-top .title small {
        font-size: 12px;
    }

    .compare-pricing-box .box-top .item:not(:first-child) {
        padding: 10px;
    }

    .compare-pricing-box .box-bottom-item .cmn-btn3 {
        padding: 0;
    }
}

html[dir="rtl"] .compare-pricing-box .box-top .price-title sup {
    margin-right: 0;
    margin-left: -4px;
}

html[dir="rtl"] .compare-pricing-box .box-top .item:not(:nth-child(2)) {
    border-left: 1px solid var(--border-color1);
    border-right: none;
}

html[dir="rtl"] .compare-pricing-box .box-top .item:first-child {
    border-left: none;
}

html[dir="rtl"] .compare-pricing-box .table td {
    border-left: 1px solid var(--border-color1);
    border-right: 1px solid transparent;
}

/*----------------------------------------------
Compare pricing section end
----------------------------------------------*/
/*----------------------------------------------
Working process section2 start
----------------------------------------------*/
.process-box2 {
    text-align: center;
}

.process-box2 .title {
    font-size: 24px;
}

.process-box2 .description {
    margin-top: 12px;
    line-height: 26px;
}

.process-box2 .number {
    font-size: 32px;
}

.process-box2 .line {
    width: 100%;
    height: 1px;
    background-color: var(--bg-color4);
    margin: 20px 0;
}

.process-box2 .box-top {
    align-content: end;
}

@media (min-width: 1200px) {
    .process-box2 .box-top {
        height: 117px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .process-box2 .box-top {
        height: 150px;
    }
}

/*----------------------------------------------
Working process section2 end
----------------------------------------------*/
/*----------------------------------------------
Customer review section start
----------------------------------------------*/
.review-box {
    border-radius: 8px;
    background-color: var(--bg-color1);
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px;
    background-color: var(--bg-color6);
}

.review-box .img-box {
    position: relative;
}

.review-box .img-box img {
    aspect-ratio: 316/203;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 4px;
}

.review-box .img-box .video-play-btn2 {
    top: 79px;
    left: 34px;
}

.review-box .img-box .video-play-btn2::after {
    color: rgb(var(--light-gray));
}

.review-box .img-box .video-play-btn2 i {
    border-color: rgb(var(--light-gray));
    color: rgb(var(--light-gray));
}

.review-box .text-box .time {
    margin-top: 40px;
    color: rgb(var(--heading-color));
}

.review-box .text-box .icon-box {
    width: 42px;
    height: 42px;
    background-color: rgb(var(--primary-color));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.review-box2 .img-box {
    position: relative;
}

.review-box2 .img-box img {
    border-radius: 8px;
    aspect-ratio: 356/469;
}

.review-box2 .img-box .video-play-btn2 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.review-box2 .img-box .video-play-btn2 i {
    background-color: rgb(var(--white));
    color: rgb(var(--light-gray));
    color: rgb(var(--body-color));
}

.review-box2 .img-box .time {
    position: absolute;
    top: 20px;
    left: 20px;
    color: rgb(var(--heading-color));
}

@media (max-width: 767px) {
    .review-box {
        text-align: center;
    }
}

/*----------------------------------------------
Customer review section end
----------------------------------------------*/
/*----------------------------------------------
Discount section start
----------------------------------------------*/
.discount-section .btn-box {
    margin-top: 60px;
}

.discount-box {
    display: flex;
    -moz-column-gap: 87px;
    column-gap: 87px;
    row-gap: 30px;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--border-color1);
}

.discount-box:first-child {
    border-top: 1px solid var(--border-color1);
    padding-top: 80px;
}

.discount-box:not(:last-child) {
    margin-top: 80px;
}

.discount-box:nth-child(even) {
    flex-direction: row-reverse;
}

.discount-box .img-box {
    max-width: 691px;
    width: 48.25%;
}

.discount-box .img-box img {
    aspect-ratio: 691/530;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 4px;
    position: sticky;
    top: 100px;
}

.discount-box .text-box {
    width: 51.75%;
}

.discount-box .text-box .price {
    display: flex;
    align-items: center;
    -moz-column-gap: 30px;
    column-gap: 30px;
}

.discount-box .text-box .price .currenct-price {
    color: rgb(var(--heading-color));
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 70px;
    text-transform: capitalize;
}

.discount-box .text-box .price .original-price {
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    text-decoration: line-through;
}

.discount-box .text-box .box-bottom {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.discount-box .cmn-btn3 {
    background-color: transparent;
}

@media (max-width: 1199px) {
    .discount-box {
        -moz-column-gap: 30px;
        column-gap: 30px;
    }
}

@media (max-width: 991px) {
    .discount-box {
        padding-bottom: 60px;
    }

    .discount-box .text-box .price .currenct-price {
        font-size: 36px;
    }

    .discount-box .text-box .box-bottom {
        margin-top: 20px;
    }

    .discount-box:not(:last-child) {
        margin-top: 60px;
    }

    .discount-box:first-child {
        padding-top: 60px;
    }
}

@media (max-width: 767px) {
    .discount-box {
        flex-direction: column !important;
        padding-bottom: 30px;
    }

    .discount-box .img-box {
        width: 100%;
    }

    .discount-box .text-box {
        width: 100%;
    }

    .discount-box .text-box .price .currenct-price {
        font-size: 28px;
    }

    .discount-box:not(:last-child) {
        margin-top: 30px;
    }

    .discount-box:first-child {
        padding-top: 30px;
    }
}

/*----------------------------------------------
Discount section end
----------------------------------------------*/
/*----------------------------------------------
Policy section start
----------------------------------------------*/
.policy-section {
    background-color: rgb(var(--bg-color1));
    position: relative;
    z-index: 0;
}

.policy-section ul,
.policy-section ol {
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.policy-section ul {
    list-style: circle;
}

.policy-section ol {
    list-style: decimal;
}

.policy-section .shape2 {
    top: auto;
    bottom: 150px;
}

.policy-section .shape3 {
    top: 150px;
}

html[dir="rtl"] .policy-section ul,
html[dir="rtl"] .policy-section ol {
    padding-left: 0;
    padding-right: 2rem;
}

/*----------------------------------------------
Policy section end
----------------------------------------------*/
/*----------------------------------------------
27. Error section start
----------------------------------------------*/
.error-section {
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    background-color: rgb(var(--bg-color1));
    display: flex;
    justify-content: center;
    align-items: center;
}

.error-section .img-box {
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.error-section .text-box .error-title {
    font-size: 30px;
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1;
    color: rgb(var(--heading-color));
    margin-bottom: 30px;
}

.error-section .text-box .error-info {
    font-size: 16px;
    line-height: 1.3;
    max-width: 450px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .error-section {
        padding: 100px 0;
    }

    .error-section .error-content .error-title {
        font-size: 60px;
    }

    .error-section .error-content .error-info {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .error-section {
        text-align: center;
    }
}

@media (max-width: 575px) {
    .error-section {
        min-height: 100%;
        min-width: 100%;
    }
}

/*----------------------------------------------
Error end
----------------------------------------------*/
/*----------------------------------------------
Unsubscribe section start
----------------------------------------------*/
.unsubscribe-box {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.unsubscribe-box .img-box {
    max-width: 250px;
    margin: 0 auto;
}

.unsubscribe-box .text-box {
    margin-top: 30px;
}

.unsubscribe-box .text-box .title {
    font-size: 22px;
}

/*----------------------------------------------
Unsubscribe section end
----------------------------------------------*/
/*----------------------------------------------
Application form s ection start
----------------------------------------------*/
.application-form {
    background-color: var(--bg-color6);
    padding-top: 150px;
}

.application-form .form-control,
.application-form .form-select {
    padding-left: 0;
    padding-right: 0;
}

.application-form .form-control[type="file"] {
    padding: 10px 20px;
}

.application-form .form-select {
    color: rgb(var(--body-color));
}

.application-form .form-label {
    font-size: 18px;
}

.application-card {
    background-color: var(--bg-color1);
    border-radius: 8px;
    padding: 40px 32px;
}

@media (max-width: 767px) {
    .application-form {
        padding-top: 125px;
    }
}

/*----------------------------------------------
Application form section end
----------------------------------------------*/
/*----------------------------------------------
Payment success section start
----------------------------------------------*/
.payment-success-section {
    background-color: var(--bg-color6);
}

.payment-success-box {
    padding: 100px 60px;
    max-width: 1000px;
    border-radius: 16px;
    width: 100%;
    line-height: 26px;
    background-color: var(--bg-color1);
}

.payment-success-box .icon-box {
    width: 100px;
    margin: auto;
}

.payment-success-box .text-box {
    text-align: center;
}

.payment-success-box .text-box .title {
    margin-top: 48px;
}

.payment-success-box .text-box .description {
    margin-top: 32px;
}

.product-item-container {
    margin-top: 60px;
}

.product-item {
    padding: 30px 24px;
    border-radius: 16px;
    border: 1px solid var(--border-color1);
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}

.product-item:not(:last-child) {
    margin-bottom: 40px;
}

.product-item .left-side {
    display: flex;
    gap: 24px;
    max-width: 422px;
    flex-grow: 1;
}

.product-item .left-side .title {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.product-item .product-item-img-box {
    width: 80px;
    width: 80px;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .payment-success-box {
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    .product-item {
        flex-direction: column;
    }

    .product-item .left-side {
        flex-direction: column;
        align-items: center;
    }

    .product-item .product-item-text-box {
        text-align: center;
    }
}

@media (max-width: 575px) {
    .payment-success-box {
        padding: 20px 15px;
    }

    .product-item {
        padding: 15px;
    }
}

/*----------------------------------------------
Payment success section end
----------------------------------------------*/
.setting-section {
    background-color: var(--bg-color6);
}

.setting-card {
    background-color: var(--bg-color1);
    padding: 46px 40px;
}

.setting-card .setting-card-icon {
    max-width: 100px;
    margin: auto;
}

.setting-card .form-control,
.setting-card .form-select {
    padding-left: 0;
    padding-right: 0;
    height: 44px;
}

.setting-card .form-select {
    color: rgb(var(--body-color));
}

@media (max-width: 1200px) {
    .border-end {
        border-right: none !important;
        border-bottom: var(--bs-border-width) var(--bs-border-style)
        var(--bs-border-color) !important;
    }
}

@media (max-width: 767px) {
    .setting-card {
        padding: 20px;
    }
}

/*----------------------------------------------
00. Cart section start
----------------------------------------------*/
.cart-section {
    padding-top: 150px;
}

.cart-table {
    line-height: 26px;
}

.cart-table table {
    color: var(--body-color);
    border-collapse: separate;
    border-spacing: 0 32px;
}

.cart-table thead tr {
    background-color: var(--bg-color2);
}

.cart-table tbody td {
    padding: 32px 15px;
    background-color: var(--bg-color4);
}

.cart-table thead th {
    text-transform: capitalize;
    padding: 20px 15px;
}

.cart-table thead th:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.cart-table thead th:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.cart-table tbody,
.cart-table td,
.cart-table tfoot,
.cart-table th,
.cart-table thead,
.cart-table tr {
    border: none;
}

.cart-table tbody tr td:first-child {
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}

.cart-table tbody tr td:last-child {
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
}

.cart-table .cart-item {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 426px;
    min-width: 310px;
}

.cart-table .cart-item .img-box {
    width: 60px;
    min-width: 60px;
    height: 60px;
}

.cart-table .cart-item .img-box img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 8px;
}

.cart-table .cart-item .title {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.item-count {
    padding: 5px;
    width: auto;
    display: inline-flex;
    align-items: center;
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid var(--border-color1);
    background-color: var(--bg-color1);
}

.item-count input {
    border: none;
    outline: none;
    width: 40px;
    text-align: center;
    background-color: var(--bg-color1);
    color: var(--heading-color);
}

.btn-inc-dec {
    border-radius: 5px;
    width: 30px;
    height: 30px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--heading-color);
}

.btn-inc-dec:hover {
    background-color: var(--bg-color5);
}

@media (min-width: 1200px) {
    tbody tr td:first-child {
        padding-left: 32px;
    }
}

@media (max-width: 991px) {
    .cart-section {
        padding-top: 100px;
    }

    .cart-table tbody td {
        padding: 20px 15px;
    }
}

.rtl .cart-table thead th:first-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.rtl .cart-table thead th:last-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

/*----------------------------------------------
Cart section end
----------------------------------------------*/
.coupon-code-box {
    display: flex;
    align-items: center;
    gap: 16px;
}

.coupon-code-box .form-control {
    height: 60px;
    background-color: var(--bg-color6);
    border: transparent;
    max-width: 455px;
    border-radius: 8px;
}

.coupon-code-box .cmn-btn {
    flex-shrink: 0;
    border-radius: 8px;
}

.coupon-code-box .cmn-btn .btn-wrapper {
    height: 60px;
}

.coupon-code-box .cmn-btn .btn-wrapper .btn-single {
    height: 60px;
}

.payment-box {
    margin-top: 80px;
}

/*----------------------------------------------
00. Payment box start
----------------------------------------------*/
.payment-container-list {
    margin-top: 40px;
    padding: 5px;
    display: flex;
    gap: 32px;
}

.payment-container-list .item {
    position: relative;
}

.payment-container-list .form-check-label {
    padding: 32px;
    cursor: pointer;
    border-radius: 8px;
    transition: var(--transition);
    gap: 15px;
    border: 1px solid var(--border-color1);
    background-color: var(--bg-color1);
}

.payment-container-list .form-check-label .image-area {
    width: 78px;
    height: 78px;
    flex-shrink: 0;
}

.payment-container-list .form-check-label .content-area {
    padding-right: 30px;
}

.payment-container-list .form-check-input {
    position: absolute;
    top: 35px;
    right: 35px;
    width: 1.5rem;
    height: 1.5rem;
}

.payment-container-list
.form-check-input[type="radio"]:checked
+ .form-check-label {
    background-color: var(--bg-color6);
}

@media (max-width: 767px) {
    .payment-container-list {
        flex-direction: column;
    }

    .payment-container-list .form-check-label .image-area {
        width: 50px;
        min-width: 50px;
    }
}

.rtl .payment-container-list .form-check-label .content-area {
    padding-right: 0;
    padding-left: 30px;
}

.rtl .payment-container-list .form-check-input {
    left: 15px;
    right: auto;
}

.transfer-details-section .link {
    color: rgb(var(--heading-color));
}

.transfer-list {
    padding: 15px;
    margin-bottom: 20px;
}

.transfer-list h5 {
    margin-bottom: 0;
}

.transfer-list .title:not(:last-child) {
    margin-bottom: 20px;
}

.transfer-list .item {
    display: flex;
    justify-content: space-between;
}

.transfer-list .item:not(:last-child) {
    margin-bottom: 10px;
}

.fake-nav {
    height: 90px;
}

/*----------------------------------------------
Payment box end
----------------------------------------------*/

/*----------------------------------------------
Hover Img box Start
----------------------------------------------*/
.tp--hover-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.tp--hover-img canvas {
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    border-radius: 10px;
}

.tp--hover-img {
    pointer-events: none;
}

.thumb-content {
    overflow: hidden;
    border-radius: 15px;
}

.thumb-content img {
    border-radius: 15px;
}

/*----------------------------------------------
Hover Img box end
----------------------------------------------*/
.bf-element-move-box {
    display: inline-flex;
    text-decoration: none;
    transition: none;
    gap: 20px;
    justify-content: space-between;
    width: 100%;
}

/*----------------------------------------------
text_invert star
----------------------------------------------*/
.gt_text_invert_3 > div {
    background-image: linear-gradient(to right, #111013 50%, #e4e4e4 50%);
    background-size: 200% 100%;
    background-position: 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/*----------------------------------------------
text_invert End
----------------------------------------------*/

.promo-swiper-slide .swiper-slide {
    height: auto !important;
}

.career-section .section-subtitle .title-anim {
    display: inline-block !important;
    white-space: nowrap !important;
}

.Vue-Toastification__toast.custom-toast {
    background-color: #ffffff;
    color: #1f2937;
    border-radius: 10px;
    padding: 13px 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
    font-size: 15px;
    font-weight: 500;
    min-height: auto;
    line-height: 1.4;
    font-family: var(--body-font, "Inter", sans-serif);
}

.Vue-Toastification__toast {
    display: flex;
    gap: 10px;
    align-items: center;
}

.Vue-Toastification__toast svg {
    margin: 0;
}

.Vue-Toastification__toast--success svg path {
    fill: #038030;
}

.Vue-Toastification__toast--info svg path {
    fill: #2196f3;
}

.Vue-Toastification__toast--warning svg path {
    fill: #ffc107;
}

.Vue-Toastification__toast--error svg path {
    fill: #ff5252;
}

/*----------------------------------------------
Button Hover Circle Start
----------------------------------------------*/

.gt-hover-btn-wrapper {
    display: inline-block;
}

.gt-hover-btn-wrapper .gt-btn-circle-2 {
    position: relative;
    overflow: hidden;
    display: inline-block;
    border-radius: 50%;
    color: rgb(var(--body-color));
    font-size: 16px;
    line-height: 26px;
    letter-spacing: -0.14px;
    text-transform: capitalize;
    border: 1px solid var(--border-color1) !important;
    z-index: 1;
    width: 128px;
    height: 128px;
    border: 0;
    background: #fff;
}

.gt-hover-btn-wrapper .gt-btn-circle-2:hover {
    color: #fff !important;
}

.gt-hover-btn-wrapper .gt-btn-circle-2:hover .gt-btn-circle-dot {
    width: 320px;
    height: 320px;
}

.gt-hover-btn-wrapper .gt-btn-circle-2.bg-2:hover {
    border: 1px solid #ff6600;
    background: rgb(var(--primary-color)) !important;
}

.gt-hover-btn-wrapper .gt-btn-circle-2 .gt-btn-circle-dot {
    position: absolute;
    bottom: -106px;
    left: 62px;
    width: 90px;
    height: 90px;
    background-color: rgb(var(--primary-color));
    line-height: 20px;
    border-radius: 50%;
    transition: all 0.5s ease-out;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.gt-hover-btn-wrapper .gt-btn-circle-2 .gt-btn-circle-dot.bg-2 {
    background-color: rgb(var(--primary-color));
}

.gt-hover-btn-wrapper .gt-btn-circle-2 .gt-btn-circle-text-2 {
    display: flex;
    gap: 5px;
    margin-bottom: 8px;
}
.gt-hover-btn-wrapper .gt-btn-circle-2 .gt-btn-circle-text-2 i {
    display: block;
    transform: rotate(50deg);
}

.gt-hover-btn-wrapper .gt-btn-circle-2 .gt-btn-circle-text-2:hover {
    color: #fff !important;
}

@media (min-width: 768px) {
    .custom-btn-sm {
        display: none;
        align-items: center;
    }
}

@media (max-width: 767px) {
    .custom-btn-big {
        display: none;
    }
}

/*----------------------------------------------
Button Hover Circle Start
----------------------------------------------*/

/*----------------------------------------------
Easy Contact Start
----------------------------------------------*/
.easy-contact {
    position: fixed;
    right: 0;
    bottom: 30px;
    z-index: 999;
    padding-top: 45px;
}

.easy-contact:hover .close-btn {
    visibility: visible;
    opacity: 1;
}

.easy-contact ul li:hover a {
    display: flex;
    gap: 15px;
}

.easy-contact .close-btn {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    background: #000;
    border: 1px solid #2e8af3;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    mix-blend-mode: exclusion;
    visibility: hidden;
    opacity: 0;
    transition: all 200ms ease-in-out;
    cursor: pointer;
}

.easy-contact .close-btn i {
    color: #fff;
}

.easy-contact ul {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
}

.easy-contact ul li {
    margin-bottom: 10px;
    transition: all 200ms ease-in-out;
}

.jump-ami {
    animation: 0.8s ease-out 0s 1 normal forwards running fallDown;
    opacity: 0;
    transform: translateY(-120px);
}

.easy-contact ul li:nth-child(1) {
    animation-delay: 1.2s;
}

.easy-contact ul li:nth-child(2) {
    animation-delay: 0.9s;
}

.easy-contact ul li:nth-child(3) {
    animation-delay: 0.5s;
}

.easy-contact ul li:last-child {
    margin-bottom: 0;
}

.easy-contact ul li a {
    background: linear-gradient(90deg, #c7cdf9 0%, #fad5d9 100%);
    border-radius: 40px 0 0 40px;
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    color: #000;
    padding: 5px 13px 5px 5px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.contact-two {
    background: #000 !important;
    color: #fff !important;
}

.contact-three {
    background: linear-gradient(90deg, #2e8af3 0%, #8754e6 100%) !important;
    color: #fff !important;
}

.easy-contact ul li a span {
    background: #ffffff;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}

.sm-icon {
    width: 50px;
    height: 50px;
    background: #8754e6;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
}

@media (max-width: 576px) {
    .easy-contact {
        display: none;
        bottom: 80px;
    }
}

/* Hover show */
.sm-icon:hover + .easy-contact {
    display: block;
}

/* Mobile */
@media (min-width: 576px) {
    .easy-contact {
        visibility: visible; /* important */
    }
}

/* Desktop */
@media (min-width: 576px) {
    .sm-icon {
        display: none;
    }
}

/*----------------------------------------------
Easy Contact End
----------------------------------------------*/

/*----------------------------------------------
lets Talk Star
----------------------------------------------*/
.lets-talk-area {
    padding-top: 0;
}

.lets-talk-wrapper .lets-talk-card {
    background-color: #f4f4f4;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

@media (max-width: 450px) {
    .lets-talk-wrapper .lets-talk-card {
        padding: 20px;
    }
}

.lets-talk-wrapper .lets-talk-card .icon {
    width: 98px;
    height: 98px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    margin: 0 auto;
    margin-bottom: 20px;
}

@media (max-width: 450px) {
    .lets-talk-wrapper .lets-talk-card .icon {
        width: 75px;
        height: 75px;
    }

    .lets-talk-wrapper .lets-talk-card .icon svg {
        width: 40px;
        height: 40px;
    }
}

.lets-talk-wrapper .lets-talk-card .content .title {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 40px;
    line-height: normal;
    letter-spacing: 0.01em;
    text-align: center;
    color: #000000;
    margin-bottom: 24px;
}

@media (max-width: 450px) {
    .lets-talk-wrapper .lets-talk-card .content .title {
        font-size: 35px;
    }
}
@media (max-width: 576px) {
    .lets-talk-wrapper .lets-talk-card .content .title {
        font-size: 30px;
    }
}

@media (max-width: 450px) {
    .lets-talk-wrapper .lets-talk-card .content .title {
        font-size: 23px;
    }
}

.lets-talk-wrapper .lets-talk-card .content .text {
    max-width: 565px;
    margin: 0 auto;
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 18px;
    line-height: 36px;
    letter-spacing: 0em;
    text-align: center;
    color: #8d8d8d;
    margin-bottom: 32px;
}

@media (max-width: 450px) {
    .lets-talk-wrapper .lets-talk-card .content .text {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 10px;
    }
}

/*----------------------------------------------
lets Talk End
----------------------------------------------*/

/*----------------------------------------------
Theme Button Star
----------------------------------------------*/
.theme-wrap-btn .theme-btn {
    border: 1px solid #dedede;
    border-radius: 8px;
    padding: 5px 32px !important;
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    color: #10100f;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: transparent !important;
    transition: all 250 ease-in-out;
}

@media (max-width: 450px) {
    .theme-wrap-btn .theme-btn {
        padding: 5px 15px !important;
    }
}

.theme-wrap-btn .theme-btn svg {
    transition: all 200 ease-in-out;
}

.theme-wrap-btn .theme-btn:hover {
    background-color: #7c3aed !important;
    color: #ffffff;
}

.theme-wrap-btn .theme-btn:hover svg path {
    fill: #ffffff;
}

/*----------------------------------------------
Theme Button Star
----------------------------------------------*/

/*----------------------------------------------
Technical Support Star
----------------------------------------------*/

.technical-support-area {
    padding-top: 0;
}
.technical-support-wrapper .container {
    background-color: #fafafa;
    border-radius: 16px;
    padding: 40px 40px 140px 40px;
}

@media (max-width: 450px) {
    .technical-support-wrapper .container {
        padding: 10px;
    }
}

.technical-support-wrapper .contact-form .form-label {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    color: #0f0f0e;
    margin-bottom: 6px;
    display: block;
}

.technical-support-wrapper .contact-form .form-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.technical-support-wrapper .contact-form .form-group .form-check {
    padding: 0 !important;
}

.technical-support-wrapper
.contact-form
.form-group
.form-check
.form-check-input {
    display: none;
    padding: 0 !important;
}

.technical-support-wrapper .form-check-label.active {
    border-color: rgb(var(--primary-color)) !important;
    background: rgba(var(--primary-color), 0.05);
    color: rgb(var(--primary-color));
}

.technical-support-wrapper
.contact-form
.form-group
.form-check
.form-check-label {
    letter-spacing: 0.18px;
    border-radius: 0.5rem;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 0;
    padding: 0.75rem 1.25rem;
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0em;
    color: #8d8d8d;
    transition: all 0.2s;
    position: relative;
    inset: 0% auto 0% 0%;
    border: 1px solid #e5e5e5;
}

.technical-support-wrapper
.contact-form
.form-group
.form-check
.form-check-label:hover {
    border: 1px solid rgb(var(--primary-color));
}
.technical-support-wrapper
.contact-form
.form-group
.form-check
.form-check-label.active {
    border: 1px solid rgb(var(--primary-color)) !important;
}

.technical-support-wrapper .contact-form .form-control {
    width: 100%;
    height: 50px;
    background-color: #ffffff;
    border-width: 1px;
    border-color: #efefef;
    border-style: solid;
    border-radius: 8px;
    font-family: var(--heading-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0em;
    text-align: left;
    color: #8d8d8d;
    position: relative;
    padding: 10px 20px;
}

.technical-support-wrapper .contact-form .select-wrapper {
    position: relative;
}

.technical-support-wrapper .contact-form .select-wrapper .form-control {
    padding: 10px 42px 10px 20px;
}

.technical-support-wrapper .contact-form .select-wrapper .down-icon {
    position: absolute;
    top: 50%;
    right: 17px;
    transform: translateY(-50%);
    border-left: 1px solid #efefef;
    padding-left: 12px;
}

.technical-support-wrapper .contact-form .form-control:focus {
    border-color: #4a6cf7;
    background-color: #fff;
}

.technical-support-wrapper .contact-form textarea.form-control {
    height: auto;
    padding-top: 16px;
}

/* -------------------------
   File Upload Style
------------------------- */

.file-drop-area {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 51px 0 52px 32px;
    border: 2px dashed #8d8d8d;
    border: 2px dashed #efefef;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s, background 0.3s;
    background: #fff !important;
}

@media (max-width: 576px) {
    .file-drop-area {
        padding: 30px 0 30px 32px;
    }
}

@media (max-width: 450px) {
    .file-drop-area {
        padding: 30px 0 30px 8px;
    }
}

.file-drop-area:hover {
    background: #f5f5f5;
    border-color: #007bff;
}

.file-drop-area p {
    margin: 0;
    color: #8d8d8d;
    font-weight: 500;
}

.file-drop-area span {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 18px;
    line-height: 167%;
    color: rgb(var(--primary-color));
}

.file-input {
    display: none; /* hide default input */
}

.file-drop-area.dragover {
    border-color: #007bff;
    background: #e6f0ff;
}

.technical-support-cta {
    display: flex;
    align-items: center;
    gap: 24px;
    background: #f3ebff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.technical-support-cta .icon {
    min-width: 92px;
    min-height: 92px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #7c3aed;
}

@media (max-width: 450px) {
    .technical-support-cta {
        flex-direction: column;
    }

    .technical-support-cta .icon {
        min-width: 76px;
        min-height: 76px;
    }
}

.technical-support-cta p {
    font-family: var(--heading-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #10100f;
    max-width: 425px;
}

.technical-support-cta p span {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 16px;
    line-height: 188%;
    color: #10100f;
    max-width: 368px;
}

@media (max-width: 500px) {
    .technical-support-cta p {
        font-size: 14px;
        line-height: 22px;
    }

    .technical-support-cta p span {
        font-size: 13px;
        line-height: 22px;
    }
}

@media (max-width: 470px) {
    .technical-support-cta p {
        font-size: 13px;
        line-height: 22px;
    }

    .technical-support-cta p span {
        font-size: 14px;
        line-height: 22px;
    }
}

.auth-cta {
    background-color: #f4f4f4;
    padding: 24px 20px;
    border: 1px solid #eaeaea;
    border-radius: 8px;
}

.auth-cta p {
    font-family: var(--heading-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0em;
    text-align: left;
    color: #000000;
    margin-bottom: 20px;
    max-width: 605px;
}

.auth-btn {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 450px) {
    .auth-cta {
        padding: 15px 12px;
    }
    .auth-btn {
        gap: 10px;
    }
}

.auth-btn .btn-area {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    border-radius: 8px;
}

.auth-btn .btn-wrapper {
    height: 40px;
}

.auth-btn .btn-wrapper .main-text {
    height: 40px;
}

.auth-btn .btn-wrapper .hover-text {
    height: 40px;
}

.auth-btn .btn-area .theme-btn-two {
    background: transparent !important;
    border: 1px solid #dedede;
    color: #10100f;
}

.technical-support-wrapper .contact-form .btn-area {
    display: inline-block;
}

/*----------------------------------------------
Technical Support End
----------------------------------------------*/

/*----------------------------------------------
sales support End
----------------------------------------------*/
.sales-support-area {
    padding-top: 0;
}
.sales-support-wrapper .sales-contact-card {
    background-color: #f4f4f4;
    border-radius: 16px;
    padding: 40px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    height: 100%;
}

@media (max-width: 992px) {
    .sales-support-wrapper .sales-contact-card {
        padding: 20px;
    }
}

.sales-support-wrapper .sales-contact-card .icon-thumb {
    text-align: center;
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .sales-support-wrapper .sales-contact-card {
        padding: 20px;
    }
}

@media (max-width: 450px) {
    .sales-support-wrapper .sales-contact-card .icon-thumb {
        width: 50px;
        height: 50px;
        margin: 0 auto 10px auto;
    }
}

.sales-support-wrapper .sales-contact-card .content .title {
    text-align: center;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 40px;
    line-height: normal;
    letter-spacing: 0.01em;
    text-align: center;
    color: #000000;
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .sales-support-wrapper .sales-contact-card .icon-thumb {
        margin-bottom: 20px;
    }

    .sales-support-wrapper .sales-contact-card .content .title {
        margin-bottom: 20px;
        font-size: 35px;
    }
}

@media (max-width: 576px) {
    .sales-support-wrapper .sales-contact-card .content .title {
        font-size: 30px;
    }
}

@media (max-width: 450px) {
    .sales-support-wrapper .sales-contact-card .content .title {
        font-size: 23px;
    }
}

.sales-support-wrapper .sales-contact-card .content .text {
    font-family: var(--heading-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0em;
    text-align: center;
    color: #8d8d8d;
    max-width: 299px;
    margin: 0 auto;
    margin-bottom: 42px;
}

.sales-support-wrapper .sales-contact-card .content .appointment-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sales-support-wrapper .sales-contact-card .content .appointment-btn .btn-area {
    display: inline-block;
}

.sales-support-wrapper .sales-contact-card .content .modal {
    position: absolute;
    width: 335px;
    height: 335px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.sales-support-wrapper .sales-contact-card .content .modal .btn-close {
    position: absolute;
    width: 20px;
    height: 20px;
    right: 0px;
    top: 0px;
    border: 1px solid gray;
    z-index: 99;
}

.sales-support-wrapper .sales-contact-card .content .modal .btn-close:focus {
    box-shadow: none;
}

.sales-support-wrapper .sales-contact-card .content .modal-content {
    margin: 25px;
    min-height: 100%;
    width: 100%;
}

@media (min-width: 768px) {
    .modal-body {
        max-height: 100%;
    }
}

.sales-support-wrapper .sales-contact-card .content .qr-btn {
    text-align: center;
    margin-bottom: 24px;
}
.sales-support-wrapper
.sales-contact-card
.content
.qr-btn
.btn-area
.theme-btn-two {
    background: transparent !important;
    border: 1px solid #dedede;
    color: #10100f;
}

.sales-support-wrapper .sales-contact-card .content span {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.sales-support-wrapper .sales-contact-card .content .app-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    gap: 8px;
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0em;
    text-align: left;
    color: #7c3aed;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .sales-support-wrapper .sales-contact-card .content .qr-btn {
        margin-bottom: 10px;
    }
    .sales-support-wrapper
    .sales-contact-card
    .content
    .qr-btn
    .btn-area
    .theme-btn-two
    .btn-wrapper
    .btn-single {
        font-size: 12px;
    }

    .sales-support-wrapper .sales-contact-card .content span {
        margin-bottom: 10px;
    }
}

.sales-support-wrapper .office-open-data .content-card {
    background-color: #f4f4f4;
    border-radius: 16px;
    padding: 45px 24px 40px 24px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

@media (max-width: 450px) {
    .sales-support-wrapper .office-open-data .content-card {
        padding: 30px 24px 30px 24px;
    }
}

.sales-support-wrapper .office-open-data .content-card .note-box {
    background: #ffff;
    padding: 14px 22px;
    border: 1px solid #efefef;
    border-radius: 8px;
    position: relative;
    margin-bottom: 60px;
}

@media (max-width: 576px) {
    .sales-support-wrapper .office-open-data .content-card .note-box {
        margin-bottom: 45px;
    }
}

.sales-support-wrapper .office-open-data .content-card .note-box::before {
    content: "";
    width: 8px;
    height: 100%;
    background: #7c3aed;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 8px 0 0 8px;
}

.sales-support-wrapper .office-open-data .content-card .note-box p {
    font-family: var(--heading-font);
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.01em;
    color: #8d8d8d;
    margin-bottom: 0;
}

.sales-support-wrapper .office-open-data .content-card .note-box span {
    font-weight: 500;
    color: #000;
}

@media (max-width: 1399px) {
    .sales-support-wrapper .office-open-data .content-card .note-box p {
        font-size: 14px;
        line-height: 30px;
    }
}

.sales-support-wrapper
.office-open-data
.content-card
.content-table
.content-table-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px dotted #bababa;
    margin-bottom: 30px;
}

.sales-support-wrapper
.office-open-data
.content-card
.content-table
.content-table-header
p {
    font-family: "Instrument Sans";
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0em;
    text-align: center;
    color: #000000;
}

.sales-support-wrapper .office-open-data .content-card .content-table-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    border: 1px solid #efefef;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .sales-support-wrapper
    .office-open-data
    .content-card
    .content-table-list
    li {
        margin-bottom: 20px;
    }
}

.sales-support-wrapper
.office-open-data
.content-card
.content-table-list
li:last-child {
    margin-bottom: 0;
}

.sales-support-wrapper
.office-open-data
.content-card
.content-table-list
li
span {
    font-family: "Instrument Sans";
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
    letter-spacing: 0em;
    text-align: left;
    color: #8d8d8d;
}

@media (max-width: 450px) {
    .sales-support-wrapper
    .office-open-data
    .content-card
    .content-table-list
    li
    span {
        font-size: 14px;
    }
}

.sales-support-wrapper
.office-open-data
.content-card
.content-table-list
li
p {
    margin-bottom: 0;
    font-family: "Instrument Sans";
    font-weight: 400;
    font-size: 16px;
    line-height: normal;
    letter-spacing: 0em;
    text-align: right;
    color: #ff0000;
}

/*----------------------------------------------
sales support End
----------------------------------------------*/
