@charset "UTF-8";
/*!
 * Bootstrap v5.0.2 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */

:root {
    --main-color: #D93829;
    --sec-color: #03505E;
    --dark-color: #023A42;
    --bg-color: #DBE1E1;
}

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

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
    display: block;
}

body {
    margin: 0;
    font-weight: 400;
    line-height: 1.5;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

ol,
ul,
dl {
    margin-top: 0;
    margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
    margin-bottom: 0;
}

b,
strong {
    font-weight: bolder;
}

img {
    vertical-align: middle;
    border-style: none;
}

input,
button,
select,
optgroup,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button,
input {
    overflow: visible;
}

select {
    word-wrap: normal;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
    cursor: pointer;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
    padding: 0;
    border-style: none;
}

input[type=radio],
input[type=checkbox] {
    box-sizing: border-box;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}

h1,
.h1 {
    font-size: 2.5rem;
}

h2,
.h2 {
    font-size: 2rem;
}

h3,
.h3 {
    font-size: 1.75rem;
}

h4,
.h4 {
    font-size: 1.5rem;
}

h5,
.h5 {
    font-size: 1.25rem;
}

h6,
.h6 {
    font-size: 1rem;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .form-control {
        transition: none;
    }
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-control:disabled,
.form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1;
}

input[type=date].form-control,
input[type=time].form-control,
input[type=datetime-local].form-control,
input[type=month].form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

textarea.form-control {
    height: auto;
}

.form-group {
    margin-bottom: 1rem;
}

.fade {
    transition: opacity 0.15s linear;
}

.border-0 {
    border: 0 !important;
}

.rounded {
    border-radius: 0.25rem !important;
}

.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-flex {
    display: -ms-flexbox !important;
    display: flex !important;
}

@media (min-width: 576px) {
    .d-sm-none {
        display: none !important;
    }

    .d-sm-block {
        display: block !important;
    }

    .d-sm-flex {
        display: -ms-flexbox !important;
        display: flex !important;
    }
}

@media (min-width: 768px) {
    .d-md-none {
        display: none !important;
    }

    .d-md-block {
        display: block !important;
    }

    .d-md-flex {
        display: -ms-flexbox !important;
        display: flex !important;
    }
}

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

    .d-lg-block {
        display: block !important;
    }

    .d-lg-flex {
        display: -ms-flexbox !important;
        display: flex !important;
    }
}

@media (min-width: 1200px) {
    .d-xl-none {
        display: none !important;
    }

    .d-xl-block {
        display: block !important;
    }

    .d-xl-flex {
        display: -ms-flexbox !important;
        display: flex !important;
    }
}

@media print {
    .d-print-none {
        display: none !important;
    }

    .d-print-block {
        display: block !important;
    }

    .d-print-flex {
        display: -ms-flexbox !important;
        display: flex !important;
    }
}

.justify-content-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.align-items-center {
    -ms-flex-align: center !important;
    align-items: center !important;
}

.align-items-start {
    align-items: start !important;
}

.w-100 {
    width: 100% !important;
}

.h-100 {
    height: 100% !important;
}

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.text-center {
    text-align: center !important;
}

@media print {

    *,
    *::before,
    *::after {
        text-shadow: none !important;
        box-shadow: none !important;
    }

    abbr[title]::after {
        content: " (" attr(title) ")";
    }

    pre {
        white-space: pre-wrap !important;
    }

    pre,
    blockquote {
        border: 1px solid #adb5bd;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }

    @page {
        size: a3;
    }

    body {
        min-width: 992px !important;
    }
}

.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: 0.875rem;
    word-wrap: break-word;
    opacity: 0;
}

.tooltip.show {
    opacity: 0.9;
}

.tooltip .arrow {
    position: absolute;
    display: block;
    width: 0.8rem;
    height: 0.4rem;
}

.tooltip .arrow::before {
    position: absolute;
    content: "";
    border-color: transparent;
    border-style: solid;
}

.bs-tooltip-top,
.bs-tooltip-auto[x-placement^=top] {
    padding: 0.4rem 0;
}

.bs-tooltip-top .arrow,
.bs-tooltip-auto[x-placement^=top] .arrow {
    bottom: 0;
}

.bs-tooltip-top .arrow::before,
.bs-tooltip-auto[x-placement^=top] .arrow::before {
    top: 0;
    border-width: 0.4rem 0.4rem 0;
    border-top-color: #000;
}

.bs-tooltip-right,
.bs-tooltip-auto[x-placement^=right] {
    padding: 0 0.4rem;
}

.bs-tooltip-right .arrow,
.bs-tooltip-auto[x-placement^=right] .arrow {
    left: 0;
    width: 0.4rem;
    height: 0.8rem;
}

.bs-tooltip-right .arrow::before,
.bs-tooltip-auto[x-placement^=right] .arrow::before {
    right: 0;
    border-width: 0.4rem 0.4rem 0.4rem 0;
    border-right-color: #000;
}

.bs-tooltip-bottom,
.bs-tooltip-auto[x-placement^=bottom] {
    padding: 0.4rem 0;
}

.bs-tooltip-bottom .arrow,
.bs-tooltip-auto[x-placement^=bottom] .arrow {
    top: 0;
}

.bs-tooltip-bottom .arrow::before,
.bs-tooltip-auto[x-placement^=bottom] .arrow::before {
    bottom: 0;
    border-width: 0 0.4rem 0.4rem;
    border-bottom-color: #000;
}

.bs-tooltip-left,
.bs-tooltip-auto[x-placement^=left] {
    padding: 0 0.4rem;
}

.bs-tooltip-left .arrow,
.bs-tooltip-auto[x-placement^=left] .arrow {
    right: 0;
    width: 0.4rem;
    height: 0.8rem;
}

.bs-tooltip-left .arrow::before,
.bs-tooltip-auto[x-placement^=left] .arrow::before {
    left: 0;
    border-width: 0.4rem 0 0.4rem 0.4rem;
    border-left-color: #000;
}

.tooltip-inner {
    max-width: 200px;
    padding: 0.25rem 0.5rem;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: 0.25rem;
}

.modal-open {
    overflow: hidden;
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    outline: 0;
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
}

.modal.fade .modal-dialog {
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    -webkit-transform: translate(0, -25%);
    transform: translate(0, -25%);
}

.modal.show .modal-dialog {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.modal-dialog-centered {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - 1rem);
}

.modal-content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    outline: 0;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #141414;
}

.modal-backdrop.fade {
    opacity: 0;
}

.modal-backdrop.show {
    opacity: 0.6;
}

.modal-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
}

.modal-header .close {
    padding: 1rem;
    margin: -1rem -1rem -1rem auto;
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
}

.modal-body {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem;
}

.modal-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 1rem;
    border-top: 1px solid #e9ecef;
}

.modal-footer> :not(:first-child) {
    margin-left: 0.25rem;
}

.modal-footer> :not(:last-child) {
    margin-right: 0.25rem;
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }

    .modal-dialog-centered {
        min-height: calc(100% - 3.5rem);
    }

    .modal-sm {
        max-width: 300px;
    }
}

@media (min-width: 992px) {
    .modal-lg {
        max-width: 800px;
    }
}

.table-sm td,
.table-sm th {
    padding: 0.3rem;
}

.table-bordered {
    border: 1px solid #dee2e6;
}

.table-bordered td,
.table-bordered th {
    border: 1px solid #dee2e6;
}

.table-bordered thead td,
.table-bordered thead th {
    border-bottom-width: 2px;
}

.table-borderless tbody+tbody,
.table-borderless td,
.table-borderless th,
.table-borderless thead th {
    border: 0;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.075);
}

.table-primary,
.table-primary>td,
.table-primary>th {
    background-color: #b8daff;
}

.table-hover .table-primary:hover {
    background-color: #9fcdff;
}

.table-hover .table-primary:hover>td,
.table-hover .table-primary:hover>th {
    background-color: #9fcdff;
}

.table-secondary,
.table-secondary>td,
.table-secondary>th {
    background-color: #d6d8db;
}

.table-hover .table-secondary:hover {
    background-color: #c8cbcf;
}

.table-hover .table-secondary:hover>td,
.table-hover .table-secondary:hover>th {
    background-color: #c8cbcf;
}

.table-success,
.table-success>td,
.table-success>th {
    background-color: #c3e6cb;
}

.table-hover .table-success:hover {
    background-color: #b1dfbb;
}

.table-hover .table-success:hover>td,
.table-hover .table-success:hover>th {
    background-color: #b1dfbb;
}

.table-info,
.table-info>td,
.table-info>th {
    background-color: #bee5eb;
}

.table-hover .table-info:hover {
    background-color: #abdde5;
}

.table-hover .table-info:hover>td,
.table-hover .table-info:hover>th {
    background-color: #abdde5;
}

.table-warning,
.table-warning>td,
.table-warning>th {
    background-color: #ffeeba;
}

.table-hover .table-warning:hover {
    background-color: #ffe8a1;
}

.table-hover .table-warning:hover>td,
.table-hover .table-warning:hover>th {
    background-color: #ffe8a1;
}

.table-danger,
.table-danger>td,
.table-danger>th {
    background-color: #f5c6cb;
}

.table-hover .table-danger:hover {
    background-color: #f1b0b7;
}

.table-hover .table-danger:hover>td,
.table-hover .table-danger:hover>th {
    background-color: #f1b0b7;
}

.table-light,
.table-light>td,
.table-light>th {
    background-color: #fdfdfe;
}

.table-hover .table-light:hover {
    background-color: #ececf6;
}

.table-hover .table-light:hover>td,
.table-hover .table-light:hover>th {
    background-color: #ececf6;
}

.table-dark,
.table-dark>td,
.table-dark>th {
    background-color: #c6c8ca;
}

.table-hover .table-dark:hover {
    background-color: #b9bbbe;
}

.table-hover .table-dark:hover>td,
.table-hover .table-dark:hover>th {
    background-color: #b9bbbe;
}

.table-active,
.table-active>td,
.table-active>th {
    background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
    background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover>td,
.table-hover .table-active:hover>th {
    background-color: rgba(0, 0, 0, 0.075);
}

.table .thead-dark th {
    color: #fff;
    background-color: #212529;
    border-color: #32383e;
}

.table .thead-light th {
    color: #495057;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table-dark {
    color: #fff;
    background-color: #212529;
}

.table-dark td,
.table-dark th,
.table-dark thead th {
    border-color: #32383e;
}

.table-dark.table-bordered {
    border: 0;
}

.table-dark.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(255, 255, 255, 0.05);
}

.table-dark.table-hover tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
    .table-responsive-sm {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }

    .table-responsive-sm>.table-bordered {
        border: 0;
    }
}

@media (max-width: 767.98px) {
    .table-responsive-md {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }

    .table-responsive-md>.table-bordered {
        border: 0;
    }
}

@media (max-width: 991.98px) {
    .table-responsive-lg {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }

    .table-responsive-lg>.table-bordered {
        border: 0;
    }
}

@media (max-width: 1199.98px) {
    .table-responsive-xl {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }

    .table-responsive-xl>.table-bordered {
        border: 0;
    }
}

.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

.table-responsive>.table-bordered {
    border: 0;
}

.collapse:not(.show) {
    display: none;
}

.collapse:not(.show) {
    display: none;
}

.collapsing {
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
    .collapsing {
        transition: none;
    }
}

.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    background-color: #fff;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {
    .accordion-button {
        transition: none;
    }
}

.accordion-button:not(.collapsed) {
    color: #0c63e4;
    background-color: #e7f1ff;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}

.accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform 0.2s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .accordion-button::after {
        transition: none;
    }
}

.accordion-button:hover {
    z-index: 2;
}

.accordion-button:focus {
    z-index: 3;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-item {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.125);
}

.accordion-item:first-of-type {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px);
}

.accordion-item:not(:first-of-type) {
    border-top: 0;
}

.accordion-item:last-of-type {
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: calc(0.25rem - 1px);
    border-bottom-left-radius: calc(0.25rem - 1px);
}

.accordion-item:last-of-type .accordion-collapse {
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.accordion-body {
    padding: 1rem 1.25rem;
}

.accordion-flush .accordion-collapse {
    border-width: 0;
}

.accordion-flush .accordion-item {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
}

.accordion-flush .accordion-item:first-child {
    border-top: 0;
}

.accordion-flush .accordion-item:last-child {
    border-bottom: 0;
}

.accordion-flush .accordion-item .accordion-button {
    border-radius: 0;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0);
    }
}

@keyframes fadeInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0);
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@keyframes fadeInLeft {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }

    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0);
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }

    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0);
    }
}

@keyframes fadeInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }

    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0);
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@-webkit-keyframes fadeInUp {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }

    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0);
    }
}

@keyframes fadeInUp {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }

    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0);
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.animated {
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-duration: 1s;
    animation-fill-mode: both;
}

@media (prefers-reduced-motion),
(print) {
    .animated {
        -webkit-animation: unset !important;
        -webkit-transition: none !important;
        animation: unset !important;
        transition: none !important;
    }
}

/*--------------------------------------------------------------
  # Start Owl Carousel
  --------------------------------------------------------------*/
.owl-carousel,
.owl-carousel .owl-item {
    -webkit-tap-highlight-color: transparent;
    position: relative;
}

.owl-carousel {
    display: none;
    width: 100%;
    z-index: 1;
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
    display: none;
}

.no-js .owl-carousel,
.owl-carousel.owl-loaded {
    display: block;
}

.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
    padding: 0 !important;
    font: inherit;
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}

.owl-carousel.owl-hidden {
    opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
    visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel.owl-grab {
    cursor: move;
    cursor: grab;
}

.owl-carousel.owl-rtl {
    direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
    float: right;
}

.owl-carousel .animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
    z-index: 0;
}

.owl-carousel .owl-animated-out {
    z-index: 1;
}

.owl-carousel .fadeOut {
    animation-name: fadeOut;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.owl-height {
    transition: height 0.5s ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.owl-carousel .owl-item .owl-lazy:not([src]),
.owl-carousel .owl-item .owl-lazy[src^=""] {
    max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000;
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url(owl.video.play.png) no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    transition: transform 0.1s ease;
}

.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
    display: none;
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: opacity 0.4s ease;
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
}

.owl-theme .owl-dots,
.owl-theme .owl-nav {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav {
    margin-top: 10px;
}

.owl-theme .owl-nav [class*=owl-] {
    margin: 5px;
    cursor: pointer;
}

.owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default;
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 10px;
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 0.2s ease;
    border-radius: 30px;
}

/*--------------------------------------------------------------
  # End Owl Carousel
  --------------------------------------------------------------*/
/*--------------------------------------------------------------
  # Start Custom Owl Carousel
  --------------------------------------------------------------*/
.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    height: 0;
    margin: 0;
    transform: translateY(-25px);
}

.owl-carousel .owl-nav button {
    position: absolute;
    width: 50px;
    height: 50px;
    color: #fff;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid;
    border-radius: 50%;
    background: var(--sec-color);
    border-color: var(--sec-color);
}

.owl-carousel .owl-nav button.owl-prev {
    left: -60px;
}

.owl-carousel .owl-nav button.owl-next {
    right: -60px;
}

.owl-carousel .owl-nav button:hover {
    color: #fff;
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.owl-theme .owl-dots .owl-dot span {
    width: 13px;
    height: 13px;
    margin: 5px;
    transition: 0.3s;
    background: transparent;
    border: 1px solid var(--main-color);
}

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

.owl-theme .owl-dots {
    margin-top: 20px;
}

@media (max-width: 767.98px) {
    .owl-carousel {
        width: 100% !important;
    }

    .owl-carousel .owl-nav {
        position: unset;
        top: 50%;
        width: 100%;
        height: auto;
        margin-top: 10px;
        transform: none !important;
        display: flex;
        justify-content: center;
        flex-direction: row-reverse;
    }

    .owl-carousel .owl-nav button {
        position: unset;
    }

    .images_section .content .image_box img {
        height: auto;
    }
}

@media (max-width: 575.98px) {
    .owl-carousel .owl-nav button {
        width: 35px;
        height: 35px;
    }
}

/*--------------------------------------------------------------
  # End Custom Owl Carousel
  --------------------------------------------------------------*/
/* Slider */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: "";
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir=rtl] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

/* Slider */
.slick-loading .slick-list {
    background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
    font-family: "slick";
    font-weight: normal;
    font-style: normal;
    src: url("./fonts/slick.eot");
    src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
}

/* Arrows */
.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: transparent;
    outline: none;
    background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
    font-family: "slick";
    font-size: 20px;
    line-height: 1;
    opacity: 0.75;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
    left: -25px;
}

[dir=rtl] .slick-prev {
    right: -25px;
    left: auto;
}

.slick-prev:before {
    content: "←";
}

[dir=rtl] .slick-prev:before {
    content: "→";
}

.slick-next {
    right: -25px;
}

[dir=rtl] .slick-next {
    right: auto;
    left: -25px;
}

.slick-next:before {
    content: "→";
}

[dir=rtl] .slick-next:before {
    content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
    margin-bottom: 30px;
}

.slick-dots {
    position: absolute;
    bottom: -25px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
}

.slick-dots li button:before {
    font-family: "slick";
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: "•";
    text-align: center;
    opacity: 0.25;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
    opacity: 0.75;
    color: black;
}

.odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.odometer.odometer-auto-theme .odometer-digit,
.odometer.odometer-theme-default .odometer-digit {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer,
.odometer.odometer-theme-default .odometer-digit .odometer-digit-spacer {
    display: inline-block;
    vertical-align: middle;
    visibility: hidden;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner,
.odometer.odometer-theme-default .odometer-digit .odometer-digit-inner {
    text-align: left;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon,
.odometer.odometer-theme-default .odometer-digit .odometer-ribbon {
    display: block;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon-inner,
.odometer.odometer-theme-default .odometer-digit .odometer-ribbon-inner {
    display: block;
    -webkit-backface-visibility: hidden;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-value,
.odometer.odometer-theme-default .odometer-digit .odometer-value {
    display: block;
    -webkit-transform: translateZ(0);
}

.odometer.odometer-auto-theme .odometer-digit .odometer-value.odometer-last-value,
.odometer.odometer-theme-default .odometer-digit .odometer-value.odometer-last-value {
    position: absolute;
}

.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-up .odometer-ribbon-inner {
    -webkit-transition: -webkit-transform 2s;
    -moz-transition: -moz-transform 2s;
    -ms-transition: -ms-transform 2s;
    -o-transition: -o-transform 2s;
    transition: transform 2s;
}

.odometer.odometer-auto-theme.odometer-animating-up.odometer-animating .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-up.odometer-animating .odometer-ribbon-inner {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
}

.odometer.odometer-auto-theme.odometer-animating-down .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-down .odometer-ribbon-inner {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
}

.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
    -webkit-transition: -webkit-transform 2s;
    -moz-transition: -moz-transform 2s;
    -ms-transition: -ms-transform 2s;
    -o-transition: -o-transform 2s;
    transition: transform 2s;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
    /*  font-family: "Helvetica Neue", sans-serif;*/
    /*line-height: 1.1em;*/
}

.odometer.odometer-auto-theme .odometer-value,
.odometer.odometer-theme-default .odometer-value {
    text-align: center;
}

/*--------------------------------------------------------------
# Start Global Page
--------------------------------------------------------------*/
@font-face {
    font-family: "Tajawal";
    font-style: normal;
    font-weight: 200;
    font-display: swap;
    src: url(../fonts/Tajawal-ExtraLight.ttf) format("woff2");
}

@font-face {
    font-family: "Tajawal";
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(../fonts/Tajawal-Light.ttf) format("woff2");
}

@font-face {
    font-family: "Tajawal";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(../fonts/Tajawal-Regular.ttf) format("woff2");
}

@font-face {
    font-family: "Tajawal";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(../fonts/Tajawal-Medium.ttf) format("woff2");
}

@font-face {
    font-family: "Tajawal";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(../fonts/Tajawal-Bold.ttf) format("woff2");
}

@font-face {
    font-family: "Tajawal";
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url(../fonts/Tajawal-ExtraBold.ttf) format("woff2");
}

@font-face {
    font-family: "Tajawal";
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url(../fonts/Tajawal-Black.ttf) format("woff2");
}

@font-face {
    font-family: "Amiri";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(../fonts/Amiri-Regular.ttf) format("woff2");
}

@font-face {
    font-family: "Amiri";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(../fonts/Amiri-Bold.ttf) format("woff2");
}

body::-webkit-scrollbar-track {
    border-radius: 30px;
    background-color: #d7d7d7;
}

body::-webkit-scrollbar {
    border-radius: 30px;
    width: 8px;
    background-color: #F5F5F5;
}

body::-webkit-scrollbar-thumb {
    border-radius: 30px;
    background-color: var(--main-color);
}

body {
    line-height: 1.5;
    color: #111;
    /* background-color: #F6FCF8; */
    direction: rtl;
    text-align: start;
    font-weight: 400;
    font-family: "Tajawal", sans-serif;
    font-size: 16px;
}

::selection {
    background-color: var(--main-color);
    color: #fff;
}

p {
    color: #707070;
}

h6,
.h6 {
    font-size: 1em;
}

h5,
.h5 {
    font-size: 1.25em;
}

.small-xs {
    font-size: 0.75em !important;
}

.small {
    font-size: 0.875em !important;
}

.font-18 {
    font-size: 1.125em !important;
}

.font-20 {
    font-size: 1.25em !important;
}

.font-24 {
    font-size: 1.5em !important;
}

.font-32 {
    font-size: 2em !important;
}

.em-2 {
    font-size: 2em;
}

.px-10 {
    padding: 0 10px;
}

.transparent {
    background-color: transparent !important;
}

.main-hover {
    transition: 0.3s;
}

.main-hover:hover {
    color: #8EC49C !important;
}

.amiri-font {
    /* font-family: "Amiri"; */
}

.visible {
    overflow: visible;
}

.bold {
    font-weight: 700;
}

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

img {
    max-width: 100%;
    height: auto;
}

.pointer {
    cursor: pointer;
}

.teaser.lazyload {
    opacity: 0;
    transform: scale(0.8);
}

.teaser.lazyloaded {
    opacity: 1;
    transform: scale(1);
    transition: all 700ms;
}

button {
    outline: none !important;
}

label {
    margin-inline-start: 2px;
}

a {
    transition: 0.3s;
    color: #707070;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: #111;
}

.mt-10 {
    margin-top: 10px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mt-90 {
    margin-top: 90px !important;
}

.mb-90 {
    margin-bottom: 90px !important;
}

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

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

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

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

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

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

.mb-0 {
    margin-bottom: 0;
}

.mt-0 {
    margin-top: 0;
}

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

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

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

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

hr {
    border-top: 1px solid #E5E5E5;
    margin: 25px 0;
}

section {
    overflow: hidden;
    position: relative;
}

.owl-carousel {
    direction: ltr;
}

.main-color {
    color: #DBAD96;
}

.sec-color {
    color: #8EC49C;
}

.gray-color {
    color: #707070;
}

.p-relative {
    position: relative;
    z-index: 2;
}

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

.weight-700 {
    font-weight: 700;
}

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

.flex-h {
    display: flex;
    align-items: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.text-start {
    text-align: start;
}

.text-end {
    text-align: end;
}

.br-0 {
    border-radius: 0 !important;
}

.gap-5 {
    gap: 5px;
}

.gap-10 {
    gap: 10px;
}

.gap-15 {
    gap: 30px;
}

.gap-20 {
    gap: 20px;
}

.gap-30 {
    gap: 30px;
}

.gap-40 {
    gap: 40px;
}

.gap-30-bottom {
    gap: 30px 0;
}

.gap-60-bottom {
    gap: 60px 0;
}

.text-white {
    color: #fff;
}

.text-black {
    color: #111;
}

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

.flex-1 {
    flex: 1;
}

.flex-none {
    flex: none;
}

.form-control {
    border: 0;
    box-shadow: none !important;
    outline: none;
}

.form-control.custom {
    background: #E7F4EB;
    border-radius: 25px;
    min-height: 50px;
    padding: 13px 20px;
}

.form-control::placeholder {
    color: #B4B0B0;
    font-size: 14px;
}

textarea.form-control.custom {
    resize: none;
    height: 100px;
}

.m-auto {
    margin-right: auto;
    margin-left: auto;
}

.textarea {
    height: 120px !important;
    resize: none;
}

.mou_tab {
    cursor: pointer;
    transition: 0.3s;
}

.transition {
    transition: 0.3s;
}

[data-cursor] {
    cursor: pointer;
}

.pagination {
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.pagination .page-item.active .page-link {
    background-color: var(--main-color);
}

.pagination .page-link {
    background-color: rgb(3 80 94 / 24%);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25em;
    font-weight: 700;
}

.file-none {
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.custom_checkbox {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.custom_checkbox input {
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.custom_checkbox .checkmark {
    position: relative;
    display: inline-block;
    width: 15px;
    min-width: 15px;
    height: 15px;
    border: 1px solid #D8D3D3;
    border-radius: 2px;
    transition: 0.3s;
    background: #fff;
}

.custom_checkbox .checkmark:after {
    position: absolute;
    font-family: "Font Awesome 5 Pro";
    font-size: 11px;
    content: "\f00c";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    display: none;
}

.custom_checkbox .checkmark:before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(158, 206, 171, 0.2);
    transition: 0.3s;
}

.custom_checkbox input:checked~.checkmark {
    background-color: var(--main-color);
}

.custom_checkbox input:checked~.checkmark:before {
    transform: translate(-50%, -50%) scale(1);
}

.custom_checkbox input:checked~.checkmark:after {
    display: block;
}

.custom_checkbox p {
    margin-inline-start: 10px;
    color: #707070;
    margin-bottom: 0;
}

.stars {
    color: #707070;
    font-size: 0.875em;
}

.stars i.disabled {
    color: #BCBCBC;
}

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

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

.badge-info {
    background: rgb(244 244 244 / 44%);
    padding: 6px 19px;
    font-size: 0.75em;
    border-radius: 50px;
    color: #707070;
    display: inline-block;
}

.animate-group * {
    position: absolute;
    z-index: -1;
}

.move-animation-1 {
    animation: 30s move-animation-1 linear infinite;
}

.move-animation-2 {
    animation: 30s move-animation-2 linear infinite;
}

@keyframes move-animation-1 {
    0% {
        transform: translate3d(0, 0, 0) rotate(0);
    }

    50% {
        transform: translate3d(100px, 30px, 30px) rotate(360deg);
    }

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

@keyframes move-animation-2 {
    0% {
        transform: translate3d(0, 0, 0) rotate(0);
    }

    50% {
        transform: translate3d(-100px, 30px, 30px) rotate(360deg);
    }

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

.no-after:after {
    display: none;
}

.invalid-feedback {
    color: #dc3545;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    display: block;
    font-weight: 300;
    line-height: normal;
}

.not-found {
    font-size: 2em;
    color: rgba(254, 51, 54, 0.6);
    font-weight: 700;
}

#ui_notifIt {
    background-color: var(--main-color) !important;
}

#ui_notifIt p {
    color: #fff;
}

#ui_notifIt #notifIt_close {
    color: #FFF;
    right: 5px;
    font-size: 25px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alert.alert-success {
    margin-top: 10px;
    font-size: 0.875em;
    background-color: rgba(76, 175, 80, 0.1294117647);
    padding: 10px;
    border-radius: 4px;
    text-align: center;
}

/*--------------------------------------------------------------
# End Global Page
--------------------------------------------------------------*/
/*==============================================
// Start Nav Top
================================================*/
.navtop {
    position: sticky;
    overflow: visible;
    z-index: 9;
    top: 0;
    background-color: var(--sec-color);
    padding: 22px 0;
}

.navtop .contact-info-two {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
}

.navtop .contact-info-two li a {
    font-size: 14px;
    color: #fff;
    text-transform: capitalize;
}

.navtop .contact-info-two li a:hover {
    color: #8EC49C;
}

.navtop .icons {
    gap: 0 30px;
    display: flex;
    justify-content: flex-start;
    flex-direction: row-reverse;
}

.navtop .icons .icon:hover path {
    stroke: #198754;
}

.navtop .icons .icon-with-notification {
    position: relative;
}

.navtop .icons .icon-with-notification:after {
    position: absolute;
    content: attr(data-noti);
    width: 7px;
    height: 7px;
    line-height: 9px;
    font-size: 5px;
    background-color: #F1F2F2;
    color: var(--sec-color);
    border-radius: 50%;
    bottom: 3px;
    left: -1px;
    /* display: flex; */
    /* justify-content: center; */
    align-items: center;
    -webkit-align-items: center;
    text-align: center;
}

/*==============================================
// End Nav Top
================================================*/
/*==============================================
  // Start Nav Bar
  ================================================*/
.nav_bar {
    /* background-color: #edf3f4; */
    padding: 30px 0;
}

.nav_bar .logo {
    display: inline-block;
}

.nav_bar .list {
    display: flex;
    justify-content: center;
    gap: 0 30px;
}

.nav_bar .list li a {
    color: #67898E;
    position: relative;
    font-size: 18px;
}

.nav_bar .list li a::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 5px;
    height: 5px;
    background-color: #050505;
    border-radius: 50%;
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav_bar .list li a:hover,
.nav_bar .list li a.active {
    color: var(--dark-color);
}

.nav_bar .list li a:hover:before,
.nav_bar .list li a.active:before {
    transform: translateX(-50%) scale(1);
}

.nav_bar .list li a.active {
    font-weight: 700;
}

.nav_bar #close_menu {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 35px;
    cursor: pointer;
}

.nav_bar .toggle_list {
    font-size: 20px;
    cursor: pointer;
}

.nav_bar .auth_box .login-btn {
    color: #67898E;
    font-size: 18px;
    font-weight: bold;
}

.nav_bar .left-side path {
    stroke: #111;
}

.nav_bar .login-dropdown {
    position: relative;
}

.nav_bar .login-dropdown .icon {
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.nav_bar .login-dropdown .dropdown-body {
    position: absolute;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0px 5px 9px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    margin-top: 15px;
    transition: 0.3s;
    left: 0;
    min-width: 200px;
    z-index: 9;
}

.nav_bar .login-dropdown .dropdown-body.show {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.nav_bar .login-dropdown .dropdown-body .dropdown-item {
    font-size: 15px;
    display: block;
    width: 100%;
    padding: 7px 20px;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

.nav_bar .login-dropdown .dropdown-body .dropdown-item:not(:last-of-type) {
    border-bottom: 1px solid #ddd;
}

.nav_bar .login-dropdown .dropdown-body .dropdown-item i {
    margin-inline-end: 5px;
}

.nav_bar .login-dropdown .dropdown-body .dropdown-item:hover {
    background-color: var(--main-color);
    color: #fff;
}

.nav_bar .notification-box {
    position: relative;
    margin-inline-end: 15px;
}

.nav_bar .notification-box .dropdown_list {
    position: absolute;
    background-color: #fff;
    box-shadow: 0px 3px 15px rgba(3, 47, 85, 0.03);
    padding: 12px 10px;
    z-index: 2;
    border-radius: 10px;
    min-width: 360px;
    left: 50%;
    top: 100px;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.nav_bar .notification-box .dropdown_list.show {
    top: 53px;
    opacity: 1;
    visibility: visible;
}

.nav_bar .notification-box .dropdown_list:after {
    position: absolute;
    content: "";
    border-style: solid;
    border-width: 20px;
    border-color: transparent;
    border-top-width: 0;
    border-bottom: 18px solid #fff;
    width: 0;
    height: 0;
    font-size: 0;
    line-height: 0;
    top: -17px;
    left: 50%;
    transform: translateX(-50%);
}

.nav_bar .notification-box .dropdown_list .overflow-list {
    padding-inline-end: 10px;
    max-height: 200px;
    overflow: auto;
}

.nav_bar .notification-box .dropdown_list .overflow-list::-webkit-scrollbar-track {
    border-radius: 30px;
    background-color: #F8FDFA;
}

.nav_bar .notification-box .dropdown_list .overflow-list::-webkit-scrollbar {
    border-radius: 30px;
    width: 4px;
    background-color: #F8FDFA;
}

.nav_bar .notification-box .dropdown_list .overflow-list::-webkit-scrollbar-thumb {
    border-radius: 30px;
    background-color: var(--main-color);
}

.nav_bar .notification-box .dropdown_list .item {
    padding: 10px;
    display: flex;
    gap: 8px;
    border-radius: 5px;
}

.nav_bar .notification-box .dropdown_list .item:hover {
    background-color: rgba(242, 251, 245, 0.5);
}

.nav_bar .notification-box .dropdown_list .item .icon-inside {
    width: 25px;
    height: 25px;
    background-color: #E7F4EB;
    border-radius: 50%;
}

.nav_bar .notification-box .dropdown_list .item .content p {
    font-size: 0.625em;
    margin-bottom: 5px;
    -webkit-line-clamp: 2;
}

.nav_bar .notification-box .dropdown_list .item .content .time {
    font-size: 0.6em;
    color: #C2C0C0;
}

@keyframes animate_links {
    0% {
        transform: translateX(200px);
        opacity: 0;
    }

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

/*==============================================
  // End Nav Bar
  ================================================*/
/*--------------------------------------------------------------
# Start icons bar bottom
--------------------------------------------------------------*/
.side-sticky-icons {
    position: fixed;
    right: 20px;
    left: 20px;
    bottom: 20px;
    z-index: 99999;
    padding: 0;
    margin: 0;
    align-items: center;
    background: #ffffff;
    display: none;
    padding: 0 40px;
    min-height: 60px;
    box-shadow: 0px 0px 25px rgba(61, 110, 168, 0.2);
    border-radius: 50px;
}

.side-sticky-icons li {
    list-style: none;
    display: inline-block;
    margin: 0;
    position: relative;
    text-align: center;
    flex: 1 0 20%;
}

.side-sticky-icons li a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-self: stretch;
    width: 100%;
    height: 100%;
    align-items: center;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    font-size: 12px;
    line-height: 1;
    padding: 12px 15px 10px;
    text-transform: uppercase;
    color: #111;
}

.side-sticky-icons li a .icons {
    font-size: 20px;
}

.side-sticky-icons li a .icon-home1:before {
    content: "\e918";
}

.side-sticky-icons li a .icon-menu:before {
    content: "\e919";
}

.side-sticky-icons li.quick-cart a {
    position: absolute;
    top: -50px;
    width: 65px;
    height: 65px;
    border-radius: 100%;
    background-color: #ffffff;
    margin: auto;
    left: 0;
    right: 0;
}

.side-sticky-icons li.quick-cart a:before {
    content: "";
    background-color: var(--main-color);
    position: absolute;
    top: 7px;
    left: 7px;
    right: 7px;
    bottom: 7px;
    border-radius: 100%;
}

.side-sticky-icons li.quick-cart a svg {
    position: relative;
}

.side-sticky-icons li .badge {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 18px;
    height: 18px;
    border-radius: 100%;
    font-size: 11px;
    line-height: 18px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #EA0D42;
    color: #fff;
}

.side-sticky-icons li.quick-cart a .badge {
    top: 15px;
    left: 13px;
    z-index: 99;
}

@media (max-width: 767.98px) {
    .side-sticky-icons {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        padding: 0 10px;
    }
}

/*--------------------------------------------------------------
# End icons bar bottom
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Start Page Header
--------------------------------------------------------------*/
.page-header {
    padding: 50px 0;
}

.page-header .animate-group span {
    position: absolute !important;
}

.page-header .bg-red.one {
    bottom: 34px;
    right: 23%;
}

.page-header .bg-red.two {
    top: 0;
    left: 7%;
}

.page-header .bg-dark.one {
    top: -20px;
    right: 6%;
}

.page-header .bg-dark.two {
    bottom: 23px;
    left: 25%;
}

.page-header .bg-gray {
    background-color: #C8C8C8;
}

.page-header .bg-gray.one {
    top: -44px;
    left: 23%;
}

.page-header .bg-gray.two {
    right: 46px;
    bottom: 33px;
}

.breadcrumps {
    padding: 11px 30px;
    background: #DFDFDF;
    border-radius: 50px;
    font-size: 0.875em;
    color: #7E7D7D;
}

.breadcrumps a:hover {
    color: #8EC49C;
}

.navtop .icons .dropdown-item {
    width: auto;
    padding: 0;
}

.navtop .icons a {
    color: #fff;
    font-size: 17px;
}

.search-switcher.icon {
    color: #fff;
}

.logo img {
    max-height: 100px;
}


header {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 3;
    overflow: hidden;
}

.overlay-img {
    inset: 0;
    position: absolute;
    z-index: -1;
    /* opacity: 0.06; */
}

.banner-h {
    padding: 228px 0 116px;
}

/*--------------------------------------------------------------
# End Page Header
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Start Hero Section
--------------------------------------------------------------*/

.banner-h .overlay-img {
    /* z-index: 2; */
    /* opacity: .06; */
    background: #CCD8D9;
}

.overlay-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-section {
    background-image: url(../img/bg.webp);
    background-size: cover;
    padding: 105px 0;
}

.hero-section:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(142, 196, 156, 0.06);
}

.hero-section .main-info .main-btn.trans {
    border: 2px solid #050306;
    color: #050306;
}

.hero-section .main-info .main-btn.trans:before {
    background-color: #050306;
}

.hero-section .image-side {
    position: relative;
    text-align: center;
}

.hero-section .image-side::after {
    position: absolute;
    content: "";
    top: -41px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 377px;
    border-radius: 50%;
    background-color: rgba(142, 196, 156, 0.1);
    z-index: -1;
}

.hero-section .image-side .animated-group span {
    position: absolute;
}

.hero-section .image-side .animated-group span.one {
    top: 70px;
    right: 10px;
    animation: mover 0.8s infinite alternate;
    -webkit-animation: mover 0.8s infinite alternate;
}

.hero-section .image-side .animated-group span.two {
    left: 100px;
    top: 0px;
    width: 50px;
    animation: mover 2s infinite alternate;
    -webkit-animation: mover 2s infinite alternate;
}

.hero-section .image-side .animated-group span.three {
    top: 200px;
    left: 50px;
    animation: mover 1.5s infinite alternate;
    -webkit-animation: mover 1.5s infinite alternate;
}

.hero-section .image-side .animated-group span.four {
    right: 10px;
    top: 50%;
    animation: mover 1s infinite alternate;
    -webkit-animation: mover 1s infinite alternate;
}

.hero-section .image-side .animated-group span.five {
    left: 50px;
    top: 100px;
    animation: mover 2s infinite alternate;
    -webkit-animation: mover 2s infinite alternate;
}

.hero-section .image-side .animated-group span.six {
    right: 50%;
    top: 30px;
    animation: mover 1s infinite alternate;
    -webkit-animation: mover 1s infinite alternate;
}

.hero-section .scrolldown {
    position: absolute;
    background-color: transparent;
    z-index: 999;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    cursor: pointer;
}

.hero-section .scrolldown .content {
    animation: mover 2s infinite alternate;
    -webkit-animation: mover 2s infinite alternate;
    display: flex;
    align-items: center;
}

.hero-section .scrolldown span {
    font-size: 0.875em;
    color: #8EC49C;
    display: block;
    transform: rotate(-90deg) translateY(24px);
}

.hero-section .shape {
    position: absolute;
    top: 0;
    right: -170px;
    z-index: -1;
}

@keyframes mover {
    0% {
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
    }

    100% {
        transform: translateY(-10px);
        -webkit-transform: translateY(-10px);
        -moz-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        -o-transform: translateY(-10px);
    }
}

/*--------------------------------------------------------------
# End Hero Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Start Counter Section
--------------------------------------------------------------*/
.counter-section {
    padding: 65px 0;
    background-color: #E7F4EB;
}

.counter-section .box .icon {
    width: 73px;
    height: 73px;
    background-color: #c5e2cd;
    border: 9px solid #cde6d4;
    box-shadow: 0px 0px 0px 9px #d6ebdc;
    border-radius: 50%;
}

.counter-section .box .counter {
    font-size: 2.625em;
    font-weight: 700;
}

.counter-section .box h6 {
    color: var(--sec-color);
    font-size: 1.125em;
}

/*--------------------------------------------------------------
# End Counter Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Start About Section
--------------------------------------------------------------*/
.about-section {
    padding: 100px 0 80px;
}

.about-section .image-side {
    max-width: max-content;
    position: relative;
}

.about-section .image-side::after,
.about-section .image-side::before {
    position: absolute;
    content: "";
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}

.about-section .image-side::after {
    top: -23px;
    left: -23px;
    width: 504px;
    height: 487px;
    background-image: url(../img/shape-3.webp);
}

.about-section .image-side::before {
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 268px;
    height: calc(100% + 200px);
    background-image: url(../img/bg_2.webp);
}

.about-section .image-side .mask-img {
    -webkit-mask-image: url(../img/shape-2.webp);
    mask-image: url(../img/shape-2.webp);
    -webkit-mask-size: 100%;
    mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.about-section .image-side .mask-img img {
    width: 455px;
    height: 440px;
}

.about-section .our-details .box .icon {
    width: 39px;
    height: 39px;
    background-color: #c5e2cd;
    box-shadow: 0px 0px 0px 5px #d6ebdc;
    border-radius: 50%;
    color: rgba(0, 0, 0, 0.85);
}

.about-section .our-details .box .text {
    font-size: 1.25em;
}

.about-section .our-details .box p {
    margin-bottom: 0;
}

.about-section .shape {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -150px;
    z-index: -1;
}

/*--------------------------------------------------------------
# End About Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Start Bails Section
--------------------------------------------------------------*/
.bails-section {
    padding: 100px 0;
    background-color: #E7F4EB;
}

.bails-section:after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url(../img/shape-5.webp);
    background-size: contain;
    background-repeat: no-repeat;
    width: 90%;
    height: 100%;
    background-position: center;
    opacity: 0.1;
}

.bails-section .main-info p {
    max-width: 540px;
}

.bails-box {
    position: relative;
    background-color: #fff;
    border-radius: 10px;
    padding: 36px 30px 25px;
    height: 100%;
    transition: 0.4s;
}

.bails-box:hover {
    background-color: var(--main-color);
    box-shadow: 0px 0px 50px rgba(134, 180, 146, 0.5);
}

.bails-box:hover p,
.bails-box:hover h3 {
    color: #fff;
}

.bails-box:hover img {
    filter: brightness(2);
}

.bails-box h3 {
    font-size: 1.25em;
    color: #0B1147;
}

.bails-box .price {
    position: absolute;
    content: "";
    top: 25px;
    right: 0;
    border-radius: 50px 0 0 50px;
    background-color: #E7F4EB;
    color: #707070;
    font-size: 0.875em;
    padding: 5px 12px;
}

/*--------------------------------------------------------------
# End Bails Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Start deductions Section
--------------------------------------------------------------*/
.deductions-section {
    padding: 100px 0;
}

/*--------------------------------------------------------------
# End deductions Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Start Store Section
--------------------------------------------------------------*/
.store-section {
    padding: 100px 0;
}

.store-section.store-page {
    padding: 50px 0 0;
}

.store-section.store-page .list-control {
    max-width: max-content;
    margin: 0 auto;
}

.store-section .list-control {
    padding: 10px;
    background-color: var(--main-color);
    border-radius: 50px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}

.store-section .list-control li {
    padding: 10px 13px;
    border-radius: 50px;
    color: #fff;
    font-size: 0.875em;
}

.store-section .list-control li:hover,
.store-section .list-control li.active {
    background-color: #fff;
    color: #000000;
}

.store-section .box-content {
    display: none;
    transition: 0.3s;
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

.store-section .box-content.active {
    display: block;
    animation: fadeInUp 1s both;
    -webkit-animation: fadeInUp 1s both;
}

.product-box {
    position: relative;
}

.product-box .image {
    height: 250px;
    border-radius: 10px;
    background-color: #fff;
}

.product-box .image img {
    height: 160px;
    object-fit: contain;
}

.product-box .head {
    color: #111;
    font-size: 1.25em;
}

.product-box .price {
    position: absolute;
    content: "";
    top: 25px;
    right: 0;
    border-radius: 50px 0 0 50px;
    background-color: #E7F4EB;
    color: #707070;
    font-size: 0.875em;
    padding: 5px 12px;
}

.product-box:hover .image {
    background-color: var(--main-color);
}

/*--------------------------------------------------------------
# End Store Section
--------------------------------------------------------------*/
.newsletter-section {
    margin-top: 100px;
}

.newsletter-section:after {
    position: absolute;
    content: "";
    bottom: -100%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url(../img/shape-6.webp);
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 200%;
    background-position: center;
    opacity: 0.1;
}

.newsletter-section .content-section {
    border-radius: 10px;
    background: var(--sec-color);
    background: var(--sec-color);
    padding-inline-end: 15px;
}

.newsletter-section .content-section .main-info .head {
    font-size: 2em;
}

.newsletter-section .input_box {
    margin-top: 25px;
    display: flex;
    align-items: center;
    background-color: #F8F6F6;
    border-radius: 70px;
    padding: 8px;
    justify-content: space-between;
    max-width: 544px;
}

.newsletter-section .input_box .icon {
    color: #111;
    width: 40px;
    height: 40px;
    background: rgba(248, 242, 210, 0.45);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-section .input_box input {
    background: none;
    border: 0;
    padding: 0;
    padding-inline-start: 10px;
    height: 40px;
    outline: none;
    color: #111;
    width: 150px;
}

.newsletter-section .input_box input::placeholder {
    color: #AAAAAA;
    font-size: 0.875em;
}

.newsletter-section .input_box .main-btn {
    padding: 9px 23px;
    min-width: 105px;
    min-height: auto;
    border: 0;
    background-color: #F8F2D2;
    color: #111;
}

.newsletter-section .input_box .main-btn::before {
    background-color: var(--main-color);
}

/*--------------------------------------------------------------
# Start Designers Section
--------------------------------------------------------------*/
.bails-page {
    padding-bottom: 0 !important;
}

.animate-group.animate-heading .one {
    top: 0;
    left: 20%;
}

.animate-group.animate-heading .two {
    top: 0;
}

.animate-group.animate-heading .three {
    top: 0;
    left: 30%;
}

.animate-group.animate-heading .four {
    bottom: 30%;
    right: 20%;
}

.animate-group.animate-heading .five {
    left: 0;
    top: 50%;
}

.animate-group.animate-heading .six {
    right: 0;
    bottom: 50%;
}

.master-shape {
    position: absolute;
    top: 0;
    right: -170px;
    z-index: -1;
}

/*--------------------------------------------------------------
# End Designers Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Start Single Product
--------------------------------------------------------------*/
.single-product-page {
    margin-top: 50px;
}

.single-product-page .info-product-box {
    /* padding: 30px; */
    padding-inline-start: 25px;
    /* background: #fff; */
    /* border-radius: 20px 0 0 20px; */
    height: 100%;
}

.single-product-page .info-product-box .desc * {
    color: #070707;
    font-size: 0.875em;
}

.single-product-page .info-product-box .desc p {
    margin-bottom: 8px;
    color: #67898E;
    font-size: 14px;
    line-height: 29px;
}

.single-product-page .info-product-box .price {
    font-size: 20px !important;
    color: #023A42;
    font-weight: bold;
}

.single-product-page .info-product-box .stars {
    font-size: 12px;
    gap: 0 !important;
    color: #FFCA4E;
    margin-inline-end: 4px;
    display: inline-block;
}

.single-product-page .info-product-box .price-before {
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.single-product-page .info-product-box .price-before .delete {
    position: relative;
}

.single-product-page .info-product-box .price-before .delete:after {
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 100%;
    height: 2px;
    background-color: #010101;
}

.single-product-page .properties-product {
    /* padding: 24px 0 30px; */
}

.single-product-page .properties-product .box:not(:last-of-type) {
    margin-bottom: 25px;
}

.single-product-page .properties-product h6 {
    margin-bottom: 15px;
}

.single-product-page .properties-product h6 span {
    color: #707070;
}

.single-product-page .properties-product .single-property {
    position: relative;
    flex-wrap: wrap;
}

.single-product-page .properties-product .single-property input {
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 1px;
}

.single-product-page .properties-product .colors input:checked~label {
    border: 3px solid #fff;
    box-shadow: 0px 0px 0px 1px #141414;
}

.single-product-page .properties-product .colors label {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    flex: none;
    transition: 0.3s;
}

.single-product-page .properties-product .size input:checked~label {
    border-color: #fff;
    color: #fff;
    background-color: var(--main-color);
}

.single-product-page .properties-product .size label {
    width: 85px;
    height: 40px;
    border-radius: 50px;
    flex: none;
    transition: 0.3s;
    border: 1px solid #D8D3D3;
    background-color: #fff;
    color: #707070;
    font-size: 0.875em;
    text-align: center;
    text-transform: uppercase;
}

.single-product-page .text-white {
    color: #fff !important;
    background: var(--sec-color);
    width: calc(100% - 100px);
}

.single-product-page .ul-info {
    padding: 30px;
    background-color: #edf3f4;
    border-radius: 10px;
}

.single-product-page .ul-info li {
    line-height: normal;
}

.single-product-page .ul-info li:not(:last-of-type) {
    margin-bottom: 13px;
}

.single-product-page .ul-info li .icon {
    flex: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: var(--main-color);
    background-color: rgba(208, 231, 214, 0.28);
}

.single-product-page .bottom-bar .add-to-fav {
    width: 50px;
    height: 50px;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    border-radius: 50%;
    font-size: 1.25em;
    min-width: auto;
    min-height: auto;
    padding: 0;
    background: transparent;
}

.single-product-page .product_iamges,
.single-product-page .vehicle-detail-banner,
.single-product-page .banner-slider,
.single-product-page .banner-slider .slider.slider-for {
    height: 100%;
}

/*Start USE CSS for Slider*/
.banner-slider {
    display: flex;
    gap: 30px;
}

.banner-slider .slick-list {
    direction: ltr;
}

.banner-slider .slider.slider-nav {
    overflow: hidden;
    flex: 20%;
    max-width: 20%;
}

.banner-slider .slider.slider-for {
    flex: 80%;
    max-width: 80%;
    direction: ltr;
    /* padding: 30px; */
    /* background: #fff; */
    /* border-radius: 0 20px 20px 0; */
    padding-inline-start: 0;
}

.banner-slider .slider-banner-image {
    height: 490px;
    overflow: hidden;
    background-color: var(--bg-color);
    border-radius: 20px;
    padding: 30px;
}

.banner-slider .slick-arrow {
    width: 50px;
    height: 50px;
    background: #8EC49C;
    border-radius: 50%;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    cursor: pointer;
    color: #fff;
}

.banner-slider .slick-arrow:hover {
    background: var(--main-color);
}

.banner-slider .slick-arrow.fa-arrow-right {
    right: -19px;
    left: auto;
}

.banner-slider .slick-arrow.fa-arrow-left {
    left: -19px;
    right: auto;
}

.banner-slider .slider.slider-for:hover .slick-arrow {
    opacity: 1;
    visibility: visible;
}

.banner-slider .slider.slider-for:hover .slick-arrow.fa-arrow-right {
    right: 19px;
}

.banner-slider .slider.slider-for:hover .slick-arrow.fa-arrow-left {
    left: 19px;
}

.banner-slider .slick-track.none_transform {
    transform: none !important;
}

.slider-nav .slick-slide.thumbnail-image .thumbImg {
    position: relative;
    width: 100%;
    height: 68px;
    margin-bottom: 30px;
    border-radius: 5px;
    overflow: hidden;
    margin-inline-start: auto;
    transition: 0.4s;
    background-color: #fff;
    border: 1px solid #E7F4EB;
    padding: 14px 7px;
}

.slider-banner-image img,
.slider-nav .slick-slide.thumbnail-image .thumbImg img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.slick-vertical .slick-slide:active,
.slick-vertical .slick-slide:focus,
.slick-arrow:hover,
.slick-arrow:focus {
    border: 0;
    outline: 0;
}

.slider-nav .slick-slide.slick-current.thumbnail-image .thumbImg {
    border: none;
    background: var(--bg-color);
}

.slider-nav .slick-slide.slick-current span {
    color: var(--main-color);
}

.slider-nav .slick-slide {
    text-align: center;
}

.slider-nav .slick-slide span {
    font-size: 14px;
    display: block;
    padding: 5px 0 15px;
}

.slick-arrow {
    width: 100%;
    background-color: transparent;
    border: 0;
    background-position: center;
    background-repeat: no-repeat;
    font-size: 0;
    height: 18px;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 99;
}

.slick-dotted.slick-slider {
    margin-bottom: 0 !important;
}

.slick-prev {
    top: 0;
}

.slick-next {
    bottom: 0;
    background-color: #fff;
}

.slick-prev.slick-arrow {
    background-image: url(../images/black-up-arrow.png);
}

.slick-next.slick-arrow {
    background-image: url(../images/black-down-arrow.png);
}

/*End USE CSS for Slider*/
/*--------------------------------------------------------------
# End Single Product
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Start cart page
--------------------------------------------------------------*/
.cart-page {
    margin-bottom: 50px;
}

.cart-page .cart-header {
    text-align: center;
    margin-bottom: 50px;
}

.cart-page .cart-content {
    padding: 50px 30px;
    border-radius: 20px;
    background: #FFFFFF;
}

.cart-page .cart-content .main-heading h2 {
    margin: 0;
    font-size: 1.25em;
}

.cart-page .cart-content .main-heading .head-line {
    margin: 10px 0;
}

.cart-page .cart-content .main-heading .head-line span {
    width: 4px;
    height: 4px;
}

.cart-page .cart-content .main-heading .head-line span:nth-of-type(1) {
    width: 54px;
    height: 4px;
}

.cart-page .cart-content .mysr-form-noticeItem {
    text-align: center;
}

.cart-page .shopping-cart-section .table {
    border-spacing: 0 20px;
}

.cart-page .shopping-cart-section .table thead th {
    color: #060606;
    font-size: 0.875em;
    font-weight: 400;
    padding: 8px 10px;
}

.cart-page .shopping-cart-section .table tbody tr {
    background: rgb(244 244 244 / 44%);
    border-radius: 10px;
}

.cart-page .shopping-cart-section .table tbody tr th,
.cart-page .shopping-cart-section .table tbody tr td {
    padding: 18px 10px;
    text-align: center;
    color: #707070;
    font-size: 0.875em;
}

.cart-page .shopping-cart-section .table .product-info {
    min-width: 370px;
}

.cart-page .shopping-cart-section .table .product-info img {
    flex: none;
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 5px;
    background: #f4f4f4;
    padding: 10px;
}

.cart-page .shopping-cart-section .table .product-info .text {
    color: #707070;
    -webkit-line-clamp: 1;
}

.cart-page .shopping-cart-section .table .delete-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e6e6e6;
    border-radius: 50%;
    margin: 0 auto;
    color: var(--main-color);
    font-size: 1.2em;
    transition: 0.3s;
}

.cart-page .shopping-cart-section .table .delete-icon:hover {
    background-color: var(--main-color);
    color: #fff;
}

.cart-page .shopping-cart-section .price-total-1 h4,
.cart-page .shopping-cart-section .price-total-1 h5 {
    font-size: 1.25em;
    font-weight: 700;
    margin: 0;
}

.cart-page .shipping-information-section .main-info>.flex-h.gap-10 {
    margin-right: -34px;
}

.cart-page .shipping-information-section .main-info .icon {
    width: 24px;
    height: 24px;
    background: #edf3f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex: none;
    color: var(--main-color);
}

.cart-page .shipping-information-section .address-form {
    padding: 30px;
    padding-inline-end: 0;
}

.cart-page .shipping-information-section .address-form .form-group {
    margin-bottom: 30px;
}

.cart-page .shipping-information-section .address-form label {
    margin-bottom: 15px;
    display: inline-block;
}

.cart-page .shipping-information-section .address-form .input-box {
    border-radius: 50px;
    padding: 10px;
}

.cart-page .shipping-information-section .address-form .input-box .icon {
    color: var(--main-color);
    background: rgb(148 148 148 / 28%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

.cart-page .shipping-information-section .address-form .input-box .form-control {
    border: 0;
    background: none;
}

.cart-page .shipping-information-section .address-form .default-address-radio input {
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.cart-page .shipping-information-section .address-form .default-address-radio input:checked~label {
    background-color: var(--main-color);
    color: #fff;
}

.cart-page .shipping-information-section .address-form #address-map-container {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 30px;
    padding: 15px;
    background: #E7F4EB;
}

.cart-page .shipping-information-section .address-form #address-map-container #address-map {
    border-radius: 14px;
}

.cart-page .shipping-information-section .address-form .select2-container--default .select2-selection--single {
    background-color: rgb(244 244 244 / 44%);
    border: 0;
    border-radius: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    padding: 10px 30px;
    justify-content: start;
    direction: rtl;
}

.cart-page .shipping-information-section .address-form .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #5a5a5a;
    line-height: normal;
    padding: 0;
}

.cart-page .shipping-information-section .address-form .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 50%;
    right: auto;
    left: 15px;
    transform: translateY(-50%);
}

.cart-page .shipping-information-section .address-form .select2-container--default .select2-selection--single .select2-selection__clear {
    display: none;
}

.cart-page .shipping-information-section .cart-card {
    padding: 44px 30px;
    background-color: rgb(244 244 244 / 44%);
    border-radius: 15px;
    position: relative;
    height: 100%;
}

.cart-page .shipping-information-section .cart-card .padding-right-30 {
    padding-inline-start: 33px;
}

.cart-page .shipping-information-section .cart-card .padding-right-30 span.small {
    color: #707070;
}

.cart-page .shipping-information-section .cart-card .padding-right-30 h5.gray-color {
    color: #050505;
}

.cart-page .shipping-information-section .cart-card .copoun-box {
    padding-bottom: 30px;
    border-bottom: 1px solid #E5E5E5;
    margin-bottom: 27px;
}

.cart-page .shipping-information-section .cart-card .copoun-box p {
    margin-bottom: 15px;
}

.cart-page .shipping-information-section .cart-card .copoun-box .copoun-input {
    background-color: #fff;
    border-radius: 50px;
    border: 1px solid #E5E5E5;
    padding: 10px;
}

.cart-page .shipping-information-section .cart-card .copoun-box .copoun-input .form-control {
    background: none;
    border: 0;
    height: 30px;
    padding: 0 10px;
}

.cart-page .shipping-information-section .cart-card .copoun-box .copoun-input .main-btn {
    padding: 5px 22px;
    min-width: auto;
    min-height: auto;
}

.cart-page .shipping-information-section .cart-card .features .item {
    margin-bottom: 15px;
}

.cart-page .shipping-information-section .cart-card .features .item .icon {
    flex: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #D8D8D8;
    font-size: 0.875em;
}

.cart-page .shipping-information-section .cart-card .features .item .text {
    color: #919191;
}

.cart-page .shipping-information-section .payment-methods-bails {
    padding-inline-start: 20px;
}

.cart-page .shipping-information-section .payment-methods-bails .methods-bails .item {
    position: relative;
}

.cart-page .shipping-information-section .payment-methods-bails .methods-bails .item input {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    width: 1px;
    height: 1px;
}

.cart-page .shipping-information-section .payment-methods-bails .methods-bails .item input:checked~label {
    background-color: var(--main-color);
}

.cart-page .shipping-information-section .payment-methods-bails .methods-bails .item input:checked~label svg stop {
    stop-color: #fff;
}

.cart-page .shipping-information-section .payment-methods-bails .methods-bails .item input:checked~label svg path {
    fill: #fff;
}

.cart-page .shipping-information-section .payment-methods-bails .methods-bails .item input:checked~label h6,
.cart-page .shipping-information-section .payment-methods-bails .methods-bails .item input:checked~label p {
    color: #fff;
}

.cart-page .shipping-information-section .payment-methods-bails .methods-bails .item svg stop,
.cart-page .shipping-information-section .payment-methods-bails .methods-bails .item svg path {
    transition: 0.3s;
}

.cart-page .shipping-information-section .payment-methods-bails .methods-bails .item label {
    border: 1px solid #8CC39B;
    padding: 30px 30px 27px;
    border-radius: 15px;
    flex-direction: column;
    transition: 0.3s;
}

.cart-page .shipping-information-section .payment-methods-bails input[type=date]::-webkit-calendar-picker-indicator {
    position: relative;
    width: 100%;
    z-index: 2;
    opacity: 0;
}

.cart-page .shipping-information-section .payment-methods-bails .input-box {
    padding: 0 10px;
    border: 1px solid #D5EEDD;
    height: 50px;
}

.cart-page .shipping-information-section .payment-methods-bails .input-box .form-control {
    height: 50px;
}

.cart-page .shipping-information-section .payment-methods-bails .input-box .icon {
    width: 30px;
    height: 30px;
    background: rgba(179, 211, 188, 0.29);
    border-radius: 50%;
}

.cart-page .shipping-information-section .payment-methods-bails .date-input-box {
    position: relative;
}

.cart-page .shipping-information-section .payment-methods-bails .date-input-box .text {
    position: absolute;
    top: 50%;
    right: 56px;
    transform: translateY(-50%);
}

.cart-page .address-information-section {
    padding: 0;
    background: transparent;
}

.cart-page .address-information-section .my-address-box {
    padding: 44px 60px;
    background-color: #E8F4EC;
    border-radius: 15px;
}

.cart-page .address-information-section .my-address-box .main-info .head {
    position: relative;
}

.cart-page .address-information-section .my-address-box .main-info .head:after {
    position: absolute;
    content: "";
    right: -33px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(149, 200, 163, 0.19);
}

.cart-page .address-information-section .my-address-box .info .item {
    margin-bottom: 15px;
}

.cart-page .address-information-section .my-address-box .info .item span {
    display: inline-block;
    color: #707070;
}

.cart-page .address-information-section .my-address-box .info .item .value {
    color: #111;
}

.cart-page .address-information-section .my-address-box .main-btn {
    font-size: 0.75em;
    min-height: auto;
    min-width: auto;
    padding: 8px 36px;
}

.cart-page .address-information-section .add-new-address {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 3px 40px rgba(0, 0, 0, 0.04);
    flex-direction: column;
    padding: 20px;
}

.cart-page .address-information-section .methods-address .method-box {
    position: relative;
}

.cart-page .address-information-section .methods-address .method-box:not(:last-of-type) {
    margin-bottom: 30px;
}

.cart-page .address-information-section .methods-address .method-box .my-address-box {
    position: relative;
}

.cart-page .address-information-section .methods-address .method-box .my-address-box:before {
    background: #8EC49C;
    border-radius: 50%;
    color: #fff;
    content: "\f00c";
    display: block;
    font-family: "Font Awesome 6 Pro";
    font-size: 9px;
    height: 22px;
    padding: 5px 0px 0 0;
    position: absolute;
    right: -7px;
    text-align: center;
    top: -7px;
    transform: translate(15px, -15px);
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    width: 22px;
    opacity: 0;
    font-weight: 600;
}

.cart-page .address-information-section .methods-address .method-box input {
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.cart-page .address-information-section .methods-address .method-box input:checked~label .my-address-box {
    background-color: var(--main-color);
    color: #fff;
}

.cart-page .address-information-section .methods-address .method-box input:checked~label .my-address-box:before {
    transform: translate(0);
    opacity: 1;
}

.cart-page .payment-methods {
    padding: 30px;
    padding-inline-end: 0;
}

.cart-page .payment-methods .item {
    position: relative;
}

.cart-page .payment-methods .item:not(:last-of-type) {
    margin-bottom: 30px;
}

.cart-page .payment-methods .item input {
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 1px;
    border: 0;
    opacity: 0;
}

.cart-page .payment-methods .item input:checked~label .checkmark {
    border-color: var(--main-color);
}

.cart-page .payment-methods .item input:checked~label .checkmark:after {
    transform: translate(-50%, -50%) scale(1);
    background-color: var(--main-color);
}

.cart-page .payment-methods .item input:checked~label .image {
    border: 2px solid var(--main-color);
    background-color: #fff;
    box-shadow: 0px 0px 40px rgba(140, 195, 155, 0.2);
}

.cart-page .payment-methods .item .checkmark {
    position: relative;
    flex: none;
    width: 22px;
    height: 22px;
    border: 1px solid #cccccc;
    background-color: rgb(244 244 244 / 44%);
    border-radius: 50%;
}

.cart-page .payment-methods .item .checkmark:after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #050505;
    transition: 0.3s;
    transform: translate(-50%, -50%) scale(0);
}

.cart-page .payment-methods .item .image {
    width: 210px;
    flex: none;
    height: 120px;
    border: 1px solid #cccccc;
    background-color: rgb(244 244 244 / 44%);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: 0.3s;
    padding: 20px;
    text-align: center;
}

.cart-page .payment-methods .item .image i {
    font-size: 3em;
    margin-bottom: 9px;
}

.cart-page .payment-methods .item .image img {
    max-height: 65px;
    object-fit: contain;
    margin-bottom: 6px;
}

.cart-page .payment-methods .item .desc {
    line-height: normal;
}

#progressbar {
    display: flex;
}

#progressbar li {
    list-style-type: none;
    width: 25%;
    position: relative;
    z-index: 1;
    color: #363636;
}

#progressbar li:after {
    content: "";
    width: 100%;
    height: 4px;
    background: #e1e1e1;
    position: absolute;
    left: 0;
    top: 40px;
    z-index: -1;
}

#progressbar li.active {
    color: var(--main-color);
}

#progressbar li.active strong {
    /* color: #8DC49C; */
    font-weight: 700;
}

#progressbar li:first-of-type:after {
    border-radius: 0 50px 50px 0;
}

#progressbar li:last-of-type:after {
    border-radius: 50px 0 0 50px;
}

#progressbar li .icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--main-color);
    border: 1px solid #e1e1e1;
    background: rgb(244 244 244);
    border-radius: 50%;
    margin: 0 auto 10px auto;
    padding: 2px;
}

#progressbar strong {
    color: #707070;
    font-size: 0.875em;
    font-weight: normal;
}

#progressbar li.active .icon {
    background-color: var(--main-color);
    color: #fff;
    border-color: var(--main-color);
}

#progressbar li.active:after,
#progressbar li.active:before {
    background: var(--main-color);
}

.quentity-box {
    display: inline-flex;
    height: 45px;
    background: #f4f4f4;
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid #e6e6e6;
    min-width: 110px;
}

.quentity-box button {
    padding: 0;
    width: 31px;
    font-size: 12px;
    color: #222;
    background-color: transparent;
    cursor: pointer;
    -webkit-appearance: none;
    border: 0;
}

.quentity-box button.quantity-minus {
    border-inline-end: 1px solid #e6e6e6;
}

.quentity-box button.quantity-plus {
    border-inline-start: 1px solid #e6e6e6;
}

.quentity-box .form-control {
    flex: 1;
    padding: 0;
    height: inherit;
    font-size: 14px;
    border: solid #ebebeb;
    border-width: 1px 0;
    color: #222;
    text-align: center;
    border-radius: 0;
    background-color: transparent;
}

/*--------------------------------------------------------------
# End cart page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Start auth pages
--------------------------------------------------------------*/
.auth_page {
    padding: 60px 0 0;
}

.auth_page .shape {
    position: absolute;
    top: 0;
    right: -170px;
    z-index: -1;
}

.auth_page .iti.iti--allow-dropdown {
    flex: 1;
}

.auth_page .image-side {
    position: relative;
    max-width: max-content;
    margin-inline-start: auto;
    margin-inline-end: 9%;
}

.auth_page .image-side .mask-img {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.auth_page .image-side .main-info {
    position: absolute;
    top: 23%;
    width: 70%;
    left: 50%;
    transform: translateX(-50%);
}

.auth_page .modal-form {
    padding: 0 9%;
}

.auth_page .modal-form .back-btn .icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #F8F8F8;
    background-color: var(--main-color);
    flex: none;
    transition: 0.3s;
}

.auth_page .modal-form .back-btn .text {
    font-size: 1.125em;
}

.auth_page .modal-form .back-btn:hover .icon {
    background-color: #8EC49C;
}

.auth_page .modal-form .head-line span {
    background-color: var(--main-color);
}

.auth_page .modal-form .desc * {
    color: #B4B0B0;
}

.auth_page .modal-form .main-label {
    padding-inline-start: 0;
    color: #707070;
}

.auth_page .modal-form .uploadFile {
    margin: 0;
    position: relative;
    border-radius: 30px;
    background-color: #EDEDED;
    cursor: pointer;
    transition: 0.3s;
    overflow: hidden;
    height: 147px;
    width: 100%;
    text-align: center;
}

.auth_page .modal-form .uploadFile input {
    position: absolute;
    top: 0;
    right: 0px;
    width: 1px;
    height: 1px;
}

.auth_page .modal-form .uploadFile .icon i {
    font-size: 2.5em;
}

.auth_page .modal-form .uploadFile .icon p {
    color: #B4B0B0;
    margin: 10px 0 0;
}

.auth_page .modal-form .uploadFile .image-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    flex-direction: column;
    border: 1px solid var(--main-color);
    border-radius: 30px;
    cursor: auto;
}

.auth_page .modal-form .uploadFile .image-box .close {
    cursor: pointer;
    position: absolute;
    top: 9px;
    left: 7px;
    z-index: 1;
    background-color: var(--main-color);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    box-shadow: 0px 3px 6px rgba(195, 195, 195, 0.39);
}

.auth_page .modal-form .form-group {
    margin-bottom: 30px;
}

.auth_page .modal-form .custom_checkbox .checkmark {
    width: 20px;
    min-width: 20px;
    height: 20px;
    border: 1px solid #8FC49E;
}

.auth_page .modal-form button.main-btn {
    min-height: 60px;
}

.auth_page .reset-password .main-heading h2 {
    margin: 0 0 20px;
}

.auth_page .reset-password .main-heading p {
    color: #807C7C;
}

.auth_page .reset-password .form-group-email {
    max-width: 550px;
    margin: 0 auto 30px;
}

.auth_page .form-group-virefy {
    max-width: max-content;
    margin: 30px auto;
}

.auth_page .form-group-virefy .gray-color {
    color: #807C7C;
}

.auth_page .veri_inputs {
    display: flex;
    justify-content: center;
    align-items: center;
    direction: ltr;
    gap: 0 13px;
    margin: 15px 0 30px;
}

.auth_page .veri_inputs .verify-input-field {
    height: 60px;
    width: 60px;
    padding: 10px;
    text-align: center;
    font-size: 2em;
    font-weight: 700;
    outline: none;
    border-radius: 5px;
    color: #111;
    caret-color: #111;
    transition: 0.3s;
    background-color: #E7F4EB;
    border: 1px solid transparent;
}

.auth_page .veri_inputs .verify-input-field::selection {
    background: transparent;
}

.auth_page .veri_inputs .verify-input-field:focus {
    border-color: var(--main-color);
}

.input-box {
    background-color: #efefef;
    border-radius: 50px;
    padding: 10px;
    height: 50px;
}

.input-box .icon {
    color: #707070;
    background: var(--sec-color);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

.input-box .form-control {
    border: 0;
    background: none;
    padding: 0 12px;
}

.input-box .form-control::placeholder {
    color: #707070;
}

.input-box select.form-control {
    color: #B4B0B0;
}

.input-box .toggle-password {
    width: 40px;
    height: 40px;
    background: rgb(217 56 41 / 11%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--main-color);
    margin-inline-end: -5px;
}

.input-box.input-box-textarea {
    padding: 16px 30px;
    border-radius: 30px;
}

.input-box textarea.form-control {
    height: 147px;
    border-radius: 20px;
    resize: none;
}

.input-box .main-btn.file-btn {
    font-weight: 400;
    min-height: auto;
    padding: 10px;
    margin-inline-end: -5px;
}

.input-box .img-name {
    margin-inline-start: 10px;
    color: #B4B0B0;
}

.input-box .profile-img {
    object-fit: cover;
    border-radius: 50%;
    margin-inline-start: 10px;
    width: 35px;
    height: 35px;
}

/*--------------------------------------------------------------
# End auth pages
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Start Profile page
--------------------------------------------------------------*/
.profile_page {
    margin-top: 50px;
}

.profile_page .profile-row {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.profile_page .profile-card {
    position: relative;
    width: 110px;
    background: var(--sec-color);
    /* background: var(--main-color); */
    border-radius: 100px;
    padding: 90px 0 100px;
    /* box-shadow: 0px 0px 20px rgba(147, 199, 161, 0.35); */
}

.profile_page .profile-card .personal-info {
    padding: 0 15px;
}

.profile_page .profile-card .personal-info .image {
    margin: 0 auto;
}

.profile_page .profile-card .personal-info .image img {
    border-radius: 50%;
}

.profile_page .profile-card .tabs-li {
    position: relative;
}

.profile_page .profile-card .tabs-li li {
    border-radius: 50px;
    transition: 0.4s;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile_page .profile-card .tabs-li li>a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 15px;
    width: 100%;
    filter: brightness(0) invert(1);
}

.profile_page .profile-card .tabs-li li path {
    transition: 0.3s;
}

.profile_page .profile-card .tabs-li li.active path {
    fill: #d93829;
}

.profile_page .profile-card .tabs-li li.active:nth-child(2)~.current-link {
    transform: translateY(75px);
}

.profile_page .profile-card .tabs-li li.active:nth-child(3)~.current-link {
    transform: translateY(150px);
}

.profile_page .profile-card .tabs-li li.active:nth-child(4)~.current-link {
    transform: translateY(225px);
}

.profile_page .profile-card .tabs-li li.active:nth-child(5)~.current-link {
    transform: translateY(300px);
}

.profile_page .profile-card .tabs-li li.active:nth-child(6)~.current-link {
    transform: translateY(375px);
}

.profile_page .profile-card .tabs-li li.active:nth-child(7)~.current-link {
    transform: translateY(450px);
}

.profile_page .profile-card .tabs-li li.active:nth-child(8)~.current-link {
    transform: translateY(525px);
}

.profile_page .profile-card .tabs-li .current-link {
    position: absolute;
    height: 102px;
    width: 100%;
    background-image: url(../img/indicator.png);
    background-size: contain;
    top: -16px;
    z-index: -1;
    transition: 0.4s;
    background-repeat: no-repeat;
    filter: brightness(0) invert(1);
}

.profile_page .profile-card .copyrights {
    color: #F8F8F9;
}

.profile_page .main-content {
    position: relative;
    width: calc(100% - 160px);
    flex: 1;
}

.profile_page .box-content,
.profile_page .box-content-inner {
    display: none;
    transition: 0.3s;
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

.profile_page .box-content.active,
.profile_page .box-content-inner.active {
    display: block;
    animation: fadeInUp 1s both;
    -webkit-animation: fadeInUp 1s both;
}

.profile_page .box-content {
    position: relative;
    z-index: 1;
}

.profile_page .box-content .heading {
    margin-bottom: 25px;
}

.profile_page .box-content .heading .icon {
    width: 50px;
    height: 50px;
    background-color: #dbeee0;
    border-radius: 50%;
    border: 6px solid #d938291a;
    background-color: #fff;
}

.profile_page .box-content .heading h2 {
    font-size: 2em;
}

.profile_page .box-content .box-style {
    padding: 53px 40px;
    border-radius: 60px;
    background-color: #dbe1e133;
    box-shadow: 0px 0px 35px rgba(147, 199, 161, 0.1);
}

.profile_page .box-content .box-style:not(:last-of-type) {
    margin-bottom: 30px;
}

.profile_page .box-content .box-style .main-heading h2 {
    font-size: 1.25em;
}

.profile_page .box-content .box-style .main-heading .head-line {
    margin: 10px 0;
    gap: 4px;
}

.profile_page .box-content .box-style .main-heading .head-line span {
    background-color: var(--main-color);
    width: 4px;
    height: 4px;
}

.profile_page .box-content .box-style .main-heading .head-line span:nth-of-type(1) {
    width: 60px;
    height: 4px;
}

.profile_page .box-content .box-style .form-group {
    margin-bottom: 30px;
}

.profile_page .box-content .box-style .input-box {
    position: relative;
}

.profile_page .box-content .box-style .input-box .icon {
    color: #fff;
}

.profile_page .box-content .box-style .input-box input[type=file] {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    width: 1px;
    height: 1px;
}

.profile_page .box-content#orders-content .box-style {
    padding: 30px;
}

.profile_page .box-content#orders-content .search-box {
    width: 70%;
    margin: 0 auto;
}

.profile_page .box-content#orders-content .search-box .search-input {
    background-color: #EDEDED;
}

.profile_page .box-content#fav-content .box-style,
.profile_page .box-content#mydesigns-content .box-style {
    padding: 50px 43px;
}

.profile_page .box-content#fav-content .box-style:not(:last-of-type),
.profile_page .box-content#mydesigns-content .box-style:not(:last-of-type) {
    margin-bottom: 30px;
}

.profile_page .box-content .fav-box {
    align-items: start;
}

.profile_page .box-content .fav-box .image {
    background: #EDEDED;
    border-radius: 20px;
}

.profile_page .box-content .fav-box .desc * {
    font-size: 0.875em !important;
    color: #707070 !important;
    line-height: normal;
}

.profile_page .box-content .fav-box .badge-info {
    padding: 8px 25px;
    font-size: 1.125em;
}

.profile_page .box-content.follow-content .box-style {
    padding: 30px;
}

.profile_page .box-content.follow-content .box-style .follow-product-box {
    padding: 30px;
    background-color: rgba(223, 223, 223, 0.25);
    border-radius: 10px;
}

.profile_page .box-content.follow-content .box-style .follow-product-box:not(:last-of-type) {
    margin-bottom: 30px;
}

.profile_page .box-content.follow-content .box-style .follow-product-box .head .image {
    background-color: #DFDFDF;
    border-radius: 5px;
    overflow: hidden;
}

.profile_page .box-content.follow-content .box-style .follow-product-box .badge-info {
    font-size: 0.875em;
}

.profile_page .box-content.mysales-content .box-style {
    padding: 10px 30px;
}

.profile_page .box-content.mysales-content .chart-box {
    padding: 30px;
    background-color: #edf3f4;
    border-radius: 10px;
    box-shadow: 0px 0px 25px rgba(139, 194, 154, 0.1);
}

.profile_page .box-content.mysales-content .chart-box .badge {
    border-radius: 50px;
    background-color: #E7F4EB;
    color: var(--sec-color);
    min-width: 150px;
    padding: 4px 10px;
}

.profile_page .box-content.mysales-content .chart-box .total {
    border-top: 1px solid #DCEFE1;
}

.profile_page .box-content.mysales-content .chart-box-2 ul {
    background: var(--sec-color);
    padding: 10px;
    border-radius: 50px;
}

.profile_page .box-content.mysales-content .chart-box-2 ul li {
    padding: 5px 25px;
    border-radius: 50px;
}

.profile_page .box-content.mysales-content .chart-box-2 ul li.active {
    background-color: #FFFFFF;
    color: var(--main-color);
}

.profile_page .box-content.mywallet-content .box-style {
    border-radius: 30px;
    background: #fff;
    padding: 50px;
}

.profile_page .box-content.mywallet-content .box-style .sales-box {
    background-color: #03505e12;
    padding: 65px 50px;
    border-radius: 15px;
    padding-inline-end: 34px;
    height: 100%;
}

.profile_page .box-content.mywallet-content .box-style .sales-box .image {
    background-color: rgba(155, 204, 168, 0.2901960784);
    color: var(--main-color);
}

.profile_page .box-content.mywallet-content .box-style .sales-box .info p {
    color: #707070;
}

.profile_page .box-content.mywallet-content .box-style .sales-box.charge-box {
    background: var(--sec-color);
}

.profile_page .box-content.mywallet-content .box-style .sales-box.charge-box .image {
    box-shadow: 0 0 0 16px rgba(255, 255, 255, 0.52);
    background-color: rgba(255, 255, 255, 0.76);
}

.profile_page .box-content.mywallet-content .box-style .sales-box.charge-box .info p {
    color: #fff;
}

.profile_page .box-content.mywallet-content .box-style .sales-box.charge-box .info .main-btn {
    background: #fff;
    height: 40px;
    min-height: 40px;
    color: var(--sec-color);
}

.profile_page .box-content.mywallet-content .box-style .sales-box.charge-box .info .form-control {
    border-radius: 50px;
    background: #edf3f4;
    padding: 10px 20px;
}

.profile_page .box-content.mywallet-content .box-style .sales-box.charge-box .info .form-control::placeholder {
    font-size: 0.8em;
}

.profile_page .box-content .sales-box {
    background-color: #edf3f4;
    border-radius: 10px;
    padding: 23px 30px;
    transition: 0.3s;
    box-shadow: 0px 3px 25px rgba(139, 194, 154, 0.1);
}

.profile_page .box-content .sales-box:hover {
    background-color: #fff;
}

.profile_page .box-content .sales-box .image {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background-color: rgb(3 80 94 / 16%);
    box-shadow: 0 0 0 16px rgb(3 80 94 / 10%);
}

.profile_page .box-content .sales-box .image i {
    font-size: 36px;
}

.profile_page .box-content .sales-box .info p {
    color: var(--sec-color);
}

.profile_page .box-content .sales-box .info span {
    font-size: 2.625em;
    display: block;
}

.profile_page .box-content.help-content .info_box .questions .box {
    margin-bottom: 16px;
}

.profile_page .box-content.help-content .info_box .questions .box .head_ques {
    background: rgba(158, 206, 171, 0.16);
    padding: 13px 32px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #060606;
    font-weight: 400;
    cursor: pointer;
    transition: 0.3s;
}

.profile_page .box-content.help-content .info_box .questions .box .head_ques .icon {
    transition: 0.3s;
}

.profile_page .box-content.help-content .info_box .questions .box .head_ques:not(.collapsed) {
    background-color: var(--main-color);
    color: #fff;
}

.profile_page .box-content.help-content .info_box .questions .box .head_ques:not(.collapsed) .icon {
    transform: rotate(180deg);
}

.profile_page .box-content.help-content .info_box .questions .box .block {
    background-color: #fff;
    padding: 16px;
    border-radius: 6px;
    box-shadow: 0px 0 35px rgba(245, 252, 247, 0.16);
}

.profile_page .box-content.help-content .info_box .questions .box .block p {
    margin: 0;
    font-size: 0.875em;
    line-height: normal;
}

.table.style-one {
    border-spacing: 0 20px;
    min-width: 750px;
}

.table.style-one thead th {
    color: #060606;
    font-size: 0.875em;
    font-weight: 400;
    padding: 8px 10px;
}

.table.style-one tbody tr {
    background: #F4F2F2;
    border-radius: 5px;
}

.table.style-one tbody tr th,
.table.style-one tbody tr td {
    padding: 18px 10px;
    text-align: center;
    color: #919090;
    font-size: 0.875em;
}

.table.style-one .product-info {
    min-width: 370px;
}

.table.style-one .product-info img {
    flex: none;
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 5px;
    background-color: #EDEDED;
}

.table.style-one .product-info .text {
    color: #707070;
    -webkit-line-clamp: 1;
}

.table.style-one .quentity-box {
    display: inline-flex;
    height: 45px;
    background: #F4F2F2;
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid #DFDFDF;
    min-width: 110px;
}

.table.style-one .quentity-box button {
    padding: 0;
    width: 31px;
    font-size: 12px;
    color: #222;
    background-color: transparent;
    cursor: pointer;
    -webkit-appearance: none;
    border: 0;
}

.table.style-one .quentity-box button.quantity-minus {
    border-inline-end: 1px solid #DFDFDF;
}

.table.style-one .quentity-box button.quantity-plus {
    border-inline-start: 1px solid #DFDFDF;
}

.table.style-one .quentity-box .form-control {
    flex: 1;
    padding: 0;
    height: inherit;
    font-size: 14px;
    border: solid #ebebeb;
    border-width: 1px 0;
    color: #222;
    text-align: center;
    border-radius: 0;
    background-color: transparent;
}

.table.style-one .action-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E8E7E7;
    border-radius: 50%;
    margin: 0 auto;
    color: #919090;
    font-size: 1.2em;
    transition: 0.3s;
}

.table.style-one .action-icon:hover {
    background-color: var(--main-color);
    color: #fff;
}

.table.style-two {
    font-size: 0.875em;
    min-width: 750px;
}

.table.style-two thead th {
    border-bottom: 1px solid #DEDCDC;
    font-weight: 400;
    color: #060606;
    padding-bottom: 15px;
}

.table.style-two thead th i {
    margin-inline-end: 3px;
}

.table.style-two tbody tr td {
    padding: 30px 0 0;
    text-align: center;
    color: #919090;
}

.table.style-two tbody tr:not(:last-of-type) td {
    padding: 30px 0;
    border-bottom: 1px solid #DEDCDC;
}

.table.style-two .product-info {
    width: 370px;
    min-width: 370px;
    text-align: start;
}

.table.style-two .product-info img {
    flex: none;
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 5px;
}

.table.style-two .product-info h6 {
    -webkit-line-clamp: 1;
    color: #060606;
}

.table.style-two .product-info p {
    color: #919090;
    -webkit-line-clamp: 2;
}

.table.style-two .badge-info {
    padding: 7px 21px;
    font-size: 1em;
}

.table.style-two .badge-info.success {
    background-color: #DCF5DC;
    color: #59B159;
}

.table.style-two .badge-info.cancle {
    background-color: #F9E5E5;
    color: #C53636;
}

.table.style-two .badge-info.onroad {
    background-color: #DCE6F5;
    color: #3A479B;
}

/*--------------------------------------------------------------
# End Profile page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Start fav page
--------------------------------------------------------------*/
.fav-page {
    margin-bottom: 5.6em;
}

.fav-page .box-style {
    padding: 30px;
    border: 1px solid #DFDFDF;
    border-radius: 20px;
}

/*--------------------------------------------------------------
# Start fav page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
  # Start Footer
  --------------------------------------------------------------*/
footer {
    /* margin-top: 100px; */
    background: #F4F4F4;
    background-size: cover;
    padding-top: 275px;
    position: relative;
}

footer .footer-top {
    padding: 0 0 80px;
}

footer .info-box .desc {
    margin-top: 15px;
}

footer .info-box .desc p {
    font-size: 0.875em;
    line-height: normal;
    max-width: 300px;
    color: #F1DED5;
    font-size: 14px;
    line-height: 22px;
}

footer .info-box .payments img {
    height: 33px;
}

footer h4.head {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 27px;
    line-height: 32px;
}

footer .list a {
    font-size: 14px;
    margin-bottom: 15px;
    display: inline-block;
    color: #F1DED5;
}

footer .newsletter .sochial a {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    border: none;
    font-size: 16px;
}

footer .newsletter .sochial a:hover {
    background-color: var(--main-color);
    color: #fff;
}

footer .contact-info a {
    color: #fff;
    gap: 0 8px;
    margin-bottom: 10px;
    font-size: 0.875em;
}

footer .contact-info a:hover {
    color: var(--main-color);
}

footer .footer-bottom {
    padding: 0 0 25px;
}

footer .footer-bottom p {
    font-size: 14px;
    color: #F1DED5;
    line-height: 22px;
}

footer .footer-bottom p strong {
    color: #DBAD96;
}

.gift-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 23px;
    z-index: 999;
    animation: mover 0.8s infinite alternate;
    -webkit-animation: mover 0.8s infinite alternate;
}

.gift-btn .circle {
    color: #fff;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--main-color);
    border-radius: 50%;
    border: 1px solid #F8F6F6;
    box-shadow: 0 0 0 4px var(--main-color);
    margin: 0 auto;
}

.gift-btn .text {
    margin-top: 6px;
}

.footer_sochial {
    position: fixed;
    left: 19px;
    bottom: 10%;
    transform: translateY(50%);
    z-index: 1000;
}

.footer_sochial a {
    display: flex;
    width: 50px;
    height: 50px;
    background: #000;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 10px 0;
    font-size: 18px;
    color: #fff;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.14);
}

.footer_sochial a.whatsapp {
    background-color: #1EC845;
    animation: mover 0.8s infinite alternate;
}

.animation-h {
    position: absolute;
    inset: 0;
    padding: 228px 0 100px;
    max-width: 1140px;
    margin: 0 auto;
}

.banner-h .container {
    position: relative;
    z-index: 2;
}

.animation-h .shape-banner {
    position: absolute;
}

.banner-h .text-banner {
    text-align: center;
    max-width: 618px;
    margin: 0 auto;
}

.banner-h .text-banner h2 {
    font-size: 52px;
    line-height: 73px;
    font-weight: bold;
    color: var(--dark-color);
    text-transform: capitalize;
    margin: 0 0 8px;
}

.banner-h .text-banner h2 span {
    color: var(--main-color);
}

.banner-h .text-banner p {
    font: normal normal normal 18px/28px Vazirmatn;
    color: #67898E;
}

.banner-h .text-banner .btn-group {
    margin: 40px 0 0;
}

.banner-h .text-banner .btn-group .main-btn {
    margin: 0 7.5px;
    border-radius: 50px !important;
    outline: none !important;
    box-shadow: none !important;
}

.main-btn.btn-border {
    background: transparent;
    color: var(--dark-color);
    border: 2px var(--dark-color) solid;
}

.animation-h .shape-banner.shape-1 {
    top: 238px;
    left: 12%;
}

.animation-h .shape-banner.shape-2 {
    top: 438px;
    left: 22%;
}

.animation-h .shape-banner.shape-3 {
    right: 18%;
    top: 338px;
}

.animation-h .shape-banner.shape-4 {
    top: 550px;
    right: 22%;
}

.banner-h .imgs-banner {
    position: absolute;
    inset: 0;
    z-index: -1;
    display: flex;
    justify-content: space-between;
    top: auto;
    max-width: 96%;
    margin: 0 auto;
}

.banner-h .imgs-banner .img {
    width: 207px;
    position: relative;
}

.banner-h .imgs-banner .img::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 183px;
    height: 371px;
    background: #DBE1E1;
    border-radius: 0px 92px;
    z-index: -1;
}

.banner-h .imgs-banner .img img {
    margin-inline-start: 70px;
    margin-top: 10px;
}

.banner-h .imgs-banner .img-2::after {
    background: #F1D8D6;
    border-radius: 78px 0px;
    width: 156px;
    height: 290px;
    left: auto;
}

.banner-h .imgs-banner .img-2 img {
    margin-top: 20px;
    margin-inline-start: -40px;
    margin-inline-end: 0;
}

.banner-h .col-md-9 {
    margin-inline-start: auto;
}

.banner-h .imgs-banner .img.img-2 {
    margin-top: -20px;
}

.items-banner.row {
    margin-top: 117px;
}

.items-banner .item-banner {
    background: var(--bg-color);
    border-start-start-radius: 65px;
    border-end-end-radius: 65px;
    padding: 30px;
    display: flex;
}

.items-banner .item-banner .icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
}

.items-banner .item-banner .details {
    width: calc(100% - 40px);
    padding-inline-start: 13px;
}

.items-banner .item-banner .details h3 {
    font-size: 18px;
    font-weight: bold;
    color: var(--dark-color);
    line-height: 28px;
    margin: 0 0 9px;
}

.items-banner .item-banner .details p {
    color: #67898E;
    font-size: 12px;
    line-height: 18px;
    margin: 0;
    max-height: 35px;
    overflow: hidden;
}

.items-banner .col-md-4:nth-child(1) .item-banner {
    background: #EDE5E2;
}

.items-banner .col-md-4:nth-child(2) .item-banner {}

.items-banner .col-md-4:nth-child(3) .item-banner {
    background: #F1D8D6;
}

.banner-h .imgs-banner .img .text-bottom {
    width: 120px;
    height: 129px;
    /* UI Properties */
    background: var(--sec-color);
    border-start-start-radius: 66px;
    border-end-start-radius: 66px;
    border-end-end-radius: 66px;
    border: 5px solid #F4F4F4;
    margin-inline-start: -67px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
    bottom: 10px;
}

.banner-h .imgs-banner .img .text-bottom span {
    font-size: 14px;
    line-height: 22px;
}

.banner-h .imgs-banner .img .text-bottom h4 {
    font-size: 32px;
    margin: 4px 0;
    font-weight: bold;
}

.products-h {
    background: var(--bg-color);
    padding: 100px 0;
}

.title-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
    margin: 0 0 30px;
}

.title h3 {
    font-size: 42px;
    color: var(--dark-color);
    font-weight: bold;
    margin: 0;
    line-height: 59px;
}

.title-flex .title {
    margin: 0;
}

.title {
    margin: 0 0 30px;
}

.showMore {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    font-size: 18px;
    font-weight: bold;
    color: var(--dark-color);
}

.showMore i {
    width: 30px;
    height: 30px;
    background: var(--main-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    color: #fff;
    margin-inline-start: 8px;
}

.sidebar-products {
    background: var(--sec-color);
    /* height: 100%; */
    border-start-start-radius: 64px;
    border-end-end-radius: 64px;
    overflow: hidden;
    padding: 60px 0 10px;
}

.sidebar-products .nav.nav-tabs {
    border: none;
    display: block;
}

.sidebar-products .nav.nav-tabs .nav-item .nav-link {
    display: flex;
    padding: 18px 50px;
    width: 100%;
    margin: 0 !important;
    border-radius: 0;
    font-size: 20px;
    color: #fff;
    text-align: start;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.sidebar-products .nav.nav-tabs .nav-item {
    display: block;
    text-align: start;
}

.sidebar-products .nav.nav-tabs .nav-item .nav-link .icon {
    width: 21px;
}

.sidebar-products .nav.nav-tabs .nav-item .nav-link span {
    width: calc(100% - 21px);
    padding-inline-start: 15px;
}

.sidebar-products .nav.nav-tabs .nav-item .nav-link.active {
    background: rgb(2 58 66 / 50%);
}

.pro-block {
    margin: 0 0 30px;
    height: calc(100% - 30px);
    background: #fff;
    border-start-start-radius: 65px;
    border-end-end-radius: 65px;
    overflow: hidden;
    padding: 18px;
    position: relative;
    transition: all .4s;
    border: 2px solid transparent;
}

.pro-block .link-h {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.pro-block .img-block,
.pro-block .img-block img {
    max-height: 152px;
    text-align: center;
    height: 100%;
    line-height: 152px;
}

.pro-block .details {
    padding: 10px 0 0;
}

.pro-block .details .top-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
    margin: 0 0 10px;
}

.pro-block .details .top-block .name {
    font-size: 18px;
    font-weight: bold;
    color: var(--dark-color);
    margin: 0;
}

.pro-block .details .top-block .stars {
    color: #FFCA4E;
    font-size: 10px;
}

.pro-block .details p {
    color: #67898E;
    font-size: 14px;
    line-height: 22px;
    margin: 0;
}

.pro-block .details .showMore {
    margin: 14px 0 0;
    font-size: 14px;
}

.pro-block .details .showMore i {
    width: 20px;
    height: 20px;
    font-size: 10px;
}

.pro-block .img-block img {
    height: auto;
    display: inline-block;
    max-height: 105px;
}

.tab-inner .col-md-4:nth-last-child(1) .pro-block,
.tab-inner .col-md-4:nth-last-child(2) .pro-block,
.tab-inner .col-md-4:nth-last-child(3) .pro-block {}

.about-h {
    padding: 90px 0;
}

.about-h::after,
.choose-h::after,
.find-h::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: url(../images/bg-about.svg);
    background-color: #F4F4F4;
}

.text-about .title {
    margin: 0 0 6px;
}

.text-about p {
    color: #67898E;
    font-size: 18px;
    line-height: 28px;
    margin: 10px 0;
}

.text-about .alert-h {
    position: relative;
    margin: 30px 0;
    padding-inline-start: 38px;
}

.text-about .alert-h::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 8px;
    background: var(--sec-color);
    border-radius: 10px;
}

.text-about .alert-h p {
    font-size: 14px;
    line-height: 22px;
}

.text-about {
    max-width: 502px;
}

.text-about .main-btn.btn {
    margin: 9px 0 0;
}

.about-h .row {
    align-items: center;
    -webkit-align-items: center;
}

.img-about {
    text-align: center;
    position: relative;
    max-height: 460px;
    line-height: 460px;
}

.img-about::before,
.img-about::after {
    content: "";
    width: 310px;
    height: 289px;
    background: #F1D8D6;
    position: absolute;
    border-start-start-radius: 100px;
    border-end-end-radius: 100px;
    z-index: -1;
}

.img-about::before {
    top: 0;
    left: 0;
}

.img-about::after {
    bottom: 0;
    right: 0;
    background: #DBE1E1;
}

.img-about img {
    max-height: 516px;
}

.choose-slider .item {
    padding: 20px;
}

.find-inner {
    position: relative;
    background: var(--sec-color);
    max-width: 1140px;
    margin: 0 auto;
    border-start-start-radius: 100px;
    border-end-end-radius: 100px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
}

.find-h {
    padding: 90px 0;
}

.find-inner .overlay-img {
    z-index: 2;
    opacity: .9;
    max-width: calc(100% - 50px);
    overflow: hidden;
    border-start-start-radius: 100px;
    border-end-end-radius: 100px;
}

.find-inner .item {
    position: relative;
    z-index: 2;
    max-width: 50%;
    flex: 0 0 50%;
}

.find-inner .item.img-find .img {
    max-width: 635px;
    width: 100%;
    margin-inline-start: -135px;
    position: relative;
    top: 30px;
}

.find-inner .item.img-find .img img {
    max-width: 635px;
}

.find-inner .text-find .text-inner {
    max-width: 474px;
}

.find-inner .text-find .text-inner h2 {
    font-size: 42px;
    color: #fff;
    font-weight: bold;
    line-height: 59px;
}

.find-inner .text-find .text-inner,
.find-inner .text-find .text-inner p {
    color: #CCD8D9;
    font-size: 18px;
    line-height: 28px;
    margin: 10px 0;
}

.find-inner .text-find .text-inner .main-btn {
    margin-top: 20px;
}

.contact-h {
    background: #F4F4F4;
    padding: 20px 0 95px;
    overflow: visible;
    z-index: 2;
}

.title p {
    color: #67898E;
    font-size: 18px;
    line-height: 28px;
    margin: 0;
}

.text-contact {
    max-width: 482px;
}

.contact-blocks .contact-block {
    border-start-start-radius: 40px;
    border-end-end-radius: 40px;
    background: rgb(219 225 225 / 71%);
    margin: 0 0 52px;
    display: flex;
    padding: 16px;
    align-items: center;
    -webkit-align-items: center;
}

.contact-blocks .contact-block:nth-child(1) {
    background: rgb(247 215 212 / 50%);
}

.contact-blocks .contact-block .icon {
    width: 78px;
    height: 78px;
    line-height: 78px;
    border-start-start-radius: 20px;
    border-end-end-radius: 20px;
    background: rgb(3 80 94 / 8%);
    text-align: center;
}

.contact-blocks .contact-block .icon img {
    max-height: 43px;
}

.contact-blocks .contact-block:nth-child(1) .icon {
    background: #F7D7D4;
}

.contact-blocks .contact-block .details {
    width: calc(100% - 78px);
    padding-inline-start: 15px;
}

.contact-blocks .contact-block .details h3 {
    font-size: 18px;
    color: var(--sec-color);
    font-weight: bold;
    line-height: 28px;
    margin: 0 0 5px;
}

.contact-blocks .contact-block .details p {
    color: #67898E;
    opacity: 0.8;
    font-size: 14px;
    line-height: 22px;
    max-width: 358px;
    margin: 0;
}

.contact-blocks .contact-block:nth-child(1) .details h3 {
    color: var(--main-color);
}

.contact-blocks .contact-block:last-child {
    margin: 0;
}

.form-contact {
    max-width: 555px;
    margin-inline-start: auto;
    box-shadow: 10px -10px 50px #03505E0F;
    background: #fff;
    border-start-start-radius: 78px;
    border-end-end-radius: 78px;
    padding: 56px 50px;
    margin-bottom: -300px;
}

.form-contact .title-contact {
    margin: 0 0 21px;
}

.form-contact .title-contact h3 {
    font-size: 20px;
    color: var(--sec-color);
    font-weight: bold;
    line-height: 32px;
    margin: 0 0 10px;
}

.form-contact .title-contact p {
    color: #67898E;
    font-size: 14px;
    line-height: 22px;
}

.form-contact .form-group {
    margin: 0 0 30px;
    position: relative;
}

.form-contact .form-group label {
    color: #67898E;
    font-size: 14px;
    font-weight: bold;
    margin: 0 0 8px;
}

.form-contact .form-group .form-control {
    height: 50px;
    background: rgb(219 225 225 / 26%);
    border-radius: 25px;
    padding: 0 52px;
    font-size: 14px;
    transition: all .4s;
}

.form-contact .form-group i {
    position: absolute;
    left: 0;
    top: 33px;
    margin: 15px 25px;
    color: #67898E;
    transition: all .4s;
}

.form-contact .form-group .form-control:focus {
    box-shadow: 0 0 0 1px var(--main-color) !important;
    background: #fff;
}

.form-contact .form-group .form-control:focus+i {
    color: var(--main-color);
}

.form-contact .form-group textarea.form-control {
    border-radius: 25px;
    height: 158px;
    padding-top: 15px;
}

button.main-btn.btn-form {
    width: 100%;
}

footer .overlay-img {
    background: var(--sec-color);
    z-index: auto;
    border-start-start-radius: 609px;
    overflow: hidden;
}

footer .container {
    position: relative;
    z-index: 2;
}

.info-box.main-box {
    padding-inline-start: 80px;
}

.newsletter-h p {
    color: #F1DED5;
    font-size: 14px;
    line-height: 22px;
    margin: 0 0 15px;
}

.newsletter-h form {
    position: relative;
    max-width: 276px;
}

.newsletter-h form input {
    width: 100%;
    height: 50px;
    padding-inline-start: 47px;
    background: #FFFFFF;
    border-radius: 25px;
    padding-inline-end: 68px;
    font-size: 14px;
}

.newsletter-h form i {
    position: absolute;
    left: 0;
    top: 0;
    margin: 16px 20px;
    color: var(--main-color);
    font-size: 16px;
}

.newsletter-h form .main-btn {
    position: absolute;
    right: 0;
    top: 0;
    margin: 10px;
    min-width: 68px;
    min-height: 30px;
    padding: 5px 0 4px;
    font-size: 14px;
    font-weight: bold;
}

.sochial.flex-h.gap-15.mt-30 {
    gap: 15px;
}

/*--------------------------------------------------------------
  # End Footer
  --------------------------------------------------------------*/
/*--------------------------------------------------------------
  # Start Copy Right
  --------------------------------------------------------------*/
/*--------------------------------------------------------------
  # End Copy Right
  --------------------------------------------------------------*/
/*==================================================
 # Start Buttons
================================================== */
#up_btn {
    position: fixed;
    right: 25px;
    bottom: 10px;
    width: 35px;
    height: 35px;
    border: none;
    color: #fff;
    background-color: var(--main-color);
    z-index: 98;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-direction: column;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 14px;
    transform: rotate(45deg);
}

#up_btn i {
    transform: rotate(-45deg);
}

#up_btn:hover {
    background-color: #8EC49C;
}

#up_btn.fade {
    visibility: visible;
    opacity: 1;
    bottom: 30px;
}

/*==================================================
 # End Buttons
================================================== */
/*==================================================
 # Start Cursor
================================================== */
#cursor {
    position: fixed;
    top: -5px;
    left: -5px;
    width: 10px;
    height: 10px;
    background-color: #222;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
}

#cursor.cursor-link-hover {
    width: 16px;
    height: 16px;
    top: -8px;
    left: -8px;
    opacity: 0.5;
}

#cursor-border {
    --size: 30px;
    position: fixed;
    top: calc(var(--size) / -2);
    left: calc(var(--size) / -2);
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    box-shadow: 0 0 0 1px #8e8e8e;
    pointer-events: none;
    transition: top 0.15s ease-out, left 0.15s ease-out, width 0.15s ease-out, height 0.15s ease-out, background-color 0.15s ease-out;
    z-index: 9999;
}

#cursor-border.cursor-link-hover {
    --size: 50px;
    background-color: rgba(0, 0, 0, 0.3411764706);
}

/*==================================================
 # End Cursor
================================================== */
/*--------------------------------------------------------------
# Start search pop up
--------------------------------------------------------------*/
.search-switcher .search-form-container {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    top: -1000px !important;
    left: 0;
    z-index: 1000;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    height: 100%;
}

.search-switcher .search-form-container .popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.search-switcher .search-form-container .search-content-popup {
    padding: 50px 20px 50px;
    min-height: 320px;
    position: relative;
    z-index: 10;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.search-switcher .search-form-container .search-content-popup .close-popup {
    position: absolute;
    right: 40px;
    top: 50px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.6);
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.search-switcher .search-form-container .search-content-popup .close-popup i {
    font-size: 30px;
    transition: all 0.3s linear 0s;
    -webkit-transition: all 0.3s linear 0s;
}

.search-switcher .search-form-container .search-content-popup .close-popup i:hover {
    opacity: 1;
    color: var(--main-color);
    transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
}

.search-switcher .search-form-container .search-content-popup .close-popup span {
    font-weight: 500;
    font-size: 16px;
    display: none;
}

.search-switcher .search-form-container .search-content-popup h3 {
    font-size: 18px;
    margin: 0 0 25px;
    text-transform: uppercase;
    font-weight: 500;
}

.search-switcher .search-form-container .search-content-popup .field-container {
    width: 100%;
    max-width: 600px;
    position: relative;
}

.search-switcher .search-form-container .search-content-popup .field-container input.search-field {
    border: 0;
    border: 1px solid var(--main-color);
    border-radius: 3px;
    width: 100%;
    padding: 10px 45px 10px 20px;
    height: 45px;
    min-height: 45px;
    margin: 0;
    padding-left: 10px;
    font-size: 14px;
    background: none;
    box-shadow: none;
    outline: none;
}

.search-switcher .search-form-container .search-content-popup .field-container .btn-search {
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    opacity: 0;
    border: 0;
    padding: 0;
    margin: 0;
    text-indent: -99999px;
    width: 45px;
    height: 45px;
    min-height: 45px;
    z-index: 2;
}

.search-switcher .search-form-container .search-content-popup .field-container i {
    position: absolute;
    right: 0;
    top: 0;
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 20px;
    z-index: 1;
    color: var(--main-color);
}

.search-switcher.showing .search-form-container {
    top: 0 !important;
    opacity: 1;
    visibility: visible;
}

/*--------------------------------------------------------------
# End search pop up
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Start preloader
--------------------------------------------------------------*/
#fuse-splash-screen {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #141414;
    z-index: 9999;
    pointer-events: none;
    height: 100%;
    transition: 0.5s;
}

#fuse-splash-screen.show {
    opacity: 0;
    visibility: hidden;
}

#fuse-splash-screen .center {
    display: block;
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

#fuse-splash-screen .center .logo {
    width: 180px;
    margin: 0 auto;
}

#fuse-splash-screen .center .logo img {
    filter: drop-shadow(0px 10px 6px rgba(0, 0, 0, 0.2));
}

#fuse-splash-screen .spinner-wrapper {
    display: block;
    position: relative;
    width: 100%;
    min-height: 100px;
    height: 100px;
}

#fuse-splash-screen .spinner-wrapper .spinner {
    position: absolute;
    overflow: hidden;
    left: 50%;
    margin-left: -50px;
    animation: outer-rotate 2.91667s linear infinite;
}

#fuse-splash-screen .spinner-wrapper .spinner .inner {
    width: 100px;
    height: 100px;
    position: relative;
    animation: sporadic-rotate 5.25s cubic-bezier(0.35, 0, 0.25, 1) infinite;
}

#fuse-splash-screen .spinner-wrapper .spinner .inner .gap {
    position: absolute;
    left: 49px;
    right: 49px;
    top: 0;
    bottom: 0;
    border-top: 10px solid;
    box-sizing: border-box;
}

#fuse-splash-screen .spinner-wrapper .spinner .inner .right,
#fuse-splash-screen .spinner-wrapper .spinner .inner .left {
    position: absolute;
    top: 0;
    height: 100px;
    width: 50px;
    overflow: hidden;
}

#fuse-splash-screen .spinner-wrapper .spinner .inner .right .half-circle,
#fuse-splash-screen .spinner-wrapper .spinner .inner .left .half-circle {
    position: absolute;
    top: 0;
    width: 100px;
    height: 100px;
    box-sizing: border-box;
    border: 10px solid #8EC49C;
    border-bottom-color: transparent;
    border-radius: 50%;
}

#fuse-splash-screen .spinner-wrapper .spinner .inner .left {
    left: 0;
}

#fuse-splash-screen .spinner-wrapper .spinner .inner .left .half-circle {
    left: 0;
    border-right-color: transparent;
    animation: left-wobble 1.3125s cubic-bezier(0.35, 0, 0.25, 1) infinite;
    -webkit-animation: left-wobble 1.3125s cubic-bezier(0.35, 0, 0.25, 1) infinite;
}

#fuse-splash-screen .spinner-wrapper .spinner .inner .right {
    right: 0;
}

#fuse-splash-screen .spinner-wrapper .spinner .inner .right .half-circle {
    right: 0;
    border-left-color: transparent;
    animation: right-wobble 1.3125s cubic-bezier(0.35, 0, 0.25, 1) infinite;
    -webkit-animation: right-wobble 1.3125s cubic-bezier(0.35, 0, 0.25, 1) infinite;
}

@keyframes outer-rotate {
    0% {
        transform: rotate(0deg) scale(0.5);
    }

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

@keyframes left-wobble {

    0%,
    100% {
        transform: rotate(130deg);
    }

    50% {
        transform: rotate(-5deg);
    }
}

@keyframes right-wobble {

    0%,
    100% {
        transform: rotate(-130deg);
    }

    50% {
        transform: rotate(5deg);
    }
}

@keyframes sporadic-rotate {
    12.5% {
        transform: rotate(135deg);
    }

    25% {
        transform: rotate(270deg);
    }

    37.5% {
        transform: rotate(405deg);
    }

    50% {
        transform: rotate(540deg);
    }

    62.5% {
        transform: rotate(675deg);
    }

    75% {
        transform: rotate(810deg);
    }

    87.5% {
        transform: rotate(945deg);
    }

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

/*--------------------------------------------------------------
# End preloader
--------------------------------------------------------------*/
/*********** Start buttons ************/
.main-btn {
    padding: 7px 40px;
    color: #0A0A0A;
    min-height: 50px;
    transition: 0.3s;
    display: inline-block;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0 10px;
    overflow: hidden;
    z-index: 0;
    position: relative;
    background-color: var(--main-color);
    font-size: 18px;
    font-weight: bold;
    min-width: 150px;
    color: #fff;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.main-btn:before {
    content: "";
    width: 0%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 50%;
    background-color: var(--sec-color);
    transition: 0.5s ease-in-out;
    z-index: -1;
}

.main-btn:hover {
    color: #fff !important;
}

.main-btn:hover:before {
    width: 100%;
    right: 0%;
}

.main-btn.sec {
    background-color: #8BC34A;
    color: #fff;
}

.main-btn.trans {
    background-color: transparent;
    border: 1px solid #AFAFAF;
    color: var(--main-color);
}

.main-btn.trans:before {
    background-color: #8EC49C;
}

.main-btn.white {
    background-color: #fff;
    color: var(--main-color);
}

.main-btn.gray {
    background-color: #EDEDED;
    color: var(--main-color);
}

/*********** End buttons ************/
/*--------------------------------------------------------------
# Start Headings
--------------------------------------------------------------*/
.main-info .heading {
    position: relative;
    max-width: max-content;
}

.main-info .heading span {
    position: absolute;
    white-space: nowrap;
    left: 50%;
    transform: translateX(-50%);
    top: 21.5px;
    font-size: 0.875em;
    font-family: "Amiri";
    display: none;
}

.main-info .head {
    font-family: "Amiri";
    font-weight: bold;
    font-size: 52px;
    max-width: 380px;
    line-height: 1.4;
    color: #023A42;
    text-transform: capitalize;
}

.main-info p {
    margin-top: 8px;
    font-size: 1.125em;
}



/*--------------------------------------------------------------
# End Headings
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Start Custom Modal
--------------------------------------------------------------*/
.custom-modal .modal-content {
    background: #F8F6F6;
    border-radius: 20px;
}

.custom-modal .modal-content button.close {
    position: absolute;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 0;
    background: #e53935;
    color: #fff;
    font-size: 1.1em;
    top: 20px;
    right: 20px;
    transition: 0.3s;
    z-index: 9;
}

.custom-modal .modal-content button.close:hover {
    background-color: rgb(176, 31, 31);
}

.custom-modal .modal-content .modal-body {
    padding-top: 60px;
}

.custom-modal .modal-content .modal-body .main-heading h2 {
    font-size: 1.6em;
}

.custom-modal .modal-content .modal-footer {
    border-color: #E5E5E5;
}

.custom-modal .modal-content .modal-footer .main-btn.save-btn::before {
    background-color: #707070;
}

.custom-modal .modal-content .modal-footer .main-btn.close-btn {
    background-color: #e53935;
    color: #fff;
}

.custom-modal .modal-content .modal-footer .main-btn.close-btn::before {
    background-color: rgb(176, 31, 31);
}

/*--------------------------------------------------------------
# End Custom Modal
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Start Hadeer
--------------------------------------------------------------*/

.body-inner {
    padding: 255px 0 100px;
}

.products-h.body-inner+footer {
    background: var(--bg-color);
}

.filter-card {
    background: transparent linear-gradient(180deg, #E1E6E6 0%, #F4F4F4 100%) 0% 0% no-repeat padding-box;
    border-radius: 64px 0px;
    padding: 60px 30px;
    height: calc(100% - 30px);
}

.products-h.body-inner {
    background: #F4F4F4;
}

.filter-card .box h6 {
    color: #023A42;
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 11px;
}

.filter-card .box {
    margin: 0 0 24px;
}

.filter-card .box .form-control,
.filter-card .box .select2-container,
.filter-card .box select,
.filter-card .box input {
    width: 100% !important;

    /* UI Properties */
    background: #fff;
    border: 1px solid #023A42;
    border-radius: 20px;
    height: 40px;
}

.filter-card .box .select2-container .select2-selection.select2-selection--single {
    height: 100%;
    line-height: 40px;
    border-radius: 20px;
    text-align: right;
}


.filter-card .box .select2-container .select2-selection.select2-selection--single .select2-selection__rendered {
    display: inline-block;
    line-height: inherit;
}

.filter-card .box .select2-container .select2-selection.select2-selection--single .select2-selection__clear {
    line-height: 39px;
}

.filter-card .box .select2-container .select2-selection.select2-selection--single .select2-selection__arrow {
    height: 40px;
}

.filter-card .main-btn {
    width: 100%;
    margin: 10px 0;
}

.search-box .search-input.flex-h {

    /* UI Properties */

    position: relative;

    width: calc(100% - 75px);
}

.search-box .search-input.flex-h input {
    height: 60px;
    background: #E1E6E6 0% 0% no-repeat padding-box;
    border-radius: 30px;
    opacity: 0.5;
    width: 100%;
    padding-inline-start: 60px;
}

.search-box .search-input.flex-h .icon.flex-center {
    position: absolute;
    left: 0;
    /* right: 0; */
    margin: 0;
    width: 40px;
    height: 40px;
    /* UI Properties */
    background: #E1E6E6;
    border-radius: 50%;
    margin: 10px;
}

.single-product-page.body-inner {
    background: #F4F4F4;
}

.main-info .heading img,
.main-info .head+img {
    display: none;
}

.top-bar .name {
    color: #023A42;
    font-size: 32px !important;
    text-transform: capitalize;
}

.single-product-page .info-product-box .box {
    flex-direction: column;
    justify-content: start !important;
    align-items: self-start;
    -webkit-align-items: self-start;
    gap: 0;
}

.single-product-page .info-product-box .box .small {
    color: #023A42;
    font-size: 18px !important;
    font-weight: bold !important;
    margin: 0 0 14px;
}

.single-product-page .info-product-box .box .quentity-box {
    height: 50px;
    /* UI Properties */
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #023A42;
    border-radius: 25px;
}

.single-product-page .info-product-box .box .quentity-box button {
    width: 50px;
    border: none !important;
}

.animation-h .img {
    position: absolute;
    top: 18%;
}

.animation-h .img.img1 {
    width: 45px;
    height: 42px;
    right: 25%;
}

.workstation-page.body-inner {
    background: #F4F4F4;
}

.animation-h .img.img2 {
    width: 74px;
    height: 76px;
    left: 20%;
}

.animation-h .img.img3 {
    width: 114px;
    height: 138px;
    left: -2%;
    top: 31%;
    /* bottom: 0; */
}

.workstation-page .animation-h {
    max-width: 100%;
}

.workstation-page .container {
    position: relative;
    z-index: 2;
}

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

.title-page {
    margin: 0 0 100px;
}

.title-page h3 {
    font-size: 52px;
    line-height: 73px;
}

.workstation-page .row {
    align-items: center;
    -webkit-align-items: center;
}

.workstation-page .text-about .btn {
    margin: 20px 0 0;
    min-width: 200px;
}

.workstation-page .img-about::before,
.workstation-page .img-about::after {
    display: none;
}

.workstation-page .img-about {
    margin: 0 auto;
    max-width: 522px;
}

.workstation-page .row:nth-child(2) {
    flex-direction: row-reverse;
}

.text-about.text-contact .img {
    margin: 30px 0 0;
}

.contact-page .form-contact {
    margin: 0;
}

.contact-page {
    background: #F4F4F4;
    padding: 0 0 100px;
}

#rateNow .modal-body {
    padding: 30px;
}

#rateNow .modal-body form {
    padding: 40px 0;
}

#rateNow .modal-body form .jq-ry-container {
    margin: 0 auto 35px;
}

#rateNow .modal-body form .form-group {
    margin: 0 0 30px;
}

#rateNow .modal-body form .form-group textarea {
    background: #f1f1f1;
    height: 150px;
    padding: 20px;
    resize: none;
}

#rateNow .modal-body form .form-group label {
    margin: 0 0 12px;
    font-size: 17px;
}

#rateNow .modal-body form .form-group .btn {}

#rateNow .modal-body form button.btn.main-btn {
    width: 100%;
}

.progress-block .progress {
    margin: 8px 0;
    padding: 0;
    width: 90%;
    overflow: hidden;
    background: transparent;
    border-radius: 6px;
    /* flex-wrap: wrap; */
    position: relative;
    align-items: center;
    -webkit-align-items: center;
    color: #67898E;
}

.progress-block .progress .bar {
    position: relative;
    float: left;
    min-width: 1%;
    height: 100%;
    background: var(--main-color);
    height: 5px;
    border-radius: 3px;
}

.progress .percent {
    /* position: absolute; */
    /* top: 50%; */
    right: 0;
    /* transform: translate(-50%, -50%); */
    /* margin: 0; */
    font-size: 12px;
    color: #67898E;
}

.chosse-radio {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    width: 100%;
}

.chosse-radio .item {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    -o-align-items: center;
    position: relative;
}

.chosse-radio .item input {
    position: absolute;
    inset: 0;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
}

.chosse-radio .item .item-inner {
    position: relative;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    -o-align-items: center;
}

.chosse-radio .item .item-inner .pinColor {
    width: 15px;
    height: 15px;
    display: block;
    border-radius: 50%;
    margin-inline-end: 10px;
}

.chosse-radio .item input:checked+.item-inner .pinColor {
    box-shadow: inset 0px 0px 1px 2px #f4f4f4;
}

.alert-shipping {
    margin: 34px auto 0;
    background: transparent linear-gradient(0deg, #E1E6E6 0%, #F4F4F4 100%) 0% 0% no-repeat padding-box;
    border-start-start-radius: 45px;
    border-start-end-radius: 20px;
    border-end-end-radius: 50px;
    padding: 33px 30px;
}

.alert-shipping .alert-inner p {
    color: #023A42;
    font-size: 14px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    margin: 0 0 14px;
}

.alert-shipping .alert-inner p img {
    max-width: 16px;
    margin-inline-end: 10px;
}

.alert-shipping .alert-inner .alert-red {
    min-height: 40px;
    /* UI Properties */
    background: #EEF0F0 0% 0% no-repeat padding-box;
    border-radius: 25px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    text-align: center;
    justify-content: center;
}

.alert-shipping .alert-inner .alert-red p {
    margin: 0;
    color: #D93829;
}

.rel-h {
    background: #F4F4F4;
    padding-bottom: 200px;
    margin-bottom: -200px;
}

.rel-slider .item {
    padding: 15px;
}

.pro-block:hover {
    border-color: #03505e;
}

.pro-block .details .top-block i {
    font-size: 10px;
    color: #FFCA4E;
}

.pro-block .hover-box {
    position: absolute;
    inset: 0;
    background: rgb(2 58 66 / 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-align-items: center;
    opacity: 0;
    transition: all .4s;
    z-index: 123;
}

.pro-block .hover-box a,
.pro-block .hover-box button {
    width: 30px;
    height: 30px;
    background: #fff;
    margin: 0 7.5px;
    border-radius: 50%;
    line-height: 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    color: var(--main-color);
    font-size: 14px;
}

.pro-block .hover-box a img,
.pro-block .hover-box button img {
    max-width: 12px;
    max-height: 12px;
}

.pro-block:hover .hover-box {
    opacity: 1;
}

.pro-block .hover-box a:hover,
.pro-block .hover-box button:hover {
    background: var(--main-color);
    color: #fff;
}

.feadback-h {
    background: transparent linear-gradient(180deg, #E1E6E6 0%, #F4F4F4 100%) 0% 0% no-repeat padding-box;
    border-start-start-radius: 200px;
    padding: 100px 0;
}

.feadback-block {
    margin: 15px 0;
}

.feadback-block h5 {
    color: var(--dark-color);
    font-size: 14px;
    line-height: 22px;
    font-weight: bold;
    margin: 0 0 10px;
}

.feadback-block h3 {
    font-size: 32px;
    color: var(--main-color);
    font-weight: bold;
    /* line-height: 50px; */
    margin: 0;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
}

.feadback-block p {
    color: #67898E;
    font-size: 14px;
    margin: 0;
}

.feadback-block h3 span {
    font-size: 12px;
    padding-inline-start: 10px;
    color: #FFCA4E;
    padding-bottom: 5px;
}

.feadback-block h3 span .fa.fa-star.disable {
    color: #B5C5C7;
}

.progress-block {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    color: #023A42;
    font-size: 14px;
}

.progress-block i {
    color: #B5C5C7;
    font-size: 12px;
    margin-inline-end: 5px;
}

.progress-block span {
    margin-inline-end: 5px;
}

.progress-block .percent {
    margin-inline-start: 10px;
}

.progress-block.very-high .progress .bar {
    background: #023A42;
}

.progress-block.high .progress .bar {
    background: #3EB69F;
}

.progress-block.med .progress .bar {
    background: #FFCA4E;
}

.progress-block.very-low .progress .bar {
    background: #DBAD96;
}

.title-flex .item-right {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
}

.title-flex .item-right .stars {
    margin: 0 !important;
    margin-inline-end: 10px !important;
    font-size: 16px;
    font-weight: bold;
    text-decoration: underline;
    color: var(--main-color);
    gap: 0 !important;
}

.title-flex .item-right .stars i {
    margin-inline-end: 10px;
}

.comment-h .title-flex {
    border-bottom: 1px solid #D6DADB;
    padding-bottom: 15px;
}

.comment-h .all-comment .comment-block {
    padding: 30px 0;
    border-bottom: 1px solid #D6DADB;
    display: flex;
}

.comment-h .all-comment .comment-block .icon {
    width: 50px;
    height: 50px;
    background: #E1E6E6;
    border-radius: 50%;
    line-height: 50px;
    text-align: center;
    color: var(--dark-color);
    font-size: 14px;
    font-weight: bold;
}

.comment-h .all-comment .comment-block .details {
    width: calc(100% - 50px);
    padding-inline-start: 15px;
}

.comment-h .all-comment .comment-block .details .user-name {
    margin: 0 0 6px;
}

.comment-h .all-comment .comment-block .details .user-name h3 {
    font-size: 18px;
    color: var(--dark-color);
}

.comment-h .all-comment .comment-block .details .user-name .rate-h {
    display: flex;
    color: #FFCA4E;
    font-size: 12px;
    margin: 2px 0 9px;
}

.comment-h .all-comment .comment-block .details .user-name .rate-h .fa.fa-star.disable {
    color: #B5C5C7;
}

.comment-h .all-comment .comment-block .details .user-name .date-h {
    color: #B5C5C7;
    font-size: 14px;
}

.comment-h .all-comment .comment-block .details p {
    color: #67898E;
    font-size: 14px;
}

.profile_page .profile-card .tabs-li li.active a {
    filter: invert(35%) sepia(53%) saturate(6337%) hue-rotate(348deg) brightness(89%) contrast(90%);
}

.profile_page .box-content .heading .icon svg,
.profile_page .box-content .heading .icon path {
    fill: var(--main-color);
}


#affiliate .copy-text {
    position: relative;
    padding: 10px;
    display: block;
    margin: 40px 0;
    text-align: center;
}

.copy-text input.text {
    padding: 10px;
    font-size: 18px;
    color: #555;
    border: none;
    outline: none;
}

.copy-text button {
    padding: 10px;
    background: var(--main-color);
    color: #fff;
    font-size: 18px;
    border: none;
    outline: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all .5s;
}

.copy-text button:active {
    opacity: .9;
}

.copy-text button:before {
    content: "Copied";
    position: absolute;
    top: -45px;
    right: 0px;
    background: #5c81dc;
    padding: 8px 10px;
    border-radius: 20px;
    font-size: 15px;
    display: none;
}

.copy-text button:after {
    content: "";
    position: absolute;
    top: -20px;
    right: 25px;
    width: 10px;
    height: 10px;
    background: #5c81dc;
    transform: rotate(45deg);
    display: none;
}

.copy-text.active button:before,
.copy-text.active button:after {
    display: block;
}

.profile_page .box-content.mywallet-content .box-style.affil-blocks .sales-box {
    display: block;
    text-align: center;
    padding: 40px;
}

.profile_page .box-content.mywallet-content .box-style.affil-blocks .sales-box .image {
    margin: 0 auto 40px;
    width: 70px;
    height: 70px;
}

.profile_page .box-content.mywallet-content .box-style.affil-blocks .col-md-4:nth-child(2) .sales-box .image span.bold,
.profile_page .box-content.mywallet-content .box-style.affil-blocks .col-md-4:nth-child(3) .sales-box .image span.bold {
    font-size: 20px;
}

.profile_page .box-content.mywallet-content .box-style.affil-blocks .row .col-md-4:nth-child(2) .sales-box .info span,
.profile_page .box-content.mywallet-content .box-style.affil-blocks .row .col-md-4:nth-child(3) .sales-box .info span {
    font-size: 24px;
}

.profile_page .box-content.mywallet-content .box-style.affil-blocks .row .col-md-4:nth-child(2) .sales-box .info span {
    color: #fff;
}

#affiliate .copy-text input {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    width: 100%;
    padding: 18px;
    height: 65px;
    font-size: 17px;
    text-overflow: ellipsis;
    margin: 0 0 20px;
}

#form-affiliate input {
    width: 100%;
    display: block;
    height: 60px;
    padding: 0 20px;
    border-radius: 10px;
    border: 1px #f1f1f1 solid;
    margin: 20px 0 30px;
    font-size: 16px;
}

#form-affiliate label {
    width: 100%;
    display: block;
    /* text-align: center; */
    font-size: 28px;
}

#form-affiliate {
    text-align: center;
    padding: 30px 0 50px;
}

.profile_page .box-content#orders-content .box-style .col-md-6:nth-child(2) .sales-box .info span {
    font-size: 20px;
}

div#copy-text {
    display: flex;
    margin: 50px 0 0;
    justify-content: space-between;
}

div#copy-text input#input-text {
    width: calc(100% - 180px);
    height: 60px;
    padding: 0 20px;
    font-size: 18px;
    margin-inline-end: 10px;
    border-radius: 10px;
    background: #fff;
    border: 1px #d5e7de solid;
}

.irs--flat .irs-bar,
.irs--flat .irs-handle>i:first-child,
.irs--flat .irs-from,
.irs--flat .irs-to,
.irs--flat .irs-single {
    background: var(--main-color);
}

.cart-page.body-inner {
    margin: 0;
    background: #f4f4f4;
}

.cart-content.done-payment img {
    max-height: 200px;
    width: auto;
    margin: 0 0 30px;
}

.cart-content.done-payment h2 {
    font-size: 25px;
    text-transform: capitalize;
    margin: 0 0 10px;
}

.p-relative {
    padding: 250px 0 0;
    background: #f4f4f4;
}

.p-relative+.cart-page.body-inner {
    padding: 100px 0;
}

.profile_page .profile-card .p-relative {
    background: transparent;
    padding: 0;
}

/*--------------------------------------------------------------
# End Hadeer
--------------------------------------------------------------*/

/* ==================================================
 # Start Responsive
================================================== */
@media (max-width: 991.98px) {
    .o-2 {
        order: 2;
    }

    .separator-70 {
        gap: 70px 0;
    }

    .navtop .content {
        justify-content: center;
    }

    .nav_bar .list_menu {
        position: fixed;
        top: 0;
        left: 0;
        background: #222;
        height: 100vh;
        z-index: 9999;
        padding: 70px 25px 30px;
        width: 100%;
        display: block;
        transform: translateY(-100%);
        opacity: 0;
        transition: 0.5s;
    }

    .nav_bar .list_menu ul {
        gap: 35px 0;
        flex-direction: column;
        align-items: center;
    }

    .nav_bar .list_menu ul li {
        transform: translateX(200px);
        opacity: 0;
        transition: 0.5s;
    }

    .nav_bar .list_menu ul li:nth-of-type(1) {
        animation-delay: 0.2s !important;
    }

    .nav_bar .list_menu ul li:nth-of-type(2) {
        animation-delay: 0.3s !important;
    }

    .nav_bar .list_menu ul li:nth-of-type(3) {
        animation-delay: 0.4s !important;
    }

    .nav_bar .list_menu ul li:nth-of-type(4) {
        animation-delay: 0.5s !important;
    }

    .nav_bar .list_menu ul li:nth-of-type(5) {
        animation-delay: 0.6s !important;
    }

    .nav_bar .list_menu ul li:nth-of-type(6) {
        animation-delay: 0.7s !important;
    }

    .nav_bar .list_menu ul li:nth-of-type(7) {
        animation-delay: 0.8s !important;
    }

    .nav_bar .list_menu ul li:nth-of-type(8) {
        animation-delay: 0.9s !important;
    }

    .nav_bar .list_menu ul a {
        font-size: 20px;
        font-weight: 900;
        color: #fff !important;
    }

    .nav_bar .list_menu ul a.active,
    .nav_bar .list_menu ul a:hover {
        color: #8EC49C !important;
    }

    .nav_bar .list_menu.open {
        transform: translateY(0%);
        opacity: 1;
    }

    .nav_bar .list_menu.open ul li {
        animation: animate_links 1s ease-in-out forwards;
    }

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

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

    footer .info-box {
        margin-bottom: 50px;
    }

    .hero-section {
        padding: 70px 0;
    }

    .about-section .image-side {
        margin: 0 auto 140px;
    }

    .store-section .flex-between {
        flex-direction: column;
        gap: 20px;
    }

    .store-section .flex-between .main-info {
        text-align: center;
    }

    .store-section .flex-between .main-info .heading {
        margin: 0 auto 15px;
    }

    .store-section .list-control {
        justify-content: center;
    }

    .cart-page .shipping-information-section .address-form {
        padding-inline-end: 30px;
    }

    .cart-page .shipping-information-section .cart-card {
        position: unset;
    }

    .cart-page .payment-methods {
        padding-inline-end: 30px;
    }

    .auth_page .image-side {
        max-width: 690px;
        margin: 0 auto 50px;
        border-radius: 20px;
    }

    .auth_page .image-side .master-img img {
        width: 100%;
    }

    .auth_page .modal-form {
        padding: 0 15px;
        max-width: 720px;
        margin: auto;
        width: 100%;
    }

    .profile_page {
        padding-inline-start: 0;
        padding-inline-end: 0;
    }

    .profile_page>.row {
        max-width: 720px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .table.style-two tbody tr td {
        padding: 30px 0;
    }

    .banner-slider {
        flex-direction: column-reverse;
    }

    .banner-slider .slider.slider-nav,
    .banner-slider .slider.slider-for {
        flex: 100%;
        max-width: 100%;
    }

    .banner-slider .slider.slider-for {
        border-radius: 20px;
        padding-inline-start: 0;
    }

    .slider-nav .slick-slide.thumbnail-image {
        margin: 0 5px;
    }

    .slider-nav .slick-slide.thumbnail-image .thumbImg {
        margin-bottom: 0;
        margin-inline-start: 0;
    }

    .single-product-page .info-product-box {
        border-radius: 20px;
    }

    .nav_bar .notification-box {
        margin-inline-end: 0;
    }

    .nav_bar .notification-box .dropdown_list {
        left: -10px;
        transform: none;
        border-radius: 0 10px 10px 10px;
    }

    .nav_bar .notification-box .dropdown_list:after {
        left: 0;
        transform: none;
    }
}

@media (max-width: 767.98px) {
    .footer [class*=col-]:not(:last-of-type) {
        margin-bottom: 30px;
    }

    #cursor,
    #cursor-border {
        display: none;
    }

    .newsletter-section .content-section {
        padding: 20px;
    }

    .newsletter-section .p-relative.flex-h {
        flex-direction: column;
        gap: 20px;
    }

    .auth_page .image-side {
        max-width: 510px;
    }

    .auth_page .modal-form {
        max-width: 540px;
    }

    .profile_page>.row {
        max-width: 540px;
    }

    .profile_page .box-content#fav-content .flex-between,
    .profile_page .box-content#mydesigns-content .flex-between {
        flex-direction: column;
        align-items: start;
        gap: 30px;
    }

    .profile_page .box-content#fav-content .box-style,
    .profile_page .box-content#mydesigns-content .box-style {
        padding: 30px;
    }

    .profile_page .box-content .fav-box {
        align-items: start;
        flex-direction: column;
        gap: 25px;
    }

    .profile_page .box-content#orders-content .search-box {
        width: 100%;
    }

    .profile_page .box-content#orders-content .box-style {
        padding: 20px 15px;
    }

    .banner-slider .slider-banner-image {
        height: 350px;
    }

    .profile_page .mysales-content .chart-box-2 .flex-between {
        flex-direction: column;
        margin-top: 20px;
    }

    .profile_page .box-content.mywallet-content .box-style .sales-box {
        flex-direction: column;
        padding: 50px 30px;
    }
}

@media (max-width: 575.98px) {
    .nav_bar {
        padding: 10px 0;
    }

    .nav_bar .logo img {
        width: 70px;
    }

    body {
        font-size: 14px;
    }

    footer .footer-top {
        padding: 50px 0 60px;
    }

    #up_btn.fade {
        bottom: 100px;
    }

    footer {
        padding-bottom: 100px;
        padding-top: 50px;
    }

    .main-info .head {
        font-size: 2.25em;
    }

    .hero-section {
        padding: 60px 0;
    }

    .hero-section .image-side .animated-group img {
        max-width: 25px;
    }

    .hero-section .shape {
        top: -126px;
        right: -220px;
    }

    .counter-section {
        padding: 50px 15px;
    }

    .counter-section .box .counter {
        font-size: 1.625em;
    }

    .counter-section .box .icon {
        width: 60px;
        height: 60px;
    }

    .counter-section .box .icon img {
        max-width: 20px;
    }

    .about-section {
        padding: 50px 0;
    }

    .about-section .image-side::after {
        width: 350px;
        height: 350px;
        background-image: url(../img/shape-3.webp);
    }

    .about-section .image-side .mask-img img {
        width: 305px;
        height: 293px;
    }

    .about-section .image-side::before {
        width: 206px;
        top: -50px;
        height: calc(100% + 100px);
        background-repeat: repeat;
    }

    .about-section .image-side {
        margin: 0 auto 100px;
    }

    .about-section .shape {
        top: 41%;
        left: -200px;
    }

    .bails-section,
    .deductions-section,
    .store-section {
        padding: 50px 0;
    }

    .newsletter-section {
        margin-top: 70px;
    }

    .newsletter-section:after {
        height: 171%;
    }

    footer .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .auth_page .image-side {
        max-width: calc(100% - 30px);
    }

    .auth_page .modal-form {
        max-width: 100%;
    }

    .auth_page .modal-form .form-group {
        margin-bottom: 20px;
    }

    .auth_page .reset-password.mt-100 {
        margin-top: 50px !important;
    }

    .auth_page .veri_inputs .verify-input-field {
        height: 40px;
        width: 40px;
        font-size: 1.25em;
    }

    .cart-page .cart-content {
        padding: 30px 15px;
    }

    .cart-page .cart-content .table {
        border-spacing: 0 10px;
    }

    .cart-page .cart-content .table thead th {
        padding: 0px 10px;
    }

    .cart-page .cart-content .price-total-1 {
        margin-top: 20px !important;
    }

    .cart-page .cart-content .price-total-1 h4,
    .cart-page .cart-content .price-total-1 h5 {
        font-size: 1.1em;
        font-weight: 700;
        margin: 0;
    }

    .cart-page .cart-content .btns-cart-1 {
        flex-direction: column;
    }

    .cart-page .cart-content .btns-cart-1 .main-btn {
        width: 100%;
    }

    .cart-page .shipping-information-section .address-form {
        padding: 10px !important;
    }

    .cart-page .shipping-information-section .address-form .form-group {
        margin-bottom: 15px;
    }

    .cart-page .shipping-information-section .address-form .input-box {
        padding: 5px 30px;
    }

    .cart-page .shipping-information-section .cart-card {
        padding: 20px;
    }

    .cart-page .address-information-section .my-address-box {
        padding: 20px 20px 17px;
    }

    .cart-page .address-information-section .my-address-box .flex-h.mt-20.gap-15 {
        flex-direction: column;
        align-items: start;
    }

    .cart-page .address-information-section .my-address-box .flex-h.mt-20.gap-15 button {
        width: 100%;
    }

    .cart-page .address-information-section .add-new-address img {
        width: 50px;
    }

    .cart-page .payment-methods {
        padding: 0;
        padding-inline-end: 0;
    }

    .cart-page .payment-methods .item label {
        gap: 20px 7px;
        flex-wrap: wrap;
        width: 100%;
    }

    .cart-page .payment-methods .item .image {
        width: 100px;
        height: 70px;
        padding: 10px;
        flex: 1;
    }

    .cart-page .payment-methods .item .image img {
        width: 70px;
        max-height: 30px;
        object-fit: contain;
    }

    .cart-page .payment-methods .item .image i {
        font-size: 1.5em;
    }

    .cart-page .payment-methods .item .image span {
        font-size: 0.5625em;
    }

    .profile_page>.row {
        max-width: 100%;
    }

    .profile_page .profile-card .mb-100 {
        margin-bottom: 60px !important;
    }

    .profile_page .profile-card .mt-100 {
        margin-top: 60px !important;
    }

    .profile_page .box-content .heading h2 {
        font-size: 1.5em !important;
    }

    .profile_page .box-content .box-style {
        padding: 20px 10px;
        border-radius: 20px;
    }

    .profile_page .box-content .box-style .form-group {
        margin-bottom: 20px;
    }

    .profile_page .box-content .box-style .input-box .main-btn {
        min-width: auto;
    }

    .profile_page .box-content#fav-content .box-style {
        padding: 20px;
    }

    .profile_page .box-content#fav-content .box-style .meta {
        justify-content: start;
        flex-direction: row-reverse;
    }

    .profile_page .box-content#follow-content .box-style {
        padding: 10px;
    }

    .profile_page .box-content#follow-content .box-style .follow-product-box {
        padding: 10px;
    }

    .profile_page .box-content#follow-content .box-style .follow-product-box #progressbar {
        margin-bottom: 30px !important;
    }

    .profile_page .box-content#follow-content .box-style .follow-product-box #progressbar li:after {
        top: 20px;
    }

    .profile_page .box-content#follow-content .box-style .follow-product-box #progressbar li .icon {
        width: 40px;
        height: 40px;
        font-size: 1em;
    }

    .profile_page .box-content#follow-content .box-style .follow-product-box #progressbar strong {
        font-size: 9px;
    }

    .search-box .search-input .icon {
        width: 40px;
        height: 40px;
    }

    .search-box .submit-btn {
        width: 45px;
        height: 45px;
    }

    .table.style-one {
        border-spacing: 0 10px;
    }

    .profile_page .best-seller-section {
        margin-top: 50px !important;
    }

    .profile_page .box-content .sales-box {
        padding: 20px !important;
        gap: 15px;
    }

    .profile_page .box-content .sales-box span.bold {
        font-size: 2em !important;
    }

    .profile_page .box-content .sales-box .image {
        width: 40px;
        height: 40px;
        box-shadow: 0 0 0 8px rgba(144, 197, 159, 0.1) !important;
    }

    .profile_page .box-content .sales-box .image img {
        width: 22px;
    }

    .profile_page .box-content .sales-box .image i {
        font-size: 20px;
    }

    .profile_page .box-content .sales-box .main-btn {
        min-width: auto;
    }

    .profile_page .box-content.mywallet-content .box-style {
        padding: 20px;
    }

    .em-2 {
        font-size: 1.5em;
    }

    .fav-page .box-style {
        padding: 0 15px 10px;
    }

    #progressbar li:after {
        height: 2px;
        top: 25px;
    }

    #progressbar li .icon {
        width: 50px;
        height: 50px;
    }

    .banner-slider .slider-banner-image {
        height: 220px;
    }

    .profile_page .profile-row {
        gap: 15px;
    }

    .profile_page .profile-card {
        width: 50px;
        padding: 40px 0;
    }

    .profile_page .profile-card .personal-info {
        padding: 0 5px;
    }

    .profile_page .profile-card .tabs-li li>a {
        padding: 17px 15px;
    }

    .profile_page .profile-card .tabs-li li svg {
        width: 16px;
    }

    .profile_page .profile-card .tabs-li li.active:nth-child(2)~.current-link {
        transform: translateY(59px);
    }

    .profile_page .profile-card .tabs-li li.active:nth-child(3)~.current-link {
        transform: translateY(118px);
    }

    .profile_page .profile-card .tabs-li li.active:nth-child(4)~.current-link {
        transform: translateY(177px);
    }

    .profile_page .profile-card .tabs-li li.active:nth-child(5)~.current-link {
        transform: translateY(236px);
    }

    .profile_page .profile-card .tabs-li li.active:nth-child(6)~.current-link {
        transform: translateY(295px);
    }

    .profile_page .profile-card .tabs-li li.active:nth-child(7)~.current-link {
        transform: translateY(354px);
    }

    .profile_page .profile-card .tabs-li li.active:nth-child(8)~.current-link {
        transform: translateY(413px);
    }

    .profile_page .profile-card .tabs-li .current-link {
        height: 47px;
        top: 5px;
    }

    .nav_bar .notification-box .dropdown_list {
        min-width: 265px;
    }

    .nav_bar .notification-box .icon {
        font-size: 1.3em !important;
    }

    .cart-page .shipping-information-section .main-info .icon {
        display: none;
    }

    .cart-page .shipping-information-section .main-info>.flex-h.gap-10 {
        margin-right: 0;
    }

    .cart-page .shipping-information-section .payment-methods-bails {
        padding-inline-start: 0px;
    }

    .cart-page .shipping-information-section .payment-methods-bails .methods-bails {
        flex-direction: column;
    }

    .cart-page .shipping-information-section .payment-methods-bails .methods-bails .item {
        width: 100%;
    }

    .profile_page .box-content.mywallet-content .box-style .flex-sm-100 {
        flex: 100%;
    }

    .profile_page .profile-card .personal-info h6 {
        line-break: anywhere;
    }

    .gift-btn {
        bottom: 95px;
        top: auto;
        transform: none;
        left: 23px;
        right: auto;
    }

    .not-found {
        font-size: 1.3em;
    }

    .cart-page .shipping-information-section .cart-card .padding-right-30 {
        padding-inline-start: 0;
    }

    .input-box .img-name {
        display: none;
    }

    .footer_sochial {
        bottom: 170px;
        transform: none;
    }

    .single-product-page .info-product-box {
        padding: 30px 15px;
        padding-inline-start: 15px;
    }

    .navtop .icons .icon-with-notification svg {
        width: 25px;
        height: 25px;
    }

    .cart-page .shopping-cart-section .table .product-info {
        min-width: 210px;
    }

    .top-bar .flex-between.item {
        display: block;
    }

    .single-product-page .text-white {
        width: 100%;
    }

    .body-inner {
        padding: 180px 0 50px;
    }

    .title h3 {
        font-size: 23px;
        line-height: normal;
    }

    .showMore {
        font-size: 15px;
        color: var(--main-color);
        text-decoration: underline;
    }

    .showMore i {
        width: 25px;
        display: none;
        height: 25px;
    }

    .feadback-h {
        border-start-start-radius: 50px;
        padding: 50px 0;
    }

    .title-flex {
        flex-wrap: wrap;
    }

    footer .overlay-img {
        border-start-start-radius: 50px;
    }
}

@media (max-width: 991px) {
    .banner-h .imgs-banner {
        display: none;
    }

    .banner-h .text-banner h2 {
        font-size: 30px;
        line-height: 40px;
    }

    .items-banner.row {
        margin-top: 0;
    }

    .animation-h {
        padding: 180px 0 50px;
    }

    .banner-h {
        padding: 210px 0 50px;
    }

    .animation-h .shape-banner {
        width: 30px;
    }

    .items-banner .item-banner {
        margin: 15px 0;
    }

    .products-h {
        padding: 50px 0;
    }

    .sidebar-products {
        border-start-start-radius: 30px;
        border-end-end-radius: 30px;
        padding: 25px 0 10px;
        margin: 0 0 30px;
    }

    .sidebar-products .nav.nav-tabs .nav-item .nav-link {
        padding: 14px 30px;
        font-size: 15px;
    }

    .sidebar-products .nav.nav-tabs .nav-item .nav-link .icon {
        width: 16px;
    }

    .pro-block {
        border-start-start-radius: 35px;
        border-end-end-radius: 35px;
    }

    .about-h {
        padding: 50px 0;
    }

    .find-inner {
        display: block;
        border-start-start-radius: 55px;
        border-end-end-radius: 55px;
        padding: 30px;
    }

    .find-inner .overlay-img {
        border-start-start-radius: 55px;
        border-end-end-radius: 55px;
    }

    .find-inner .item {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .find-inner .item.img-find .img {
        max-width: 90%;
        margin: 0 auto 30px;
        top: 0;
    }

    .find-inner .item.img-find .img img {
        max-width: 100%;
    }

    .find-inner .text-find .text-inner h2 {
        font-size: 28px;
        line-height: 38px;
    }

    .find-inner .text-find .text-inner,
    .find-inner .text-find .text-inner p {
        font-size: 14px;
        line-height: 24px;
    }

    .find-h {
        padding: 40px 0;
    }

    .contact-blocks .contact-block {
        border-start-start-radius: 25px;
        border-end-end-radius: 25px;
        margin: 0 0 20px;
    }

    .form-contact {
        margin: 40px 0 0;
        border-start-start-radius: 35px;
        border-end-end-radius: 35px;
        padding: 40px 30px;
        margin-bottom: -170px;
    }

    .info-box.main-box {
        padding-inline-start: initial;
    }

    .row>* {
        width: 100%;
        max-width: 100%;
    }

    .text-contact {
        max-width: 100%;
    }

    .form-contact {
        max-width: 100%;
    }

    footer .overlay-img {
        border-start-start-radius: 80px;
    }

    footer {
        padding: 120px 0 0;
    }

    .about-h.about-page.body-inner,
    .products-h.body-inner {
        padding: 255px 0 50px;
    }

    .search-box .search-input.flex-h {
        width: 100%;
    }

    .products-h.body-inner .col-md-4 {
        max-width: 50%;
    }
}

@media (max-width: 767px){
    .products-h.body-inner .col-md-4 {
        max-width: 50%;
    }
}

/* ==================================================
 # End Responsive
================================================== */

/* sourceMappingURL=style.css.map */
