a {
    color: var(--default);
}

mark {
    background: var(--accent);
    color: #fff;
    padding: 0 5px;
}

.dark-bg {
    background-color: var(--default);
    color: #fff;
}

.primary-bg {
    background-color: var(--primary);
    color: #fff;

}

.flex-section {
    display: flex;
    gap: 30px 60px;
    align-items: center;
    justify-content: space-between;
}

.section-heading {
    margin-bottom: 50px;
}

.section-title {
    font-weight: 300;
    font-size: 40px;
    line-height: 40px;
    display: flex;
    gap: 15px;
    align-items: center;

}

.section-title a {
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.4s 0.1s ease;
}

.section-title.normal-w {
    font-weight: 500;
}

.section-title b {
    display: block;
    font-weight: 700;
    text-transform: none;
}

.section-title::before,
.page-content h1::before,
.page-content h2::before,
.page-content h3::before,
.page-content h4::before,
.page-content h5::before,
.page-content h6::before {
    font-family: 'icomoon';
    color: var(--primary);
    content: "\e902";
    font-size: 70px;
    transform: translateX(-10px);
    opacity: 0;
    transition: all 0.4s ease-in-out, opacity 0.2s ease;
}

[dir="rtl"] .section-title::before,
[dir="rtl"] .page-content h1::before,
[dir="rtl"] .page-content h2::before,
[dir="rtl"] .page-content h3::before,
[dir="rtl"] .page-content h4::before,
[dir="rtl"] .page-content h5::before,
[dir="rtl"] .page-content h6::before {
    transform: translateX(10px) rotate(180deg);

}

.section-title.animate::before,
.section-title.animate a {
    opacity: 1;
    transform: none;

}

[dir="rtl"] .section-title.animate::before {
    transform: rotate(180deg);

}

.primary-bg .section-title::before {
    color: #fff;
}

.section-desc {
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 33px;
}

.section-desc.sm {
    line-height: 22px;
    font-size: 16px;
}

.section-heading .btn {
    margin-top: 30px;
}

.section-title-lg {
    color: #fff;
    font-weight: 700;
    font-size: 48px;
    line-height: 58px;
}

[dir="rtl"] .section-title-lg a {
    line-height: 63px;
}

.section-title-lg a,
.section-title a {
    color: inherit;
    font: inherit;
    line-height: 43px;
}

[dir="rtl"] .section-title a {
    line-height: 50px;
}

.section-caption {
    font-weight: 300;
    font-size: 48px;
    line-height: 58px;
}

.flex-section .section-heading {
    max-width: 30%;
}


.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: 16px;
    font-family: "Source Sans 3", serif;
    color: var(--light-grey);
    height: 45px;
    padding: 5px 15px;
    line-height: 36px;
    position: relative;
    text-transform: uppercase;
    min-width: 85px;
    text-align: center;
}

.menu .active a {
    font-weight: 700;
}

[dir=rtl] .menu .active a,
[dir=rtl] .btn,
[dir=rtl] .item-title,
[dir=rtl] .section-title-lg {
    font-weight: 500;
}

[dir=rtl] .section-title-lg {
    font-size: 40px;
}

[dir=rtl] .section-caption {
    font-size: 34px;
}

.menu .active a,
.menu a:hover {
    background-color: var(--primary);
    color: var(--light-grey);
}

.menu li a::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border: 2px solid #fff;
    position: absolute;
    top: -8px;
    right: -8px;
    z-index: 1;
    opacity: 0;
    transform: translate(-5px, 5px);
    transition: all 0.5s ease;
}


.menu a:hover::before,
.menu .active a::before {
    opacity: 1;
    transform: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-self: flex-end;
}


.search-bar {
    display: flex;
    align-items: center;

}

.search-bar input {
    height: 34px;
    font-size: 14px;
    box-sizing: border-box;
    opacity: 0;
    width: 0;
    transition: all 0.3s ease;
    padding: 0;
    background-color: #F5F5F5;
}

.search-bar:hover input {
    opacity: 1;
    width: 215px;
    font-weight: 500;
    padding: 0 10px;
}

.search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.search-icon:hover {
    background-color: var(--primary);
}

.inline-btns,
.search-icon,
.lang-selector {
    background-color: #FFFFFF1A;
    color: var(--light-grey);
}

.lang-selector {
    height: 35px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.lang-selector .icon-angle-down {
    transform: translateX(10px);
}

[dir="rtl"] .lang-selector .icon-angle-down {
    transform: translateX(-10px);

}

.lang-selector>span {
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 14px;
}

.langs {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    width: 100%;
    top: 100%;
    transform: translateY(-20px);
    transition: all .3s ease-in-out;
    background-color: var(--dark-bg);
    color: #fff;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    z-index: 100;
    left: 0;
}

.langs a {
    color: inherit;
    display: block;
    padding: 5px;
    transition: all 0.3s ease;
}

.langs a.ar {
    font-size: 14px;
    font-family: "Alexandria", sans-serif;
}

.langs a:hover {
    background-color: var(--accent);
}

.lang-selector:hover .langs {
    visibility: visible;
    opacity: 1;
    transform: none;
}

.inline-btns {
    display: flex;
    align-items: center;
    padding: 5px;
}

.hover-btns {
    position: relative;
}


.inline-btns a {
    font-family: "Source Sans 3", serif;
    font-weight: 700;
    font-size: 14px;
    padding: 7px 15px 5px 15px;
    height: 25px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    min-width: 105px;
}

[lang="fr"] .inline-btns a {
    min-width: 128px;
}

[dir=rtl] .inline-btns a {
    font-weight: 400;
    font-size: 12px;
}

.hover-btns a {
    z-index: 1;

}

/*-----------------------------------------------------------------------------------*/
/* MAIN SLIDER
/*-----------------------------------------------------------------------------------*/
.main-slider {
    position: relative;
}

.main-slider::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, #0D0D0D 0%, rgba(13, 13, 13, 0) 100%);
    z-index: 10;

}

.main-slider .swiper-slide {
    min-height: 550px;
    height: 100vh;
    background-size: 100%;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 250px;
    padding-bottom: 100px;
    transition: background-size 8s ease !important;
    opacity: 0;
}

.main-slider .swiper-slide-active {
    background-size: 140%;
    opacity: 1;
}

.main-slider .slide-content {
    max-width: 60%;
    margin: 0 auto;
    text-align: center;
}

.main-slider .slide-content * {
    text-transform: uppercase;
}

.main-slider .slide-title {
    font-weight: 700;
    font-size: 48px;
    line-height: 54px;
    color: #fff;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.6s ease;
}

[dir=rtl] .main-slider .slide-title {
    font-weight: 600;
}

.main-slider .slide-caption {
    color: #CCCCCC;
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    max-width: 80%;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s 0.4s ease;
}

.main-slider .btn {
    margin: 40px auto 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.6s 0.8s ease-in-out, opacity 0.6s 0.8s ease-in-out, background-color 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55), box-shadow 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}


.main-slider .swiper-slide-active .slide-title,
.main-slider .swiper-slide-active .slide-caption,
.main-slider .swiper-slide-active .btn {
    opacity: 1;
    transform: none;
}

.swiper-pagination {
    position: relative !important;
}

.main-slider .swiper-pagination {
    top: -60px;
}

/*-----------------------------------------------------------------------------------*/
/* WHY US
/*-----------------------------------------------------------------------------------*/
.items-wrapper.why_us {
    margin-top: 50px;
}

.why_us .items-list {
    gap: 40px 60px;
    display: flex;
    justify-content: space-between;
}

.why_us .item-desc {
    display: none;
}

.items-wrapper.why_us .items-list {
    justify-content: center;
}

.why_us .item {
    background-color: var(--primary);
    width: 200px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 10px 15px 10px 25px;
}

.why_us .item::before,
.faq-content::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border: 2px solid #444444;
    position: absolute;
    top: -15px;
    right: -15px;

}


.why_us .item-image {
    align-self: flex-end;
}

.why_us .item-image img {
    max-width: 75px;
    max-height: 75px;
}

.why_us .item-title {
    font-size: 25px;
    line-height: 28px;
    margin-bottom: 10px;
}

[dir="rtl"] .why_us .item-title {
    line-height: 32px;
    font-size: 20px;
}

/*-----------------------------------------------------------------------------------*/
/* TOOLS
/*-----------------------------------------------------------------------------------*/
.tools .item {
    background-color: #4B4B4B;
    display: block;
}

.tools .swiper-slide {
    height: auto;
}

.tools .swiper-slide .item {
    height: 100%;
}

.items-wrapper.tools .item.noimg {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tools .item-image {
    padding: 6px;
    width: 100%;
    height: 265px;
}

.tools .item-desc {
    display: none;
}

.tools .item-title {
    font-size: 28px;
    line-height: 34px;
    padding: 15px;
    z-index: 1;
    position: relative;
}

[dir=rtl] .tools .item-title {
    font-size: 22px;
    line-height: 32px;
}

.tools .item:hover {
    background-color: var(--primary) !important;
    transform: scale(1.02);

}

.tools .item:hover::after {
    color: var(--default);
}

.tools .item::after,
.blog .item::after,
.faq-content::after,
.media-files a::after {
    content: "\e902";
    font-family: 'icomoon';
    position: absolute;
    font-size: 50px;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

[dir=rtl] .tools .item::after,
[dir=rtl] .blog .item::after,
[dir=rtl] .faq-content::after,
[dir=rtl] .media-files a::after {
    transform: rotate(133deg);

}

.tools .item::after {
    bottom: -6px;
    right: 6px;
    color: #9D9D9D;
}

[dir=rtl] .tools .item::after {
    right: unset;
    left: 6px;
}

/*-----------------------------------------------------------------------------------*/
/* SYSTEMS
/*-----------------------------------------------------------------------------------*/
.systems .container {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.systems .items-list {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.systems .section-content {
    width: 60%;
    align-self: flex-end;
}

.systems .item {
    display: block;
    border-radius: 21px;
    overflow: hidden;
}

.systems .item-image {
    height: 300px;
}

.systems .item-desc {
    display: none;
}

.systems .item:not(.item-lg) .item-title {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 20px;
    font-weight: 600;
    font-family: "Montserrat", serif;
    font-size: 23px;
    color: #fff;

}

[dir="rtl"] .systems .item:not(.item-lg) .item-title,
[dir="rtl"] .item-lg .item-title,
[dir="rtl"] .tabs .tab-button,
[dir="rtl"] .blog .item-title,
[dir="rtl"] .faq .item-title {
    font-family: "Alexandria", sans-serif;
}

[dir="rtl"] .blog .item-title {

    font-size: 20px;
}

.item-lg {
    width: 38%;
    opacity: 0;
    transform: scale(0.9);
    height: 600px;
}

.item-lg .item-title {
    font-weight: 700;
    font-size: 34px;
    font-family: "Montserrat", serif;
    margin-bottom: 25px;
    color: inherit;

}

.item-lg .item-content {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 30px;
    color: #fff;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    width: 100%;

}

.item-lg .item-desc {
    display: block;
    font-size: 24px;
    color: inherit;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    line-clamp: 6;
    -webkit-box-orient: vertical;

}

.item-lg .item-desc li {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.item-lg .item-desc li::before {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    background-color: #fff;
    border-radius: 50%;
    position: relative;
    top: 13px;
    flex-shrink: 0;
}

.item-lg .item-image {
    height: 100%;
}

.item-lg .btn {
    margin-top: 30px;
    width: 100%;
}

.systems .swiper {
    padding-top: 15px;
}

.systems .swiper-pagination {
    text-align: right;
    padding-right: 20px;
    margin-bottom: 10px;
}

/*-----------------------------------------------------------------------------------*/
/* PRICING
/*-----------------------------------------------------------------------------------*/
.cover-bg {
    background-position: top;
    background-size: cover;
    color: #fff;
}

.pricing-content {
    width: 30%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.pricing-content h3 {
    font-size: 60px;
    line-height: 58px;
    font-weight: 250;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.pricing-content h3 strong {
    display: block;
    font-weight: 700;
}

.pricing-content h4 {
    margin-top: 70px;
    display: block;
    font-weight: 300;
    font-size: 40px;
    line-height: 44px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s 0.3s ease;
}


.pricing-content h4 strong {
    font-weight: 800;
    color: var(--primary);
    transform: scale(0.8);
    transition: all 0.5s 0.5s ease;
    display: inline-block;
    color: var(--primary);
}

.pricing-content.animate * {
    opacity: 1;
    transform: none;
}

.pricing-container {
    padding: 20px;
    border: 1px solid var(--primary);
    backdrop-filter: blur(20px);
    box-shadow: 0px 0px 8px 0px #E44C1B;
    background: #1818188A;
    border-radius: 21px;
    width: 60%;
    margin-left: auto;
    color: #F0F0F0;
}

[dir="rtl"] .pricing-container {

    margin-left: unset;
    margin-right: auto;
}

.tabs .tab-button {
    min-width: 120px;
}

[dir="rtl"] .tabs .tab-button {
    min-width: 135px;
}

[lang="fr"] .tabs .tab-button,
[lang="es"] .tabs .tab-button {

    min-width: 150px;
}

/*-----------------------------------------------------------------------------------*/
/* BLOG
/*-----------------------------------------------------------------------------------*/
.blog .item {
    overflow: hidden;
    display: block;
}

.blog .item-image {
    height: 380px;
}

.blog .section-heading {
    margin-bottom: 0;
}

.blog .item-desc {
    display: none;
}

.blog .item-title {
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(52, 52, 52, 0) 0%, #000000 100%);
    width: 100%;
    padding: 20px;
    font-family: "Montserrat", serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 27px;
    color: var(--light-grey);
}

.blog .item-title::after,
.blog .item::before {
    content: "";
    display: block;
    transform: rotate(45deg);
    background: #F3F3F3;
    position: absolute;
    transition: all 0.3s ease;

}

[dir="rtl"] .blog .item-title::after,
[dir="rtl"] .blog .item::before {
    transform: rotate(-45deg);

}

.blog .item-title::after {
    width: 88px;
    height: 152px;
    right: -51px;
    bottom: -87px;
}

[dir="rtl"] .blog .item-title::after {
    right: unset;
    left: -51px;
}

.blog .item:hover .item-title::after {
    bottom: -70px;
}

.blog .item::before {
    left: -10px;
    top: -22px;
    width: 30px;
    height: 64px;
}

[dir="rtl"] .blog .item::before {
    left: unset;
    right: -10px;
}

.blog .item::after {
    bottom: -17px;
    right: -4px;
    color: var(--default);
    z-index: 1;
}

[dir="rtl"] .blog .item::after {
    left: -4px;
    right: unset;

}

.blog .item:hover:after {
    color: var(--primary);
    font-size: 60px;
}

.blog .swiper-pagination {
    padding-top: 30px;
    text-align: right;
    margin-bottom: 30px;
}

.swiper-pagination-bullet {
    transition: all 0.5s ease;
}

.line-pagination .swiper-pagination-bullet {
    border-radius: 0;
    width: 14px;
    height: 8px;
    transition: all 0.3s ease;

}

.line-pagination .swiper-pagination-bullet-active {
    width: 86px;
}

/*-----------------------------------------------------------------------------------*/
/* FAQ
/*-----------------------------------------------------------------------------------*/
.faq .items-list {
    grid-template-columns: 1fr;
}

.faq .item:hover .item-title {
    background-color: #0000001a;
}

.faq .item.active .item-title {
    font-weight: 700;
    color: #fff;
    background-color: #A81E1E;
}

[dir="rtl"] .faq .item.active .item-title {
    font-weight: 500;
}

.faq .item-desc {
    display: none;
    padding: 15px;
    background: #292929;
    margin: 0;
}

.items-wrapper.faq .item-desc {
    background: var(--light-grey);

}

.faq .item-title {
    color: #fff;
    font-weight: 500;
    font-family: "Montserrat", serif;
    font-size: 20px;
    line-height: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;

}

.faq .item.active .item-title::before {
    background-color: var(--primary);
}

.faq .item-title::before {
    content: "";
    width: 44px;
    height: 44px;
    color: #fff;
    background-color: var(--default);
    border-radius: 50%;
    font-family: 'icomoon';
    display: flex;
    align-items: center;
    justify-content: center;
    content: "\e903";
    font-size: 20px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

[dir="rtl"] .faq .item-title::before {
    transform: rotate(180deg);
}

.items-wrapper.faq .item-title {
    color: var(--default);
    font-size: 18px;
    padding: 10px;
}

.items-wrapper.faq .items-list {
    gap: 10px;
}

.faq .item-image {
    display: none;
}

.faq-content {
    background-color: #292929;
    width: 45%;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    padding-left: 50px;
    font-weight: 300;
    font-size: 20px;
    line-height: 38px;
    color: var(--light-grey);
    max-height: 460px;

}

[dir="rtl"] .faq-content {
    padding-left: 20px;
    padding-right: 50px;
}

.faq-content p {
    position: relative;
    z-index: 1;
    overflow-y: auto;
    max-height: calc(100% - 40px);
    display: block;
}

.faq-content::before {
    border-color: #A8A8A8;
    top: -23px;
    right: -23px;
}

[dir="rtl"] .faq-content::before {
    right: unset;
    left: -23px;
}

.faq-content::after {
    right: -12px;
    bottom: 27px;
    color: #fff;
    opacity: 0;
    transition: all 0.3s 0.3s ease;
}

[dir="rtl"] .faq-content::after {
    right: unset;
    left: -12px;
}

.faq-content.animate::after {
    right: -15px;
    bottom: 23px;
    opacity: 1;
}

[dir="rtl"] .faq-content.animate::after {
    right: unset;
    left: -15px;
}

/*-----------------------------------------------------------------------------------*/
/* ITEMS
/*-----------------------------------------------------------------------------------*/


.item-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.item-date {
    display: block;
    font-weight: 600;
    font-size: 16px;
}


.item-desc {
    font-size: 16px;
    display: block;
    margin-top: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

.item-image.cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*-----------------------------------------------------------------------------------*/
/* FOOTER
/*-----------------------------------------------------------------------------------*/

footer {
    background-color: #1c1c1c;
    color: #fff;
    padding: 50px 0 10px 0;
    overflow: hidden;

}

footer .container {
    max-width: 1000px;
}

.social-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-top: 35px;
    justify-content: center;
    align-items: center;

}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-grey);
    font-size: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;

}

.social-links a:hover {
    color: var(--primary);
}

.footer-title {
    display: block;
    font-weight: 700;
    color: #CCCCCC;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 10px;
}

.footer-title::after {
    content: "";
    display: block;
    width: 40%;
    height: 4px;
    background-color: var(--primary);
    margin-top: 10px;
}

.links {
    display: flex;
    gap: 10px;
    list-style: none;
    flex-direction: column;
}

.links li {
    position: relative;
}

.links li::before {
    z-index: 0;
    background-color: var(--primary);
}

.links a {
    color: #CCCCCC;
    font-size: 16px;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.links a:hover {
    color: #fff;
}

.footer-btm {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: fit-content;
    margin: 0 auto;
    position: relative;
}

.to-top {
    position: relative;
    color: var(--light-grey);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    z-index: 1;
    transition: all 0.5s ease;
    cursor: pointer;
}

.to-top:hover {
    transform: translateY(-10px);
}

.to-top i {
    position: relative;
    z-index: 1;
}

.to-top::before,
.footer-btm::after {
    content: "";
    display: block;
    width: 100%;
    transform: rotate(45deg);
    position: absolute;

}


.to-top::before {
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--primary);
}

.footer-btm::after {
    background-color: #131313;
    height: 300%;
    left: -15px;
    top: 150px;
    transform: rotate(45deg);
    opacity: 0;
    transition: all 0.6s ease;
    width: 260px;
}

[dir="rtl"] .footer-btm::after {
    left: unset;
    right: 27px;
}

[lang="es"] .footer-btm::after {
    left: 28px;
}

.footer-btm.animate::after {
    top: -25px;
    opacity: 1;
}

.footer-btm p {
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    color: #CCCCCCCC;
    position: relative;
    z-index: 1;
}

/*-----------------------------------------------------------------------------------*/
/*  INENR PAGE
/*-----------------------------------------------------------------------------------*/
.art-header,
.page-content {
    margin-bottom: 30px;
}

.items-wrapper {
    margin-bottom: 50px;
}

img[src="null"],
[data-file="null"],
.noimg .image,
.noimg .item-image {
    display: none;
}

.tools-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    flex-shrink: 0;
    flex-grow: 1;
}

.art-header {
    padding: 20px 0;
    background-color: #1c1c1c;
    color: #fff;
}

.art-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;

}

.art-header-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 20px 10px;
}

.art-header-info .section-title {
    font-size: 28px;
    font-weight: 600;
}

.art-header .section-title::before {
    font-size: 37px;
}

.art-header .section-heading {
    margin-bottom: 0;
}

.art-header .date,
.art-header .count {
    display: block;
    font-weight: 500;
    font-size: 16px;
    color: var(--primary);
}

.art-header .writer .date {
    font-size: 15px;
    color: var(--default);
}

.art-header>div {
    flex-grow: 1;
}

.article-wrapper {
    display: flex;
    margin-top: 40px;
    gap: 30px;
    margin-bottom: 30px;
}

.article-wrapper aside {
    width: 30%;
    flex-shrink: 0;
}



.page-content iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 20px 0;
    border-radius: 10px;
}

.page-content table {
    margin: 20px auto;
    border-collapse: collapse;
}

.page-content table thead {
    background-color: var(--secondary);
    color: #fff;
}

.page-content table th,
.page-content table td {
    padding: 8px;
    border: 1px solid #ddd;
    text-align: right;
}

:dir(ltr) .page-content table th,
:dir(ltr) .page-content table td {
    text-align: left;
}

.page-content table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.page-content .text {
    color: var(--secondary);
    font-size: 18px;
    margin-bottom: 20px;
}

.page-content .text ol {
    margin-left: 40px;
    line-height: 1.6;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
    margin-bottom: 5px;
    font-weight: 700;
    position: relative;
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: revert;
}

.page-content h1::before,
.page-content h2::before,
.page-content h3::before,
.page-content h4::before,
.page-content h5::before,
.page-content h6::before {
    opacity: 1 !important;
    font-size: 18px;
    transform: none;
}


.page-content ul {
    margin-right: 50px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.text p:not(:empty) {
    line-height: 1.8;
    margin-bottom: 20px;
}

:dir(ltr) .page-content ul {
    margin-right: 0;
    margin-left: 50px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: center;
    list-style: none;
    margin-bottom: 0;
    width: fit-content;
}

.breadcrumbs li:not(:first-child)::before {
    font-family: 'icomoon';
    content: "\e912";
    display: inline-flex;
    margin-left: 5px;
    font-size: 12px;
    position: relative;
    top: 1px;
}

[dir="rtl"] .breadcrumbs li:not(:first-child)::before {
    transform: rotate(180deg);
}

.breadcrumbs li:last-child {
    display: none;
}

.breadcrumbs a {
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 5px 0;
    color: #fff;
}

.page-content iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 20px 0;
    border-radius: 20px;
}

.main-img[href="null"] {
    display: none;
}

.main-img {
    display: block;
    margin-bottom: 20px;
    width: fit-content;
    float: left;
    margin-right: 50px;
}

.main-img.youtube {
    display: none;
}

.main-img img {
    position: relative;
    max-height: 400px;
    box-shadow: 0 6px 10px rgb(0 0 0 / 5%);
    border-radius: 8px;
}

.main-img img::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    position: absolute;
    top: -8px;
    right: -8px;
    z-index: 1;
    opacity: 1;
    transform: translate(-5px, 5px);
    transition: all 0.5s ease;
}

.main-img:hover img::after {
    top: 8px;
    right: 8px;
    z-index: 1;
    opacity: 1;
}

.main-img.author-img img {
    max-height: 200px;
}

.component {
    margin-top: 30px;
}

.component h4 {
    font-size: 22px;
    font-weight: 600;
    position: relative;
    width: fit-content;
    margin-bottom: 30px;
    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;
    aspect-ratio: 1/1;
    box-sizing: border-box;
    transition: all 0.5s ease;
    position: relative;
}

.media-files a::after {
    font-size: 40px;
    bottom: -18px;
    right: 3px;
    color: #fff;
}

.media-files a:hover {
    transform: scale(1.05);
}

.media-files a:hover::after {
    color: var(--primary);
}

.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(--bg);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    padding: 15px 10px;
    padding-left: 50px;
    box-sizing: border-box;
    position: relative;
}

.files a::after {
    font-weight: 400;
    content: '\e923';
    font-family: 'icomoon' !important;
    font-size: 28px;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.files a:hover:after {
    color: var(--primary);
}

.row-wrapper:not(:has(div)) {
    background-image: url(../images/empty.png);
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-size: 165px;
    height: 160px;
    background-repeat: no-repeat;
    opacity: 0.6;
}

.offers-wrapper:not(:has(div)) {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.loader-text {
    font-weight: 600;
    text-transform: capitalize;
}

.row-wrapper:not(:has(div)):after {
    content: "Nothing Found";
    position: absolute;
    bottom: 15px;
    letter-spacing: 1px;
    font-size: 14px;
}

.ajax-pagination[data-page="null"] {
    display: none;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    text-align: center;
    width: fit-content;
    margin: 20px auto 30px auto;
    gap: 5px;
}


.pagination li:first-child,
.pagination li:last-child {
    font-size: 23px;
    line-height: 29px;
}

.pagination li {
    display: inline-block;
    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;
}

.share-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.share-icon a {
    padding: 10px;
    background: var(--primary);
    border-radius: 3px;
    color: #fff;
    flex-shrink: 0;
    display: block;
    height: 36px;
    min-width: 36px;
    box-sizing: border-box;
    text-align: center;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-icon a.twitter {
    background-color: #1d1b1b;
}

.share-icon a.twitter:hover {
    background-color: #000;
}

.share-icon a:last-of-type i {
    margin-left: 10px;
}

:dir(ltr) .share-icon a:last-of-type i {
    margin-left: 0;
    margin-right: 10px;
}

.share-icon a:hover {
    background-color: var(--primary);
}

.share-icon a.facebook {
    background-color: #4867aa;
    color: #fff;
}

.share-icon a.facebook:hover {
    background-color: #2e4b89;
}

.hide {
    display: none !important;
}

.share-tools a {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    background-color: var(--default);
    text-align: center;
    font-size: 15px;
    color: #fff;
    line-height: 33px !important
}

.share-tools a:hover {
    color: #fff;
    background-color: var(--primary);
}

#url {
    opacity: 0;
    position: absolute;
    z-index: -1;
    right: -10000px;
}

:dir(ltr) #url {
    left: -10000px;
    right: unset;
}

.search-form {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 20px 30px;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 10px;
    box-sizing: border-box;
    margin-bottom: 40px;
    background: var(--dark-bg);
    color: #fff;
}

.search-form .form-control {
    max-width: 350px;
}

.search-form .form-group label {
    flex-shrink: 0;
}

.search-form input::placeholder {
    color: #fff;
}

.search-form .form-group {
    display: flex;
    margin-bottom: 0;
    gap: 5px;
    align-items: center;
}

.search-form .btn {
    margin-top: 0 !important;
}

/*-----------------------------------------------------------------------------------*/
/* ANIMATION
/*-----------------------------------------------------------------------------------*/
[data-animation="boxBorder"] .item,
[data-animation="boxBorder"].item-anim {
    transform: translate(-10px, 10px);
    opacity: 0;
    transition: all 0.5s ease;
}

[data-animation="boxBorder"] .item::before,
[data-animation="boxBorder"].item-anim::before {
    opacity: 0;
    transform: translate(-10px, 10px);
    transition: all 0.5s 0.2s ease;
}

[data-animation="boxBorder"] .item.animate::before,
[data-animation="boxBorder"].item-anim.animate::before {
    opacity: 1;
    transform: none;
}

[data-animation="translateX"] .item {
    opacity: 0;
    transform: translateX(-20px);
}

.item.animate,
.item-anim.animate {
    transform: none;
    opacity: 1;
}

@media print {

    header,
    footer,
    aside,
    .tools-wrapper,
    .mablity,
    .grecaptcha-badge {
        display: none !important;
    }

    body {
        background: #fff;
    }
}

/*-----------------------------------------------------------------------------------*/
/* MEDIA QUERIES
/*-----------------------------------------------------------------------------------*/
@media only screen and (max-width: 1120px) {

    .main-slider .swiper-slide {
        background-size: cover !important;
    }

    .main-slider .slide-content {
        max-width: 100%;
    }

    .flex-section {
        flex-wrap: wrap;
    }

    .why_us .items-list {
        flex-wrap: wrap;
    }

    .why_us .item {
        flex-grow: 1;
    }

    .flex-section .section-heading {
        max-width: 100%;
    }

    .faq-content {
        display: none;
    }

    .pricing-content {
        width: 100%;
        padding: 0;
    }

    .pricing-container,
    .systems .section-content {
        width: 100%;
    }

    .pricing-content h4 {
        margin-top: 30px;
    }

    .item-lg {
        display: none !important;
    }

    .menu {
        gap: 10px;
    }

    header .logo img {
        max-width: 200px;
    }

}

@media only screen and (max-width: 840px) {
    header nav {
        opacity: 0;
        visibility: hidden;
        left: -100%;
        position: fixed;
        width: 75%;
        background: #444444c9;
        top: 0;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 20px;
        flex-direction: column-reverse;
        padding: 80px 20px 20px 20px;
        backdrop-filter: blur(10px);
        transition: all 0.5s ease;
        z-index: 100;
    }

    [dir="rtl"] header nav {
        left: unset;
        right: -100%;

    }

    header.show nav {
        opacity: 1;
        visibility: visible;
        left: 0;
    }

    [dir="rtl"] header.show nav {
        left: unset;
        right: 0;

    }

    .menu {
        flex-direction: column;
        gap: 25px;
        justify-content: center;
        align-items: center;
        min-width: unset;
        padding-top: 0;
        width: 100%;
    }

    .menu a {
        font-weight: 20px;
    }

    .main-slider .swiper-slide {
        padding-top: 200px;
    }

    header .logo {
        margin: auto;
    }

    .header-actions {
        display: none;
    }

    .to-top {
        top: -35px;
    }

    .mob-menu {
        position: fixed;
        bottom: 0;
        z-index: 100;
        background: var(--secondary);
        color: #fff;
        width: 100%;
        margin: 0 auto;
        right: 0;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        gap: 10px;
        padding: 10px;
        flex-direction: row-reverse;
    }

    .main-img {
        float: none;
        margin: 0 auto !important;
    }
}

@media only screen and (max-width: 680px) {
    .modal {
        width: 90%;
    }

    footer {
        padding-top: 30px;
    }

    footer .container {
        margin-bottom: 100px;
        flex-wrap: wrap;
    }

    footer .container div:first-child {
        width: 100%;
        text-align: center;
    }

    .faq .item-title {
        font-size: 16px;
        gap: 10px;
    }

    .faq .item-title::before {
        width: 35px;
        height: 35px;
    }

    section {
        padding: 40px 0;
    }

    .section-heading {
        margin-bottom: 20px;
    }

    .main-slider .slide-title {
        font-size: 36px;
        line-height: 43px;
    }

    .main-slider .slide-caption {
        font-size: 20px;
        line-height: 28px;
    }

    .main-slider .swiper-slide {
        height: auto;
        min-height: unset;
        padding-bottom: 50px;
    }

    .section-title-lg {
        font-size: 40px;
        line-height: 65px;
    }

    [dir=rtl] .section-title-lg {
        font-size: 32px;
    }

    [dir="rtl"] .section-title-lg a {
        line-height: 46px;
    }

    [dir=rtl] .section-caption {
        font-size: 28px;
    }

    .section-caption {
        font-size: 34px;
        line-height: 46px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-title-lg a,
    .section-title a {
        line-height: 40px;
    }

    .section-title::before,
    .page-content h1::before,
    .page-content h2::before,
    .page-content h3::before,
    .page-content h4::before,
    .page-content h5::before,
    .page-content h6::before {
        font-size: 55px;
    }

    .search-form * {
        width: 100%;
        max-width: 100% !important;
    }

    .search-form .form-group {
        display: block;
    }
}

/*--------------------------------------------*/
/*  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-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)
}

/*-----------------------------------------------------------------------------------*/
/*  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;
}


/*-----------------------------------------------------------------------------------*/
/* TIPSY
/*-----------------------------------------------------------------------------------*/
.tipsy {
    font-size: 10px;
    position: absolute;
    padding: 5px;
    text-transform: capitalize;
    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
}