*{
    margin: 0px;
    padding: 0px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
body{
    background: #080808;
    color:#fff ;
}
#header{
    height: 100vh;
    background-size: cover;
    background-size: contain;
    background-position: center;
    background-attachment:fixed;
    background-color:black;
}
html{
    scroll-behavior: smooth;
}
.container{
    padding: 1em 10%;
    text-decoration: none;
}
nav{
    display: flex;
    text-decoration: none;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.logo{
    width: 7em;
}
.links li{
    display: inline-block;
    list-style: none;
    margin-left: 1em;
}
.links li a{
    text-decoration: none;
    color:white;
    position: relative;
}
                                         /* Start A links */
.links li a::after{
    content:'';
    width: 0;
    height: 3px;
    background: #ea4646;
    position: absolute;
    left: 0;
    bottom: -6px;
}
.links li a:hover::after{
    width: 100%;
    transition: 0.7s;
}

.link-style:hover::after{
    content: '';
    width: 0%;
    height: 3px;
    background:white;
    left: 0;
    bottom: -6px;
}
.link-style:hover{
    width: 100%;
    transition: 0.7s;
}
.head-text{
    margin-top: 20%;
    font-size: 2.1em;
    
}.head-text p{
    margin-top: 2em;
}


#about{
    margin: 3em 0em;
}
.row{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
}
.col1{
    flex-basis: 35%;
}
.col1 img{
    width: 100%;
    border-radius: 2em;
}
.col2{
    flex-basis: 60%;
}
.tab-titles{
    display: flex;
    margin: 2.7em 0em 2.7em 0em;
}
.t-Links{
    margin-right :1.7em ;
    font-size: 1.2999em;
    font-weight: 400;
    cursor: pointer;
    position: relative;
}
.t-Links::after{
    content: '';
    width: 0%;
    height: 3px;
    background: #ff004f;
    position: absolute;
    left: 0;
    bottom: -7px;
    transition: 0.6s;
}
.t-Links.actve-links::after{
    width: 50%;
}
.tab-contents ul li{
    margin: 1em 0em;
    list-style: none;
}
.tab-contents ul span{
    color: #ff004f;
}
.tab-contents{
    display: none;
}
.tab-contents.actve-Tab{
    display: block;
}
#services{
    padding: 2em 0em;
}
.service-lists{
    display: grid;
    grid-template-columns: repeat(auto-fit , minmax(250px ,1fr));
    grid-gap: 3em;
    margin-top: 2em;
}
.service-lists div{
    background-color: #121212;
    padding: 1.6em;
    border-radius: 10px; ;
    transition: background 0.5s , transform 0.5s;
}
.service-lists div i{
    font-size: 2.7em;
    margin-bottom: .7em;
    font-weight: 100;
}
.service-lists div h2{
    font-size: 2em;
    font-weight: 500;
}
.service-lists p{
    color:rgba(239, 239, 239, 0.813);
}
.service-lists a{
    display: inline-block;
    color: white;
    text-decoration: none;
}
.servicesLink{
    margin-top: 1.5em;
}
.service-lists div:hover{
    background:#ff004f;
    transform: translateY(-1em);
}

#portfolio{
    padding-top: 1em;
}
.work-list{
    display: grid;
    grid-template-columns: repeat(auto-fit , minmax(250px, 1fr));
    grid-gap: 1.2em;
}
.work img{
    display:inline-block;
    width: 100%;
    border-radius: 1em;
    transition: transform 0.5s;
}
.social-media p{
    transition: transform 0.5s;
    color:rgba(239, 239, 239, 0.813);;
}
.social-media i{
    transition:transform 0.5s;
    color:white;
}
.work:hover img{
    transform: scale(.9);
}
.work:hover .social-media{
    justify-content: center;
    text-align: center;
    transform: scale(.9);
    border-radius: 1em;
    background: rgba(255, 255, 255, 0.041);
}
.work:hover .social-media h3{
    color: #ff004f;
}
.work:hover .social-media p{
    color: white;
}
.social-media:hover i{
    color: #ff004f;
}

.rows{
    display: grid;
    grid-template-columns: repeat(auto-fit , minmax(250px ,1fr));
    grid-gap: 3em;
    margin-top: 2em;
}
.rows h1{
    font-size: 2.5em;
}
.rows .row-left{
    flex-basis: 35%;
    width: 100%;
}
.rows .row-right{
    flex-basis: 65%;
    width: 100%;
}
.row-left p{
    margin-top: 1em;
}
.row-left p i{
    margin-left: .5em;
    color: #ff004f;
    font-size: 1.2em;
    cursor: pointer;
}
.social-icons{
    margin-top: 2.3em;
}
.social-icons a{
    margin-bottom: 1.3em;
    margin-right: 1.3em;
    font-size: 1.7em;
    display: inline-block;
    color: white;
    transition: background .5s , transform .5s;
}
.social-icons a:hover{
    color:#ff004f;
    transform: translateY(-.4em);
}
.cv{
    font-weight: 500;
    display: inline-block;
    color: white;
    padding: .5em;
    background-color:#ff004f;
    text-decoration: none;
    border-radius: .4em;
}
.cv:hover{
    color:#ff004f;
    background-color: white;
}
.row-right form{
    margin-top: .8em;
    width: 100%;
}
form input , form textarea{
    width: 100%;
    border: none;
    outline:none;
    font-size: 1.6em;
}
.row-right input , textarea {
    background-color: #262626;
    margin-bottom: 1.2em;
    color: white;
    border-radius: .3em;
}
.cv2{
    margin-top: 1.2em;
    cursor: pointer;
}
.copy-right{
    background-color: #262626;
    padding: 1.3em;
    text-align: center;
}
.copy-right i{
    color: #ff004f;
}
.row-right input {
    padding: .8em;
    font-size: 1em;
}
.row-right textarea {
    padding: .8em;
    font-size: 1em;
}