/*-----------------------------------------------------------------------------------*/
/* FONTS
/*-----------------------------------------------------------------------------------*/
@font-face {
    font-family: LamaSans;
    src: url(../fonts/LamaSans-SemiBold.ttf);
}

/*-----------------------------------------------------------------------------------*/
/* VARIABLES
/*-----------------------------------------------------------------------------------*/
:root {
    --primary: #8DC63F;
    --secondary: #97716B;
    --accent: #A7AE9C;
    --default: #5C5C5C;
    --swiper-theme-color: #8DC63F;
    --swiper-pagination-bullet-size: 16px;
    --swiper-pagination-bullet-inactive-color: #97726B;
    --swiper-pagination-bullet-inactive-opacity: 1;
    --swiper-pagination-bottom: 30px;
}

/*-----------------------------------------------------------------------------------*/
/* RESET CSS 
/*-----------------------------------------------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
.menu,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
input,
input[type=button],
button {
    margin: 0;
    padding: 0;
    border: 0;
    font-family: "LamaSans", serif;
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
}

body {
    position: relative;
    font-weight: 500;
    color: var(--default);
    background: #fff;
    font-size: 18px;
    direction: rtl;
    overflow-x: hidden;
}

:dir(ltr) body {
    direction: ltr;
}

html {
    height: 100%;
    width: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

a {
    outline: none;
    text-decoration: none;
    display: inline-block;
    color: inherit;
    transition: all 0.3s ease;
    font-family: inherit;
    font-weight: inherit;
}

p {
    line-height: 1.6;
}

select,
button,
input {
    outline: none;
}

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

::selection {
    background-color: var(--primary);
    color: #fff;
}

/* Global Style */
main {
    position: relative;
    z-index: 1;
}

.wrapper {
    min-height: calc(100vh - 520px);
}

.container {
    position: relative;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.flex-section {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    align-items: center;
}

section {
    margin: 80px 0;
    position: relative;
}

.section-title {
    text-transform: uppercase;
    font-size: 40px;
    font-weight: 100;
    width: fit-content;
    margin-bottom: 20px;
    color: var(--default);
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}


.section-title::before,
.page-content h1::before,
.page-content h2::before,
.page-content h3::before,
.page-content h4::before {
    content: "\e91b";
    font-family: 'icomoon';
    color: var(--primary);
    font-size: 36px;
    top: -4px;
    position: relative;
    transition: all 0.5s 0.3s ease;
}

.section-title::before {
    opacity: 0;
    transform: translateY(20px) rotate(-15deg);
}

.section-title.animate::before {
    opacity: 1;
    transform: none
}

.section-content {
    font-size: 18px;
    line-height: 30px;
    text-align: justify;
}

.section-content:empty {
    display: none;
}

.btn {
    display: block;
    background-color: var(--primary);
    padding: 5px 20px;
    text-align: center;
    transition: all 0.3s ease;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    height: 47px;
    width: fit-content;
    line-height: 39px;
    min-width: 200px;
    text-transform: uppercase;
    border-radius: 8px;
}

.btn:hover {
    background-color: var(--secondary);
}

/* HEADER */

header {
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    color: #fff;
}

.inner header {
    position: relative;
}

.art-header::before {
    content: '';
    display: block;
    position: absolute;
    top: -220px;
    padding-bottom: 220px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(90deg, #a2cc6a 0%, #a7ae9c 100%);
}

header .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.header-nav {
    display: flex;
    gap: 20px;
}

header::before {
    content: "";
    display: block;
    clip-path: ellipse(50% 100% at top);
    background-color: #FFFFFFBF;
    height: 250px;
    width: 100%;
    position: absolute;
    top: -65px;
    right: -20%;
    z-index: 0;
    backdrop-filter: blur(25px);
}

:dir(ltr) header::before {
    right: unset;
    left: -20%;
}

header nav {
    position: relative;
}

.toggle-menu {
    display: none;
}

.logo {
    display: block;
    width: 170px;
    flex-shrink: 0;
}

header .logo {
    margin-top: 10px;
}

.logo h1 {
    font-size: 22px;
    line-height: 40px;
}

.logo span {
    font-size: 14px;
    display: block;
    color: #fff;
    line-height: 22px;
}

header .logo span {
    background-color: var(--primary);
    padding: 0 8px;


}

.menu {
    display: flex;
    justify-content: center;
    gap: 10px 30px;
    list-style: none;
    z-index: 10;
    position: relative;
}

.menu li {
    position: relative;
}

.submenu {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #e8e8e8;
    z-index: 10;
    border-radius: 0 0 5px 5px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
    min-width: 260px;
    padding: 10px;
}

.submenu li .submenu {
    left: 100%;
    top: 0;
}

.menu li:hover>.submenu {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease-in 0s;
}

.menu a {
    display: block;
    transition: all 0.3s ease;
    font-size: 18px;
    color: #000;
    line-height: 40px;
    text-transform: uppercase;
    position: relative;
    text-align: center;
    padding: 20px 10px 5px 10px;
    min-width: 70px;
    box-sizing: content-box;
}

.menu a::before {
    height: 30px;
    content: "\e91d";
    display: block;
    font-family: 'icomoon';
    font-size: 25px;
    color: #8dc63f;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateY(10px);
}

.menu li a::after {
    content: "";
    display: block;
    width: 100%;
    background-color: var(--secondary);
    position: absolute;
    right: 0;
    top: 0;
    opacity: 0;
    height: 0;
    transition: all 0.4s ease;
    border-radius: 0 0 10px 10px;
    z-index: -1;
}

.menu a:hover,
.menu li.active a {
    color: #fff;

}

.menu a:hover::after,
.menu li.active a::after {
    height: 100%;
    opacity: 1;
    width: 100%;
}

.menu a:hover::before,
.menu li.active a::before {
    opacity: 1;
    transform: none;
}


.menu a i {
    display: inline-block;
    margin-left: 8px;
    vertical-align: middle;
    font-size: 22px;
}

.header-actions {
    padding-bottom: 10px;
}

.header-actions-wrapper {
    background-color: var(--secondary);
    padding: 15px;
    border-radius: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
    position: relative;
    color: #fff;
}

.social-links {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.social-links a {
    font-size: 22px;
    color: #fff;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.social-links a:hover {
    color: #a2cc6a;
    background-color: #00000033;
}

footer .social-links a:hover {
    color: #fff;
}

header .social-links::after {
    content: "";
    display: block;
    width: 1px;
    height: 22px;
    background-color: #FFFFFF66;
    position: relative;
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-bar input {
    height: 40px;
    font-size: 14px;
    box-sizing: border-box;
    width: 100%;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 10px;
    background-color: #f5f5f5a6;
    position: absolute;
    left: 0;
    top: 100%;
    transform: translateY(-20px);
    opacity: 0;
    backdrop-filter: blur(10px);
}

.search-bar input.show {
    opacity: 1;
    transform: translateY(10px);
}

.search-icon {
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.lang {
    display: block;
    background-color: var(--primary);
    color: #fff;
    border-radius: 28px;
    height: 30px;
    padding: 0 15px;
    line-height: 32px;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.lang.en {
    line-height: 28px;
}

.search-icon:hover,
.lang:hover {
    background-color: #fff;
    color: var(--primary);
}

/*-----------------------------------------------------------------------------------*/
/* MAIN SLIDER
/*-----------------------------------------------------------------------------------*/
.main-slider {
    position: relative;
    margin: 0;
}

.main-slider .swiper-slide::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 170px;
    background: linear-gradient(0deg, #FFFFFF 5.93%, rgba(255, 255, 255, 0) 100%);
}

.main-slider .swiper-slide {
    min-height: 500px;
    height: 100vh;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    padding-top: 100px;
}

.main-slider .slide-content {
    max-width: 60%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    color: #fff;
    padding-bottom: 50px;
}


.main-slider .slide-title {
    font-size: 60px;
    line-height: 60px;
    margin-bottom: 30px;
    position: relative;
    text-transform: uppercase;
    text-shadow: 0px 4px 4px #00000066;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.main-slider .slide-caption {
    font-size: 24px;
    line-height: 24px;
    max-width: 80%;
    margin: 0 auto;
    text-shadow: 0px 4px 4px #00000066;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s 0.6s ease;
}

.main-slider .btn {
    margin: 40px auto 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s 0.8s ease-in-out, transform 0.3s 0.8s ease-in-out, background-color 0.3s 0s ease-in-out;

}

.main-slider .swiper-pagination {
    right: 0;
    left: unset;
}

.main-slider .swiper-slide-active .slide-title,
.main-slider .swiper-slide-active .slide-caption,
.main-slider .swiper-slide-active .btn {
    opacity: 1;
    transform: translateY(0);
}

/*-----------------------------------------------------------------------------------*/
/*  ABOUT
/*-----------------------------------------------------------------------------------*/
.about .section-title::before {
    display: none;
}

.about .flex-section {
    gap: 0;
}

.about .section-title {
    color: #fff;
}

.section-box {
    border-radius: 10px 50px 10px 50px;
    padding: 40px 50px;
    max-width: 50%;
    background-color: #A7AE9C26;
    position: relative;
    transition: all 0.4s ease;
}

:dir(ltr) .section-box {
    border-radius: 50px 10px 50px 10px;
}

.about .section-box {
    background: var(--secondary);
    background: linear-gradient(360deg, var(--default) 0%, var(--secondary) 100%);
    color: #fff;
    padding-bottom: 90px;
    transform: translateX(20px);
    transition: all 0.5s ease;
}

.about.animate .section-box,
.about.animate .section-image {
    transform: none;
}

.about .section-content {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 9;
    line-clamp: 9;
    -webkit-box-orient: vertical;
}

.section-image {
    border-radius: 50px 10px 50px 10px;
    height: 550px;
    overflow: hidden;
    position: relative;
    right: -50px;
    z-index: -1;
    max-width: 50%;
    transform: translateX(-20px);
    transition: all 0.5s ease;

}

:dir(ltr) .section-image {
    right: unset;
    left: -50px;
    border-radius: 50px 10px 50px
}

.section-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.section-column {
    max-width: 40%;
}

.section-box .leaves-svg {
    position: absolute;
    bottom: -120px;
    left: -30px;
}

:dir(ltr) .section-box .leaves-svg {
    left: unset;
    right: -30px;
    transform: rotate(55deg);
}

.leaves-svg path {
    opacity: 0;
    transform: translate(5px);
    transition: all 0.5s ease;
}

.leaves-svg path.animate {
    opacity: 1;
    transform: none;
}


/*-----------------------------------------------------------------------------------*/
/*  ITEMS
/*-----------------------------------------------------------------------------------*/
.items-list {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    display: grid;
    gap: 20px;
}

.items-list .item {
    transition: all 0.3s ease;
}

.items-list .item:hover {
    transform: translateY(-10px) scale(1.03);
}

.item {
    overflow: hidden;
    background-color: #fff;
    display: block;
    transition: all 0.3s ease;
    position: relative;
}

.swiper-slide .item {
    height: 100%;
}

.swiper-slide {
    height: unset;
}

.group-anim .item {
    opacity: 0;
    transform: translateY(20px);
}

.group-anim .item.animate {
    opacity: 1;
    transform: translateY(0);
}

.item-title {
    font-size: 20px;
    line-height: 30px;
    display: block;
    margin-bottom: 20px;
}

.article-wrapper .item-title {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 10px;
}

.item-desc {
    font-size: 16px;
    line-height: 25px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.item-image {
    height: 210px;
    width: 100%;
    position: relative;
}

.item-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.item-date {
    position: absolute;
    background-color: var(--secondary);
    color: #fff;
    right: 0;
    bottom: 10px;
    display: flex;
    flex-direction: column;
    padding: 5px 10px 10px 10px;
    border-radius: 10px 0 0 10px;
    text-align: center;
    justify-content: center;
    min-width: 80px;
}

:dir(ltr) .item-date {
    right: unset;
    left: 0;
    border-radius: 0 10px 10px 0;
}

.item-date strong {
    font-size: 40px;
    font-weight: 100;
}

.item-date small {
    font-size: 16px;
}

.item .btn {
    width: 100%;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.item:hover .btn {
    opacity: 1;
    transform: translateY(0);
}

.item.noimg {
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
    display: flex;
    min-height: 200px;
}

.item.noimg .item-title {
    margin-bottom: 0;
}

/*-----------------------------------------------------------------------------------*/
/*  NEWS
/*-----------------------------------------------------------------------------------*/

.swiper-pagination.section-top {
    top: 15px;
    left: 0;
}

:dir(ltr) .swiper-pagination.section-top {
    left: unset;
    right: 0;
}

.news .swiper {
    padding: 20px 10px;
}

.news .item {
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0px 5px 10px 0px #0000001A;
}

.news .item-image {
    margin-bottom: 20px;
    border-radius: 5px;
    overflow: hidden;
}

.blur .container::before {
    content: '';
    position: absolute;
    background-color: #fff0;
    left: -30%;
    backdrop-filter: blur(20px);
    top: 0;
    height: 100%;
    z-index: 10;
    width: 30%;
}

.blur {
    overflow: hidden;
}

:dir(ltr) .blur .container::before {
    left: unset;
    right: -30%;

}

/*-----------------------------------------------------------------------------------*/
/*  PRODUCTS
/*-----------------------------------------------------------------------------------*/
.products .swiper,
.news .swiper {
    overflow: visible;
    padding: 30px 0;
}

.products .item {
    box-shadow: none;
    border-radius: 15px 15px 5px 40px;
    overflow: hidden;
    background-color: var(--primary);
    height: 210px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.products .swiper .item {
    margin: 25px 0;

}

.products .swiper .item:hover {
    background-color: var(--secondary);
    transform: scale(1.1);
}

.products .item-content {
    display: flex;
    position: absolute;
    bottom: 0;
    width: 100%;
    right: 0;
    z-index: 10;
    justify-content: space-between;
    color: #fff;
    align-items: center;
    padding: 10px 20px;
}

.products .item-title {
    font-size: 26px;
    font-weight: 100;
}

.products .item-image {
    border-bottom-left-radius: 200px;
    overflow: hidden;
    transition: all 0.3s ease;
    transform-origin: top right;
}


:dir(ltr) .products .item-image {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 200px;

}

.products .item-image::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #252525 100%);
}


.products-count {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    top: -4px;
}

:dir(ltr) .products-count {
    right: -10px;
}

.products-count b {
    font-size: 24px;
    line-height: 20px;
}

.products .swiper {
    padding-top: 20px;
}

/*-----------------------------------------------------------------------------------*/
/*  TREE
/*-----------------------------------------------------------------------------------*/
.tree .flex-section {
    justify-content: space-around;
}

.tree-items {
    display: flex;
    gap: 8px 2%;
    width: 35%;
    flex-wrap: wrap;
}

.leaf {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    aspect-ratio: 1.4;
    width: 48%;
    background-color: var(--accent);
    font-size: 32px;
    transform: scale(0.8);
    transition: all 0.5s ease;
    opacity: 0;

}

.leaf:hover {
    background-color: var(--primary);
}

.leaf.animate {
    transform: none;
    opacity: 1;
}

.leaf-content {
    display: none;
}

#tree-content {
    min-height: 150px;
}

.section-box.animate {
    opacity: 0;
    transform: translateX(30px);
}

.leaf.active {
    background-color: var(--primary);
    transform: scale(1.2) !important;
}

.leaf:nth-child(1) {
    transform-origin: bottom left;
}

.leaf:nth-child(2) {
    transform-origin: bottom right;
}

.leaf:nth-child(3) {
    transform-origin: top left;
}

.leaf:nth-child(4) {
    transform-origin: top right;
}

.leaf:nth-child(1),
.leaf:nth-child(4) {
    border-radius: 50px 5px 50px 5px;
}

.leaf:nth-child(2),
.leaf:nth-child(3) {
    border-radius: 5px 50px 5px 50px;
}

:dir(ltr) .leaf {
    font-size: 26px;
}

:dir(ltr) .leaf:nth-child(1) {
    transform-origin: bottom right;
}

:dir(ltr) .leaf:nth-child(2) {
    transform-origin: bottom left;
}

:dir(ltr) .leaf:nth-child(3) {
    transform-origin: top right;
}

:dir(ltr) .leaf:nth-child(4) {
    transform-origin: top left;
}

:dir(ltr) .leaf:nth-child(1),
:dir(ltr) .leaf:nth-child(4) {
    border-radius: 5px 50px 5px 50px;
}

:dir(ltr) .leaf:nth-child(2),
:dir(ltr) .leaf:nth-child(3) {
    border-radius: 50px 5px 50px 5px;
}

/*-----------------------------------------------------------------------------------*/
/*  SWIPER
/*-----------------------------------------------------------------------------------*/
.swiper-pagination {
    width: fit-content !important;
    height: fit-content;
}

.swiper-pagination-bullet {
    width: 25px;
    height: 28px;
    transition: all 0.3s ease;
    border-radius: 0 98%;
}

:dir(ltr) .swiper-pagination-bullet {
    border-radius: 98% 0;
}


/*-----------------------------------------------------------------------------------*/
/*  FOOTER
/*-----------------------------------------------------------------------------------*/
footer {
    color: #fff;
    padding-bottom: 30px;
    position: relative;
    padding-top: 200px;
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    left: 0;
    width: 150%;
    height: 350px;
    /* background-color: #A2CC6A; */
    background: linear-gradient(90deg, #a2cc6a 0%, #a7ae9c 100%);
    border-radius: 50%;
    transform: rotate(-4deg) translateX(-10%);
    z-index: -1;
    bottom: -18%;
}

:dir(ltr) footer::before {
    left: unset;
    right: 0;
    transform: rotate(4deg) translateX(10%);
}

footer .bg {
    display: block;
    width: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

footer .container {
    display: flex;
    justify-content: space-between;
    padding-left: 350px;
    gap: 20px;

}

:dir(ltr) footer .container {
    padding-left: 0;
    padding-right: 350px;
}

.org-info {
    display: flex;
    gap: 20px 50px;
    align-items: center;
}

.org-info .social-links {
    margin-top: 20px;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.org-logos ul {
    display: flex;
    list-style: none;
    gap: 10px;
    margin-top: 15px;
}

.org-logos ul a {
    display: block;
    border-radius: 50%;
    overflow: hidden;
    width: 70px;
    height: 70px;
    box-shadow: 0px 8px 10px 0px #00000029;
    background-color: #fff;
    transition: all 0.3s ease;
}

.org-logos ul a:hover {
    transform: scale(1.08);
}

.org-logos ul img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scroll-top {
    position: absolute;
    left: 0;
    top: -100px;
    width: 200px;
    cursor: pointer;
    transition: all 0.3s ease;
}

:dir(ltr) .scroll-top {
    left: unset;
    right: 0;
}

.scroll-top .green-leaf {
    left: -45px;
    position: relative;
    z-index: 1;
    top: -55px;
    opacity: 0;
    transition: all 0.3s 0.2s ease;
}

.scroll-top:hover {
    transform: translateY(-20px);

}

.scroll-top .green-leaf.animate {
    top: -36px;
    opacity: 1;
}

.scroll-top .grey-leaf {
    position: relative;
    top: -15px;
    transition: all 0.3s ease;
}

.scroll-top .grey-leaf.animate {
    top: 0;
    opacity: 1;
}

:dir(ltr) .scroll-top .green-leaf {
    right: -120px;
    left: unset;
}

/*-----------------------------------------------------------------------------------*/
/*  INNER PAGE
/*-----------------------------------------------------------------------------------*/

img[src="null"],
[data-file="null"],
.noimg .item-image {
    display: none;
}

.art-header {
    padding: 80px 0 20px 0;
    color: #fff;
    margin-bottom: 40px;
    z-index: 10;
    position: relative;
}

.art-header .container {
    display: flex;
    gap: 0 60px;
    flex-wrap: wrap;
}

.art-header .section-title {
    color: #fff;
    font-size: 30px;
    gap: 5px;
    margin-bottom: 10px;
    max-width: 80%;
    align-items: flex-start;
}

.art-header .section-title::before {
    color: #fff;
    font-size: 22px;
    top: 6px;
}

.art-header .date {
    font-size: 14px;
    margin-right: 25px;
}

:dir(ltr) .art-header .date {
    margin-left: 25px;
    margin-right: 0;
}

.art-header-info {
    flex-grow: 1;
    margin-bottom: 20px;
}

.art-header-info b {
    font-size: 24px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: center;
    list-style: none;
    margin-bottom: 5px;
    width: fit-content;
}

.breadcrumbs li:not(:first-child)::before {
    content: "\/";
    display: inline-flex;
    margin-left: 5px;
    font-size: 12px;
}

:dir(ltr) .breadcrumbs li:not(:first-child)::before {
    margin-left: 0;
    margin-right: 5px;

}

.breadcrumbs li:last-child {
    display: none;
}

.breadcrumbs a {
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 3px 10px;
    border-radius: 3px;
    transform: all 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--accent);
    background-color: #fff;
}

.art-header p {
    font-size: 16px;
    margin-bottom: 10px;
    display: block;
}


.share-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;

}

.share-icon a {
    background: var(--default);
    border-radius: 5px;
    color: #fff;
    flex-shrink: 0;
    display: block;
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 45px;
}

.share-icon a:hover {
    background-color: var(--secondary);
}

.share-icon a.facebook {
    background-color: #395693;
}

.share-icon a.facebook:hover {
    background-color: #2e4b89;
}

.share-icon a.twitter {
    background-color: #1c96e8;
}

.share-icon a.twitter:hover {
    background-color: #178cda;
}

img[src="null"],
.noimg .image-wrapper {
    display: none;
}

#url {
    opacity: 0;
    position: absolute;
    z-index: -1;
    right: -10000px;
}

:dir(ltr) #url {
    right: unset;
    left: -10000px;
}

.article-wrapper article {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}


.page-content .text {
    flex-grow: 1;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4 {
    display: flex;
    gap: 5px;
    align-items: center;
    margin-bottom: 10px;
}

.page-content h1::before,
.page-content h2::before,
.page-content h3::before,
.page-content h4::before {
    font-size: 22px;
    top: 0;
}

.text:empty {
    display: none;
}

.main-img.youtube {
    display: none;
}

.main-img img {
    border-radius: 10px;
    max-height: 500px;
    box-shadow: 0 6px 10px rgb(0 0 0 / 5%);
    width: 100%;
    object-fit: cover;
}

.main-img:not([href="null"]) {
    max-width: 50%;
    display: block;
    flex-shrink: 0;
    float: right;
    margin-left: 30px;
}

:dir(ltr) .main-img:not([href="null"]) {
    float: left;
    margin-right: 30px;
    margin-left: 0;
}


.component h4 {
    font-size: 22px;
    font-weight: 700;
    position: relative;
    width: fit-content;
    margin-bottom: 15px;
    text-transform: capitalize;
    color: var(--secondary);
}

.component:has(.media-files:empty) {
    display: none;
}

.media-files {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    list-style: none;
    gap: 10px;
    margin: 0 !important;
}

.media-files a {
    display: block;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 5px;
    aspect-ratio: 1/1;
    box-sizing: border-box;
    transition: all 0.5s ease;
    position: relative;
}

.media-files a:hover {
    transform: scale(1.02);
}

.files {
    list-style: none;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    margin: 0 !important;
}

.files a {
    display: block;
    background-color: var(--accent);
    color: #fff;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    padding: 15px 10px;
    padding-left: 50px;
    box-sizing: border-box;
    position: relative;
    transition: all 0.3s ease;
}

.files a:hover {
    background-color: var(--default);
}

.files a::after {
    font-weight: 400;
    content: '\e920';
    font-family: 'icomoon' !important;
    font-size: 28px;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}



.table-wrapper {
    overflow-x: auto;
}


.page-content iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 20px 0;
    border-radius: 20px;
}


.page-content table thead {
    background-color: var(--accent);
    color: #fff;
}

.page-content table th {
    text-align: inherit;

}

.page-content table tr:nth-child(even) {
    background-color: #e9ebe67a;
}

.page-content table {
    width: 100% !important;
    border-collapse: collapse;
    border-spacing: 0;
    max-width: 100% !important;
    border: none !important;
    margin: 20px 0;
}

[dir=rtl] .page-content table tr>*:first-child {
    border-radius: 0 10px 10px 0
}

[dir=ltr] .page-content table tr>*:first-child {
    border-radius: 10px 0 0 10px
}

[dir=rtl] .page-content table tr>*:last-child {
    border-radius: 10px 0 0 10px
}

[dir=ltr] .page-content table tr>*:last-child {
    border-radius: 0 10px 10px 0
}

.table-wrapper {
    overflow-x: auto;
}

.page-content table thead,
.page-content table tbody,
.page-content table tr,
.page-content table td,
.page-content table th {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    font-weight: 400;
}

.page-content table>:not(caption)>*>* {
    padding: 15px 25px;
}

.main-img {
    display: block;
    margin-bottom: 20px;
}

.main-img.youtube {
    display: none;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    text-align: center;
    width: fit-content;
    margin: 20px auto 0 auto;
    gap: 5px;
}


.pagination li:first-child,
.pagination li:last-child {
    font-size: 23px;
    line-height: 29px;
}

.pagination li {
    display: inline-block;
    border-radius: 8px;
    color: #fff;
    background-color: var(--secondary);
    width: 40px;
    height: 35px;
    line-height: 34px;
    transition: all 0.3s ease;
    font-size: 15px;
}

.pagination a {
    display: block;
    text-align: center;
    font-size: inherit;
    color: inherit;
    transition: none;
    line-height: inherit;
}

.pagination li.current {
    background: var(--primary);
}

.pagination li.disabled {
    display: none;
}

.pagination li:not(.current):hover {
    background-color: var(--primary);
    color: #fff;
}



/*-----------------------------------------------------------------------------------*/
/*  FROMS
/*-----------------------------------------------------------------------------------*/
.form-group {
    position: relative;
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.form-control {
    width: 100%;
    border-radius: 8px;
    border: none;
    outline: none;
    padding: 10px 15px;
    font: inherit;
    background: #fff;
}

.form-control:not(textarea) {
    height: 52px;
}

.search-form {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 20px 30px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-sizing: border-box;
    margin-bottom: 40px;
    background-color: #e9ebe67a;
    padding: 30px;
}

.search-form .form-group {
    display: flex;
    margin-bottom: 0;
    gap: 5px;
    align-items: center;
}

.search-form label {
    flex-shrink: 0;
}

.search-form .form-control {
    max-width: 350px;
    color: var(--default);
    font-size: 16px;
}

.search-form input::placeholder {
    color: var(--default);
}

mark {
    color: var(--primary);
    background-color: #fff;
    padding: 0 10px;
}


/*--------------------------------------------*/
/*  MABLE BOX 
/*--------------------------------------------*/

#mablebox-wrap,
div#mablebox {
    box-sizing: border-box;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0
}

#mablebox-tabs a,
div#mablebox {
    backdrop-filter: blur(5px);
    transition: .3s
}

#mablebox-tabs .close,
#mablebox-tabs .icon {
    font-family: 'Material Icons';
    font-style: normal;
    font-size: 18px
}

#mablebox-wrap {
    display: none;
    position: fixed;
    right: 0;
    top: 0;
    left: 0;
    bottom: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    /* background-image: url(../images/loader1.svg); */
    background-color: rgba(0, 0, 0, .2);
    transition: backdrop-filter .3s, padding .3s;
    z-index: 6000
}

#mablebox-wrap h2 {
    background-color: #88a3df;
    font-size: 16px;
    margin: auto;
    padding: 0 20px 5px;
    width: fit-content;
    color: #fff;
    border-radius: 6px
}

#mablebox-wrap .nav-btns {
    display: flex;
    font-family: 'Material icons';
    font-size: 24px;
    line-height: 44px;
    text-align: center;
    cursor: pointer;
    height: 44px;
    width: 88px;
    position: absolute;
    right: 10px;
    bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--default);
    user-select: none;
    z-index: 1001;
}

#mablebox-wrap .nav-btns a {
    height: 100%;
    width: 56px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

#mablebox-wrap .nav-btns a:hover {
    background-color: var(--primary);
}

#mablebox-m,
#mablebox-wrap h2:empty {
    display: none
}

div#mablebox {
    display: block;
    overflow: auto;
    text-align: center;
    margin: 20px auto;
    max-width: calc(100% - 40px);
    color: #fff;
    direction: ltr;
    background-color: #fff;
    background-size: contain;
    border-radius: 10px;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .5);
    transform: scale(.5) translateY(-50%) translateX(-50%);
    position: absolute;
    top: 50%;
    left: 50%;
}

div#mablebox.fullheight,
div#mablebox.fullheight #mablebox-frame {
    max-height: calc(100vh - 80px)
}

div#mablebox.fullscreen {
    margin: auto;
    max-width: 100% !important;
    width: 100% !important;
    height: 100% !important;
    max-height: 100vh;
    border-radius: 0
}

div#mablebox.mfullscreen {
    margin: 10px auto;
    max-width: 100% !important;
    width: calc(100% - 20px) !important;
    height: calc(100% - 20px) !important;
    max-height: 100vh;
    border-radius: 10px
}

#mablebox.show {
    transform: scale(1) translateY(-50%) translateX(-50%) !important;
    opacity: 1
}

#mablebox.api {
    background-color: #ffffffd9;
    color: #333;
    padding: 0 20px;
    text-align: right;
    max-height: 300px
}

[data-theme=dark] #mablebox.api {
    background-color: #202427ba;
    color: #fff
}

#mablebox.api section {
    max-height: 200px;
    overflow-y: auto;
    margin: 10px 0;
    direction: rtl
}

#mablebox.api section s {
    font-family: 'Material icons';
    text-decoration: none;
    vertical-align: middle;
    color: #68cce0
}

#mablebox.api img {
    max-width: 70%;
    margin: auto;
    display: block;
    border-radius: 5px
}

#mablebox.api footer {
    height: 20px
}

#mablebox>img {
    max-width: 100%;
    max-height: 100%
}

#mablebox-frame {
    height: 100%;
    width: 100%;
    transition: .3s;
    margin-bottom: -4px
}

div#mablebox.fullscreen #mablebox-frame,
div#mablebox.mfullscreen #mablebox-frame {
    height: 100% !important;
    max-height: 100vh !important
}

#mablebox-tabs {
    display: none;
    align-items: end;
    gap: 5px;
    position: fixed;
    right: 320px;
    bottom: -4px;
    z-index: 1000;
    list-style: none;
    transition: bottom .5s
}

#mablebox-tabs.show {
    display: flex
}

#mablebox-tabs.hide {
    bottom: -80px
}

#mablebox-tabs li {
    position: relative
}

#mablebox-tabs a {
    color: #fff;
    white-space: nowrap;
    background-color: #44474a;
    border-radius: 4px 4px 0 0;
    min-width: 100px;
    max-width: 240px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    height: 26px;
    padding: 3px 15px 3px 35px
}

#mablebox-tabs li a.current,
#mablebox-tabs li:hover a {
    background-color: #88a3df;
    padding-bottom: 10px
}

#mablebox-tabs .icon {
    color: #fff;
    padding-top: 5px;
    margin-right: -7px;
    margin-left: 5px;
    float: right
}

#mablebox-tabs .close {
    color: #fff;
    background-color: rgba(0, 0, 0, .3);
    position: absolute;
    left: 8px;
    top: 8px;
    cursor: pointer;
    border-radius: 3px
}

#mablebox-tabs .close:hover {
    background-color: rgba(0, 0, 0, .4)
}


/*-----------------------------------------------------------------------------------*/
/* TIPSY
/*-----------------------------------------------------------------------------------*/
.tipsy {
    font-size: 10px;
    position: absolute;
    padding: 5px;
    z-index: 100000
}

.tipsy-inner {
    background-color: #000;
    color: #fff;
    max-width: 200px;
    padding: 5px 8px 4px;
    text-align: center;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px
}

.tipsy-arrow {
    position: absolute;
    width: 0;
    height: 0;
    line-height: 0;
    border: 5px dashed #000
}

.tipsy-n .tipsy-arrow,
.tipsy-nw .tipsy-arrow {
    border-left-color: transparent;
    border-right-color: transparent
}

.tipsy-arrow-n {
    border-bottom-color: #000
}

.tipsy-arrow-s {
    border-top-color: #000
}

.tipsy-n .tipsy-arrow,
.tipsy-ne .tipsy-arrow,
.tipsy-nw .tipsy-arrow {
    top: 0;
    border-bottom-style: solid;
    border-top: none
}

.tipsy-arrow-e {
    border-left-color: #000
}

.tipsy-arrow-w {
    border-right-color: #000
}

.tipsy-n .tipsy-arrow {
    left: 50%;
    margin-left: -5px
}

.tipsy-nw .tipsy-arrow {
    left: 10px
}

.tipsy-ne .tipsy-arrow {
    right: 10px;
    border-left-color: transparent;
    border-right-color: transparent
}

.tipsy-s .tipsy-arrow,
.tipsy-se .tipsy-arrow,
.tipsy-sw .tipsy-arrow {
    bottom: 0;
    border-top-style: solid;
    border-bottom: none;
    border-left-color: transparent;
    border-right-color: transparent
}

.tipsy-s .tipsy-arrow {
    left: 50%;
    margin-left: -5px
}

.tipsy-sw .tipsy-arrow {
    left: 10px
}

.tipsy-se .tipsy-arrow {
    right: 10px
}

.tipsy-e .tipsy-arrow,
.tipsy-w .tipsy-arrow {
    top: 50%;
    margin-top: -5px;
    border-top-color: transparent;
    border-bottom-color: transparent
}

.tipsy-e .tipsy-arrow {
    right: 0;
    border-left-style: solid;
    border-right: none
}

.tipsy-w .tipsy-arrow {
    left: 0;
    border-right-style: solid;
    border-left: none
}


/*-----------------------------------------------------------------------------------*/
/*  MONGID | SOFTWARE HOUSE
/*-----------------------------------------------------------------------------------*/
.mongiddesigns {
    position: absolute;
    bottom: 15px;
    left: 15px;
    direction: ltr;
}

.mongiddesigns span {
    display: block;
    position: relative;
    width: 36px;
    height: 36px;
    background-image: url(https://mongid.com/designs/mongid/iconxl2.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
    border: 2px solid transparent;
    border-radius: 50%;
    z-index: 10;
    transform: scale(0.85);
    transition: all 0.5s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

.mongiddesigns:hover span {
    transform: scale(1) rotate(360deg);
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}

.mongiddesigns p {
    display: block;
    text-align: left;
    position: absolute;
    left: 0;
    bottom: 5px;
    height: 30px;
    padding: 0 10px 0 30px;
    border-radius: 0 15px 15px 0px;
    z-index: 1;
    opacity: 0;
    transition: left 0.3s ease, opacity 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    transition-delay: 0.1s;
}

.mongiddesigns p i {
    color: #ffffffcf;
    display: block;
    text-transform: capitalize;
    font-size: 10px;
    height: 10px;
    line-height: 16px;
    font-style: normal;
}

.mongiddesigns p b {
    color: #fff;
    display: block;
    font-size: 12px;
    line-height: 20px;
    height: 12px;
    white-space: nowrap;
    font-weight: normal;
}

.mongiddesigns:hover p {
    left: 20px;
    opacity: 1;
}
/*-----------------------------------------------------------------------------------*/
/* RESPONSIVE DESIGN
/*-----------------------------------------------------------------------------------*/

@media screen and (max-width: 1245px) {
    header .container {
        width: 98%;
    }

    header .logo {
        width: 150px;
    }

    .menu {
        gap: 10px 30px;
    }

}

@media screen and (max-width: 1085px) {

    header nav,
    .header-actions {
        opacity: 0;
        visibility: hidden;
    }

    .toggle-menu {
        cursor: pointer;
        border: none;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--primary);
        color: #fff;
        font-size: 25px;
        z-index: 1000;
        position: absolute;
        top: 20px;
        border-radius: 10px;
        width: 44px;
        height: 44px;
        left: 10px;
    }

    .ham {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        transition: transform 400ms;
        -moz-user-select: none;
        -webkit-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .ham.active {
        transform: rotate(45deg);
    }

    .ham .line {
        fill: none;
        transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
        stroke: #fff;
        stroke-width: 5.5;
        stroke-linecap: round;
    }

    .ham .top {
        stroke-dasharray: 40 82;
    }

    .ham .middle {
        stroke-dasharray: 40 111;
    }

    .ham .bottom {
        stroke-dasharray: 40 161;
    }

    .ham.active .top {
        stroke-dasharray: 17 82;
        stroke-dashoffset: -62px;
    }

    .ham.active .middle {
        stroke-dashoffset: 23px;
    }

    .ham.active .bottom {
        stroke-dashoffset: -83px;
    }


    :dir(ltr) .toggle-menu,
    :dir(ltr) header.show nav {
        left: unset;
        right: 10px;
    }

    header.show nav {
        opacity: 1;
        visibility: visible;
        left: 0;
    }

    header.show .header-actions {
        opacity: 1;
        visibility: visible;
        position: fixed;
        z-index: 10000;
        width: 96%;
        top: 120px;
        margin: 0 auto;
        left: 0;
        right: 0;
    }

    header nav {
        opacity: 0;
        visibility: hidden;
        left: -100%;
        position: fixed;
        width: 100%;
        background: #ffffffcf;
        top: 0;
        height: 100vh;
        transition: all 0.5s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1000;
        gap: 50px;
        flex-direction: column;
        backdrop-filter: blur(11px);
    }

    :dir(ltr) header nav {
        left: unset;
        right: -100%;
    }

    .menu {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-width: unset;
        padding-top: 0;
    }

    .menu li a::after {
        border-radius: 10px;
    }

    .menu a {
        padding: 5px 10px;
    }

    .menu a::before {
        display: none;
    }
}


@media screen and (max-width: 930px) {
    .flex-section {
        flex-wrap: wrap;
    }

    .about .section-box {
        order: 2;
        padding-top: 60px;
        border-radius: 8px !important;
    }

    .section-image {
        right: 0 !important;
        left: 0 !important;
        height: 300px;
        aspect-ratio: 1/1;
        max-width: 90%;
        margin: 0 auto;
        top: 40px;
        z-index: 1;
    }

    .tree-items {
        width: auto;
    }

    .section-box {
        width: 100%;
        max-width: 100%;
        padding: 30px;
    }

    .org-info {
        gap: 20px;
    }

    footer .container {
        padding-left: 0;
        padding-right: 0;
        padding-top: 15px;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 620px) {
    .section-title {
        font-size: 30px;
    }

    footer::before {
        height: 460px;
        bottom: -20%;
    }

    footer .logo {
        width: 120px;
    }

    .org-info {
        gap: 10px;
        width: 100%;
    }

    .contact-links {
        font-size: 16px;
    }


    .scroll-top,
    .section-box .leaves-svg {
        transform: scale(0.7) !important;
    }

    footer {
        padding-top: 100px;
    }

    .leaf.active {
        transform: scale(1.1) !important;
    }

    :dir(ltr) .leaf {
        font-size: 20px;
    }

    section.about {
        margin-top: 30px;
    }

    .main-img {
        float: none !important;
        margin: 0 !important;
        max-width: 100% !important;
    }

    .art-header .section-title {
        max-width: 100%;
    }

    .search-form * {
        width: 100%;
    }

    .search-form .form-group {
        display: block;
    }

    .form-group label {
        font-size: 16px;
        margin-bottom: 10px;
    }

    header::before {
        width: 120%;
        clip-path: ellipse(80% 90% at top);
    }

    .art-header {
        padding-top: 0;
    }

    .swiper-pagination.section-top {
        position: relative;
    }

    .main-slider .slide-content {
        max-width: 100%;
    }

    .main-slider .slide-title {
        font-size: 45px;
        line-height: 45px;
    }

    footer .logo {
        width: 90px;

    }

    .contact-links {
        font-size: 14px;
    }

    :dir(ltr) .scroll-top {
        left: unset;
        right: 40px;
        top: -87px;
    }

    .swiper .item.animate {
        opacity: 1 !important;
        transform: none;
    }
}