@import url(../css/fonts.css);
body{
    margin: 0;
    padding: 1.5;
 
}
body,input,textarea,button{
    font-family: atala;
    font-weight: 800;
}
*{
    box-sizing: border-box;
    margin: 0;
}
.container{
    max-width: 1170px;
    margin: auto;
}

.row{
    display: flex;
    flex-wrap: wrap;
}
.align-items-center{
    align-items: center;
}
.justify-content-between{
    justify-content: space-between;
}


/*---Header---*/
.header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    transition: all 0.5s ease;
    background-color: #777777;
 
}
.header.fixed{
    background-color: #777777;
    position: fixed;
}
.header .brand-name{
    padding: 0 15px;
}
.header .brand-name a{
    text-decoration: none;
    font-size: 50px;
    color: cyan;
    font-weight: 900;
    letter-spacing: 2px;
    transition: all 0.5s ease;  
}
.header .nav-toggle{
    width: 40px;
    height: 34px;
    border: 1px solid #ffffff;
    border-radius: 3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    display: none;
}
.header.fixed .nav-toggle{
    border-color: #14d9f3;
   
}
.header .nav-toggle span{
    height: 1px;
    display: block;
    width: 16px;
    background-color: #777777;
    position: relative;
    transition: all 0.5s ease;
}
.header .nav-toggle span:before,
.header .nav-toggle span:after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    width: 100;
    background-color: #ffffff;
    transition: all 0.5s ease;
}
.header.fixed .nav-toggle span,
.header.fixed .nav-toggle span:before,
.header.fixed .nav-toggle span:after{
    background-color: #ffffff;
}
.header .nav-toggle span:before{
    transform: translateY(-6px);
}
.header .nav-toggle span:after{
    transform: translateY(6px) ;
}
.header.fixed .brand-name a{
    color: #f7f2f2;
}
.header .brand-name a:hover{
    color: rgb(247, 184, 12);
}
.header .nav{
    padding: 0 15px;
}
.header .nav ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
.header .nav ul li{
    display: inline-block;
    margin-left: 30px;
}
.header .nav ul li a{
    text-decoration: none;
    font-family: abel;
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    padding: 25px 0;
    display: block;
    transition: all 0.5s ease;
}
.header.fixed .nav ul li a{
    color: #f5f5f5;
}
.header.fixed .nav ul li a:hover,
.header .nav ul li a:hover{
    color: #ff9800;
}

/*--Home--*/
.home{
    min-height: 100vh;
    background-image: url('../images/home.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}
.home:before{
    content: '';
    position: absolute;
    box-sizing: border-box;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #1f1e1e;
    opacity: 0.7;
    z-index: -1;
}
.home .row{
    min-height: 100vh;
}

.home .home-content{
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;   
}
.home .home-content h4{
    font-size: 20px;
    font-family: abel;
    color: #ffffff;
    margin: 0;
    letter-spacing: 2px;
}
.home .home-content h1{
    font-size: 100px;
    color: greenyellow;
    margin: 0;
    letter-spacing: 4px;

}
.home .scroll-down{
    position: absolute;
    left: 50%;
    bottom: 30px;
    height: 30px;
    width: 30px;
    margin-left: -15px;
    animation: scrolldwn 2s ease infinite;
    margin: 2px auto;

}
.home .scroll-down img{
    width: 25px;
    display: block;
    margin: 2px auto;
}

/*---Section------*/
.section-title{
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 60px;
    padding: 0 15px;
}
.section-title h1{
    display: inline-block;
    font-size: 40px;
    color: #000000;
    font-weight: 700;
    margin: 0;
    position: relative;
}
.section-title h1:before{
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 80px;
    height: 3px;
    background-color: #ff9800;
}



/*---Works Section--*/
.works{
    padding: 80px 0 0 ;
    font-family: abel ;
}

.works .nezokep {
    width: auto;
    height: auto;
    display: block;
    transform: scale(1);
    transition: all 0.5s ease;
    }
    

.works .work-item{
    flex: 0 0 auto;
    height: auto;
    padding: 15px;
    background-color: rgba(0,0,0,1);
}
.works .work-item-inner img{
    width: auto;
    height: auto;
    display: block;
    transform: scale(1);
    transition: all 0.5s ease;
}
.works .work-item-inner:hover img{
    border-radius: 4px;
    border: 2px solid rgb(21, 245, 95);

    filter: grayscale(100%);
    transform: scale(1.1);
    
}
.works .work-item-inner{
    position: relative;
    cursor: pointer;
    overflow: hidden;
}
.works .work-item-inner .overlay{
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.6);
    height: 100%;
    width: 100%;
    padding: 15px;
    display: flex;
    align-items: flex-end;
    transition: all 0.5s ease;
    background-color: rgba(0,0,0,0.6);
    /*background-color: transparent;*/
    opacity: 0;
}
.works .work-item-inner:hover .overlay{
    opacity: 1;
}
.works .work-item-inner .overlay h4{
    color: #ffffff;
    font-size: 20px;
    margin: 0;
    transform: translateX(30px);
    transition: all 0.5s ease;
}
.works .work-item-inner:hover .overlay h4{
    transform: translateX(0);
}

.lightbox{
    position: fixed;
    z-index: 1099;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,1);
    display: flex;
    align-items: top;
    justify-content: center;
    cursor: pointer;
    display: none;
}
 .open{
    display: flex !important;
}

.lightbox .lightbox-img{
    display: flex;
    width: auto;
    height: auto;
    max-width: 100%;
    padding: 40px 0;
    
}
.lightbox .img-box{
    position: relative;
    cursor: auto;
}

.lightbox .lightbox-szov{
    color: #f8f4f4;
    font-family: abel;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    left: 100;
    top: 2px;
    display: flex;

}
.lightbox .lightbox-caption{
    color: #f8f4f4;
    font-family: abel;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    left: 0;
    top: 2px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.lightbox .lightbox-caption .lightbox-category{
    padding-right: 50px;

}
.lightbox .lightbox-close{
    height: 30px;
    width: 30px;
    display: block;
    position: absolute;
    right: 0;
    top: 10px;
    font-size: 30px;
    color: #ffffff;
    text-align: center;
    line-height: 26px;
    cursor: pointer;
}
.lightbox .rendel-close{
    height: 40px;
    width: 100px;
    display: block;
    position: absolute;
    right: 0;
    top: 10px;
    font-size: 30px;
    color: #ffffff;
    text-align: center;
    line-height: 26px;
    cursor: pointer;
}




.lightbox .lightbox-controls .prev,
.lightbox .lightbox-controls .next{
    position: absolute;
    height: calc(100% - 80px);
    top: 200px;
    cursor: pointer;
    display: flex;
    align-items: top;
}
.lightbox .lightbox-controls .prev{
    left: 0;
    width: 50%;
    justify-content: flex-start;
    padding-left: 5px;
}
.lightbox .lightbox-controls .next{
    right: 0;
    width: 50%;
    justify-content: flex-end;
    padding-right: 5px;
}

.lightbox .lightbox-controls .prev img,
.lightbox .lightbox-controls .next img{
    width: 30px;
    height: 30px; 
    padding: 5px;
    border-radius: 2px;
    transition: all 0.5s;
}
.lightbox .lightbox-controls .prev:hover img,
.lightbox .lightbox-controls .next:hover img{
    background-color: rgba(0,0,0,1);
}


/*---Media query--*/
@media(max-width: 768px){
    .header .nav{
        display: block;         
    }
}
@media(max-width: 767px){  
    .header{
        padding: 7px 0;
    }
    .header .nav-toggle{
        display: flex;
        margin-right: 15px;
    }
    .header .nav{
        flex: 0 0 100%;
        max-width: 100%;
        background-color: #7777777;
        padding: 0;
        display: none;
    }
    .header .nav ul li{
        display: block;
        margin-right: 25px;
    }
    .header.fixed .nav ul li a,
    .header .nav ul li a{
        color: #ffffff;
        padding: 15px 0;
    }
    .home .home-content h1{
        font-size: 40px;
    }
    .about .about-img{
        margin-bottom: 30px;
    }
    .about .about-content,
    .about .about-img{
        flex: 0 0 100%;
        max-width: 100%;
    }
    .works .work-item,
    .services .service-item{
        flex: 0 0 auto;
        max-width: 100%;
    }
}
@media(max-width:575px){
    .home .home-content h1{
        font-size: 25px;
        letter-spacing: 5px;
    }
    .about .about-content .stats .stat-box{
        flex: 0 0 50%;
        max-width: 50%;
    }
    .contact .contact-info .info-item,
    .contact .contact-form .form .input-group.left,
    .contact .contact-form .form .input-group.right,
    .works .work-item,
    .services .service-item{
        flex: 0 0 auto;
        max-width: 100%;
    }
    .contact .contact-form{
        padding: 0px 35px;
    }
    .contact .contact-form .form{
        padding: 55px 5px;
    }
}

.btn-01{
    background-color: #ff9800;
    color: #ffffff;
    border: 2px solid transparent;
    padding: 10px 35px;
    border-radius: 30px;
    line-height: 1.5;
    cursor: pointer;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;;
    transition: all 0.5s ease;
    font-family: abel;
    letter-spacing: 2px;
}
.btn-01:hover{
    background-color: transparent;
    border-color: #ff9800;
    color: #ff9800;
}
.btn-01:focus{
    outline: none;
}
@keyframes anime1{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}
@keyframes anime2{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}
@keyframes anime3{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}

@keyframes scrolldwn{
    0%,20%,50%,80%,100%{
        transform: translateY(0);
    }
    40%{
        transform: translateY(-30px);
    }
    60%{
        transform: translateY(-15px);
 }
}

/*--About section--*/
.about{
    padding: 80px 0 0;
}
.about .about-img{
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding: 0 15px;
}
.about .about-img .img-box{
    position: relative;
}
.about .about-img .img-box .shape-03{
    position: absolute;
    height: 30px;
    width: 30px;
    border: 2px solid cyan;
    left: 30px;
    top: 30px;
    animation: anime3 5s linear infinite;
}
.about .about-img .img-box img{
    width: 100%;
    display: block;
}
.about .about-content{
    flex: 0 0 66.66%;
    max-width: 66.66%;
    font-family: abel;
}
.about .section-title{
    margin-bottom: 30px;
    padding: 0;
}
.about .about-content p{
    font-size: 19px;
    color: #555555;
    line-height: 26px;
    font-weight: 200;
    margin: 0;
}
.about .about-content .stats .stat-box{
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
    text-align: center;
    margin-top: 30px;
}
.about .about-content .stats .stat-box h2{
    font-size: 40px;
    color: #000000;
    margin: 0 0 5px;
}
.about .about-content .stats .stat-box h5{
    font-size: 16px;
    color: #555555;
    font-weight: 600;
    text-transform: uppercase;
}
.about .about-content .btn{
    margin-top: 50px;
    text-align: center;

}

.lightbox .styled-select select {
    align-items: flex-start;
    background-color: transparent;
    color: #ffffff;
    width: 90px;
    padding: 5px;
    font-family: abel;
    font-size: 15px;
    line-height: 1;
    border: 0;
    border-radius: 0;
    height: 30px;
    -webkit-appearance: none;
 }

 .lightbox .dialog {
    height: 125px;
    width: 220px;
    font-family: atala;
    margin: 0 auto;
    padding: 15px;
    border: 1px solid black;
    background-color: white;
    } 
     .glass {
        position: fixed;
        left: 0;
        top: 0;
        background-color: rgba(225,225,225,.7);
        height: 100vh;
        width: 100vw;
        z-index: 100;
        }