html.trans,
html.trans *,
html.trans *::before,
html.trans *::after {
    transition: all 300ms ease;
    transition-delay: 0;
}

html {
    height: -webkit-fill-available;
}

body {
    font-family: tajawal, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--white-color);
    color: var(--text-color);
    height: -webkit-fill-available;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0 auto;

}

.btn-close {
    background-color: #eeeded;
}

.dropdown-item {
    filter: brightness(1.3);
}

input[type=text],
input[type=number],
input[type=password],
input[type=email] {
    background-color: var(--input-color);
    color: var(--dark-color);
}

textarea {
    background-color: var(--input-color);
    color: var(--dark-color);
}


/* navigatin bar */

nav {
    position: relative;
    width: 100%;
    backdrop-filter: blur(10px);
    background-color: var(--nav-bg);
    z-index: 5;
    top: 0;
    left: 0;
}

nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .5rem 1rem;
}

nav .brand img {
    height: 50px;
    object-fit: cover;
    object-position: center;
    filter: brightness(var(--brightness));
}

nav .nav-items .wrap {
    display: flex;
    align-items: center;
    gap: 2rem;
}

nav .nav-items .wrap a {
    text-decoration: none;
    color: var(--nav-items-color);
    font-size: 16px;
    position: relative;
    transition: all .3s;
}

nav .nav-items .wrap a.active {
    color: #fff;
    font-family: tajawal-700;
}

nav .nav-items .wrap a.active::before {
    transition: all .3s;
    content: '';
    bottom: -10px;
    width: 0%;
    left: 50%;
    height: 5px;
    transform: translateX(-50%);
    background: var(--primary);
    position: absolute;
    border-radius: 5px;
    animation: nav-link-active .3s .2s forwards;
}

nav .dropdown-menu li:hover a {
    color: #111 !important;
}

@keyframes nav-link-active {
    to {
        width: 40%;
    }
}

nav .icons {
    margin-top: .5rem;
}

nav .icons i {
    color: var(--nav-items-color);
    font-size: 18px;
}

.w-fit {
    width: fit-content !important;
}

.btn_mobile_mwnu {
    display: none;
}


nav .checkbox {
    opacity: 0;
    position: absolute;
}

nav .checkbox-label {
    background-color: #111;
    width: 50px;
    height: 26px;
    border-radius: 50px;
    position: relative;
    padding: 5px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .bxs-moon {
    color: #f1c40f;
}

nav .bxs-sun {
    color: #f39c12;
}

nav .checkbox-label .ball {
    background-color: #fff;
    width: 22px;
    height: 22px;
    position: absolute;
    left: 2px;
    top: 2px;
    border-radius: 50%;
    transition: transform 0.2s linear;
}

nav .checkbox:checked+.checkbox-label .ball {
    transform: translateX(24px);
}

@media screen and (max-width: 768px) {

    ::-webkit-scrollbar {
        display: none;
    }


    .btn_mobile_mwnu {
        display: block;
    }

    header nav {
        top: 0;
        left: 0;
        position: fixed;
        width: 100%;
        background-color: var(--nav-mobile-bg);
    }

    .nav-items {
        position: fixed;
        top: 0;
        right: 0;
        background-color: var(--nav-mobile-bg);

        width: 0;
        min-height: 100svh;
        z-index: 10;


        flex-direction: column;
        padding-block: 25%;

        opacity: 0;
        overflow-x: hidden;
        transition: all .3s ease;
    }

    .nav-items i,
    .btn_mobile_mwnu {
        color: var(--dark-li2-color) !important;
    }

    .nav-items.toggle {
        width: 80%;
        opacity: 1;
    }

    nav .container .nav-items .wrap {
        flex-direction: column;
    }

    nav .container .nav-items .wrap a {
        font-size: 22px;
        color: var(--nav-color);
    }

    nav .container .nav-items .icons {
        margin-top: auto;
        gap: 1rem !important;
    }

    nav .container .nav-items .icons i {
        font-size: 32px;
    }

}


/* navigatin bar */

/* main */
/* hero section */
main .hero {
    min-height: 100svh;
    position: relative;
    width: 100%;
    animation: move-slow 180s ease alternate infinite;
    z-index: 4;
}

@keyframes move-slow {
    to {
        background-position: center 0%;
    }
}

.hero::before {
    content: '';
    background: var(--gradient);
    position: absolute;
    z-index: 2;
    min-height: 100%;
    width: 100%;
    opacity: .5;
}

.carousel_wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
}

.carousel_wrap .carousel {
    min-height: 100%;
}

.carousel_wrap .carousel img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: top;
    transition: all 50s !important;
}

.carousel_wrap .carousel .carousel-item.active img {
    object-position: bottom;
}

main .hero .hand_arrow {
    position: absolute;
    z-index: 5;
    left: 36%;
    top: 10%;
    rotate: -40deg;
    scale: .5;
    opacity: 0;
    transform: translateY(500px);
    animation: show_hand_arrow .3s 1s ease forwards;
}

@keyframes show_hand_arrow {
    to {
        transform: translateY(0);
        rotate: -80deg;
        opacity: 1;
    }
}

main .hero-text {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70%;
    margin-top: 2rem;
    backdrop-filter: blur(5px);
}

main .hero .container {
    margin-top: -70px;
    padding-top: 100px;
}

main .hero-text .wrap {
    margin-inline: auto;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
}


main .hero-text img {
    width: 204px;
}

@keyframes fade-up {
    to {
        transform: translate(0);
        opacity: 1;
    }
}

main .hero-text h1 span {
    color: white;
    background-color: var(--secondary);
    font-size: 18px;
    display: inline;
    width: fit-content;
    border-radius: 5px;
    padding: 5px;
}

main .hero-text h1 {
    font-size: 55px;
    font-family: tajawal-700;
    color: white;
}


main .hero-text .line {
    display: block;
    height: 4px;
    width: 200px;
    background: var(--secondary);
}

main .hero-text p {
    margin-top: 1rem;
    color: #fff;
    width: 600px;
}

main .hero-text .buttons {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

main .hero-text .buttons button {
    width: 150px;
    height: 45px;
}

main .hero-text .buttons .btn_show_work {
    display: grid;
    place-content: center;
    background: var(--primary);
}

main .swiper {
    position: relative;
    z-index: 4;
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 4;
    gap: 1rem;
}

main .swiper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

main .swiper .contant {
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 5px solid white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.14);
}

main .swiper .contant h5 {
    width: 100%;
    text-align: center;
    background-color: #FFF;
    padding: .5rem 1rem;
    color: var(--text-color-light);
    font-size: 18px;
    margin: 0;
}

.arrow2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
    flex-grow: 1;
    overflow-y: hidden;
}

.arrow2::before {
    content: '';
    width: 1px;
    height: 100px;
    background: rgba(255, 255, 255, .2);
    left: 50%;
    margin-left: -0.5px;
    bottom: 5%;
    position: absolute;
    -webkit-transition: .5s;
    transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    z-index: 2;
}

.arrow2::before {
    will-change: transform;
    width: 1px;
    background: #fff;
    -webkit-animation-name: b;
    animation-name: b;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: cubic-bezier(.77, 0, .175, 1);
    animation-timing-function: cubic-bezier(.77, 0, .175, 1);
    z-index: 10;
}

@-webkit-keyframes b {
    0% {
        -webkit-transform-origin: 50% 100%;
        transform-origin: 50% 100%;
        -webkit-transform: scaleY(1);
        transform: scaleY(1)
    }

    50% {
        -webkit-transform-origin: 50% 100%;
        transform-origin: 50% 100%;
        -webkit-transform: scaleY(0);
        transform: scaleY(0)
    }

    50.0001% {
        -webkit-transform-origin: 50% 0;
        transform-origin: 50% 0;
        -webkit-transform: scaleY(0);
        transform: scaleY(0)
    }

    to {
        -webkit-transform-origin: 50% 0;
        transform-origin: 50% 0;
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
        -moz-transform: scaleY(1);
        -ms-transform: scaleY(1);
        -o-transform: scaleY(1);
    }
}

@keyframes b {
    0% {
        -webkit-transform-origin: 50% 100%;
        transform-origin: 50% 100%;
        -webkit-transform: scaleY(1);
        transform: scaleY(1)
    }

    50% {
        -webkit-transform-origin: 50% 100%;
        transform-origin: 50% 100%;
        -webkit-transform: scaleY(0);
        transform: scaleY(0)
    }

    50.0001% {
        -webkit-transform-origin: 50% 0;
        transform-origin: 50% 0;
        -webkit-transform: scaleY(0);
        transform: scaleY(0)
    }

    to {
        -webkit-transform-origin: 50% 0;
        transform-origin: 50% 0;
        -webkit-transform: scaleY(1);
        transform: scaleY(1)
    }
}

main .hero .scroll-icon {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    scale: .5;
}

main .hero .scroll-icon .center svg {
    color: gray;
}

main .hero .scroll-icon .center circle {
    color: rgba(255, 255, 255, 1);
}

main .hero .scroll-icon #scroll {
    animation: animateHeight 1.4s linear .3s 4
}

main .hero .scroll-icon #circle--shape {
    animation: animateShape 1.6s ease-in-out infinite
}

@keyframes animateShape {
    50% {
        cy: 100;
        opacity: .1;
    }
}

@keyframes animateHeight {
    70% {
        height: 105px;
    }
}

@media screen and (max-width: 768px) {

    .scroll-down2 {
        display: none;
    }

    main .hero {
        padding-bottom: 3rem;
        /* min-height: fit-content; */
        /* display: grid; */
        /* place-content: center;  */
        min-height: 100vh;
    }


    .hero .container {
        min-height: 100vh;
        flex-direction: column-reverse;
        justify-content: start;
        align-items: start;
    }

    .carousel_wrap .carousel .carousel-item img {
        object-position: left;
        transition: all 50s !important;
        transition-timing-function: linear;
        -webkit-transition: all 50s !important;
        transition-timing-function: linear;
        -webkit-transition-timing-function: linear;
        -moz-transition: all 50s !important;
        -moz-transition-timing-function: linear;
        -o-transition: all 50s !important;
        -o-transition-timing-function: linear;
    }

    .carousel_wrap .carousel .carousel-item.active img {
        object-position: right;
    }

    @keyframes show_hand_arrow {
        to {
            transform: scaleX(-1) translateX(50px);
            opacity: 1;
        }
    }

    .hero .container .hero-text {
        width: 100%;
        display: grid;
        margin: auto;
    }


    .hero .container .hero-text .wrap {
        margin-inline: 1rem;
        margin-top: .5rem;
    }

    .hero .container .hero-text .wrap .lead {
        width: 100%;
        font: 12px;
    }

    .hero .container .hero-text h1 span {
        font-size: 5vw;
    }

    .hero .container .hero-text h1 {
        font-size: 9vw;
        width: 100%
    }

    .hero .container .hero-text .buttons {
        margin-top: 3rem;
        flex-wrap: wrap;
    }

    .hero .container .hero-text .buttons a {
        width: 100%;
        display: block;
    }

    .hero .container .hero-text .buttons a button {
        width: 88%;
    }

    .hero .container .swiper {
        margin-top: 3rem;
        width: 80%;
        scale: .75;

    }

    .hero .container .swiper .contant {
        height: fit-content;
        width: fit-content;

    }


}

@media screen and (max-width: 365px) {
    .hero .container .hero-text {
        margin-top: 3rem;
    }

    .hero .arrow2 {
        display: none;
    }
}


/* hero section */

/* who we are */
main .who {
    background-color: var(--light-color);
    padding-bottom: 5rem;
    position: relative;
    isolation: isolate;
    min-height: 100vh;
    display: block;
}

main .section_title {
    position: relative;
    width: fit-content;
    display: block;
    margin-inline: auto;
    padding-top: 4rem;
    font-family: tajawal-700;
    font-size: 42px;
}

main .section_title::after {
    position: absolute;
    content: '';
    width: 30%;
    height: 5px;
    background-color: var(--primary);
    left: -5px;
    bottom: -11px;
}

main .section_title::before {
    position: absolute;
    content: '';
    width: 5px;
    height: 43%;
    background-color: var(--primary);
    left: -10px;
    bottom: -11px;
}

main .wrap_section_title p {
    margin: 0 auto;
    margin-block: 2rem;
    text-align: center;
    color: var(--text-color);
    width: 50%;
}

main .aboutus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    min-height: 50vh;
    gap: 3rem;
}

main .aboutus .about_img {
    width: 50%;
    height: 40vh;
    border: 15px solid var(--card-color);
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.14);
}

main .aboutus .about_img img {
    padding: 1rem;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

main .aboutus .about_details .mybody {
    margin-top: 2rem;
}

main .aboutus .about_details .mybody h5 {
    font-family: tajawal-700;
    position: relative;
    margin-right: 1rem;
    font-size: 18px;
}

main .aboutus .about_details .mybody h5::before {
    content: '';
    top: 0;
    right: -1rem;
    height: 100%;
    background: var(--primary);
    width: 5px;
    border-radius: 20px;
    position: absolute;
}


main .aboutus .about_details .mybody p,
main .aboutus .about_details .mybody li {
    width: 100%;
    color: var(--text-color);
    font-size: 16px;
    padding-right: 17px;
}

main .who::before {
    content: '';
    background: url(../img/footer-img.png);
    background-repeat: repeat;
    width: 100%;
    height: 150px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    opacity: .1;
    filter: grayscale(1);
    background-position: bottom;
    background-size: contain;
    border: 0;
    outline: 0;
}


@media screen and (max-width: 768px) {


    main .who {
        margin-top: 0rem;
        min-height: fit-content !important;
        display: block !important;
    }

    main .who .container {
        height: 100%;
    }

    main .who::before {
        height: 114px;
    }

    main .who .wrap_section_title p,
    main .wrap_section_title p {
        width: 100%;
    }

    main .aboutus {
        margin-top: 3rem;
        flex-direction: column;
        min-height: 100vh;
        position: static;
    }

    main .aboutus .about_img {
        width: 100%;
    }

    main .aboutus .about_details {
        margin-right: 2rem;
    }

    main .aboutus .about_details .body p,
    main .aboutus .about_details .body li {
        width: 100%;
    }

    main .services_wrap {
        height: fit-content;
        display: block;
        margin-top: 0;
        padding-bottom: 3rem;
    }
}

/* who we are */

main .services_wrap {
    background-color: var(--light-color);
}

main .services {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    position: relative;
    padding-bottom: 3rem;
}

main .services::before {
    content: '';
    position: absolute;
    background: url(../img/bulding-pattern-removebg-preview_upscayl_4x_realesrgan-x4plus.png) no-repeat;
    background-size: cover;
    background-position: center;
    opacity: .031;
    z-index: -1;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

main .services .serv_card {
    display: flex;
    align-items: start;
    justify-content: flex-start;
    flex-direction: column;
    width: 200px;
    min-height: 350px;
    gap: 1rem;
    box-shadow: 0 0 20px var(--shadow-color-li);
    padding: 1rem 1.5rem;
    border-radius: 5px;
    background-color: var(--card-color);
}

main .services .serv_card .serv_title {
    font-family: tajawal-700;
    font-size: 16px;
    margin-top: 1rem;
}

main .services .serv_card .serv_details {
    text-align: right;
    font-size: 16px;
}

main .services .serv_card span {
    margin-top: 1rem;
    width: 55px;
    height: 55px;
    background-color: var(--primary);
    border-radius: 50%;
    display: grid;
    place-content: center;
}

main .services .serv_card span img {
    width: 25px;
    height: 25px;
    filter: brightness(8);
}


/* clients section */

.clients {
    background-color: var(--bg);
    padding-bottom: 5rem;
}

.clients .clients_logo {
    width: 100%;
}

.clients .partners {
    width: 100%;
    padding-block: 1rem;
}

.clients .swiper-slide {
    height: 220px;
    width: 200px;
    background: var(--card-color);
    display: grid;
    place-content: center;
    border-radius: 5px;
    box-shadow: 0 0 10px var(--shadow-color-li);
}

.clients .clients_logo img {
    height: 200px;
    width: 150px;
    object-fit: contain;

}

/* clients section */

/* projects */

main .projects {
    padding: 5rem;
    background-color: var(--bg);
    position: relative;
    isolation: isolate;
}

main .projects::after {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: var(--card-color);
    opacity: .51;

    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 66%);

    z-index: -1;
}

main .projects .cards {
    margin-top: 5rem;
}

main .projects .cards .mycard {
    width: 100%;
    height: 70vh;
    backdrop-filter: blur(10px);
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all .3s;
    position: relative;
}

main .projects .cards .mycard * {
    transition: all .3s;
}

main .projects .cards .mycard:hover {
    box-shadow: 0 0 20px var(--shadow-color-li);
}

main .projects .mycard img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    height: calc(100% - 150px);
    overflow: hidden;
    filter: brightness(.7);
}

main .projects .mycard:hover img {
    transform: scale(1.05) rotate(.5deg);
    filter: brightness(.9);
}

main .projects .mycard .mycard_body {
    /* padding: 1rem; */
    min-height: 150px;
    display: grid;
    place-content: center;
    background-color: var(--card-color);
    padding-block: 2.5rem;
}

main .projects .mycard .title {
    text-align: center;
    font-size: 16px;
}

main .projects .mycard .card_info {
    position: absolute;
    right: -100%;
    text-wrap: nowrap;
    bottom: 25vh;
    background-color: var(--bg);
    padding: 10px;
    transition: all .3s ease;
    overflow-x: hidden;
    font-size: 14px;
}

main .projects .mycard:hover .card_info {
    width: fit-content;
    right: 0;
}

main .projects .mycard .btn_details {
    border: 2px solid var(--dark-color);
    color: var(--dark-color);
    border-radius: 20px;
    width: fit-content;
    display: block;
    margin: 10px auto;
    transition: all .3s ease;
}

main .projects .mycard:hover .btn_details {
    background-color: var(--secondary);
    color: var(--white-color);
    padding-inline: 1.5rem;
    border-color: var(--white-color);
}

@media screen and (max-width: 768px) {
    main .projects {
        padding: 0;
    }

    main .projects .cards .mycard {
        width: 90%;
    }

    main .projects .cards .mycard .details {
        padding: 1rem .5rem;
        overflow: unset;
        min-height: fit-content;
        text-overflow: unset;
        display: block;
        -webkit-line-clamp: unset;
    }

    main .projects .cards .mycard small {
        display: none;
    }
}

/* projects */

main .contactus {
    position: relative;
    isolation: isolate;
    padding-bottom: 5rem;
    background-color: var(--bg);
}

main .contactus::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='100%25' width='100%25'%3E%3Cdefs%3E%3Cpattern id='doodad' width='50' height='50' viewBox='0 0 40 40' patternUnits='userSpaceOnUse' patternTransform='rotate(45)'%3E%3Crect width='100%25' height='100%25' fill='rgba(247, 250, 252,.0)'/%3E%3Ccircle cx='34' cy='20' r='4' fill='rgba(160, 174, 192,1)'/%3E%3Ccircle cx='6' cy='20' r='4' fill='rgba(160, 174, 192,1)'/%3E%3Ccircle cx='20' cy='34' r='4' fill='rgba(160, 174, 192,1)'/%3E%3Ccircle cx='20' cy='6' r='4' fill='rgba(160, 174, 192,1)'/%3E%3Ccircle cx='34' cy='6' r='4' fill='%231a202c'/%3E%3Ccircle cx='6' cy='34' r='4' fill='%231a202c'/%3E%3Ccircle cx='34' cy='34' r='4' fill='%231a202c'/%3E%3Ccircle cx='6' cy='6' r='4' fill='%231a202c'/%3E%3C/pattern%3E%3C/defs%3E%3Crect fill='url(%23doodad)' height='200%25' width='200%25'/%3E%3C/svg%3E ");
    background-size: contain;
    opacity: .04;
    z-index: -1;
}

main .contactus .form_wrap {
    overflow: hidden;
    width: 100%;
    height: fit-content;
    margin: 0 auto;
    margin-top: 5rem;
    border-radius: 10px;
    box-shadow: 0 0 20px var(--shadow-color);
    padding-block: 2rem;
    padding-inline: 2rem;
    background-color: var(--card-color);
}

main .contactus .form_wrap form input,
main .contactus .form_wrap form textarea {
    background-color: var(--bg) !important;
    color: var(--dark-color);
}

main .contactus form label {
    color: var(--text-color-light2);
    font-size: 12px;
}

main .contactus .form_wrap button {
    font-size: 16px;
    color: var(--dark-color);
    border: 2px solid var(--text-color-light2);
    transition: all .3s;
}

main .contactus .form_wrap button i {
    display: none !important;
    font-size: 18px;
    rotate: -40deg;
}

main .contactus .form_wrap button:hover i {
    display: inline-block !important;
}

main .contactus .form_wrap button:hover {
    background-color: var(--secondary);
    padding-inline: 2.5rem;
}

main .contactus .address {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 3rem;
    padding-right: 2rem;
}

main .contactus .address h5 {
    font-size: 16px;
}

main .contactus .address i {
    color: var(--secondary);
}

main .contactus .address p {
    padding-right: 2rem;
    color: var(--text-color-light2);
}

main .contactus svg {
    fill: var(--primary);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    filter: brightness(.7);
}

@media screen and (max-width: 768px) {
    main .contactus .form-img {
        display: none;
    }

    main .contactus .form_wrap {
        height: auto;
        overflow: unset;
        padding: 0 1rem;
        justify-content: start;
        width: 100%;
        gap: 0;
        margin: 0;
    }

    main .contactus .form_wrap form {
        width: 100%;
        height: fit-content;
        padding-block: 1rem;
    }

    main .contactus .buttons {
        margin: 0 auto;
    }
}

/* footer */

footer {
    position: relative;
    background-size: cover;
    background-position: center;
    padding-block: 2rem;
}

footer::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('../img/hero-night.png');
    background-size: cover;
    background-position: right top;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    filter: brightness(0.25);
    z-index: -1;
}


footer .about {
    display: flex;
    flex-direction: column;

}

footer .about img {
    width: 170px;
    opacity: .9;
}

footer .icons i {
    cursor: pointer;
    color: white;
    border: 2px solid white;
    border-radius: 50%;
    padding: 5px;
    transition: all .3s ease-in;
}

footer .icons i:hover {
    background-color: #FFFF;
    color: black;
}

footer .links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

footer .links a {
    text-decoration: none;
    color: white;
}

footer hr {
    color: #fcfcfc;
}

footer .copy-write {
    color: #fcfcfc;
}

footer .subscribe {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

footer .subscrib input {
    background-color: var(--bg);
    color: var(--white-color);
}

footer .subscribe button {
    align-self: flex-start;
    margin-left: 23px;
    border: 2px solid #fcfcfc;
    color: #fcfcfc;
    transition: all .3s ease;
}

footer .subscribe button:hover {
    background-color: #fcfcfc;
    color: #111;
}

.btn-glass {
    outline: none;
    border: none;
    padding: .5rem 1rem;
    background-color: var(--white-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 12px;
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    scale: 1;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: pulse 2s infinite;
    display: grid;
    place-content: center;
    z-index: 10;
}


@keyframes pulse {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 20px rgba(0, 0, 0, .1), 0 0 20px rgba(255, 255, 255, .1);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

.btn_top {
    outline: none;
    border: none;
    padding: .5rem 1rem;
    background-color: var(--white-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 18px;
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    scale: 1;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: grid;
    place-content: center;
    z-index: 4;
}

.btn_top i {
    color: var(--secondary);
}

.copywr {
    background-color: #58256e;
}

#log_modal .modal-body {
    background: var(--bg);
}

#log_modal .modal-body .wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#log_modal .modal-body .wrap .wrap_card {
    background-color: var(--card-color);
    padding: 2rem;
    height: 60vh;
    min-width: 25vw;
    display: flex;
    flex-direction: column;
    justify-content: start;
}

#log_modal .modal-body .wrap .wrap_card input {
    background-color: var(--bg);
    color: var(--text-color);
}

#log_modal .modal-body .wrap .wrap_card button {
    background-color: transparent;
    border: 2px solid var(--text-color);
    color: var(--text-color);
}

#log_modal .modal-body .wrap .wrap_card button:hover {
    background-color: var(--secondary);
}

#log_modal .modal-body .wrap .card_head h5,
#log_modal .modal-body .wrap .card_head p {
    text-align: center;

}

#log_modal .modal-body .wrap .card_head h5 {
    font-family: tajawal-700;
}

#log_modal .modal-body .wrap .card_body label {
    font-family: tajawal-700;
    font-size: 14px;
}

@media screen and (max-width:768px) {
    footer {
        height: fit-content;
        padding-block: 1rem;
    }

    footer .container {
        flex-direction: column;
    }

    footer .container>div {
        width: 100%;
    }

    footer .subscribe,
    footer .links,
    footer .copy-write {
        margin-top: 1rem;
    }

    footer .icons,
    footer .copy-write {
        align-items: center;
        justify-content: center;
        text-align: center;
        margin-inline: auto;

    }


    footer .subscribe input {
        height: 40px;
    }

    footer .subscribe button {
        margin: 0;
    }

    .btn-glass {
        width: 50px;
        height: 50px;
        z-index: 10;
    }

    .btn-glass img {
        height: 45px;
        width: 45px;
    }

    #log_modal .modal-body .wrap {
        align-items: unset;
    }

    #log_modal .modal-body .wrap .wrap_card {
        height: auto;
        width: 90% !important;
        height: 60vh;
        justify-content: space-around;
        margin: 0 auto;
    }
}

/* footer */


/* contact us page */

/* conractus */
.contactus_page {
    background-color: var(--bg);
}

.contactus_page .myform {
    padding-block: 5rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.14);
    height: fit-content;
    overflow: hidden;
    background-color: var(--card-color);
    margin-top: -10vh;
    border-radius: 10px;
}

.contactus_page .myform img {
    object-fit: cover;
    object-position: center;
    filter: brightness(.4) grayscale(10%) hue-rotate(111deg);
    padding-left: 1rem;
    width: 100%;
    aspect-ratio: 1;
    transition: all 50s;
    border-radius: 10px;
}

.contactus_page .myform h1 {
    font-family: tajawal-700;
}

.contactus_page .myform .line {
    height: 5px;
    width: 130px;
    background: var(--gradient);
}

.contactus_page .myform input,
.contactus_page .myform textarea {
    background-color: var(--bg);
    color: var(--text-color);
}

.contactus_page .myform:hover img {
    scale: 1.1;
    filter: brightness(.8) grayscale(1%) hue-rotate(-180deg);
}

.contactus_page .myform button {
    background-color: transparent;
    border: 2px solid var(--text-color);
    color: var(--text-color);
    width: auto;
    transition: all .3s;
}

.contactus_page .myform button:hover {
    background-color: var(--secondary);
}

.contactus_page .myform .form-details {
    padding: 1.5rem 4rem;
}

.contactus_page .myform small {
    font-size: 12px;
}


.contactus_page .myform .form-details label {
    font-family: tajawal-700;
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    .contactus_page .myform img {
        display: none;
    }

    .contactus_page .myform {
        width: 100%;
    }

    .contactus_page .myform .form-details {
        padding-inline: 1rem;
    }

    .contactus_page .myform small {
        color: var(--dark-color);
    }

    .contactus_page .myform .wrap {
        width: 100%;
        flex-direction: column !important;
        align-items: center !important;
    }
}

/* conractus */

/* footer of contact us page */
footer .address label {
    font-family: tajawal-700;
    font-size: 18px;
    margin-top: 1rem;
}

footer .address p {
    font-size: 16px;
    display: inline;
}


/* footer of contact us page */


/* aboutus page */

.full_page_about {
    height: 60vh;
    width: 100%;
    background-color: rgba(0, 0, 0, .7);
    background-image: url(../img/about\ us.jpg);
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    display: flex;
    align-items: center;
    justify-content: center;
}

.full_page_about h1 {
    color: #fff;
    font-family: tajawal-700;
    font-size: 56px !important;
}

.aboutus_info {
    position: relative;
}

.aboutus_info::before,
.our_vision::before {
    top: 0;
    right: 0;

    position: absolute;
    content: '';

    height: 100%;
    width: 100%;

    background: url(../img/constructor_icon-removebg-preview.png) repeat;

    opacity: .05;
    filter: brightness(var(--brightness));
    z-index: -1;
}

.our_message,
.our_vision,
.our_target {
    padding-block: 5rem;
    position: relative;
}

.aboutus_info,
.our_vision {
    background-color: var(--white-color);
}

.our_message,
.our_target {
    background-color: var(--light-color);
}

.our_message .container,
.our_vision .container,
.our_target .container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}


.our_message img,
.our_vision img,
.our_target img {
    height: 400px;
    width: 456px;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
    -webkit-filter: brightness(70%) grayscale(10%);
    filter: brightness(70%) grayscale(10%);
}

.our_vision img {
    object-position: 19%;
}

.our_vision .details {
    padding: 1.5rem 4rem;
}

.our_message .details,
.our_target .details {
    padding-left: 4rem;
    padding-block: 1.5rem;
}

.our_message .image,
.our_target .image {
    padding: 1.5rem 4rem;
}

.our_message .details h5,
.our_vision .details h5,
.our_target .details menu {
    font-family: tajawal-700;
    font-size: 22px;
}

.our_message .details p,
.our_vision .details p,
.our_target .details li {
    text-align: justify;
    line-height: 2.3rem;
}

.about_company_text,
.our_message,
.our_vision {
    font-size: 18px;
    text-align: justify;
    margin-top: 1rem;
}


.our_target li {
    font: 18px;
}

.getintouch_img {
    background-image: url(../img/get\ in\ touch.jpg);
}

@media screen and (max-width: 768px) {
    .full_page_about {
        min-height: 40vh;
        flex-direction: column;
    }

    .aboutus_info .wrap {
        flex-direction: column;
    }

    .aboutus_info .wrap>div {
        width: 100% !important;
        padding: 2rem;
        line-height: 2.7rem;
    }

    .our_message .container,
    .our_vision .container,
    .our_target .container {
        flex-direction: column !important;
        min-height: fit-content;
    }


    .our_message .container>div,
    .our_vision .container>div,
    .our_target .container>div {
        width: 100% !important;
        min-height: fit-content;
    }

    .our_message .container,
    .our_target .container {
        flex-direction: column-reverse !important;
    }

    .container .image {
        padding: 0;
    }

    .our_message .container .details,
    .our_message .container .image img,
    .our_vision .container .details,
    .our_vision .container .image img,
    .our_target .container .details,
    .our_target .container .image img {
        padding: 0;
        padding: 2rem;
        width: 100% !important;

    }

    .our_vision .details,
    .our_target .details,
    .our_target .details {
        height: fit-content !important;
    }

    .our_target .details menu {
        height: fit-content !important;
    }

}

/* aboutus page */
.mycard.animate {
    transition: all .3s ease !important;
}


/* project page */
main .project_cover {
    width: 100%;
    height: 40vh;
    position: relative;
}

main .project_cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(.5);
}

main .project_cover .wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: grid;
    place-content: center;
}


.project_name_active {
    color: var(--secondary);
    display: inline;
}


/* Style the list */
ul.breadcrumb {
    padding: 10px 16px;
    list-style: none;
    display: flex;
    justify-content: center;
}

/* Display list items side by side */
ul.breadcrumb li {
    display: inline;
    font-size: 14px;
}

/* Add a slash symbol (/) before/behind each list item */
ul.breadcrumb li+li:before {
    padding: 8px;
    color: var(--text-color);
    content: "/\00a0";
}

/* Add a color to all links inside the list */
ul.breadcrumb li a {
    color: var(--secondary);
    text-decoration: none;
    transition: all .3s;
}

/* Add a color on mouse-over */
ul.breadcrumb li a:hover {
    color: var(--secondary-li);
    text-decoration: underline;
}

ul.breadcrumb li .current_project {
    color: #FFF;
}

/* project image */
.project_wrap .project_image {
    width: 50%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* project carusel slides */
#bootstrap-gallery-carousel,
#bootstrap-gallery-carousel>div,
#bootstrap-gallery-carousel>div>div,
#bootstrap-gallery-carousel img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    object-position: top center;
}


#bootstrap-gallery-carousel .carousel-item img {
    transition: all 15s 1s;
}

#bootstrap-gallery-carousel .carousel-item.active img {
    object-position: center;
}


.project_wrap .project_specs h6 {
    position: relative;
    padding-bottom: 15px;
}

.project_wrap .project_specs h6::after {
    position: absolute;
    content: '';
    bottom: 0;
    right: 0;
    width: 35%;
    height: 3px;
    border-radius: 5px;
    background-color: var(--secondary);
}

.project_wrap .project_specs_wrap p:nth-of-type(1) {
    font-size: 14px;
}

.project_wrap .project_specs_wrap p:nth-of-type(2) {
    font-size: 13px;
}

/* loadind page */
.loading {
    width: 100vw;
    height: 100vh;
    display: grid;
    background-color: var(--bg);
    place-content: center;
    position: fixed;
    z-index: 100;
}

.loading img {
    height: 100px;
    filter: hue-rotate(20deg) brightness(var(--brightness));

}

/* loadind page */