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

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

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

@font-face {
    font-family: Montserrat;
    src: url(../fonts/Montserrat-SemiBold.woff) format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Univers Next Arabic;
    src: url(../fonts/UniversNextArabic-Bold.woff) format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Univers Next Arabic;
    src: url(../fonts/UniversNextArabic-Regular.woff) format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

.navBox {
    display: grid;
    grid-template-columns: 40px 40px;
    gap: .8rem;
    align-items: center;
    justify-content: flex-end;
    position: relative
}

@media only screen and (min-width: 1025px) and (max-width: 1370px) and (min-height: 500px) and (max-height: 670px) {
    .navBox {
        grid-template-columns: 35px 35px
    }
}

@media only screen and (max-width: 1024px) {
    .navBox {
        grid-template-columns: 38px 38px;
        gap: .5rem
    }
}

@media only screen and (max-width: 980px) {
    .navBox {
        grid-template-columns: 32px 32px
    }
}

@media only screen and (max-width: 767px) {
    .navBox {
        grid-template-columns: 38px 38px
    }
}

.navBox.box_center_ {
    position: absolute;
    top: 50%;
    left: calc((28px + 1rem)*-1);
    width: calc(100% + (28px + 1rem)*2);
    transform: translateY(-50%);
    justify-content: space-between;
    margin-top: 0;
    pointer-events: none;
    z-index: 10
}

@media only screen and (max-width: 1024px) {
    .navBox.box_center_ {
        position: relative;
        top: 0;
        left: 0;
        width: auto;
        transform: none;
        justify-content: center;
        margin-top: 1.5rem
    }
}

.navBox.box_center_ .nav_ {
    pointer-events: auto
}

.navBox.box_center_ .nav_.swiper-button-disabled {
    opacity: .7;
    pointer-events: none
}

.navBox .nav_ {
    line-height: 1;
    transition: all .3s ease-in-out;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 2/2;
    color: #000
}

.navBox .nav_>* {
    pointer-events: none
}

.navBox .nav_.swiper-button-lock {
    display: flex
}

.navBox .nav_ svg {
    display: block;
    transition: all .3s ease-in-out;
    width: 100%;
    height: auto;
    z-index: 10
}

.navBox .nav_.swiper-button-disabled {
    opacity: .7
}

.navBox .nav_.swiper-button-disabled svg {
    opacity: .3
}

@media only screen and (min-width: 1025px) {
    .navBox .nav_:not(.swiper-button-disabled):hover {
        transform: scale(1.2)
    }
}

.navBox .nav_:focus {
    outline: none
}

html[dir=rtl] .navBox .nav_ {
    transform: scaleX(-1)
}

html[dir=rtl] .navBox .nav_:hover {
    transform: scale(-1.2, 1.2)
}

@media only screen and (max-width: 767px) {
    .nav_box.box_center_ {
        position: relative;
        justify-content: center;
        top: 0;
        transform: none;
        margin-top: 1rem;
        grid-gap: 1rem;
        grid-template-columns: 35px 35px
    }
}

.moreWrap {
    margin-top: 2rem;
    display: flex
}

@media only screen and (max-width: 767px) {
    .moreWrap {
        margin-top: 1.5rem
    }
}

.moreWrap.bMargin {
    margin-top: 2rem
}

.moreWrap.withNav .swiper-pagination,
.moreWrap.withNav .swiper-scrollbar {
    margin-top: 0
}

.moreWrap.withNav .swiper-pagination {
    justify-content: flex-start
}

.moreWrap.withNav:not(.showOnMobile) {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-gap: 2rem;
    align-items: center;
    margin-top: 3rem
}

@media only screen and (max-width: 767px) {
    .moreWrap.withNav:not(.showOnMobile) {
        margin-top: 2rem;
        grid-gap: 1rem
    }
}

@media only screen and (max-width: 767px) {
    .moreWrap.withNav.showOnMobile {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-gap: 2rem;
        align-items: center
    }
}

.moreWrap.alCenter {
    justify-content: center
}

.moreWrap.alEnd {
    justify-content: flex-end
}

.moreWrap .swiper-pagination {
    justify-content: center
}

:root {
    --button-motion-ease: cubic-bezier(.34, 1.56, .64, 1);
    --button-motion-duration: 0s;
    --button-scale-up: 1.05;
    --button-scale-down: .95
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        --button-motion-duration: .3s
    }
}

.more {
    appearance: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    font: inherit;
    font-weight: 600;
    line-height: 1;
    padding: .7rem 1.5rem;
    position: relative;
    transition: filter var(--button-motion-duration) var(--button-motion-ease);
    user-select: none;
    font-size: 1.05vw;
    line-height: 1.3;
    color: #000
}

@media only screen and (min-width: 1630px) {
    .more {
        font-size: .9vw
    }
}

@media only screen and (max-width: 1024px) {
    .more {
        font-size: 1.4vw
    }
}

@media only screen and (max-width: 980px) {
    .more {
        font-size: 1.8vw
    }
}

@media only screen and (max-width: 767px) {
    .more {
        font-size: 4vw;
        padding: .6rem 1.3rem
    }
}

.more.white .more__shape {
    fill: transparent;
    stroke: #000;
    stroke-width: 2px
}

.more:focus,
.more:hover {
    color: #000
}

.more__content {
    display: block;
    position: relative;
    transition: transform var(--button-motion-duration) var(--button-motion-ease)
}

.more:hover .more__content {
    transform: scale(var(--button-scale-up))
}

.more:active .more__content {
    transform: scale(var(--button-scale-down))
}

.more__shape {
    fill: #8f7289;
    position: absolute;
    inset: 0;
    inline-size: 100%;
    block-size: 100%;
    overflow: visible;
    transition: transform var(--button-motion-duration) var(--button-motion-ease)
}

@supports not (d: path("")) {
    .more:hover .more__shape {
        transform: scale(var(--button-scale-up))
    }

    .more:active .more__shape {
        transform: scale(var(--button-scale-down))
    }
}

.more__path {
    transition: d var(--button-motion-duration) var(--button-motion-ease)
}

.more:hover .more__path {
    d: path("M0,0 C0,-5 100,-5 100,0 C105,0 105,100 100,100 C100,105 0,105 0,100 C-5,100 -5,0 0,0 z")
}

.more:active .more__path {
    d: path("M0,0 C30,10 70,10 100,0 C95,30 95,70 100,100 C70,90 30,90 0,100 C5,70 5,30 0,0 z")
}

.moreNormal {
    background-color: transparent;
    font-family: inherit;
    font-weight: 500;
    position: relative;
    box-shadow: none;
    outline: none;
    border: none;
    color: #8f7289;
    padding: 0 0 .2rem;
    transition: color .3s ease-in-out;
    display: inline-block;
    cursor: pointer;
    overflow: hidden;
    font-size: 1.05vw;
    line-height: 1.3;
    font-weight: 700
}

@media only screen and (min-width: 1630px) {
    .moreNormal {
        font-size: .9vw
    }
}

@media only screen and (max-width: 1024px) {
    .moreNormal {
        font-size: 1.4vw
    }
}

@media only screen and (max-width: 980px) {
    .moreNormal {
        font-size: 1.8vw
    }
}

@media only screen and (max-width: 767px) {
    .moreNormal {
        font-size: 4vw
    }
}

.moreNormal:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #8f7289;
    transform-origin: left;
    transition: transform .4s ease-in-out
}

.moreNormal.dark {
    color: #535353
}

.moreNormal.dark:before {
    background-color: #535353
}

.moreNormal.sm_ {
    font-size: .95vw
}

@media only screen and (min-width: 1800px) {
    .moreNormal.sm_ {
        font-size: .7vw
    }
}

@media only screen and (max-width: 1024px) {
    .moreNormal.sm_ {
        font-size: 1.25vw
    }
}

@media only screen and (max-width: 980px) {
    .moreNormal.sm_ {
        font-size: 1.6vw
    }
}

@media only screen and (max-width: 767px) {
    .moreNormal.sm_ {
        font-size: 3.4vw
    }
}

.moreNormal.sm_.line_:before,
.moreNormal.sm_.line_:after {
    height: 2px
}

.moreNormal>span {
    display: block;
    position: relative;
    z-index: 5
}

.moreNormal:focus {
    color: #535353
}

.moreNormal:focus:before {
    background-color: #535353
}

.moreNormal:hover {
    color: #535353
}

.moreNormal:hover:before {
    transform: scaleX(0);
    transform-origin: right
}

.sBtn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .7rem 2rem;
    border: none;
    background-color: #8f7289;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.05vw;
    line-height: 1.3;
    font-weight: 500;
    font-family: Montserrat, Univers Next Arabic, sans-serif;
    cursor: pointer;
    position: relative
}

.sBtn.justifyCenter {
    justify-content: center
}

.sBtn.round {
    border-radius: 2rem;
    overflow: hidden
}

.sBtn.green {
    background-color: #535353
}

.sBtn.green:before {
    background-color: #8f7289
}

.sBtn.lg_ {
    font-size: 1.3vw;
    padding: .8rem 2rem
}

@media only screen and (min-width: 1630px) {
    .sBtn.lg_ {
        font-size: 1.1vw
    }
}

@media only screen and (max-width: 1024px) {
    .sBtn.lg_ {
        font-size: 1.75vw
    }
}

@media only screen and (max-width: 980px) {
    .sBtn.lg_ {
        font-size: 2vw;
        padding: 1rem 2.2rem
    }
}

@media only screen and (max-width: 767px) {
    .sBtn.lg_ {
        font-size: 4vw;
        padding: .8rem 1.8rem
    }
}

@media only screen and (min-width: 1630px) {
    .sBtn {
        font-size: .9vw
    }
}

@media only screen and (max-width: 1024px) {
    .sBtn {
        font-size: 1.4vw
    }
}

@media only screen and (max-width: 980px) {
    .sBtn {
        font-size: 1.7vw;
        padding: .8rem 2.2rem
    }
}

@media only screen and (max-width: 767px) {
    .sBtn {
        font-size: 3.6vw;
        padding: .6rem 1.8rem
    }
}

.sBtn>* {
    position: relative;
    z-index: 10
}

.sBtn:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #535353;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .5s ease-in-out
}

.sBtn .icon {
    display: flex;
    width: 40px
}

@media only screen and (min-width: 1630px) {
    .sBtn .icon {
        width: 45px
    }
}

@media only screen and (max-width: 980px) {
    .sBtn .icon {
        width: 35px
    }
}

.sBtn .icon svg {
    width: 100%;
    height: auto
}

.sBtn:hover:before {
    transform: scale(1);
    transform-origin: left
}

:root {
    --gfs: 25
}

html {
    box-sizing: border-box;
    font-size: 17px
}

@media screen and (max-width: 991px) {
    html {
        font-size: 14px
    }
}

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

body {
    font-family: Montserrat, Univers Next Arabic, sans-serif;
    color: #A45E2A;
    font-size: 17px;
    font-size: 100%;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: normal;
    background-color: #8f72891a;
    margin: 0
}

h1,
h2,
h3,
h4,
h5,
h6,
header .mn_link {
    font-weight: 700;
    font-family: Montserrat, Univers Next Arabic, sans-serif
}

a {
    color: #535353;
    transition: all .2s ease-in-out;
    text-decoration: none
}

a:focus {
    outline: none;
    color: #A45E2A
}

a:focus-visible {
    outline: 1px solid #000000
}

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

.container {
    width: 100%;
    max-width: calc(85vw + 30px);
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    position: relative
}

@media screen and (max-width: 1300px) {
    .container {
        max-width: 90%
    }
}

@media screen and (max-width: 1024px) {
    .container {
        max-width: 95%
    }
}

@media screen and (max-width: 767px) {
    .container {
        max-width: 100%
    }
}

.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

@media screen and (max-width: 767px) {
    .container-fluid {
        padding-right: 10px;
        padding-left: 10px
    }
}

.navbar,
.navbar>.container,
.navbar>.container-fluid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between
}

.displayNone {
    display: none !important
}

.text-center {
    text-align: center
}

.text-left {
    text-align: left
}

.text-right {
    text-align: right
}

.font-head,
.font-text {
    font-family: Montserrat, Univers Next Arabic, sans-serif
}

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

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

video::-webkit-media-controls-mute-button,
video::-webkit-media-controls-volume-slider-container,
video::-webkit-media-controls-volume-slider {
    display: none
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    background-color: #f2f2f200 !important;
    -webkit-box-shadow: 0 0 0px 1000px #f2f2f2 inset !important
}

.selectric-wrapper {
    position: relative;
    cursor: pointer
}

.selectric-responsive {
    width: 100%
}

.selectric {
    border: 1px solid rgba(143, 114, 137, .15);
    position: relative;
    overflow: hidden;
    padding-inline-start: 1.5rem;
    padding-inline-end: 40px;
    border-radius: .5rem
}

.selectric .label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    height: 3rem;
    user-select: none;
    font-weight: 600;
    font-size: 1vw
}

@media only screen and (min-width: 1630px) {
    .selectric .label {
        font-size: .85vw
    }
}

@media only screen and (max-width: 1024px) {
    .selectric .label {
        font-size: 1.3vw
    }
}

@media only screen and (max-width: 980px) {
    .selectric .label {
        font-size: 1.7vw
    }
}

@media only screen and (max-width: 767px) {
    .selectric .label {
        font-size: 4vw
    }
}

.selectric .button {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 100%;
    color: transparent;
    display: flex;
    align-items: center;
    justify-content: center
}

.selectric .button:after {
    content: " ";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-top-color: #000;
    border-bottom: none;
    margin-inline-end: inherit;
    transform: translate(-50%) translateY(-50%)
}

html[dir=rtl] .selectric .button {
    left: 0;
    right: auto
}

.selectric-focus .selectric {
    border-color: #b5b5b5
}

.selectric-hover .selectric {
    border-color: #cfcfcf
}

.selectric-hover .selectric .button:after {
    border-top-color: #a2a2a2
}

.selectric-open {
    z-index: 9999
}

.selectric-open .selectric {
    border-color: #cfcfcf
}

.selectric-open .selectric-items {
    display: block
}

.selectric-disabled {
    filter: alpha(opacity=50);
    opacity: .5;
    cursor: default;
    user-select: none
}

.selectric-hide-select {
    position: relative;
    width: 100%;
    height: 0
}

.selectric-hide-select>label.error {
    position: absolute;
    right: 0;
    left: auto;
    background-color: #fd625c !important;
    color: #fff !important;
    font-size: 12px;
    transform: translateY(-50%);
    margin-bottom: 0;
    padding: .15em 1em;
    border-radius: 1em;
    font-weight: 400 !important;
    z-index: 100;
    line-height: 1.2
}

.selectric-hide-select select {
    position: absolute;
    left: 0;
    visibility: hidden
}

.selectric-hide-select.selectric-is-native {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10
}

.selectric-hide-select.selectric-is-native select {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    border: none;
    z-index: 1;
    box-sizing: border-box;
    opacity: 0
}

html[dir=rtl] .selectric-hide-select>label.error {
    left: 0em;
    right: auto
}

.selectric-input {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 1px !important;
    height: 1px !important;
    outline: none !important;
    border: none !important;
    background: none !important
}

.selectric-temp-show {
    position: absolute !important;
    visibility: hidden !important;
    display: block !important
}

.selectric-items {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #8f7289;
    z-index: 0;
    overflow: auto;
    border-radius: 1rem
}

.selectric-items .selectric-scroll {
    height: 100%;
    overflow: auto
}

.selectric-above .selectric-items {
    top: auto;
    bottom: 100%
}

.selectric-items ul,
.selectric-items li {
    list-style: none;
    padding: 0;
    margin: 0;
    min-height: 20px;
    line-height: 1.2;
    font-weight: 400;
    font-size: 1vw
}

@media only screen and (min-width: 1630px) {

    .selectric-items ul,
    .selectric-items li {
        font-size: .9vw
    }
}

@media only screen and (max-width: 1024px) {

    .selectric-items ul,
    .selectric-items li {
        font-size: 1.3vw
    }
}

@media only screen and (max-width: 980px) {

    .selectric-items ul,
    .selectric-items li {
        font-size: 1.7vw
    }
}

@media only screen and (max-width: 767px) {

    .selectric-items ul,
    .selectric-items li {
        font-size: 4vw
    }
}

.selectric-items li {
    display: block;
    padding: 9px 1rem;
    color: #8f7289;
    cursor: pointer
}

.selectric-items li.selected {
    background: #655060;
    color: #fff
}

.selectric-items li.highlighted {
    background: #b19dad;
    color: #fff
}

.selectric-items li:hover {
    background: #655060;
    color: #fff
}

.selectric-items .disabled {
    filter: alpha(opacity=60);
    opacity: .6;
    cursor: default !important;
    background: none !important;
    user-select: none
}

.selectric-items .selectric-group .selectric-group-label {
    font-weight: 700;
    padding-left: 10px;
    cursor: default;
    user-select: none;
    background: none;
    color: #444
}

.selectric-items .selectric-group.disabled li {
    filter: alpha(opacity=100);
    opacity: 1
}

.selectric-items .selectric-group li {
    padding-left: 25px
}

main {
    min-height: calc(100vh - var(--footerH))
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(143, 114, 137, .3);
    background-color: #f5f5f5
}

::-webkit-scrollbar {
    width: 6px;
    background-color: #A45E2A
}

::-webkit-scrollbar-thumb {
    background-color: #A45E2A
}

body::-webkit-scrollbar {
    display: none
}

body {
    -ms-overflow-style: none;
    scrollbar-width: none
}

@keyframes scroll {
    50% {
        background-size: 80%
    }

    to {
        background-position: 125% 0
    }
}

.fancybox-close-small.fancybox-button {
    background-color: #8f7289
}

.fancybox-close-small.fancybox-button svg path {
    fill: #fff
}

html[dir=rtl] .fancybox-close-small {
    left: 0;
    right: auto
}

.aj_loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffffe6;
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
    transition: all .8s cubic-bezier(.2, 1, .6, 1)
}

.aj_loader.show {
    pointer-events: auto;
    opacity: 1
}

.aj_loader.show .loader_wrapper {
    opacity: 1;
    transform: none
}

.aj_loader .inner_loader {
    position: relative;
    z-index: 10;
    transition: all .8s cubic-bezier(.2, 1, .6, 1)
}

.aj_loader .inner_loader .c_loader {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    position: relative;
    margin: 0 auto
}

.aj_loader .inner_loader .c_loader:after,
.aj_loader .inner_loader .c_loader:before {
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    top: 0;
    left: calc(50% - 10px);
    background-color: #535353;
    border-radius: 50%;
    animation: squaremove 1.4s linear infinite
}

.aj_loader .inner_loader .c_loader:after {
    bottom: 0;
    animation-delay: .7s
}

@keyframes squaremove {

    0%,
    to {
        transform: translate(0) rotate(0)
    }

    25% {
        transform: translate(40px, 40px) rotate(45deg)
    }

    50% {
        transform: translateY(80px) rotate(0)
    }

    75% {
        transform: translate(-40px, 40px) rotate(45deg)
    }
}

@media only screen and (max-width: 1024px) {
    .aj_loader .message_box {
        width: 70%
    }

    .aj_loader .message_box p {
        font-size: 2vw
    }
}

@media only screen and (max-width: 980px) {
    .aj_loader .message_box p {
        font-size: 2vw
    }
}

@media only screen and (max-width: 767px) {
    .aj_loader {
        position: fixed
    }

    .aj_loader .message_box {
        width: 100%
    }

    .aj_loader .message_box p {
        font-size: 4vw
    }
}

.progress-wrap {
    position: fixed;
    right: .6rem;
    bottom: 5.2rem;
    height: 35px;
    width: 35px;
    cursor: pointer;
    display: block;
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px #d7d7d747;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(15px);
    -ms-transform: translateY(15px);
    transform: translateY(15px);
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
    background-color: #fff;
    padding: 2px
}

@media only screen and (max-width: 1024px) {
    .progress-wrap {
        display: none
    }
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
}

.progress-wrap:hover:before {
    opacity: 1
}

.progress-wrap .icon_ {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.progress-wrap .icon_ svg {
    width: 17px;
    height: 17px
}

.progress-wrap svg path {
    fill: none
}

.progress-wrap svg.progress-circle path {
    stroke: #484848;
    stroke-width: 4;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear
}

html[dir=rtl] .progress-wrap {
    left: .6rem;
    right: auto
}

.popupBox {
    max-width: 1100px;
    width: 85vw;
    border-radius: 1.5rem;
    padding: 0 !important;
    background-color: #fff
}

@media only screen and (max-width: 767px) {
    .popupBox {
        width: 90vw
    }
}

.popupBox.md_box {
    max-width: 900px;
    position: relative
}

@media only screen and (min-width: 1630px) {
    .popupBox.md_box {
        max-width: 1000px
    }
}

.popupBox .formBox {
    margin-top: 1.5rem
}

.popupBox .name_ {
    font-size: 1.9vw;
    font-weight: 700;
    line-height: 1.2;
    padding-bottom: .5rem;
    border-bottom: 1px solid rgba(112, 112, 112, .37);
    margin-bottom: .5rem
}

@media only screen and (min-width: 1630px) {
    .popupBox .name_ {
        font-size: 1.75vw
    }
}

@media only screen and (max-width: 1024px) {
    .popupBox .name_ {
        font-size: 2.6vw
    }
}

@media only screen and (max-width: 980px) {
    .popupBox .name_ {
        font-size: 3.2vw
    }
}

@media only screen and (max-width: 767px) {
    .popupBox .name_ {
        font-size: 5.8vw
    }
}

.popupBox .name_ .colorSpan {
    opacity: .5;
    font-weight: 600
}

.popupBox .inner_ {
    padding: 3rem 2.5rem 2.5rem
}

@media only screen and (max-width: 1024px) {
    .popupBox .inner_ {
        padding: 3.1rem 2rem 2rem
    }
}

@media only screen and (max-width: 980px) {
    .popupBox .inner_ {
        padding: 3.5rem 1.8rem 1.8rem
    }
}

@media only screen and (max-width: 767px) {
    .popupBox .inner_ {
        padding: 3rem 1.2rem 1.2rem
    }
}

.popupBox .inner_ .content_box {
    width: 100%;
    flex: inherit;
    padding-top: 1em
}

.popupBox .metaWrap {
    display: grid;
    grid-gap: .5rem;
    margin-bottom: 1.5rem;
    font-weight: 700
}

@media only screen and (max-width: 767px) {
    .popupBox .metaWrap {
        margin-bottom: 1rem
    }
}

.popupBox .metaWrap .t_ {
    font-size: 1.4vw;
    line-height: 1.3
}

@media only screen and (min-width: 1630px) {
    .popupBox .metaWrap .t_ {
        font-size: 22px
    }
}

@media only screen and (max-width: 1024px) {
    .popupBox .metaWrap .t_ {
        font-size: 2vw
    }
}

@media only screen and (max-width: 980px) {
    .popupBox .metaWrap .t_ {
        font-size: 2.7vw
    }
}

@media only screen and (max-width: 767px) {
    .popupBox .metaWrap .t_ {
        font-size: 4.3vw
    }
}

.popupBox .metaWrap .d_ {
    font-size: .9rem
}

@media only screen and (min-width: 1630px) {
    .popupBox .metaWrap .d_ {
        font-size: 16px
    }
}

@media only screen and (max-width: 980px) {
    .popupBox .metaWrap .d_ {
        font-size: 1rem
    }
}

@media only screen and (max-width: 980px) {
    .popup_box {
        width: 85vw;
        padding: 0
    }
}

@media only screen and (max-width: 767px) {
    .popup_box {
        width: 94vw
    }
}

html[dir=rtl] .fancybox__content {
    direction: rtl
}

.lightMode .popupBox {
    background-color: #fff
}

.dropdown-content {
    background-color: #8f7289
}

.dropdown-content li>a,
.dropdown-content li>span {
    color: #fff;
    font-weight: 400
}

.dir_ltr {
    direction: ltr !important
}

.dir_rtl {
    direction: rtl !important
}

body>ul.dropdown-content {
    position: fixed;
    top: 10% !important;
    max-height: 400px
}

@media only screen and (max-width: 767px) {
    body>ul.dropdown-content {
        top: 27% !important
    }

    .fancybox-is-open .fancybox-stage {
        overflow-y: auto
    }
}

html[dir=rtl] .fancybox-stage {
    direction: rtl
}

html[dir=rtl] .fancybox-content {
    text-align: right
}

.noPaddTop {
    padding-top: 0 !important
}

.noPaddBottom {
    padding-bottom: 0 !important
}

picture,
img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain
}

.abs picture {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%
}

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

[data-fancybox] {
    cursor: pointer
}

.textBox figure {
    margin-block-start: 2em;
    margin-block-end: 2em
}

.textBox figure figcaption {
    background-color: #e8e8e8;
    padding: .8rem
}

.textBox figure.table tr {
    display: flex;
    align-items: center;
    flex-wrap: wrap
}

.textBox figure.table tr td {
    flex: 1
}

@media only screen and (max-width: 980px) {
    .textBox figure.table tr td {
        flex: inherit;
        width: 50%
    }
}

.textBox figure.table figure.media {
    margin-block-start: 0;
    margin-block-end: 0
}

.textBox audio,
.textBox canvas,
.textBox video {
    width: 100%;
    height: auto
}

@media only screen and (max-width: 767px) {
    .textBox.big_lineHeight.lg_ p {
        line-height: 1.6
    }
}

.textBox.big_lineHeight p {
    line-height: 2;
    margin-block-start: 2em;
    margin-block-end: 2em
}

@media only screen and (max-width: 1024px) {
    .textBox.big_lineHeight p {
        line-height: 1.8
    }
}

@media only screen and (max-width: 767px) {
    .textBox.big_lineHeight p {
        line-height: 2
    }
}

.textBox:not(.big_lineHeight) p:last-child {
    margin-bottom: 0
}

.textBox>*:first-child {
    margin-top: 0
}

.textBox>*:last-child {
    margin-bottom: 0
}

.textBox blockquote p,
.textBox blockquote {
    font-size: 1.1vw;
    line-height: 2;
    margin-left: 0;
    margin-right: 0;
    font-weight: 500
}

@media only screen and (min-width: 1630px) {

    .textBox blockquote p,
    .textBox blockquote {
        font-size: 1vw
    }
}

@media only screen and (min-width: 1025px) and (max-width: 1370px) and (min-height: 500px) and (max-height: 670px) {

    .textBox blockquote p,
    .textBox blockquote {
        font-size: 1.25vw
    }
}

@media only screen and (max-width: 1024px) {

    .textBox blockquote p,
    .textBox blockquote {
        font-size: 1.45vw
    }
}

@media only screen and (max-width: 980px) {

    .textBox blockquote p,
    .textBox blockquote {
        font-size: 2vw
    }
}

@media only screen and (max-width: 767px) {

    .textBox blockquote p,
    .textBox blockquote {
        font-size: 4vw
    }
}

.textBox figcaption,
.textBox p {
    font-size: 1.1vw;
    line-height: 2;
    font-weight: 500
}

@media only screen and (min-width: 1630px) {

    .textBox figcaption,
    .textBox p {
        font-size: 1vw
    }
}

@media only screen and (min-width: 1025px) and (max-width: 1370px) and (min-height: 500px) and (max-height: 670px) {

    .textBox figcaption,
    .textBox p {
        font-size: 1.25vw
    }
}

@media only screen and (max-width: 1024px) {

    .textBox figcaption,
    .textBox p {
        font-size: 1.45vw
    }
}

@media only screen and (max-width: 980px) {

    .textBox figcaption,
    .textBox p {
        font-size: 2vw
    }
}

@media only screen and (max-width: 767px) {

    .textBox figcaption,
    .textBox p {
        font-size: 4vw
    }
}

.textBox figcaption strong,
.textBox figcaption b,
.textBox p strong,
.textBox p b {
    font-weight: 700
}

.textBox a {
    transition: all .2s ease-in-out;
    text-decoration: underline;
    text-underline-offset: 6px;
    color: #535353
}

.textBox a:hover {
    color: #535353
}

.textBox.textBold p {
    font-weight: 600
}

.textBox.esm_ figcaption,
.textBox.esm_ p {
    font-size: 13px
}

.textBox.sm_ ol>li,
.textBox.sm_ ul>li,
.textBox.sm_ figcaption,
.textBox.sm_ p {
    font-size: 1vw;
    line-height: 1.8
}

@media only screen and (min-width: 1630px) {

    .textBox.sm_ ol>li,
    .textBox.sm_ ul>li,
    .textBox.sm_ figcaption,
    .textBox.sm_ p {
        font-size: 16px
    }
}

@media only screen and (min-width: 1025px) and (max-width: 1370px) and (min-height: 500px) and (max-height: 670px) {

    .textBox.sm_ ol>li,
    .textBox.sm_ ul>li,
    .textBox.sm_ figcaption,
    .textBox.sm_ p {
        font-size: 1.1vw
    }
}

@media only screen and (max-width: 1024px) {

    .textBox.sm_ ol>li,
    .textBox.sm_ ul>li,
    .textBox.sm_ figcaption,
    .textBox.sm_ p {
        font-size: 1.4vw
    }
}

@media only screen and (max-width: 980px) {

    .textBox.sm_ ol>li,
    .textBox.sm_ ul>li,
    .textBox.sm_ figcaption,
    .textBox.sm_ p {
        font-size: 1.9vw
    }
}

@media only screen and (max-width: 767px) {

    .textBox.sm_ ol>li,
    .textBox.sm_ ul>li,
    .textBox.sm_ figcaption,
    .textBox.sm_ p {
        font-size: 3.8vw
    }
}

.textBox.sm_ ol>li a,
.textBox.sm_ ul>li a,
.textBox.sm_ figcaption a,
.textBox.sm_ p a {
    color: #8f7289;
    transition: all .3s ease-in-out
}

.textBox.sm_ ol>li a:hover,
.textBox.sm_ ul>li a:hover,
.textBox.sm_ figcaption a:hover,
.textBox.sm_ p a:hover {
    text-shadow: 0 0 1px #8f7289
}

.textBox.med_ ol>li,
.textBox.med_ ul>li,
.textBox.med_ figcaption,
.textBox.med_ p {
    font-size: 1.2vw;
    line-height: 1.8
}

@media only screen and (min-width: 1630px) {

    .textBox.med_ ol>li,
    .textBox.med_ ul>li,
    .textBox.med_ figcaption,
    .textBox.med_ p {
        font-size: 1.1vw
    }
}

@media only screen and (max-width: 1024px) {

    .textBox.med_ ol>li,
    .textBox.med_ ul>li,
    .textBox.med_ figcaption,
    .textBox.med_ p {
        font-size: 1.8vw
    }
}

@media only screen and (max-width: 980px) {

    .textBox.med_ ol>li,
    .textBox.med_ ul>li,
    .textBox.med_ figcaption,
    .textBox.med_ p {
        font-size: 2.4vw
    }
}

@media only screen and (max-width: 767px) {

    .textBox.med_ ol>li,
    .textBox.med_ ul>li,
    .textBox.med_ figcaption,
    .textBox.med_ p {
        font-size: 4.6vw
    }
}

.textBox.med2_ ol>li,
.textBox.med2_ ul>li,
.textBox.med2_ figcaption,
.textBox.med2_ p {
    font-size: 1.42vw
}

@media only screen and (min-width: 1630px) {

    .textBox.med2_ ol>li,
    .textBox.med2_ ul>li,
    .textBox.med2_ figcaption,
    .textBox.med2_ p {
        font-size: 1.25vw
    }
}

@media only screen and (max-width: 1024px) {

    .textBox.med2_ ol>li,
    .textBox.med2_ ul>li,
    .textBox.med2_ figcaption,
    .textBox.med2_ p {
        font-size: 2vw
    }
}

@media only screen and (max-width: 980px) {

    .textBox.med2_ ol>li,
    .textBox.med2_ ul>li,
    .textBox.med2_ figcaption,
    .textBox.med2_ p {
        font-size: 2.65vw
    }
}

@media only screen and (max-width: 767px) {

    .textBox.med2_ ol>li,
    .textBox.med2_ ul>li,
    .textBox.med2_ figcaption,
    .textBox.med2_ p {
        font-size: 4.9vw
    }
}

.textBox.lg_ ol>li,
.textBox.lg_ ul>li,
.textBox.lg_ figcaption,
.textBox.lg_ p {
    font-size: 2vw;
    line-height: 1.8
}

@media only screen and (min-width: 1630px) {

    .textBox.lg_ ol>li,
    .textBox.lg_ ul>li,
    .textBox.lg_ figcaption,
    .textBox.lg_ p {
        font-size: 37px
    }
}

@media only screen and (max-width: 1024px) {

    .textBox.lg_ ol>li,
    .textBox.lg_ ul>li,
    .textBox.lg_ figcaption,
    .textBox.lg_ p {
        font-size: 2.8vw
    }
}

@media only screen and (max-width: 980px) {

    .textBox.lg_ ol>li,
    .textBox.lg_ ul>li,
    .textBox.lg_ figcaption,
    .textBox.lg_ p {
        font-size: 3.7vw
    }
}

@media only screen and (max-width: 767px) {

    .textBox.lg_ ol>li,
    .textBox.lg_ ul>li,
    .textBox.lg_ figcaption,
    .textBox.lg_ p {
        font-size: 5.3vw;
        line-height: 1.7
    }
}

.textBox.lg2_ ol>li,
.textBox.lg2_ ul>li,
.textBox.lg2_ figcaption,
.textBox.lg2_ p {
    font-size: 2.4vw;
    line-height: 2
}

@media only screen and (min-width: 1630px) {

    .textBox.lg2_ ol>li,
    .textBox.lg2_ ul>li,
    .textBox.lg2_ figcaption,
    .textBox.lg2_ p {
        font-size: 35px
    }
}

@media only screen and (max-width: 1024px) {

    .textBox.lg2_ ol>li,
    .textBox.lg2_ ul>li,
    .textBox.lg2_ figcaption,
    .textBox.lg2_ p {
        font-size: 2.7vw
    }
}

@media only screen and (max-width: 980px) {

    .textBox.lg2_ ol>li,
    .textBox.lg2_ ul>li,
    .textBox.lg2_ figcaption,
    .textBox.lg2_ p {
        font-size: 3.3vw
    }
}

@media only screen and (max-width: 767px) {

    .textBox.lg2_ ol>li,
    .textBox.lg2_ ul>li,
    .textBox.lg2_ figcaption,
    .textBox.lg2_ p {
        font-size: 5.5vw
    }
}

.textBox>ol:not(:first-child),
.textBox>ul:not(:first-child) {
    margin-top: 1.2rem
}

.textBox h1,
.textBox h2,
.textBox h3,
.textBox h4,
.textBox h5,
.textBox h6 {
    margin-top: 0;
    margin-bottom: 0rem;
    font-weight: 700
}

@media only screen and (max-width: 767px) {

    .textBox h1,
    .textBox h2,
    .textBox h3,
    .textBox h4,
    .textBox h5,
    .textBox h6 {
        margin-bottom: .3rem
    }
}

.textBox h1:not(:first-child),
.textBox h2:not(:first-child),
.textBox h3:not(:first-child),
.textBox h4:not(:first-child),
.textBox h5:not(:first-child),
.textBox h6:not(:first-child) {
    margin-top: 2.5rem
}

@media only screen and (max-width: 767px) {

    .textBox h1:not(:first-child),
    .textBox h2:not(:first-child),
    .textBox h3:not(:first-child),
    .textBox h4:not(:first-child),
    .textBox h5:not(:first-child),
    .textBox h6:not(:first-child) {
        margin-top: 1.25rem
    }
}

.textBox h2 {
    line-height: 1.4;
    font-size: 2.5vw
}

@media only screen and (min-width: 1630px) {
    .textBox h2 {
        font-size: 2.1vw
    }
}

@media only screen and (max-width: 1024px) {
    .textBox h2 {
        font-size: 2.9vw
    }
}

@media only screen and (max-width: 980px) {
    .textBox h2 {
        font-size: 3.5vw
    }
}

@media only screen and (max-width: 767px) {
    .textBox h2 {
        font-size: 7vw
    }
}

.textBox h3 {
    line-height: 1.2;
    font-size: 2.1vw
}

@media only screen and (min-width: 1630px) {
    .textBox h3 {
        font-size: 1.95vw
    }
}

@media only screen and (max-width: 1024px) {
    .textBox h3 {
        font-size: 2.5vw
    }
}

@media only screen and (max-width: 980px) {
    .textBox h3 {
        font-size: 3.2vw
    }
}

@media only screen and (max-width: 767px) {
    .textBox h3 {
        font-size: 6vw
    }
}

.textBox h4 {
    line-height: 1.6;
    font-size: 1.8vw
}

@media only screen and (min-width: 1630px) {
    .textBox h4 {
        font-size: 1.7vw
    }
}

@media only screen and (max-width: 1024px) {
    .textBox h4 {
        font-size: 2.3vw
    }
}

@media only screen and (max-width: 980px) {
    .textBox h4 {
        font-size: 3vw
    }
}

@media only screen and (max-width: 767px) {
    .textBox h4 {
        font-size: 5.5vw
    }
}

.textBox h5 {
    line-height: 1.6;
    font-size: 1.65vw
}

@media only screen and (min-width: 1630px) {
    .textBox h5 {
        font-size: 1.55vw
    }
}

@media only screen and (max-width: 1024px) {
    .textBox h5 {
        font-size: 2.1vw
    }
}

@media only screen and (max-width: 980px) {
    .textBox h5 {
        font-size: 2.8vw
    }
}

@media only screen and (max-width: 767px) {
    .textBox h5 {
        font-size: 5.2vw
    }
}

.textBox h6 {
    line-height: 1.6;
    font-size: 1.45vw
}

@media only screen and (min-width: 1630px) {
    .textBox h6 {
        font-size: 1.3vw
    }
}

@media only screen and (max-width: 1024px) {
    .textBox h6 {
        font-size: 1.8vw
    }
}

@media only screen and (max-width: 980px) {
    .textBox h6 {
        font-size: 2.5vw
    }
}

@media only screen and (max-width: 767px) {
    .textBox h6 {
        font-size: 4.9vw
    }
}

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

.textBox ul.styel1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem
}

@media only screen and (min-width: 1630px) {
    .textBox ul.styel1 {
        gap: 1.5rem
    }
}

@media only screen and (max-width: 1024px) {
    .textBox ul.styel1 {
        grid-template-columns: 100%;
        gap: .5rem
    }
}

@media only screen and (max-width: 980px) {
    .textBox ul.styel1 {
        gap: 1rem
    }
}

.textBox ul.styel1>li {
    padding: 2.5rem;
    margin: 0;
    background-color: #efece96b;
    border-radius: 1rem
}

@media only screen and (min-width: 1025px) and (max-width: 1370px) and (min-height: 500px) and (max-height: 670px) {
    .textBox ul.styel1>li {
        padding: 1.8rem
    }
}

@media only screen and (max-width: 1024px) {
    .textBox ul.styel1>li {
        padding: 1.5rem
    }
}

.textBox ul.styel1>li:before {
    display: none
}

.textBox ul>li {
    position: relative;
    padding-inline-start: 1.5rem;
    margin-bottom: .8em;
    font-size: 1.1vw;
    line-height: 2;
    font-weight: 500
}

@media only screen and (min-width: 1630px) {
    .textBox ul>li {
        font-size: 1vw
    }
}

@media only screen and (min-width: 1025px) and (max-width: 1370px) and (min-height: 500px) and (max-height: 670px) {
    .textBox ul>li {
        font-size: 1.25vw
    }
}

@media only screen and (max-width: 1024px) {
    .textBox ul>li {
        font-size: 1.45vw
    }
}

@media only screen and (max-width: 980px) {
    .textBox ul>li {
        font-size: 2vw
    }
}

@media only screen and (max-width: 767px) {
    .textBox ul>li {
        font-size: 4vw;
        padding-inline-start: 1.6em
    }
}

.textBox ul>li:last-child {
    margin-bottom: 0
}

.textBox ul>li>ul,
.textBox ul>li>ol {
    margin-top: .8rem
}

.textBox ul>li:before {
    content: "";
    position: absolute;
    left: 0;
    top: .65rem;
    width: .45rem;
    height: .45rem;
    border-radius: 50%;
    background: #8f7289
}

@media only screen and (max-width: 1024px) {
    .textBox ul>li:before {
        top: .7rem;
        width: 9px;
        height: 9px
    }
}

@media only screen and (max-width: 980px) {
    .textBox ul>li:before {
        top: .75rem
    }
}

@media only screen and (max-width: 767px) {
    .textBox ul>li:before {
        top: .7rem
    }
}

.textBox ol {
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: items
}

.textBox ol>li {
    counter-increment: items
}

.textBox ol>li:before {
    content: "0" counter(items)
}

.textBox ol>li:nth-child(n+10):before {
    content: counter(items)
}

.textBox ol>li {
    position: relative;
    padding-inline-start: 1.7em;
    margin-bottom: .8em;
    font-size: 1.1vw;
    line-height: 1.7;
    font-weight: 500
}

@media only screen and (min-width: 1630px) {
    .textBox ol>li {
        font-size: 1vw
    }
}

@media only screen and (min-width: 1025px) and (max-width: 1370px) and (min-height: 500px) and (max-height: 670px) {
    .textBox ol>li {
        font-size: 1.25vw
    }
}

@media only screen and (max-width: 1024px) {
    .textBox ol>li {
        font-size: 1.45vw
    }
}

@media only screen and (max-width: 980px) {
    .textBox ol>li {
        font-size: 2vw
    }
}

@media only screen and (max-width: 767px) {
    .textBox ol>li {
        font-size: 4vw;
        padding-inline-start: 1.6em
    }
}

.textBox ol>li:last-child {
    margin-bottom: 0
}

.textBox ol>li>ul,
.textBox ol>li>ol {
    margin-top: .8rem
}

.textBox ol>li:before {
    position: absolute;
    left: 0;
    top: .3rem;
    width: 1.4rem;
    height: 1rem;
    font-size: 90%;
    display: flex;
    align-items: center;
    justify-content: flex-start
}

@media only screen and (max-width: 1024px) {
    .textBox ol>li:before {
        top: .3rem
    }
}

@media only screen and (max-width: 980px) {
    .textBox ol>li:before {
        top: .4rem
    }
}

@media only screen and (max-width: 767px) {
    .textBox ol>li:before {
        top: .5rem
    }
}

html[dir=rtl] .textBox h1,
html[dir=rtl] .textBox h2,
html[dir=rtl] .textBox h3,
html[dir=rtl] .textBox h4,
html[dir=rtl] .textBox h5,
html[dir=rtl] .textBox h6 {
    line-height: 1.5
}

html[dir=rtl] .textBox ol li:before,
html[dir=rtl] .textBox ul li:before {
    right: 0;
    left: auto
}

html[dir=rtl] .textBox blockquote:before {
    right: -1.5rem;
    left: auto
}

@media only screen and (max-width: 767px) {
    html[dir=rtl] .textBox blockquote:before {
        right: -.5rem
    }
}

.swiper-pagination {
    position: relative;
    text-align: inherit;
    display: flex;
    gap: .4rem;
    margin-top: 2rem
}

.swiper-pagination.center {
    justify-content: center
}

@media only screen and (max-width: 767px) {
    .swiper-pagination {
        padding-bottom: .5rem
    }
}

.swiper-pagination .swiper-pagination-bullet {
    opacity: 1;
    border-radius: 1rem;
    background-color: #8f7289;
    width: 7px;
    height: 7px;
    max-width: 7px;
    min-width: 7px;
    transition: all .3s ease-in-out;
    flex-grow: 1;
    position: relative;
    cursor: pointer
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    flex-grow: 50;
    max-width: 50px
}

.swiper-scrollbar {
    width: 100%;
    height: 2px;
    background-color: #00000026;
    overflow: hidden
}

.swiper-scrollbar .swiper-scrollbar-drag {
    position: relative;
    background-color: transparent
}

.swiper-scrollbar .swiper-scrollbar-drag:after {
    right: 0;
    content: "";
    position: absolute;
    top: 0;
    background-color: #535353;
    height: 2px;
    width: 90vw
}

.mTop1 {
    margin-top: 1rem
}

.mTop2 {
    margin-top: 2rem
}

.mTop3 {
    margin-top: 3rem
}

.mTop4 {
    margin-top: 4rem
}

.mTop5 {
    margin-top: 5rem
}

.mBottom4 {
    margin-bottom: 4rem
}

@media only screen and (max-width: 767px) {
    .mBottom4 {
        margin-bottom: 2rem
    }
}

hr {
    background-color: #0000001a;
    border: none;
    display: flex;
    width: 100%;
    height: 1px
}

.fin_anim {
    transform: translateY(3rem);
    opacity: 0
}

.fin_animLoop {
    transform: translateY(3rem);
    opacity: 0;
    transition: opacity .4s linear, transform 1.8s cubic-bezier(.19, 1, .22, 1), clip-path 1.8s cubic-bezier(.19, 1, .22, 1)
}

.dom-loaded .inView .fin_anim {
    transition: opacity .4s linear, transform 1.8s cubic-bezier(.19, 1, .22, 1), filter 1.8s cubic-bezier(.19, 1, .22, 1)
}

.dom-loaded .inView .fin_anim.d1 {
    transition-delay: .6s
}

.dom-loaded .inView .fin_anim.d2 {
    transition-delay: .8s
}

.dom-loaded .inView .fin_anim.d3 {
    transition-delay: 1s
}

.dom-loaded .inView .fin_anim.d4 {
    transition-delay: 1.2s
}

.dom-loaded .inView .fin_animLoop,
.dom-loaded .inView .fin_anim {
    transform: translateY(0);
    opacity: 1
}

.dom-loaded .inView .fin_animLoop:nth-child(1) {
    transition-delay: .6s
}

.dom-loaded .inView .fin_animLoop:nth-child(2) {
    transition-delay: .8s
}

.dom-loaded .inView .fin_animLoop:nth-child(3) {
    transition-delay: 1s
}

.dom-loaded .inView .fin_animLoop:nth-child(4) {
    transition-delay: 1.2s
}

.dom-loaded .inView .fin_animLoop:nth-child(5) {
    transition-delay: 1.4s
}

.dom-loaded .inView .fin_animLoop:nth-child(6) {
    transition-delay: 1.6s
}

.dom-loaded .inView .fin_animLoop:nth-child(7) {
    transition-delay: 1.8s
}

.dom-loaded .inView .fin_animLoop:nth-child(8) {
    transition-delay: 2s
}

.dom-loaded .inView .fin_animLoop:nth-child(9) {
    transition-delay: 2.2s
}

.dom-loaded .inView .fin_animLoop:nth-child(10) {
    transition-delay: 2.4s
}

.dom-loaded .inView .fin_animLoop:nth-child(11) {
    transition-delay: 2.6s
}

.dom-loaded .inView .fin_animLoop:nth-child(12) {
    transition-delay: 2.8s
}

.dom-loaded .inView .fin_animLoop:nth-child(13) {
    transition-delay: 3s
}

.dom-loaded .inView .fin_animLoop:nth-child(14) {
    transition-delay: 3.2s
}

.dom-loaded .inView .fin_animLoop:nth-child(15) {
    transition-delay: 3.4s
}

.dom-loaded .inView .fin_animLoop:nth-child(16) {
    transition-delay: 3.6s
}

.dom-loaded .inView .fin_animLoop:nth-child(17) {
    transition-delay: 3.8s
}

.dom-loaded .inView .fin_animLoop:nth-child(18) {
    transition-delay: 4s
}

.dom-loaded .inView .fin_animLoop:nth-child(19) {
    transition-delay: 4.2s
}

.dom-loaded .inView .fin_animLoop:nth-child(20) {
    transition-delay: 4.4s
}

.dom-loaded .inView .fin_animLoop:nth-child(21) {
    transition-delay: 4.6s
}

.dom-loaded .inView .fin_animLoop:nth-child(22) {
    transition-delay: 4.8s
}

.dom-loaded .inView .fin_animLoop:nth-child(23) {
    transition-delay: 5s
}

.dom-loaded .inView .fin_animLoop:nth-child(24) {
    transition-delay: 5.2s
}

.dom-loaded .inView .fin_animLoop:nth-child(25) {
    transition-delay: 5.4s
}

.dom-loaded .inView .fin_animLoop:nth-child(26) {
    transition-delay: 5.6s
}

.dom-loaded .inView .fin_animLoop:nth-child(27) {
    transition-delay: 5.8s
}

.dom-loaded .inView .fin_animLoop:nth-child(28) {
    transition-delay: 6s
}

.dom-loaded .inView .fin_animLoop:nth-child(29) {
    transition-delay: 6.2s
}

.dom-loaded .inView .fin_animLoop:nth-child(30) {
    transition-delay: 6.4s
}

.dom-loaded .inView .fin_animLoop:nth-child(31) {
    transition-delay: 6.6s
}

.dom-loaded .inView .fin_animLoop:nth-child(32) {
    transition-delay: 6.8s
}

.dom-loaded .inView .fin_animLoop:nth-child(33) {
    transition-delay: 7s
}

.dom-loaded .inView .fin_animLoop:nth-child(34) {
    transition-delay: 7.2s
}

.dom-loaded .inView .fin_animLoop:nth-child(35) {
    transition-delay: 7.4s
}

.modal-overlay {
    z-index: 100002 !important
}

.datepicker-modal {
    z-index: 100005 !important
}

body>ul.dropdown-content {
    z-index: 100010;
    list-style: none;
    padding: 0;
    margin: 0
}

.fl-social {
    display: grid;
    grid-gap: 1.5rem;
    position: fixed;
    right: .5rem;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    padding: 0;
    z-index: 100;
    list-style: none
}

@media screen and (max-width: 1024px) {
    .fl-social {
        display: none
    }
}

.fl-social .sLink {
    transform: translateY(1.5rem) scaleY(1.2);
    opacity: 0;
    transition: opacity .4s linear, transform 1.8s cubic-bezier(.19, 1, .22, 1)
}

.fl-social .sLink .inner {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: .3rem
}

@media screen and (max-width: 980px) {
    .fl-social .sLink .inner {
        width: 28px;
        height: 28px
    }
}

.fl-social .sLink .inner:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    background-color: #8f7289b3;
    transform: scale(0) rotate(30deg);
    transition: all .4s ease-in-out
}

.fl-social .sLink .inner svg {
    width: 100%;
    height: auto;
    transition: all .4s ease-in-out;
    position: relative;
    z-index: 5
}

.fl-social .sLink .inner:hover:before {
    transform: scale(1) rotate(0)
}

.fl-social .sLink .inner:hover svg {
    transform: scale(.9)
}

.scrolled .fl-social .sLink .inner {
    border-radius: 5px;
    background-color: #8f728966
}

.dom-loaded .fl-social .sLink {
    opacity: 1;
    transform: none;
    transform: translateY(0) scaleY(1)
}

.dom-loaded .fl-social .sLink:nth-child(1) {
    transition-delay: 1s
}

.dom-loaded .fl-social .sLink:nth-child(2) {
    transition-delay: 1.2s
}

.dom-loaded .fl-social .sLink:nth-child(3) {
    transition-delay: 1.4s
}

.dom-loaded .fl-social .sLink:nth-child(4) {
    transition-delay: 1.6s
}

.dom-loaded .fl-social .sLink:nth-child(5) {
    transition-delay: 1.8s
}

.sectionTitle {
    margin-bottom: 1.5rem;
    overflow: hidden
}

@media only screen and (max-width: 980px) {
    .sectionTitle {
        margin-bottom: 1.5rem
    }
}

@media only screen and (max-width: 767px) {
    .sectionTitle {
        margin-bottom: 1rem
    }
}

.sectionTitle.text-center>* {
    align-items: center
}

.sectionTitle.text-center>*:after {
    left: 50%;
    transform: translate(-50%)
}

.sectionTitle span {
    position: relative;
    display: block;
    font-style: normal;
    transform: translateY(100%);
    opacity: 0;
    transition: all .8s cubic-bezier(.215, .61, .355, 1)
}

@media only screen and (max-width: 767px) {
    .sectionTitle span {
        display: inline
    }
}

.sectionTitle>* {
    margin: 0;
    line-height: 1.2;
    font-weight: 700;
    font-size: 2.8vw;
    padding-bottom: .8rem;
    position: relative;
    display: inline-block
}

@media only screen and (min-width: 1630px) {
    .sectionTitle>* {
        font-size: 2.4vw
    }
}

@media only screen and (max-width: 1024px) {
    .sectionTitle>* {
        font-size: 3vw
    }
}

@media only screen and (max-width: 980px) {
    .sectionTitle>* {
        font-size: 3.6vw
    }
}

@media only screen and (max-width: 767px) {
    .sectionTitle>* {
        font-size: 6.5vw
    }
}

.sectionTitle>*:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 120px;
    height: 1px;
    background-color: #535353;
    max-width: 100%
}

.sectionTitle.color {
    color: #8f7289
}

html[dir=rtl] .sectionTitle>* {
    font-weight: 700;
    line-height: 1.5
}

.dom-loaded .inView .sectionTitle span {
    opacity: 1;
    transform: translateY(0)
}

.dom-loaded .inView .sectionTitle span:nth-child(1) {
    transition-delay: .55s
}

.dom-loaded .inView .sectionTitle span:nth-child(2) {
    transition-delay: .8s
}

.dom-loaded .inView .sectionTitle span:nth-child(3) {
    transition-delay: 1.05s
}

.dom-loaded .inView .sectionTitle span:nth-child(4) {
    transition-delay: 1.3s
}

.dom-loaded .inView .sectionTitle span:nth-child(5) {
    transition-delay: 1.55s
}

.dom-loaded .inView .sectionTitle span:nth-child(6) {
    transition-delay: 1.8s
}

.dom-loaded .inView .sectionTitle span:nth-child(7) {
    transition-delay: 2.05s
}

.dom-loaded .inView .sectionTitle span:nth-child(8) {
    transition-delay: 2.3s
}

.dom-loaded .inView .sectionTitle span:nth-child(9) {
    transition-delay: 2.55s
}

.dom-loaded .inView .sectionTitle span:nth-child(10) {
    transition-delay: 2.8s
}

.dom-loaded .inView .sectionTitle span:nth-child(11) {
    transition-delay: 3.05s
}

.dom-loaded .inView .sectionTitle span:nth-child(12) {
    transition-delay: 3.3s
}

.dom-loaded .inView .sectionTitle span:nth-child(13) {
    transition-delay: 3.55s
}

.dom-loaded .inView .sectionTitle span:nth-child(14) {
    transition-delay: 3.8s
}

.dom-loaded .inView .sectionTitle span:nth-child(15) {
    transition-delay: 4.05s
}

.sectionTitleSmall {
    margin-bottom: 1.2rem
}

@media only screen and (max-width: 767px) {
    .sectionTitleSmall {
        margin-bottom: 1rem
    }
}

.sectionTitleSmall.text-center>* {
    align-items: center
}

.sectionTitleSmall span {
    position: relative;
    overflow: hidden;
    display: block;
    opacity: 0;
    transform: translateY(2rem);
    transform-origin: left top;
    transition: all .8s cubic-bezier(.215, .61, .355, 1)
}

@media only screen and (max-width: 767px) {
    .sectionTitleSmall span {
        display: inline
    }
}

.sectionTitleSmall>* {
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
    font-size: 2.1vw
}

@media only screen and (min-width: 1630px) {
    .sectionTitleSmall>* {
        font-size: 1.95vw
    }
}

@media only screen and (max-width: 1024px) {
    .sectionTitleSmall>* {
        font-size: 2.5vw
    }
}

@media only screen and (max-width: 980px) {
    .sectionTitleSmall>* {
        font-size: 3.2vw
    }
}

@media only screen and (max-width: 767px) {
    .sectionTitleSmall>* {
        font-size: 6vw
    }
}

.dom-loaded .inView .sectionTitleSmall span {
    opacity: 1;
    transform: translateY(0)
}

.dom-loaded .inView .sectionTitleSmall span:nth-child(1) {
    transition-delay: .35s
}

.dom-loaded .inView .sectionTitleSmall span:nth-child(2) {
    transition-delay: .6s
}

.dom-loaded .inView .sectionTitleSmall span:nth-child(3) {
    transition-delay: .85s
}

.dom-loaded .inView .sectionTitleSmall span:nth-child(4) {
    transition-delay: 1.1s
}

.dom-loaded .inView .sectionTitleSmall span:nth-child(5) {
    transition-delay: 1.35s
}

html[dir=rtl] .sectionTitleSmall>* {
    line-height: 1.3
}

.titleWrap {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-gap: 1rem;
    align-items: flex-end;
    margin-bottom: 1.5rem
}

@media screen and (max-width: 980px) {
    .titleWrap {
        margin-bottom: 1rem
    }
}

@media screen and (max-width: 767px) {
    .titleWrap {
        grid-template-columns: 100%;
        margin-bottom: .8rem
    }
}

.titleWrap .sectionTitle {
    margin-bottom: -.4rem
}

@media screen and (max-width: 767px) {
    .titleWrap .sectionTitle {
        margin-bottom: 0
    }
}

.titleWrap .selectric {
    background-color: #1d1d1d
}

.toolWrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 2rem
}

@media only screen and (max-width: 767px) {
    .toolWrap {
        justify-content: flex-start
    }

    .toolWrap.mobileSpace {
        justify-content: space-between
    }
}

.toolWrap .selectric-wrapper {
    min-width: 250px
}

.toolWrap .tItem {
    transform: translateY(1.5rem);
    opacity: 0;
    transition: all .6s ease-in-out;
    display: flex
}

@media only screen and (max-width: 340px) {
    .toolWrap .tItem {
        margin-inline-start: 1rem
    }
}

.toolWrap .link_ {
    transition: all .3s ease-in-out;
    opacity: .61;
    font-size: 1rem
}

@media only screen and (max-width: 980px) {
    .toolWrap .link_ {
        font-size: 1.15rem
    }
}

.toolWrap .link_:hover,
.toolWrap .link_.active {
    opacity: 1;
    color: #8f7289
}

.toolWrap .selectric-wrapper {
    margin-top: 0
}

.toolWrap .selectric-wrapper .selectric .label {
    height: 2.2rem
}

.toolWrap .selectric-wrapper .selectric .button {
    height: 2.2rem;
    line-height: 2.2rem
}

.inView .toolWrap .tItem {
    transform: none;
    opacity: 1
}

.inView .toolWrap .tItem:nth-child(1) {
    transition-delay: .4s
}

.inView .toolWrap .tItem:nth-child(2) {
    transition-delay: .5s
}

.inView .toolWrap .tItem:nth-child(3) {
    transition-delay: .6s
}

.inView .toolWrap .tItem:nth-child(4) {
    transition-delay: .7s
}

.inView .toolWrap .tItem:nth-child(5) {
    transition-delay: .8s
}

.tNavBox {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-gap: 3.5rem;
    align-items: flex-end
}

@media only screen and (max-width: 980px) {
    .tNavBox {
        grid-gap: 2rem
    }
}

@media only screen and (max-width: 767px) {
    .tNavBox {
        grid-template-columns: 100%;
        grid-gap: .3rem
    }
}

.tNavWrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center
}

@media only screen and (max-width: 767px) {
    .tNavWrap {
        justify-content: flex-start
    }
}

.tNavWrap .tnav {
    margin-inline-start: 2.5rem;
    transform: translateY(1.5rem);
    opacity: 0;
    transition: all .6s ease-in-out
}

@media only screen and (max-width: 980px) {
    .tNavWrap .tnav {
        margin-inline-start: 1.5rem
    }
}

@media only screen and (max-width: 340px) {
    .tNavWrap .tnav {
        margin-inline-start: 1rem
    }
}

.tNavWrap .tnav:first-child {
    margin-inline-start: 0
}

.tNavWrap .more.normal_:hover,
.tNavWrap .more.normal_.active {
    color: #8f7289
}

.tNavWrap .more.normal_:hover:before,
.tNavWrap .more.normal_.active:before {
    transform: scaleX(1)
}

.inView .tNavWrap .tnav {
    transform: none;
    opacity: 1
}

.inView .tNavWrap .tnav:nth-child(1) {
    transition-delay: .4s
}

.inView .tNavWrap .tnav:nth-child(2) {
    transition-delay: .5s
}

.inView .tNavWrap .tnav:nth-child(3) {
    transition-delay: .6s
}

.inView .tNavWrap .tnav:nth-child(4) {
    transition-delay: .7s
}

.inView .tNavWrap .tnav:nth-child(5) {
    transition-delay: .8s
}

@media only screen and (max-width: 767px) {
    .hideOnMobile {
        display: none
    }
}

.showOnMobile {
    display: none
}

@media only screen and (max-width: 767px) {
    .showOnMobile {
        display: flex;
        align-items: center;
        justify-content: space-between
    }
}

.homePage .floatIcon {
    bottom: 1rem
}

.floatIcon {
    position: fixed;
    right: 1rem;
    bottom: 5rem;
    pointer-events: auto;
    z-index: 150
}

@media only screen and (max-width: 980px) {
    .floatIcon {
        bottom: 6rem
    }
}

.floatIcon .inner_ {
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    background-color: #ddd;
    border-radius: 50%;
    padding: .75rem;
    transition: all .3s ease-in-out
}

@media only screen and (min-width: 1630px) {
    .floatIcon .inner_ {
        width: 45px;
        height: 45px
    }
}

.floatIcon .inner_:hover {
    background-color: #d3d3d3;
    transform: scale(1.1)
}

.floatIcon .inner_ svg {
    width: 100%;
    height: auto
}

html[dir=rtl] .floatIcon {
    left: 1rem;
    right: auto
}

.paginationWrapper {
    margin-top: 2rem
}

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

.paginationWrapper .pagination {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0
}

@media only screen and (max-width: 767px) {
    .paginationWrapper .pagination {
        gap: .3rem
    }
}

.paginationWrapper .page-link {
    width: 35px;
    height: 35px;
    background-color: #8f72894d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 13px;
    font-weight: 700;
    transition: all .4s ease-in-out;
    cursor: pointer
}

@media only screen and (min-width: 1630px) {
    .paginationWrapper .page-link {
        width: 40px;
        height: 40px;
        font-size: 15px
    }
}

@media only screen and (max-width: 980px) {
    .paginationWrapper .page-link {
        width: 35px;
        height: 35px
    }
}

.paginationWrapper .page-link:hover {
    transform: scale(1.1);
    background-color: #8f7289a6
}

.paginationWrapper .page-link svg {
    height: 11px;
    width: auto
}

@media only screen and (max-width: 767px) {
    .paginationWrapper .page-link svg {
        height: 10px
    }
}

.paginationWrapper .page-link.active {
    background-color: #8f7289
}

.paginationWrapper .page-link.disabled,
.paginationWrapper .disabled .page-link {
    color: #a0a0a0;
    background-color: #e8e8e8b3;
    pointer-events: none
}

html[dir=rtl] .paginationWrapper .page-link svg {
    transform: scale(-1)
}

.swal2-actions button {
    outline: none !important;
    box-shadow: none !important
}

footer .floatSocial {
    display: none
}

@media only screen and (max-width: 767px) {
    footer .floatSocial {
        display: block;
        position: relative;
        top: inherit;
        right: inherit;
        transform: none;
        background: transparent;
        padding: 0
    }

    footer .floatSocial ul {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem
    }

    footer .floatSocial .link_ {
        color: #fff
    }

    footer .floatSocial .link_:before {
        transform: scale(1);
        opacity: 1
    }
}

.floatSocial {
    position: fixed;
    right: .5rem;
    z-index: 100;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fffc;
    border-radius: 2rem;
    padding: 5px 4px
}

@media only screen and (max-width: 767px) {
    .floatSocial {
        display: none
    }
}

.floatSocial ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: .5rem
}

.floatSocial .link_ {
    color: #000;
    transition: all .4s ease-in-out;
    position: relative;
    width: 38px;
    height: 38px;
    aspect-ratio: 2/2;
    display: flex;
    align-items: center;
    justify-content: center
}

.floatSocial .link_ svg {
    width: 50%;
    height: auto;
    position: relative;
    z-index: 10
}

.floatSocial .link_:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #8f7289;
    border-radius: 50%;
    transition: all .4s ease-in-out;
    transform: scale(0);
    opacity: .3
}

.floatSocial .link_:hover:before {
    transform: scale(1)
}

html[dir=rtl] .floatSocial {
    left: .5rem;
    right: auto
}

.textColorBlack {
    color: #000
}

body .swal2-icon {
    font-family: Montserrat, Univers Next Arabic, sans-serif !important
}

body .swal2-icon .swal2-icon-content {
    font-size: 52px
}

body .swal2-popup {
    border-radius: 1.5rem
}

body .swal2-popup .swal2-content {
    font-family: Montserrat, Univers Next Arabic, sans-serif !important;
    font-size: 1.1vw;
    line-height: 1.7;
    font-weight: 500
}

@media only screen and (min-width: 1630px) {
    body .swal2-popup .swal2-content {
        font-size: 1vw
    }
}

@media only screen and (min-width: 1025px) and (max-width: 1370px) and (min-height: 500px) and (max-height: 670px) {
    body .swal2-popup .swal2-content {
        font-size: 1.25vw
    }
}

@media only screen and (max-width: 1024px) {
    body .swal2-popup .swal2-content {
        font-size: 1.45vw
    }
}

@media only screen and (max-width: 980px) {
    body .swal2-popup .swal2-content {
        font-size: 2vw
    }
}

@media only screen and (max-width: 767px) {
    body .swal2-popup .swal2-content {
        font-size: 4vw
    }
}

body .swal2-popup .swal2-content .alert {
    text-align: left
}

body .swal2-popup .swal2-content .alert.alert-danger>li:before {
    background-color: #fd625c
}

body .swal2-popup .swal2-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem
}

body .swal2-popup .swal2-content ul>li {
    position: relative;
    padding-inline-start: 1.3rem;
    font-size: 1.1vw;
    line-height: 1.5;
    font-weight: 500
}

@media only screen and (min-width: 1630px) {
    body .swal2-popup .swal2-content ul>li {
        font-size: .9vw
    }
}

@media only screen and (min-width: 1025px) and (max-width: 1370px) and (min-height: 500px) and (max-height: 670px) {
    body .swal2-popup .swal2-content ul>li {
        font-size: 1.25vw
    }
}

@media only screen and (max-width: 1024px) {
    body .swal2-popup .swal2-content ul>li {
        font-size: 1.45vw
    }
}

@media only screen and (max-width: 980px) {
    body .swal2-popup .swal2-content ul>li {
        font-size: 2vw
    }
}

@media only screen and (max-width: 767px) {
    body .swal2-popup .swal2-content ul>li {
        font-size: 4vw;
        padding-inline-start: 1.5rem
    }
}

body .swal2-popup .swal2-content ul>li:last-child {
    margin-bottom: 0
}

body .swal2-popup .swal2-content ul>li:before {
    content: "";
    position: absolute;
    left: 0;
    top: .5rem;
    width: .45rem;
    height: .45rem;
    border-radius: 50%;
    background: #8f7289
}

@media only screen and (min-width: 1630px) {
    body .swal2-popup .swal2-content ul>li:before {
        top: .6rem
    }
}

@media only screen and (max-width: 1024px) {
    body .swal2-popup .swal2-content ul>li:before {
        top: .45rem;
        width: 8px;
        height: 8px
    }
}

@media only screen and (max-width: 980px) {
    body .swal2-popup .swal2-content ul>li:before {
        top: .55rem
    }
}

@media only screen and (max-width: 767px) {
    body .swal2-popup .swal2-content ul>li:before {
        top: .6rem
    }
}

body .swal2-popup .swal2-actions {
    display: flex;
    gap: .5rem
}

body .swal2-popup .swal2-actions>button {
    border-radius: 2rem;
    margin: 0;
    transition: all .4s ease-in-out
}

body .swal2-popup .swal2-actions>button:hover {
    opacity: .8
}

body .swal2-popup .swal2-actions>button.swal2-confirm {
    background-color: #535353 !important;
    border-color: #535353 !important
}

body .swal2-popup.swal2-icon-error .swal2-actions>button.swal2-confirm {
    background-color: #fd625c !important;
    border-color: #fd625c !important
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 200;
    background: transparent;
    transition: all .5s ease-in-out
}

header:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 10;
    pointer-events: none;
    transition: all .5s ease-in-out
}

@media only screen and (max-width: 1024px) {
    header:before {
        transition: all .3s ease-in-out
    }
}

header .navbar {
    align-items: inherit;
    display: grid;
    align-items: center;
    grid-gap: 1.5rem;
    padding: 1.5rem 0;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(-2rem);
    transition: transform .8s cubic-bezier(.215, .61, .355, 1) .3s, opacity .8s cubic-bezier(.215, .61, .355, 1) .3s;
    position: relative;
    z-index: 20;
    grid-template-columns: auto 1fr
}

@media only screen and (max-width: 767px) {
    header .navbar {
        grid-gap: .5rem;
        grid-template-columns: auto 1fr
    }
}

header .logoBox {
    z-index: 25;
    display: flex;
    align-items: center;
    transition: all .4s ease-in-out
}

header .logoBox:last-child {
    justify-content: flex-end
}

@media only screen and (max-width: 767px) {
    header .logoBox:last-child {
        position: absolute;
        left: 0;
        top: 15px;
        height: calc(100% - 30px)
    }

    header .logoBox:last-child .navbar-brand {
        height: 100%
    }

    header .logoBox:last-child .navbar-brand img {
        height: 100%;
        width: auto
    }
}

@media only screen and (max-width: 767px) {
    header .logoBox {
        justify-content: flex-start
    }
}

header .logoBox .navbar-brand {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative
}

header .logoBox .brandEl {
    display: none
}

@media only screen and (max-width: 1024px) {
    header .logoBox .brandEl {
        display: block
    }
}

header .logoBox .fullLogo {
    transition: all .4s ease-in-out;
    height: 4rem;
    width: auto
}

@media only screen and (min-width: 1630px) {
    header .logoBox .fullLogo {
        height: 4.1rem
    }
}

@media only screen and (min-width: 1025px) and (max-width: 1370px) and (min-height: 500px) and (max-height: 670px) {
    header .logoBox .fullLogo {
        height: 3rem
    }
}

@media only screen and (max-width: 1024px) {
    header .logoBox .fullLogo {
        height: 70px
    }
}

@media only screen and (max-width: 767px) {
    header .logoBox .fullLogo {
        height: auto;
        width: 100%;
        max-width: 62vw
    }
}

header .logoBox .shortLogo {
    transition: all .4s ease-in-out;
    height: 4.7rem;
    width: auto
}

@media only screen and (min-width: 1630px) {
    header .logoBox .shortLogo {
        height: 5.5rem
    }
}

@media only screen and (min-width: 1025px) and (max-width: 1370px) and (min-height: 500px) and (max-height: 670px) {
    header .logoBox .shortLogo {
        height: 4rem
    }
}

@media only screen and (max-width: 1024px) {
    header .logoBox .shortLogo {
        height: 60px
    }
}

header .centerBox {
    display: flex;
    align-items: center;
    gap: 1rem
}

@media only screen and (max-width: 1024px) {
    header .centerBox {
        justify-content: flex-end
    }
}

@media only screen and (max-width: 767px) {
    header .centerBox {
        justify-content: flex-end
    }
}

header .sMenu {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: .5rem
}

@media only screen and (max-width: 1024px) {
    header .sMenu {
        align-items: center
    }
}

header .sMenu li {
    transition: all .3s ease-in-out
}

@media only screen and (max-width: 767px) {
    header .sMenu li:not(.no_hide) {
        display: none
    }
}

header .sMenu li.smallMr {
    margin-inline-start: .3rem
}

@media only screen and (min-width: 1630px) {
    header .sMenu li.smallMr {
        margin-inline-start: .8rem
    }
}

@media only screen and (max-width: 1024px) {
    header .sMenu li.smallMr {
        margin-inline-start: .5rem
    }
}

header .nav-link {
    font-size: 1.05vw;
    position: relative;
    line-height: 1.2;
    display: flex;
    text-transform: uppercase;
    font-weight: 600;
    color: #8f7289;
    padding-top: .2rem;
    padding-bottom: .2rem
}

@media only screen and (min-width: 1630px) {
    header .nav-link {
        font-size: .85vw
    }
}

@media only screen and (max-width: 1024px) {
    header .nav-link {
        font-size: 2.8vw
    }
}

@media only screen and (max-width: 980px) {
    header .nav-link {
        font-size: 3vw
    }
}

@media only screen and (max-width: 767px) {
    header .nav-link {
        font-size: 5vw
    }
}

header .nav-link:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #535353;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out 0s
}

@media only screen and (max-width: 1024px) {
    header .nav-link:after {
        height: 3px
    }
}

@media only screen and (max-width: 980px) {
    header .nav-link:after {
        height: 2px
    }
}

header .nav-link>span {
    position: relative;
    z-index: 5;
    display: inline-block
}

header .nav-link.active,
header .nav-link:hover {
    color: #535353
}

header .nav-link.active:after,
header .nav-link:hover:after {
    transform: scaleX(1);
    transform-origin: left
}

header .hasSub {
    position: relative;
    display: grid;
    grid-template-columns: auto 11px;
    gap: .3rem;
    align-items: center
}

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

@media only screen and (max-width: 1024px) {
    header .hasSub .arrowBox {
        background-color: #8f72894d;
        aspect-ratio: 2/2;
        padding: .5rem;
        border-radius: .5rem
    }
}

@media only screen and (max-width: 767px) {
    header .hasSub .arrowBox {
        padding: .4rem
    }
}

header .hasSub .arrowBox svg {
    width: 100%;
    height: auto;
    transition: all .4s ease-in-out
}

@media only screen and (max-width: 1024px) {
    header .hasSub .arrowBox svg {
        margin-bottom: -1px
    }
}

header .hasSub.active>.nav-link {
    color: #8f7289
}

header .hasSub.active .arrowBox {
    color: #8f7289
}

@media only screen and (max-width: 1024px) {
    header .hasSub.active .arrowBox {
        color: #000
    }
}

header .hasSub:active>.nav-link,
header .hasSub:hover>.nav-link {
    color: #8f7289
}

header .hasSub:active>ul,
header .hasSub:hover>ul {
    transform: translateY(100%);
    opacity: 1;
    pointer-events: auto
}

@media only screen and (max-width: 1024px) {

    header .hasSub:active>ul,
    header .hasSub:hover>ul {
        transform: translateY(100%) translate(-50%)
    }
}

header .hasSub:active .arrowBox,
header .hasSub:hover .arrowBox {
    color: #8f7289
}

@media only screen and (max-width: 1024px) {

    header .hasSub:active .arrowBox,
    header .hasSub:hover .arrowBox {
        color: #000
    }
}

header .hasSub:active .arrowBox svg,
header .hasSub:hover .arrowBox svg {
    transform: rotate(180deg)
}

@media only screen and (max-width: 1024px) {

    header .hasSub:active .arrowBox svg,
    header .hasSub:hover .arrowBox svg {
        margin-bottom: 1px
    }
}

header .hasSub>ul {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    min-width: 11rem;
    max-width: 15rem;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    transform: translateY(calc(100% + 1rem));
    opacity: 0;
    pointer-events: none;
    transition: all .4s ease-in-out;
    z-index: 10;
    padding-top: 1rem
}

@media only screen and (min-width: 1630px) {
    header .hasSub>ul {
        min-width: 12rem
    }
}

@media only screen and (max-width: 1024px) {
    header .hasSub>ul {
        left: 50%;
        transform: translateY(calc(100% + 1rem)) translate(-50%);
        min-width: 18rem;
        max-width: 22rem
    }
}

header .hasSub>ul .nav-link {
    color: #fff;
    padding: 1rem .5rem;
    flex-direction: column;
    gap: .2rem;
    font-weight: 300
}

@media only screen and (max-width: 1024px) {
    header .hasSub>ul .nav-link {
        font-size: 2vw
    }
}

@media only screen and (max-width: 980px) {
    header .hasSub>ul .nav-link {
        font-size: 2.5vw
    }
}

@media only screen and (max-width: 767px) {
    header .hasSub>ul .nav-link {
        font-size: 4.5vw
    }
}

header .hasSub>ul .nav-link .date {
    font-size: 140%;
    font-weight: 600
}

@media only screen and (min-width: 1630px) {
    header .hasSub>ul .nav-link .date {
        font-size: 120%
    }
}

@media only screen and (max-width: 1024px) {
    header .hasSub>ul .nav-link .date {
        font-size: 120%
    }
}

@media only screen and (max-width: 767px) {
    header .hasSub>ul .nav-link .date {
        font-size: 110%
    }
}

header .hasSub>ul .nav-link:after {
    display: none
}

header .hasSub>ul .nav-link.active,
header .hasSub>ul .nav-link:hover {
    color: #fff
}

header .hasSub>ul .nav-link.bgColor1 {
    background-color: #8f7289
}

header .hasSub>ul .nav-link.bgColor1.active,
header .hasSub>ul .nav-link.bgColor1:hover {
    background-color: #987d93
}

header .hasSub>ul .nav-link.bgColor2 {
    background-color: #868b61
}

header .hasSub>ul .nav-link.bgColor2.active,
header .hasSub>ul .nav-link.bgColor2:hover {
    background-color: #91976a
}

header .hasSub>ul .nav-link.bgColor3 {
    background-color: #b58354
}

header .hasSub>ul .nav-link.bgColor3.active,
header .hasSub>ul .nav-link.bgColor3:hover {
    background-color: #bb8d62
}

header .m-link {
    font-size: .9vw;
    position: relative;
    line-height: 1.2;
    display: flex;
    font-weight: 500;
    color: #fff;
    background-color: #8f7289;
    padding: .4rem 1rem;
    overflow: hidden
}

@media only screen and (min-width: 1630px) {
    header .m-link {
        font-size: .75vw;
        padding: .5rem 1.5rem
    }
}

@media only screen and (max-width: 1024px) {
    header .m-link {
        font-size: 1.4vw
    }
}

@media only screen and (max-width: 980px) {
    header .m-link {
        font-size: 1.8vw
    }
}

@media only screen and (max-width: 767px) {
    header .m-link {
        font-size: 3.5vw;
        padding: .4rem 1.1rem
    }
}

header .m-link:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #535353;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out 0s
}

header .m-link>span {
    position: relative;
    z-index: 5;
    display: inline-block
}

header .m-link.active,
header .m-link:hover {
    color: #fff
}

header .m-link.active:after,
header .m-link:hover:after {
    transform: scaleX(1);
    transform-origin: left
}

header .lang_ {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-transform: uppercase;
    font-size: 14px;
    color: #000;
    padding: 0;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    background-color: #eee7dd99
}

@media only screen and (min-width: 1630px) {
    header .lang_ {
        width: 38px;
        height: 38px
    }
}

@media only screen and (max-width: 767px) {
    header .lang_ {
        width: 35px;
        height: 35px
    }
}

@media only screen and (max-width: 330px) {
    header .lang_ {
        width: 33px;
        height: 33px
    }
}

header .lang_:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #535353;
    transform: scale(0);
    opacity: .2;
    transition: transform .3s ease-in-out
}

header .lang_ span {
    position: relative;
    z-index: 5
}

header .lang_ svg,
header .lang_ img {
    width: 40%;
    height: auto;
    transition: transform .4s ease-in-out
}

header .lang_:hover {
    color: #535353
}

header .lang_:hover:before {
    transform: scale(1)
}

header .lang_:hover svg,
header .lang_:hover img {
    transform: scale(1.1)
}

header .burger_li,
header .shortMenu {
    display: none
}

@media only screen and (max-width: 1024px) {

    header .burger_li,
    header .shortMenu {
        display: block
    }
}

header .menu_trigger {
    background-color: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    padding: 0;
    transition: opacity .25s ease-out;
    z-index: 1;
    direction: ltr
}

header .menu_trigger .bInner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .45rem;
    height: 36px;
    width: 36px
}

@media only screen and (max-width: 767px) {
    header .menu_trigger .bInner {
        height: 30px;
        width: 30px
    }
}

header .menu_trigger .bcopy {
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(-100%);
    transition: all .4s ease-in-out
}

header .menu_trigger .bcopy span {
    background: #8f7289;
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%
}

header .menu_trigger span {
    width: 100%;
    height: 3px;
    border-radius: 4rem;
    background: #535353;
    transition: all .4s cubic-bezier(.82, 0, .36, 1)
}

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

header .nav_box_wrapper .navbar-nav {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 3.5vw
}

@media only screen and (min-width: 1025px) and (max-width: 1370px) and (min-height: 500px) and (max-height: 670px) {
    header .nav_box_wrapper .navbar-nav {
        gap: 1.2rem
    }
}

@media only screen and (max-width: 1024px) {
    header .nav_box_wrapper .navbar-nav {
        gap: 7vh;
        flex-direction: column
    }
}

@media only screen and (max-width: 980px) {
    header .nav_box_wrapper .navbar-nav {
        gap: 6vh
    }
}

@media only screen and (max-width: 767px) {
    header .logoutBtn {
        padding: .5rem;
        background-color: transparent;
        color: #8f7289
    }

    header .logoutBtn:after {
        display: none
    }

    header .logoutBtn span {
        display: none
    }

    header .logoutBtn:hover {
        color: #8f7289
    }
}

header .logoutBtn .icon {
    display: none
}

@media only screen and (max-width: 767px) {
    header .logoutBtn .icon {
        display: flex
    }

    header .logoutBtn .icon svg {
        width: 20px;
        height: auto
    }
}

.searchForm {
    position: relative;
    z-index: 1
}

@media only screen and (max-width: 767px) {
    .searchForm {
        position: absolute;
        left: 0;
        bottom: 15px;
        width: 100%
    }
}

.searchForm .inputBox {
    display: grid;
    grid-template-columns: 1fr 40px;
    border: 1px solid rgba(0, 0, 0, .23);
    border-radius: .5rem;
    overflow: hidden
}

.searchForm input {
    border: none;
    outline: none;
    height: 2.3rem;
    padding-inline-start: 1rem;
    font-size: .92rem;
    font-weight: 500
}

.searchForm button {
    background: transparent;
    outline: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center
}

.searchForm button:hover {
    color: #8f7289
}

.searchForm button:hover svg {
    transform: scale(1.1)
}

.searchForm button svg {
    width: 18px;
    transition: all .4s ease-in-out;
    height: auto
}

@media only screen and (max-width: 1024px) {
    .searchForm button svg {
        width: 17px
    }
}

@media only screen and (max-width: 767px) {
    .searchForm button svg {
        width: 15px
    }
}

@media only screen and (max-width: 1024px) {
    .nav_box_wrapper {
        position: fixed;
        left: calc((30px + 2.5vw)*-1);
        top: 0;
        width: calc(100% + 60px + 5vw);
        height: 100vh;
        background-color: #fff;
        overflow: hidden;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: all .8s ease-in-out;
        pointer-events: none;
        display: flex;
        overflow-y: auto;
        padding: calc(var(--headerH)) 4vw 1.5rem
    }
}

@media only screen and (max-width: 1024px) and (max-width: 767px) {
    .nav_box_wrapper {
        padding: calc(var(--headerH) + 5vh) 1rem 2rem;
        left: -15px;
        width: calc(100% + 30px)
    }
}

@media only screen and (max-width: 1024px) {
    .nav_box_wrapper ul {
        list-style: none;
        margin: 0;
        padding: 0
    }

    .nav_box_wrapper ul li {
        transform: translateY(2rem);
        opacity: 0;
        transition: all .6s ease-in-out
    }

    .nav_box_wrapper .navbar-inner {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        height: auto
    }
}

@media only screen and (max-width: 1024px) and (max-width: 767px) {
    .nav_box_wrapper .navbar-nav>.nav-item:nth-child(even):before {
        display: none
    }
}

@media only screen and (max-width: 1024px) {
    .nav_box_wrapper .navbar-nav>.nav-item {
        position: relative;
        display: grid
    }

    .nav_box_wrapper .navbar-nav>.nav-item.hasSub {
        grid-template-columns: auto 32px;
        gap: .8rem
    }
}

@media only screen and (max-width: 1024px) and (max-width: 980px) {
    .nav_box_wrapper .navbar-nav>.nav-item.hasSub {
        grid-template-columns: auto 25px
    }
}

@media only screen and (max-width: 1024px) and (max-width: 767px) {
    .nav_box_wrapper .navbar-nav>.nav-item.hasSub {
        grid-template-columns: auto 22px;
        gap: .6rem
    }
}

@media only screen and (max-width: 1024px) {
    .hideTab {
        display: none !important
    }
}

@media only screen and (max-width: 767px) {
    .safari .menuActive {
        overflow: auto
    }
}

.menuActive {
    overflow: hidden
}

.menuActive .nav_box_wrapper {
    pointer-events: auto;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%)
}

.menuActive .nav_box_wrapper ul li {
    transform: none;
    opacity: 1
}

.menuActive .nav_box_wrapper ul li:nth-child(1) {
    transition-delay: .45s
}

.menuActive .nav_box_wrapper ul li:nth-child(2) {
    transition-delay: .6s
}

.menuActive .nav_box_wrapper ul li:nth-child(3) {
    transition-delay: .75s
}

.menuActive .nav_box_wrapper ul li:nth-child(4) {
    transition-delay: .9s
}

.menuActive .nav_box_wrapper ul li:nth-child(5) {
    transition-delay: 1.05s
}

.menuActive .nav_box_wrapper ul li:nth-child(6) {
    transition-delay: 1.2s
}

.menuActive .nav_box_wrapper ul li:nth-child(7) {
    transition-delay: 1.35s
}

.menuActive .nav_box_wrapper ul li:nth-child(8) {
    transition-delay: 1.5s
}

.menuActive .nav_box_wrapper ul li:nth-child(9) {
    transition-delay: 1.65s
}

.menuActive .nav_box_wrapper ul li:nth-child(10) {
    transition-delay: 1.8s
}

.menuActive header:before {
    background-color: #fff;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
}

.menuActive header .menu_trigger .bmaster .start {
    opacity: 0;
    transform: translateY(1rem);
    transition-delay: .1s
}

.menuActive header .menu_trigger .bmaster .med {
    transition-delay: 0s;
    opacity: 0;
    transform: translateY(1rem)
}

.menuActive header .menu_trigger .bcopy {
    transform: translateY(0)
}

.menuActive header .menu_trigger .bcopy .start {
    transition-delay: .3s;
    transform: rotate(45deg)
}

.menuActive header .menu_trigger .bcopy .med {
    transition-delay: .3s;
    transform: rotate(-45deg)
}

.menuActive header .m-link.rBtn {
    color: #fff
}

.menuActive header .m-link.rBtn:before {
    transform: scaleX(1);
    transform-origin: left
}

.dom-loaded header .container {
    transform: none;
    transition: transform 1.9s cubic-bezier(.69, 0, .27, 1) .2s
}

.dom-loaded header .navbar {
    opacity: 1;
    transform: translateY(0)
}

.scrolled header:before {
    box-shadow: 0 0 5px #8f72891a;
    transition-delay: 0s
}

.scrolled:not(.menuActive) header {
    transform: translateY(-100%)
}

.scrolled:not(.menuActive) header .navbar {
    border-bottom-width: 0
}

.scrolled:not(.menuActive):not(.preventMenu).scrolling_top header {
    transform: translateY(0)
}

@media only screen and (max-width: 1024px) {
    .scrolled:not(.menuActive).preventMenu header {
        transform: translateY(-100%)
    }
}

@media only screen and (max-width: 1024px) {
    header .barnd_box {
        position: relative
    }
}

@media only screen and (max-width: 767px) {
    header .logoBox:first-child {
        opacity: 1;
        pointer-events: auto;
        visibility: visible
    }

    header .logoBox:last-child {
        opacity: 0;
        visibility: hidden;
        pointer-events: none
    }

    header.logoSwap .logoBox:first-child {
        opacity: 0;
        visibility: hidden;
        pointer-events: none
    }

    header.logoSwap .logoBox:last-child {
        opacity: 1;
        pointer-events: auto;
        visibility: visible
    }
}

html[dir=ltr] header .lang_ {
    font-weight: 700
}

html[dir=ltr] header .lang_ span {
    transform: translateY(-3px)
}

@media only screen and (min-width: 1025px) and (max-width: 1370px) and (min-height: 500px) and (max-height: 670px) {
    html[dir=rtl] .searchForm input {
        max-width: 160px
    }
}

html[dir=rtl] header .nav_box_wrapper .navbar-nav {
    gap: 1.2rem
}

@media only screen and (min-width: 1630px) {
    html[dir=rtl] header .nav_box_wrapper .navbar-nav {
        gap: 1.8rem
    }
}

html[dir=rtl] header .nav_box_wrapper .navbar-nav>.nav-item:before {
    left: 0;
    right: auto
}

@media only screen and (max-width: 767px) {
    html[dir=rtl] header .logoBox:last-child {
        right: 0;
        left: auto
    }
}

@media only screen and (min-width: 1025px) {
    html[dir=rtl] header .hasSub>ul {
        right: 0%;
        left: auto
    }

    html[dir=rtl] header .hasSub>ul:after {
        right: 0;
        left: auto
    }

    html[dir=rtl] header .hasSub>ul:before {
        border-radius: 2rem 0 2rem 2rem
    }
}

html[dir=rtl] header .lang_ span {
    transform: translateY(1px)
}

html[dir=rtl] header .menu_trigger {
    transform: scaleX(-1)
}

html[dir=rtl] header .nav-link {
    line-height: 1.4
}

html[dir=rtl] header .nav-link:before {
    transform-origin: left
}

html[dir=rtl] header .nav-link:hover:before,
html[dir=rtl] header .nav-link.active:before {
    transform-origin: right
}

html[dir=rtl] header .m-link:after,
html[dir=rtl] header .nav-link:after {
    transform-origin: left
}

html[dir=rtl] header .m-link:hover:after,
html[dir=rtl] header .nav-link:hover:after {
    transform-origin: right
}

@media only screen and (min-width: 1025px) {
    .privatePage header .logoBox .fullLogo {
        height: 3rem
    }

    .privatePage header .container {
        max-width: calc(95vw + 30px)
    }
}

@media only screen and (max-width: 767px) {
    .privatePage header .logoBox .fullLogo {
        max-width: 62vw
    }
}

.privatePage header .nav_box_wrapper .navbar-nav {
    gap: 1.1vw
}

@media only screen and (min-width: 1630px) {
    .privatePage header .nav_box_wrapper .navbar-nav {
        gap: 1.7vw
    }
}

@media only screen and (max-width: 1024px) {
    .privatePage header .nav_box_wrapper .navbar-nav {
        gap: 4vh
    }
}

.privatePage header .shortMenu {
    display: block
}

.privatePage header .nav-link {
    font-size: .95vw;
    text-align: center
}

@media only screen and (min-width: 1630px) {
    .privatePage header .nav-link {
        font-size: .8vw
    }
}

@media only screen and (max-width: 1024px) {
    .privatePage header .nav-link {
        font-size: 2.8vw
    }
}

@media only screen and (max-width: 980px) {
    .privatePage header .nav-link {
        font-size: 3vw
    }
}

@media only screen and (max-width: 767px) {
    .privatePage header .nav-link {
        font-size: 5vw
    }
}

.noMenu .shortMenu,
.noMenu .nav_box_wrapper {
    display: none !important
}

footer {
    z-index: 99;
    position: relative;
    padding-top: 4rem
}

@media only screen and (min-width: 1025px) and (max-width: 1370px) and (min-height: 500px) and (max-height: 670px) {
    footer {
        padding-top: 2rem
    }
}

@media only screen and (max-width: 1024px) {
    footer {
        padding-top: 2rem
    }
}

footer .forEnquiries {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-weight: 500
}

@media screen and (max-width: 1204px) {
    footer .forEnquiries {
        flex-direction: row;
        gap: .5rem
    }
}

@media screen and (max-width: 767px) {
    footer .forEnquiries {
        justify-content: center;
        font-size: .95rem
    }
}

@media screen and (max-width: 340px) {
    footer .forEnquiries {
        font-size: .85rem
    }
}

footer .forEnquiries a {
    font-weight: 700;
    text-decoration: underline;
    transition: all .3s ease-in-out
}

footer .forEnquiries a:hover {
    color: #535353
}

footer .footerGraphic {
    display: block;
    overflow: hidden
}

footer .footerGraphic svg,
footer .footerGraphic img {
    width: 95vw;
    margin: auto;
    height: auto;
    display: flex
}

footer .footerGraphic svg .cls-1,
footer .footerGraphic svg .cls-2 {
    fill: none;
    stroke: #8f7289;
    stroke-linejoin: round;
    stroke-width: 2px
}

footer .footerGraphic svg .cls-2 {
    stroke-linecap: round
}

footer .footerGraphic svg .svg-elem-1 {
    stroke-dashoffset: 140.1201477051px;
    stroke-dasharray: 140.1201477051px;
    transition: stroke-dashoffset .4s ease 0s
}

footer .footerGraphic svg .svg-elem-2 {
    stroke-dashoffset: 435.5397861954px;
    stroke-dasharray: 435.5397861954px;
    transition: stroke-dashoffset .4s ease .12s
}

footer .footerGraphic svg .svg-elem-3 {
    stroke-dashoffset: 435.5397861954px;
    stroke-dasharray: 435.5397861954px;
    transition: stroke-dashoffset .4s ease .24s
}

footer .footerGraphic svg .svg-elem-4 {
    stroke-dashoffset: 343.5770874023px;
    stroke-dasharray: 343.5770874023px;
    transition: stroke-dashoffset .4s ease .36s
}

footer .footerGraphic svg .svg-elem-5 {
    stroke-dashoffset: 218.7698930977px;
    stroke-dasharray: 218.7698930977px;
    transition: stroke-dashoffset .4s ease .48s
}

footer .footerGraphic svg .svg-elem-6 {
    stroke-dashoffset: 218.7698930977px;
    stroke-dasharray: 218.7698930977px;
    transition: stroke-dashoffset .4s ease .6s
}

footer .footerGraphic svg .svg-elem-7 {
    stroke-dashoffset: 218.7698930977px;
    stroke-dasharray: 218.7698930977px;
    transition: stroke-dashoffset .4s ease .72s
}

footer .footerGraphic svg .svg-elem-8 {
    stroke-dashoffset: 218.7698930977px;
    stroke-dasharray: 218.7698930977px;
    transition: stroke-dashoffset .4s ease .84s
}

footer .footerGraphic svg .svg-elem-9 {
    stroke-dashoffset: 218.7698930977px;
    stroke-dasharray: 218.7698930977px;
    transition: stroke-dashoffset .4s ease .96s
}

footer .footerGraphic svg .svg-elem-10 {
    stroke-dashoffset: 218.7698930977px;
    stroke-dasharray: 218.7698930977px;
    transition: stroke-dashoffset .4s ease 1.08s
}

footer .footerGraphic svg .svg-elem-11 {
    stroke-dashoffset: 218.7698930977px;
    stroke-dasharray: 218.7698930977px;
    transition: stroke-dashoffset .4s ease 1.2s
}

footer .footerGraphic svg .svg-elem-12 {
    stroke-dashoffset: 197.1614685059px;
    stroke-dasharray: 197.1614685059px;
    transition: stroke-dashoffset .4s ease 1.32s
}

footer .footerGraphic svg .svg-elem-13 {
    stroke-dashoffset: 389.4959106445px;
    stroke-dasharray: 389.4959106445px;
    transition: stroke-dashoffset .4s ease 1.44s
}

footer .footerGraphic svg .svg-elem-14 {
    stroke-dashoffset: 392.3244018555px;
    stroke-dasharray: 392.3244018555px;
    transition: stroke-dashoffset .4s ease 1.56s
}

footer .footerGraphic svg .svg-elem-15 {
    stroke-dashoffset: 140.3099975586px;
    stroke-dasharray: 140.3099975586px;
    transition: stroke-dashoffset .4s ease 1.68s
}

footer .footerGraphic svg .svg-elem-16 {
    stroke-dashoffset: 416px;
    stroke-dasharray: 416px;
    transition: stroke-dashoffset .4s ease 1.8s
}

footer .footerGraphic svg .svg-elem-17 {
    stroke-dashoffset: 140.3899993896px;
    stroke-dasharray: 140.3899993896px;
    transition: stroke-dashoffset .4s ease 1.92s
}

footer .footerGraphic svg .svg-elem-18 {
    stroke-dashoffset: 418.0299987793px;
    stroke-dasharray: 418.0299987793px;
    transition: stroke-dashoffset .4s ease 2.04s
}

footer .footerGraphic svg .svg-elem-19 {
    stroke-dashoffset: 510.6182250977px;
    stroke-dasharray: 510.6182250977px;
    transition: stroke-dashoffset .4s ease 2.16s
}

footer .footerGraphic svg .svg-elem-20 {
    stroke-dashoffset: 197.1600341797px;
    stroke-dasharray: 197.1600341797px;
    transition: stroke-dashoffset .4s ease 2.28s
}

footer .footerGraphic svg .svg-elem-21 {
    stroke-dashoffset: 197.1600341797px;
    stroke-dasharray: 197.1600341797px;
    transition: stroke-dashoffset .4s ease 2.4s
}

footer .footerGraphic svg .svg-elem-22 {
    stroke-dashoffset: 197.1600341797px;
    stroke-dasharray: 197.1600341797px;
    transition: stroke-dashoffset .4s ease 2.52s
}

footer .footerGraphic svg .svg-elem-23 {
    stroke-dashoffset: 197.1600341797px;
    stroke-dasharray: 197.1600341797px;
    transition: stroke-dashoffset .4s ease 2.64s
}

footer .footerGraphic svg .svg-elem-24 {
    stroke-dashoffset: 197.4303588867px;
    stroke-dasharray: 197.4303588867px;
    transition: stroke-dashoffset .4s ease 2.76s
}

footer .footerGraphic svg .svg-elem-25 {
    stroke-dashoffset: 347.1400146484px;
    stroke-dasharray: 347.1400146484px;
    transition: stroke-dashoffset .4s ease 2.88s
}

footer .footerGraphic svg .svg-elem-26 {
    stroke-dashoffset: 140.3800048828px;
    stroke-dasharray: 140.3800048828px;
    transition: stroke-dashoffset .4s ease 3s
}

footer .footerGraphic svg .svg-elem-27 {
    stroke-dashoffset: 485px;
    stroke-dasharray: 485px;
    transition: stroke-dashoffset .4s ease 3.12s
}

footer .footerGraphic svg .svg-elem-28 {
    stroke-dashoffset: 501.7422485352px;
    stroke-dasharray: 501.7422485352px;
    transition: stroke-dashoffset .4s ease 3.24s
}

footer .footerGraphic svg .svg-elem-29 {
    stroke-dashoffset: 1120.912109375px;
    stroke-dasharray: 1120.912109375px;
    transition: stroke-dashoffset .4s ease 3.36s
}

footer .footerGraphic svg .svg-elem-30 {
    stroke-dashoffset: 208.1326141357px;
    stroke-dasharray: 208.1326141357px;
    transition: stroke-dashoffset .4s ease 3.48s
}

footer .footerGraphic svg .svg-elem-31 {
    stroke-dashoffset: 208.1562194824px;
    stroke-dasharray: 208.1562194824px;
    transition: stroke-dashoffset .4s ease 3.6s
}

footer .footerGraphic svg .svg-elem-32 {
    stroke-dashoffset: 208.1455993652px;
    stroke-dasharray: 208.1455993652px;
    transition: stroke-dashoffset .4s ease 3.72s
}

footer .footerGraphic svg .svg-elem-33 {
    stroke-dashoffset: 208.1625366211px;
    stroke-dasharray: 208.1625366211px;
    transition: stroke-dashoffset .4s ease 3.84s
}

footer .footerGraphic svg .svg-elem-34 {
    stroke-dashoffset: 208.1561279297px;
    stroke-dasharray: 208.1561279297px;
    transition: stroke-dashoffset .4s ease 3.96s
}

footer .footerGraphic svg .svg-elem-35 {
    stroke-dashoffset: 208.1796417236px;
    stroke-dasharray: 208.1796417236px;
    transition: stroke-dashoffset .4s ease 4.08s
}

footer .footerGraphic svg .svg-elem-36 {
    stroke-dashoffset: 99.37159729px;
    stroke-dasharray: 99.37159729px;
    transition: stroke-dashoffset .4s ease 4.2s
}

footer .footerGraphic svg .svg-elem-37 {
    stroke-dashoffset: 99.3643493652px;
    stroke-dasharray: 99.3643493652px;
    transition: stroke-dashoffset .4s ease 4.32s
}

footer .footerGraphic svg .svg-elem-38 {
    stroke-dashoffset: 99.3643493652px;
    stroke-dasharray: 99.3643493652px;
    transition: stroke-dashoffset .4s ease 4.44s
}

footer .footerGraphic svg .svg-elem-39 {
    stroke-dashoffset: 485.5800170898px;
    stroke-dasharray: 485.5800170898px;
    transition: stroke-dashoffset .4s ease 4.56s
}

footer .footerGraphic svg .svg-elem-40 {
    stroke-dashoffset: 611.867980957px;
    stroke-dasharray: 611.867980957px;
    transition: stroke-dashoffset .4s ease 4.68s
}

footer .footerGraphic svg .svg-elem-41 {
    stroke-dashoffset: 2625.0522460938px;
    stroke-dasharray: 2625.0522460938px;
    transition: stroke-dashoffset .4s ease 4.8s
}

footer .footerGraphic svg .svg-elem-42 {
    stroke-dashoffset: 489.9036560059px;
    stroke-dasharray: 489.9036560059px;
    transition: stroke-dashoffset .4s ease 4.92s
}

footer .footerGraphic svg .svg-elem-43 {
    stroke-dashoffset: 197.1614685059px;
    stroke-dasharray: 197.1614685059px;
    transition: stroke-dashoffset .4s ease 5.04s
}

footer .footerGraphic svg .svg-elem-44 {
    stroke-dashoffset: 392.4290161133px;
    stroke-dasharray: 392.4290161133px;
    transition: stroke-dashoffset .4s ease 5.16s
}

footer .footerGraphic svg .svg-elem-45 {
    stroke-dashoffset: 392.4290161133px;
    stroke-dasharray: 392.4290161133px;
    transition: stroke-dashoffset .4s ease 5.28s
}

footer .footerGraphic svg .svg-elem-46 {
    stroke-dashoffset: 392.4290161133px;
    stroke-dasharray: 392.4290161133px;
    transition: stroke-dashoffset .4s ease 5.4s
}

footer .footerGraphic svg .svg-elem-47 {
    stroke-dashoffset: 276.2600097656px;
    stroke-dasharray: 276.2600097656px;
    transition: stroke-dashoffset .4s ease 5.52s
}

footer p,
footer a {
    margin: 0;
    font-size: .9vw;
    font-weight: 500
}

@media screen and (min-width: 1800px) {

    footer p,
    footer a {
        font-size: .8vw
    }
}

@media screen and (max-width: 1024px) {

    footer p,
    footer a {
        font-size: 1.4vw
    }
}

@media screen and (max-width: 980px) {

    footer p,
    footer a {
        font-size: 1.6vw
    }
}

@media screen and (max-width: 767px) {

    footer p,
    footer a {
        font-size: 11px;
        text-align: center
    }
}

footer .footerLogo {
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    max-width: 300px
}

@media screen and (max-width: 980px) {
    footer .footerLogo {
        max-width: 200px
    }
}

@media screen and (max-width: 767px) {
    footer .footerLogo {
        max-width: 60%
    }
}

footer .footerLogo .link {
    position: relative
}

footer .footerLogo .link:before {
    left: 0;
    transform: translate(-100%)
}

footer .footerLogo .link:after {
    right: 0;
    bottom: 1px;
    transform: translate(100%)
}

footer .footerNav {
    position: relative
}

@media screen and (max-width: 767px) {
    footer .footerNav {
        width: 100%
    }
}

footer .footerNav:after {
    content: "";
    position: absolute;
    right: -.75rem;
    top: 50%;
    width: 1px;
    height: 60%;
    background-color: #8f7289;
    transform: translateY(-50%)
}

@media screen and (max-width: 767px) {
    footer .footerNav:after {
        display: none
    }
}

footer .footerNav ul {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0
}

@media only screen and (min-width: 1630px) {
    footer .footerNav ul {
        gap: 1rem 2rem
    }
}

@media screen and (max-width: 767px) {
    footer .footerNav ul {
        justify-content: center
    }
}

footer .footerNav ul>li {
    position: relative
}

footer .footerNav .link_ {
    font-size: 1vw;
    line-height: 1.3;
    padding-bottom: 3px;
    position: relative;
    font-weight: 500;
    color: #8f7289
}

@media screen and (min-width: 1800px) {
    footer .footerNav .link_ {
        font-size: .8vw
    }
}

@media screen and (max-width: 1024px) {
    footer .footerNav .link_ {
        font-size: 1.6vw
    }
}

@media screen and (max-width: 980px) {
    footer .footerNav .link_ {
        font-size: 1.8vw
    }
}

@media screen and (max-width: 767px) {
    footer .footerNav .link_ {
        font-size: 3.4vw
    }
}

footer .footerNav .link_.large {
    font-weight: 500
}

footer .footerNav .link_:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #535353;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .3s ease-in-out
}

footer .footerNav .link_>span {
    position: relative
}

footer .footerNav .link_:hover {
    color: #535353
}

footer .footerNav .link_:hover:before {
    transform: scaleX(1);
    transform-origin: left
}

footer .bottomWrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem
}

@media screen and (max-width: 767px) {
    footer .bottomWrap {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start
    }
}

footer .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: .2rem 1.5rem;
    padding: 1.5rem 15px
}

@media screen and (max-width: 1204px) {
    footer .container {
        gap: 1rem
    }
}

@media only screen and (min-width: 1630px) {
    footer .container {
        padding-top: 2.5rem;
        gap: 2rem
    }
}

@media screen and (max-width: 980px) {
    footer .container {
        grid-template-columns: 100%;
        gap: 1.5rem;
        padding-top: 1.5rem
    }
}

@media screen and (max-width: 767px) {
    footer .container {
        padding: 1rem 15px;
        gap: 1rem;
        justify-content: center
    }
}

footer a:focus,
footer a:hover {
    color: #A45E2A
}

.inView .footerGraphic svg .svg-elem-1,
.inView .footerGraphic svg .svg-elem-2,
.inView .footerGraphic svg .svg-elem-3,
.inView .footerGraphic svg .svg-elem-4,
.inView .footerGraphic svg .svg-elem-5,
.inView .footerGraphic svg .svg-elem-6,
.inView .footerGraphic svg .svg-elem-7,
.inView .footerGraphic svg .svg-elem-8,
.inView .footerGraphic svg .svg-elem-9,
.inView .footerGraphic svg .svg-elem-10,
.inView .footerGraphic svg .svg-elem-11,
.inView .footerGraphic svg .svg-elem-12,
.inView .footerGraphic svg .svg-elem-13,
.inView .footerGraphic svg .svg-elem-14,
.inView .footerGraphic svg .svg-elem-15,
.inView .footerGraphic svg .svg-elem-16,
.inView .footerGraphic svg .svg-elem-17,
.inView .footerGraphic svg .svg-elem-18,
.inView .footerGraphic svg .svg-elem-19,
.inView .footerGraphic svg .svg-elem-20,
.inView .footerGraphic svg .svg-elem-21,
.inView .footerGraphic svg .svg-elem-22,
.inView .footerGraphic svg .svg-elem-23,
.inView .footerGraphic svg .svg-elem-24,
.inView .footerGraphic svg .svg-elem-25,
.inView .footerGraphic svg .svg-elem-26,
.inView .footerGraphic svg .svg-elem-27,
.inView .footerGraphic svg .svg-elem-28,
.inView .footerGraphic svg .svg-elem-29,
.inView .footerGraphic svg .svg-elem-30,
.inView .footerGraphic svg .svg-elem-31,
.inView .footerGraphic svg .svg-elem-32,
.inView .footerGraphic svg .svg-elem-33,
.inView .footerGraphic svg .svg-elem-34,
.inView .footerGraphic svg .svg-elem-35,
.inView .footerGraphic svg .svg-elem-36,
.inView .footerGraphic svg .svg-elem-37,
.inView .footerGraphic svg .svg-elem-38,
.inView .footerGraphic svg .svg-elem-39,
.inView .footerGraphic svg .svg-elem-40,
.inView .footerGraphic svg .svg-elem-41,
.inView .footerGraphic svg .svg-elem-42,
.inView .footerGraphic svg .svg-elem-43,
.inView .footerGraphic svg .svg-elem-44,
.inView .footerGraphic svg .svg-elem-45,
.inView .footerGraphic svg .svg-elem-46,
.inView .footerGraphic svg .svg-elem-47 {
    stroke-dashoffset: 0
}

.agendaDay2Page footer .footerGraphic svg .cls-1,
.agendaDay2Page footer .footerGraphic svg .cls-2 {
    stroke: #868b61
}

.agendaDay3Page footer .footerGraphic svg .cls-1,
.agendaDay3Page footer .footerGraphic svg .cls-2 {
    stroke: #b58354
}

html[dir=rtl] footer .footerNav .link_:before {
    transform-origin: left
}

html[dir=rtl] footer .footerNav .link_:hover:before {
    transform-origin: right
}

@media (prefers-reduced-motion: no-preference) {
    .footerGraphic #leafe {
        animation: roate3d 5s linear infinite;
        transform-box: fill-box
    }

    .footerGraphic #camal {
        animation: camelWake 7s linear infinite;
        transform-box: fill-box;
        transform-origin: center
    }

    .footerGraphic #yellow_tree {
        transform-origin: center bottom;
        transform-box: fill-box;
        animation: treeMove 14s linear infinite
    }

    .footerGraphic #tree_2 {
        transform-origin: center bottom;
        transform-box: fill-box;
        animation: treeMove2 9s linear infinite
    }

    .footerGraphic #tree_1 {
        transform-origin: center bottom;
        transform-box: fill-box;
        animation: treeMove2 9s linear infinite 1s alternate-reverse
    }

    .footerGraphic #Sun {
        transform-origin: 100% 120%;
        transform-box: fill-box;
        animation: sun 7s linear infinite alternate
    }

    .footerGraphic #bired {
        transform-origin: center;
        transform-box: fill-box;
        animation: bired 1.5s linear infinite alternate
    }

    .footerGraphic #blue_Land {
        transform-origin: bottom center;
        transform-box: fill-box;
        animation: blue_Land 10s ease-in-out infinite alternate
    }

    .footerGraphic #green_fog {
        transform-origin: bottom center;
        transform-box: fill-box;
        animation: green_fog 5s linear infinite alternate-reverse
    }
}

@keyframes green_fog {
    0% {
        transform: translateY(2rem) translate(0)
    }

    to {
        transform: translateY(-1rem) translate(-2rem)
    }
}

@keyframes blue_Land {
    0% {
        transform: translate(3rem)
    }

    to {
        transform: translate(-1rem) translateY(.3rem)
    }
}

@keyframes bired {
    to {
        transform: rotate(20deg) scale(1.1) translateY(.2rem) translate(.5rem)
    }
}

@keyframes roate3d {
    0% {
        transform: rotate(0);
        transform-origin: 40% 55%
    }

    to {
        transform: rotate(360deg);
        transform-origin: 36% 50%
    }
}

@keyframes sun {
    0% {
        transform: rotate(50deg) scale(.3) translateY(25rem)
    }

    85%,
    to {
        transform: rotate(0)
    }
}

@keyframes camelWake {
    0% {
        transform: translate(2.5rem) translateY(1.5rem) scale(.7)
    }

    70% {
        transform: translate(-3rem) translateY(-.3rem)
    }

    to {
        transform: translate(-5rem) translateY(1rem) scale(.7)
    }
}

@keyframes treeMove {
    25% {
        transform: rotate(15deg)
    }

    75% {
        transform: rotate(-15deg)
    }

    to {
        transform: rotate(0)
    }
}

@keyframes treeMove2 {
    0% {
        transform: rotate(0) translateY(.5rem)
    }

    25% {
        transform: rotate(12deg) translateY(.5rem)
    }

    75% {
        transform: rotate(-10deg) translateY(.5rem)
    }

    to {
        transform: rotate(0) translateY(.5rem)
    }
}