*{
    margin: 0;
    padding: 0;
    font-family: 'poppins',sans-serif;
    box-sizing: border-box;
    
}
html
{
    scroll-behavior: smooth;
}
body
{
    background: #080808;
    color: #fff
    
}
#header
{
    width: 100%;
    height: fit-content;
    background-image: url(images/IMG_3221.png); 
    background-size: cover;
    background-position: center;
    
    
   
}
.container
{
    padding: 10px 10%;
    
}

nav
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap:wrap ;
    
}

.logo
{
    width: 240px;
    
}
nav ul li{
   display: inline-flex; 
    list-style: none;
    margin: 10px 20px;
}
nav ul li a
{
   color: #fff;
   text-decoration: none;
   font-size: 18px;
   position: relative;
}
nav ul li a::after
{
    content: '';
    width: 0;
    height: 3px;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;

}
nav ul li a:hover::after
{
    width: 100%;
}
.header-text
{
    margin-top: 10%;
    font-size: 30px;
}
.header-text h1{
    font-size: 60px;
    margin-top: 10%;
}
.header-text h1 span
{
    color: orchid;
}

/* -------------- about ---------- */
#about
{
    padding: 80px;
    color: white;
}
.row
{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.about-col-1
{
    flex-basis: 35%;
    
}
.about-col-1 img
{
   width: 100%;
   border-radius: 15px;

}
.about-col-2{
    flex-basis: 60%;
}
.about-col-2 p3{
    display: none;
}
.about-col-2 p{
    text-align: justify;
}
.substittle
{
    font-size: 60px;
    font-weight: 600;
    text-align: justify;
    color: orange;
}
.tab-titles
{
    display: flex;
    margin: 20px 0 40px;
}
.tab-linkes
{
    margin-right: 50px;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    position: relative;

}
.tab-linkes::after
{
    content: '';
    width: 0;
    height: 3px;
    background: #b5c130;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;


}
.tab-linkes.active-link::after
{
      width: 50%;
}
.tab-contents ul li
{
    list-style: none;
    margin: 10px 0;
}
.tab-contents ul li span
{
    color: #bd4e4ed5;
}
.tab-contents
{
    display: none;
}
.tab-contents.active-tab
{
    display: block;
}


/* -------------portfolio-------- */
#portfolio
{
    padding: 50px 0;
}
.work-list
{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    grid-gap: 40px;
    margin-top: 50px;

}
.work{
    border-radius: 10px;
    position: relative;
    overflow: hidden;

} 
.wrk img{
    
    border-radius: 10px ;
    display: block;
    transition: transform 0.5s;
}

.layer
{
    width: 100%;
    height: 0;
    background: linear-gradient(rgba(0,0,0,0.6),#794c6f);
    border-radius: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    font-size: 14px;

    transition: height 0.5s;
}

.layer h3{
    font-weight: 500;
    margin-bottom: 20px;

}
.layer a{
    margin-top: 20px;
    color: blueviolet;
    text-decoration: none;
    font-size: 18px;
    border-radius: 60px;
    cursor: pointer;
    width:50px;
    
    background: #fff;


}

.work:hover img{
    transform: scale(1.1);
}
.work:hover .layer
{
    height:100%;
}
.btn {
    display: block;
    margin: 50px auto;
    width: fit-content;
    border: 1px solid yellow;
    padding: 14px 50px;
    border-radius: 15px;
    text-decoration: none;
    color: white;
}

.btn:hover
{
    background: yellow;
    color: #080808;
}

/* -----------contact-------*/

.contact-left
{
    flex-basis: 35%;
    
}
.contact-right
{
    flex-basis: 60%;

}
.contact-left p{
    margin-top: 30px;
}
.contact-left p i{
    color: #eeaec4;
    margin-right:15px ;
    font-size: 25px;
}

.social-icons
{
    margin-top: 30px;
}

.social-icons a{
    text-decoration: none;
    font-size: 30px;
    margin-right:15px;
    color: #ababab;
    display: inline-block;
}

.social-icons a:hover{
    color: yellow ;
    transform: translateY(-5px);
}
.btn.btn2{
    display: inline-block;
    background-color: yellow;
    color: black;
    cursor: pointer;
}

.contact-right form{
    width: 100%;

}
form input,form textarea
{
    width: 100%;
    border:0;
    outline: none;
    background: #262626 ;
    padding: 15px;
    margin: 15px 0;
    color: #fff;
    font-size: 18px;
    border-radius: 6px;

}

form btn2
{
    padding: 14px 60px;
    font-size: 18px;
    margin-top: 20px ;
    cursor: pointer;
}



#msg
{
    color: #51943ac9;
    display: block;
    margin-top: -40px;
} 

@media only screen and (max-width: 480px) {
    body{
        page-orientation: portrait;
    }
    #header
    {   background-image: url(images/black.background.jpg);
        background-color: #080808;
        height: fit-content;
        
    }

    #header .logo
    {
      height: fit-content;
      width: 141px;
      tab-size: 10px;
     
    }
    #header h1{
        font-size: 50px;
    }
    #header nav ul
    {
        display: flex;
        flex-wrap: wrap;
    }
    #sidemenu
    {
        display: flex;
         font-size: large;
         flex-wrap: wrap;
         justify-content: start;
    }
    
    .logo
    {
        width: 240px;
        
    }
    nav ul li{
       display: inline-flex; 
        list-style: none;
        margin: 10px 20px;
    }
    nav ul li a
    {
       color: #fff;
       text-decoration: none;
       font-size: 18px;
       position: relative;
    }
    nav ul li a::after
    {
        content: '';
        width: 0;
        height: 3px;
        background: #fff;
        position: absolute;
        left: 0;
        bottom: -6px;
        transition: 0.5s;
    
    }
    nav ul li a:hover::after
    {
        width: 100%;
    }

     
    #about 
    {
        margin: 0;
        padding: 0;
        display: flex;
        
    }
    
    #about .about-col-2 p{
        display: none;
        
    }
    #about h1
    {
        font-size: medium;
    }
    #about .about-col-2 span{
        text-align: justify;
        width: 120%;
        font-size: medium;
    }
    #about .about-col-1 img{
        justify-content: center;
        margin-left:70% ;
        size: 45px;
        
    }
    #about .about-col-2 p3{
        display: block;
        font-size: 20px;
        text-align: justify;
        margin-left: 10px;
        width: 100%;
        
    }
    #about .about-col-2 p1{
        font-size: 20px;
        width: 120%;
        text-align: justify;
        
    } 
    #portfolio
    {
        display: flex;
        width: 100%;
        justify-content: space-between;
        justify-content: start;
    }
   
    .work img{
        justify-content: center;
      
        width: 200px;;
        height: 30px;

    }
    #contact 
    {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        justify-content: space-evenly;
        justify-content: space-around;
    }
form input,form textarea
{
    width: 200%;
    border:0;
    outline: none;
    background: #262626 ;
    padding: 25px;
    margin: 15px 0;
    color: #fff;
    font-size: large;
    border-radius: 6px;

}
form .btn2{
   width:155px;
   height:55px;
}


}

@media only screen and (max-width: 900px) {
    body{
        page-orientation: portrait;
    }
    #header
    {   background-image: url(images/black.background.jpg);
        background-color: #080808;
        height: fit-content;
        
    }

    #header .logo
    {
      height: fit-content;
      width: 141px;
      tab-size: 10px;
     
    }
    #header h1{
        font-size: 50px;
    }
    #header nav ul
    {
        display: flex;
        flex-wrap: wrap;
    }
    #sidemenu
    {
        display: flex;
         font-size: large;
         flex-wrap: wrap;
         justify-content: start;
    }
    
    .logo
    {
        width: 240px;
        
    }
    nav ul li{
       display: inline-flex; 
        list-style: none;
        margin: 10px 20px;
    }
    nav ul li a
    {
       color: #fff;
       text-decoration: none;
       font-size: 18px;
       position: relative;
    }
    nav ul li a::after
    {
        content: '';
        width: 0;
        height: 3px;
        background: #fff;
        position: absolute;
        left: 0;
        bottom: -6px;
        transition: 0.5s;
    
    }
    nav ul li a:hover::after
    {
        width: 100%;
    }

     
    #about 
    {
        margin: 0;
        padding: 0;
        display: flex;
    }
    
    #about .about-col-2 p{
        display: none;
        
    }
    #about h1
    {
        font-size: medium;
    }
    #about .about-col-2 span{
        text-align: justify;
        width: 120%;
        font-size: medium;
    }
    #about .about-col-1 img{
        justify-content: start;
         
        size: 45px;
        
    }
    #about .about-col-2 p3{
        display: block;
        font-size: 10px;
        text-align: justify;
        width: 100%;
        
    }
    #about .about-col-2 p1{
        font-size: 20px;
        width: 120%;
        
        
    } 
    #portfolio
    {
        display: flex;
        width: 100%;
        justify-content: space-between;
        
    }
   
    .work img{
        justify-content: center;
        width: 400px;;
        height: 350px;
       
        flex-wrap: wrap;

    }
    #contact 
    {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        justify-content: space-evenly;
        justify-content: space-around;
    }
    form input,form textarea
{
    width: 170%;
    border:0;
    outline: none;
    background: #262626 ;
    padding: 15px;
    margin: 15px 0;
    color: #fff;
    font-size: large;
    border-radius: 6px;

}
form .btn2{
   width: fit-content;
   margin-left: 55px;
}


}

@media only screen and ((min-width: 901px)and (max-width:1001px))  {
    body{
        page-orientation: portrait;
    }
    #header
    {   background-image: url(images/black.background.jpg);
        background-color: #080808;
        height: fit-content;
        
    }

    #header .logo
    {
      height: fit-content;
      width: 141px;
      tab-size: 10px;
     
    }
    #header h1{
        font-size: 50px;
    }
    #header nav ul
    {
        display: flex;
        flex-wrap: wrap;
    }
    #sidemenu
    {
        display: flex;
         font-size: large;
         flex-wrap: wrap;
         justify-content: start;
    }
    
    .logo
    {
        width: 240px;
        
    }
    nav ul li{
       display: inline-flex; 
        list-style: none;
        margin: 10px 20px;
    }
    nav ul li a
    {
       color: #fff;
       text-decoration: none;
       font-size: 18px;
       position: relative;
    }
    nav ul li a::after
    {
        content: '';
        width: 0;
        height: 3px;
        background: #fff;
        position: absolute;
        left: 0;
        bottom: -6px;
        transition: 0.5s;
    
    }
    nav ul li a:hover::after
    {
        width: 100%;
    }

     
    #about 
    {
        margin: 0;
        padding: 0;
        display: flex;
    }
    
    #about .about-col-2 p{
        display: block;
        text-align: justify;
        
    }
    #about h1
    {
        font-size: medium;
    }
    #about .about-col-2 span{
        text-align: justify;
        width: 120%;
        font-size: medium;
    }
    #about .about-col-1 img{
        justify-content: start;
      
        size: 45px;
        
    }
    #about .about-col-2 p3{
        display: none;
        font-size: 10px;
        text-align: justify;
        width: 100%;
        
    }
    #about .about-col-2 p1{
        font-size: 20px;
        width: 120%;
        
    } 
    #portfolio
    {
        display: flex;
        width: 100%;
        justify-content: space-between;
        
    }
   
    .work img{
        justify-content: center;
        width: 700px;;
        height: 550px;

    }
    #contact 
    {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        justify-content: space-evenly;
        justify-content: space-around;
    }
    form input,form textarea
{
    width: 100%;
    border:0;
    outline: none;
    background: #262626 ;
    padding: 15px;
    margin: 15px 0;
    color: #fff;
    font-size: large;
    border-radius: 6px;

}
form .btn2{
   width: fit-content;
}


} 

@media only screen and ((min-width: 700px)and (max-width:900px)) {
    body{
        page-orientation: portrait;
    }
    #header
    {   background-image: url(images/black.background.jpg);
        background-color: #080808;
        height: fit-content;
        
    }

    #header .logo
    {
      height: fit-content;
      width: 141px;
      tab-size: 10px;
     
    }
    #header h1{
        font-size: 50px;
    }
    #header nav ul
    {
        display: flex;
        flex-wrap: wrap;
    }
    #sidemenu
    {
        display: flex;
         font-size: large;
         flex-wrap: wrap;
         justify-content: start;
    }
    
    .logo
    {
        width: 240px;
        
    }
    nav ul li{
       display: inline-flex; 
        list-style: none;
        margin: 10px 20px;
    }
    nav ul li a
    {
       color: #fff;
       text-decoration: none;
       font-size: 18px;
       position: relative;
    }
    nav ul li a::after
    {
        content: '';
        width: 0;
        height: 3px;
        background: #fff;
        position: absolute;
        left: 0;
        bottom: -6px;
        transition: 0.5s;
    
    }
    nav ul li a:hover::after
    {
        width: 100%;
    }

     
    #about 
    {
        margin: 0;
        padding: 0;
        display: flex;
    }
    
    #about .about-col-2 p{
        display: none;
        
    }
    #about h1
    {
        font-size: medium;
    }
    #about .about-col-2 span{
        text-align: justify;
        width: 120%;
        font-size: medium;
    }
    #about .about-col-1 img{
        justify-content: start;
         
        size: 45px;
        
    }
    #about .about-col-2 p3{
        display: block;
        font-size: 10px;
        text-align: justify;
        width: 100%;
        
    }
    #about .about-col-2 p1{
        font-size: 20px;
        width: 120%;
        
        
    } 
    #portfolio
    {
        display: flex;
        width: 100%;
        justify-content: space-between;
        
    }
   
    .work img{
        justify-content: center;
        width: 400px;;
        height: 350px;
       margin-left: 80px;
        flex-wrap: wrap;

    }
    #contact 
    {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        justify-content: space-evenly;
        justify-content: space-around;
    }
    form input,form textarea
{
    width: 100%;
    border:0;
    outline: none;
    background: #262626 ;
    padding: 15px;
    margin: 15px 0;
    color: #fff;
    font-size: large;
    border-radius: 6px;

}
form .btn2{
   width: fit-content;
   margin-left: 55px;
}


}

@media only screen and ((min-width: 100px)and (max-width:479px)) {
    
    #header
    {   background-image: url(images/black.background.jpg);
        background-color: #080808;
        height: fit-content;
        
    }

    #header .logo
    {
      height: fit-content;
      width: 141px;
      tab-size: 10px;
     
    }
    #header h1{
        font-size: 50px;
    }
    #header nav ul
    {
        display: flex;
        flex-wrap: wrap;
    }
    #sidemenu
    {
        display: flex;
         font-size: large;
         flex-wrap: wrap;
         justify-content: start;
    }
    
    .logo
    {
        width: 240px;
        
    }
    nav ul li{
       display: inline-flex; 
        list-style: none;
        margin: 10px 20px;
    }
    nav ul li a
    {
       color: #fff;
       text-decoration: none;
       font-size: 18px;
       position: relative;
    }
    nav ul li a::after
    {
        content: '';
        width: 0;
        height: 3px;
        background: #fff;
        position: absolute;
        left: 0;
        bottom: -6px;
        transition: 0.5s;
    
    }
    nav ul li a:hover::after
    {
        width: 100%;
    }

     
    #about 
    {
        margin: 0;
        padding: 0;
        display: flex;
    }
    
    #about .about-col-2 p{
        display: none;
        
    }
    #about h1
    {
        font-size: medium;
    }
    #about .about-col-2 span{
        text-align: justify;
        width: 120%;
        font-size: medium;
    }
    #about .about-col-1 img{
        justify-content: start;
         
        size: 45px;
        
    }
    #about .about-col-2 p3{
        display: block;
        font-size: 10px;
        text-align: justify;
        width: 100%;
        
    }
    #about .about-col-2 p1{
        font-size: 20px;
        width: 120%;
        
        
    } 
    #portfolio
    {
        display: flex;
        width: 100%;
        justify-content: space-between;
        
    }
   
    .work img{
        justify-content: center;
        width: 400px;;
        height: 350px;
       
        flex-wrap: wrap;

    }
    #contact 
    {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        justify-content: space-evenly;
        justify-content: space-around;
    }
    form input,form textarea
{
    width: 150%;
    border:0;
    outline: none;
    background: #262626 ;
    padding: 15px;
    margin: 15px 0;
    color: #fff;
    font-size: large;
    border-radius: 6px;

}
form .btn2{
   width: fit-content;
   margin-left: 55px;
}


}

@media only screen and ((min-width: 1002px)) {
    
    
    #portfolio
    {
        display: flex;
      
        justify-content: space-between;
        
    }
   .work-list{
    display: flex;
    flex-wrap: wrap;
   }
    .work img{
      
        width: 500px;
        height: 400px;
       flex-basis: 30%;
       flex-wrap: wrap;
       

    }
}