.banner-image {
    isolation: isolate;
}

.banner-image::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.517);
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.icons-icon {
    width: var(--size);
    aspect-ratio: 1;
    background-color: var(--color);
    background-image: var(--bg-color);
    mask-image: var(--icon);
    mask-position: center;
    mask-size: contain;
    mask-repeat: no-repeat;
}

#blog .blog-publish {
    transform: translateX(0px);
    transition: .5s;
}

#blog .blog-publish:hover {
    transform: translateX(-15px);
}

.cross-shape {
    position: relative;
    isolation: isolate;
}

.cross-shape::after {
    background-color: inherit;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    transform: skewY(5deg) translateY(-50%);
    transition: .5s;
}

.blog-item:hover .cross-shape::after {
    transform: skewY(-5deg) translateY(-50%);
}

.cross-shape::before {
    background: linear-gradient(45deg, #00e9f18c, #1b67ff7a);
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transform: skewY(-5deg) translateY(-50%);
    z-index: -1;
    transition: .5s;
}

.blog-item:hover .cross-shape:before {
    transform: skewY(5deg) translateY(-50%);
}

:root {
    --clr-primary: rgb(0, 18, 68);
    --clr-primary-dark: rgb(68, 149, 209);
    --clr-secondary: rgb(68, 149, 209);
    --clr-secondary-dark: rgb(68, 149, 209);
    --clr-white: hsl(0, 0%, 100%);
    --clr-black: hsl(0, 0%, 0%);
    --clr-light: hsl(0, 0%, 98%);
    --clr-dark: hsl(0, 0%, 5%);
    --clr-accent-1: rgb(0, 18, 68);
    --clr-accent-1-dark: rgb(0, 18, 68);
    --clr-accent-2: rgb(68, 149, 209);
    --clr-accent-2-dark: rgb(68, 149, 209);
    --section-bg: hsl(0, 0%, 98%)
}



body.dark {
    background-color: #333;
    --clr-accent-1: hsl(182, 100%, 40%);
    color: var(--clr-light)
}

body.dark {
    --clr-white: hsl(0, 0%, 0%);
    --clr-black: hsl(0, 0%, 100%);
    --clr-light: hsl(0, 0%, 100%);
    --clr-dark: hsl(0, 0%, 0%);
    --section-bg: hsl(0, 0%, 10%)
}

body .img-light {
    display: block
}

body.dark .img-light {
    display: none
}

body .img-dark {
    display: none
}

body.dark .img-dark {
    display: block
}

::selection {
    background-color: var(--clr-accent-1);
    color: var(--clr-light)
}

.clr-primary-bg {
    background-color: var(--clr-primary)
}

.clr-secondary-bg {
    background-color: var(--clr-secondary)
}

.clr-primary-bg-dark {
    background-color: var(--clr-primary-dark)
}

.clr-white-bg {
    background-color: var(--clr-white)
}

.clr-black-bg {
    background-color: var(--clr-black)
}

.clr-light-bg {
    background-color: var(--section-bg)
}

.clr-dark-bg {
    background-color: var(--clr-dark)
}

.clr-primary-secondary-bg {
    background-image: linear-gradient(var(--direction, 90deg), var(--clr-primary), var(--clr-secondary))
}

body.dark .dark.clr-primary-secondary-bg {
    background-image: linear-gradient(var(--direction, 90deg), var(--clr-primary-dark), var(--clr-secondary-dark))
}

.clr-accents-bg {
    background-image: linear-gradient(var(--direction, 90deg), var(--clr-accent-1), var(--clr-accent-2))
}

body.dark .dark.clr-accents-bg {
    background-image: linear-gradient(var(--direction, 90deg), var(--clr-accent-1-dark), var(--clr-accent-2-dark))
}

.to-top {
    --direction: 180deg
}

.to-bottom {
    --direction: 180deg
}

.to-left {
    --direction: 90deg
}

.to-right {
    --direction: 270deg
}

.to-45 {
    --direction: 45deg
}

.to-n45 {
    --direction: -45deg
}

.clr-primary {
    color: var(--clr-primary)
}

.clr-secondary {
    color: var(--clr-secondary)
}

.clr-accent-1 {
    color: var(--clr-accent-1)
}

.clr-accent-2 {
    color: var(--clr-accent-2)
}

.clr-white {
    color: var(--clr-white)
}

.clr-black {
    color: var(--clr-black)
}

.clr-light {
    color: var(--clr-light)
}

.clr-dark {
    color: var(--clr-dark)
}

.gradient-text {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

*,
::before,
:after {
    font: inherit;
    box-sizing: border-box;
    line-height: 1.6;
    padding: 0;
    margin: 0
}

body,
html {
    width: 100%;
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6em;
    overflow-x: hidden
}

h1,
h2,
h3,
h4,
h5,
h6 {
    clear: both;
    padding: 0;
    margin: 0 0 10px 0;
    font-weight: 600;
    line-height: 1.2em;
    font-family: Poppins, sans-serif
}

p {
    margin: 0 0 10px 0;
    font-weight: 400;
    font-family: Lora, serif
}

a {
    all: unset;
    cursor: pointer
}

ul {
    margin: 0 0 15px 0;
    padding-left: 20px;
    list-style: none
}

em,
i {
    font-style: italic
}

img,
picture,
svg,
video {
    border: 0;
    max-width: 100%;
    height: auto
}

.img-fit {
    object-fit: cover;
    object-position: center
}

.isolation {
    isolation: isolate
}

.primary-secondary-btn {
    background-image: linear-gradient(var(--direction, 90deg), var(--clr-primary), var(--clr-secondary), var(--clr-primary));
    background-size: 200%;
    background-position: left center;
    transition: .3s;
    color: var(--clr-light)
}

.primary-secondary-btn:hover {
    background-position: right center;
    color: var(--clr-light)
}

.accents-btn {
    background-image: linear-gradient(var(--direction, 90deg), var(--clr-accent-1), var(--clr-accent-2), var(--clr-accent-1));
    background-size: 200%;
    background-position: left center;
    transition: .3s;
    color: var(--clr-light)
}

body.dark .accents-btn {
    background-image: linear-gradient(var(--direction, 90deg), #15ac1a, var(--clr-accent-2), #15ac1a)
}

body.dark .dark.accents-btn {
    background-image: linear-gradient(var(--direction, 90deg), var(--clr-primary), var(--clr-secondary), var(--clr-primary))
}

.accents-btn:hover {
    background-position: right center;
    color: var(--clr-light)
}

.border-primary-btn {
    background-image: linear-gradient(var(--direction, 90deg), var(--clr-primary), var(--clr-secondary));
    background-size: 100% 0;
    background-position: center bottom;
    background-repeat: no-repeat;
    transition: .3s;
    color: var(--clr-light);
    outline: 1px solid var(--clr-light);
    outline-offset: -2px
}

.border-primary-btn:hover {
    background-size: 100% 100%;
    color: var(--clr-light)
}

.border-accents-btn {
    background-image: linear-gradient(var(--direction, 90deg), var(--clr-accent-1), var(--clr-accent-2));
    background-size: 100% 0;
    background-position: center bottom;
    background-repeat: no-repeat;
    transition: .3s;
    color: var(--clr-light);
    outline: 1px solid var(--clr-light);
    outline-offset: -2px
}

.border-accents-btn:hover {
    background-size: 100% 100%;
    color: var(--clr-light)
}

.z-index-1 {
    z-index: 1
}

.z-index-2 {
    z-index: 2
}

.z-index-3 {
    z-index: 3
}

.z-index-4 {
    z-index: 4
}

.z-index-5 {
    z-index: 5
}

.z-index-n1 {
    z-index: -1
}

.z-index-n2 {
    z-index: -2
}

.z-index-n3 {
    z-index: -3
}

.small-font {
    font-size: 14px
}

.ratio-1x1 {
    aspect-ratio: 1/1
}

.ratio-2x1 {
    aspect-ratio: 2/1
}

.ratio-1x2 {
    aspect-ratio: 1/2
}

.ratio-3x2 {
    aspect-ratio: 3/2
}

.ratio-2x3 {
    aspect-ratio: 2/3
}

.radius-1 {
    border-radius: 5px
}

.radius-2 {
    border-radius: 10px
}

.radius-3 {
    border-radius: 15px
}

.radius-4 {
    border-radius: 25px
}

.radius-5 {
    border-radius: 30px
}

.radius-50 {
    border-radius: 40px
}

.opacity-10 {
    opacity: .1
}

.opacity-20 {
    opacity: .2
}

.opacity-30 {
    opacity: .3
}

.fw-500 {
    font-weight: 500
}

.w-fit {
    width: fit-content
}

.w-max {
    width: max-content
}

.box-shadow-sm {
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, .05)
}

.box-shadow {
    box-shadow: 0 16px 88px 0 rgba(0, 0, 0, .08)
}

#light-dark-mode {
    position: fixed !important;
    top: 50%;
    right: 10px;
    width: 30px;
    height: 75px;
    background-color: #000;
    border-radius: 30px;
    background-image: url(../images/day.svg), url(../images/night.svg), url(../images/day-active.svg), url(../images/night-active.svg);
    background-size: 80% auto;
    background-repeat: no-repeat;
    background-position: top -50px center, bottom 3px center, top 5px center, bottom -50px center;
    z-index: 90;
    transition: .5s;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, .04);
    cursor: pointer
}

#light-dark-mode.dark {
    background-color: #001033;
    background-position: top 5px center, bottom -50px center, top -50px center, bottom 3px center
}

header {
    z-index: 98;
    width: 100%;
    position: fixed;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    transition: .5s;
    height: 90px;
    background: var(--clr-white);
    border-radius: 100vh;
}

header nav {
    text-align: center;
    background: var(--clr-white);
}

header nav ul {
    margin: 0;
    padding: 1em;
    list-style-type: none;
}

header nav ul li {
    display: inline;
    margin-left: 1em;
}

header nav ul li ul {
    display: none;
}

.mean-bar a,
header a {
    color: var(--clr-black);
    transition: color 0.25s ease-in;
    font-weight: 700;
}

.mean-bar a:hover,
header a:hover {
    color: var(--clr-accent-1);
}

.mean-nav {
    display: contents;
}

.mean-bar .logo img {
    height: 45px !important;
    width: auto;
}

.mean-container a.meanmenu-reveal {
    width: 30px;
    height: 30px;
    background-image: url(../images/open.svg), url(../images/close.svg);
    background-size: 100%;
    background-position: left 0px center, left 30px center;
    background-repeat: no-repeat;
    padding: 0;
    top: 12px;
    right: 10px !important;
    transition: .5s;
}

.mean-container a.meanmenu-reveal.meanclose {
    background-position: left -30px center, left 0px center;
}

.item-box span {
    opacity: 0;
    transition: .5s;
}

.item-box:hover span {
    opacity: .5;
}

.preview-btn {
    color: white !important;
    outline: 2px solid white;
    background-image: linear-gradient(to right, var(--clr-accent-1), var(--clr-accent-1));
    background-size: 100% 0%;
    background-position: center bottom;
    background-repeat: no-repeat;
    transition: .5s !important;
    opacity: 0;
    transform: translateY(30px);
    justify-content: center;
    max-width: 180px;
}

.item-box:hover .preview-btn {
    opacity: 1;
    transform: translateY(0px);
}

.preview-btn:hover {
    background-size: 100% 100%;
}

.preview-btn svg path {
    fill: white !important;
    transition: .5s;
}

.hover-box.mega-menu {
    top: 100% !important;
}

.hover-box.mega-menu>div:nth-child(1) {
    overflow: hidden;
}

@media (width>1400px) {
    header {
        width: 80%;
        max-width: 2000px;
        top: 50px;
    }

    header nav {
        border-radius: 50px;
    }

    .hover-box.mega-menu {
        max-height: calc(100vh - 90px);
        overflow: auto;
        top: calc(100% + 15px) !important;
    }
}

@media (width < 1280px) {
    #header {
        display: none !important;
    }
}

@media (width>1000px) {
    header .logo img {
        height: 50px !important;
        width: auto;
        margin: auto;
    }

    header nav {
        display: flex;
        align-items: center;
        width: 100%;
        padding-block: 10px;
        transition: .5s;
    }

    header.full {
        top: 0px;
        width: 100%;
        box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
        border-radius: 0;
    }

    header.full nav {
        border-radius: 0px;
    }

    .menu-bars>li {
        padding-block: 50px;
    }

    .hover-link:hover>.hover-box {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0px);
    }

    .hover-box {
        opacity: 0;
        pointer-events: none;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        background-color: var(--clr-white);
        display: flex;
        flex-direction: column;
        width: max-content;
        padding: 20px;
        transform: rotateX(90deg);
        transform-origin: top;
        transition: .3s;
        padding-inline: 0px !important;
        padding-block: 30px;
        gap: 10px;
        border-top: 2px solid var(--clr-primary);
    }

    .hover-box.mega-menu {
        max-height: calc(100vh - 90px);
        overflow: auto;
    }

    .hover-box.mega-menu>div {
        max-width: 1200px;
    }

    header.full .hover-box.mega-menu {
        top: 100% !important;
    }

    .hover-box>li {
        padding-left: 30px;
        padding-right: 50px;
        padding-block: 5px;
        text-align: left;
    }

    .hover-box>li.hover-link::after {
        content: "";
        position: absolute;
        left: 100%;
        width: 20px;
        height: 200px;
    }

    .hover-box>li.hover-link::before {
        content: "\f054";
        font-family: FontAwesome;
        color: var(--clr-secondary);
        margin-right: 10px;
        margin-left: -20px;
    }

    .hover-box.right {
        top: 0% !important;
        left: calc(100% + 20px) !important;
        transform: rotateY(90deg);
        transform-origin: left;
    }
}

@media (width < 300px) {
    .call {
        display: none !important;
    }

    .call+a {
        margin-left: auto !important;
    }
}

@media (max-width: 552px) {
    .tag-height {
        max-height: 40px;
        overflow: hidden;
        transition: .5s;
    }

    .tag-height.active {
        max-height: 500px;
        overflow: visible;
    }

    .view-theme-btn {
        color: white;
        border-radius: 30px;
        isolation: isolate;
        position: relative;
        overflow: hidden;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0);
        border: none;
        outline: none;
        padding: 6px 30px;
        background-color: rgb(0, 18, 68);

        /* background-color: hsl(217, 33%, 17%); */
        transition: .5s;

    }
}

.img-banner {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    transition: height .6s ease;
    z-index: 0
}

.img-banner.active {
    height: 100%
}

.img-banner img,
.img-banner picture {
    width: 100%;
    height: 100%;
    object-fit: cover
}

#banner .banner-section {
    height: 85vh
}

.jarallax-img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

@media (1000px < width < 1400px) {
    #banner {
        margin-top: 80px !important
    }
}

#why-choose-us .item-box {
    background-image: linear-gradient(to right, var(--clr-primary), var(--clr-secondary));
    background-size: 100% 2%;
    background-position: center bottom;
    background-repeat: no-repeat;
    transition: .5s
}

#why-choose-us .item-box:hover {
    background-size: 100% 100%
}

#why-choose-us .item-box:hover svg path {
    fill: var(--clr-light)
}

#why-choose-us .item-box :is(h6, p) {
    transition: .5s
}

#why-choose-us .item-box:hover :is(h6, p) {
    color: var(--clr-light)
}

.cta-btn {
    left: 50%;
    top: 100%;
    transform: translateY(-50%) translateX(-50%)
}

#call-to-action iframe {
    width: 100%
}

footer .footer-links a {
    transition: .5s;
    position: relative
}

footer .footer-links a .icons-icon {
    position: absolute;
    right: 105%;
    transition: .5s;
    opacity: 0
}

footer .footer-links a:hover .icons-icon {
    opacity: 1
}

footer .footer-links a:hover {
    color: var(--clr-accent-1);
    transform: translateX(10px)
}

body.dark footer .footer-links a:hover {
    color: var(--clr-secondary)
}

.about-radius {
    border-radius: 0 30px 100px 0;
    box-shadow: inset 0 -30px 0 rgba(0, 0, 0, .2);
    transform: translateY(-20%)
}

body.dark .about-radius {
    background-image: linear-gradient(var(--direction, 90deg), var(--clr-primary), var(--clr-secondary)) !important
}

.footer-img .footer-icon {
    position: absolute;
    content: "";
    background: linear-gradient(90deg, #00acb2a1 0, #1b67ffa8 100%);
    scale: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .5s;
    transform: rotate(-90deg)
}

.footer-img:hover .footer-icon {
    scale: 1;
    transform: rotate(0)
}

@media (539px < width < 913px) {
    .about-radius {
        transform: translateY(-20%) translateX(calc(-100vw + 400px))
    }
}

@media (width < 539px) {
    .about-radius {
        transform: translateY(-20%) translateX(-30px)
    }
}

@media (width < 281px) {
    .about-radius {
        transform: translateY(-20%) translateX(0)
    }
}

header .logo img {
    height: 100px !important;
    width: 200px !important;
    margin: auto
}

h2 {
    text-transform: capitalize
}

.services h6 {
    font-size: 22px !important
}

.menu-bars li a {
    font-size: 22px !important
}

.footer-links a {
    font-size: 22px !important
}

.theme-btn {
    color: #fff;
    border-radius: 30px;
    isolation: isolate;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px transparent;
    border: none;
    outline: 0;
    padding: 5px 15px;
    background-color: var(--clr-primary);
    transition: .5s;
    text-align: center
}

.theme-btn::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    left: 0;
    top: 0;
    background-color: var(--clr-primary-dark);
    transform: translateX(-110%);
    transition: .5s
}

.theme-btn:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    color: #fff
}

.theme-btn:hover::before {
    transform: translate(0)
}

.change-lang {
    position: fixed !important;
    top: calc(50% - 85px);
    right: 10px;
    width: 30px;
    height: 80px;
    background-color: var(--clr-primary);
    border-radius: 30px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-block: 4px;
    box-shadow: 0 0 5px rgba(0, 0, 0, .616)
}

.change-lang-cont {
    position: absolute;
    padding: 4px 10px;
    width: max-content;
    background-color: var(--clr-primary);
    color: #fff;
    right: calc(100% + 100px);
    top: 50%;
    font-size: 12px;
    border-radius: inherit;
    transform: translateY(-50%);
    animation: showLang 7s 10s forwards;
    opacity: 0
}

@keyframes showLang {

    0%,
    100% {
        right: calc(100% + 100px);
        opacity: 0
    }

    10% {
        right: calc(100% + 5px);
        opacity: 1
    }

    90% {
        right: calc(100% + 5px);
        opacity: 1
    }
}

.change-lang .lang::after {
    position: absolute;
    content: attr(data-name);
    width: max-content;
    padding: 2px 10px;
    right: calc(100% + 10px);
    top: 50%;
    background-color: var(--clr-primary);
    color: #fff;
    font-size: 10px;
    border-radius: 30px;
    transform: translateY(-50%) translateX(-10px);
    opacity: 0;
    transition: .4s;
    pointer-events: none
}

.change-lang .lang:hover::after {
    transform: translateY(-50%) translateX(0);
    opacity: 1
}

.change-lang .svg-wrapper {
    transform: rotate(90deg)
}

.change-lang .lang {
    width: 22px;
    height: 22px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: .4s;
    box-shadow: 0 0 5px #fff
}

.change-lang .lang a {
    color: var(--clr-primary);
    font-size: 12px;
    transition: .4s;
    font-weight: 500
}

.change-lang .lang:hover {
    background-color: var(--clr-primary);
    box-shadow: 0 0 5px #fff
}

.change-lang .lang:hover a {
    color: #fff
}

.mySwiper {
    padding-inline: 20px;
    padding-bottom: 50px;
}

.mySwiper:hover .swiper-button-next::after,
.mySwiper:hover .swiper-button-prev::after {
    opacity: 1;
}


.swiper-pagination-bullet {
    margin-right: 20px;
    transition: .4s;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 40px;
    border-radius: 3px !important;
    background-color: rgb(0, 18, 68) !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    background-color: rgb(0, 18, 68);
    padding: 30px;
    border-radius: 50%;
    color: white;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    scale: .7;
    font-size: 30px;
    transition: .4s;
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 18, 68);
}

.swiper-button-next {
    right: 20px;
}

.swiper-button-prev {
    left: 20px;
}

@media (width < 500px) {

    .swiper-button-next::after,
    .swiper-button-prev::after {
        opacity: 1 !important;
    }
}

.services-sec-btn {
    width: max-content;
    padding: 20px 60px;
    color: white;
    font-weight: bold;
}

@media (width < 500px) {
    .mean-nav .logo {
        flex-direction: row-reverse !important;
    }

    .mean-bar .mean-nav .logo {
        margin-top: 10px;
    }

    .mean-bar .meanmenu-reveal {
        margin-top: 10px;
        left: 10px !important;
    }

}

.align-arab-right {
    text-align: right !important;
    font-family: cairo, sans-serif !important
}

.align-arab-size {
    font-size: 23px;
    opacity: .9 !important
}

.align-arab-size-1 {
    font-size: 30px !important;
    font-weight: 700 !important
}

.align-arab-size-3 {
    font-size: 18px;
    opacity: .9 !important
}