.hide {
    transform: translateX(-200%);
    animation: goWhat 1s linear forwards
}

.hide.show {
    animation: comeWhat 1s forwards cubic-bezier(.25, 1, .5, 1)
}

.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;
}

@keyframes comeWhat {
    from {
        opacity: 0;
        transform: translateX(-200%)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes goWhat {
    from {
        opacity: 1;
        transform: translateX(0)
    }

    to {
        opacity: 0;
        transform: translateX(200%)
    }
}

img {
    width: 100%
}


#what-we-do {
    background-image: url(../images/main-banner/banner-4.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

: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
}

.f-poppins {
    font-family: Poppins, sans-serif
}

.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
}

#light-dark-mode.hide {
    transform: translateX(50px)
}

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;
    }
}

#slider .banner-content {
    z-index: 5
}

#slider .swiper.banner-swiper {
    height: calc(100vh + 150px)
}

#slider .banner-slide-button {
    z-index: 5
}

#slider .swiper {
    width: 100%;
    height: 100%
}

#slider .swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center
}

#slider .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover
}

#slider .services {
    z-index: 1;
    height: 150px;
    background: linear-gradient(to right, #1b67ff9c, #00e9f1a4)
}

#slider .slider-buttons {
    right: 10%;
    top: 50%;
    transform: translateY(-50%)
}

#slider .slider-buttons span {
    width: 2.2em;
    height: 2.2em;
    background-color: rgba(0, 0, 0, .1);
    transition: .5s
}

#slider .slider-buttons span:hover {
    background-color: rgba(0, 0, 0, .5)
}

@media (width < 1000px) {
    #slider .slider-buttons {
        top: auto;
        bottom: 350px;
        right: 50%;
        transform: translateY(0) translateX(50%)
    }

    #slider .services {
        height: 300px
    }

    #slider .swiper.banner-swiper {
        height: calc(100vh + 300px)
    }

    #slider .swiper-slide>div>div {
        margin-bottom: 300px;
        padding: 20px
    }
}

.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
}

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

#about-us .content-box .icons svg path {
    transition: .5s ease all
}

#about-us .content-box .icons span {
    transform: translateX(-50%) translateY(-50%) scale(0);
    transition: .3s ease all
}

#about-us .content-box .icon-content span:nth-child(1) {
    height: 0;
    transition: .5s ease all
}

#about-us .content-box .icon-content span:nth-child(2) {
    width: 0%;
    transition: .5s ease all
}

#about-us .content-box:hover .icon-content span:nth-child(1) {
    height: 100%
}

#about-us .content-box:hover .icon-content span:nth-child(2) {
    width: 50%
}

#about-us .content-box:hover .icons span {
    transform: translateX(-50%) translateY(-50%) scale(1)
}

#about-us .content-box:hover .icons svg path {
    fill: var(--clr-light)
}

#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)
}

[data-tab-item] {
    cursor: pointer
}

[data-tab-item].active svg path {
    fill: url(#tab-bg)
}

[data-tab-item] i {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(var(--direction, 90deg), var(--clr-primary), var(--clr-secondary))
}

[data-tab-item].active i {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(var(--direction, 90deg), #fff, #fff)
}

.grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    place-items: center
}

.grid-item {
    grid-column: 1/-1;
    grid-row: 1/-1
}

.grid-item.active {
    z-index: 10
}

.testi-control {
    top: -80px;
    right: 0
}

.testi-star {
    right: 40px;
    bottom: 15%
}

@media (width < 1000px) {
    .testi-control {
        bottom: -120%;
        right: 0
    }

    .testi-star {
        right: 15px;
        top: 5px
    }
}

.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)
}

.social-icons-clr :is(i, svgpath) {
    transition: .5s
}

.social-icons-clr:hover :is(i, svgpath) {
    fill: var(--clr-primary);
    color: var(--clr-primary)
}

.social-icons-clr:hover :is(i, svgpath) {
    fill: var(--clr-primary);
    color: var(--clr-primary)
}

.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
}

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

    #banner h1 {
        font-size: 50px !important
    }

    .banner-swiper h1 {
        font-size: 50px !important
    }

    #slider .services {
        height: 180px
    }

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

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

    #slider .swiper.banner-swiper {
        height: 95vh
    }

    #slider .slider-buttons {
        bottom: 200px
    }

    #slider .swiper-slide>div>div {
        margin-bottom: 100px;
        padding: 20px
    }

    .animate__backInUp {
        font-size: 30px
    }

    #slider .services {
        z-index: 1;
        height: 180px;
        background: linear-gradient(to right, #00e9f1a4, #00e9f1a4);
        border-top-left-radius: 30px;
        border-top-right-radius: 30px
    }

    .services h2 {
        font-size: 16px
    }

    .services h6 {
        font-size: 10px !important;
        color: #1a66ff !important;
        transition: .4s
    }

    #slider .services .swiper-slide {
        aspect-ratio: 1/1;
        background: #fff;
        border-radius: 50%;
        box-shadow: 0 3.5px 5px rgba(0, 0, 0, .486);
        scale: .8;
        transition: .4s
    }

    #slider .services .swiper-slide.swiper-slide-active {
        scale: .8;
        background: #1a66ff
    }

    .services .swiper-slide.swiper-slide-active h6 {
        font-size: 10px !important;
        color: #fff !important;
        font-size: 8px !important
    }

    #slider .services .swiper-slide.swiper-slide-active .clr-light {
        color: #fff
    }

    #slider .services .service-slider {
        padding: 12px
    }

    #slider .services .clr-light {
        color: #1a66ff;
        transition: .4s
    }

    #slider .slider-buttons span {
        backdrop-filter: blur(5px)
    }

    .heading-for-site {
        font-size: 20px !important;
        font-weight: 700 !important
    }
}

.mySwiper-1 {
    display: none
}

.mobile-none {
    display: flex !important
}

@media (width < 500px) {
    .mobile-none {
        display: none !important
    }

    .mySwiper-1 {
        display: block;
        padding-top: 130px;
        padding-bottom: 50px;
        padding-left: 10px;
        position: relative
    }

    .mySwiper-1 .icon-content {
        width: 98%;
        background-color: #3ab93e;
        color: #fff;
        background-image: linear-gradient(var(--direction, 90deg), var(--clr-primary), var(--clr-secondary));
        border-radius: 20px
    }

    .mySwiper-1 .page-wrapper {
        position: absolute;
        width: 100%;
        left: 14%;
        top: 5%;
        z-index: 9999999
    }
}

@media (width < 350px) {
    .mySwiper-1 .page-wrapper {
        left: 7%
    }
}

.mySwiper-2 {
    display: none
}

@media (width < 500px) {
    .mySwiper-2 {
        display: block;
        padding-block: 20px
    }

    .mySwiper-2 .swiper-slide {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center
    }
}

.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
}

.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
}