/* ==============home-page-item============== */
.home-container {
    position: relative;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    overflow: hidden;
}

.home-title {
    position: relative;
    width: 100%;
    height: 100vh;
    margin: 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(-10deg,  #6f00ff 25%, #2c0061 25%);
}

.home-jahantarh-logo {
    position: absolute;
    width: 600px;
    height: 500px;
    margin: auto;
    right: 0;
    background: url(../image/home-img.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    animation: loadHomeLogo 1s;
    animation-delay: .5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes loadHomeLogo {
    0% {
        right: -20%;
        opacity: 0;
    }
    50% {
        right: 0;
        opacity: 0;
    }
    100% {
        right: 10%;
        opacity: 1;
    }
}

.home-page-logo-shape {
    position: absolute;
    width: 30%;
    height: 60%;
    /*background: linear-gradient(-45deg, #410091, #de00ff);*/
    left: -25%;
    top: 20%;
    border-radius: 30px;
    transform: rotate(45deg);
    animation: ShapeRotateAnimate 3s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes ShapeRotateAnimate {
    0% {
        transform: rotate(0) scale(.4);
    }
    100% {
        transform: rotate(45deg) scale(1);
        opacity: 1;
    }
}

.home-title .bio-text {
    position: absolute;
    width: 250px;
    left: 20%;
    font-family: 'DoranExtraBold';
    font-size: 1.8rem;
    text-align: center;
    line-height: 2;
    animation: loadBio 1s;
    animation-delay: .5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes loadBio {
    0% {
        left: -20%;
        opacity: 0;
    }
    50% {
        left: 0;
        opacity: 0;
    }
    100% {
        left: 20%;
        opacity: 1;
    }
}

.landing-projects-link {
    position: absolute;
    width: 220px;
    height: 40px;
    border-radius: 5px;
    font-family: 'KalamehRegular';
    text-decoration: none;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    left: 21%;
    bottom: 30%;
    transition: all .3s ease-in-out;
    overflow: hidden;
    animation: FadeLoadingAnimation 2s forwards;
    animation-delay: 1s;
    opacity: 0;
}

.landing-projects-link i {
    font-size: 1.5rem;
    transition: all .5s ease-in-out;
    rotate: .5turn;
}

.landing-projects-link:hover>i {
    rotate: 0turn;
}

.home-slider {
    position: relative;
    width: 100%;
    height: auto;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.slidshow-container {
    position: relative;
    width: 90%;
    height: 100vh;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.ctrl-btn {
    position: absolute;
    width: 95%;
    height: 30px;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 5;
}

.ctrl-btn button {
    background-color: transparent;
    outline: none;
    border: none;
    cursor: pointer;
}

.ctrl-btn button i {
    font-size: 2rem;
    color: #fff;
    text-shadow: #000 0 0 5px, #000 0 0 10px;
    padding: 1%;
    border-radius: 5px;
}

.walls-collection {
    position: absolute;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px;
    /*transform: translateX(-100%) scale(.5);*/
    /*background-color: rgba(0, 0, 0, .2);*/
    /*border: 2px solid rgba(0, 0, 0, .1);*/
    /*box-shadow: 0 0 40px rgba(0, 0, 0, .3);*/
    margin: auto;
    padding: 10px;
}

.slidActive {
    transform: translateX(0) !important;
}

.walls-collection-link {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 600px;
    margin: auto;
    display: block;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    overflow: hidden;
}

.walls-collection-link-img {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: inherit;
    height: initial;
    border-radius: 15px;
    /*filter: brightness(60%) contrast(200%);*/
}

.slider-text {
    position: absolute;
    width: 35%;
    right: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: loadSliderTxt 1s;
    animation-delay: .5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes loadSliderTxt {
    0% {
        right: -15%;
        opacity: 0;
    }
    50% {
        right: -5%;
        opacity: 0;
    }
    100% {
        right: 10%;
        opacity: 1;
    }
}

.slider-text-face {
    fill: #272727;
}

.slider-img {
    position: absolute;
    width: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    left: 0;
    margin: auto;
    top: 0;
    bottom: 0;
    animation: loadSliderImg 1s;
    animation-delay: .5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes loadSliderImg {
    0% {
        left: -15%;
        opacity: 0;
    }
    50% {
        left: -5%;
        opacity: 0;
    }
    100% {
        left: 0;
        opacity: 1;
    }
}

@media (width <= 1070px) {
    .home-jahantarh-logo {
        width: 400px;
        height: 300px;
    }
}

@media (width <= 800px) {
    .home-title {
        flex-direction: column;
        height: 120vh;
    }

    .home-jahantarh-logo {
        width: 70%;
        height: 60%;
        top: 5%;
        right: 0;
        left: 0;
        margin: auto;
        animation: FadeInLoading 1s;
        animation-delay: .5s;
        animation-fill-mode: forwards;
        opacity: 0;
    }

    .home-page-logo-shape {
        width: 20rem;
        height: 20rem;
        margin: auto;
        top: 40%;
        left: 100%;
    }

    .home-title .bio-text {
        bottom: 15%;
        right: 0;
        left: 0;
        margin: auto;
        animation: FadeInLoading 1s;
        animation-delay: .5s;
        animation-fill-mode: forwards;
        opacity: 0;
    }

    @keyframes FadeInLoading {
       0% {
            transform: scale(0);
            opacity: 0;
        }
        50% {
            transform: scale(50%);
            opacity: 0;
        }
        100% {
            transform: scale(100%);
            opacity: 1;
        }
    }

    .landing-projects-link {
        position: absolute;
        bottom: 7%;
        left: 0;
        right: 0;
        margin: auto;
    }

    .slidshow-container {
        height: 100vh;
    }
}

@media (width <= 720px) {
    .slidshow-container {
        height: 50vh;
    }
}

@media (width <= 500px) {

    .home-jahantarh-logo {
        width: 80%;
        top: 0;
    }

    .home-slider {
        width: 100%;
        margin: 0;
    }

    .home-title {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .home-title .bio-text {
        width: 200px;
        font-size: 1.5rem;
        bottom: 35%;
        left: 0;
        right: 0;
        margin: auto;
        animation: FadeLoadingAnimation 1.25s forwards;
        animation-delay: .75s;
        opacity: 0;
    }

    .landing-projects-link {
        bottom: 29%;
    }

}
/* ==============home-page-item============== */