/* Start Variables */
:root{
    --man-color:#10cab7;
    --secondery-color:#2c4755;
    --section-padding:60px;
    --section-background: #f6f6f6;
}
/* End Variables */
/* start     */
html{
    scroll-behavior: smooth;
    font-family: Arial, Helvetica, sans-serif;
}
body{
    text-decoration: none;
    background-color: #000;
    font-family: Arial, Helvetica, sans-serif;  
 
}
.special-heading{
    color: #ebeced;
    font-size: 100px;
    text-align: center;
    font-weight: 800;
    letter-spacing: -3px;
    margin: 0;
}
.special-heading + p{
    margin: -30px 0 0 ;
    font-size: 20px;
    text-align: center;
    color: #797979;
}
@media(max-width:767px){
    .special-heading{
        font-size: 60px;
    }
    .special-heading + p{
        margin-top: -20px;
    }
}   
/* end components */
/* start Global Rules */
*{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.paernt{
    background-color: lightgreen;
}
.container{
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto; 
}
/* Small */
@media (min-width:768px){
    .container{
        width: 750px;
    }
}
/* Medium */
@media (min-width:992px){
    .container{
        width: 970px;
    }
}
/* Large */
@media (min-width:1500px){
    .container{
        width: 1498px;
    }
}
/* End Global Rules */
/* Satrt header */
.header{
    background-color: #000;
    /* padding: 20px; */
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    /* background: transparent; */
    /* background-color: #000000c9;  */
    /* backdrop-filter: blur(5px); */
    transition: all 0.3s ease;
    z-index: 1000;
}
.header .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-height: 60px;
}
.header .logo{
    width: 100px;
}
.header nav{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
}
.header nav .toggle-menu{
    color: white;
    font-size: 30px;
}
@media(min-width:768px){
    .header nav .toggle-menu{
        display: none;
    }
}
.header nav ul{
    display: flex;
}
@media(max-width:767px){
    .header nav ul{
        display:none;
        
    }
    .header nav .toggle-menu:hover + ul{
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: -60px;
        width: 100%;
        background-color: #000;
        /* background-color: rgb(0 0 0 / 50%); */
        list-style: none;
    }
    .header nav ul li a{
        padding: 20px !important;
        background-color: #000 ;
    }
}
.header nav ul li a{
    /* padding: 15px; */
    text-decoration: none;
    list-style: none;
    color: #f6f6f6;
    display: block;
    /* color: white; */
    /* text-decoration: none; */
    /* font-size: 14px; */
    /* transition: 0.3s; */
    transition: 0.5s;
    padding: 40px 10px;
    position: relative;
    z-index: 2;
}
/* .header nav ul li a.active, */
.header nav ul li a:hover{
    color: chartreuse;
    /* animation: move-link 0.3s alternate infinite; */
    transform: translatey(-8px);
    /* border-bottom: 1px solid chocolate; */
}
/* End header */
 /* Start landing Section */
.landing{
    /* background-image:url(../Photo/Landing-01--without-background.gif) ; */
    background-color: #000;
    /* background-size: cover; */
    /* height: calc(100vh - 64px); */
    height: 100vh;
    /* height: 100vh; */
}
.landing .intro-text{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50% , -50%);
    text-align: center;
    width: 720px;
    max-width: 100%;
    color: white;
} 
.landing .intro-text h1{
margin: 0;
padding: 0;
font-size: 90px;
font-weight: lighter;
font-style: italic;
}
@media(max-width:767px){
    .landing .intro-text h1{
        font-size: 50px;
    }
}
.landing .intro-text p{
    font-size: 120px;
    font-weight: bold;
    margin: 0;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
.landing .intro-text h3{
    font-weight: lighter;
    /* margin: 0; */
}
 /* End landing Section */
 /* start about */
.About{
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
    background-color: white;
}
.About .About-content{
    margin-top: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
@media(max-width:991px){
    .About .About-content{
        flex-direction: column;
        text-align: center;
    }
}
.About .About-content .image{
    position: relative;
    width: 250px;
    height: 300px;
    border: 10px solid black;
    background-color: #000;
}
@media(max-width:991px){
    .About .About-content .image{
        margin: 0 auto 60px ;
    }
}
.About .About-content .image img{
    max-width: 100%; 
}
/* .About .About-content .image::before{
    content: "";
    background-color: #000;
    width: 100px;
    height: calc(100% + 80px);
    position: absolute;
    top:-40px;
    left: -20px;
    z-index: -1;
} */
/* .About .About-content .image::after{
    content: "";
    border-left: 60px solid #000;
    border-bottom: 60px solid #000;
    width: 120px;
    height: 300px;
    position: absolute;
    top: -40px;
    right: -150px;
    z-index: -1;
} */
@media(max-width:991px){
    .About .About-content .image::before ,
    .About .About-content .image::after{
        display: none;
    }
}
.About .About-content .text{
    flex-basis: calc(100% - 500px);
    margin: 50px;
    max-width:800px;
}
.About .About-content .text p:first-of-type{
    font-weight: bold;
    line-height: 2;
    margin-bottom: 50px;
}
.About .About-content .text hr{
    width: 50%;
    display: inline-block;
    border-color: #000;
}
.About .About-content .text p:last-of-type{
    line-height: 2;
    color: #000;
}
/* end about */
/* start services */
.services{
    padding-top: 100px;
    padding-bottom: 60px;
    background-color: #000;
}
.services .services-content{
    display: grid;
    grid-template-columns:repeat(auto-fill , minmax(300px , 1fr));
    gap: 100px;
    margin-top: 100px;
}
.services .services-content .srv{
    display: flex;
    margin-bottom: 50px;
    /* border: 1px solid white; */
    /* padding: 10px; */
}
.services .services-content .srv .text{
    flex: 1;
}
.services .services-content .srv .text h3 {
    margin: 0 0 20px;
    font-size: 20px;
    color: chartreuse;
    text-transform: uppercase;
}
/* .services .services-content .srv .text h3 {
    margin: 0 0 20px;
    color: white;
} */
/* .services .services-content .srv .text h3:first-of-type {
    margin: 0 0 20px;
    color: rgb(118, 52, 52);
} */
.services .services-content .srv .text p{
    color: white;
    font-weight: 300;
    line-height: 1.6;
}
/* .services .services-content .image{
    text-align: center;
    position: relative;
} */
/* .services .services-content .image::before{
    content: "";
    background-color: var(--secondery-color);
    width: 100px;
    height: calc(100% + 100px);
    position: absolute;
    top:-50px;
    right: 0;
    z-index: -1;
}
.services .services-content .image img{
    width: 260px;
}
@media (max-width:1199px) {
    .image-colum{
        display: none;
    }
} */
/* end services */
 /* start feature */
.feature{
    padding-top: 60px;
    padding-bottom: 60px;
    background-color:#fff;
}
.feature .container{
    display: grid;
    grid-template-columns:repeat(auto-fill , minmax(300px , 1fr));
    gap: 100px;
    /* text-align: center; */
    /* padding: 20px; */
}
.feature .feat{
    padding: 20px;
    text-align: left;
}
.feature .feat i{
    color: #000;
}
.feature .feat h3{
    font-weight: 800;
    margin: 30px 0 0 0;
    color: #000;
}
.feature .feat p{
    /* margin: 0; */
    line-height: 1.8;
    color: #000;
    font-size: 17px;
    font-weight: bold;
}
/* end feature */
/* start portfolio  */
.portfolio{
    /* padding-top:var(--section-padding) ; */
    /* padding-bottom: var(--section-padding); */
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #000;
}
.portfolio .portfolio-content{
    display: grid;
    grid-template-columns:repeat(auto-fill , minmax(400px , 1fr));
    gap: 30px;
    /* margin-left: 90px; */
    margin-top: 90px;  
}
.portfolio .portfolio-content .card{
    color: white;
    
}
.portfolio .portfolio-content .card img{
    max-width: 100%;
}
.portfolio .portfolio-content .card .info{
    padding: 20px;
}
.portfolio .portfolio-content .card .info h3{
    margin: 0;
    /* padding-left: 20px; */

}
.portfolio .portfolio-content .card .info p{
    /* padding-left: 20px; */
    color: #444;
    line-height: 1.4;
    margin-bottom: 0;
}
/* end portfolio  */

/* start contact */
.contact{
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #000;
}
.contact .info{
    padding-top: 60px;
    padding-bottom: 60px;
    text-align: center;
}
.contact .info .label{
    font-size: 30px;
    font-weight: 800;
    color: white;
    letter-spacing: -2px;
    margin-bottom: 15px;
}
.contact .info .link{
    display: block;
    text-decoration: none;
    font-size: 30px;
    font-weight: 800;
    color: white;
}
.contact .info .social{
    display: flex;
    justify-content: center;
    margin-top: 20px;
    font-size: 16px;
    color: white;
}
.contact .info .social i{
    margin-left: 10px;
    color: white;
}
@media(max-width:767px){
    .contact .info .label,
    .contact .info .link{
        font-size: 30px;
    }
}

/* end contact */
/* start footer */
.footer{
    background-color:#000;
    color: white;
    padding: 30px 10px;
    text-align: center;
    font-size: 18px;
}
.footer span{
    font-weight: bold;
    color: #000;
}
/* end footer */