*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
   --primary-900:rgb(47,165,240);
   --primary-fonts: 'Montserrat';
   --primary-dark:#1a2037;
   --darkblue:#1d233c;  
   --primary-white:#ffff;
   --orange:#d88730;
   --gray-font:#afb6d2;
}
.row::after,::before{

}
body{
    font-family: 'Montserrat';
    background-color: #0C0C0C;
   
}

svg {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: 100px;
	width: 100px;
}

html{
    scroll-behavior: smooth;
}
.gray-font{
    color: var(--gray-font);
}
.text-primary{
    color: var(--primary-900);
}
.dark-color{
    background-color: var(--primary-dark);
}
.row{
    display: flex;
    flex-wrap: wrap;
    margin: auto;
    justify-content: center;
}
.container{
    max-width: 1140px;
    margin: auto;
}
.w-100{
    width: 100%;
    padding: 15px;
}
.w-50{
    width: 50%;
    padding: 15px;
}
.w-33{
    width: 33.33%;
    padding: 0 15px;
}
.w-20{
    width: 20%;
    padding: 0 15px;
}
.w-30{
    width: 30%;
    padding: 0 15px;
}
.w-25{
    width: 25%;
    padding:0 15px;
}
.w-16{
    width: 15%;
    padding: 15px;
}
.padding-top{
    padding-top: 50px 0;
}
ol,ul{
    list-style: none;
}
a{
    text-decoration: none;
    display: inline-block;
}
.align-items-center{
    align-items: center;
}
.justify-content-between{
    justify-content: space-between;
}
.text-align-center{
    text-align: center;
}
.pull-left {
    float: left!important;
}
.pull-right {
    float: right!important;
}
img{
    max-width: 100%;
}
.text-uppercase{
    text-transform: uppercase;
}
.padding-50{
    padding: 60px 70px;
}


/* header */
.header {
    background: #0C0C0C;
    padding: 46px;
    position: fixed;
    height: 100%;
    width: 360px;
    z-index: 5;
}
.wrapper {
    width: 1200px;
    margin: 0 auto;
}
.avtar{
    height: 200px;
    width: 200px;
    border-radius: 100%;
    overflow: hidden;
    margin: 0 auto;

}
.avtar img{
    transform: scale(1.5);
    margin-top: -40px;
    margin-left: 10px;
    /* transform: translateY(10px); */
}
.header h2{
    font-size: 20px;
    color: white;
    font-weight: 600;
    text-align: center;
    margin: 20px 0px 10px 0px;
}
.header h3{
    font-size: 15px;
    color: #777676;
    margin-left: 35px;
    /* text-align: center; */
 
}
.logo-nav  {
    margin-left: 0 ;
    margin-right: 0;
    margin-top: 20px;
    transform: translateX(11%);
    
}
.logo-nav  li a:hover{
    transform: translateY(-3px);
}
.logo-nav  li a{
    color: white;
    font-size: 20px;
    transition: all 0.5s;
}
.logo-nav  li a i{
    margin: 15px 10px;
}
.logo-nav ul li{
    margin: 20px 35px;
}
.header-ul  li a{
    color: rgba(255, 255, 255, 0.885);
   margin: 15px 40px;
   position: relative;
   font-size: 12px;
   transition: all 0.5S;
}
.header-ul li a::before{
    content: '';
    position: absolute;
    left: -8px;
    top: -5px;
    height: 7px;
    width: 7px;
    visibility: hidden;
    opacity: 0;
    border-top: solid 2px #FFF;
    transition: all 0.5S;
    border-left: solid 2px #FFF;
}
.header-ul li a::after{
    content: '';
    position: absolute;
    right: -8px;
    bottom: -5px;
    height: 7px;
    width: 7px;
    visibility: hidden;
    transition: all 0.5S;
    opacity: 0;
    border-bottom: solid 2px #FFF;
    border-right: solid 2px #FFF;
}
.header-ul li a:hover{
    color: white;
}
.header-ul li a:hover::after{
    visibility: visible;
    opacity: 1;
}
.header-ul li a:hover::before{
    visibility: visible;
    opacity: 1;
}

.main-content {
    background: #FFF;
    width: 840px;
}
.skill-item{
    padding: 15px;
}
.education-box{
    padding: 15px;
    margin: 15px;
}
.baner {
    position: relative;
    z-index: 0;
    background: none;
    height: 800px;
}
.baner-bg{
    background-image: url(../images/eye-baner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

}
.baner-bg-2{
    background-image: url(../images/html-css-collage-concept.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

}
.baner-overlay{
    background-color: rgba(0, 0, 0, 0.76);
    height: 100%;
}
.baner-center{
    
    margin: 0 auto;
    top: calc(50% - 60px);
    position: relative;
    width: 500px;
    z-index: 1;

}
.baner-center::after{
    content: '';
    position: absolute;
    left: -32px;
    top: -40px;
    height: 22px;
    width: 22px;
 
    border-top: solid 4px #FFF;
    transition: all 0.5S;
    border-left: solid 4px #FFF;
}
.baner-center::before{
    content: '';
    position: absolute;
    right: -32px;
    bottom: -40px;
    height: 22px;
    width: 22px;
   
    transition: all 0.5S;
    
    border-bottom: solid 4px #FFF;
    border-right: solid 4px #FFF;
}
.baner-center h2{
    color: #fff;
    font-size: 35px;
    font-weight: 400;
    text-align: center;
}
.baner-center h4{
    color: #bdbdbd;
    font-size: 20px;
    margin: 20px 0px;
    font-weight: 200;
    text-align: center;
}
 .slick-next{
display: none !important;
} 
/* .slick-dots{
    display: none !important;
}  */
.slick-dotted.slick-slider {
    margin-bottom: 0px;
}
.slick-dots {
    bottom: -75px;
}
.slick-dots li button{
    color: black;
    background-color: black;
    height: 10px;
    width: 10px;
}

/* ABOUT SECTION  */
.about{
    border-bottom: 1px solid #eee;
}
.heading{
    margin-bottom: 50px;
}
.heading h2{
    color: #1a1a1a;
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    text-transform: uppercase;
    padding-left: 20px;
    position: relative;
}
.heading h2:before {
    content: '';
    position: absolute;
    background: transparent;
    bottom: 10px;
    left: 0;
    height: 12px;
    width: 12px;
    border-left: solid 3px #0C0C0C;
    border-top: solid 3px #0C0C0C;
}
.heading h2:after {
    content: '';
    position: absolute;
    background: transparent;
    bottom: -10px;
    right: -17px;
    height: 12px;
    width: 12px;
    border-right: solid 3px #0C0C0C;
    border-bottom: solid 3px #0C0C0C;
}
.about ul{
    margin-bottom: 40px;
}
.about ul li {
    border-bottom: dashed 1px #DDD;
    padding: 15px 0;
    font-weight: 300;
    color: #0C0C0C;
    font-size: 14px;
    word-wrap: break-word;
}
.about ul li i{
    font-size: 14px;
    color: #0C0C0C;
    padding-right: 15px;
}
.about p{
    color: #2c2c2c;
   margin-bottom: 40px;
    font-size: 14px;
    font-weight: 300;
    line-height: 28px;
}
.skill-item{
    margin-bottom: 30px;
   max-width: 100%;
}
.skill-item h3{
    font-size: 14px;
    margin: 0;
    font-weight: 500;
}
.skill-item span{
    font-size: 12px;
    font-weight: 300;
    color: #9C9C9C;
}
.progress {
    height: 2px;
    margin-bottom: 20px;
    overflow: hidden;
    background-color: #E0E0E0;
    border-radius: 0;
   /* width: 100%; */
    box-shadow: none;
}
.progress-3 {
    height: 2px;
    margin-bottom: 20px;
    overflow: hidden;
    background-color: #E0E0E0;
    border-radius: 0;
   /* width: 100%; */
    box-shadow: none;
}
.progress-4 {
    height: 2px;
    /* margin-bottom: 20px; */
    overflow: hidden;
    background-color: #E0E0E0;
    border-radius: 0;
   /* width: 100%; */
    box-shadow: none;
}
.progress-bar{
    float: left;
    width: 98%;
    height: 100%;
    font-size: 12px;
    line-height: 1px;
    color: #fff;
    text-align: center;
    background-color: #0C0C0C;
}
.progress-bar-2{
    float: left;
    width: 85%;
    height: 100%;
    font-size: 12px;
    line-height: 1px;
    color: #fff;
    text-align: center;
    background-color: #0C0C0C;
}
.progress-bar-3{
    float: left;
    width: 75%;
    height: 100%;
    font-size: 12px;
    line-height: 1px;
    color: #fff;
    text-align: center;
    background-color: #0C0C0C;
}
.progress-bar-4{
    float: left;
    width: 70%;
    height: 100%;
    font-size: 12px;
    line-height: 1px;
    color: #fff;
    text-align: center;
    background-color: #0C0C0C;
}
/* education css  */
.education-box{
    padding: 15px;
    border: 1px solid black;
}
.education-box h5{
    font-size: 16px ;
    font-weight: 600;
    margin: 0 0  10px;
}
.education-box h6{
    font-size: 12px;
    color: #666;
    font-weight: 300;
    margin: 0 0 10px;
}
.education-box span i{
    font-size: 12px;
    color: black;
    /* font-weight: 300; */
    margin: 0 5px 10px;
}
.education-box span{
    font-size: 12px;
    color: #666;
    font-weight: 300;
    margin: 0 0 10px;
}
.about button {
    padding: 12px 30px;
    background-color: black;
    color: white;
    font-size: 14px;
    margin: 20px auto;
    display: block;
    /* width: ; */
    transition: all 0.5s;
    cursor: pointer;
}
.about button a{
    color: white;
    transition: all 0.5s;
}
.about button:hover{
    background-color: transparent;
    color: black;
}
.about button:hover a{
    color: black;
}

/* PORTFOLIO  */
.portfolio{
    border-bottom: 1px solid #eee;
}
.portfolio-boxes .w-50{
    margin: 20px 0px;
}
.portfolio-image{
    position: relative;
    overflow: hidden;
    cursor: pointer;
    /* height: 100px; */
    position: relative;
    margin: 15px;
}
.portfolio-image h2{
    position: absolute;
    top: 45%;
    left: 28%;
    visibility: hidden;
    opacity: 0;
    font-size: 12px;
    transition: all 0.5s;
    color: white;

}
.portfolio-image:hover h2{
    visibility: visible;
    opacity: 1;
    z-index: 9999;
}
.portfolio-image img{
  
    max-width: 100%;
    transition: all 0.5s;
}
.portfolio-image::after{
    width: 100%;
    height: 0%;
    position: absolute;
    content: "";
    background-color: rgba(0, 0, 0, 0.374);
    top: 0;
  
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}
.portfolio-image:hover:after{
    opacity: 1;
    visibility: visible;
    height: 100%;
}

.portfolio-image:hover  img{
    transform: scale(1.2);
}

.portfolio-image-2{
    position: relative;
    overflow: hidden;
    cursor: pointer;
    /* height: 100px; */
    position: relative;
    margin: 15px;
}
.portfolio-image-2 h2{
    position: absolute;
    top: 45%;
    left: 34%;
    visibility: hidden;
    opacity: 0;
    font-size: 12px;
    transition: all 0.5s;
    color: white;

}
.portfolio-image-2:hover h2{
    visibility: visible;
    opacity: 1;
    z-index: 9999;
}
.portfolio-image-2 img{
    /* max-height: 100%; */
    max-width: 1005;
    transition: all 0.5s;
}
.portfolio-image-2::after{
    width: 100%;
    height: 0%;
    position: absolute;
    content: "";
    background-color: rgba(0, 0, 0, 0.374);
    top: 0;
  
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}
.portfolio-image-2:hover:after{
    opacity: 1;
    visibility: visible;
    height: 100%;
}

.portfolio-image-2:hover  img{
    transform: scale(1.2);
}

.portfolio-image-3{
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin: 15px;
    position: relative;
}
.portfolio-image-3 h2{
    position: absolute;
    top: 45%;
    left: 35%;
    visibility: hidden;
    opacity: 0;
    font-size: 12px;
    transition: all 0.5s;
    color: white;

}
.portfolio-image-3:hover h2{
    visibility: visible;
    opacity: 1;
    z-index: 9999;
}
.portfolio-image-3 img{
    /* max-height: 100%; */
    max-width: 100%;
    transition: all 0.5s;
}
.portfolio-image-3::after{
    width: 100%;
    height: 0%;
    position: absolute;
    content: "";
    background-color: rgba(0, 0, 0, 0.374);
    top: 0;
  
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}
.portfolio-image-3:hover:after{
    opacity: 1;
    visibility: visible;
    height: 100%;
}

.portfolio-image-3:hover  img{
    transform: scale(1.2);
}

.portfolio-image-4{
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin: 15px;
    position: relative;
}
.portfolio-image-4 h2{
    position: absolute;
    top: 45%;
    left: 30%;
    visibility: hidden;
    opacity: 0;
    font-size: 12px;
    transition: all 0.5s;
    color: white;

}
.portfolio-image-4:hover h2{
    visibility: visible;
    opacity: 1;
    z-index: 9999;
}
.portfolio-image-4 img{
    max-width: 100%;
    transition: all 0.5s;
}
.portfolio-image-4::after{
    width: 100%;
    height: 0%;
    position: absolute;
    content: "";
    background-color: rgba(0, 0, 0, 0.374);
    top: 0;
  
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}
.portfolio-image-4:hover:after{
    opacity: 1;
    visibility: visible;
    height: 100%;
}

.portfolio-image-4:hover  img{
    transform: scale(1.2);
}

.portfolio-image-5{
    position: relative;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    margin: 15px;
}
.portfolio-image-5 h2{
    position: absolute;
    top: 45%;
    left: 30%;
    visibility: hidden;
    opacity: 0;
    font-size: 12px;
    transition: all 0.5s;
    color: white;
   

}

.portfolio-image-5:hover h2{
    visibility: visible;
    opacity: 1;
    z-index: 9999;
}
.portfolio-image-5 img{
    max-width: 100%;
    transition: all 0.5s;
}
.portfolio-image-5::after{
    width: 100%;
    height: 0%;
    position: absolute;
    content: "";
    background-color: rgba(0, 0, 0, 0.374);
    top: 0;
  
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}
.portfolio-image-5:hover:after{
    opacity: 1;
    visibility: visible;
    height: 100%;
}

.portfolio-image-5:hover  img{
    transform: scale(1.2);
}

.portfolio-image-6{
    position: relative;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    margin: 15px;
}
.portfolio-image-6 h2{
    position: absolute;
    top: 45%;
    left: 40%;
    visibility: hidden;
    opacity: 0;
    font-size: 12px;
    transition: all 0.5s;
    color: white;

}
.portfolio-image-6:hover h2{
    visibility: visible;
    opacity: 1;
    z-index: 9999;
}
.portfolio-image-6 img{
    max-width: 100%;
    transition: all 0.5s;
}
.portfolio-image-6::after{
    width: 100%;
    height: 0%;
    position: absolute;
    content: "";
    background-color: rgba(0, 0, 0, 0.374);
    top: 0;
  
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}
.portfolio-image-6:hover:after{
    opacity: 1;
    visibility: visible;
    height: 100%;
}

.portfolio-image-6:hover  img{
    transform: scale(1.2);
}
.form-group{
    padding: 15px;
}
.form-group input{
    display: block;
    width: 100%;
    height: 50px;
    padding: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: #555;
    background-color: #fff;
    background-image: none;
    border-bottom: solid 1px #0C0C0C;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
   
    box-shadow: none;
}
.form-group input:focus{
    outline: 0;
    border-color: #c7c7c7; 
    box-shadow: none;
}
.form-group input::placeholder{
    color: #c7c7c7;
    font-weight: 400;
    font-family: 'Montserrat';
}
.form-group textarea{
    display: block;
    width: 100%;
    height: 100px;
    padding: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: #555;
    background-color: #fff;
    background-image: none;
    border-bottom: solid 1px #0C0C0C;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;;
}
.form-group textarea::placeholder{
    color: #c7c7c7;
    font-weight: 400;
    /* font-size: 16px; */
    font-family: 'Montserrat';
}
.form-group textarea:focus{
    outline: 0;
    border-color: #c7c7c7; 
    box-shadow: none;
}
.contact-form button{
    padding: 10px 20px;
    background-color: black;
    color: white;
    font-size: 14px;
    margin-left: 15px;
   margin-top: 15px;
    transition: all 0.5s;
    cursor: pointer;
}
.contact-form button:hover{
    background-color: transparent;
    color: black;
}

.backtotop {
    width: 45px;
    height: 45px;
    border: 2px solid black;
    text-align: center;
    
    z-index: 99;
    bottom: 25px;
    right: 200px;
   
}
.bfixed{
  position: fixed;
}
.backtotop i {
    line-height: 43px;
    color:black;
}


.active{
    position: relative !important;
}
.header-ul li a.active::before{
    content: '';
    position: absolute;
    left: -8px;
    top: -5px;
    height: 7px;
    visibility: visible;
    opacity: 1;
    width: 7px;
    border-top: solid 2px #FFF;
    border-left: solid 2px #FFF;
}
.header-ul li a.active::after{
    content: '';
    position: absolute;
    right: -8px;
    bottom: -5px;
    height: 7px;
    visibility: visible;
    opacity: 1;
    width: 7px;
    border-right: solid 2px #FFF;
    border-bottom: solid 2px #FFF;
}
.toggle{
    height: 40px;
    width: 40px;
    border-radius: 10%;
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 20px;
    cursor: pointer;
    display: none;
    line-height: 40px;
    background-color: white;
    text-align: center;
    z-index: 99999;
    border: 1px solid black;
}
