
@font-face {
    font-family: yekan;
    src: url(../../../Assets/fonts/yekan/YekanRegular.ttf);
    font-weight: 500;
}

@font-face {
    font-family: byekan;
    src: url(../../../Assets/fonts/yekan/BYEKAN.TTF);
    font-weight: 500;
}

.hero_title {
    font-size: 32pt;
    font-family: byekan !important;
}

.title {
    font-size: 24pt;
    font-family: byekan !important;
}

.text_lg {
    font-size: 18pt;
}

.text_md {
    font-size: 14pt;
}

.paraghrap {
    font-size: 12pt;
}

.text_sm {
    font-size: 11pt;
}

.text_xs {
    font-size: 10.5pt;
}

.text_justify {
    text-align: justify;
}

.text_center {
    text-align: center;
}

.text_bold {
    font-weight: bold;
}

.text_underline {
    text-decoration: underline;
}

@media (max-width: 1200px) {
    .title {
        font-size: 19pt;
    }

    .text_lg {
        font-size: 15pt;
    }

    .text_md {
        font-size: 13pt;
    }

    .paraghrap {
        font-size: 12pt;
    }

    .hero_title {
        font-size: 23pt;
    }
}

body {
    direction: rtl;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

* {
    font-family: yekan !important;
    box-sizing: border-box;
    transition-duration: 0.1s;
    transition-timing-function: linear;
    margin: 0;
}

a {
    all: unset;
    cursor: pointer;
    display: inline-block;
}

p {
    line-height: 2;
}

ul {
    list-style-type: none;
    padding: 0;
    line-height: 2;
}

button {
    border: none;
    cursor: pointer;
    border-radius: 6px;
    display: block;
}

textarea {
    width: 100%;
}

    input:focus,
    input:focus-visible,
    textarea:focus-visible {
        outline: none;
        box-shadow: none;
    }

.pointer {
    cursor: pointer;
}

.hidden {
    overflow: hidden;
}

.flex {
    display: flex;
}

.flex_column {
    flex-direction: column;
}

.align_start {
    align-items: start;
}

.justify_evenly {
    justify-content: space-evenly;
}

.align_end {
    align-items: flex-end;
}

.align_center {
    align-items: center;
}

.justify_end {
    justify-content: flex-end;
}

.justify_between {
    justify-content: space-between;
}

.justify_around {
    justify-content: space-around;
}

.justify_center {
    justify-content: center;
}

.flex_wrap {
    flex-wrap: wrap;
}

.align_baseline {
    align-items: baseline;
}

.boxShadow {
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
}

.mx_sm {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.m_md {
    margin: 2rem;
}

.my_sm {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.my_md {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.py_sm {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py_md {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py_lg {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.p_0 {
    padding: 0 !important;
}

.px_lg {
    padding-left: 2rem;
    padding-right: 2rem;
}

.py_xs {
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
}

.mx_lg {
    margin-left: 3rem;
    margin-right: 3rem;
}

.mr_auto {
    margin-right: auto;
}

.section_space {
    margin-top: 9rem;
    margin-bottom: 9rem;
}

.mx_md {
    margin-left: 1rem;
    margin-right: 1rem;
}

.p_md {
    padding: 1rem;
}

.p_sm {
    padding: 0.5rem;
}

.p_lg {
    padding: 2rem;
}

.container {
    padding-left: 8%;
    padding-right: 8%;
}

@media (max-width: 1400px) {
    .container {
        padding-left: 4%;
        padding-right: 4%;
    }
}

@media (max-width: 900px) {
    .mx_md {
        margin-left: 0.8rem;
        margin-right: 0.8rem;
    }

    .section_space {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

    .mx_lg {
        margin-left: 1.5rem;
        margin-right: 1.5rem;
    }

    .p_lg {
        padding: 1.5rem;
    }
}

.relative {
    position: relative;
}

.w_fit {
    width: -moz-fit-content;
    width: fit-content;
    min-width: -moz-fit-content !important;
    min-width: fit-content !important;
}

.radius {
    border-radius: 16px;
}

.contact_info {
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
    position: relative;
}

    .contact_info .information {
        padding-top: 1rem;
        gap: 50px;
    }

        .contact_info .information > div {
            max-width: 32%;
        }

    .contact_info .mobile_menu,
    .contact_info .information_mobile {
        display: none;
    }

@media (max-width: 1200px) {
    .contact_info .information {
        gap: 10px;
    }

        .contact_info .information > div {
            max-width: 33%;
        }
}

@media (max-width: 900px) {
    .contact_info {
        align-items: center;
    }

        .contact_info img {
            height: 40px;
        }

        .contact_info .information {
            display: none !important;
        }

        .contact_info .information_mobile {
            display: flex;
            color: #099d8b;
        }
}

.contact_info .icon {
    position: relative;
    cursor: pointer;
    display: flex;
}

    .contact_info .icon svg {
        transition: 0.3s ease;
    }

    .contact_info .icon:hover .tooltip {
        display: block;
    }

.contact_info .tooltip {
    padding: 10px;
    position: absolute;
    width: 50vw;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    background-color: #ffffff;
    top: 40px;
    left: 50%;
    transform: translate(-10%);
    transform-style: preserve-3d;
    z-index: 300;
    font-size: 0.9em;
    display: none;
}

    .contact_info .tooltip:after {
        content: "";
        position: absolute;
        display: block;
        width: 10px;
        height: 10px;
        transform: rotate(45deg) translateX(-50%);
        background-color: #ffffff;
        left: 18px;
        top: -1px;
        z-index: 400;
    }

    .contact_info .tooltip:before {
        content: "";
        display: block;
        position: absolute;
        width: 10px;
        height: 10px;
        transform: rotate(45deg) translateX(-50%) translateZ(-1px);
        background-color: #ffffff;
        left: 18px;
        top: 0px;
        z-index: -1;
        box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
    }

header {
    position: sticky;
    top: 0;
    z-index: 9;
}

    header .nav {
        background-color: #099d8b;
        box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
        color: #ffffff;
    }

        header .nav ul {
            gap: 40px;
        }

        header .nav .mobile_menu {
            display: none;
        }

@media (max-width: 1020px) {
    header .nav .desktop_menu {
        display: none !important;
    }

    header .nav .mobile_menu {
        display: block;
    }
}

header nav {
    position: sticky;
}

header .options {
    z-index: -1;
    gap: 1rem;
}

header a:hover,
header .active {
    color: #ff8f00;
}

header .menuItem {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 400;
    width: 300px;
    height: 100vh;
    padding: 4rem 1.5rem;
    background: #ffffff;
    color: #231f20;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    transform-origin: 0% 0%;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}

    header .menuItem .user_info {
        border-bottom: 1px solid rgba(9, 157, 139, 0.0588235294);
    }

    header .menuItem svg {
        color: #666666;
    }

    header .menuItem .active_menu,
    header .menuItem li:hover {
        background-color: rgba(9, 157, 139, 0.0588235294);
        border-radius: 16px 0 0 16px;
        border-right: 2px solid #87c7c6;
    }

        header .menuItem .active_menu a,
        header .menuItem .active_menu svg,
        header .menuItem li:hover a,
        header .menuItem li:hover svg {
            color: #099d8b !important;
        }

header .closeMenu {
    position: fixed;
    top: 1rem;
    left: 1rem;
}

header .menuToggle {
    display: block;
    z-index: 1;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

    header .menuToggle input {
        display: block;
        width: 40px;
        height: 32px;
        position: absolute;
        top: -7px;
        cursor: pointer;
        opacity: 0; /* hide this */
        z-index: 2; /* and place it over the hamburger */
        -webkit-touch-callout: none;
    }

    header .menuToggle input {
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
    }

        header .menuToggle input:checked ~ .menuItem {
            transform: translate(0);
        }

        header .menuToggle input:checked {
            width: 300px;
            height: 54px;
            z-index: 900;
            position: fixed;
        }

header .menu--right {
    position: sticky;
    top: 1rem;
    display: none;
}

@media (max-width: 1020px) {
    header .menu--right {
        display: block;
    }
}

header .menu--right .menuItem {
    right: 0;
    transform: translate(110%, 0);
}

    header .menu--right .menuItem li {
        padding: 0.5rem 0;
        margin: 0.5rem 0;
    }

        header .menu--right .menuItem li a:hover {
            padding-left: 5px;
        }

@keyframes text-slide-in {
    0% {
        transform: translateX(100px);
    }

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

header #searchbox {
    width: 0;
    opacity: 0;
    transition-duration: 0.4s;
    transition-timing-function: linear;
}

header .searchShow {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    opacity: 0;
    cursor: pointer;
}

    header .searchShow:checked ~ #searchbox {
        width: 100%;
        opacity: 1;
        padding: 0.5rem;
    }

header input::-moz-placeholder {
    text-align: right;
}

header input,
header input::placeholder {
    text-align: right;
}

.secondary_btn_outline {
    background-color: transparent;
    border: 3px solid #ff8f00;
    color: #ffffff;
    border-radius: 6px;
    text-align: center;
    min-width: 160px;
    transition-duration: 0.2s;
    transition-timing-function: linear;
}

    .secondary_btn_outline:hover {
        background-color: #ff8f00;
    }

.main_btn,
.secondary_btn {
    border-radius: 6px;
    color: #ffffff;
    min-width: 150px;
    text-align: center;
    display: flex;
    width: -moz-fit-content;
    width: fit-content;
    justify-content: center;
    transition: all 100ms linear;
    position: relative;
}

    .main_btn:active,
    .secondary_btn:active {
        box-shadow: inset 0 0 0 4px rgba(4, 59, 63, 0.4196078431);
    }

    .main_btn::before,
    .secondary_btn::before {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        border-radius: inherit;
        z-index: -1;
        top: 0;
        left: 0;
        transition: all 500ms ease-in-out;
        opacity: 0;
        animation: flash 100ms ease-in-out;
        transform: scaleX(1.4) scaleY(1.8);
    }

    .main_btn:hover::before,
    .secondary_btn:hover::before {
        opacity: 1;
        transform: scaleX(1.1) scaleY(1.3);
    }

@keyframes flash {
    0% {
        opacity: 1;
        transform: translate(45px);
    }

    100% {
        opacity: 0;
        transform: translate(0);
    }
}

.secondary_btn {
    background-color: #ff8f00;
}

    .secondary_btn::before {
        content: "";
        background-color: rgba(255, 143, 0, 0.1294117647);
    }

.main_btn {
    background-color: #099d8b;
}

    .main_btn::before {
        content: "";
        background-color: rgba(9, 157, 139, 0.0588235294);
    }

.spliter span {
    display: block;
    width: 42%;
    height: 2px;
    background-color: #099d8b;
    position: relative;
}

    .spliter span:first-child::before, .spliter span:last-child::before {
        content: "";
        width: 50px;
        height: 30px;
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEMAAAAgCAMAAAB+dDW1AAAARVBMVEUAAAAIm4cJnosJnYsJnYsInIoJnYwIm4oQn4AGmokInYoKnIsJnosJnIoInIoQn48InIsHnYwInYsJnYoJnYsLnowJnYu2fX2yAAAAFnRSTlMAIL/fn4DvQBAwYFDPkHAQv6/fsI9fbcOeRgAAAZJJREFUSMeVlN12hCAMhIUAgqBdd9t5/0et0boBWdTOhcePY8b8GLtP8pNJRPo7rmBftIBhaChYVZ1p/ImGEhoivI5HXxzxdGDpsFzc87m5yOsO7xyPRz1guIjhwfF/EOcTk9B98LDbXSQgg7ZJy4OlCCXomx4BUp/iWnLoL4Klp+kNA0BviHcS8WEY+pAA6dICfT71i45EjV3mfWgBncN02sqETDHLHz/F2NuaONLNo7Uz8d1ejSrg1MMCSHvhA7tM4pHDq6slGY+CKq0L4rf0sYLaYGyOkwBbHCSwkk4Ou0iT4+suW6WR6sW7Uh0Rqv5caKxb6kLJcGNUned5rdCrpdmnc9HIOqKYZi9zETjz+OIwMjGoMGnk2yrQ8Gh1QHLqcwgXHp0yYkGyuAeYrtY2WmPMlIBBGlXA7R+Ig5PkUALd/o893kAHGO44lEvBLTIZUPdfDz8DAjxydctBBugt71sBdSVaBnVcnpcxmoNc3CBhhU/PmsZ3v+uhSqg1zepzMY+1iOfYL6AE/imvlC+hrV9iWStOI1QfcwAAAABJRU5ErkJggg==);
        position: absolute;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .spliter span:first-child::before {
        left: -1.3rem;
        top: -11px;
    }

    .spliter span:last-child::before {
        content: "";
        right: -1.3rem;
        top: -17.52px;
        transform: rotate(180deg);
    }

.spliter p {
    width: -moz-fit-content;
    width: fit-content;
    font-weight: bold;
    margin: 0 3rem;
    text-wrap: nowrap;
    display: block ruby;
    flex: 1 0 auto;
}

.main_back_light {
    background-color: rgba(9, 157, 139, 0.0588235294);
}

.secondary_back_light {
    background-color: rgba(255, 143, 0, 0.1294117647);
}

.box_image img {
    max-width: 32vw;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: all 0.3s linear;
    transition: all 0.3s linear;
}

    .box_image img:hover {
        transform: rotate3d(0.1, 0.1, 0.1, 0.8deg);
    }

.box_image::before {
    content: "";
    background-image: url("data:image/png;base64,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");
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    width: 170px;
    height: 170px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.95;
    z-index: 2;
    transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.box_image:hover::before {
    transform: scale(1.1);
}

@media (max-width: 900px) {
    .box_image::before {
        left: 3rem;
        width: 20%;
        height: 38%;
    }

    .box_image img {
        max-width: 75%;
        margin: auto;
        -o-object-fit: contain;
        object-fit: contain;
        display: block;
        height: auto;
    }

    .box_image .title {
        margin-top: 1rem;
    }
}

.box .box_image {
    transform: translateY(-4rem);
}

@media (max-width: 900px) {
    .box {
        flex-direction: column;
    }

        .box .box_image {
            transform: unset;
        }
}

@media (max-width: 765px) {
    .box > div {
        margin: 0;
    }
}

.blob_top_right::before {
    right: -5rem;
    top: -3rem;
}

.blob_bottom_left::before {
    left: -5rem;
    bottom: -3rem;
}

@media (max-width: 765px) {
    .blob_bottom_left::before {
        left: 0rem;
        bottom: -1rem;
    }
}

.main_list {
    list-style-type: circle;
    list-style-position: inside;
}

    .main_list li::marker {
        color: #099d8b;
    }

footer .items {
    background-image: url(../../../Assets/images/footer_bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    color: #ffffff;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

    footer .items::before {
        content: "";
        background: rgba(15, 80, 72, 0.7882352941);
        width: 100%;
        height: 100%;
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        top: 0;
    }

    footer .items .contact_us svg {
        border: 1px dashed #ffffff;
        border-radius: 50%;
        padding: 0.3rem;
        width: 40px;
        height: 40px;
        margin: 0 0.5rem;
    }

    footer .items .contact_us p {
        width: 78%;
    }

    footer .items .last_blogs h4 {
        color: #ff8f00;
        text-align: right;
    }

    footer .items .last_blogs img {
        width: 90px;
        height: 80px;
        border-radius: 16px;
        object-fit: cover;
    }

    footer .items .last_blogs p {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        text-overflow: ellipsis;
        overflow-wrap: anywhere;
    }

    footer .items .newsletter_member {
        border-radius: 40px;
        width: 100%;
        max-width: 280px;
        margin: auto;
        margin-bottom: 2rem;
        color: #ffffff;
        background-color: #ff8f00;
    }

        footer .items .newsletter_member button {
            background-color: #ffffff;
            padding: 0.5rem;
            width: 50px !important;
            height: 50px;
            border-radius: 50%;
        }

        footer .items .newsletter_member input {
            border: none;
            padding: 0.5rem 1rem;
            background-color: transparent;
            width: 80%;
            color: #ffffff;
        }

            footer .items .newsletter_member input::-moz-placeholder {
                color: #ffffff;
            }

            footer .items .newsletter_member input::placeholder {
                color: #ffffff;
            }

            footer .items .newsletter_member input:focus, footer .items .newsletter_member input:focus-visible {
                outline: unset;
            }

    footer .items .socials a {
        border: 1px solid #ffffff;
        border-radius: 50%;
        padding: 0.5rem;
    }

        footer .items .socials a svg {
            width: 20px;
            height: 20px;
        }

        footer .items .socials a:hover {
            border-color: #ff8f00;
        }

    footer .items > div {
        max-width: 24%;
    }

@media (max-width: 900px) {
    footer .items > div {
        max-width: 48% !important;
    }
}

@media (max-width: 580px) {
    footer .items > div {
        text-align: center;
        width: 100%;
        max-width: 100% !important;
    }
}

footer .copyRight {
    background-color: #099d8b;
}

    footer .copyRight ul {
        gap: 30px;
    }

@media (max-width: 900px) {
    footer .copyRight {
        flex-direction: column-reverse;
    }

        footer .copyRight ul {
            margin-bottom: 0.5rem;
        }
}

footer h5 {
    border-bottom: 2px solid #ff8f00;
}

@media (max-width: 580px) {
    footer h5 {
        text-align: center;
        width: 100% !important;
    }

    footer > div {
        justify-content: center !important;
    }

    footer .contact_us p {
        text-align: right;
        width: 80% !important;
    }

    footer .last_blogs > div {
        justify-content: center;
    }
}
.blogs > a {
    width: 31%;
    border-radius: 16px 16px;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    margin: 0.5rem 0;
}

    .blogs > a img {
        width: 100%;
        height: 16vw;
        -o-object-fit: cover;
        object-fit: cover;
        transition: all 0.4s linear;
        transition: all 0.4s linear;
    }

    .blogs > a p {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .blogs > a:hover img {
        filter: brightness(0.6);
        transform: scale(1.15);
    }

.blogs .date {
    position: absolute;
    bottom: -0.6rem;
    right: 2rem;
    background-color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
}

@media (max-width: 900px) {
    .blogs > a {
        width: 48%;
    }

        .blogs > a img {
            height: 200px;
        }
}

@media (max-width: 580px) {
    .blogs > a {
        width: 100%;
    }
}

.page_title {
    width: 100%;
    color: #ffffff;
    min-height: 300px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

    .page_title p {
        background-color: #ff8f00;
        padding: 0.5rem 2rem;
        margin-top: 1.5rem;
        border-radius: 20px 20px 0 0;
    }

@media (max-width: 900px) {
    .page_title {
        min-height: 20vh;
    }
}

.page_title::before {
    content: "";
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.32) 1.74%, rgba(0, 0, 0, 0.42) 50.94%, rgba(0, 0, 0, 0.29) 101.72%);
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    top: 0;
}

.h_inherit {
    height: inherit;
}

.input,
textarea {
    border: 1px solid #7ab4d5;
    border-radius: 16px;
    background-color: #ffffff;
}

    .input input,
    textarea input {
        border: none;
        width: 100%;
    }

input,
textarea {
    font-size: 13pt;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
}

    input::-moz-placeholder, textarea::-moz-placeholder {
        color: #7ab4d5;
    }

    input::placeholder,
    textarea::placeholder {
        color: #7ab4d5;
    }

.w_half {
    width: 49%;
}

/**
 * Swiper 8.4.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: January 30, 2023
 */
@font-face {
    font-family: swiper-icons;
    src: url("data:application/font-woff;charset=utf-8;base64, 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");
    font-weight: 400;
    font-style: normal;
}

:root {
    --swiper-theme-color: #007aff;
}

.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
    flex-direction: column;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
    transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
    touch-action: pan-y;
}

    .swiper-pointer-events.swiper-vertical {
        touch-action: pan-x;
    }

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
}

.swiper-slide-invisible-blank {
    visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
    height: auto;
}

    .swiper-autoheight .swiper-wrapper {
        align-items: flex-start;
        transition-property: transform, height;
    }

.swiper-backface-hidden .swiper-slide {
    transform: translateZ(0);
    backface-visibility: hidden;
}

.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 1200px;
}

    .swiper-3d .swiper-cube-shadow,
    .swiper-3d .swiper-slide,
    .swiper-3d .swiper-slide-shadow,
    .swiper-3d .swiper-slide-shadow-bottom,
    .swiper-3d .swiper-slide-shadow-left,
    .swiper-3d .swiper-slide-shadow-right,
    .swiper-3d .swiper-slide-shadow-top,
    .swiper-3d .swiper-wrapper {
        transform-style: preserve-3d;
    }

    .swiper-3d .swiper-slide-shadow,
    .swiper-3d .swiper-slide-shadow-bottom,
    .swiper-3d .swiper-slide-shadow-left,
    .swiper-3d .swiper-slide-shadow-right,
    .swiper-3d .swiper-slide-shadow-top {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 10;
    }

    .swiper-3d .swiper-slide-shadow {
        background: rgba(0, 0, 0, 0.15);
    }

    .swiper-3d .swiper-slide-shadow-left {
        background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    }

    .swiper-3d .swiper-slide-shadow-right {
        background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    }

    .swiper-3d .swiper-slide-shadow-top {
        background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    }

    .swiper-3d .swiper-slide-shadow-bottom {
        background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    }

.swiper-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

    .swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
        display: none;
    }

    .swiper-css-mode > .swiper-wrapper > .swiper-slide {
        scroll-snap-align: start start;
    }

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
    scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
    scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
    content: "";
    flex-shrink: 0;
    order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
    margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
    height: 100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
    margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
    width: 100%;
    min-width: 1px;
    height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: center center;
    scroll-snap-stop: always;
}

.swiper-virtual .swiper-slide {
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
    height: 1px;
    width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
    width: 1px;
    height: var(--swiper-virtual-size);
}

:root {
    --swiper-navigation-size: 44px;
}

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50%;
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - var(--swiper-navigation-size) / 2);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

    .swiper-button-next.swiper-button-disabled,
    .swiper-button-prev.swiper-button-disabled {
        opacity: 0.35;
        cursor: auto;
        pointer-events: none;
    }

    .swiper-button-next.swiper-button-hidden,
    .swiper-button-prev.swiper-button-hidden {
        opacity: 0;
        cursor: auto;
        pointer-events: none;
    }

.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
    display: none !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: 10px;
    right: auto;
}

    .swiper-button-prev:after,
    .swiper-rtl .swiper-button-next:after {
        content: "prev";
    }

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: 10px;
    left: auto;
}

    .swiper-button-next:after,
    .swiper-rtl .swiper-button-prev:after {
        content: "next";
    }

.swiper-button-lock {
    display: none;
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: 0.3s opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10;
}

    .swiper-pagination.swiper-pagination-hidden {
        opacity: 0;
    }

    .swiper-pagination-disabled > .swiper-pagination,
    .swiper-pagination.swiper-pagination-disabled {
        display: none !important;
    }

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%;
}

.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0;
}

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
        transform: scale(0.33);
        position: relative;
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
        transform: scale(1);
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
        transform: scale(1);
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
        transform: scale(0.66);
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
        transform: scale(0.33);
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
        transform: scale(0.66);
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
        transform: scale(0.33);
    }

.swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
    display: inline-block;
    border-radius: 50%;
    background: var(--swiper-pagination-bullet-inactive-color, #000);
    opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
}

.swiper-pagination-bullet:only-child {
    display: none !important;
}

.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    transform: translate3d(0px, -50%, 0);
}

    .swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
    .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
        margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
        display: block;
    }

    .swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
    .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
        top: 50%;
        transform: translateY(-50%);
        width: 8px;
    }

        .swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
        .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
            display: inline-block;
            transition: 0.2s transform, 0.2s top;
        }

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

    .swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
    .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
        transition: 0.2s transform, 0.2s left;
    }

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-progressbar {
    background: rgba(0, 0, 0, 0.25);
    position: absolute;
}

    .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
        background: var(--swiper-pagination-color, var(--swiper-theme-color));
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        transform: scale(0);
        transform-origin: left top;
    }

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0;
}

    .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
    .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
    .swiper-pagination-progressbar.swiper-pagination-vertical,
    .swiper-vertical > .swiper-pagination-progressbar {
        width: 4px;
        height: 100%;
        left: 0;
        top: 0;
    }

.swiper-pagination-lock {
    display: none;
}

.swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0, 0, 0, 0.1);
}

    .swiper-scrollbar-disabled > .swiper-scrollbar,
    .swiper-scrollbar.swiper-scrollbar-disabled {
        display: none !important;
    }

    .swiper-horizontal > .swiper-scrollbar,
    .swiper-scrollbar.swiper-scrollbar-horizontal {
        position: absolute;
        left: 1%;
        bottom: 3px;
        z-index: 50;
        height: 5px;
        width: 98%;
    }

    .swiper-scrollbar.swiper-scrollbar-vertical,
    .swiper-vertical > .swiper-scrollbar {
        position: absolute;
        right: 3px;
        top: 1%;
        z-index: 50;
        width: 5px;
        height: 98%;
    }

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    left: 0;
    top: 0;
}

.swiper-scrollbar-cursor-drag {
    cursor: move;
}

.swiper-scrollbar-lock {
    display: none;
}

.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

    .swiper-zoom-container > canvas,
    .swiper-zoom-container > img,
    .swiper-zoom-container > svg {
        max-width: 100%;
        max-height: 100%;
        -o-object-fit: contain;
        object-fit: contain;
    }

.swiper-slide-zoomed {
    cursor: move;
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
    0% {
        transform: rotate(0deg);
    }

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

.swiper .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
    flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
    flex-wrap: wrap;
    flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
    transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
}

    .swiper-fade .swiper-slide .swiper-slide {
        pointer-events: none;
    }

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-cube {
    overflow: visible;
}

    .swiper-cube .swiper-slide {
        pointer-events: none;
        backface-visibility: hidden;
        z-index: 1;
        visibility: hidden;
        transform-origin: 0 0;
        width: 100%;
        height: 100%;
    }

        .swiper-cube .swiper-slide .swiper-slide {
            pointer-events: none;
        }

    .swiper-cube.swiper-rtl .swiper-slide {
        transform-origin: 100% 0;
    }

    .swiper-cube .swiper-slide-active,
    .swiper-cube .swiper-slide-active .swiper-slide-active {
        pointer-events: auto;
    }

    .swiper-cube .swiper-slide-active,
    .swiper-cube .swiper-slide-next,
    .swiper-cube .swiper-slide-next + .swiper-slide,
    .swiper-cube .swiper-slide-prev {
        pointer-events: auto;
        visibility: visible;
    }

    .swiper-cube .swiper-slide-shadow-bottom,
    .swiper-cube .swiper-slide-shadow-left,
    .swiper-cube .swiper-slide-shadow-right,
    .swiper-cube .swiper-slide-shadow-top {
        z-index: 0;
        backface-visibility: hidden;
    }

    .swiper-cube .swiper-cube-shadow {
        position: absolute;
        left: 0;
        bottom: 0px;
        width: 100%;
        height: 100%;
        opacity: 0.6;
        z-index: 0;
    }

        .swiper-cube .swiper-cube-shadow:before {
            content: "";
            background: #000;
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            right: 0;
            filter: blur(50px);
        }

.swiper-flip {
    overflow: visible;
}

    .swiper-flip .swiper-slide {
        pointer-events: none;
        backface-visibility: hidden;
        z-index: 1;
    }

        .swiper-flip .swiper-slide .swiper-slide {
            pointer-events: none;
        }

    .swiper-flip .swiper-slide-active,
    .swiper-flip .swiper-slide-active .swiper-slide-active {
        pointer-events: auto;
    }

    .swiper-flip .swiper-slide-shadow-bottom,
    .swiper-flip .swiper-slide-shadow-left,
    .swiper-flip .swiper-slide-shadow-right,
    .swiper-flip .swiper-slide-shadow-top {
        z-index: 0;
        backface-visibility: hidden;
    }

.swiper-creative .swiper-slide {
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform, opacity, height;
}

.swiper-cards {
    overflow: visible;
}

    .swiper-cards .swiper-slide {
        transform-origin: center bottom;
        backface-visibility: hidden;
        overflow: hidden;
    }

.hero_section {
    overflow: hidden;
}

    .hero_section img {
        filter: brightness(0.6);
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }

    .hero_section .hero_content {
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        bottom: 3rem;
        margin: auto;
        z-index: 2;
        display: flex;
        width: -moz-fit-content;
        width: fit-content;
        color: #ffffff;
    }

        .hero_section .hero_content h1 {
            text-shadow: 0px 6px 4px rgba(0, 0, 0, 0.5);
        }

    .hero_section .heroSlider {
        height: 70vh;
    }

@media (max-width: 765px) {
    .hero_section .heroSlider {
        height: 400px;
    }
}

.hero_section .heroSlider .swiper-pagination-hero {
    z-index: 1;
    position: absolute;
    bottom: 1rem;
    text-align: center;
}

.hero_section .heroSlider .swiper-pagination-bullet {
    width: 50px;
    border-radius: 2px;
    height: 3px;
    background-color: #ffffff;
    opacity: 1;
}

.hero_section .heroSlider .swiper-pagination-bullet-active {
    background-color: #ff8f00;
}

.about_us::before {
    content: "";
    background-image: url("data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAoHBwkHBgoJCAkLCwoMDxkQDw4ODx4WFxIZJCAmJSMgIyIoLTkwKCo2KyIjMkQyNjs9QEBAJjBGS0U+Sjk/QD3/2wBDAQsLCw8NDx0QEB09KSMpPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT3/wgARCAK4AawDAREAAhEBAxEB/8QAGwABAAMBAQEBAAAAAAAAAAAAAAEDBAIFBgf/xAAYAQEBAQEBAAAAAAAAAAAAAAAAAQIDBP/aAAwDAQACEAMQAAAA/ZiACQAAAAAAAAAAAAAAAAAAAAAAAAAQSQCQAAAAAAAAAAAAAAAAAAAAAAAAAQCQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCQAAAAAAAAAAAAAAAAACAACQAAAAACCQAAAAAAAAAAAAAAAACI5mkiutSQAAAAAAAAAAAAAAAAAAAAAAACvNz8uvScy6u/HqgAAAAAAAAAAAAAAAAAAAAAAAK5cfLrxjU7zt68rLJAAAAAAAAAAAAAAAAAAAAAAAIIMGN586v1NesXWSCCQCAImgAAIJAAAAAAAAAAAAAABBBTLmmrU0Wd2SAQIVGbEc5tvXIAAAAAAAAAAAAAAAAAAEEHKjpOgDmVHOaOaz8+nMvoejgBBIABBIAAAAAAAAAAAAAAIABIBRy3xnXGdc1p7csWOlWb7HfgAAIECJROpIAAAIBIAAAAAAAABABIIK86wcuvMRqbOnMuPOvX6cgABBEvObEVzWjrzkAAAAAAAAAAAAAAAAEHK+fjdMuizXrHdcRdYAAIIXJz3xnSzZ052WAAAAAQAASAAAAAAAAAQVS1r2ltkkHQAAIBkzvJnV9zr1myyQAAAAQIpxunG9Xbl3YAAAAAAAABAIBJJBIAIABXLlmrE0anaAAAAAQZMdPP59Opd/Xlq3zEgAAAAAAgkAEAAEgAgrzqM2bO95hYOk6AAAAAIMOOnl53ZHpdOezWJAAAAAIJAAAAIiFJNSACuXz/P6OgbvR5+7AJAAAAAIKpfJx07Nu8armSQAAAAACCrNssg6qTmOMa5l4zvR349AAz515XLtB1Z6vXldcgSAAAAAQQZM6hb7m6wSAAAAAAQZ86Febq3nqziWjj14lorX25arkAcnn46Y5q5ndvOm5kAAAAAAEEELKSAAACQAACDJNYs67zfQ6c7bOc3zOXasnU16xu3gAcmaayZ1dZoub7JAAABBIAAIAJIBziqQ0R1YqQACCqXzs77jZvFmbEZ8dMGnrXnSuzpgAQcnKjqOrJAAAAAAAAAIIMPLpbKjog76Zu3iQACCCma4ltua+XTnNHO53c55fT68wBAIJAJAAAAAAAAAIBjxujGul5zqIv6Y29eUgAEES1Y1C27xTnWPl15sv1jmzMvt9OYAAgAkAAECFIVIAAAAIOVpza1yY3zGvedm+fYABBTjePj3u1iy4s3mjG8FvKdE2e105gAAAAAAQcc9QDvpmSQAAAAQCJcs1nzrRrOnWOyCQCCqa8jj2sluTTrCKJrHp1m7JN/p4AAAAAAAQZeXXjN6sv6c7NQSAAAAQDnF5mmszp0kgAkgg8vHWrnq1O2rEm5ox06l7ufQ9PnAAAAAAEAzZ3k57mzZvF+siQAAAAcZtfPaGpd1wK+ekKs6ZkgFOddZvObUujfOnPTz5a5oe9384AAAAAAgFcuDO5NOs6LnoAAAAEFedZ+HWBubO3FGXh27srmtXfj3YIOM3Hy7Rl3qdHB3rMJzLv7cwAAAAAAIBVLwvdlqSAAAACCDz+fWvGr942dMSmDj3jFizb25W6zIOTBz6ZMbjUuzabPWuOrC29MAAAAAAACAQCSQAAAAQDLNZMa06mrWOjLneHnuzU27xfciSCvOuIzrrufO59OVuTrOvQ9HAAAAAAAAAQCQAAAAAQclU1KW2SVrhxvqzVZdcyDiWnGql1XPJ8/pzZeteNfS75gAAAAAAAAAAAAAAAQQCQQcS8nZ3YBmxuvGsNbCuPG645s0rXNfVXmAAAAAAAAAAAAAAAAIAABBIBzLh59MpyaTLLRpRrAszfqOnMAAAAAAAAAAAAAAAAAAAQBES1njZ6Ddm2phtzy82cVCfUdOQAAAAAAAAAAAAAAAgAkEEgHEvOLznVcufpKpYlmMlldbU6zq3l19P1+QAAAAAAAAAAAAAAAQACDmXuwSVZuTj24lrrR1592cRrTHnXm2+vHEtHPp6vq8oAAAAAAAAAAAAAAEERzLVNc2VES7dZ7sk5MPPrmzpZu3jRrHGdcc98xTpGbUudff7+cAAAAAAAAAAAAAACCvGq1pzcemlK5d+83XMkFE1ixu6zVrHRRz6ZM6mNPTHSQeTX0G8AAAAAAAAAAAAQAASQYue65aK6rdrNMum5tskggrxrqGmTn1rxrLqabmEuTZvHGbd1yAAAAAAAAAAABBTz6U51bvF+8SQZs68/OpNWpsuVSnQIBRx6RLTNYm7bjXrF1zRnpnTVHEu70cQAAAAAAAAAAAKs687z+ivS7WPT7cJIK5cGdjVc6NZkEggiMfLtTnVaUbnr5z1qcZ1yd7zha3a56NQAAAAAAAAAAACqXxeXau3fcel05dEEFUvK2WdpJIBBVz3RnWG3PrNsvocrU1VWjXPTZ1qd6z1QAAAAAAAAAAAgHn46ZZrbrOvWO0gEELKSSACDNy2l87Us3MktmNclh6mZNlbXaaO3MAAAAAAAAAACACuXPNX2WXPQBABIABBmmvPxrLXFlxrzbbLs2nG4lx7lh7XbgAAAAAAAAAABBRy6TZ0nfTIkkAAAAg5zZsi3zZfPM5pj2JZM0uXOuDRjd+8+l24AAAAAAAAAAAVS+bw9FhZJs9HDuwAAAAQV41Ty6d7zz0x4NuhMZ6mNRLyZqSzHo8esanp+nzAAAAAAAAAACDhfHx1rxdJ6PXlbciQAAAQZeXSvn04q/tx8CqrEvqY1pmvNsmxLMSvMfR9uIAAAAAAAAAAgGObxY1dZs1m+5EgAAAgozrzufVG3eKo82pmvR56oaq6c/TZwzVOs6CT1enMAAAAAAAAAACDkzzSLrLLJAAAAIOTz8dOJbOW+7Oc6o3OM2rUjeN+NVHWsa7L7nvcAAAAAAAAAAAEEEEkkgAAAAgrlpXHjdGN9ndzntquboma7jUl+szm6e/IAAAAAAAAAAACACQAAAACAclM15ud8xvzbrjz2rMdLWc012N46PT7cQAAAAAAAAAAAAAAAAAAAIOVzy5sanG+4amLO7IzdMxHGp1cfSbwAAAAAAAAAAAAAAAAAIJAAIIK+e+TFjdOnNl6ZF4svxabfo+vEAAAAAAAAAAAAAAAAQASAADkzcOsnGdZuuPRuasbqlt1njGuq19+IAAAAAAAAAAAAAAAEHObRz6dal/TmJABBh5dc/PfOpp1gtWNxc86nGd6M30/T5gAAAAAAAAAAAAAAAIMfDtRjpzXod/PbrIkAgomvL59OLNBwVy8lNnRZm/QduIAAAAAAAAAAAAAAAEGDj2yZ3B6PXlq3zEgEFHPpgx0bxZZyXmlnFneBaLPqOnIAAAAAAAAAAAAAAACCma83n06Nm8atYEgFGN5cdac60dOWnfOma7zbLnnNrmvOX3O3EAAAAAAAAAAAAAAACDlcGdcS69Z03IkAx8+mDHbg1a579c4MOd2x3LXLRXr9+AAAAAAAAAAAAAAAAEEFcta2WWoJBBXL43PrC7ZNOZzbiaoGpwk3P0PTmAAAAAAAAAAAAAAAAIIAJJAIIMOd55rrNnFhcnTNZMvNndz9HvmAAAAAAAAAAAAAAAABAJAAIBWtMtMubGq19Jmk826lNub63biAAAAAAAAAAAAAAAAAAAABAIOJck1nl1c9WRkrNuW417PfgAAAAAAAAAAAAAAAAAAAAABBBBXLmxuvn0lHXFS+xvkAAAAAAAAAAAAAAAAAAAAABABBXLgx05l17xZrOhAAAAAAAAAAAAAAAAAAAAAAABBBWtObfqdHaAAAAQARmzYqQAAAAAAAAAAAAAAAAQCAI6oAAACAcY0jiWzeetSQAAAAAAAAAAAAAAAACAQdAAAAAgz8+nPPULZ1537xIAAAAAAAAAAAAAAAAAIBIAAAAIKs6w8+qNPTnq3iQAAAAACASAAAAAAAAAACCQAQCImgByYcdKpdmsaNZ6AAAAAAIBIAAAAAAAAAAAABBRjebl2s1jX14zQFctMttltkgAAAAAAAAAAAAAAAAAAgkAg8/l2pzpLu68dG8ACASSAAAAAAAAAAAAAAAQAAASACDDnp5vPY9TfPTrPOb0RFnTMgAAAAAAAAAAAAAAAiIlWSQomwSACDhfKxvmXfrFlZePW6SI09+VmoAAAAAAAAAAAAAABzFPLpEqpSbOZYXvWb+mABBBmlomtFl6YMbrxvo2deV+syAAAAAAAAAAACAASDmXBx7cSjtO4zW1NWJ7Ho8wAEERxbMdVRL5+N9G7eNDM0AAAAAAAAAABBGQSzuSCIw56ZMa7rpOZqrUoEv0fXgAAIABBnmuIvstskAAAAAAAAAAAgz89RnXRb1x3YIKpcc1aQmaa6OThfa3yAAAAAggHQAAAAAAAAAAAIMudZ+e7DT1522SCDlUK4jg6INFgAAAAAgkAAAAAAAAAAAAHBkzqF03NtkggAEAA6AAAAAAAAAAAAAAAAAAAIIOVk6SQAQAACQAAAAAAAAAAAAAAAAAAAQASAAACASAAAAAAAAAAAAAAAAAAAACCQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf/8QAMRAAAgIBAwIGAgEEAgIDAAAAAQIAAxEEEiETMSAiMEBBUBBRYQUUIzIVgUJicHGA/9oACAEBAAE/AP8A9RBsmHIgb7O1wogc7sw2Tfkxe32VqbxHIQ45E3xGyZW2R9kZqlOczmUrKvs7a9wn9vgxK4g9AnE3wsPqSIVgWAeAmZhMDy44XcIbp1vsHbaxhshthtlTb6uZcoRzMj0wfpbQGWMe4zN38zOTgTTZCy+rdOmfQY4EzC06nmEH0jDIl9RDZgQyquVLgQrmdMegwyMR7GRsTqkxGy0rOR9K9eZ0BFrxFHp6lJkniVDEq7es9p3YBjWMpzulbbkz7bHquuY1OGzESIMD1dZca8AQ3ljkmLbmaJ8ofoGtAOIbCBmJaGOD3/BWBYPV/qS+VWjRM4mkGxMQe2zNwmfFa22sw28wXn9xrhnMpJasE+wvqFtZUxqAjmVpkyoQewUsXOe34DfknAgOYxAnUxFORnw6rd0+BmM5yeMTqRMswlLeUD2BEu0+5sxKMREg9gz7XInVwJ1ZWcoPxZ/oZvxGsjWEyp/8Y8JmrQDkCBZSuWlUHsMTbAPY6tcDcJveJlmlJ4/DEbTLX2OQGht/ZlWXbgROB4r6t4nQYSurErXEHtt0zFbmbhC2ID6FqblIllRVjKVlUdscTuJdQrCLQWv6cSpKkwIOMjxETYIEgGIPantHtsNvl7TqRXgeGyU2ZJHoESykNFqxEXEtbFkDxnmnQdVrJdZ2USyzDfQaisq+5YXJgfbDfiC7M0x8+YPGSAMmG9YtytBNSmVyJ1CI9sRwEEd8mWMWc/QMuY2nGcw0SxCrYMUYlHEQ+PUnFcDjOMwFPgyh+cT/AH4lulU5xxLqXq7nIiX+XEFv8xBkZ9geBN8LxXzB62JfRu5EFJzK1xE8eoXdUYxIaJZiV2+YGB8RrJYQ4xLNOCMCUaPnnmCraMY9ge0Z9hIMNsS5R3MqbcvrEzM2AwJB4yMiamra5i0u3ZWMWq1R/rFs+DwYFezsJ/bMoyYHByf5iWbDkT+4z7HUrkZmVi4J7SowepYcCK0Zh8StucfktkzMWzw2Ku4ZEUrGIgoWywM3xNwCyxye0vDU2n5VuYHm/wDn2LrkS2oqxlayuL6lw8k3zfKny8BjHCmB51YXiHKA+C0ZQzrYnXlduUnVm8FgI+lWzBcz+ypx/pP7Csds+xIj1gwVARUg9Qy4bXM3SmJ2hGQRHzW5BnUm7JlJ8uPAZqa9rZEZsSi7BKmM/EF22wEHODEYOoIgImR7PEx62or3CBDulYifjVJkZhlXeU+E4+Y6VsOQDK/6eht3n/X4Eemt02lRiNoxQ5JPlg1fTOAciLrUbvOsp7N9Ey5hqGYqYg/Fi5EtpIaVpiVDwO20TPEewJgQEYllorrZj8TU6yzUPyeP1KCpf/KxVY4oJ/w2H/uGxlOM/SY8BTMFcUQfm541uBmX25bMr1G5AZdbuRlPyJZWUcwMVm+npY6fP7Bnl+CfqceB22oTC+TLrskiUUNe+T2lunNCZUZEewYj1seYa4EMWrI7/V5m4S8k0ts5Me9iSBAkoxXWBGtyMTUKijd8wXq3B4hwYcLMueynH1TNtgcRnEL7eZdWC25B3hTAm/EZyo7NLGazMFJtKqvcwf0nYBlyTP7BayGYfTZEL4MByPzcu5DOtiG+NbmaYbkwY1EXTg2jPYTCkTU6RHBK8NATTcM8YMRt+GJ7zVPhQM9jA/0JML4ll+yLq1LhPkx72DEQWlpU2UH5M1KANmHERczTpiYjjAzN8ZxBpEtY2MMwt0Tt+JY+RN4H0OY7Zlm1k5mzbcGB7GXr/wCYlfmMp8F1e8TonMqpIiLiM4XvH1AwRidXmbyRNK4ZMS6pbjiHRV7MCX6DUraQmGX3mfAY9pVyp4jahY9pYytNxzOnurxEo2GVjwEQqAZ2m8BSYt4LlmltwYRmy3ErotYYbAjVtpckNmaO7qFueZmHHujDdlsAy5x8MSZp7uoMHuPBqqw4zjmFRmAZMpTEXtNsAx4WfzTfL7MVtBZKNO1xyeFiaOtfiDyCXDqcSrTPRb1AePkTrgjiG73V7ba41kNuT3mjc9YQfmwZEtrw0rSVrF8RMuba5huOZZZlDmU1l7wkUBQAO06gjOTKsEmXMESLSb7MDI/kSvS1ogBG7+T7q9OpUQO8vJViDEyZpFwcxDx+SI1eYK8RVg8THzy+okbk7zqouQeD+jLi9mCBhfiaBsXPk9lhthulmpwJoUsCEv2JyI9YYeaVqEXiZHujNZpw53RagJSmIngxMQeO5trxbARNfWu9WlSo2kLkiUo1mpxWcfsyywo5VckCBrWOFQmaal2vzYpAEDAQ2xbe4gsHu7K94g0+DFTEUerq68ruHcTrkS+1rTOoQmMnE0B3m1P2IdPx+xNOEQnb88GXEriG2G6W3slmU5g1i4749zZfg4Ey23OYtmeDMfgembBAcxhkTV0KmWyBGCnPmhDZmhrdrvJECXKVzhpXplpLN+5qb8AGG8d8w3yqjC5bljF0lLjJX3F77KiY1pzE1BPzEuwZU25AfUsfBx+N+Jq9V0NPvHc8CWXNbZmxiY+rqFISof8A3uEZwewxP6a9Yq/9pqDtt3pDq7GXBcy6wsIK/IDFQAjMyJ1gPn3Fq76ypl6FSYhaVcnmUnj1LztsnUjWRVW7S7G+RL6HpsKmZxBljgTR6FlIZ2wf0JaKFBDCHO/aO8bS3GV5Vdr9xDBe+Qu3/ub29wZqqM8ibMGUpKoPT1Kb0jEiKdxlR4mo0aXnJJH8zUf06yrJU7hNBTgmxvjtBdhNstIbMRB/cof4nlKdpqqQykjvNJpyRufn9SyvJCoJ/wAax5LD3LDMfTgnMWrEQYg9NhkS+oq0RcDJgtxP7kkYm/eYydHI+Ccw2R3iMVsDGJbL7MAxHHRXE0yAJu+TM+6xMQD1XrDR6JfWUgdhFdxyBHdrwFVckfMdCrYIMZsGU0G/ucSwNRw3b9yqrrjLnyyvTJswuQIh2oBN31REuqDqY6FTCCZQqogAhCP/ALATW6RRh0mnIrxL9lqmBwvadfy4zKb8goTg/E6hH1ZEtoDRtORAxQYMS2ag5obH6iW4jXDbN+czcZY5g1tqjGQfrMTucYllKsORLqmp5HIjXF0K/uU6W20+UYH7MbQN235luksoBIwwlNVl+dg7fJn/ABr93sGYdBbngg/WGdTDQ2wtkYMp04bUkf8AiOYSK0PxiLZ5IwD8RK1SrCjEQhmwTDUueG+jdwgm9mBYfErvzw3oakFHzDdiC8tNNxuJ+ZqrcKAPkxb+INRscGX6tmPDED+JRaeQTkwWj9/R6iz/ACYhtI4geUPvqHj1CbkjryYqsDFJxgS7eWzg4m6MlrjyqZtdXw2YMq2QYL/2Po9WNtkZ4pzNIcJ47blAlq7mzFpMSsiW5xiabTqFyRCq44E1On39pZRYnJE3/R6isWJGrXd3wYqhTgYJMp4g8Ops2JgfMQBwSWxHYBjNId+5T8Tpy2qC1QMCcYgx8yxVOZdo1NhI+jYZEvq5zKklQg8Ou7KYx/GiOHJgJMccS1Tu8spt3eViNwhsx3hsjWjP0j1gzpYiLiDw3ILKyplqMjlYATNKNqwPiPZL7sNHck7lOCINa3ZhmPrH+ABKkNibvpcTHiM1VWTmLXEfbkTr4htyJacsZkgThoyjEqa1Ewvb610yIaZZThciGE/AmmqrSvBUEmarRI4zXwYUZGIIgXJAldQ2fXYhTMu03OVhpKyt5umqqDDcO8245i28fYEZjVAy1CnaC0iO4ZYtQZY1JB+ysrDLLEKGIMmVLDX9m9QeDT4MRMTHq5+nx6zNjiA5ELYiNuH2dxw0DwtKG+zvTekLlYGJlMHrGKcj32fCwl9RByJWCTKxB9ZqbSi4HcxLWMTUkd4rBhkeB0DTo47RFxB9ZrbP8mJTqOnnjOYLN5JmjbKEfrw4mPrddST5x/3GMqczSeUR3CLkwWAwxbP39FmE4gOZnEzAwPoOMqRLqsOciV1ANKpqF30GI5EDwtKW3ID9AeAZ1IXldmGhszN86m3mNqCf9YFcjJbxGXU7olJUytZjKkS+o1tx2gdhA5M058n0DcqY1m0mdbMD5gcg4M6k1N21eILjiC9iP9j4yJsgX8ahNywhhEBJlMHuc/jPh1aDOYBFEc8zcJam+FDAG9MjMsoBi0YiLj3Vl2x8Rb85zN+YhyPBbWHEOmIaLVLaMidIgzpw0GdP+PUxNsA91q6s4cdxEcAcmLZuOBKj4ds2zbDUJ0oK50R9QwzLdP8AIldZWVjEHoYmPqis2QCD/wCLf//EACERAQACAgIDAQADAAAAAAAAAAEAEQIQMFASIEADYHCA/9oACAECAQECAP8AUVsMuyZbljDskSsTs2UdscK+V9et2ZZdllL0RK4h6TIqgInA7HpXRuuB0Q7NKOdVOkrmyamHQOXkZfBkax+i79VZcx+GiHz2zyPXIqqOms0y4Q9kgdI7NXKPd+q7G74WEJkxhq/vZcvyweImcuY9ElJSYcLmZzMh0lUlB75wGYNoPx3Y86Q4EqiW5EW/hy0Q5lMjiTTA8WEv4EoDlygsxdLZl6MHJJazx8fjOXLeOmLZD0Y6JfzVzZY0GsiAeuRSUEI9EyjaUHshpAro69K9WXfpVdasIwh2lQbu+ruVGWNHWL5OQ6qoRWX1OWwJXq9Hd3o9MigNMuG66C9Gz0ZRCK56x1R0Ls1Xq6tyYStX9fk5YO00cGTY1Qbv6soFYc+WgQnk5YxgV9LKo5lgVlsJWMv6nRzZaNMqsoPmN/XXMlHpeWqJX0ZZXjly3w1Vj87GWJyZME9GGjTH6qQDkzNY+i3DdV9Do5UoPLyM829WOq+muZIzy1VVDd9UlVoHKWPW16XaEJXWUhCOIVQV1qQKlzyP06xfKzVmq8eiXyxz98yqI6NJ0ebAx92Vut10WZKx98s/L0dX0aUB7ZoJhpNEZ5dG8GcNYy7W7ldJXsygYKwlV1rpKmJUHrqlUN6vr6rRquxSjtUAK/gV32eSS8Xss94dmiAdowh1uaJkdnnCZTDs8ikx1dmXRWMseB0RjLvHoXLyxyyy8jJ/SuJKDHoGJA1Xjxsqj6ru/RKqqCVyV9TLE9aqqrqWIB2lV/cn/8QAIhEAAgEDBAMBAQAAAAAAAAAAARFQABAhMEBwgCAxYAKQ/9oACAECAQM/AP54sdS0I5yy5TAoGUxYD1Z0pHF14ujJqSFxF5vj4EUJM0aPKD0RGDRIo9BM6R3WNlnRfHi3L3x+Hx4OTN1iTKnVLP6YvQVCNIOiINUfcsbYlsSb0cTKmX2MXKJ4ZewxDK36lj2x/8QAIREBAAICAwEBAQADAAAAAAAAAQARAhAgMFBAEgNgcID/2gAIAQMBAQIA/wCoqlekSjFPSEYvpnrEvpJVeiFYyq8/E/NUwb8/GDdsG+qvEIcR6DT499hp7zExfDJfdgaz8ADFx+DB1l9FcsSfmsvgJd/QT81wxbjH4Rv460SjTyG7fEIEdEJd8iXf01VdJGMCCy/AqqoxyOpmM/IZQ8EYMJn0EMHCYOmHhXY29GEdZ4wy+SqrvG3oxbjECGNfDjpHuOsg3pf1jEMfgHT2kQMjQROBGEWjGXfwEHux3lolfmnhjCUlS7v4bvtIMWEGMeI3fCvBG3eLavIVEfFvZzNVVaG/IvgGqr0CGxlVVeXRwDzgoK0OyErycZWmXo3h4Yfmq44t26JVQ1fiGngS7YBhrKCZeCcb51+QYsZX1/nDHPHZ1hVRf1DVV9OO8+BDqx0y2fkMoRb+klx4j0EG4StMF+wY9xxu5RjVfUN9xyTH7ccI49tQ1e7OD9GMJSPZiStVDVOz6SDdvZjt4VXC7+gbXsxRWqrAcdU7v6bvsIOvxUuXtleTY3elCUyq8ob2RAlPmiJKg3dr5wjLuXX48slGNOq2ZeEFOHPB0w06Hw/5lMyOQ3ol7vwsGXlzxw/O1HxRtXlgLM9DWiV4Z0fz3logIHmiNyjEjq/NGG1HzyWN3lD0x1XpiOmX6JBtl+kN/wCBhAT0sZUy9PFGPqDHzf5lOCcL83+cQmfp4N3lqpXnjGGqrI8Axpx/P5/JhfI4YsvLwCGnZLrqJcfBxbu5d313f1EqngS7G/KNMei7u/IG/wDcn//EACERAAEEAQQDAQAAAAAAAAAAAAEAESFQEDBAYHAggJAx/9oACAEDAQM/APnixUepTm2axntAo2k4OGugELIDLoV5R6kOB6HgoVU8Ae2axhNRttX307KNFuvHw23bkUZnwa2mzHMY6ecaJo3Q/LYYm9NY2i5Tcyf4tuhbPy+fCaZ8C2Htj//Z");
    position: absolute;
    background-size: cover;
    background-repeat: no-repeat;
    width: 400px;
    height: 150%;
    right: 0;
}

@media (max-width: 900px) {
    .about_us {
        flex-direction: column;
    }

        .about_us::before {
            background-position: right;
            width: 30%;
            height: 62%;
            right: 0;
            z-index: -1;
        }
}

.products {
    padding-left: 2.5%;
    padding-right: 2.5%;
    gap: 1rem;
    justify-content: center;
}

    .products img {
        width: 30.5%;
        margin: 0.5rem 0;
        cursor: pointer;
        border-radius: 16px;
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
        max-width: 100%;
        height: auto;
    }

.opacity_0 {
    opacity: 0;
    width: 0;
    height: 0;
    display: block;
}

@media (max-width: 1100px) {
    .products img {
        width: 48%;
    }
}

@media (max-width: 765px) {
    .products img {
        width: 100%;
        max-width: 25rem;
        margin: 0 auto;
    }
}


.gallery {
    width: 100%;
    height: 100%;
}

    .gallery .gallery_images {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0.8rem;
    }

@media (max-width: 1200px) {
    .gallery .gallery_images {
        gap: 0.5rem;
        grid-template-columns: repeat(3, 1fr);
    }

        .gallery .gallery_images img,
        .gallery .gallery_images video {
            border-radius: 4px !important;
        }
}

.gallery .gallery_images > div {
    height: 230px;
    margin: 0.8rem 0;
    overflow: hidden;
    cursor: pointer;
}

    .gallery .gallery_images > div img,
    .gallery .gallery_images > div video {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        transition-duration: 0.3s;
        border-radius: 16px;
        transition-timing-function: ease-in;
    }

        .gallery .gallery_images > div img:hover,
        .gallery .gallery_images > div video:hover {
            transform: scale(1.2);
            filter: brightness(0.8);
        }

@media (max-width: 900px) {
    .gallery .gallery_images > div {
        height: 180px;
    }
}

@media (max-width: 765px) {
    .gallery .gallery_images > div {
        height: 22vw;
    }
}


.gallery svg {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 70;
    cursor: pointer;
}

.backDrop {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5607843137);
    z-index: 1000;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}

    .backDrop img,
    .backDrop video {
        width: 90%;
        height: 90vh;
        -o-object-fit: contain;
        object-fit: contain;
    }

    .backDrop .close {
        font-size: 26pt;
        color: #ff0000;
        font-weight: bold;
        position: absolute;
        top: 2rem;
        right: 3rem;
        cursor: pointer;
        background: #ffffff;
        border-radius: 10px;
        width: 56px;
        height: 56px;
        box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 0.6rem;
    }

        .backDrop .close:hover {
            color: #da0d0d;
        }

.order {
    background-image: url(../../../Assets/images/order.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 8vw 12vw;
    color: #ffffff;
    margin-bottom: 0;
}

    .order::before {
        content: "";
        background: linear-gradient(270deg, rgba(182, 105, 23, 0.64) 1.74%, rgba(171, 101, 26, 0.64) 50.94%, rgba(207, 119, 25, 0.68) 101.72%);
        width: 100%;
        height: 100%;
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        top: 0;
    }
/*# sourceMappingURL=home.css.map */


table {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    border-collapse: collapse;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

th,
td {
    padding: 12px 15px;
    text-align: center;
    border: 1px solid #ddd;
}

th {
    position: sticky;
    top: 0;
    background-color: #099d8b;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 1;
}

td {
    font-size: 14px;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

tr:hover {
    background-color: #e0f7f5;
}

table,
th,
td {
    border: 1px solid #099d8b;
}

caption {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #099d8b;
}