@import url('https://fonts.googleapis.com/css2?family=Raleway&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;600;700&display=swap');

body{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
}

#hero{
    background-image: url(../images/hero.png);
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-txt{
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: 2.6em;
    line-height: 80%;
}

.hero-name{
    color: #FFD700;
}

.hero-btn{
    color: white;
    border: 1.5px solid white;
    background: transparent;
    padding: 12px 25px;
    font-family: 'Raleway', sans-serif;
    font-size: 1.4em;
}

.hero-btn:hover{
    animation: fadeIn 0.3s forwards;
    text-decoration: none;
    color: white;
}

#hero-icon{
    transition: 0.3s ease-out;
}

.hero-btn:hover #hero-icon{
    transform: rotateZ(90deg);
}

#hero-ic{
    font-size: 0.7em;
    animation: rotateArr 0.3s forwards;
}

.navbar{
    background: #1b242f;
    border-bottom: 3px solid #3ED625;
    width: 100%;
}

.navbar-display{
    animation: popUp 0.8s forwards;
    z-index: 10;
}

.nav-link{
    color: white;
    font-family: 'Raleway', 'sans-serif';
}

.active-link{
    animation: 0.2s colorIn forwards;
}

.nav-link:hover{
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: #FFD700;
}

.menu-icon{
    font-size: 1.2em;
}

.border-txt{
    border-bottom: 4px solid #444649;
}

.about-img{
    width: 120px;
}

.text-grey{
    color: rgb(68, 70, 73);
    font-weight: 700;
}

h4.text-grey{
    color: rgba(68, 70, 73, 0.9);
    font-family: 'Raleway', 'sans-serif';
}

p.text-grey{
    color: rgba(68, 70, 73, 0.7);
    font-weight: 600;
    font-family: 'Raleway', 'sans-serif';
}

#profile-pic{
    width: 290px;
}

.custom-link{
    text-decoration: none;
    color: #3ED625;
}

.custom-link:hover{
    text-decoration: none;
    color: #3ED625;
}

.progress{
    height: 28px;
    border-radius: 0;
    margin-bottom: 15px;
}

.progress-skill{
    border-radius: 0;
    background: #3ED625;
    font-family: 'Raleway', 'sans-serif';
    font-weight: bold;
    font-size: 1.2em;
}

.progress-fill{
    border-radius: 0;
    background: #3ED625;
}

.ninetyFill{
    animation: ninetyFill 1s ease-in-out forwards;
}

.eightyFill{
    animation: eightyFill 1s ease-in-out forwards;
}

.sixtyFill{
    animation: sixtyFill 1s ease-in-out forwards;
}

.sixfiveFill{
    animation: sixfiveFill 1s ease-in-out forwards;
}

.fiftyFill{
    animation: fiftyFill 1s ease-in-out forwards;
}

.progress-value{
    font-family: 'Raleway', 'sans-serif';
    margin: auto;
    font-size: 1.2em;
}

.project-title{
    font-family: 'Raleway', 'sans-serif';
    font-weight: 500;
    width: 70%;
    text-align: center;
}

.active{
    color: white;
    background: #FFD700;
    padding: 4px 10px;
    
}

#projects{
    background: #f1f1f1;
    padding-bottom: 80px !important;
}

.project-block{
    margin: 0  auto !important;
    padding: 0 !important;
    width: 400px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.project-block:hover{
    animation: fadeOut 0.2s forwards;
}

.project-block:nth-child(1){
    background: url(../images/thumb-1.jpg) no-repeat;
    background-size: 400px 300px;
    background-position: center;
}

.project-block:nth-child(2){
    background: url(../images/thumb-2.jpg) no-repeat;
    background-size: 400px 300px;
    background-position: center;
}

.project-block:nth-child(3){
    background: url(../images/thumb-3.jpg) no-repeat;
    background-size: 400px 300px;
    background-position: center;
}

.project-block:nth-child(4){
    background: url(../images/thumb-4.jpg) no-repeat;
    background-size: 400px 300px;
    background-position: center;
}

.project-block:nth-child(5){
    background: url(../images/thumb-5.jpg) no-repeat;
    background-size: 400px 300px;
    background-position: center;
}

.project-block:nth-child(6){
    background: url(../images/thumb-6.jpg) no-repeat;
    background-size: 400px 300px;
    background-position: center;
}

.project-block:nth-child(7){
    background: url(../images/thumb-7.jpg) no-repeat;
    background-size: 400px 300px;
    background-position: center;
}

.project-block:nth-child(8){
    background: url(../images/thumb-8.jpg) no-repeat;
    background-size: 400px 300px;
    background-position: center;
}

.project-block:nth-child(9){
    background: url(../images/thumb-9.jpg) no-repeat;
    background-size: 400px 300px;
    background-position: center;
}

.project-content{
    opacity: 0;
}

.project-text{
    padding-bottom: 100px;
}

.project-block:hover .project-content{
    animation: opacIn 0.3s forwards ;
}

.project-block:hover .project-text{
    animation: slideDown 0.8s forwards;
}

.project-button{
    background: transparent;
    border: 1px solid #FFD700;
    padding: 10px 20px;
    font-weight: 400;
}

.project-button:hover{
    background: #FFD700;
    color: white;
}

.blog-pic{
    width: 100%;
    height: 200px;
}

.blog-pic-1{
    background: url(../images/blog-1.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

.blog-pic-2{
    background: url(../images/blog-2.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

.blog-pic-3{
    background: url(../images/blog-3.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

.blog-pic-4{
    background: url(../images/blog-4.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

.blog-title, .blog-desc{
    font-family: 'Raleway', 'sans-serif';
}

.blog-line{
    border: 1.5px solid #3ED625;
    width: 25%;
    margin-left: 0;
}

.blog-desc{
    font-size: 0.9em;
    text-align: left;
}

#contact{
    background: #252934;
    margin-top: 120px !important;
    padding-bottom: 100px;
}

#contact p{
    color: #3ED625;
    font-family: 'Raleway', 'sans-serif';
    font-weight: 600;
}

.border-wht{
    border-bottom: 4px solid #fff;
}

form{
    padding-bottom: 60px;
}

input, textarea{
    border-radius: 0px !important;
    background: #1e242c !important;
    border: 1px solid #1e242c !important;
    margin-bottom: -12px;
}

.contact-btn{
    border: 1.5px solid white;
    background: transparent;
    color: white;
    font-family: 'Raleway', 'sans-serif';
    font-weight: 600;
    padding: 10px 30px;
}

.contact-btn:hover{
    animation: fadeIn 0.3s forwards;
}

#footer{
    background: #1b242f;
}

.up-icon{
    background: #FFD700;
    font-size: 1.8em;
    padding: 15px;
    margin-top: -25px;
}

.fab{
    font-size: 1.2em;
    background: #252934;
    padding: 20px;
    margin: 15px;
}

.footer-txt{
    font-family: 'Raleway', 'sans-serif';
    font-size: 0.8em;
    color: #9b9494;
}

.icon-container{
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes fadeIn{
    0%{
        background: transparent;
        border: 1.5px solid white;
    }
    100%{
        background: #3ED625;
        border: 1.5px solid #3ED625;
    }
}

@keyframes popUp{
    0%{
        position: fixed;
        top: -56px;
    }
    100%{
        position: fixed;
        top: 0px;
    }
}

@keyframes colorIn{
    0%{
        color: white;
    }
    100%{
        color: #FFD700;
    }
}

@keyframes ninetyFill{
    0%{
        width: 0%
    }
    100%{
        width: 70%;
    }
}

@keyframes eightyFill{
    0%{
        width: 0%
    }
    100%{
        width: 60%;
    }
}

@keyframes sixtyFill{
    0%{
        width: 0%
    }
    100%{
        width: 45%;
    }
}

@keyframes sixfiveFill{
    0%{
        width: 0%
    }
    100%{
        width: 50%;
    }
}

@keyframes fiftyFill{
    0%{
        width: 0%
    }
    100%{
        width: 40%;
    }
}

@keyframes fadeOut{
    0%{
        
    }
    100%{
        background: transparent;
    }
}

@keyframes rotateArr{
    0%{
        transform: rotateZ(0deg);
    }
    100%{
        transform: rotateZ(90deg);
    }
}

@keyframes slideDown{
    0%{
        padding-bottom: 100px;
    }
    100%{
        padding-bottom: 0px;
    }
}

@keyframes opacIn{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}


@media (max-width: 600px) {
    .font-small {
        font-size: 1.2em;
    }

    #about > p{
        font-size: 0.7em;
    }
    .contact-btn{
        font-size: 0.8em;
        padding: 5px 15px;
    }
    .about-para{
        margin-bottom: 50px;
    }
    .progress-skill{
        font-size: 0.85em;
    }
    .progress-value{
        font-size: 0.9em;
    }

}