@media  (min-width: 576px) {
    body .container1.active .main{
        transform: perspective(800px) rotateY(13deg) translateZ(250px) scale(.35);
    }

    body .container1 .links ul li a{
        font-size: 13px;
    }
    body #about-us .about-us-desc p{
        color: white;
        font-size: 13px;
    }
    body .title1{
        width: 100%;
        position: relative;
        padding: 15px;
        color: #ff9200;
        font-size: 15px;

    }
    body #about-us .about-us-button a{
        font-size: 13px;

    }
    body #works .works-main .works-slide p{
        font-size: 13px;
    }
    body #works .works-main .works-main-item h5{
        font-size: 14px;


    }
    body #works .works-main .works-slide a {
        font-size: 13px;


    }
    body .logo-header div{
        margin: 0 5px;

        font-size: 14px;
    }
    body .footer-title{
        font-size: 15px;
    }
    body .footer-text{
        font-size: 13px;
    }
    body .video-title{
        font-size: 15px;
    }
    body .video-text{
        font-size: 13px;
    }
    body #customers .customers-main .customers-main-item .nmg img{
        width: 70%;
        height: 70%;
    }
    body #customers .customers-main .customers-main-item .customers-slide h4{
        font-size: 13px;

    }

    body #customers .customers-main .customers-main-item .customers-slide p{

        font-size: 13px;


    }


}


@media (min-width: 992px) {
    html body .container1.active .main{
        transform: perspective(1300px) rotateY(20deg) translateZ(350px) scale(.5);
    }
    html body .container1 .links ul li a{
        font-size: 17px;
    }

    html body #about-us .about-us-desc p{
        color: white;
        font-size: 17px;
    }
    html body .title1{
        width: 100%;
        position: relative;
        padding: 15px;
        color: #ff9200;
        font-size: 19px;

    }
    html body #about-us .about-us-button a{
        font-size: 17px;

    }
    html body #works .works-main .works-slide p{
        font-size: 15px;
    }
    html body #works .works-main .works-main-item h5{
        font-size: 20px;


    }
    html body #works .works-main .works-slide a {
        font-size: 15px;


    }
    html body .logo-header div{
        font-size: 18px;
    }
    html body .footer-title{
        font-size: 18px;
    }
    html body .footer-text{
        font-size: 15px;
    }
    html body .video-title{
        font-size: 18px;
    }
    html body .video-text{
        font-size: 15px;
    }
    html body #customers .customers-main .customers-main-item .nmg img{
        width: 100%;
        height: 100%;
    }
    html body #customers .customers-main .customers-main-item .customers-slide h4{
        font-size: 18px;

    }

    html body #customers .customers-main .customers-main-item .customers-slide p{
        font-size: 18px;


    }
}









.fade{
    transition: all .3s ease-in-out;
    bottom: 135px;

}
:root {
    --bg: #000000;
    --clr-1: #00c2ff;
    --clr-2: #33ff8c;
    --clr-3: #ffc640;
    --clr-4: #e54cff;

    --blur: 1rem;
    --fs: clamp(3rem, 8vw, 7rem);
    --ls: clamp(-1.75px, -0.25vw, -3.5px);
}





.title {
    font-size: var(--fs);
    font-weight: 800;
    letter-spacing: var(--ls);
    position: relative;
    overflow: hidden;
    margin: 0;
}

.subtitle {
}

.aurora {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    z-index: 12;
    mix-blend-mode: darken;
    pointer-events: none;
}

.aurora__item {
    overflow: hidden;
    position: absolute;
    width: 30vw;
    height: 30vw;
    background-color: var(--clr-1);
    border-radius: 37% 29% 27% 27% / 28% 25% 41% 37%;
    filter: blur(var(--blur));
    mix-blend-mode: overlay;
}

.aurora__item:nth-of-type(1) {
    top: -50%;
    animation: aurora-border 6s ease-in-out infinite,
    aurora-1 12s ease-in-out infinite alternate;
}

.aurora__item:nth-of-type(2) {
    background-color: var(--clr-3);
    right: 0;
    top: 0;
    animation: aurora-border 6s ease-in-out infinite,
    aurora-2 12s ease-in-out infinite alternate;
}

.aurora__item:nth-of-type(3) {
    background-color: var(--clr-2);
    left: 0;
    bottom: 0;
    animation: aurora-border 6s ease-in-out infinite,
    aurora-3 8s ease-in-out infinite alternate;
}

.aurora__item:nth-of-type(4) {
    background-color: var(--clr-4);
    right: 0;
    bottom: -50%;
    animation: aurora-border 6s ease-in-out infinite,
    aurora-4 24s ease-in-out infinite alternate;
}

@keyframes aurora-1 {
    0% {
        top: 0;
        right: 0;
    }

    50% {
        top: 100%;
        right: 75%;
    }

    75% {
        top: 100%;
        right: 25%;
    }

    100% {
        top: 0;
        right: 0;
    }
}

@keyframes aurora-2 {
    0% {
        top: -50%;
        left: 0%;
    }

    60% {
        top: 100%;
        left: 75%;
    }

    85% {
        top: 100%;
        left: 25%;
    }

    100% {
        top: -50%;
        left: 0%;
    }
}

@keyframes aurora-3 {
    0% {
        bottom: 0;
        left: 0;
    }

    40% {
        bottom: 100%;
        left: 75%;
    }

    65% {
        bottom: 40%;
        left: 50%;
    }

    100% {
        bottom: 0;
        left: 0;
    }
}

@keyframes aurora-4 {
    0% {
        bottom: -50%;
        right: 0;
    }

    50% {
        bottom: 0%;
        right: 40%;
    }

    90% {
        bottom: 50%;
        right: 25%;
    }

    100% {
        bottom: -50%;
        right: 0;
    }
}

@keyframes aurora-border {
    0% {
        border-radius: 37% 29% 27% 27% / 28% 25% 41% 37%;
    }

    25% {
        border-radius: 47% 29% 39% 49% / 61% 19% 66% 26%;
    }

    50% {
        border-radius: 57% 23% 47% 72% / 63% 17% 66% 33%;
    }

    75% {
        border-radius: 28% 49% 29% 100% / 93% 20% 64% 25%;
    }

    100% {
        border-radius: 37% 29% 27% 27% / 28% 25% 41% 37%;
    }
}







section{
    margin: 0;
    padding: 0;
}
*{
    box-sizing: border-box;
    list-style-type: none;
    text-decoration: none;!important;
    padding: 0;
    margin: 0;
    direction: rtl;
    font-family: 'Vazir', sans-serif;
}
a{
    text-decoration: none;
    padding: 0;
    margin: 0;
}
.f-shabnam{
    font-family: 'Shabnam', sans-serif;
}
ul,li{
    padding: 0;
    margin: 0;
}
span{
    font-family: b-yekan;
}
header{
    width: 100%;
    height: 100vh;
    background: url("2504.jpg");
    background-repeat: round;
    margin: 0;

}
/* header */
.container1{
    width: 100%;
    height: 100vh;
    background: #192024;
    background-image: linear-gradient(135deg, #0d2c1d, #0a3f3b 74%);
}
.navbar1{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    height: 3rem;
}
.menu{
    width: 100%;
    max-width: 72rem;
    margin: 0 auto;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.menu .logo{
    width: 5%;
}
.menu .hamburger-menu{
    width: 40px;
    height: 40px;
    cursor: pointer;

}
.menu .hamburger-menu .bar{
    position: relative;
    width: 30px;
    height: 3px;
    background: #eee;
    transition: .4s ease-in-out;


}
.menu .hamburger-menu .bar::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #eee;
    transition: .4s ease-in-out;
}
.menu .hamburger-menu .bar::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #eee;
    transition: .4s ease-in-out;

}
.bar::before{
    transform: translateY(-10px);
}
.bar::after{
    transform: translateY(10px);
}



.main{
    position: relative;
    width: 100%;
    left: 0;
    z-index: 5;
    overflow: hidden;
    transition: .5s ease-in-out;
    transform-origin: left;
}

.inner {
    max-width: 35rem;
    padding: 0 2rem;
    text-align: center;
    color:#ff9200;
}
.links{
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100vh;
    z-index: 2;
}
.links ul li {
    margin: 10px 0;

}
.links ul li a{
    position: relative;
    color: #666;
    padding: 20px 10px;
    display: block;
    transform: translateY(60px);
    transition: .3s ease-out;
    opacity: 0;
    font-size: 10px;
    background: #333333;
    text-align: center;
    border-radius: 10px;

}
.links ul li a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    transition: .5s;
    transform: scale(.9);
    color: #ff9200;
}
.links ul li a:hover::before {
    transform: scale(1);
    box-shadow: 0 0 15px #ff9200;
}

.links ul li a:hover{
    color: #ff9200;
    box-shadow: 0 0 5px #ff9200;
    text-shadow: 0 0 5px #ff9200;}
.container1.active .links ul li a{
    transform: translateY(0);
    opacity: 1;
    transition-delay: .1s;
}
.container1.active .bar{
    transform: rotate(360deg);
    background-color: transparent;
}
.container1.active .bar::before{
    transform: translateY(0) rotate(45deg);
}
.container1.active .bar::after{
    transform: translateY(0) rotate(-45deg);
}
.container1.active .main{
    transform: perspective(500px) rotateY(10deg) translateZ(210px) scale(.25);
}





.title1{
    width: 100%;
    position: relative;
    padding: 15px;
    color: #ff9200;
    font-size: 13px;

}
.title1:before{
    content: "";
    position: absolute;
    right: 0;
    top: 5px;
    width: 4px;
    height: 85%;
    background: linear-gradient(to top, rgb(208, 193, 248), rgb(204, 0, 0));
}
.title1:after{
    content: "";
    position: absolute;
    bottom: 0;
    width: 20%;
    height: 4px;
    right: 0;
    background: linear-gradient(to left, rgb(208, 193, 248), rgb(204, 0, 0));
    z-index: 2;

}
.clean{
    display: flex;
    justify-content: center;
    flex-direction: column;

}
.overflow{
    width: 100%;
    overflow: hidden;
}

.bg-darkblue{
    background: linear-gradient(0deg, rgba(191,105,185,0.8352591036414566) 0%,
    rgba(255,202,255,1) 7%, rgba(255,202,255,1) 93%, rgba(191,105,185,0.8996848739495799) 100%);}
.bg-lightblue{
    background: linear-gradient(0deg, rgba(113,153,212,1) 0%,
    rgba(198,226,233,1) 7%, rgba(198,226,233,1) 93%, rgba(113,153,212,0.8996848739495799) 100%);
}




.overlay{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(9, 9, 9, 0.5);


}

/*about-us*/
#about-us{
    background-color:#192024 ;
    margin: 0;
    padding: 0;

}


#about-us .about-us-desc{
    display: flex;
    width: 100%;
    line-height: 2;
    padding: 20px 10px;
    border: 1px solid #3e4b4b;
    border-radius: 15px;
    box-shadow: 2px 2px 3px 3px rgba(25,25,25,1);
    z-index: 10;
    margin: 10px 0;
}
#about-us .about-us-desc p{
    color: white;
    font-size: 10px;
}

.text-paragraph {
    font-size: 18px;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(50px) translateX(15px) rotate(20deg) scale(1.1);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    color: white;
}



/* نمایش پاراگراف‌ها وقتی وارد صفحه می‌شوند */
.text-paragraph.visible {
    opacity: 1;
    transform: translateY(0) translateX(0) rotate(0) scale(1);
}
#about-us .about-us-button{
    display: flex;
    width: 100%;
    padding: 10px 0;
    justify-content: flex-end;

}

#about-us .about-us-button a{
    border: 1px solid #ff9200;
    border-radius: 5px;
    padding: 10px;
    position: relative;
    display: block;
    overflow: hidden;
    background-color: transparent;
    color: white;
    z-index: 1000;
    font-weight: bolder;
    font-size: 10px;

}
#about-us .about-us-button a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(254,146, 0, 0.73);
    border-radius: 80% 20% 0 0;
    transition: all .3s ease-in-out;
}
#about-us .about-us-button a:hover::before {
    height: 350px;
}

/*works*/
#works{
    width: 100%;
    background: url("80938.jpg");
    background-size: cover;
    background-attachment: fixed;

}

#works .works-main{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#works .works-main .works-main-item{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 10px;
    margin: 10px 0;
    background-color: #dcf0ff;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: all .4s  ease-out;


}

#works .works-main .works-main-item:hover{
    transform: scaleX(1.05);
}

#works .works-main .works-main-item::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: -1.5%;
    left: -4.2%;
    border-top: 10px solid transparent;
    border-left: 10px solid transparent;
    border-right: 10px solid black ;
}
#works .works-main .works-main-item::before {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: -5.3%;
    right: -3%;
    transform: rotate(90deg);
    border-top: 10px solid transparent;
    border-left: 10px solid transparent;
    border-right: 10px solid black ;
    z-index: 3;
}
#works .works-main .works-main-item h5{
    font-size: 12px;
    width: 100%;
    border-bottom: 1px solid rgba(25,25,25,1);
    text-align: center;
    padding: 10px 0;
    position: relative;

}
#works .works-main .works-main-item h5::before{
    content:"";
    position: absolute;
    bottom: -10px;
    right: 0;
    background: rgba(25,25,25,.8);
    width: 100%;
    height: 1px;
}

#works .works-main .works-slide{
    position: absolute;
    bottom:0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(59, 57, 56, 0.88);
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    transition: all  ease-in;
    transition-duration: .3s;
    transition-property: all;
    opacity: 0;
}
#works .works-main .works-main-item:hover .works-slide {
    opacity: 1;
}
#works .works-main .works-slide p{
    font-size: 10px;
    width: 100%;
    color: #eeeeee;
    text-align: center;
    transform: translateY(100px);
    transition-duration: .4s;
    transition-property: all;

}
#works .works-main .works-main-item:hover .works-slide p {
    transform: translateY(0);

}
#works .works-main .works-slide a {
    position: relative;
    color: #eeeeee;
    font-size: 10px;
    border-radius: 10px;
    padding: 5px;
    border: 1px solid rgb(255, 146, 0);
    transform: translatex(150px);
    transition-duration: .6s;
    transition-property: all;
    overflow: hidden;

}
#works .works-main .works-slide a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(254,146, 0, 0.73);
    border-radius: 80% 20% 0 0;
    transition: all .7s ease-in-out;

}
#works .works-main .works-slide a:hover::before {
    height: 200px;
}

#works .works-main .works-main-item:hover .works-slide a {
    transform: translatex(0);

}

.bg-com{
    background-color: #7a7adb;
    background-image: linear-gradient(315deg, #7a7adb 0%, #170e13 74%);
}






/*customers*/

#customers{
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: #0a3d3f;
}


#customers .customers-main{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}




#customers .customers-main .customers-main-item{
    display: flex;
    width: 50%;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    background-color: #1d2951;
    background-image: linear-gradient(315deg, #1d2951 0%, #dbe7fc 74%);
    border-radius: 10px;
    box-shadow: rgb(9, 32, 42) -1px -2px 2px 1px;
    margin-bottom: 20px;
    cursor: grab;

}


#customers .customers-main .customers-main-item .nmg{
    width: 50%;
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;

}
.img-fluid{
    width: 70%;
    height: 70%;


}
#customers .customers-main .customers-main-item .customers-slide{
    display: flex;
    width: 100%;
    height: 20%;
    justify-content: space-around;
    align-items: baseline;
}
#customers .customers-main .customers-main-item .customers-slide h4{
    color: #9fd7ee;
    opacity: 0;
    transition: .3s ease-in all;
    font-size: 7px;

}

#customers .customers-main .customers-main-item .customers-slide p{
    color: #13293f;
    opacity: 0;
    transition: .3s ease-in all;
    font-size: 7px;


}
#customers .customers-main .customers-main-item:hover .customers-slide h4{
    opacity: 1;
    animation: slider-1 1s ease-in-out;

}
#customers .customers-main .customers-main-item:hover .customers-slide p{
    opacity: 1;
    animation: slider-2 1s ease-in-out;
}
@keyframes slider-1 {
    0%{
        transform: translatex(50px);
    }
    40%{

        transform: translatex(-20px);
    }
    60%{
        transform:translatey(3px) ;
    }
    99%{
        transform: translatey(0);
    }
    100%{
        transform: translatex(0);

    }

}

@keyframes slider-2 {
    0% {
        transform: translatex(-50px);
    }
    40% {

        transform: translatex(20px);
    }
    60% {
        transform: translatey(-3px);
    }
    99% {
        transform: translatey(0);
    }
    100% {
        transform: translatex(0);

    }
}




.swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.autoplay-progress {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--swiper-theme-color);
}

.autoplay-progress svg {
    --progress: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    stroke-width: 4px;
    stroke: var(--swiper-theme-color);
    fill: none;
    stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
    stroke-dasharray: 125.6;
    transform: rotate(-90deg);
}

/*videos*/
#videos{
    width: 100%;
    background: url("3d-rendering-abstract-black-white-background.jpg");
    background-size: cover;
    background-attachment: fixed;
}
.video-title{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3a0303;
    width: 100%;
    border-radius: 50% 50% 1px 1px;
    padding: 5px;
    color: whitesmoke;
    transition: .3s ease-in-out ;
}
.video-title:hover::before {
    transform: scale(1);
    box-shadow: 0 0 15px #2db68d;
}

.video-title:hover{
    color: #2db68d;
    box-shadow: 0 0 5px #2db68d;
    text-shadow: 0 0 5px #2db68d;
    border-radius: 25% 25% 10px 10px;

}
.video-text{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #010c2d;
    width: 100%;
    border-radius: 10px;
    padding: 5px;
    color: whitesmoke;
    transition: .3s ease-in-out ;
    opacity: 0;
}
.video-card:hover .video-text{
    opacity: 1;
    animation: slider-3 1s ease-in-out;

}

@keyframes slider-3 {
    0%{
        transform: translatex(-50px);
    }
    40%{

        transform: translatex(20px);
    }
    60%{
        transform:translatey(3px) ;
    }
    99%{
        transform: translatey(0);
    }
    100%{
        transform: translatex(0);

    }

}



/*footer*/
#footer{
    width: 100%;
    background: url("thunderstorm-city (2).jpg");
    background-size: cover;
    background-attachment: fixed;

}
#footer section{
    position: relative;
    bottom: 0;
    right: 0;
}
.overlay-1{

    background: rgba(40, 37, 37, 0.4);
    width: 100%;
    height: 100%;
}





.footer-title{
    text-align: center;
    border-radius: 10px;
    background-color: #232121;
    color: #54504b;
    transition: all .3s ease-in-out;
    padding: 5px 0;
    margin: 5px 0 ;


}


.footer-title:hover::before {
    transform: scale(1);
    box-shadow: 0 0 15px #ff9200;
}

.footer-title:hover{
    color: #ff9200;
    box-shadow: 0 0 5px #ff9200;
    text-shadow: 0 0 5px #ff9200;}

.footer-text{
    color: white;
    transition: all.3s ease-in-out;
}
.footer-text:hover{
    color: #ff9200;
    text-shadow:3px 2px 4px rgba(176, 103, 5, 0.89);
}
.cursor{
    cursor: pointer;
}





