@charset "UTF-8";

@font-face {
    font-family: "Bahij TheSansArabic";
    src: url("../fonts/bahij/BahijTheSansArabic-ExtraBold.woff2") format("woff2"),
        url("../fonts/bahij/BahijTheSansArabic-ExtraBold.woff") format("woff"),
        url("../fonts/bahij/BahijTheSansArabic-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Bahij TheSansArabic";
    src: url("../fonts/bahij/BahijTheSansArabic-Bold.woff2") format("woff2"),
        url("../fonts/bahij/BahijTheSansArabic-Bold.woff") format("woff"),
        url("../fonts/bahij/BahijTheSansArabic-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Bahij TheSansArabic";
    src: url("../fonts/bahij/BahijTheSansArabic-Black.woff2") format("woff2"),
        url("../fonts/bahij/BahijTheSansArabic-Black.woff") format("woff"),
        url("../fonts/bahij/BahijTheSansArabic-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Bahij TheSansArabic";
    src: url("../fonts/bahij/BahijTheSansArabic-ExtraLight.woff2") format("woff2"),
        url("../fonts/bahij/BahijTheSansArabic-ExtraLight.woff") format("woff"),
        url("../fonts/bahij/BahijTheSansArabic-ExtraLight.ttf") format("truetype");
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Bahij TheSansArabic";
    src: url("../fonts/bahij/BahijTheSansArabic-Light.woff2") format("woff2"),
        url("../fonts/bahij/BahijTheSansArabic-Light.woff") format("woff"),
        url("../fonts/bahij/BahijTheSansArabic-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Bahij TheSansArabic Plain";
    src: url("../fonts/bahij/BahijTheSansArabic-Plain.woff2") format("woff2"),
        url("../fonts/bahij/BahijTheSansArabic-Plain.woff") format("woff"),
        url("../fonts/bahij/BahijTheSansArabic-Plain.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Bahij TheSansArabic SemiLight";
    src: url("../fonts/bahij/BahijTheSansArabic-SemiLight.woff2") format("woff2"),
        url("../fonts/bahij/BahijTheSansArabic-SemiLight.woff") format("woff"),
        url("../fonts/bahij/BahijTheSansArabic-SemiLight.ttf") format("truetype");
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Bahij TheSansArabic";
    src: url("../fonts/bahij/BahijTheSansArabic-SemiBold.woff2") format("woff2"),
        url("../fonts/bahij/BahijTheSansArabic-SemiBold.woff") format("woff"),
        url("../fonts/bahij/BahijTheSansArabic-SemiBold.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-weight: 400;
    font-style: normal;
    font-family: "Bahij TheSansArabic";
}

.general-title {
    font-size: 30px;
    color: #4d4d4d;
    font-weight: 800;
    margin-bottom: 0;
}

.mySwiper-parent {
    position: relative;
}

img {
    image-rendering: -webkit-optimize-contrast;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0;
}

a,
button {
    color: black;
    text-decoration: none;
    display: inline-block;
    padding: 0;
    outline: none;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

a:hover,
button:hover {
    text-decoration: none;
}

a:focus,
button:focus {
    text-decoration: none;
}

.anchor-holder {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.products .swiper-pagination-bullet,
.news .swiper-pagination-bullet,
.mainBanner .swiper-pagination-bullet {
    background-color: #000000;
    opacity: 0.502;
}

.products .swiper-pagination-bullet-active,
.news .swiper-pagination-bullet-active,
.mainBanner .swiper-pagination-bullet-active {
    background-color: #324c9c;
    opacity: 1;
}

.myButton {
    padding-inline: 20px;
    height: 50px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #59585a;
    width: max-content;
    font-size: 16px;
    color: #ffffff;
    font-weight: 700;
    transition: all ease-in-out 0.2s;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.myButton::after {
    content: "";
    width: 0;
    height: 100%;
    background-color: #324c9c;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    transition: all linear 0.2s;
}

.myButton:hover::after {
    width: 100%;
}

::-webkit-scrollbar {
    width: 8px;
    height: 3px;
}

::-webkit-scrollbar-thumb {
    background: #324c9c;
}

::-webkit-scrollbar-track {
    background-color: #f2f2f2;
}

.preloader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.preloader {
    width: 100%;
    height: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset;
    background-image: linear-gradient(to bottom, #f5f5f5, #f9f9f9);
    position: relative;
    overflow: hidden;
}

.preloader::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 90%;
    height: 100%;
    background-color: #324c9c;
    animation: preloaderAnimation 3s infinite linear;
}

@keyframes preloaderAnimation {
    100% {
        left: 100%;
    }
}

.toTop {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.15));
    background-color: #ffffff;
    display: flex;
    right: 15px;
    bottom: 120px;
    align-items: center;
    justify-content: center;
    border: none;
    transition: all linear 0.3s;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    z-index: 10;
    overflow: hidden;
}

.toTop::after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 0;
    width: 100%;
    background-color: #324c9c;
    z-index: -1;
    transition: all linear 0.2s;
}

.toTop:hover::after {
    height: 100%;
}

.toTop:hover .toTop-icon {
    color: #fff;
}

.toTop .toTop-icon {
    font-size: 16px;
    color: #808080;
    transition: all linear 0.2s;
}

.showToTop {
    opacity: 1;
    visibility: visible;
}

@media only screen and (min-width: 768px) {
    .container {
        padding-inline: 15px;
    }
}

@media only screen and (min-width: 1200px) {
    .container {
        max-width: 1170px;
    }
}

@media only screen and (max-width: 991px) {
    .general-title {
        font-size: 25px;
        line-height: 1.7;
    }
}

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

    .toTop .toTop-icon {
        font-size: 14px;
    }

    .anchor-holder {
        margin-top: 70px;
    }

    .general-title {
        font-size: 20px;
        line-height: 1.5;
    }

    .toTop {
        width: 35px;
        height: 35px;
    }

    .preloader::before {
        animation-duration: 2s;
    }

    .swiper-pagination-bullet {
        width: 6px;
        height: 6px;
    }

    .products .general-title {
        margin-bottom: 30px;
    }

    .swiper-pagination {
        display: flex;
        justify-content: center;
        z-index: 5;
    }
}

header {
    padding: 10px 0;
    background-color: #fff;
    transition: all linear 0.3s;
    position: sticky;
    top: -1px;
    left: 0;
    width: 100%;
    z-index: 10;
}

.download-lang-holder {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.navigation {
    transition: all linear 0.3s;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
}

.logo img {
    width: 105px;
    transition: all linear 0.2s;
}

.big-menu {
    column-gap: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.big-menu a:not(.sub-menu a) {
    font-size: 16px;
    color: #4d4d4d;
    text-align: center;
    text-transform: capitalize;
    transition: all linear 0.2s;
    position: relative;
    font-weight: 500;
}

.big-menu a:not(.sub-menu a):hover {
    text-decoration: none;
    color: #324c9c;
}

/* .current-menu-item a {
	color: #324c9c !important;
} */

.language-anchor {
    font-size: 14px;
    color: #4d4d4d;
    display: flex;
    align-items: center;
    column-gap: 6px;
    transition: all linear 0.2s;
}

.language-anchor span {
    line-height: 13px;
}

.language-anchor:hover {
    color: #324c9c;
}

.menu-item-has-children {
    position: relative;
    padding: 10px 0;
}

.menu-item-has-children .item-anchor {
    column-gap: 3px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.menu-item-has-children .item-anchor::after {
    content: "";
    font-family: "Font Awesome 6 Pro";
    font-size: 10px;
    color: #4d4d4d;
}

.menu-item-has-children:hover .item-anchor {
    color: #324c9c;
}

.menu-item-has-children:hover .item-anchor::after {
    color: #324c9c;
}

.menu-item-has-children:hover .sub-menu {
    transform: translateX(-50%) scale(1);
    opacity: 1;
    visibility: visible;
}

.menu-item-has-children .sub-menu {
    width: 180px;
    box-shadow: rgba(99, 99, 99, 0.15) 0px 2px 8px 0px;
    opacity: 0;
    visibility: hidden;
    z-index: 12;
    background-color: #ffffff;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: scale(0.95) translateX(-50%);
    padding: 12px;
    transition: all linear 0.2s;
}

.menu-item-has-children .sub-menu a {
    transition: all linear 0.2s;
}

.menu-item-has-children .sub-menu li {
    text-align: center;
    transition: all linear 0.3s;
}

.menu-item-has-children .sub-menu li a:hover {
    color: #324c9c;
    background-color: #f5f6fa;
}

.menu-item-has-children .sub-menu a {
    padding: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: #4d4d4d;
    text-align: center;
    justify-content: center;
    font-weight: 400;
    display: flex;
    width: 100%;
}

.open-nav {
    inset-inline-start: -100%;
}

@media only screen and (min-width: 768px) {
    .navigation .language-anchor {
        display: none;
    }

    .close-lang-holder {
        display: none;
    }
}

@media only screen and (min-width: 992px) {
    .mob-upper-nav {
        display: none;
    }

    .open-nav-btn {
        display: none;
    }
}

@media only screen and (max-width: 1199px) {
    .logo img {
        width: 160px;
    }
}

@media only screen and (max-width: 991px) {
    .menu-item-has-children .item-anchor::after {
        font-size: 14px;
        transition: linear transform 0.2s;
    }

    .menu-item-has-children .item-anchor.icon-rotate::after {
        transform: rotate(180deg);
    }

    .menu-item-has-children .sub-menu {
        position: static;
        background-color: unset;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: unset;
        padding: 0;
        display: none;
        transition: none;
        width: 100%;
        padding-top: 12px;
        padding-inline-start: 8px;
    }

    .menu-item-has-children .sub-menu li {
        margin-bottom: 15px;
    }

    .menu-item-has-children .sub-menu li:last-of-type {
        margin-bottom: 0;
    }

    .menu-item-has-children .sub-menu li {
        text-align: start;
    }

    .menu-item-has-children:hover .sub-menu {
        transform: unset;
    }

    .menu-item-has-children .sub-menu a {
        display: inline-block;
        padding: 0;
        width: max-content;
    }

    .navigation .language-anchor {
        display: flex;
    }

    .open-nav-btn {
        display: flex;
    }

    .open-nav-btn .bars-icon {
        font-size: 20px;
        color: #000;
    }

    .logo img {
        width: 210px;
    }

    .mob-upper-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .download-lang-holder {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .navigation {
        overflow-y: auto;
        position: fixed;
        top: 0;
        inset-inline-start: -100%;
        width: 100%;
        height: 100%;
        padding: 25px 20px 20px 20px;
        background-color: #fff;
        transition: 0.4s;
        z-index: 200;
    }

    .reset-left {
        inset-inline-start: 0;
    }

    .big-menu {
        flex-direction: column;
        margin: 65px 0 0 0;
        align-items: flex-start;
        row-gap: 20px;
    }

    .menu-item-has-children {
        width: 100%;
    }

    .big-menu a:not(.sub-menu a) {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 16px;
        font-weight: 400;
    }

    .close-lang-holder {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .download-lang-holder {
        justify-content: flex-end;
        margin-inline-end: 30px;
    }

    .download-lang-holder .language-anchor {
        display: none;
    }

    .close-nav-btn {
        display: flex;
    }

    .close-nav-btn .close-icon {
        font-size: 20px;
        color: #000;
    }
}

@media only screen and (max-width: 767px) {
    header {
        padding: 10px 0;
    }

    .logo img {
        width: 140px;
    }

    .download-lang-holder {
        margin-inline-end: 20px;
    }

    .download-btn {
        height: 35px;
        padding-inline: 13px;
        font-size: 12px;
    }

    .header-content {
        flex-wrap: nowrap;
    }

    .menu-item-has-children .sub-menu li a:hover {
        background-color: transparent;
    }

    .menu-item-has-children {
        padding: 0;
    }
}

@media screen and (max-width: 400px) {
    .logo img {
        width: 60px;
    }
}

.mainBanner .mainslider-item img {
    width: 100%;
    object-fit: cover;
    max-height: 800px;
}

.mainBanner .btn-color-1 {
    border-radius: 34px;
    padding: 15px 45px;
}

.mainBanner {
    position: relative;
    background-size: cover;
    width: 100%;
    background-repeat: no-repeat;
    height: 85vh;
    max-height: 650px;
    display: grid;
    place-content: center;
}

.banner-desc {
    width: 50%;
    z-index: 3;
    text-align: center;
    margin: auto;
    color: white;
}

.main-title-div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-title {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 26px;
}

.hero-desc {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 37px;
    line-height: 1.7;
}

.mainBanner figure {
    position: relative;
    margin: 0;
}

.about .general-title {
    margin-bottom: 20px;
}

.about .para {
    font-size: 18px;
    line-height: 34px;
    color: #4d4d4d;
    text-align: justify;
    margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
    .about {
        padding: 50px 0;
    }

    .about .para {
        font-size: 16px;
        line-height: 1.9;
        margin-bottom: 50px;
    }
}

.cta.footer-cta {
    margin: -190px 0 60px;
}

.footer {
    background: #262626;
    padding: 80px 0 0 0;
    margin-top: 190px;
}

.footer .footer-title {
    font-size: 18px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 40px;
    text-transform: capitalize;
}

.footer-items {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
}

.footer-items .footer-item {
    flex: 1;
    color: #fff;
}

.logo-info img {
    margin-bottom: 30px;
}

.logo-info p {
    line-height: 1.7;
}

.quick-links ul li a {
    font-size: 16px;
    line-height: 2.2;
    color: #fff;
    font-weight: normal;
    text-transform: capitalize;
    transition: 0.3s;
}

.quick-links ul li a:hover {
    color: #324c9c;
}

.quick-links ul li a:focus {
    text-decoration: none;
}

.quick-links ul li a:active {
    text-decoration: none;
}

.footer-social {
    width: 100%;
    display: flex;
    column-gap: 25px;
    align-items: center;
    margin-top: 35px;
}

.footer-social a {
    display: flex;
}

.footer-social a:hover .icon {
    color: #324c9c;
}

.footer-social .icon {
    font-size: 22px;
    color: #fff;
    transition: 0.3s;
}

.footer-contacts ul li a {
    display: flex;
    gap: 16px;
    align-items: baseline;
    line-height: normal;
    padding-block: 7px;
}

.footer-contacts ul li a i {
    color: #324c9c;
    width: 16px;
    text-align: center;
}

.copyright {
    margin-top: 100px;
    background: #1C1C1C;
}

.copyright p {
    margin: 0;
    color: #fff;
    font-size: 14px;
    text-align: center;
    padding: 20px;
}

@media only screen and (min-width: 768px) {
    .footer-item {
        margin-top: 20px;
    }

    .img-item {
        margin-top: 0;
    }
}

@media only screen and (max-width: 991px) {
    .footer-item {
        min-width: auto;
    }
}

@media only screen and (max-width: 767px) {
    .footer-item {
        align-items: flex-start;
    }

    .footer-items {
        flex-direction: column;
    }

    .footer-items .img-item {
        margin: 0 auto 35px auto;
    }

    .footer-items .footer-item {
        width: 100%;
    }

    .quick-links,
    .nested,
    .newsletter {
        width: 100%;
    }

    .social {
        justify-content: center;
    }

    .newsletter,
    .quick-links {
        padding-bottom: 25px;
    }

    .quick-links ul,
    .nested {
        padding-top: 22px;
    }

    .quick-drop,
    .newsletter .nested {
        display: none;
    }

    .footer .footer-title {
        margin-bottom: 0;
        text-transform: capitalize;
        display: flex;
        align-items: center;
        font-size: 16px;
        justify-content: space-between;
    }

    .footer .footer-title::after {
        font-size: 14px;
        content: "";
        transition: all linear 0.3s;
        font-family: "Font Awesome 6 Pro";
        position: relative;
    }

    .arrow-rotate::after {
        transform: rotate(180deg);
    }

    .quick-links ul li {
        margin-bottom: 12px;
    }

    .quick-links ul li a {
        font-size: 14px;
        line-height: normal;
    }
}

.fixed-header {
    border-bottom: 1px solid #e6e6e6;
}

@media only screen and (min-width: 768px) {
    .fixed-header {
        padding: 10px 0;
    }

    .fixed-header .logo img {
        width: 60px;
    }
}

html[dir="ltr"] .main-title-div .normal,
html[dir="ltr"] .main-title-div .bolder {
    line-height: 1.2;
}

html[dir="ltr"] .about-items {
    width: 950px;
}

html[dir="ltr"] .mySection-parent {
    grid-template-columns: 265px 1fr 1fr;
}

html[dir="ltr"] .mySection .general-title {
    line-height: 1.4;
}

html[dir="ltr"] .banner-desc {
    width: 735px;
}

html[dir="ltr"] .about .para {
    line-height: 30px;
}

@media only screen and (max-width: 1399px) {
    html[dir="ltr"] .banner-desc {
        width: 650px;
    }
}

@media only screen and (max-width: 1199px) {
    html[dir="ltr"] .mySection-parent {
        grid-template-columns: 245px 1fr 1fr;
    }

    html[dir="ltr"] .banner-desc {
        width: 550px;
    }
}

@media only screen and (max-width: 991px) {
    html[dir="ltr"] .about-items {
        width: 100%;
    }

    html[dir="ltr"] .banner-desc {
        width: 550px;
    }

    html[dir="ltr"] .mySection-parent {
        grid-template-columns: 1fr 1fr;
    }
}

@media only screen and (max-width: 767px) {
    html[dir="ltr"] .mySection .general-title {
        line-height: 1.4;
    }

    html[dir="ltr"] .quick-links ul li {
        margin-bottom: 9px;
    }

    html[dir="ltr"] .mySection-parent {
        grid-template-columns: 1fr;
    }

    html[dir="ltr"] .about .para {
        line-height: 1.7;
    }

    html[dir="ltr"] .about-items .item .item-title {
        line-height: 1.4;
    }

    html[dir="ltr"] .banner-desc {
        width: 100%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    html[dir="ltr"] .download-btn {
        padding-inline: 14px;
        font-size: 13px;
    }
}

.btn-color-1 {
    background-color: #324c9c;
    color: #fff;
    border-radius: 26px;
    box-shadow: none !important;
    outline: none !important;
    padding: 13px 38px;
    transition: 0.3s;
}

.btn-color-1:hover {
    background-color: #4d4d4d;
    color: white;
}

.btn-color-white {
    background-color: white;
    color: #324c9c;
    border-radius: 26px;
    box-shadow: none !important;
    outline: none !important;
    padding: 13px 38px;
    transition: 0.3s;
}

.btn-color-white:hover {
    background-color: #4d4d4d;
    color: white;
}

.btn-color-1-faded {
    background-color: #f5f6fa;
    color: #324c9c;
    border-radius: 26px;
    box-shadow: none !important;
    outline: none !important;
    padding: 13px 38px;
    transition: 0.3s;
}

.btn-color-1-faded:hover {
    background-color: #324c9c;
    color: white;
}

.rounded15 {
    border-radius: 15px !important;
}

.fz16 {
    font-size: 16px !important;
}

.fz18 {
    font-size: 18px !important;
}

.fz20 {
    font-size: 20px !important;
}

.fz22 {
    font-size: 22px !important;
}

.fz23 {
    font-size: 23px !important;
}

.fz24 {
    font-size: 24px !important;
}

.fz26 {
    font-size: 26px !important;
}

.fz28 {
    font-size: 28px !important;
}

.fz30 {
    font-size: 30px !important;
}

.pb-100 {
    padding-bottom: 100px !important;
}

.pt-100 {
    padding-top: 100px !important;
}

.pb-50 {
    padding-bottom: 50px !important;
}

.pt-50 {
    padding-top: 50px !important;
}

.mb-100 {
    margin-bottom: 100px !important;
}

.mt-100 {
    margin-top: 100px !important;
}

.mt-50 {
    margin-top: 50px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.top-nav {
    background: #4d4d4d;
    color: #fff;
    font-size: 18px;
    padding: 10px;
}

.top-nav i {
    color: #324c9c;
}

.top-nav a {
    font-size: 20px;
    color: #fff;
    transition: 0.3s;
}

.top-nav a:hover {
    color: #324c9c;
}

.fixed-header .btn-color-1 {
    padding: 7px 30px;
}

.common-item-wrapper {
    height: 100%;
}

.common-item-wrapper img {
    aspect-ratio: 17/12;
    transition: 0.3s;
    width: 100%;
    object-fit: cover;
}

.common-item-wrapper .img-overlay {
    overflow: hidden;
}

.common-item-wrapper .img-overlay a {
    display: block;
}

.common-item-wrapper:hover img {
    transform: scale(1.1);
}

.common-item-wrapper:hover .title a {
    color: #324c9c;
}

.common-item-wrapper .title {
    margin-top: 30px;
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 16px;
}

.common-item-wrapper .title a {
    transition: 0.3s;
    color: #4d4d4d;
}

.common-item-wrapper .desc {
    font-size: 16px;
    color: #4d4d4d;
    line-height: 1.7;
    margin-bottom: 30px;
}

.common-item-wrapper .btn {
    margin-bottom: 20px;
}

.service-item {
    background: #fff;
    padding: 10px;
}

.faded-bg {
    background: #f5f6fa;
}

.cta {
    background: #324c9c;
    border-radius: 15px;
    padding: 60px;
    color: #fff;
    font-size: 30px;
}

.cta .cta-subtitle {
    font-weight: 800;
    margin-top: 10px;
}

.cta .btn {
    font-size: 23px;
    font-weight: 700;
    display: flex;
    align-items: center;
    column-gap: 10px;
    border-radius: 34px;
    padding: 15px 37px;
}

.cta .btn i {
    font-size: 28px;
}

.testimonials-slider {
    margin-inline: -24px;
    padding-inline: 13px;
}

.testimonials-item {
    border-radius: 15px;
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.07));
    background-color: #ffffff;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonials-item .starts i {
    font-size: 14px;
    color: #ffca05;
}

.testimonials-item .testimonial-text {
    color: #4d4d4d;
    font-size: 16px;
    line-height: 1.7;
    border-bottom: 1px solid #f2f2f2;
    padding-bottom: 25px;
    margin-bottom: 15px;
}

.testimonials-item .testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
}

.testimonials-item .testimonial-author .initial {
    width: 45px;
    height: 45px;
    border-radius: 23px;
    background-color: #f85312;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.testimonials-item .author-name {
    font-size: 16px;
    font-weight: bold;
}

.swiper-pagination {
    bottom: -7px !important;
}

.swiper-pagination-bullet {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: #cccccc;
    opacity: 1;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #324c9c;
}

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

.single-feature {
    border-radius: 15px;
    background-color: #ffffff;
    padding: 40px;
    display: flex;
    gap: 35px;
    height: 100%;
}

.single-feature i {
    font-size: 48px;
    color: #324c9c;
}

.single-feature .title {
    font-size: 20px;
    color: #4d4d4d;
    font-weight: 800;
    margin-bottom: 15px;
}

.single-feature .desc {
    font-size: 16px;
    line-height: 30px;
    color: #4d4d4d;
    margin-bottom: 0;
}

.single-faq {
    counter-increment: faqs;
    border-top: 1px solid #e6e6e6;
    position: relative;
}

.single-faq:last-child {
    border-bottom: 1px solid #e6e6e6;
}

.single-faq .title {
    padding-block: 25px;
    padding-inline-end: 50px;
    display: flex;
    gap: 26px;
    font-size: 20px;
    color: #4d4d4d;
    font-weight: bold;
    position: relative;
    cursor: pointer;
    transition: 0.3s;
}

.single-faq .title:before {
    content: counter(faqs, decimal-leading-zero);
    font-size: 20px;
    color: #cccccc;
}

.single-faq .title:after {
    content: "+";
    position: absolute;
    inset-inline-end: 0;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
    font-size: 24px;
    color: #cccccc;
}

.single-faq .title.active {
    color: #324c9c;
}

.single-faq .title.active:after {
    content: "";
}

.single-faq .desc {
    font-size: 16px;
    line-height: 1.7;
    padding-inline: 50px;
    color: #4d4d4d;
    display: none;
    padding-bottom: 25px;
}

@media all and (max-width: 1024px) {
    .banner-desc {
        width: 95%;
    }

    .cta .btn {
        font-size: 21px;
        padding: 15px 32px;
    }
}

@media all and (max-width: 768px) {
    header {
        padding: 14px 0;
    }

    header .btn-color-1 {
        padding: 8px 26px;
    }

    .about .img-holder {
        text-align: center;
    }

    .cta {
        text-align: center;
    }

    .cta .btn {
        margin-top: 3rem;
    }
}

@media all and (max-width: 600px) {
    .mainBanner {
        height: auto;
        padding: 4rem 0;
    }

    .mainBanner .banner-desc {
        width: 100%;
    }

    .mainBanner .hero-desc {
        display: none;
    }

    .mainBanner .hero-title {
        font-size: 24px;
    }

    .mainBanner .btn-color-1 {
        padding: 10px 25px;
        font-size: 18px !important;
    }

    .about .img-holder {
        margin-bottom: 2rem;
    }

    .pt-100 {
        padding-top: 50px !important;
    }

    .pb-100 {
        padding-bottom: 50px !important;
    }

    .top-nav * {
        font-size: 15px !important;
    }

    .btn {
        padding: 9px 22px;
        font-size: 14px !important;
    }

    .cta {
        padding: 30px 20px;
        font-size: 17px;
    }

    .cta .btn {
        margin-top: 1rem;
    }

    .cta .btn i {
        font-size: inherit;
    }

    .swiper-pagination {
        bottom: 4px !important;
    }

    .footer-items .img-item {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .quick-links ul.ul-es {
        column-count: 1;
    }

    .footer-items {
        gap: 1rem;
    }

    .testimonials-slider {
        margin-inline: 0;
        padding-inline: 13px;
    }

    .common-item-wrapper .desc,
    .about .para,
    .testimonials-item .testimonial-text,
    .single-feature .desc,
    .single-faq .title,
    .single-faq .desc {
        font-size: 14px;
    }

    body {
        font-size: 14px;
    }

    .about-content {
        text-align: center;
    }

    .about-content .para {
        text-align: center;
    }

    .about-content .about-btns {
        justify-content: center;
    }

    .mb-50 {
        margin-bottom: 35px !important;
    }

    .single-feature {
        display: block;
        text-align: center;
    }

    .single-feature i {
        margin-bottom: 30px;
    }

    .single-feature .title {
        font-size: 17px;
    }

    .copyright {
        margin-top: 60px;
    }
}

.floating-contacts {
    position: fixed;
    right: 10px;
    bottom: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.floating-contacts a {
    filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.15));
    width: 50px;
    height: 50px;
    font-size: 24px;
    border-radius: 50%;
    display: grid;
    place-content: center;
    transition: 0.3s;
}

.floating-contacts a.phone {
    background: #ff8f43;
    color: #ffffff;
}

.floating-contacts a.whatsapp {
    background: #24CC63;
    color: #fff;
}

.floating-contacts a:hover {
    box-shadow: inset 0 0 0 26px #4d4d4d;
    color: #fff;
}

.breadcrumb-section {
    padding-block: 39px;
    background-color: #324c9c;
}

.breadcrumb-head {
    font-size: 24px;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.breadcrumb {
    justify-content: center;
    margin-bottom: 0;
    gap: 10px;
    color: #fff;
}

.breadcrumb a,
.breadcrumb span {
    font-size: 14px;
    color: #ffffff;
}

.breadcrumb-item.active {
    font-size: 14px;
    color: #ffffff;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}

.about-section {
    background-color: #fff;
    padding: 50px 0 10px;
}

.about-img {
    margin: 0 auto 40px;
}

.about-img img {
    width: 100%;
    z-index: 9;
}

a.bout-us-text {
    display: flex;
    flex-direction: column;
}

.about-us-title {
    color: #324c9c;
    font-size: 30px;
    margin: 0 0 22px;
    text-align: start;
    display: flex;
    text-transform: capitalize;
    width: 100%;
    position: relative;
}

.mb36 {
    margin-bottom: 40px !important;
}

.about-us-paragraph {
    color: #4d4d4d;
    font-size: 16px;
    line-height: 2;
    text-align: justify;
    margin: 0 0 32px;
}

/*pagination*/
.wp-pagenavi {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.wp-pagenavi span,
.wp-pagenavi a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400 !important;
    padding: 0;
    margin: 0;
    color: #324c9c;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    line-height: 40px;
    border: none;
    background-color: #f5f6fa;
    transition: 0.3s;
}

.wp-pagenavi a:hover,
.wp-pagenavi .current {
    text-decoration: none;
    color: #fff;
    background-color: #324c9c;
}

.wp-pagenavi a i {
    font-size: 16px;
}

html:not([dir="rtl"]) .wp-pagenavi a i {
    transform: scaleX(-1);
}

.contact-info .contact-head {
    color: #000;
}

.contact-info .contact-flex,
.contact-info .contact-flex a {
    color: #333;
}

.contact-info .contact-flex a:hover {
    color: #324c9c;
}

.contact-info .contact-item i {
    color: #324c9c;
    font-size: 20px;
    width: 20px;
    margin-inline-end: 5px;
}

.contact-info .contact-item {
    flex-wrap: wrap;
}

.contact-info .location-link {
    flex-wrap: nowrap;
    display: flex;
    align-items: flex-start;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
}

.location-link {
    display: block;
}

.location-link .contact-head {
    margin-inline-end: 8px;
}

.contact-head {
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-flex {
    display: inline;
}

.contact-flex,
.contact-flex a {
    font-weight: 400;
    font-size: 16px;
    color: #b3b3b3;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.contact-flex a:hover {
    text-decoration: none;
    color: white;
}

.common-wrapper {
    padding: 100px 0;
    background-color: #fff;
}

.request-form {
    border: 1px solid #f2f2f2;
    padding: 35px 30px;
    width: 100%;
    background: #fff;
    border-radius: 15px;
}

.request-form-cont {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
}

@media all and (max-width: 768px) {
    .request-form-cont {
        grid-template-columns: 1fr;
    }
}

.form-input-relative {
    position: relative;
    display: flex;
}

.full-grid {
    grid-column: 1/-1;
}

.form-label {
    display: block;
}

textarea.form-input {
    height: 100px;
    resize: none;
    padding: 15px 25px;
}

.text-justify {
    text-align: justify;
    text-justify: inter-word;
}

label.myLabel {
    font-size: 13px;
    color: #4d4d4d;
}

.form-input {
    width: 100%;
    display: flex;
    align-items: center;
    background-color: #f5f6fa;
    height: 50px;
    border-radius: 25px;
    padding: 0 22px;
    border: 2px solid transparent;
    transition: 0.5s;
    color: #000;
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 10px;
    outline: none;
}

.form-select.form-input {
    box-shadow: none;
    border-radius: 25px;
}

.form-input::placeholder {
    color: #999999;
    font-size: 14px;
}

.form-input:focus {
    border: 2px solid #324c9c;
    outline: none;
}

.wpcf7-textarea {
    width: 100%;
    min-height: 125px;
    background-color: #f5f6fa;
    padding: 22px;
    color: #999999;
    font-size: 14px;
    border: 2px solid transparent;
    transition: 0.5s;
    outline: none;
}

.wpcf7-textarea:focus {
    border: 2px solid #324c9c;
    outline: none;
}

.contact-btn {
    color: #fff;
}

.contact-social .icon {
    color: #324c9c;
}

.contact-social .icon:hover {
    color: #4d4d4d !important;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.wpcf7-not-valid-tip,
.wpcf7 form .wpcf7-response-output {
    font-size: 11px;
}

.contact-title {
    font-weight: 800;
    font-size: 28px;
    color: #4d4d4d;
    margin-bottom: 20px;
}

.mw-100 {
    max-width: 100% !important;
}

.wpml-ls-legacy-dropdown {
    width: auto;
}

html[dir="rtl"] [type="email"],
html[dir="rtl"] [type="number"],
html[dir="rtl"] [type="tel"],
html[dir="rtl"] [type="url"] {
    direction: rtl;
}

.wpml-ls-legacy-list-horizontal {
    padding: 0;
}

.wpml-ls-link {
    display: flex !important;
    align-items: center;
    flex-direction: row-reverse;
    gap: 5px;
    padding: 0 !important;
    transition: 0.3s;
}

.wpml-ls-link:hover {
    color: #324c9c;
}

.wpml-ls-display,
.wpml-ls-native {
    margin: 0 !important;
}

/*# sourceMappingURL=main.css.map */


.tags a {
    display: inline-block;
    height: 24px;
    line-height: 24px;
    position: relative;
    transition: 0.3s;
    padding: 0 10px 0 12px;
    background: #324c9c;
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    font-weight: bold;

    &:hover {
        filter: brightness(1.1)
    }
}

.tags a:before {
    content: "";
    position: absolute;
    top: 0;
    left: -12px;
    width: 0;
    height: 0;
    border-color: transparent #324c9c transparent transparent;
    border-style: solid;
    border-width: 12px 12px 12px 0;
}

.tags a:after {
    content: "";
    position: absolute;
    top: 10px;
    left: 1px;
    float: left;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
    box-shadow: -1px -1px 2px rgba(0, 0, 0, 0.4);
}

.tags-cloud {
    gap: 8px 17px;
}

.editor-button {
    display: flex;
    width: max-content;
    margin-inline: auto;
}

.tasawk-copyrights a {
    color: white;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    transition: 0.3s;

    &:hover {
        color: #324c9c;
    }
}

@media screen and (max-width:600px) {
    .copyright p {
        padding: 11px 0 4px;
    }
}

:target::before {
    content: '';
    display: block;
    height: 50px;
    margin: -50px 0 0 0;
}



.social-icons {
    display: inline-flex;
    gap: 20px;
    margin-bottom: 3rem;

    a {
        transition: 0.3s;

        &:hover {
            opacity: 0.5;
        }
    }
}


.gallery {
    position: relative;

    .gallery-figure {
        position: relative;
        overflow: hidden;
        width: 100%;
        height: 100%;
        max-height: 350px;

    }
}

.gallery-wrapper,
.alm-reveal,
.alm-listing {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 15px;

    @media screen and (max-width: 991px) {
        grid-template-columns: repeat(2, 1fr);
    }

    @media screen and (max-width: 767px) {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hover-gallery {
    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    width: 100%;

    visibility: hidden;

    opacity: 0;

    z-index: 1;

    font-size: 30px;

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    -webkit-transition: all 0.3s ease-in-out;

    transition: all 0.3s ease-in-out;
}

.hover-gallery::after {
    content: "";

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    background: #324c9c;

    opacity: 0.85;
}

.hover-gallery i {
    position: relative;

    z-index: 2;
}

.gallery-image {
    aspect-ratio: 1 / 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery.video-gallery {
    video {
        width: 100%;
        height: 100%;
        max-height: 273.75px;
        object-fit: cover;
        display: block;
        aspect-ratio: 1;
    }

    i {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        z-index: 1;
        font-size: 40px;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
}


.gallery:hover .hover-gallery {
    opacity: 1;

    visibility: visible;
}