 *{
    box-sizing: border-box;
    font-family:'fira sans', sans-serif;
}

body{
    margin:0;
}
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;
}
/*for mobile*/
[class*="col-"]{
    width: 100%;
}
/*navbar design starts here*/
.navbar{
    background-color: #40868b;
    padding:1% 7%;
    text-align: center;
    
}
.navbar h1{
    color:white;
    margin: 0;
    padding-top: 10px;
}
.navbar-menu{
   display: flex;
   flex-direction: column; 
   text-transform: uppercase;
}
.navbar-menu a{
    background-color: #0c6168;
    border-radius: 10px;
    margin: 7px 0px;
    padding:10px;
}
.navbar-menu a:hover{
    background-color: gray;
}
.navbar::after{
    content: "";
    display: table;
    clear:both;
}
/*navbar design ends here*/
/*profile design starts here*/
.profile{
    background:#cbf5cd;
    padding:130px 10px;
    position: relative;
    text-align: center;
   

}
.profile .top-weather-icon{
    position: absolute;
    right: 60px;
    top:30px;
    transition: transform 2s;
}
.profile .top-weather-icon:hover{
  transform:rotate(360deg);
}
.profile-desc h1{
  font-family: 'satisfy',cursive;
  font-size:3rem;  
}
.profile-desc p{
    color:grey;
    margin: 0 auto 20px auto;
    text-align: center;
    width: 90%;
}
.profile .bottom-weather-icon{
    position: absolute;
    left: 60px;
    bottom:20px;
    transition: transform 2s;
}
.profile .bottom-weather-icon:hover{
  transform:rotate(360deg);
}
.profile::after{
    content:'';
    display:table;
    clear:both;
}

/*profile design starts here*/
/*About me starts here*/
.about-me{
    background-color: #39a4ac;
    padding:1% 5%;
    color:white;
    text-align: center;
    font-family: 'Montserrat',sans-serif;
}
.aboutme-image img{
    border:5px solid white;
    border-radius: 50%;
    height: 220px;
    width:200px;
}
.about-me p{
    text-align:center;
}
.about-me a{
    font-size:1.2rem;
}
.CV-button{
    background-color: #052d2f;
    color:white;
    border:none;
    border-radius: 12px;
    padding: 15px;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    margin:10px;
}

.about-me::after{
    clear:both;
    display: table;
    content:'';
}
/*About me ends  here*/
/*professional experience starts   here*/
.professional-experience{
    padding:1% 5%;
    background-color: antiquewhite;
}
.professional-experience .card{
    background-color: #a39e9e;
    border-radius: 5px;
    padding:10px;
    transition: 0.3s;
    height: 700px;
}
.professional-experience .card:hover{
    box-shadow: 0 4px 8px 5px black;
}
.card-icon{
    text-align: center;
}
.card-icon img{
    margin-top:20px;
    width:100px;
}
.rounded-img{
    border:5px solid white;
    border-radius: 50%;
    padding:15px;
}
.card-title h2{
    background-color: #616161;
    color:white;
    padding:10px;
    text-align: center;
}


/*skill starts here*/

.skills-container{
    padding-right: 45px ;
}
.skills-container li{
    list-style: none;
    font-weight: bolder;
    margin:20px 10px;
    position: relative;
    text-transform: uppercase;
}
.skills-container li::before{
   content: '';
   position:absolute;
   top:calc(100% + 5px);
   left:0px;
   border-radius: 1000px;

   width:100%;
   height: 1px;

   background-color: rgb(86,86,153,.5);
 

}

.skills-container li::after{
   content: '';
   position:absolute;
   top:calc(100% + 5px);
   left:0px;
   border-radius: 1000px;

   width:0;
   height: 10px;

   background-color: rgb(86,86,153,1);
   animation-duration: 3s;
   animation-delay: 2s;
   animation-timing-function: linear;
   animation-fill-mode: forwards;
   animation-iteration-count: infinite;

}
.skills-container li.html::after{
    animation-name: html;
}
@keyframes html {
    to{
        width: 90%;
    }
    
}
.skills-container li.css::after{
    animation-name: css;
}
@keyframes css {
    to{
        width: 80%;
    }
    
}
.skills-container li.js::after{
    animation-name: js;
}
@keyframes js {
    to{
        width: 60%;
    }
    
}
.skills-container li.bootstrap::after{
    animation-name: bootstrap;
}
@keyframes bootstrap {
    to{
        width: 80%;
    }
    
}
.skills-container li.java::after{
    animation-name: java;
}
@keyframes java {
    to{
        width: 50%;
    }
    
}
.skills-container li.cplus::after{
    animation-name: cplus;
}
@keyframes cplus {
    to{
        width: 50%;
    }
    
}
.skills-container li.js::after{
    animation-name: js;
}
@keyframes js {
    to{
        width: 50%;
    }
    
}
.skills-container li.git::after{
    animation-name: git;
}
@keyframes git {
    to{
        width: 50%;
    }
    
}
.skills-container li.react::after{
    animation-name: react;
}
@keyframes react {
    to{
        width: 50%;
    }
    
}
.skills-container li.jquery::after{
    animation-name: jquery;
}
@keyframes jquery {
    to{
        width: 50%;
    }
    
}
.skills-container li.node::after{
    animation-name: node;
}
@keyframes node {
    to{
        width: 50%;
    }
    
} 
/*skill ends here*/
      