/*--Font--*/
@import url('https://fonts.googleapis.com/css2?family=Cairo+Play:wght@500;600;700;800&family=Josefin+Sans:ital,wght@0,300;0,700;1,100;1,300;1,500&family=Nosifer&family=Noto+Kufi+Arabic:wght@400;500;600;700;800;900&family=Noto+Sans+Arabic:wght@300;400;500;600;700;800;900&family=Quicksand:wght@300;400;500;600;700&family=Teko:wght@300;400;500;600&display=swap');

* {
    font-family: 'Josefin Sans', sans-serif;
    direction: rtl;
}

/*----Sellection----*/
::selection {
    background: #fff;
    color: #000;
}

/*----------------------------*/
/*-------Animate Points-------*/
/*----------------------------*/
.animate2{
    position: fixed;
    display: flex;
    z-index: 99;
}
.animate2 span{
    position: relative;
    content: "hello";
    width: 1px;
    height: 20px;
    margin: 0 40px;
    color: #fff;
    background: #fff !important;
    /* border: 1px solid #fff; */
    border-radius: 100px;
    animation: animatePoints 5s linear infinite;
    animation-duration: calc(125s / var(--i));
    /* box-shadow: 0 0 0 5px #fff, 
    0 0 10px #fff; */
}

@keyframes animatePoints {
    0%{
        transform: translateY(100vh) scale(1);
    }
    100%{
        transform: translateY(-10vh) scale(0);
    }
}

/*-------------*/
/*---Btn Up-----*/
/*-------------*/
.btnUpTop{
    position: fixed;
    bottom: 50%;
    left: -100px;
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    z-index: 999999999999999999999999999;
    transition: 0.5s ease-in-out;
    border-radius: 50%;
    border: none;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    direction: ltr;
}
.btnUpTop i{
    /* margin-top: 1rem; */
    font-size: 15px;
    animation: up-down 1s  ease-in-out infinite alternate-reverse both;
}
@keyframes up-down {
    0% {
        transform: translateY(15px);
    }
    100% {
        transform:  translateY(5px);
    }
}
.btnUpTop.show{
    opacity: 1;
    visibility: visible;
    left: 18px;
}

/*-------------*/
/*---Icon-Chat---*/
/*-------------*/
.icon-chat{
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    position: fixed;
    bottom: 30%;
    opacity: 0;
    visibility: hidden;
    left: -100px;
    transition: 0.5s ease-in-out;
    z-index: 999999999999999999999999999;
    text-decoration: none;
}
.icon-chat.show{
    opacity: 1;
    visibility: visible;
    left: 18px;
}


/*------------*/
/*---Lins-----*/
/*------------*/
.lins{
    display: flex;
}
@media (max-width:768px) {
    .lins{
        display: none;
    }
}
.div-line, .div-line2, .div-line3, .div-line4{
    position: fixed;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: #424242;
    opacity: 0.5;
    z-index: 1;
    left: 20%;
}
.div-line2{
    left: 40%;
}
.div-line3{
    left: 60%;
}
.div-line4{
    left: 80%;
}
/* .div-line5{
    left: 81.7%;
} */

/*------------------------*/
/*----Cursor // Mouse----*/
/*----------------------*/

/*------Border-------*/
.cursor{
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    border-radius: 50%;
    left: 0;
    top: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: .18s;
    z-index: 20;
}

/*-----DOT-----*/
.cursor2{
    position: fixed;
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
    left: 0;
    top: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: .1s;
    z-index: 20;
}

/*--------------------*/
/*------Navbar--------*/
/*--------------------*/
#nav{
    background: rgb(225, 225, 225, 0.05);
    backdrop-filter: blur(15px);
    padding: 1rem 0.5rem;
}
#nav .container{
    max-width: 1520px;
}
#logo img{
    width: 50px;
}
#logo h2{
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
}
#nav .nav-item{

    position: relative;
    display: inline-block;
    overflow: hidden;
    padding-bottom: 4px;
}
#nav .nav-item:before{
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background-color: hsla(0, 0%, 100%, .5);
    animation: navItem .4s ease forwards;
}
@keyframes navItem {
    
    0% {
        right: 0;
    }
    100% {
        right: 101%;
    }
}
#nav .nav-item:hover:before{
    animation: navItem_before .4s ease forwards;
}
/*-----animation hover before------*/
@keyframes navItem_before {
    0% {
        right: -100%;
    }
    
    100% {
        right: 0;
    }
}
#nav-item{
    color: #fff;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    /* font-size: 17px; */
    font-weight: 600;
    letter-spacing: 2px;
    margin-left: 0.5rem;
    display: flex;
    opacity: 0;
    font-size: clamp(1.5rem + 0.75rem);
}
#nav-item {
    animation: animation-navitem 1s ease forwards;
    animation-delay: 1.2s;
}
@keyframes animation-navitem {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
   
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.language {
    font-size: 13px;
    line-height: 150%;
    letter-spacing: -.143px;
    text-transform: uppercase;
    display: flex;
    gap: 24px;
    border-right: 1px solid #fff;
    padding: 0 32px 0 75px;
    height: 16px;
    color: #ffffffb3;
    font-weight: 700;
    opacity: 0;
}
.language a{
    text-decoration: none;
    color: #ffffffb3;
    transition: 0.3s;
}
.language a:hover{
    text-decoration: none;
    color: #fff;
}
.language .english{
    color: #fff;
    font-weight: 700;
}
.language.animation-language {
    animation: animation-language 1s ease forwards;
    animation-delay: 1.2s;
}
@keyframes animation-language {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
   
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
#btn-toggle{
    color: #fff;
    border: none;
}

/*--------------------*/
/*--------Home--------*/
/*--------------------*/

.FullScreen-home{
    width: 100%;
    height: 100vh;
}
.FullScreenVideo {
    display: flex;
    position: relative;
}
.FullScreenVideo::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0, 0.2);
}

.FullScreen-home video {
    height: 100vh;
    width: 100%;
    object-fit: cover;
    z-index: 9;
}
.loop-scroll {
    position: absolute;
    bottom: 0;
    left: 50%;
    background: #ffffff56;
    transform: translateX(-50%);
    height: 64px;
    z-index: 30;
    width: 1px;
}
.loop-scroll:after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    background: #fff;
    border-radius: 10%;
    height: 64px;
    width: 2px;
    transform: translateX(-25%);
    animation: loop-scroll 3s ease-in infinite;
}

@keyframes loop-scroll {
    0% {
        top: 0;
        height: 0%;
    }
    50% {
        top: 0;
        height: 100%;
    }
    51% {
        top: 1%;
        height: 63px;
    }
    100% {
        top: 64px;
        height: 0;
    }
}

/*--------------------*/
/*------About Us------*/
/*--------------------*/

.about {
    position: relative;
    min-height: 100vh;
    text-align: right;
}
.about-video {
    position: absolute;
    inset: 0;
    z-index: -1;
}
.about-video video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.container {
    height: 100%;
    width: 100%;
    max-width: 1510px;
    margin: 0 auto;
    padding: 0 15px;
    background: transparent;
}
.about-content {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.about-items {
    max-width: 816px;
    padding: 20px 0;
    opacity: 0;
    animation: FullSection_video .4s ease forwards;
}
@keyframes FullSection_video {
    0% {
        opacity: 0;
        transform: translateY(20%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-items .title{
    font-size: 80px;
    font-weight: 400;
    line-height: 125%;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    z-index: 9;
    color: #fff;
}
.description {
    color: hsla(0, 0%, 100%, .85);
    font-size: 20px;
    line-height: 135%;
    letter-spacing: .8px;
    text-transform: uppercase;
}
.p-about {
    font-size: 20px;
    color: hsla(0,0%,100%,.7);
    line-height: 160%;
    letter-spacing: .6px;
    margin-top: 36px;
    margin-bottom: 48px;
}
.btn-item {
    height: 80px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: .32px;
    font-size: 16px;
    color: #fff;
}
.btn-about {
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding-bottom: 4px;
}
.btn-about:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background-color: hsla(0, 0%, 100%, .5);
    animation: animationbtn .4s ease forwards;
}
@keyframes animationbtn {
    0% {
        right: -100%;
    }
    100% {
        right: 0;
    }
}
.btn-about:hover:before {
    animation: animationBefore_btn .4s ease forwards;
}

@keyframes animationBefore_btn {
    0% {
        right: 0;
    }
    100% {
        right: 100%;
    }
}


/*---------------*/
/*----WHY US----*/
/*---------------*/
#whyus{
    padding: 4rem 0;
    z-index: 9;
    background: #121b1d;
}
#whyus .container{
    max-width: 1320px;
}
#col-whyus{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
#col-whyus h2{
    font-size: 35px;
    font-weight: 700;
    color: #fff;
    z-index: 9;
}
#col-whyus h2 b{
    font-weight: 800;
    font-size: 38px;
    color: #229979;
}
#col-whyus p{
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 4rem;
    z-index: 9;
} 
#col-whyus p span{
    display: block;
}
#whyus-card{
    padding: 1rem;
    background: transparent;
    border: none;
    /* box-shadow: 0px 0px 14px -2px #693bff; */
    cursor: pointer;
    transition: 0.4s;
    border-radius: 0;
    margin-bottom: 2rem;
    z-index: 9;
}
#whyus-card:hover{
    background: #4141413f;
    padding: 0 1rem 2rem;
}
#whyus-card-body{
    flex: 1 1 auto;
    min-height: 1px;
    padding: 1.25rem 1.25rem 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: right;
    transition: 0.5s;
}
#whyus-card-body #number{
    -webkit-text-stroke-color: #818181;
    -webkit-text-stroke-width: 1px;
    font-size: 70px;
    font-weight: 700;
    line-height: 78px;
}
#whyus-card-body h3{
    color: #fff;
    font-size: 23px;
    font-weight: 700;
}
#whyus-card-body p{
    font-size: 15px;
    font-weight: 400;
    color: #fff;
}
#whyus-card:hover h2{
    color: #fff;
}

/*--------------*/
/*----Servises---*/
/*--------------*/
#servises{
    background: #121b1d;
    padding: 6rem 0;
}
#servises .container{
    max-width: 1320px;
}
#col-servises{
    text-align: right;
}
#col-servises h2{
    font-size: 35px;
    font-weight: 700;
    color: #ffffff;
    z-index: 9;
}
#col-servises h2 b{
    font-weight: 800;
    font-size: 38px;
    color: #229979;
}
#col-servises p{
    color: #ffffff;
    font-size: 30px;
    /* font-weight: 300; */
    margin-bottom: 4rem;
    z-index: 9;
} 
#col-servises p span{
    display: block;
}
#servises a{
    text-decoration: none;
}
#servises-card{
    background: transparent;
    border: none;
    border-radius: 0;
    position: relative;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    z-index: 9;
}
.dinamic-servises{
    position: absolute;
    padding-right: 1rem;
    margin-top: 2rem;
    width: 97%;
    height: 10%;
    background: rgb(0, 0, 0, 0.6);
    color: #fff;
    font-size: 25px;
    text-align: right;
    display: flex;
    justify-content: center;
    flex-direction: column;
    transition: 0.4s;
    z-index: 10;
}
#servises a:hover .dinamic-servises{
    padding-right: 2rem;
    color: #229979;
    background: #171717;
}
#topimg {
    overflow: hidden;
    box-sizing: border-box;
}
#topimg img{
    width: 100%;
    height: auto;
    transition: all ease-in-out 0.4s;
    vertical-align: middle;
}
#servises-card:hover img{
    transform: scale(1.1);
}
#border{
    position: absolute; 
    border: 1px solid #229979;
    transition: 0.4s;
    width: 90%;
    height: 90%;
    margin: 12px 12px 0px 0px;
}
#servises-card:hover #border{
    border:  1px solid#fff;
    height: 95%;
}
#cardbody-servises{
    color: #fff;
    padding: 3rem 1.5rem;
    text-align: right;
}


/*-----------------*/
/*----Portfolio----*/
/*-----------------*/

#portfolio{
    background: #121b1d;
}
#portfolio .container{
    max-width: 1420px;
}
#col-portfolio{
    text-align: right;
}
#col-portfolio h2{
    font-size: 35px;
    font-weight: 700;
    color: #ffffff;
    z-index: 9;
}
#col-portfolio h2 b{
    font-weight: 800;
    font-size: 38px;
    color: #229979;
}
#col-portfolio p{
    color: #ffffff;
    font-size: 30px;
    font-weight: 300;
    margin-bottom: 4rem;
    z-index: 9;
} 
#col-portfolio p span{
    display: block;
}
#portfolio a{
    text-decoration: none;
}
#card {
    position: relative;
    margin-bottom: 2rem;
    z-index: 9;
}
.img-top {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
}
.img-top:after {
    position: absolute;
    z-index: 2;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 30%;
    content: "";
    background: linear-gradient(0deg, #1f1f1f -.65%, rgba(31, 31, 31, .11) 51.22%);
}
.img-portfolio {
    display: inherit;
    position: relative;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: opacity .5s ease-out, transform .8s ease;
}
#card:hover .img-portfolio{
    transform: scale(1.05);
}
#portfolio .title-item {
    position: absolute;
    display: flex;
    width: 100%;
    height: auto;
    justify-content: space-between;
    align-items: center;
    padding: 0 32px;
    bottom: 8%;
    transform: translateY(50%);
    z-index: 3;
    transition: padding .8s ease;
}
#portfolio .title-item #title-place{
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    /* line-height: 125%; */
    /* letter-spacing: .72px; */
}
#card:hover .title-item{
    padding: 0 15px;
}
.descreption-place {
    position: relative;
    min-height: 136px;
    padding: 10px 32px;
    text-align: right;
    z-index: 5;
    color: #fff;
    font-size: 20px;
    line-height: 125%;
    letter-spacing: .96px;
    text-transform: uppercase;
}
.logo-back {
    position: absolute;
    right: 12px;
    top: 0;
    z-index: 1;
}

/*---------------*/
/*-----Advantages-----*/
/*---------------*/
#advantages{
    background: #121b1d;
    padding: 6rem 0;
    text-align: right;
}
#advantages .row,
#advantages .col-md-5{
    margin: 0;
    padding: 0;
    z-index: 2;
}
#advantages-img{
    width: 100%;
    height: 100%;
    z-index: 9;
}
#advantages h5{
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    z-index: 9;
}
#advantages h5 b{
    font-weight: 800;
    font-size: 33px;
    color: #229979;
}
#advantages p{
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 2rem;
    z-index: 9;
}
#advantages p i{
    color: #229979;
    margin-left: 1rem;
}

/*------------------*/
/*-----Contact------*/
/*------------------*/
#contact{
    background: #121b1d;
    padding: 7rem 0;
    position: relative;
    z-index: 9;
}
#title-contact{
    font-size: 75px;
    font-weight: bold;
    line-height: 1.2em;
    white-space: normal;
    color: #fff;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    z-index: 9;
}
#title-contact span{
    display: block;
}
#title-form-contact{
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}
#col-input-contact{
    padding: 20px 10px 15px 20px;
    border: 1px solid #343434;
    text-align: right;
    border-bottom: none;
}
.lable-contact {
    margin-bottom: 0;
    position: relative;
    margin: 0;
    color: #858a8a;
    font-size: 15px;
    font-weight: 400;
}
#input-contact{
    color: #BAB6B6;
    font-size: 18px;
    font-weight: 600;
    height: 40px;
    border: 0;
    border-radius: 0;
    display: flex;
    width: 100%;
    position: relative;
    background: 0 0;
    align-items: center;
    transition: all .3s;
    padding: 0.5rem 0.75rem 0.5rem 0;
    text-align: right;
}
#input-contact:focus{
    box-shadow: none;
}
#input-contact::placeholder{
    color: #BAB6B6;
}

#col-textarea-contact{
    padding: 20px 10px 15px 20px;
    text-align: right;
    border: 1px solid #343434;
}
#textarea-contact{
    color: #BAB6B6;
    font-size: 18px;
    font-weight: 600;
    border: 0;
    border-radius: 0;
    display: flex;
    width: 100%;
    position: relative;
    background: 0 0;
    align-items: center;
    transition: all .3s;
    text-align: left;
    text-align: right;
    padding: 0.5rem 0.75rem 0.5rem 0;
}
#textarea-contact:focus{
    box-shadow: none;
}
#textarea-contact::placeholder{
    color: #BAB6B6;
}

#form-check{
    direction: ltr;
}
#check-input-contact{
    width: 17px;
    height: 17px;
    cursor: pointer;
}
#check-contact{
    color: #BAB6B6;
    margin-bottom: 15px;
    cursor: pointer;
    margin-right: 1.5rem;
}
#btn-contact{
    background: #229979;
    color: #fff;
    overflow: hidden;
    transition: 0.3s cubic-bezier(.22,.665,.34,.875);
    border-radius: 0;
    border: 0;
    position: relative;
    z-index: 9;
    margin-top: 2rem;
}
#btn-contact:hover{
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
}
#btn-contact span{
    margin: -0.5px;
    padding: 1.3em 2.7em;
    display: inline-flex;
    border-radius: inherit;
    border-color: inherit;
    transition: 0.3s cubic-bezier(.22,.665,.34,.875);
    align-items: center;
    font-size: 19px;
    font-weight: 600;
}
#btn-contact:hover span{
    padding: 1.1em 2.7em 1.5em;
}



/*-------------------*/
/*------Footer-------*/
/*-------------------*/
#footer{
    background: #0b1415;
    padding: 6rem 0;
    text-align: right;
    position: relative;
}
#footer .container{
    max-width: 1420px;
}
#h-talk-footer{
    font-size: 40px;
    font-weight: 700;
    text-decoration: underline;
    color: #fff;
    z-index: 10;
}
#rotate-footer{
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: start;
}
@media (min-width: 768px){
    #rotate-footer{
        writing-mode: vertical-rl;
        transform: rotate(180deg);
        display: block;
    }
}
@media (max-width: 768px){
    #rotate-footer{
        display: none;
    }
}

#p-footer{
    color: #858a8a;
    margin-bottom: 35px !important;
    line-height: 1.3em;
    font-size: 18px;
    font-weight: 600;
}
#btn-footer{
    background: #229979;
    color: #fff;
    overflow: hidden;
    transition: 0.3s cubic-bezier(.22,.665,.34,.875);
    border-radius: 0;
    border: 0;
    position: relative;
    z-index: 9;
}
#btn-footer:hover{
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
}
#btn-footer span{
    margin: -0.5px;
    padding: 1.3em 2.7em;
    display: inline-flex;
    border-radius: inherit;
    border-color: inherit;
    transition: 0.3s cubic-bezier(.22,.665,.34,.875);
    align-items: center;
    font-size: 19px;
    font-weight: 600;
}
#btn-footer:hover span{
    padding: 1.1em 2.7em 1.5em;
}

#footer-links-box{
    border-top: 1px solid rgba(255, 255, 255, 0.07) !important;
    padding-top: 40px;
}
#h-footer-link{
    margin-bottom: 2.15em !important;
    letter-spacing: 1px;
    font-size: 14px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    line-height: 1.4em;
}
#footer-list{
    margin: 0;
    padding: 0;
    list-style: none;
}
#footer-list li{
    margin-bottom: 5px;
    width: 100%;
    display: flex;
    position: relative;
    flex-wrap: wrap;
    align-items: center;
}
#footer-list li a{
    color: #858a8a;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: 0.5s;
}
#footer-list li a:hover{
    color: #fff;
    padding-right: 10px;
    font-weight: 600;
    transform: scale(1.05);
}
#footer-links-box h3{
    margin-bottom: 2.5em !important;
    letter-spacing: 1px;
    font-size: 15px;
    font-weight: 700;
    color: #858a8a;
    line-height: 1.4em;
}
#footer-links-box p{
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 2rem;
}
#footer .social-icon-footer{
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 1rem 0;
}
#footer .social-icon-footer a{
    text-decoration: none;
    color: #858a8a;
    font-size: 25px;
    font-weight: 700;
    transition: 0.7s;
    margin-right: 1rem;
    padding: 0;
    position: relative;
    z-index: 9;
}
#footer .social-icon-footer a:hover{
    color: #fff;
    transform: scale(1.05) rotate(360deg);
}



/*--------------------*/
/*---Portfoilo Page---*/
/*--------------------*/

.FullScreen-portfolio{
    width: 100%;
    height: 100vh;
}
.FullScreenVideo-Portfolio-page {
    display: flex;
    position: relative;
}
.FullScreenVideo-Portfolio-page::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0, 0.2);
}

.FullScreen-portfolio video {
    height: 100vh;
    width: 100%;
    object-fit: cover;
    z-index: 9;
}
.PortfolioIndexHead_overlay__eCVPq {
    background: linear-gradient(1turn, #121b1d, rgba(31, 31, 31, 0) 700px);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
}
.loop-scroll-portfolio-page {
    position: absolute;
    bottom: 0;
    left: 50%;
    background: #ffffff56;
    transform: translateX(-50%);
    height: 64px;
    z-index: 9;
    width: 1px;
}
.loop-scroll-portfolio-page:after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    background: #fff;
    border-radius: 10%;
    height: 64px;
    width: 2px;
    transform: translateX(-25%);
    animation: loop-scroll-portfolio 3s ease-in infinite;
}

@keyframes loop-scroll-portfolio {
    0% {
        top: 0;
        height: 0%;
    }
    50% {
        top: 0;
        height: 100%;
    }
    51% {
        top: 1%;
        height: 63px;
    }
    100% {
        top: 64px;
        height: 0;
    }
}
.title-page{
    position: absolute;
    bottom: 10%;
    right: 10%;
    z-index: 15;
    text-align: right;
}
#title-portfolio-page{
    color: #fff;
    margin-bottom: 20px;
    font-size: 40px;
    font-style: normal;
    font-weight: bold;
    line-height: 125%;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

/*----------------------------*/
/*-------portfolio option Start-------*/
/*----------------------------*/
#nav-tab{
    border: 0;
}
#btn-tabs{
    display: flex;
    justify-content: center;
    align-items: center;
    
}
#btn-tab{
    background: transparent;
    padding: 10px 10px 0;
    color: #ffffff9a;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    transition: 0.5s;
    margin: 0.25rem;
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-bottom: 1px solid transparent;
}
#btn-tab:before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background-color: #ffffff80;
    animation: btn-tab .4s ease forwards;
}
@keyframes btn-tab {
    
    0% {
        left: 0;
    }
    100% {
        left: 101%;
    }
}
#btn-tab:hover:before{
    animation: btn-tab_before .4s ease forwards;
}
/*-----animation hover before------*/
@keyframes btn-tab_before {
    0% {
        left: -100%;
    }
    
    100% {
        left: 0;
    }
}
#btn-tab.active{
    color: #fff;
    border-bottom: 1px solid #ffffff80;
    font-weight: 600;
    transition: 0.4s;
}
#nav-tabContent{
    padding-top: 3rem;
    background: #121b1d;

}

/*-------------------*/
/*----Servises Page-----*/
/*-------------------*/
#servises-title-section{
    background: url(../img/blog_header.png) center center/cover no-repeat fixed;
    position: relative;
    height: 80vh;
}
#servises-title-section::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(1turn, #121b1d, rgba(31, 31, 31, 0) 700px);
}
#servises-title-section *{
    z-index: 1;
}
#servises-title-section #title-servises-page{
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    position: absolute;
    bottom: 10%;
    right: 10%;
    text-align: right;
}

#servises-page{
    padding: 4rem 0;
    background: #0b1415;
    text-align: right;
}
#servises-page .container{
    max-width: 1420px;
}
#servises-page h2{
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 0.75rem;
    z-index: 10;
    position: relative;
}
#servises-page p{
    color: #858a8a;
    font-size: 20px;
    font-weight: lighter;
    margin-bottom: 2rem;
    z-index: 10;
}

#h2-servises{
    color: #fff;
    font-size: 40px;
    font-weight: lighter;
    margin-bottom: 0.75rem;
}

/*-------------------*/
/*----Servises Page-----*/
/*-------------------*/
#blogs-title-section{
    background: url(../img/blog_header.png) center/cover no-repeat;
    background-position: 50%;
    position: relative;
    height: 80vh;
}
#blogs-title-section::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(1turn, #121b1d, rgba(31, 31, 31, 0) 700px);
}
#blogs-title-section *{
    z-index: 1;
}
#title-blog-pages{
    position: absolute;
    bottom: 10%;
    right: 10%;
    text-align: right;
}
#title-blogs-page{
    color: #fff;
    font-size: 50px;
    font-weight: bold;
}
#title-articles{
    color: #ffffffc4;
    font-size: 25px;
    /* font-weight: 600; */
}

#blogs{
    background: #121b1d;
    padding: 4rem 0;
}
#blogs .container{
    max-width: 1420px;
}
#card-blogs{
    border: 0;
    background: #0b1415;
    border-radius: 0;
    margin-bottom: 2rem;
}
#img-blogs{
    overflow: hidden;
}
#img-blogs img{
    width: 100%;
    transition: 1s;
}
#card-blogs:hover img{
    transform: scale(1.06);
}
#cardbody-blogs p{
    color: #ffffffc4;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: right;
}
#cardbody-blogs h2{
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-align: right;
    margin-bottom: 1rem;
}
#btn-blog{
    text-decoration: none;
    text-align: right;
    display: flex;
    justify-content: end;
    color: #ffffffc4;
    transition: 0.3s;
}
#btn-blog:hover{
    color: #fff;
}


/*-------------------*/
/*----BLOgdetailes Page-----*/
/*-------------------*/
#blogs-title-detailes{
    background: url(../img/blog_header.png) center/cover no-repeat;
    background-position: 50%;
    position: relative;
    height: 100vh;
}
#blogs-title-detailes::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(1turn, #121b1d, rgba(31, 31, 31, 0) 700px);
}
#blogs-title-detailes *{
    z-index: 1;
}
#title-blogDetailes-pages{
    position: absolute;
    bottom: 10%;
    left: 10%;
}
#title-blogDetailes-page{
    color: #fff;
    font-size: 40px;
    font-weight: bold;
}
#BlogItemHead{
    width: 100%;
    overflow-x: hidden;
    background: #0b1415;
    padding: 3rem 0;    
}
#BlogItemHead .container{
    max-width: 1420px;
}
#BlogItemHead h2{
    color: #fff;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 3rem;
}
#BlogItemHead p{
    color: #ffffffc4;
    font-size: 20px;
    letter-spacing: 1px;
}
#BlogsContent{
    background: #1f1f1f;
    padding: 4rem 0;
}
#BlogsContent .container{
    max-width: 1420px;
}
#BlogsContent h2{
    margin-bottom: 2rem;
    font-size: 23;
    font-weight: 600;
    color: #fff;
    position: relative;
    z-index: 9;
}
#BlogsContent p{
    margin-bottom: 2rem;
    font-size: 20px;
    color: #fff;
}
#BlogsContent img{
    width: 100%;
}


/*-------------------*/
/*------About page-------*/
/*-------------------*/
/* About */
/*------Some words speak for us------*/
#about-page{
    background-color: #121b1d;
}

#about-page video#vid-main {
    position: fixed;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100vh;
    filter: saturate(0.1) brightness(0.5);
    opacity: 0;
    animation: fade-in both linear, fade-out both linear;
    animation-timeline: --section;
    animation-range: entry 10% entry 15%, exit 10% exit 15%;
}

@media(max-width: 462px){
    #about-page video#vid-main{
        display: none;
    }
}

@keyframes fade-in {
    to {
        opacity: 0.2;
    }
}

@keyframes fade-out {
    to {
        opacity: 0;
    }
}

#about-page section {
    position: relative;
    min-height: 100vh;
    display: grid;
    place-items: center;
    view-timeline: --section;
}

#about-page section:nth-of-type(1) {
    height: 100vh;
}

#about-page section:nth-of-type(2) {
    height: 140vh;
}

#about-page section:nth-of-type(3) {
    height: 200vh;
}

#about-page h1 {
    display: grid;
}

#about-page :is(h1, h2) {
    font-size: clamp(2.5rem, 7vw + 1rem, 10rem);
    text-align: center;
    line-height: 1;
    position: fixed;
    top: 50%;
    left: 50%;
    margin: 0;
    translate: -50% -50%;
    width: 100%;
}

#about-page p span {
    opacity: 0.15;
    animation: highlight both ease-in-out;
    animation-timeline: view();
    color: white;
    font-weight: 600;
}

@keyframes highlight {
    50% {
        opacity: 1;
    }
}

#about-page p span:nth-of-type(1) {
    animation-range: cover 10% cover 45%;
}

#about-page p span:nth-of-type(2) {
    animation-range: cover 30% cover 60%;
}

#about-page p span:nth-of-type(3) {
    animation-range: cover 45% cover 85%;
}

#about-page p span:nth-of-type(4) {
    animation-range: cover 75% cover 120%;
}

#logo-about {
    display: inline-block;
    animation: fade-away both linear;
    animation-timeline: --section;
    animation-range: exit 20% exit 90%;
    font-weight: 700;
}

#title-about-page {
    display: inline-block;
    animation: scale-up both cubic-bezier(.1, .7, .9, 1.3), fade-away both linear;
    animation-timeline: --section;
    animation-range: exit 0% exit 100%, exit 50% exit 90%;
    font-weight: 700;
    color: white;
}

@keyframes scale-up {
    to {
        scale: 1.5;
    }
}
#title-about{
    position: relative;
    z-index: 9;
}
#about-page h2 {
    animation: grow both ease-in, fade-away both linear;
    animation-timeline: --section;
    animation-range: exit-crossing -10% exit-crossing 10%, exit 0% exit 50%;
    color: white;
    font-weight: 700;
}

#logo-about {
    color: #ffffffc4;
    font-size: 0.35em;
}

@keyframes grow {
    0% {
        scale: 0.5;
        opacity: 0;
    }
}

@keyframes fade-away {
    100% {
        opacity: 0;
    }
}

#about-page h2 {
    font-size: clamp(2rem, 5vw + 1rem, 6rem);
    text-align: center;
}

#about-page p {
    font-size: clamp(1.625rem, 3vw + 1rem, 8rem);
    letter-spacing: 0;
    line-height: 1;
}

#about-page .section__content {
    width: 800px;
    max-width: 100vw;
    padding: 0 1rem;
}

/* experience */
#experience{
    text-align: right;
}
#experience #text {
    position: relative;
    min-height: 25vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10vh 0;
    margin-bottom: 5vh;
    z-index: 1;
}
#experience #text1 {
    height: 100%;
    width: 100%;
    max-width: 1510px;
    margin: 0 auto;
    padding: 0 15px;
}
@media (max-width: 1600px){
    #experience #text1 {
        padding: 0 75px;
    }
}
#experience #text2 {
    display: flex;
    flex-direction: column;
    max-width: 750px;
    gap: 32px;
}
#experience #text2 span:first-of-type {
    font-size: clamp(1.625rem, 3vw + 1rem, 8rem);
    line-height: 125%;
    letter-spacing: 1.68px;
    text-transform: uppercase;
    color: white;
    font-weight: 600;
}
#experience #text2 span:last-of-type{
    font-size: 28px;
    line-height: 160%;
    letter-spacing: .84px;
    color: white;
}
#experience #box {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}
#experience #box #all {
    height: 100vh;
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
}
#experience #box #all img {
    filter: brightness(.5);
}
#experience #box #all img {
    display: inherit;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    left: 0;
    top: 0;
    transition: filter 3s ease;
}
#experience #box #all #content{
    position: absolute;
    height: 100%;
    width: 100%;
    max-width: 1510px;
    top: 0;
    padding: 0 10%;
    transition: transform .3s ease;
}
@media (max-width: 1600px) {
    #experience #box #all #content {
        padding: 0 75px;
    }
}
#experience #box #content1 {
    opacity: 1;
    transition: opacity 1s ease, transform 1s ease;
    transform: translateY(-50%);
}
#experience #box #content1 {
    position: absolute;
    top: 52%;
    display: inline-flex;
    flex-direction: column;
    gap: 32px;
    max-width: 750px;
    /* opacity: 0; */
    color: white;
}
#experience #box #content2 {
    display: inline;
    font-size: clamp(1.625rem, 3vw + 1rem, 8rem);
    line-height: 125%;
    letter-spacing: 1.68px;
    text-transform: uppercase;
    font-weight: 600;
}
#experience #box #content3 {
    display: inline;
    font-size: 28px;
    line-height: 160%;
    letter-spacing: .84px;
}


/*-------------------*/
/*----project Page-----*/
/*-------------------*/
#project-title-section{
    background: url(../img/blog_header.png) center center/cover no-repeat fixed;
    position: relative;
    height: 80vh;
}
#project-title-section::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(1turn, #121b1d, rgba(31, 31, 31, 0) 700px);
}
#project-title-section *{
    z-index: 1;
}
#project-title-section #title-project-page{
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    position: absolute;
    bottom: 10%;
    right: 10%;
    text-align: right;
}


/*---------------*/
/*----gallery Page----*/
/*---------------*/
#gallery{
    padding: 4rem 0 0;
    background: #0b1415;
}
#col-gallery{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
#col-gallery h2{
    font-size: 35px;
    font-weight: 700;
    font-family: 'Lobster', sans-serif;
    color: #fff;
    margin-bottom: 2rem;
    position: relative;
    z-index: 9;
}
#col-gallery h2 b{
    font-weight: 800;
    font-size: 38px;
    color: #229979;
}
#gallery .col-md-3{
    padding: 0;
    margin: 0;
    border: 1px solid transparent;
    overflow: hidden;
}
#gallery img{
    width: 100%;
    transition: 0.5s;
    position: relative;
    z-index: 9;
}
#gallery img:hover{
    transform: scale(1.1);
}



/*------------------*/
/*-----login------*/
/*------------------*/
#login{
    background: #121b1d;
    padding: 10rem 0;
    position: relative;
    z-index: 9;
}
#title-login{
    font-size: 75px;
    font-weight: bold;
    line-height: 1.2em;
    white-space: normal;
    color: #fff;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    z-index: 9;
}
#title-login span{
    display: block;
}
#title-form-login{
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}
#col-input-login{
    padding: 20px 10px 15px 20px;
    border: 1px solid #343434;
    border-bottom: none;
}
#col-input-login-3{
    padding: 20px 10px 15px 20px;
    border: 1px solid #343434;
}
.lable-login {
    margin-bottom: 0;
    position: relative;
    margin: 0;
    color: #858a8a;
    font-size: 15px;
    font-weight: 400;
}
#input-login{
    color: #BAB6B6;
    font-size: 18px;
    font-weight: 600;
    height: 40px;
    border: 0;
    border-radius: 0;
    display: flex;
    width: 100%;
    position: relative;
    background: 0 0;
    align-items: center;
    transition: all .3s;
    padding: 0.5rem 0.75rem 0.5rem 0;
}
#input-login:focus{
    box-shadow: none;
}
#input-login::placeholder{
    color: #BAB6B6;
}

#check-input-login{
    width: 17px;
    height: 17px;
    cursor: pointer;
}
#check-login{
    color: #BAB6B6;
    margin-bottom: 15px;
    cursor: pointer;
}

#btn-login{
    background: #229979;
    color: #fff;
    overflow: hidden;
    transition: 0.3s cubic-bezier(.22,.665,.34,.875);
    border-radius: 0;
    border: 0;
    position: relative;
    z-index: 9;
}
#btn-login:hover{
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
}
#btn-login span{
    margin: -0.5px;
    padding: 1.3em 2.7em;
    display: inline-flex;
    border-radius: inherit;
    border-color: inherit;
    transition: 0.3s cubic-bezier(.22,.665,.34,.875);
    align-items: center;
    font-size: 19px;
    font-weight: 600;
}
#btn-login:hover span{
    padding: 1.1em 2.7em 1.5em;
}

