/*--------fonts----*/
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700&display=swap');


/*---------global style----*/
/* define custom css variables*/
:root{
    --bg-black-900: #000000;
    --bg-black-100: #dddddd;
    --bg-black-50: #eff0f4;
    --text-black-900: #000000;
    --text-black-700: #555555;
    --text-black-600: #666666;
    --text-black-300: #bbbbbb;
    --outer-shadow: 3px 3px 3px #d0d0d0, -3px -3px 3px #f8f8f8;
    ;
    --outer-shadow-0: 0 0 0 #d0d0d0, 0 0 0 #f8f8f8; 
    --inner-shadow-0: inset 3px 3px 3px #a0d0d0, inset -3px -3px 3px #f8f8f8;
}

body{
    font-size: 16px;
    line-height: 1.5;
    overflow-x: hidden;
    background-color: var(--bg-black-50);
    /* overflow-y: hidden; */
}
*:not(i){
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}
:before,:after{
    box-sizing: border-box;
}
a{
    text-decoration: none;
}
ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
img{
    vertical-align: middle;
    max-width: 100%;
    
}
.container{
    max-width: 1140px;
 
    margin: auto;
}
.row{
    display: flex;
    flex-wrap: wrap;
}
.justify-content-between{
    justify-content: space-between;
}
.outer-shadow{
    box-shadow: var(--outer-shadow);
}
.inner-shadow{
    box-shadow:var(--inner-shadow) ;
}
.hover-in-shadow{
    position: relative;
    z-index: 1;
}
.hover-in-shadow:hover{
    box-shadow: var(--outer-shadow-0);
}
.hover-in-shadow:after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
    z-index: -1;
}
.hover-in-shadow:hover:after{
  box-shadow: var(--inner-shadow);
}
.align-items-center{
    align-items: center;
}
.btn-1{
    padding: 10px 25px;
    font-size: 16px;
    font-weight: 500;
    color: var(--skin-color);
    background-color: transparent;
    line-height: 1.5;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
}
.btn-1:after{
    border-radius: 30px;
}
.effect-wrap .effect {
    position: absolute;
    z-index: -1;
}
.effect-1{
    width: 30px;
    height: 30px;
    border: 4px solid #8a49ff;
    right: 10%;
    bottom: 10%;
    animation: spin 10s linear infinite;
}
.effect-2{
   height: 180px;
   width: 180px;
   border: 25px solid var(--skin-color);
   border-radius:  50%;
   left: 50%;
   top: -120px;
   animation: leftBounce 3s ease-in-out infinite;


}
.effect-3{
    border-top: 30px solid transparent;
    border-left: 30px solid #06d79c;
    left: 30%;
    top: 20%;
    animation: spin 15s linear infinite;
}
.effect-3:before{
    content: '';
    border-top: 30px solid transparent;
    border-left: 30px solid #06d79c;
    position: absolute;
    opacity: 0.5;
    left: -35px;
    top: -25px;
}
@keyframes  spin{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }

}
@keyframes leftBounce {
    0%,100%{
        transform: translateX(0);
    }
    50%{
        transform: translateX(25px);
    }
}

.section-title{
    
    padding: 0 15px;
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
    margin-bottom: 60px;

}
.section-title h2{
   
    display: inline-block;
    font-size: 30px;
    font-weight:700;
    color: var(--text-black-900);
    text-transform: uppercase;
    margin: 0;
}
.section-title h2:before{
    content: attr(data-heading);
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--skin-color);
}
/* -------header------*/
.header{
    padding: 20px 15px;
    width: 100%;
    z-index: 99;
    opacity: 0.6;
   

}
.header .logo a{
    display: inline-block;
    text-align: center;
    line-height: 36px;
    height: 40px;
    width: 40px;
    font-size: 24px;
    color: var(--skin-color);
    border-radius: 50%;
    border: 2px solid var(--skin-color);
    font-weight: 600;
    text-transform: uppercase ;
}


.header .hamburger-btn span{
    display: block;
    height: 2px;
    width: 16px;
    background-color: var(--bg-black-900);
    position: relative;
}
.header .hamburger-btn span:before,
.header .hamburger-btn span:after{
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-black-900);


}
.header .hamburger-btn span:before{
    top: -6px;
}
.header .hamburger-btn span:after{
    top: 6px;
}


/*---- navigation menu----*/



/*-------home section-----*/

.home-section .full-screen{
    padding:50px 0;
    min-height: 100vh;
}
.home-section .home-text,
.home-section .home-img{
       flex: 0 0 50%;
       max-width: 50%;
       padding: 0 15px;
}
.home-section .home-text p{
 color: var(--skin-color);
 font-size: 25px;
 text-transform: capitalize;
 margin: 0;
 margin-left: 15px;
}
.home-section .home-text h2{
    font-size: 55px;
    font-weight: 500;
    color: var(--text-black-900);
    margin: 0;
    text-transform: capitalize;
    
}
.home-section .home-text .btn-1{
    margin-top: 30px;
}
.home-section .home-text h1{
    font-size: 20px;
    font-weight: 600;
    color: var(--text-black-700);
    margin: 0;

    
}


.home-section .home-img .img-box {
 
   max-width: 450px;
   display: block;
  margin-left: 102px;
   border-radius: 50%;
   padding: 15px;
}

.home-section .home-img .img-box img{
    border-radius: 50%;
    width: 70%;
    border: 10px solid transparent;
    
 }

 .about-section{

   min-height: 100vh;

 }
 .about-section .about-img{
 
     flex: 0 0 40%;
     max-width: 40%;
     padding: 0 15px;
 }
 .about-section .about-img .img-box{
     padding: 15px;
     border-radius: 5px;

 }
 .about-section .about-img .img-box img{
     width: 100%;
     border: 10px solid transparent;
     border-radius: 5px;
 }
 .about-section .about-img .social-links{
     margin-top: 20px;
     text-align: center;
 }
 .about-section .about-img .social-links a{
     display: inline-block;
     height: 40px;
     width: 40px;
     font-size: 16px;
     text-align: center;
     color: var(--text-black-600);
     margin: 0 4px;
     border-radius: 50%;
     transition: all 0.3s ease;

 }
 .about-section .about-img .social-links a i{
    line-height: 40px;
 }
 .about-section .about-img .social-links a:after{
     border-radius: 50%;
 }
 .about-section .about-img .social-links a:hover{
     color: var(--skin-color);
 }
 .about-section .about-info{
     flex: 0 0 60%;
     max-width: 60%;
     padding: 0 15px;
     margin-top: 63px;
     font-size: 16px;
     
 }
 .about-section .about-info p{
     font-size: 16px;
     line-height: 26px;
     margin-bottom: 15px;
     color: var(--text-black-600);

 }
 .about-section .about-info span{
     font-weight: 600;
 }
 .about-section .about-info .btn-1{
    margin: 30px 20px 0 0;
 }
 

 .about-section .tab-content{
     flex: 0 0 100%;
     max-width: 100%;
 }
 .about-section .skills{
     padding: 0 0 40px;
 }
 .about-section .skills .skill-item{
        flex: 0 0 50%;
        min-width: 50%;
        padding: 0 15px;
        margin-bottom: 40px;
 }
 .about-section .skills .skill-item p{
     font-size: 16px;
     color: var(--text-black-600);
     text-transform: capitalize;
     margin: 0 0 10px;
 }

 .about-section .skills .skill-item .progress{
     height: 35px;
     border-radius: 10px;
     position: relative;

 }
 .about-section .skills .skill-item #w5{
    background-color: var(--skin-color);
    height: 10px;
    width: 18%;
    left: 7px;
    top: 7px;
    position: absolute;
    border-radius: 10px;
   
}
.about-section .skills .skill-item #w10{
    background-color: var(--skin-color);
    height: 18px;
    width: 10%;
    left: 7px;
    top: 7px;
    position: absolute;
    border-radius: 10px;
   
}
.about-section .skills .skill-item #w15{
    background-color: var(--skin-color);
    height: 18px;
    width: 15%;
    left: 7px;
    top: 7px;
    position: absolute;
    border-radius: 10px;
   
}
.about-section .skills .skill-item #w20{
    background-color: var(--skin-color);
    height: 18px;
    width: 20%;
    left: 7px;
    top: 7px;
    position: absolute;
    border-radius: 10px;
   
}
.about-section .skills .skill-item #w25{
    background-color: var(--skin-color);
    height: 18px;
    width: 25%;
    left: 7px;
    top: 7px;
    position: absolute;
    border-radius: 10px;
   
}
.about-section .skills .skill-item #w30{
    background-color: var(--skin-color);
    height: 18px;
    width: 30%;
    left: 7px;
    top: 7px;
    position: absolute;
    border-radius: 10px;
   
}
.about-section .skills .skill-item #w35{
    background-color: var(--skin-color);
    height: 18px;
    width: 35%;
    left: 7px;
    top: 7px;
    position: absolute;
    border-radius: 10px;
   
}
.about-section .skills .skill-item #w40{
    background-color: var(--skin-color);
    height: 18px;
    width: 40%;
    left: 7px;
    top: 7px;
    position: absolute;
    border-radius: 10px;
   
}
.about-section .skills .skill-item #w45{
    background-color: var(--skin-color);
    height: 18px;
    width: 45%;
    left: 7px;
    top: 7px;
    position: absolute;
    border-radius: 10px;
   
}
.about-section .skills .skill-item #w50{
    background-color: var(--skin-color);
    height: 18px;
    width: 50%;
    left: 7px;
    top: 7px;
    position: absolute;
    border-radius: 10px;
   
}
.about-section .skills .skill-item #w55{
    background-color: var(--skin-color);
    height: 18px;
    width: 55%;
    left: 7px;
    top: 7px;
    position: absolute;
    border-radius: 10px;
   
}
.about-section .skills .skill-item #w60{
    background-color: var(--skin-color);
    height: 18px;
    width: 60%;
    left: 7px;
    top: 7px;
    position: absolute;
    border-radius: 10px;
   
}
.about-section .skills .skill-item #w65{
    background-color: var(--skin-color);
    height: 18px;
    width: 65%;
    left: 7px;
    top: 7px;
    position: absolute;
    border-radius: 10px;
   
}
.about-section .skills .skill-item #w70{
    background-color: var(--skin-color);
    height: 18px;
    width: 70%;
    left: 7px;
    top: 7px;
    position: absolute;
    border-radius: 10px;
   
}
.about-section .skills .skill-item #w75{
    background-color: var(--skin-color);
    height: 18px;
    width: 75%;
    left: 7px;
    top: 7px;
    position: absolute;
    border-radius: 10px;
   
}
 .about-section .skills .skill-item #w80{
    background-color: var(--skin-color);
     height: 18px;
     width: 80%;
     left: 7px;
     top: 7px;
     position: absolute;
     border-radius: 10px;
    
 }
 .about-section .skills .skill-item #w85{
    background-color: var(--skin-color);
    height: 18px;
    width: 85%;
    left: 7px;
    top: 7px;
    position: absolute;
    border-radius: 10px;
   
}
.about-section .skills .skill-item #w90{
    background-color: var(--skin-color);
    height: 18px;
    width: 90%;
    left: 7px;
    top: 7px;
    position: absolute;
    border-radius: 10px;
   
}
.about-section .skills .skill-item #w95{
    background-color: var(--skin-color);
    height: 18px;
    width: 95%;
    left: 7px;
    top: 7px;
    position: absolute;
    border-radius: 10px;
   
}
.about-section .skills .skill-item #w100{
    background-color: var(--skin-color);
    height: 18px;
    width: 100%;
    left: 7px;
    top: 7px;
    position: absolute;
    border-radius: 10px;
   
}
 .about-section .skills .skill-item .progress-bar span{
     position: absolute;
     right: 0;
     top: 0;
     font-size: 16px;
     font-weight: 500;
     color: var(--text-black-600);
     margin-top: -40px;
     
 }
 .about-section .experience{
     padding-bottom:80px;
 }
 .about-section .timeline{
     flex: 0 0 100%;
     max-width: 100%;
     position: relative;
 }
 .about-section .timeline:before{
     content: '';
     width: 1px;
     height: 100%;
     left: 50%;
     top: 0;
     background-color: var(--bg-black-100) ;
     position: absolute;
 }
 .about-section .timeline .timeline-item{
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
 }
 .about-section .timeline .timeline-item:nth-child(odd){
     padding-right: calc(50% + 50px);
     text-align: right ;
 }

 .about-section .timeline .timeline-item:nth-child(even){
    padding-left: calc(50% + 50px);
}

 .about-section .timeline .timeline-item-inner{
       padding: 30px;
       border: 5px;
       position: relative;
 }


 .about-section .timeline .timeline-item-inner .icon{
     height: 40px;
     width: 40px;
     background-color: var(--bg-black-50);
    border: 1px solid var(--bg-black-100);
     text-align: center;
     line-height: 40px;
     border-radius: 50%;
     font-size: 16px;
     color: var(--skin-color);
     position: absolute;
     top: 18px;
 }
 .about-section .timeline .timeline-item:nth-child(odd) .icon{
    right: -70px;
 }
 .about-section .timeline .timeline-item:nth-child(even) .icon{
    left: -70px;
 }
 .about-section .timeline .timeline-item-inner span{
     font-weight: 500;
     color: var(--skin-color);
     display: block;
     margin: 0 0 10px;
     text-transform: capitalize;
     font-size: 16px;
 }
 .about-section .timeline .timeline-item-inner h3{
      font-size: 20px;
      color: var(--text-black-700);
      font-weight: 600;
      margin: 0 0 5px;
      text-transform: capitalize;
}
.about-section .timeline .timeline-item-inner h4{
     font-size: 16px;
     font-style: italic;
     color: var(--text-black-600);
     margin: 0;
}
.about-section .timeline .timeline-item-inner p{
     font-size: 16px;
     color: var(--text-black-600);
     line-height: 26px;
     margin: 15px 0 0;
}
.projet-section{
 padding: 80px 0 80px;
 min-height: 100vh;
}

.projet-section .section-title{
    margin-bottom: 40px;
   
}
.projet-section .projet-item{
 flex: 0 0 33.33%;
 max-width: 33.33%;
 padding: 15px;
 display: flex;
 flex-wrap: wrap;
}

.projet-section .projet-item-inner{
    padding:15px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
  
}
.projet-section .projet-item-img img{
    border-radius: 5px;
    width: 100%;
    transition: all 0.3s ease;
    
}
.projet-section .projet-item-inner:hover .projet-item-img img{
    transform: translateY(-25px);
}
.projet-section .projet-item-img{
    position: relative;
    height: 224px;
    overflow: hidden;
}
.projet-section .projet-item-img .view-project{
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500;
    color: var(--skin-color);
    transition: all 0.3s ease;
    position: absolute;
    left: 0;
    bottom: -4px;
    transform: translateY(-5px);
    z-index: 2;
    opacity: 0;
}
.projet-section .projet-item-inner:hover .view-project{
    transform: translateY(0px);
    opacity: 1;
}
.projet-section .projet-item-details{
    display: none; 
}


.contact-section{
    padding: 80px 0 80px;
    min-height: 100vh;
}
.contact-section .contact-item{
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding:15px;
    display: flex;
}
.contact-section .contact-item-inner{
    padding: 30px 15px;
    text-align: center;
    border-radius: 5px;
    width: 100%;
}
.contact-section .contact-item-inner i{
    font-size: 25px;
    color: var(--skin-color);
}
.contact-section .contact-item-inner span{
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-black-700);
    margin:15px 0 10px ;
    text-transform: capitalize;

}
.contact-section .contact-item-inner p{
    font-size: 16px;
    color: var(--text-black-600);
    line-height: 26px;
    margin: 0;
    word-break: break-word;
}
.contact-section .contact-form{
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 50px;
}
.contact-section .w-50{
    padding: 0 15px;
    flex: 0 0 50%;
    max-width: 50%;
}
.contact-section .input-group{
    margin: 0 0 25px;
    transition: all 0.3s ease;
    border-radius: 30px;
}
.contact-section .input-group:after{
    border-radius: 30px;
}
 #input-control1, #input-control2, #input-control3, #input-control5{
   height: 45px;
   display: block;
   width: 100%;
   border-radius: 30px;
   
   background-color: transparent;
   font-size: 16px;
   padding: 0 15px;
   color: var(--text-black-700);

}
#input-control4{
    height: 150px;
    display: block;
    width: 100%;
   
    border-radius: 30px;
    background-color: transparent;
    font-size: 16px;
    padding: 0 15px;
    color: var(--text-black-700);
 
 }
/* .contact-section .input-group #input-control{
    height: 184px;
    padding-top: 15px;
    resize: none;

} */
.contact-section .submit-btn{
    flex: 0 0 100%;
    max-width: 100%;
    text-align: right;
    padding: 0 15px;
}

@media screen and (max-width: 500px) {
    .row{
       flex-direction: column;
       align-items:center;
    }
    .home-section .home-text, .home-section .home-img{
        min-width: 80%;
    }
    .about-section .about-img{
        min-width: 80%;
    }
    .about-section .about-info{
        min-width: 80%;
    }
    .about-section .timeline .timeline-item:nth-child(odd){
        padding-right: 10%;
        margin: 20px;
       
    }
    .about-section .timeline .timeline-item:nth-child(even){
        padding-left: 10%;
        margin: 20px;
       
    }
    .projet-section .projet-item {
       max-width: none;
    }
    .contact-section .contact-item{
        max-width: none;
        min-width: 80%;
    }
    .about-section .timeline .timeline-item-inner{
        margin: 15px;
        padding: 30px;
        border: 5px;
    }
    .about-section .skills .skill-item{
        min-width: 80%;
    }
    .about-section .skills .skill-item{
        min-width: 80%;
    }
    
    
    
  }