* {
    scroll-behavior: smooth;
}
body {
    margin: 0px;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/*Universal Styles*/
.centerAlign {
    display: flex;
    flex-direction: row;
    align-items: center;
}
/*Welcome Styles*/
div.welcome {
    width: 100%;
    min-height:100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #0e0e0e;
    overflow: hidden;
    position: relative;
}
div.welcome::before {
    content: '';
    opacity: .1;
    position: absolute;
    top:0px;
    left:0px;
    width: 100%;
    height: 100%;
    background: url('Assets/WP/Background.jpg');
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
    background-attachment:fixed;
    background-repeat: no-repeat;
}
div.header {
    width:100%;
    min-height: 60px;
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    position: absolute;
    left: 20px;
    top: 0px;
}
div.header span {
    height: 60px;
    width:150px;
    background-color: black;
    color: white;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-left:40px;
    font-weight:bold;
    background-color: rgba(0,0,0,0.5);
}
div.header span img {
    width:32px;
    height: auto;
}

div.welcomeCont {
    width:100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
div.welcomeCont span.hello {
    color: #b80b56;
    font-weight: bold;
    font-size: 1em;
    margin-bottom: 10px;
}
div.welcomeCont h1 {
    color: white;
    letter-spacing: 2px;
    margin: 0px;
    font-size: 45px;
}
div.welcomeCont span.position {
    color:white;
    font-size: 14px;
    letter-spacing: 2px;
    margin-top:6px;
    margin-bottom: 40px;
}
div.welcomeCont a {
    text-decoration: none;
}
div.welcomeCont button {
    border: 2px solid #616161;
    background-color: transparent;
    color:white;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    padding:10px 15px;
    font-size: 12px;
    outline: none;
}
div.welcomeCont button i {
    font-size: 20px;
}

div.welcomeCont a.featured-msg {
    color: white;
    margin-top: 20px;
    border-bottom: 1px dotted white;
    font-size: 14px;
}

@media only screen and (max-width: 566px)
{
    div.welcomeCont h1 {
        font-size: 40px;
    }
    div.welcomeCont span.position {
        width:90%;
        text-align: center;
        font-size: 12px;
    }
}

/* About Styles */
div.about {
    width: 100%;
    height: auto;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding:12px 0px;
    margin-top: 20px;
}
div.about h2 {
    width:80%;
    display: flex;
    flex-direction: row;
    align-items: center;
}
div.about h2 img {
    width:35px;
    height: auto;
    border-radius: 50%;
    margin-right: 17px;
}
div.aboutContainer {
    width:80%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
}
div.aboutContainer div.aboutBreif {
    width:50%;
    height:auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-around;
}

div.aboutBreif div.aboutColumn {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
div.aboutBreif p {
    width:100%;
    color: black;
    opacity: .9;
    margin-top: 0px;
    margin-bottom: 20px;
}
div.aboutBreif p.about-SocialMedia {
    margin-top: 20px;
}
div.socialContainer {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
}
a.eachMedia {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    margin-right: 40px;
    margin-bottom: 20px;
}
a.eachMedia img {
    border-radius: 0px;
    margin: 0px;
    margin-right: 5px;
    width: 30px;
}
a.eachMedia span {
    margin-top: 2px;
    color: black;
}

div.aboutEasy {
    width:50%;
    height:auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
}
div.aboutDetail {
    width:70%;
    height:auto;
    background-color: #f8f9fe;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
div.aboutDetail h4 {
    width: 100%;
}
div.aboutDetail span.eachValue {
    width: 100%;
    padding: 4px 0px;
    display: flex;
}
div.aboutDetail span.eachValue span.key {
    color:black;
    opacity: 0.9;
    width: 160px;
    overflow: hidden;
}
div.aboutDetail span.eachValue span.value {
    color:black;
    opacity: 0.6;
    width: 150px;
    padding-right: 12px;
}

@media only screen and (max-width: 1228px)
{
    div.aboutContainer {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
    div.aboutContainer div.aboutBreif {
        width: 100%;
    }
    div.aboutContainer div.aboutEasy {
        width: 100%;
        margin-top: 30px;
    }
    div.aboutContainer div.aboutEasy div.aboutDetail {
        width: 98%;
    }
}
@media only screen and (max-width: 632px) {
    div.about h2 {
        width:85%;
    }
    div.aboutContainer {
        width: 95%;
    }
}

/*Skills*/
div.skills {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 12px 0px;
    margin-top: 30px;
}
div.skills span.icon {
    width: 90%;
    text-align: center;
    padding: 5px 0px;
    margin-top: 20px;
}
div.skills span.icon i {
    font-size: 40px;
    color: #b80b56;
}
div.skills h2 {
    width: 90%;
    text-align: center;
    margin: 12px 0px;
    font-size: 40px;
}
div.skills p {
    width: 50%;
    text-align: center;
    margin: 10px 0px;
    margin-bottom: 30px;
    font-size: 18px;
}
div.skills div.languages {
    width:80%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    padding: 12px 0px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
div.skills div.languages img {
    width:60px;
    height: auto;
    margin:20px;
}
.except{
    min-width: 170px;
    height: auto;
}

@media only screen and (max-width: 692px) {
    div.skills p {
        width: 80%;
    }
    div.skills div.languages {
        width: 100%;
    }
}


/*Projects*/
div.wholeProjectCollection {
    width:100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
div.projectTitle {
    width: 80%;
    text-align: center;
    margin-bottom: 50px;
    margin-top: 50px;
}
div.projectTitle h2{
    font-size: 40px;
    margin-bottom: 10px;
}
div.projectTitle h2 span {
    color: #b80b56;
}
div.projectTitle p {
    font-size: 18px;
}

div.projects {
    width:80%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-around;
    flex-wrap: wrap;
    padding:12px 0px;
}

div.projects div.proItem {
    width:23%;
    height:500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin:10px 3px;
    background-color: white;
    border: 1px solid #e9e9e9;
}

div.proItem div.proImage {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

div.proItem div.proImage img {
    width: 100%;
    min-width: 100%;
    min-height: 100%;
}

div.proItem h2.proTitle {
    width: 90%;
    margin: 20px 0px;
    margin-bottom: 10px;
    font-size: 18px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

div.proItem p.proDesc {
    width: 90%;
    margin: 10px 0px;
    height: 130px;
    font-size: 16px;
}

div.proItem a {
    width: 90%;
    text-decoration: none;
    color: #b80b56;
    font-weight: bold;
}

div.projects div.small div.smallContHeader {
    width:90%;
    min-height: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,.1);
    margin-bottom: 4px;
}
div.smallContHeader i {
    color:white;
}
div.smallContHeader span {
    background-color: rgba(0,0,0,0.2);
    color:white;
    padding: 4px 22px;
    border-radius: 22px;
    opacity: .8;
    font-size: 14px;
    text-transform: uppercase;
}

div.projects div.small div.smallContCenter {
    width:90%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
div.smallContCenter h5 {
    margin: 3px 0px;
    color: white;
}
div.smallContCenter h2 {
    margin:5px px;
    color:white;
}
div.smallContCenter p {
    margin: 0px;
    color:white;
    opacity: .7;
}

@media only screen and (max-width: 1871px) {
    div.projects div.proItem {
        width: 30%;
    }
}
@media only screen and (max-width: 1431px) {
    div.projects div.proItem {
        width: 45%;
    }
    div.projects div.proItem {
        height: 600px;
    }
    div.projects div.proImage {
        height: 350px;
    }
}
@media only screen and (max-width: 951px) {
    div.projects div.proItem {
        width: 95%;
    }
    div.projects div.proItem {
        height: 600px;
    }
    div.projects div.proImage {
        height: 350px;
    }
}

@media only screen and (max-width: 453px) {
    div.projects div.proItem {
        width: 100%;
        padding-bottom: 20px;
    }
    div.projects div.proItem {
        height: auto;
    }
    div.projects div.proImage {
        height: 250px;
    }
    div.proItem p.proDesc {
        height: auto;
        padding-bottom: 10px;
    }
    div.projects {
        width: 95%;
    }
}

/*Apk Container*/
div.apkContainer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0px;
}
div.apkCenterContainer {
    width: 80%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
div.eachApk {
    padding:20px;
    background-color: white;
    border: 1px solid #e9e9e9;
    width: 300px;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin-right: 20px;
    margin-bottom: 20px;
}
div.apkImg {
    width: 100%;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}
div.apkImg img {
    height: 100%;
    width: auto;
}
div.apkContent {
    display: flex;
    flex-direction: column;
    align-items: center;
}
div.apkContent h1 {
    color: rgba(0,0,0,0.8);
    font-size: 25px;
    text-align: center;
    margin: 8px 0px;
}
div.apkContent p {
    width: 90%;
    height: 130px;
    text-align: center;
}
div.apkContent a {
    text-decoration: none;
    color: white;
    border-radius: 7px;
    padding: 4px 12px;
    background-color: black;
    height: 45px;
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

div.apkContent a.playstore-btn {
    background-color: white;
    color: rgba(0,0,0,0.8);
    font-size: 14px;
    box-shadow: 1px 1px 5px 1px rgba(0,0,0,0.1);
}

div.apkContent a.playstore-btn img{
    width:22px;
    height: auto;
    margin-right: 10px;
    margin-left: 4px;
}

@media (max-width: 438px) {
    div.apkCenterContainer {
        width: 100%;
        flex-direction: column;
    }
    div.eachApk {
        width: 95%;
        height: auto;
        flex-direction: column;
        justify-content: flex-start;
        margin-right: 0px;
        box-sizing: border-box;
    }
    div.apkImg {
        margin: 0;
    }
    div.apkContent {
        align-items: center;
    }
    div.apkContent h1, div.apkContent p {
        text-align: center;
    }
}
/*Gallery*/
div.gallery {
    width: 100%;
    height: auto;
    background-image: url('Assets/WP/bg.svg');
    background-color: #232c33;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background-position: center;
    background-size: contain;
    user-select: none;
}

div.gallery h2 {
    color: white;
    margin-top: 60px;
    font-weight: normal;
}

div.galleryRow {
    width: 90%;
    padding:5px 0px;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin-top: 20px;
    overflow: auto;
    margin-bottom: 40px;
}
div.galleryRow img {
    height: 400px;
    width: auto;
    margin: 10px 20px;
}

div.galleryRow::-webkit-scrollbar {
    height: 0px;
}
/*Achievements*/
div.achievements {
    width:100%;
    height: auto;
    background-color: #0e0e0e;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 12px 0px;
}
div.achievements h2.main-title{
    color:white;
    width:90%;
    margin-top: 20px;
    opacity: .9;
}
div.achievements div.awards {
    width: 90%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
}
div.achievements div.awards div.eachAwards {
    width:210px;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    margin-right: 17px;
    margin-bottom: 17px;
}
div.achievements div.awards div.eachAwards img {
    width: 40px;
    height: auto;
    border-radius: 50%;
    margin-right: 17px;
}
div.achievements div.awards div.eachAwards .achieve-bg {
    background-color: white;
}
div.achievements div.awards div.eachAwards div.awardDetails {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
div.awardDetails h4 {
    color: white;
    margin: 0px;
    opacity: .8;
}
div.awardDetails p {
    color: white;
    opacity: 0.7;
    margin: 0px;
    font-size: 12px;
}

/*Contact Container*/
div.contact-container {
    width: 90%;
    height: auto;
    margin-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 32px 0px;
}
div.each-contact {
    width: 30%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
div.each-contact h2.title {
    font-size: 15px;
    color: white;
}
div.each-contact a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    margin-top: 6px;
}
div.each-contact span {
    margin-top: 4px;
    color: white;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1;
    opacity: .7;
}

/*Footer*/
div.footer {
    width:100%;
    min-height: 60px;
    background-color:#0e0e0e; 
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}
div.footerIn {
    width: 90%;
    height: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
div.footer span.NameCard {
    height: 100%;
    width:auto;
    color: white;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-weight:bold;
    font-size: 12px;
}
div.footer span.NameCard img {
    width:22px;
    height: auto;
}
span.Copyright {
    color:white;
    font-size: 12px;
    font-weight: bold;
}
span.copyright a {
    text-decoration: none;
    color: white;
}


@media only screen and (max-width: 752px) {
    
    div.achievements h2.main-title {
        margin-top: 70px;
    }
    
    div.achievements div.awards div.eachAwards {
        width: 47%;
    }
    
    div.contact-container {
        flex-direction: column;
    }
    div.each-contact {
        width: 100%;
    }
    div.each-contact .title {
        margin-top: 40px;
    }
    
}

@media only screen and (max-width: 630px)
{
    div.achievements div.awards div.eachAwards {
        width: 100%;
        margin: 22px 0px;
    }
}