/*-----------------------------------------------------------------------------------*/
/* FONTS
/*-----------------------------------------------------------------------------------*/
@font-face {
    font-family: 'FrutigerLTArabic';
    font-weight: 400;
    font-style: normal;
    src: url('../fonts/FrutigerLTArabic55Roman.ttf');
}

@font-face {
    font-family: 'FrutigerLTArabic';
    font-weight: 600;
    font-style: normal;
    src: url('../fonts/FrutigerLTArabic65Bold.ttf');
}

/*-----------------------------------------------------------------------------------*/
/* VARIABLES
/*-----------------------------------------------------------------------------------*/
:root {
    --primary: #45B8B0;
    --secondary: #F4B223;
    --light-yellow: #F9CF7A;
    --default: #555C78;
    --light-grey: #6C8C9C;
    --swiper-theme-color: var(--secondary);
    --swiper-navigation-sides-offset: 100px;
    --swiper-navigation-size: 24px;
    --swiper-pagination-bullet-size: 15px;
    --swiper-pagination-bottom: 0;
}

/*-----------------------------------------------------------------------------------*/
/* 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-size: 100%;
    font-family: "FrutigerLTArabic", sans-serif;
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
    font-weight: 600;
}

body {
    position: relative;
    font-weight: 600;
    color: var(--default);
    background: #fff;
    font-size: 18px;
    overflow-x: hidden;
}

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(--light-grey);
    color: #fff;
}

/*-----------------------------------------------------------------------------------*/
/* GLOBAL STYLES
/*-----------------------------------------------------------------------------------*/
main {
    position: relative;
    z-index: 1;
    background-color: #fff;
    min-height: calc(100vh - 650px);

}

.container {
    position: relative;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.flex-section {
    display: flex;
    gap: 30px 50px;
    justify-content: space-between;
}

.flex-section .section-title {
    width: 100%;
}

section {
    margin: 80px 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: 40px;
    width: fit-content;
    margin-bottom: 20px;
    line-height: 1.3;
    color: var(--default);

}

.section-title a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.white {
    color: #fff;
}

.section-title.center {
    margin-left: auto;
    margin-right: auto;
}

.section-title.center a {
    justify-content: center;
}

.section-content {
    font-size: 18px;
    line-height: 30px;
    text-align: justify;
}

.btn {
    display: block;
    background-color: var(--default);
    padding: 5px 20px;
    text-align: center;
    transition: all 0.3s ease;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    height: 50px;
    width: fit-content;
    line-height: 44px;
    min-width: 150px;
    text-transform: uppercase;
    border-radius: 12px;
}

.btn:hover,
.btn-secondary {
    background-color: var(--secondary);
}

.btn-secondary:hover {
    background-color: var(--default);
}

.btn-arrow {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.btn-arrow span {
    position: relative;
    transition: all 0.3s ease;
    transform: translateX(-10px);
    line-height: 1;

}

:dir(ltr) .btn-arrow span {
    transform: translateX(10px);

}

.btn-arrow i {
    opacity: 0;
    transition: all 0.3s ease;
    position: relative;
    transform: translateX(20px);
    font-size: 20px;
}

:dir(ltr) .btn-arrow i {
    transform: translateX(-20px);
}

.btn-arrow:hover i {
    opacity: 1;
    transform: translateX(0);
}

.btn-arrow:hover span {
    transform: translateX(10px);
}

:dir(ltr) .btn-arrow:hover span {
    transform: translateX(-10px);

}

/*-----------------------------------------------------------------------------------*/
/* HEADER
/*-----------------------------------------------------------------------------------*/

header {
    padding: 10px 0;
    background-color: #fff;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    position: fixed;
    top: 0;
    z-index: 10;
    left: 0;
    right: 0;
    border-radius: 0 0 20px 20px;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.5s ease;
}

header.animate {
    opacity: 1;
    transform: none;
}

.header-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    top: -20px;
    margin-bottom: -20px;
    position: relative;
}

.logo {
    display: flex;
    height: fit-content;
}

.toggle-menu {
    display: none;
}

header .logo img {
    max-width: 200px;
    width: 100%;
    transition: all 0.3s ease;
}

.menu {
    display: flex;
    justify-content: center;
    gap: 20px 40px;
    list-style: none;
    position: relative;
    top: 20px;
    transition: all 0.3s ease;

}

:dir(ltr) .menu {
    gap: 20px 30px;
}

.menu li {
    position: relative;
}

.menu a {
    display: block;
    transition: all 0.3s ease;
    font-size: 18px;
}

.submenu {
    list-style: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    z-index: 10;
    border-radius: 0 0 15px 15px;
    opacity: 0;
    visibility: hidden;
    min-width: 255px;
    padding: 10px;
    box-shadow: 0px 8px 10px -5px #00000040;
    backdrop-filter: blur(4px);
    background-color: #fff;
    transform: translateY(20px);
}
:dir(ltr) .submenu{
    left: 0;
    right:  unset;
}

.submenu:empty {
    display: none;
}

.submenu a {
    font-size: 16px;
    padding: 5px 10px;
    border-radius: 8px;
    transition: all 0.3s ease-out;
}

.submenu a:hover {
    color: #fff;
    background-color: var(--light-yellow);
}

.menu li:hover>.submenu {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.menu li:hover>.submenu::before {
    width: 100%;
    opacity: 1;
}

.menu>li>a::after,
.quick-links a::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--light-yellow);
    position: relative;
    top: 5px;
    width: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.submenu::before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--light-yellow);
    position: absolute;
    top: 3px;
    width: 0;
    opacity: 0;
    right: 0;
    transition: all 0.3s 0.1s ease;
}

.menu>li:has(ul.submenu > li)>a::after {
    display: none;
}

.menu>li:hover>a::after,
.menu>li.active>a::after,
.quick-links a:hover::after {
    width: 100%;
    opacity: 1;
}

.header-actions {
    display: flex;
    gap: 7px;
    justify-content: flex-end;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    align-items: center;
}


.search-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.search-bar input {
    height: 30px;
    font-size: 14px;
    box-sizing: border-box;
    opacity: 0;
    width: 0;
    transition: all 0.3s ease;
    padding: 0;
    border-radius: 5px;
    background-color: #F5F5F5;
}

.search-bar:hover input {
    opacity: 1;
    width: 215px;
    padding: 5px 20px;
}

.search-icon {
    width: 30px;
    height: 30px;
    background-color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: #fff;
    transition: all 0.3s ease;
}

.search-icon:hover {
    background-color: var(--primary);
}

.lang {
    display: block;
    background-color: var(--secondary);
    color: #fff;
    border-radius: 5px;
    height: 30px;
    padding: 0 15px;
    line-height: 32px;
    font-size: 14px;
    text-transform: uppercase;
    width: fit-content;
    transition: all 0.3s ease;
}

.lang:hover {
    background-color: var(--default);
}

/* Sticky header */
header.sticky {
    box-shadow: 0px 8px 10px -5px #0000001c;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
}


header.sticky .logo img {
    max-width: 130px;
}

header.sticky .header-actions {
    transform: translateY(-10px);
    opacity: 0;
    height: 15px;
}

header.sticky .menu {
    top: 0;
}

/*-----------------------------------------------------------------------------------*/
/* SWIPER SLIDER
/*-----------------------------------------------------------------------------------*/

.swiper-navigation {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 20px;
    margin-top: 10px;
    justify-content: center;

}

.swiper-nav {
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 25px;
}

.swiper-nav:not(.swiper-button-disabled):hover {
    color: var(--secondary);
}

.swiper-button-disabled {
    opacity: 0.5;
    cursor: auto
}

.swiper-button {
    background: #45B8B0BF;
    border-radius: 50%;
    width: 70px;
    color: #fff;
    height: 70px;
    transition: all 0.3s ease;
    transform: translateY(-50%);
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    font-family: 'icomoon' !important;
    content: "\e919";
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    font-family: 'icomoon' !important;
    content: "\e91a";
}

.swiper-button:hover {
    transform: translateY(-50%) scale(1.1);
}

/*-----------------------------------------------------------------------------------*/
/* MAIN SLIDER
/*-----------------------------------------------------------------------------------*/
.main-slider {
    margin: 0;
    padding: 0;
}

.main-slider .slide-image {
    min-height: 500px;
    height: 100vh;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.slide-image::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(127.16deg, rgba(69, 184, 176, 0) 25.45%, var(--primary) 86.33%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.main-slider .slide-content {
    position: absolute;
    bottom: 80px;
    right: 0;
    z-index: 2;
    max-width: 40%;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.3s 0.3s ease;

}

:dir(ltr) .main-slider .slide-content {
    right: unset;
    left: 0;
    transform: translateX(-30px);
}

.main-slider .swiper-slide-active .slide-content {
    opacity: 1;
    transform: translateX(0) !important;
}

.main-slider .btn {
    font-size: 20px;
    height: 55px;
    line-height: 48px;
}

.slide-title {
    font-size: 40px;
    color: #fff;
    line-height: 1.6;
}

:dir(ltr) .slide-title {
    line-height: 1.4;
}

.slide-content .btn {
    margin-top: 40px;
}


.main-slider .swiper-navigation {
    position: absolute;
    bottom: 50px;
    left: 0;
    z-index: 2;
    margin: 0;
    color: #fff;

}

/*-----------------------------------------------------------------------------------*/
/* VISION SECTION
/*-----------------------------------------------------------------------------------*/
.gradient-section {
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: var(--primary);
    color: #fff;
}

.gradient-section .section-image {
    width: 50%;
    flex-shrink: 0;
    position: relative;
}

.gradient-section .section-image img {
    object-fit: cover;
    height: 100%;
    display: block;
    width: 100%;
}

.gradient-section .section-image::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(89.77deg, var(--primary) 17.7%, rgba(69, 184, 176, 0) 99.79%);
    position: absolute;
    top: 0;
    left: -20%;
}

:dir(ltr) .gradient-section .section-image::before {
    left: unset;
    right: -20%;
    background: linear-gradient(to left, var(--primary) 17.7%, rgba(69, 184, 176, 0) 99.79%);
}

.gradient-section .section-text {
    width: 50%;
    padding: 50px 50px 50px 80px;
    font-size: 20px;
    position: relative;
}

:dir(ltr) .gradient-section .section-text {
    padding: 50px 80px 50px 50px;
}

.vision .section-content {
    font-size: 20px;
}

section.vision,
section.blocks {
    margin: 0;
    padding: 80px;
}

.logo-anim {
    position: absolute;
    top: 0;
    z-index: 1;
    transform: rotate(-30deg);
    left: -60px;
    transition: all 0.5s ease;
}

:dir(ltr) .logo-anim {
    left: unset;
    right: -60px;
    transform: rotate(150deg);
}

.ray {
    opacity: 0;
    transition: all 0.5s 0.2s ease;
    transform: scale(0.8);
    transform-origin: center;
}

.logo-anim.animate {
    left: 0;
    transform: none;
}

:dir(ltr) .logo-anim.animate {
    left: unset;
    right: 0;
    transform: rotate(180deg);

}

.logo-anim.animate .ray {
    opacity: 1;
    transform: scale(1);
}


/*-----------------------------------------------------------------------------------*/
/* ICONS LINKS
/*-----------------------------------------------------------------------------------*/
.icons-links {
    background: linear-gradient(90deg, var(--light-grey) 0%, var(--primary) 100%);
    padding: 50px 0;
}

.icons-list {
    display: flex;
    justify-content: space-around;
    gap: 0 30px;
    flex-wrap: wrap;
}

.icon-link {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    color: #fff;
    font-size: 20px;
    justify-content: space-between;
    max-width: 170px;
    text-align: center;
    transition: all 0.5s ease;
    padding: 15px;
    border-radius: 15px;
    opacity: 0;
    transform: translate(30px) skew(4deg);
}

.icon-link.animate {
    opacity: 1;
    transform: none;
}

.icon-link:hover {
    background-color: #FFFFFF21;
}

.icon-link span {
    line-height: 1.4;
    display: block;
}

.icon-link .lord-icon {
    width: 80px;
}

/*-----------------------------------------------------------------------------------*/
/* MEMBERS
/*-----------------------------------------------------------------------------------*/
.members .item-image {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    border: 13px solid #A8A8A830;
    padding: 5px;
    transition: all 0.3s ease;
    margin: 0 auto;

}

.members .item-image img {
    object-fit: contain;
}

.members .swiper-wrapper {
    padding-bottom: 60px;
}

.swiper-pagination-bullet {
    transition: all 2s ease;
}

.members .item:hover .item-image {
    border-color: #555c7852;
}

.members .item-title {
    font-size: 18px;
    margin-top: 15px;
    line-height: 25px;
    text-align: center;
}

.items-list.members {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important; 
}

.members .item {
    transform: translateY(-20px);
}

article {
    margin-bottom: 40px;
}

/*-----------------------------------------------------------------------------------*/
/* CONTACT US  */
/*-----------------------------------------------------------------------------------*/
section.contact,
section.accordion {
    overflow: unset;
}

.contact-wrapper {
    background: linear-gradient(269.89deg, var(--primary) 0.07%, var(--light-grey) 99.89%);
    padding: 50px;
    border-radius: 20px;
    color: #fff;
    position: relative;
    top: 120px;
    margin-top: -120px;
    align-items: center;
}

.contact-info {
    width: 40%;
    flex-grow: 1;
}

.contact-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 25px;
}

.contact-details li i {
    font-size: 24px;
}

.contact-details .phone-numbers {
    display: flex;
    flex-direction: column;
}

.contact-form {
    width: 40%;
    flex-grow: 1;
}

.contact-form .btn {
    width: 100%;
}

.social-icons {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 40px;
}

.social-icons a {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    transition: all 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;

}

.social-icons a:hover {
    transform: scale(1.08);
    background-color: #ffffff4f;
    color: var(--default);
}

/*-----------------------------------------------------------------------------------*/
/* ITEMS */
/*-----------------------------------------------------------------------------------*/
.items-list:not(.swiper-wrapper) {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.items-list.swiper-wrapper {
    padding-bottom: 40px;
}

.item {
    position: relative;
    display: block;
    transition: all 0.3s ease;
}

.group-anim .item {
    opacity: 0;
}

.group-anim .item.animate {
    opacity: 1;
    transform: none;
}

.item-title {
    font-size: 20px;
    line-height: 27px;
    transition: all 0.3s ease;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

.item-image {
    overflow: hidden;

}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-date {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--secondary);
    color: #fff;
    border-radius: 10px;
    width: 90px;
    height: 90px;
    flex-shrink: 0;
}

.item-date small {
    font-size: 20px;
    line-height: 1;
    font-weight: 400;
}

.item-date strong {
    font-size: 40px;
    line-height: 1;
    font-weight: 400;
}

/*-----------------------------------------------------------------------------------*/
/* BLOCKS */
/*-----------------------------------------------------------------------------------*/
.blocks .items-list {
    gap: 20px 50px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.blocks .item {
    padding: 30px 30px 30px 0;
    width: 100%;
    max-width: 300px;
    display: flex;
    align-items: flex-end;
    aspect-ratio: 1/1;
    background-color: var(--light-grey);
    border-radius: 20px;
    color: #fff;
    background-image: url('../images/blocks-bg.png');
    background-size: auto 80%;
    background-repeat: no-repeat;
    background-position: top right;
    margin: 0 auto;
    overflow: hidden;
    transform: perspective(1200px) translateX(0px) translateY(80px) scale(1) rotate(0deg) rotateX(40deg) rotateY(0deg) translateZ(0px);
    transition: all 0.5s ease;
}

.blocks .item.animate {
    transform: perspective(1200px) !important;

}

:dir(ltr) .blocks .item {
    padding: 30px 0 30px 30px;
}

.blocks .item:hover {
    background-color: var(--default);
    transform: scale(1.05);
}

.item-title span,
.item-main-title span {
    font-weight: 400;
    display: block;
    margin-bottom: 15px;
}

.blocks .item-title,
.accordion .item-title {
    font-size: 32px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;

}

.blocks .item-title i {
    font-size: 30px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    left: 20px;
    color: inherit;
}

:dir(ltr) .blocks .item-title i {
    left: unset;
    right: 20px;
}

.blocks .item-title .arrow {
    color: #F9CF7A;
    position: relative;
    padding: 8px 10px;

}

.blocks .item-title .arrow::after {
    content: '';
    padding: 0 20px;
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--secondary);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateX(-100%);
    box-sizing: border-box;
}

:dir(ltr) .blocks .item-title .arrow::after {
    left: unset;
    right: 0;
    transform: translateX(100%);

}

.blocks .item:hover .arrow {
    color: #fff;
}

.blocks .item:hover .arrow i {
    left: 0;
}

:dir(ltr) .blocks .item:hover .arrow i {
    left: unset;
    right: 0;
}

.blocks .item:hover .arrow::after {
    opacity: 1;
    transform: translateX(0);
}

/*-----------------------------------------------------------------------------------*/
/* accordion */
/*-----------------------------------------------------------------------------------*/
.accordion .items-list {
    display: flex;
    justify-content: space-between;
    gap: 20px 2%;
    flex-wrap: wrap;
}

.accordion .item {
    border-radius: 20px;
    overflow: hidden;
    height: 420px;
    background: var(--light-grey);
    background-image: url('../images/bg-btm.png');
    background-size: auto 80%;
    background-repeat: no-repeat;
    background-position: bottom right;
    width: 20%;
    flex-shrink: 0;
    transform-origin: center;
    transition: all 0.5s ease;
    transform: translateY(30px) scale(0.8);
}

.accordion .item-title {
    position: absolute;
    right: 0;
    padding: 20px 30px;
    z-index: 1;
    color: #fff;
    height: fit-content;
    bottom: 30px;
    align-items: center;
}

.accordion .item .item-subtitle {
    opacity: 0;
    transform: translateX(20px);
}

.accordion .item-main-title {
    position: absolute;
    color: #fff;
    top: 30px;
    right: 10%;
    font-size: 32px;
    line-height: 1;
    transition: all 0.4s ease;
}

:dir(ltr) .accordion .item-main-title {
    right: unset;
    left: 10%;
}

.accordion .item .item-image {
    opacity: 0;
}

.accordion .item.active .item-image {
    opacity: 1;
    transition: all 0.5s ease;
}

.accordion .item.active {
    width: 32%;
}

.accordion .item.active .item-main-title {
    opacity: 0;
    transform: translateY(300%);
}

.accordion .item.active .item-title {
    background-color: var(--primary);
}

.accordion .item.active .item-subtitle {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.4s 0.2s ease;

}

.accordion .item-image {
    height: 100%;
}

.accordion .arrow {
    margin-right: auto;
}

/*-----------------------------------------------------------------------------------*/
/* EVENTS */
/*-----------------------------------------------------------------------------------*/

.events-list {
    width: 50%;
    padding: 20px 0;
}

.events-list .section-title {
    font-size: 32px;
}

.section-title .icon-arrow-long {
    color: var(--primary);
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.section-title.animate .icon-arrow-long {
    opacity: 1;
    transform: none;

}

:dir(ltr) .icon-arrow-long::before,
:dir(ltr) .icon-arrow:before,
:dir(ltr) .icon-arrow-left:before {
    transform: rotate(180deg);
    display: block;
}

.events .items-list {
    gap: 30px;
    grid-template-columns: 1fr;
    margin-top: 40px;
}

.events .item {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 10px;
    border-radius: 20px;
    transform: translateX(-20px);
}

.events .item:hover {
    background-color: #EDEDED;
}

.calendar {
    background-color: var(--primary);
    border-radius: 20px;
    padding: 30px 50px 50px 50px;
    flex-grow: 1;
}

#events-calendar .ui-widget.ui-widget-content {
    color: #fff;
}

.inner-section.events .item {
    flex-direction: row;
    padding: 15px 10px;
    height: unset;
}

.inner-section.events .item-title {
    font-size: 18px !important;
    line-height: 1.2;
    text-align: initial !important;
}

.ui-datepicker-prev:after,
.ui-datepicker-next:after {
    font-family: Icomoon !important;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 500;
}

.ui-datepicker-prev::after {
    content: "\e900";
}

.ui-datepicker-next::after {
    content: "\e901";
}


.ui-state-active,
.has-event .ui-state-active {
    background-color: var(--secondary) !important;
    color: #fff !important;
    border: 3px solid var(--secondary) !important;
}

.ui-datepicker-calendar tbody td>* {
    display: flex !important;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    border: none !important;
    padding: 0 !important;
    font-weight: 400 !important;
    font-size: 18px;
    border: 3px solid transparent;
    max-width: 50px;
}

.ui-datepicker-calendar tbody td.has-event>* {
    border: 3px solid var(--secondary) !important;
}

.loader {
    background-image: url(../images/spinner.gif);
    background-size: 100px;
    background-repeat: no-repeat;
    width: 100%;
    height: 150px;
    background-position: center;
}

/*-----------------------------------------------------------------------------------*/
/* PLATFORM */
/*-----------------------------------------------------------------------------------*/

.platform .section-title {
    font-size: 30px;
    font-weight: 400;
}

.platform .section-title i {
    color: var(--primary);
}

.banner-image {
    width: 68%;
}

.banner-image .addon {
    display: block;
    width: 100%;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.banner-image .addon:hover {
    opacity: 0.8;
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.platform-links {
    min-height: 100%;
    border-radius: 20px;
    background: linear-gradient(180deg, var(--default) 0%, var(--light-grey) 100%);
    padding: 25px;
    color: #fff;
    flex-grow: 1;
}

.platform-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #fff;
}

.platform-list .item {
    transform: translateX(30px);
}

.platform-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    transition: all 0.3s ease;
    border-radius: 10px;
    font-size: 20px;
}

.platform-list a:hover {
    background-color: #FFFFFF21;
}

.platform-list a:hover::before {
    background-color: var(--secondary);
    transform: scale(1.1) !important;
}

.platform-list a::before {
    content: "";
    display: block;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
    background-color: var(--primary);
    transform: scale(1.1);
}

.platform-list .item.animate a::before {
    transform: none;
}

/*-----------------------------------------------------------------------------------*/
/* NEWS
/*-----------------------------------------------------------------------------------*/
.news-slider {
    padding: 80px 0;
}

.news-slider .swiper-slide {
    width: 25%;
    position: relative;
    pointer-events: none;
}

.news-slider .swiper-slide-next {
    width: 50%;
    transform: scale(1.2);
    z-index: 1;
    pointer-events: auto;
}


.news-slider .swiper-slide-next .item-image {
    position: relative;
    border-radius: 20px;
    box-shadow: 0px 15px 15px -15px #00000066;

}

.news-slider .swiper-slide-next .item-image::before {
    background: linear-gradient(180deg, rgba(94, 94, 94, 0) 0%, var(--light-grey) 100%);
    backdrop-filter: blur(0)
}

.news-slider .item-image::before {
    content: "";
    display: block;
    background: #F4B22366;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(4px)
}

.news-slider .item-image {
    height: 20vw;
    min-height: 400px;
}

.news-slider .item-content {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    opacity: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    color: #fff;
    transform: translateY(20px);
    padding: 0 20px;
    text-align: center;
}

.news-slider .swiper-slide-next .item-content {
    opacity: 1;
    transform: none;
    transition: all 0.3s ease;
}

.items-list.news .item-image {
    border-radius: 8px;
    height: 185px;
    margin-bottom: 20px;
    position: relative;
    flex-shrink: 0;
}

.items-list.news .item-date {
    position: absolute;
    top: 15px;
    left: 0;
    background-color: var(--default);
    border-radius: 0 10px 10px 0;
    width: 80px;
    height: 80px;
    transition: all 0.3s ease;
}

.items-list.news .item:hover {
    transform: translateY(-5px);
}

.items-list.news .item:hover .item-date {
    background-color: var(--secondary);
}

:dir(ltr) .items-list.news .item-date {
    left: unset;
    right: 0;
    border-radius: 10px 0 0 10px;
}

.items-list.news .item-date strong {
    font-size: 36px;
    line-height: 1.2;
}

.items-list.news .item-date small {
    font-size: 17px;
}

.items-list.news .item {
    background-color: #fff;
    box-shadow: 0px 15px 25px -5px #00000026;
    border-radius: 10px;
    padding: 10px 10px 0 10px;
    box-shadow: 0px 15px 25px -5px #00000026;
}

.items-list.news .item-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.related .item {
    display: flex;
    flex-direction: column;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.related .items-list {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.related .section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.related .section-title i {
    color: var(--primary);
    font-size: 22px;
}

.items-list.news .item-info {
    height: 100%;
    display: flex;
    overflow: hidden;
    flex-direction: column;
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

.news .btn-more {
    margin-top: auto;
    width: 100%;
    background-color: #6C8C9C5C;
    height: 46px;
    line-height: 40px;
    transform: translateY(42px);
    margin-bottom: 10px;
}

.items-list.news .item:hover .btn-more {
    background-color: var(--primary);
    transform: translateY(0);

}

.news-slider .swiper-button-lock {
    display: flex !important;
}

.news-slider .swiper-button {
    top: calc(50% + 20px) !important;
}

/*-----------------------------------------------------------------------------------*/
/* FORMS
/*-----------------------------------------------------------------------------------*/

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.form-control {
    width: 100%;
    border-radius: 5px;
    background-color: #FFFFFF80;
    border: none;
    outline: none;
    padding: 15px 20px;
    font: inherit;
    border-radius: 8px;
    transition: all 0.6s ease;
    font-weight: 400;
}

.form-control:not(textarea) {
    height: 52px;
}

textarea.form-control {
    resize: none;
    max-height: 270px;
    display: block;

}

.form-control:focus {
    background-color: #fff;
}

.error-msg {
    color: #d90000dd;
    font-size: 14px;
}

.response-message {
    display: block;
    margin-bottom: 15px;
    border-radius: 5px;
    color: var(--primary);
    text-align: center;
    font-size: 20px;
    line-height: 1.5;
}

.contact-form .response-message {
    color: #fff;
}

/*-----------------------------------------------------------------------------------*/
/* FOOTER  */
/*-----------------------------------------------------------------------------------*/
footer {
    background-color: var(--default);
    color: #fff;
    padding: 80px 0 30px 0;
    padding-bottom: 350px;
}

.fixed-footer {
    position: fixed;
    bottom: 0;
    padding-bottom: 20px;
    width: 100%;
    left: 0;
    z-index: 0;
}

footer .logo img {
    max-width: 300px;
    width: 100%;
}

footer .container {
    display: flex;
    flex-direction: column;
    gap: 50px;
    justify-content: space-between;
    align-items: center;
}

.quick-links {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 40px;
    justify-content: center;
}

.quick-links a {
    color: #FFFFFFC4;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
}

.quick-links a:hover {
    color: #fff;
}

.copyrights {
    font-size: 15px;
    color: #FFFFFFC4;
}

.footer-actions {
    position: fixed;
    bottom: 95px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
    color: #fff;
    opacity: 0;
    transform: translate(20px);
    transition: all 0.3s ease;
}

.footer-actions.show {
    opacity: 1;
    transform: translate(0);
}

.mablity {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 10;
}

.back-to-top,
.mablity .mablity-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background-color: var(--secondary);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 22px;
    color: #fff;
}

.back-to-top:hover {
    transform: translateY(-10px);
}

.mablity .mablity-btn {
    box-shadow: 0px 0px 6px #00000029;
    background-color: var(--primary);
}

/*-----------------------------------------------------------------------------------*/
/*  INNER PAGE
/*-----------------------------------------------------------------------------------*/

img[src="null"],
[data-file="null"] {
    display: none;
}

.art-header {
    padding-top: 230px;
    background: linear-gradient(90deg, var(--light-grey) 0%, var(--primary) 100%);
    color: #FFF;
}

.art-block .art-header-wrapper {
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.art-header-wrapper {
    padding: 20px 0;

}

.art-header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 50%;
    padding-bottom: 15px;
}

.art-header .full {
    width: 100%;
}

.art-header .date {
    display: block;
    color: #f1f1f1;
    font-size: 14px;
}

.tools-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.art-block {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
}

.art-block .date {
    font-size: 15px;
    font-weight: 400;
    padding: 1px 10px;
    border-radius: 15px;
    background: var(--light-grey);
    color: #fff;
}

.art-block .date:empty {
    display: none;
}

.art-block .section-title {
    font-size: 28px;
}

.art-block>div {
    flex-grow: 1;
}

.main-img {
    position: relative;
    flex-shrink: 0;
    max-width: 48%;
    top: -85px;
    margin-bottom: -85px;
    opacity: 0;
    transition: all 0.4s ease;
    transform: translateY(20px);
}

.sub .main-img {
    top: 0;
    margin-bottom: 0;
}

.main-img.animate {
    opacity: 1;
    transform: none;
}

.main-img.youtube {
    display: none;
}

.main-img img {
    border-radius: 15px;
    max-height: 400px;
    box-shadow: 0 6px 10px rgb(0 0 0 / 5%);
    background-color: #fff;
}

.page-content {
    margin-top: 30px;
}

.page-content table thead {
    background-color: var(--primary);
    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;
}

.page-content img,
.page-content table {
    display: block;
    margin: 20px 0;
}

.page-content ol,
.page-content ul {
    list-style-position: inside;
}

.page-content.img .youtube,
.page-content .youtube .main-img {
    display: none;
}

.page-content iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    margin: 20px 0;
    border-radius: 15px;
}

.page-content p,
.page-content {
    line-height: 32px;
}

.page-content p a:hover {
    text-decoration: underline;
    color: var(--secondary);
}

.page-content li::marker {
    color: var(--primary);
}

img[src="null"],
.noimg .image {
    display: none;
}

#url {
    opacity: 0;
    position: absolute;
    z-index: -1;
    right: -10000px;
}

:dir(ltr) #url {
    right: unset;
    left: -10000px;
}

.art-actions {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.art-actions a {
    font-size: 20px;
    background-color: var(--default);
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 15%;
    text-align: center;
    line-height: 37px;
}

.art-actions a:hover {
    background-color: var(--primary);
}

.sub-title {
    margin-bottom: 20px;
    font-size: 20px;
    text-transform: capitalize;
}

.registration-form {
    display: flex;
    justify-content: space-between;
    gap: 20px 50px;
    margin: 50px 0;
}

.form-info {
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
}

.registration-form .btn {
    width: 100%;
}

.form-fields {
    width: 60%;
    background: linear-gradient(269.89deg, var(--primary) 0.07%, vaR(--light-grey) 99.89%);
    border-radius: 20px;
    padding: 30px;
    flex-shrink: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 2%;
    color: #fff;
}

.form-fields .btn {
    display: none;
}

.form-fields .form-group {
    width: 48%;
}

/*-----------------------------------------------------------------------------------*/
/* BREADCRUMBS
/*-----------------------------------------------------------------------------------*/

.breadcrumbs {
    list-style: none;
    background-color: #00000033;
    border-radius: 6px;
    padding: 0 15px;
    display: flex;
    width: fit-content;
    line-height: 30px;
    flex-wrap: wrap;
}

.sub .breadcrumbs {
    background-color: var(--light-grey);
    color: #fff;
}

.sub .tools span {
    background-color: var(--light-grey);
}

.breadcrumbs:hover a {
    opacity: 0.8;
}

.breadcrumbs a:hover {
    opacity: 1;
}

.breadcrumbs a {
    font-size: 14px;
    text-transform: capitalize;
    color: inherit;
    font-weight: 400;
    transition: all 0.3s ease;
}

.breadcrumbs li:not(:first-child)::before {
    content: "/";
    margin: 0px 5px;
    font-size: 18px;
    vertical-align: middle;
    font-weight: 400;
}


.breadcrumbs li:last-child {
    display: none;
}

/*-----------------------------------------------------------------------------------*/
/* SHARE ICONS
/*-----------------------------------------------------------------------------------*/
.share-icon {
    display: flex;
    align-items: center;
    gap: 5px 10px;
    flex-wrap: wrap;
}

.share-icon a {
    background: var(--default);
    border-radius: 5px;
    color: #fff;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    box-sizing: border-box;
    text-align: center;
    justify-content: center;
    width: 35px;
    height: 35px;
}

.share-icon a i {
    font-size: 20px;
}

.hide {
    display: none;
}

.tools span {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #00000033;
    text-align: center;
    line-height: 36px;
    color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}


.tools span:hover {
    background-color: var(--secondary) !important;
}

.share-page {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px 15px;
    background-color: var(--default);
    padding: 10px;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    width: fit-content;
    margin-top: 50px;
}

.share-icon a:hover {
    background-color: #ffffff30;
}



/*-----------------------------------------------------------------------------------*/
/* ATTACHEMNETS
/*-----------------------------------------------------------------------------------*/

.component {
    margin-top: 30px;
}

.media-files {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    list-style: none;
    gap: 10px;
    margin: 20px 0 !important;
}

.media-files a {
    display: block;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10px;
    width: 130px;
    height: 130px;
    box-sizing: border-box;
    transition: all 0.5s ease;
    position: relative;
}

.media-files a[data-mablebox="video"]:before {
    content: "\e913";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-family: "icomoon";
    z-index: 1;
    display: block;
    background: var(--primary);
    width: 30px;
    height: 30px;
    margin: 0 auto;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-weight: 800;
    border: 2px solid #fff;
    font-size: 12px;
}

.media-files a:hover {
    transform: scale(1.05);
}

.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(--light-grey);
    border-radius: 15px;
    padding: 15px;
    padding-left: 50px;
    box-sizing: border-box;
    position: relative;
    color: #fff;
    font-weight: 400;
    word-wrap: break-word;
    font-size: 16px;
}

:dir(ltr) .files a {
    padding-left: 10px;
    padding-right: 50px;
}

.files a::after {
    font-family: 'icomoon';
    color: var(--secondary);
    font-size: 28px;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

:dir(ltr) .files a::after {
    left: unset;
    right: 20px;
}

.files a:after {
    content: '\e926';
}


.files a:hover {
    background-color: var(--default);
}

.component:has(.media-files:empty),
.component:has(.files:empty) {
    display: none;
}


.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: fit-content;
    padding: 50px 0;
    margin: 0 auto;
    gap: 5px;
}


.pagination li:first-child,
.pagination li:last-child {
    font-size: 20px;
    line-height: 37px;
    color: #fff;
    background-color: var(--default);
}

.pagination li {
    display: inline-block;
    border-radius: 5px;
    color: var(--default);
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 17px;
    transition: all 0.3s ease;
    background: var(--light-grey);
    color: #fff;
}

.pagination a {
    display: block;
    text-align: center;
    font-size: inherit;
    color: inherit;
    transition: none;
    line-height: inherit;
    font-weight: 400;
}

.pagination li.current {
    color: #fff;
    background: var(--primary);
}

.pagination li.disabled {
    opacity: 0.5;

}

.pagination li:not(.current):not(.disabled):hover {
    background-color: var(--primary);
    color: #fff;
}

.related {
    background-color: #F5F5F5;
    padding: 30px 0;
    padding-bottom: 80px;
    margin-bottom: 0;
}

.related .item.noimg .item-image,
.search-results .item.noimg .item-image {
    display: none;
}

.inner-section,
.search-results {
    padding-bottom: 50px;
}

.inner-section .item>.item-date {
    display: none;
}

.inner-section .item.noimg>.item-date {
    display: flex;
}

.item.noimg {
    background: #F5F5F5;
    min-height: 200px;
    padding: 30px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 10px;
}

.item.noimg .item-title {
    margin: 0 !important;
    font-size: 22px;
    line-height: 33px;
    text-align: center;
}

.item.noimg .item-date+.item-title {
    padding-top: 50px;
    font-size: 18px;

}

.item.noimg .btn {
    display: none;
}

.item.noimg:hover {
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
    background-color: #f0f4f7;
}

.item.noimg .item-info {
    justify-content: center;
}

.item.noimg .item-image {
    display: none;
}


.search-form {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 20px 30px;
    align-items: center;
    justify-content: center;
    background: var(--default);
    padding: 20px;
    border-radius: 10px;
    box-sizing: border-box;
    margin-bottom: 30px;
    color: #fff;
}

.search-form input:not([type="submit"]),
.search-form select {
    background-color: #fff;
    border-radius: 10px;
    padding: 5px 20px;
    height: 40px;
    box-sizing: border-box;
    line-height: 40px;
    font-size: 15px;
    color: var(--default);
    border: 1px solid #e5e5e5;
    font-family: inherit;
    outline: none;
}

.dark ::placeholder {
    color: #fff;
}

.dark .search-form input:not([type="submit"]),
.dark .search-form select {
    background-color: var(--dark);
    color: #fff;
    border-color: var(--dark);
}

.search-form input {
    width: 250px;
    display: inline-block;
}

input[type="submit"] {
    cursor: pointer;
}

.search-form input[type="submit"] {
    min-width: 100px;
    width: fit-content !important;
    font-size: 16px;
    border: none;
}

.search-form label {
    margin-left: 10px;
}

:dir(ltr) .search-form label {
    margin-right: 10px;
    margin-left: 0
}

.search-form label,
.search-form select {
    display: inline-block;
    width: auto;
    margin-bottom: 0;
}

/*-----------------------------------------------------------------------------------*/
/* SUB DOMAINS
/*-----------------------------------------------------------------------------------*/
.site {
    display: flex;
    gap: 20px;
    align-items: center;
    max-width: 550px;
}

.site h1 {
    font-size: 26px;
    display: block;
    line-height: 35px;
}

.site p {
    font-size: 16px;
    font-weight: 400;
}

.site-logo {
    background-color: #fff;
    box-shadow: 0px 10px 10px -5px #00000040;
    width: 125px;
    height: 125px;
    overflow: hidden;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.site-logo img {
    object-fit: contain;
}

.site-info small {
    font-size: 12px;
}

.site-contact {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}

.social-links {
    display: flex;
    list-style: none;
    gap: 10px;
    font-size: 25px;
    margin-top: 10px;
}

.image_text .container {
    display: flex;
    justify-content: space-between;
    gap: 20px 50px;
}

.image_text .section-image {
    max-width: 48%;
    flex-shrink: 0;
}

.image_text img {
    border-radius: 15px;
    max-height: 400px;
}

/*--------------------------------------------*/
/*  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 STYLES */
/*-----------------------------------------------------------------------------------*/
@media print {

    header,
    footer,
    .tools-wrapper,
    .mablity,
    .related,
    .tipsy,
    .share-page,
    .mongiddesigns {
        display: none !important;
    }
    .art-header{
        padding-top: 20px !important;
    }
}


@media (min-width: 1530px) {
    .news-slider .swiper-slide {
        width: 27.5%;
    }

    .news-slider .swiper-slide-next {
        width: 45%;
    }
}

@media (max-width: 1300px) {
    header {
        width: 96%;
    }

    .header-actions {
        margin-bottom: 5px;
    }

    header .logo img {
        max-width: 150px;
    }

    .menu {
        top: 0;
        gap: 20px;
    }

    .menu a {
        font-size: 16px;
    }

    header .container {
        width: 98%;
    }
}

@media (max-width: 900px) {

    header nav,
    .header-actions {
        opacity: 0;
        visibility: hidden;
    }

    .submenu {
        display: none !important;
    }

    .header-actions {
        transition: none;
    }

    header.show nav {
        opacity: 1;
        visibility: visible;
        left: 0;
    }

    :dir(ltr) header.show nav {
        left: unset;
        right: 0;
    }

    header nav {
        left: -100%;
        position: fixed;
        width: 100%;
        background: #ffffffe6;
        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 a {
        font-size: 20px;
    }

    header.show .header-actions {
        opacity: 1;
        visibility: visible;
        position: fixed;
        z-index: 10000;
        width: 96%;
        top: 120px;
        margin: 0 auto;
        left: 0;
        right: 0;
        justify-content: center;
    }

    .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: 10000;
        border-radius: 10px;
        width: 44px;
        height: 44px;
        position: absolute;
    }

    .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;
    }


    header .container {
        display: flex;
        width: 90%;
        justify-content: space-between;
        flex-direction: row-reverse;
        align-items: center;
    }

    .header-wrapper {
        margin-bottom: 0;
        top: 0;
        margin-left: auto;
    }

    :dir(ltr) .header-wrapper {
        margin-left: unset;
        margin-right: auto;
    }

    .contact-info,
    .contact-form {
        width: 50%;
    }

    .accordion .item {
        width: 47% !important;
        min-width: 300px;
        height: 260px;
        flex-grow: 1;
    }

    .flex-section {
        flex-wrap: wrap;
    }

    .banner-image,
    .events-list,
    .gradient-section .section-image,
    .gradient-section .section-text {
        width: 100%;
    }

    section.vision,
    section.blocks {
        padding: 50px 0;
    }

    .gradient-section {
        flex-direction: column-reverse;
    }

    .logo-anim {
        width: 150px;
    }

    .gradient-section .section-image img {
        max-height: 300px;
    }

    .logo-anim {
        bottom: 0;
        top: unset;
    }

    .gradient-section .section-image::before {
        background: linear-gradient(180deg, var(--primary) 17.7%, rgba(69, 184, 176, 0) 99.79%);
        left: 0;
        height: 70%;
    }

    .gradient-section .section-text {
        padding: 30px !important;
    }

    .main-slider .slide-content {
        max-width: 100%;
    }

    .news-slider .swiper-slide {
        width: 10%;
    }

    .news-slider .swiper-slide-next {
        width: 80%;
    }

    section.blocks {
        margin-top: -80px;
        margin-bottom: -80px;
    }

    .news-slider {
        padding-bottom: 120px;
        --swiper-navigation-sides-offset: 20px;
    }

    .news-slider .swiper-button {
        top: unset !important;
        bottom: -10px;
        width: 50px;
        height: 50px;
    }

    .art-header {
        padding-top: 150px;
    }

    .art-block {
        flex-wrap: wrap;
    }

    .main-img {
        max-width: 100%;
        top: unset;
        margin: 0 auto !important;
    }

    .art-header .art-header-wrapper {
        width: 100%;
        flex-wrap: wrap;
    }

    .registration-form {
        flex-wrap: wrap;
    }

    .form-fields {
        width: 100%;
    }

    .form-fields .btn {
        display: block;
    }

    .form-info .btn {
        display: none;
    }

    .image_text .container {
        flex-wrap: wrap;
    }

    .image_text .section-image {
        margin: 0 auto;
    }
}


@media (max-width: 760px) {

    .contact-wrapper {
        padding: 30px;
        flex-wrap: wrap;
    }

    .accordion .item .item-image {
        opacity: 1;
        transition: all 0.5s ease;
    }

    .accordion .item .item-title {
        background-color: var(--primary);
    }

    .accordion .item .item-main-title {
        display: none;
    }

    .accordion .item .item-subtitle {
        opacity: 1;
        transform: translateX(0);
        transition: all 0.4s 0.2s ease;
    }

    .search-form *,
    .search-form input[type="submit"] {
        width: 100% !important;
    }

    .search-form .btn:hover {
        background-color: var(--primary) !important;
    }


    .search-form label {
        margin-left: 0;
    }


}

@media (max-width: 500px) {
    .icons-list {
        justify-content: space-between;
        gap: 0 2%;
    }

    .icon-link {
        gap: 10px;
        font-size: 18px;
        width: 48%;
    }

    .slide-content .btn {
        margin: 40px auto 0 auto;
    }

    .main-slider .slide-content {
        text-align: center;
    }

    .slide-title {
        line-height: 50px;
    }

    .events .item {
        gap: 5px 20px;
        flex-wrap: wrap;
    }

    .item-date {
        height: auto !important;
        width: fit-content !important;
        padding: 5px 10px;
        gap: 0;
    }

    .events .item-title {
        font-size: 17px;
    }

    .item-date strong {
        font-size: 24px;
    }

    .item-date small {
        font-size: 15px;

    }

    .calendar {
        padding: 20px;
    }

    .section-title {
        font-size: 30px;
    }

    .item-title,
    .vision .section-content {
        font-size: 18px;

    }

    .blocks .item-title,
    .accordion .item-title {
        font-size: 28px;
    }

    .item-title span,
    .item-main-title span {
        margin-bottom: 10px;
    }

    .art-block .section-title {
        font-size: 20px;
    }

    .share-page {
        margin-top: 30px;
    }


    .form-fields .form-group {
        width: 100%;
    }

    .mablity,
    .footer-actions {
        right: 5px;
    }

    .site {
        flex-wrap: wrap;
    }

}

@media (max-width: 320px) {
    .items-list {
        grid-template-columns: 1fr;
    }
}