*{
    box-sizing: border-box;
    font-family: 'Fira Sans', sans-serif;;
}

body{
    margin: 0px;
}

.nav-logo img{
    border-radius: 10px;
}
h1{
    font-size: 2.5rem;
    text-align: center;
}

h2{
    font-size: 1.5rem;
    text-align: center;
}

a{
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
}

p{
    font-size: 1.2rem;
    text-align: justify;
}

.dotted-hr{
    border: dotted 6px white;
    border-bottom: none;
    margin: 20px auto;
    width: 70px;
}

[class*="col-"]{
    float: left;
    padding: 10px;
}

/*mobile*/
[class*="col-"]{
    width: 100%;
}

/**navbar design  start**/
.navbar{
    background-color: #40868b;
    padding: 1% 7%;
    text-align: center;
}

.navbar h1{
    color: white;
    margin: 0;
    padding: 10px;
}

.nav-menu{
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
}

.nav-menu a{
    background-color: #0c6168;
    border-radius: 10px;
    margin: 7px ;
    padding: 10px;
}

.nav-menu a:hover{
    background-color: gray;
}

.navbar::after{
    content: '';
    display: table;
    clear: both;
}
/**navbar design end**/

/* profile start */

.profile{
    padding: 130px 10px;
    position: relative;
    text-align: center;
}

.profile .top, .bottom{
    border-radius: 50px;
}

.profile .top{
    position: absolute;
    right: 60px;
    top: 10px;
    transition: transform 2s;
}

.profile .top:hover{
    transform: rotate(360deg);
}

.profile-desc h1{
    font-family: 'Satisfy', cursive;
    font-size: 3rem;
}

.profile-desc p{
    color: gray;
    margin: 0 auto 20px auto;
    text-align: center;
    width: 90%;
}

.profile .bottom{
    position: absolute;
    left: 60px;
    bottom: 5px;
    transition: transform 2s;
}

.profile .bottom:hover{
    transform: rotate(360deg);
}

.profile::after{
    content: '';
    display: table;
    clear: both;
}
/* profile end */

/* about me start */

.about-me{
    background-color: #39a1ac;
    padding: 1% 7%;
    color: white;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.about-me img{
    border: 5px solid white;
    border-radius: 50%;
    height: 220px;
    width: 200px;
}

.about-me p{
    text-align: center;
} 

.about-me{
    font-size: 1.2rem;
}

.cv-button{
    background-color: #052d2f;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 15px;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    margin: 10px;
}

.about-me::after{
    content: '';
    clear: both;
    display: table;
}

/* about me end */

/* experience start */

.professional-experience{
    padding: 1% 0%;
}

.professional-experience .card{
    background-color: #a39e9e;
    border-radius: 5px;
    padding: 10px;
    transition: 0.3s;
    height: 700px;
}

.card:hover{
    box-shadow: 0px 4px 8px 5px black;
}

.card-icon{
    text-align: center;
    
}

.card-icon img{
    margin-top: 20px;
    width: 100px;
    border-radius: 50px;
}

.card-title h2{
    background-color: #616161;
    color: white;
    padding: 10px;
    text-align: center;
}

.skill-container{
    padding: 20px;
}

.skill-container li{
    list-style: none;
    text-transform: uppercase;
    margin: 30px 10px;
    position: relative;
    font-weight: bolder;
}

.skill-container li::before{
    content: '';
    position: absolute;
    top:calc(100% + 5px);
    left: 0px;
    width: 100%;
    height: 10px;
    border-radius: 1000px;
    background-color: rgb(86, 86, 153,.5);
}

.skill-container li::after{
    content: '';
    position: absolute;
    top:calc(100% + 5px);
    left: 0px;
    width: 0%;
    height: 10px;
    border-radius: 1000px;
    background-color: rgb(86, 86, 153,1);

    animation-duration: 3s;
    animation-delay: 2s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
    animation-iteration-count: 3;
}

.skill-container li.html::after{
    animation-name: html;
}

@keyframes html{
    to{
        width: 95%;
    }
}

.skill-container li.css::after{
    animation-name: css;
}

@keyframes css{
    to{
        width: 90%;
    }
}

.skill-container li.bs::after{
    animation-name: bs;
}

@keyframes bs{
    to{
        width:85%;
    }
}

.skill-container li.js::after{
    animation-name: js;
}

@keyframes js{
    to{
        width: 80%;
    }
}

.skill-container li.jquery::after{
    animation-name: jquery;
}

@keyframes jquery{
    to{
        width: 50%;
    }
}

.skill-container li.node::after{
    animation-name: node;
}

@keyframes node{
    to{
        width: 40%;
    }
}

.skill-container li.react::after{
    animation-name: react;
}

@keyframes react{
    to{
        width: 40%;
    }
}

.skill-container li.git::after{
    animation-name: git;
}

@keyframes git{
    to{
        width: 40%;
    }
}

.professional-experience::after{
    content: '';
    display: table;
    clear: both;
}
/* experience end */

/* achivement contact start */

.acheivement-contact{
    padding: 1% 7%;
    background-color: #39a4ac;
    color: white;
}


.contact{
    text-align: center;
}

.contact input , textarea{
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    text-align: center;
    border: none;
    border-radius: 5px;
    resize: none;
}

.contact button{
    border: none;
    border-radius: 12px;
    background-color: #052d2f;
    color: white;
    cursor: pointer;
    padding: 15px;
    margin: 10px;
    width: 100px;
}

.contact-links{
    text-align: center;
}

.media-buttons .btn{
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 32px;
    padding: 5px;
    margin: 10px;
    width: 50px;
    background-color: white;
}

.btn:hover{
    background-color: gray;
}

.acheivement-contact::after{
    content: '';
    display: table;
    clear: both;
}
/* acheivement end */

/* footer start */

.footer{
    background-color: black;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 0.8rem;
}

.footer-menu a{
    display: block;
    margin: 15px 0px;
    font-size: 1rem;
}

.footer-menu a:hover{
    color: gray;
}

.footer::after{
    display: table;
    content: '';
    clear: both;
}

/* footer end */

