:root {
    --transition: all 0.3s ease-in-out;
    --transition-default: all 0.3s ease-in-out;

    --primary-color: #000000;
    --primary-rgb: 0, 0, 0;
    --primary-hover: #212125;

    --secondary-color: #C89263;
    --secondary-rgb: 200, 146, 99;
    --secondary-hover: #c28b51;

    --acction-color: #8b8b8b;

    --dark-color: #111827;
    --dark-blue-color: #1F2937;
    --red-color: #EF4444;
    --yellow-color: #EAB308;
    --light-color: #f4f4f4;
    --light-gray-color: #fafafa;
    --bs-gray-1000: #000;
    --heading-color: #4b2706;


    --gray-900: #111827;
    --gray-800: #27272A;
    --gray-600: #52525B;
    --gray-500: #71717A;
    --gray-400: #A1A1AA;
    --gray-300: #D4D4D8;
    --gray-200: #e2e2e5;
    --gray-100: #f1f1f1;

    --page-background: #f8f8fc;
    --shadow: 0px 6px 14px -6px rgba(24, 39, 75, 0.12), 0px 10px 32px -4px rgba(24, 39, 75, 0.1);
    --shadow-1: 0px 2px 4px rgba(97, 97, 97, 0.18), 0px 4px 8px rgba(97, 97, 97, 0.18);
    --shadow-2: 0px 6px 12px -6px rgba(24, 39, 75, 0.12), 0px 8px 24px -4px rgba(24, 39, 75, 0.08);
    --shadow-3: 0px 1px 2px rgba(97, 97, 97, 0.2), 0px 2px 4px rgba(97, 97, 97, 0.2);
    --size-heading: calc(24 / 14 * 1em);
    --size-heading-1: calc(22 / 14 * 1em);
    --size-heading-2: calc(18 / 14 * 1em);
    --size-description: 1.2em;
    --size-title: 1.2em;
    --size-subtitle: 1.1em;
    --size-default: 1em;
    --size-sub: .95em;
    --size-small: .9em;

    --font-theme: "Montserrat", sans-serif;
    --font-heading: "Montserrat", sans-serif;
    --text-color: var(--bs-gray-700);
}

@media screen and (max-width: 1399px) {
    :root {
        --size-heading: calc(22 / 14 * 1em);
        --size-heading-1: calc(20 / 14 * 1em);
    }
}

html {
    scroll-behavior: smooth !important;
    font-size: 16px;
}

body {
    font: 400 14px/1.4 var(--font-theme);
    overflow-x: hidden;
    position: relative;
    width: 100%;
    color: var(--text-color);
}

a, a:hover, a:focus {
    outline: none;
    text-decoration: none;
    cursor: pointer;
    -o-transition: var(--transition);
    transition: var(--transition);
    -webkit-transition: var(--transition);
}

button, button:hover, button:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    text-decoration: none;
    cursor: pointer;
    -o-transition: var(--transition);
    transition: var(--transition);
    -webkit-transition: var(--transition);
}

input,
select,
textarea {
    -o-transition: var(--transition);
    transition: var(--transition);
    -webkit-transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    outline: none !important;
    border-color: #8f8d8d !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
    -moz-appearance: textfield; /* Firefox */
}

.transition-default {
    -o-transition: var(--transition);
    transition: var(--transition);
    -webkit-transition: var(--transition);
}

.pseudo:before,
.pseudo:after {
    position: absolute;
    content: "";
    display: block;
}

.background-cover {
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.image-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.image-contain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.limit-lines {
    --lines: 3;
    --line-height: 1.5;
    --font-size: 1rem;
    --calc-max-height: calc(var(--line-height) * var(--lines) * var(--font-size) - 3);
    display: inline-block;
    display: -webkit-box;
    width: 100%;
    max-height: var(--calc-max-height);
    height: var(--calc-max-height);
    font-size: var(--font-size);
    line-height: var(--line-height);
    line-clamp: var(--lines);
    -webkit-line-clamp: var(--lines);
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.limit-line-2 {
    --lines: 2;
    --line-height: 1.5;
    --font-size: 0.95rem;
    --calc-max-height: calc(var(--line-height) * var(--lines) * var(--font-size) - 2);
    display: inline-block;
    display: -webkit-box;
    width: 100%;
    max-height: var(--calc-max-height);
    height: var(--calc-max-height);
    font-size: var(--font-size);
    line-height: var(--line-height);
    line-clamp: var(--lines);
    -webkit-line-clamp: var(--lines);
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.limit-line-3 {
    --lines: 3;
    --line-height: 1.5;
    --font-size: 0.95rem;
    --calc-max-height: calc(var(--line-height) * var(--lines) * var(--font-size) - 2);
    display: inline-block;
    display: -webkit-box;
    width: 100%;
    max-height: var(--calc-max-height);
    height: var(--calc-max-height);
    font-size: var(--font-size);
    line-height: var(--line-height);
    line-clamp: var(--lines);
    -webkit-line-clamp: var(--lines);
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}


.limit-line-4 {
    --lines: 4;
    --line-height: 1.5;
    --font-size: 0.95rem;
    --calc-max-height: calc(var(--line-height) * var(--lines) * var(--font-size) - 2);
    display: inline-block;
    display: -webkit-box;
    width: 100%;
    max-height: var(--calc-max-height);
    height: var(--calc-max-height);
    font-size: var(--font-size);
    line-height: var(--line-height);
    line-clamp: var(--lines);
    -webkit-line-clamp: var(--lines);
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.hidden-effect {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.hidden-effect:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.z-index-0 {
    z-index: 0;
}

.z-index-1 {
    z-index: 1;
}

.z-index-2 {
    z-index: 2;
}

.z-index-3 {
    z-index: 3;
}

.z-index-4 {
    z-index: 4;
}

.z-index-5 {
    z-index: 5;
}

.z-index-10 {
    z-index: 10;
}

.z-index-12 {
    z-index: 12;
}

.theme-toc {
    border: 1px solid #e9e9e9;
    background: #faf9fa;
    display: inline-flex;
    flex-direction: column;
    overflow: hidden;
    margin-bottom: 15px;
    min-width: 200px;
}

.theme-toc > .nav {
    padding: 0 0 8px;
    width: 100%;
}

.theme-toc .nav {
    display: inline-flex;
    flex-direction: column;
}

.theme-toc .nav > li > a {
    padding-top: 3px;
    padding-right: 15px;
    padding-bottom: 3px;
    display: block;
    color: var(--bs-gray-dark);
    font-size: .95rem;
}

.theme-toc .nav > li > a:hover,
.theme-toc .nav > li > a:active {
    color: var(--primary-color);
}

.theme-toc .nav > li > a.toc-link-1 {
    padding-left: 15px;
}

.theme-toc .nav > li > a.toc-link-2 {
    padding-left: 30px;
}

.theme-toc .nav > li > a:not(.toc-link-1):before {
    content: "-";
    margin-right: 9px;
}

.theme-toc .nav > li > a.toc-link-3 {
    padding-left: 45px;
}

.theme-toc .nav > li > a.toc-link-4 {
    padding-left: 60px;
}

.theme-toc .nav > li > a.toc-link-5 {
    padding-left: 75px;
}

.theme-toc .nav > li > a.toc-link-6 {
    padding-left: 90px;
}

.theme-toc .nav > li.toc-heading {
    background-color: #f5f5f5;
    border-bottom: 1px solid #dddddd;
    padding: 0;
    margin-bottom: 5px;
    width: 100%;
}

.theme-toc .nav > li.toc-heading > p {
    color: var(--bs-gray-dark);
    padding: 10px 0 12px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    display: block;
    margin-bottom: 0;
}

.theme-toc .nav > li.toc-heading > p > a {
    color: var(--primary-color);
    margin-left: 4px;
    font-size: .9rem;
}

.theme-toc .nav > li.toc-heading > p > a:hover,
.theme-toc .nav > li.toc-heading > p > a:active {
    color: var(--primary-hover);
}

.theme-toc .nav .nav {
    margin-bottom: 0;
}

@media screen and (max-width: 600px) {
    .theme-toc {
        width: 100%;
    }
}

.swal2-popup {
    font-size: 14px;
}

.swal2-popup .swal2-title {
    font-weight: 600;
    text-transform: capitalize;
    color: var(--primary-color);
}

.swal2-popup .swal2-html-container {
    color: var(--gray-500);
    font-size: var(--size-description);
}

.swal2-popup .swal2-confirm,
.swal2-popup .swal2-cancel,
.swal2-popup .swal2-deny {
    font-size: var(--size-default);
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 30px;
    border-radius: 0;
    transition: var(--transition);
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: .4px;
}

.swal2-popup .swal2-confirm {
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
    color: var(--bs-white);
}

.swal2-popup .swal2-confirm:hover {
    border: 1px solid var(--primary-hover);
    background: var(--primary-hover);
    color: var(--bs-white);
}

.swal2-popup .swal2-cancel,
.swal2-popup .swal2-deny {
    border: 1px solid var(--bs-white);
    background:var(--primary-color);
    color: var(--bs-white);
}

.swal2-popup .swal2-cancel:hover,
.swal2-popup .swal2-deny:hover {
    border: 1px solid var(--primary-hover);
    background: var(--primary-hover);
    color: var(--bs-white);
}

.ratio > img {
    -o-object-fit: cover;
    object-fit: cover;
}

.ratio-2x1 {
    --bs-aspect-ratio: 50%;
}

.ratio-3x2 {
    --bs-aspect-ratio: calc(2 / 3 * 100%);
}

.ratio-3x2 {
    --bs-aspect-ratio: calc(2 / 3 * 100%);
}

.round-20 {
    border-radius: 20px;
}

.was-validated .form-control:valid,
.was-validated .form-select:valid {
    background-image: none !important;
    border: 1px solid #ced4da !important;
}

.fit-cover {
    object-fit: cover;
}

.fit-contain {
    object-fit: contain;
}
.object-fit-cover {
    -o-object-fit: cover;
    object-fit: cover;
}

.object-fit-contain {
    -o-object-fit: contain;
    object-fit: contain;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}
.bg-gray{
    background-color: #524f4f;
}

.overflow-x-auto {
    overflow-x: auto;
}

.overflow-x-auto::-webkit-scrollbar {
    display: none !important;
}

.bg-gray-100 {
    background-color: #F5F5F3;
}

.section-gap {
    padding: 50px 0;
}
.section-gap-100 {
    padding: 100px 0;
}

.section-heading {
    margin-bottom: 30px;
}

.section-heading .heading-title {
    font-weight: 600;
    font-size: 2.4em;
    color: var(--primary-color);
}

.section-heading .heading-subtitle {
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #8b8b8b;
    font-size: 1em;
    font-weight: 500;
    margin-bottom: 3px;
}

.section-heading .heading-desc {
    font-size: 1.2em;
}
.section-heading .heading-desc strong,
.section-heading .heading-desc b{
    font-weight: 600;
}
.heading-title__big {
    font-weight: 800;
    display: inline-block;
    margin: 0;
    font-size: 100px;
    background-color: var(--primary-color);
    background-image: url(
    '../../../../public/upload/theme/bg-service.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    background-attachment: fixed;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}

.arrow-theme {
    padding: 0 !important;
    margin-left: 7px;
    font-size: 15px;
    color: #171717;
    background-color: transparent !important;
    border: 1px solid transparent;
    box-shadow: none;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    position: relative;
    transition: color .2s ease-out, background-color .2s ease-out, border-color .2s ease-out;
}

.arrow-theme .arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .5s cubic-bezier(.77, 0, .175, 1);
}

.arrow-theme .arrow.arrow1 {
    left: 20%;
}

.arrow-theme .arrow.arrow2 {
    opacity: 0;
    left: -80%;
}

.arrow-theme .arrow svg path {
    fill: currentColor;
}

.arrow-theme .svg-dark {
    position: absolute;
    top: 0;
    left: 0;
}

.arrow-theme .svg-dark circle {
    stroke-dasharray: 160;
    stroke-dashoffset: 160;
    stroke: var(--primary-color);
    transition: stroke-dashoffset .8s cubic-bezier(.77, 0, .175, 1);
}

.arrow-theme:hover {
    color: var(--primary-color);
    background-color: transparent !important;
}

.arrow-theme:hover .arrow.arrow1 {
    left: 80%;
    opacity: 0;
}

.arrow-theme:hover .arrow.arrow2 {
    left: 20%;
    opacity: 1;
}

.arrow-theme:hover .svg-dark circle {
    stroke-dashoffset: 0;
}

.arrow-link {
    color: var(--primary-color);
    background-color: transparent;
    border: 1px solid #d2d2d2;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 0;
    outline: 0;
    width: max-content;
    transition: color .2s ease-out, background-color .2s ease-out, border-color .2s ease-out;
    padding: 15px 30px;
    font-weight: 500;
}

.arrow-link .line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: inline-flex;
}

.arrow-link .line-top:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    height: 1px;
    width: 100%;
    background: currentColor;
    transform-origin: right;
    transform: scaleX(0) translateZ(0);
    transition: transform .15s linear .7s;
}

.arrow-link .line-top:after {
    content: "";
    position: absolute;
    top: 0;
    left: -1px;
    height: 100%;
    width: 1px;
    background: currentColor;
    transform-origin: top;
    transform: scaleY(0) translateZ(0);
    transition: transform .1s linear .6s;
}

.arrow-link .line-bottom:before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    height: 1px;
    width: 100%;
    background: currentColor;
    transform-origin: left;
    transform: scaleX(0) translateZ(0);
    transition: transform .2s linear .4s
}

.arrow-link .line-bottom:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: -1px;
    height: 100%;
    width: 1px;
    background: currentColor;
    transform-origin: bottom;
    transform: scaleY(0) translateZ(0);
    transition: transform .4s cubic-bezier(.895, .03, .685, .22) 0s
}
.arrow-link.arrow-link__white .line-top:before,
.arrow-link.arrow-link__white .line-top:after,
.arrow-link.arrow-link__white .line-bottom:before,
.arrow-link.arrow-link__white .line-bottom:after{
    background: var(--bs-white);
}

.arrow-link .arrow .arrow1 {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateX(-20px) translateY(0);
}

.arrow-link .arrow .arrow2 {
    opacity: 1;
    display: block;
    transform: translateY(0);
}

.arrow-link .arrow .arrow1,
.arrow-link .arrow .arrow2 {
    transition: transform .6s cubic-bezier(.77, 0, .175, 1), opacity .6s cubic-bezier(.77, 0, .175, 1);
}

.arrow-link:hover {
    color: var(--primary-color);
}

.arrow-link:hover .line-top:before {
    transform: scaleX(1) translateZ(0);
    transition: transform .4s cubic-bezier(.895, .03, .685, .22) 0s
}

.arrow-link:hover .line-top:after {
    transform: scaleY(1) translateZ(0)
}

.arrow-link:hover .line-bottom:after {
    transition: transform .4s cubic-bezier(.895, .03, .685, .22) 0s;
    transform: scaleY(1) translateZ(0)
}

.arrow-link:hover .line-bottom:before {
    transform: scaleX(1) translateZ(0)
}

.arrow-link:hover .arrow1 {
    opacity: 1;
    transform: translateZ(0);
}

.arrow-link:hover .arrow2 {
    opacity: 0;
    transform: translateX(30px) translateY(0);
}

.tooltip .tooltip-inner {
    background-color: #eaeaea !important;
    color: var(--bs-gray-800);
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 3px;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tooltip.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: #eaeaea !important;
}

.tooltip.bs-tooltip-bottom .tooltip-arrow::before {
    border-bottom-color: #eaeaea !important;
}

.tooltip.bs-tooltip-left .tooltip-arrow::before {
    border-left-color: #eaeaea !important;
}

.tooltip.bs-tooltip-right .tooltip-arrow::before {
    border-right-color: #eaeaea !important;
}

main.page-other {
    margin-top: 75px;
}

.link-theme {
    color: var(--bs-white);
    font-weight: 500;
    font-size: 1.2em;
    text-transform: capitalize;
    transition: var(--transition-default);
    padding-left: 32px;
    white-space: nowrap;
}

.link-theme:hover {
    color: var(--bs-white);
}

.link-theme__arrow {
    position: absolute;
    width: 60px;
    height: 60px;
    left:-20px;
    top: calc(50% - 30px);
    transform: rotate(90deg);
    pointer-events: none;
    white-space: nowrap;
}

.link-theme__arrow span {
    position: absolute;
    width: 20%;
    left: 40%;
    top: 5%;
    height: 3px;
    opacity: 0;
    transform: scale(.3);
    animation: Move-Arrow 2s ease-out infinite
}

.link-theme__arrow span:before {
    left: 0;
    transform: skewY(45deg)
}

.link-theme__arrow span:after {
    right: 0;
    transform: skewY(-45deg)
}

.link-theme__arrow span:after,
.link-theme__arrow span:before {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 50%;
    background-color: #fff;
}

.link-theme__arrow span:nth-child(2) {
    animation-name: Move-Arrow;
    animation-duration: 2s;
    animation-delay: .8s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite
}

.link-theme__arrow span:first-child {
    animation-name: Move-Arrow;
    animation-duration: 2s;
    animation-delay: 0s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite
}

@keyframes Move-Arrow {
    25% {
        opacity: 1
    }

    33.3% {
        opacity: 1;
        transform: translateY(7px)
    }

    66.6% {
        opacity: 1;
        transform: translateY(14px)
    }

    100% {
        opacity: 0;
        transform: translateY(21px) scale(.7)
    }
}

.swiper-button{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    top: calc(50% - 40px);
    background-color: #616364;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .2);
    position: absolute;
    border: 1px solid transparent;
    z-index: 3;

}
.swiper-button:hover{
    background-color: var(--primary-color);
}
.swiper-button svg{
    width: 25px;
    height: 25px;
}
.swiper-button svg path{
    fill: var(--bs-white);
}
.swiper-button.button-prev{
    left: -40px;
    transform: scaleX(-1);

}
.swiper-button.button-prev svg{
    margin-left: -32px;
}
.swiper-button.button-next{
    right: -40px;

}
.swiper-button.button-next svg{
    margin-right: 32px;
}
.invalid-feedback {
    font-size: .95em;
    color: #060505;
    padding-left: 5px;
}
.section-scroll{
    scroll-margin-top: 100px;
}
.swiper-pagination .swiper-pagination-bullet{
    background-color: var(--primary-color);
    position: relative;
    display: flex;
    width: 9px;
    height: 9px;
    transition: all 0.3s ease-in;

}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after{
    position: absolute;
    content: '';
    top:-5px;
    left:-5px;
    right:-5px;
    bottom:-5px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border:1px solid var(--primary-color);
    background-color: transparent;
    transform: scale(1);
}
@media (max-width: 1200px) {
    .heading-title__big {
        font-size: 80px;
    }
}

@media (max-width: 992px) {
    .heading-title__big {
        font-size: 60px;
    }

    .section-heading .heading-title {
        font-size: 2.2em
    }

    .section-heading .heading-desc {
        font-size: 1.1em;
    }
    .arrow-link{
        padding: 12px 25px;
    }
}

@media (max-width: 600px) {
    .heading-title__big {
        font-size: 40px;
    }

    .section-heading .heading-title {
        font-size: 2em
    }
    #swiperRelatedBlogs .swiper-button.button-prev,
    #swiperRelatedBlogs .swiper-button.button-next{
        display: none !important;
    }
}
