/* <link href="https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,300;0,400;0,500;1,300;1,400&display=swap" rel="stylesheet"> 

font-family: 'Noto Sans', sans-serif;*/


/*     <link href="https://fonts.googleapis.com/css?family=Fjalla+One" rel="stylesheet"> 
        font-family: "Fjalla One", Arial;
*/

:root {
    box-sizing: border-box;
    --title-font: 'Roboto Condensed', sans-serif;
    --main-font: 'Cabin', sans-serif;
    --brand-color: #00a78e;
    scroll-behavior: smooth;

}

*,
*::after,
*::before {
    box-sizing: inherit;
    padding: 0;
    margin: 0;
    
}
body {
    color: #ffffff;
    
}
header {
    background: url('./images/header-bg.jpg') no-repeat center top;
    /* background-color: #1b242f; */
    background-size: cover;
    background-position: center;
    min-height: 650px;
    padding-top: 2em;
}
header nav {
    margin: 0 auto;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* position: sticky; */
    max-width: 1140px;
    top: 0;
    /* left: 0;
    right: 0; */
}


nav .logo {
    width: 187px;
}
.logo img {
    width: 100%;
}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 80%;
}
nav ul li {
    margin: 0 1em;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
    position: relative;
    font-size: 1rem;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
    padding: 0 .25em;  
}

nav ul li a::after {
    content: '';
    position: absolute;
    background-color: var(--brand-color);
    height: 3px;
    width: 0;
    left: 0;
    bottom: -8px;
    transition: all 0.5s ease;
}

nav ul li a:hover {
    color: var(--brand-color);
}

nav ul li a:hover::after {
    color: var(--brand-color);
    width: 100%;
}

nav ul li a.active {
    color: var(--brand-color);
}
header article {
    /* display: flex;
    flex-direction: column; */
    max-width: 1140px;
    height: 498px;
    margin: 0 auto;
    margin-top: 65px;
    
    /* padding-left: 3em; */
    background-color: rgba(23, 20, 20, 0.58);
}
header article .aside-left {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 65px;
    width: 100%;
    height: 70%;
    padding-left: 1em;
}


header article .social-media {
    width: 40%;
    margin: 0 auto;
}

header article .social-media ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    list-style-type: none;
    
}

header article .social-media ul::before {
    content: "";
    display: block;
    width: 100px;
    height: 1px;
    margin: 0px auto;
    background-color: white;
}

header article .social-media ul::after {
    content: "";
    display: block;
    width: 100px;
    height: 1px;
    background-color: white;
}

header article .social-media ul li {
    padding: 1.5em;
}

header article .social-media ul li:first-of-type {
    margin-left: 1.5em;
}

header article .social-media ul li:last-of-type {
    margin-right: 1.5em;
}


header article .social-media ul li a {
    color: var(--brand-color);
}

header article .social-media ul li i {
    cursor: pointer;
}

header article .social-media ul li i:hover {
    color: whitesmoke;
    transition: all .5s;
}

.profile-image {
    width: 70%;
    /* flex-basis: 50%; */
    padding-right: 3em;
    
}
.profile-image img {
    width: 100%;
    border-radius: 5px;

}

.aside-left .intro {
    padding: 0 2em;
}

.aside-left .intro h2{
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 3rem;
    padding: .5em 0;
    line-height: 22.85px;
    color: #C7C7C7;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 17.6px;
    font-weight: 500;
}

.aside-left .intro h3 {
    font-family: 2rem;
    color: #FFF;
    line-height: 17.6px;
    font-family: var(--title-font);
}

.aside-left .intro p {
    /* font-family: 'Poppins', sans-serif; */
    /* line-height: 22.85px; */
    margin-top: 1em;
    padding-top: 1em;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-style: italic;
    /* font-weight: 300; */
}

.aside-left .intro h1 {
    font-size: 1em;
    color: #FFF;
    background: #00a78e;
    display: inline-block;
    padding: .5em;
    position: relative;
    box-shadow: 0 8px 17px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    margin: 0.5em 0;
    /* margin-left: 30px; */
    font-family: var(--main-font);
}

.aside-left .intro h1::before {
    width: 0;
    height: 0;
    position: absolute;
    content: '';
    bottom: -10px;
    border-style: solid;
    border-width: 14px 11px 0 12px;
    border-color: #00a78e transparent transparent transparent;
}

/* Main and section */

main {
    background-color: #EBEBEB;

}

/* Project section */
main #projects {
    min-height: 80vh;
    /* background: url('./images/header-bg.jpg') no-repeat top center; */
    /* background-color: #1f306e; */
    /* background-color: #00a78e; */
    /* background: #1b242f; */
    /* background-color: rgba(23, 20, 20, 0.58); */
    /* background: #f1e8e6; */
    background-color: #EBEBEB;

    color: black;
    transition: all 5s ease-in-out;
}

main #projects h2 {
    text-align: center;
    padding-top: 72px;
    font-size: 3rem;
    font-family: 'Noto Sans', sans-serif;
    text-transform: uppercase;
}

main #projects p {
    padding-top: 1.5em;
}

main #projects .circles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 106px;
    font-family: var(--main-font)
    
}

main #projects .circles .circle {
    width: 150px;
    height: 150px;
    background-color: #FCFCFC;
    border-radius: 1000px;
    opacity: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5em;
}

main #projects .circles .one {
    /* top: 1457px;
    left: 174px; */
    width: 100px;
    height: 100px;
    background: url('./images/rock-paper-scissors.png') 0% 0% no-repeat;
    background-size: cover;
    background-color: #FCFCFC;
    border-radius: 1000px;
    opacity: 1;
    
}

main #projects .circles .two {
    width: 100px;
    height: 100px;
    background: url('./images/palette.png');
    background-size: cover;
    background-color: #FCFCFC;
    border-radius: 1000px;
    opacity: 1;
}

main #projects .circles .three {
    width: 100px;
    height: 100px;
    background: url('./images/weather.png');
    background-size: cover;
    background-color: #FCFCFC;
    border-radius: 1000px;
    opacity: 1;
}

main #projects .circles .four {
    width: 100px;
    height: 100px;
    background: url('./images/pool.png');
    background-size: cover;
    background-color: #FCFCFC;
    border-radius: 1000px;
    opacity: 1;
}

main #projects .circles .five {
    width: 100px;
    height: 100px;
    background: url('./images/open-book.png');
    background-size: cover;
    background-color: #FCFCFC;
    border-radius: 1000px;
    opacity: 1;
}

main #projects .circles .rock {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: .5em;
    margin-left: .5em;
}

main #projects .circles .color-palette {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: .5em;
    margin-left: .5em;
}

main #projects .circles .weather {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: .5em;
    margin-left: .5em;
}

main #projects .circles .magic {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: .5em;
    margin-left: .5em;
}

main #projects .circles .hadith {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: .5em;
    margin-left: .5em;
}


#contact {
    width: 100%;
    color: black;
    background-color: #FCFCFC;
    /* background-color: #EBEBEB; */
    display: flex;
    justify-content: center;
    
}



#contact .overlay {
    width:60%;
    
    background-color: #FCFCFC;
    /* background-color: #D0D0D0; */
    /* background-color: rgba(23, 20, 20, 0); */
    /* background-color: #fff; */
    text-align: center;
    height: 60vh;
    font-size: 1.5em;
    margin-bottom: 2em;
}  
.overlay h2 {
    padding-top: 62px;
    padding-bottom: 1em;
    font-size: 2.6rem;
    font-family: 'Noto Sans', sans-serif;
    text-transform: uppercase;

} 

.overlay hr {
    color: #fff;
    padding: .5em 0;
}

form {
    line-height: 37px;
    font-size: inherit;
    

    
}


footer {
    height: 100px;
    background-color: #3D3D3D;
    background-color: #FFF;
    color: black;
    font-family: var(--main-font);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 1em;
    border-top: 1px dashed #777;
    
    
}

input {
    width: 50%;
    color: #777;
    margin-bottom: 1em;
    border: 2px solid var(--brand-color);
    padding: 12px 10px;
    /* margin-bottom: 24px; */
    outline: none;
}
label {
    font-size: 1.3rem;
    
    
}

textarea {
    width: 50%;
    /* width: 50%; */
    border: 2px solid var(--brand-color);
    color: #777;
    padding: 19px 10px;
    outline: none;
    margin: 0 auto;
    text-align: left;
}