@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

html,body{
    margin: 0;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

:root{
    --primary-color: #4458dc;
    --primary-color2: #00d1bc;
    --title-color: #ffffff;
    --text-color: #777777;
    --border-color: #201f1f17;
    --gradient-color: linear-gradient(90deg, #9c79dd 0%,#00d1bc 100%);
    --shadow-color: 0px 10px 30px rgba(118,85,225,0.3);
    --box-shadow: 0px 10px 30px rgba(57,56,61,0.205);
    --box-shadow2: 0px 10px 30px rgba(0,209,188, 0.8);

    --roboto:'Roboto', sans-serif;
}
/*====================== Header =========================*/
.navbar{
    height: 80px !important;
}
.header_area .main-menu .navbar .navbar-brand{
    padding: 0 1.5rem 0 1rem ;
    
}
.header_area .main-menu .navbar{
    padding: 1rem 10rem ;
}
.header_area .main-menu .nav-item .nav-link{
    font: normal 700 15px/2px var(--roboto);
    text-transform: uppercase;
    padding: 1.7rem;
    color: var(--title-color);
}
.header_area .main-menu .navbar-nav .active a{
    background: var(--gradient-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

}
.header_area .main-menu .navbar-nav a:hover{
    background: var(--gradient-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

}
/*  ===============================================  */

.site-main .site-banner .site-title h3{
    padding-top: 20%;
    font-weight: 500;
}

.site-main .site-banner .site-title h1{
    font: var(--roboto);
    font-weight: 700;
    font-size: 3.8rem;
}

.site-main .site-banner .site-title h4 span{
    font:normal 500 var(--roboto);
    font-size: 2rem;
}

.site-main .site-banner .site-title h3::after{
    content: " ";
    height: 2px;
    width: 17vw;
    background: var(--gradient-color);
    display: inline-block;
    margin-left: 2%;
}

.site-main .site-banner .site-image > img{
    padding: 6rem 0;
    width: 90%;
    height: auto;
}

.title-text{
    font: normal bold 50px/72px var(--roboto);
}
.title-text-2{
    font: normal 35px/60px var(--roboto);
    text-transform: uppercase;  
}
.button{
    padding: .8rem 2.2rem;
    font: normal 500 16px/20px var(--roboto);
    position: relative;
    border: 3px solid transparent;
    border-radius: 4px;
}

.button.primary-button{
    background: var(--gradient-color);
    background-clip: padding-box;
    color: whitesmoke;
    transition: background .6s ease;
    box-shadow: var(--box-shadow);
}

.button.primary-button:hover{
    background: whitesmoke;
    background-clip: padding-box;
    color: black;
}

.button.primary-button::after{
    position: absolute ;
    top: -2px;left: -2px;
    bottom: -2px; right: -2px;
    background: var(--gradient-color);
    content:'';
    z-index: -1;
    border-radius: 4px;
}
/*  ==================== About ====================  */
.site-main .about-area{
    padding: 14rem 5rem;
}

.site-main .about-area .about-image > img{
    padding: 5rem 0;
    width: 100%;
    height: auto;
}

.site-main .about-area .about-title h2 > span{
    display: block;
    font: normal bold 49px/60px var(--roboto);
    letter-spacing: 18px;
}

.site-main .about-area .about-title .paragraph > p{
    padding: .4rem 0;
}

p.para{
    color: var(--text-color);
    font: normal 300 16px/25px var(--roboto);
}

.site-main .services-area{
    padding: 8rem 2rem;
}
.site-main .services-area .services-title h1{
    font-size: 15px;
} 

.site-main > .services-area .services{ 
    background: whitesmoke;
    padding: 2rem 0;
    width: 17rem;
    margin: 3rem .5rem;
    transition: box-shadow .7s ease;
}

.site-main > .services-area .services:hover{ 
    box-shadow: var(--box-shadow2);
}

/*-=============================== Qualification ============================ */

.main-time{
    padding: 60px 0 0;
}

a:link {
    text-decoration: none;
}
a:hover {
    color: var(--primary-color2);
    text-decoration: none;
}
.time{
    width: calc(50% - 4px);
    padding: 42px 15px 0 0;
    margin: 0 5px 0 0;
    float: left;
}
.main-time:after{
    content: '';
    display: block;
    clear: both;
}
.time-content{
    color: black;
    text-align: center;
    min-height: 145px;
    padding: 40px 15px 15px;
    border: 3px solid black;
    border-radius: 10px;
    display: block;
    position: relative;
}
.time-content:hover{
    text-decoration: none;
}
.time-icon{
    color: black;
    font-size: 28px;
    text-shadow: -5px 5px 10px rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 20px;
    top: -51px;
    z-index: 1;
}
.time-yr{
    color: var(--primary-color2);
    font-size: 30px;
    font-weight: 700;
    line-height: 30px;
    transform: translateY(-50%) rotate(90deg);
    position: absolute;
    right: -80px;
    top: 50%;
}
.main-time .title-time{
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    margin: 0 0 5px;
}
.main-time .desc-time{
    font-size: 13px;
    line-height: 22px;
    margin: 0;
    color: var(--text-color);
    font: normal 500 var(--roboto);
}
.main-time .time:nth-child(even){
    float: right;
    padding: 42px 0 0 18px;
    margin: 0 0 0 5px;
}
.main-time .time:nth-child(even) .time-yr{
    right: auto;
    left: -61px;
    transform: translateY(-50%) rotate(-90deg);
}
.main-time .time:nth-child(even) .time-icon{
    left: auto;
    right: 20px;
}
.site-main >.site-experience .time-content{ 
    background: white;
    transition: box-shadow .7s ease;
}
.site-main >.site-experience .time-content:hover{ 
    box-shadow: 9px 15px blue;
}
.site-main .site-skill{
    padding: 16rem 5rem;
}

/*=============================== Skill ================================== */
.site-skill h4{
    font: normal 500 49px/60px var(--roboto);
    padding-top: 1.5rem;
}
.site-skill .row{
    margin-top: 5%;
    padding: 5rem;
}
 /*---------BARS---------*/
 .skills{
    width: 100%;
    max-width: 600px;
    padding-bottom: 4rem;
  }
 .skill-name{
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 15px 0;
    text-align: left;
  }
.skill-bar{
    height: 20px;
    background: #cacaca;
    border-radius: 6px;
  }
.skill-per{
    height: 20px;
    background-color: var(--primary-color2);
    border-radius: 6px;
    width: 0;
    transition: 2s linear;
    position: relative;
  } 
.skill-per::before{
    content: attr(perc);
    position: absolute;
    padding: 4px 6px;
    background-color: #000;
    color: #fff;
    font-size: 12px;
    border-radius: 4px;
    top: -35px;
    right: 0;
    transform: translateX(35%);
  }
.skill-per::after{
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #000;
    top: -16px;
    right: 0;
    transform: translateX(50%) rotate(45deg);
    border-radius: 1px;
  }
.skill-image-i{
    display: inline;
    width: 100%;
    height: auto;
    border-radius: 120px 20px 120px 20px;
    
  }
.overlay{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color:var(--primary-color2);
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: .5s ease;
    opacity:0.8;
    border-radius: 120px 20px 120px 20px;
  } 
.skill-image:hover .overlay{
    height: 100%;
  } 
.text {
    color: white;
    font-size: 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
  }
/*=============================== Contact ================================= */
.site-main .site-contact{
    padding: 0 5.5rem;
}

.site-contact .row{
    margin-top: 7%;
}
.contact-form{

    max-width: 600px;
    margin: auto;
    padding: 0 10px;
    overflow: hidden;

}
.contact-form-text{
    display: block;
    width: 100%;
    box-sizing: border-box;
    background: whitesmoke;
    margin: 16px 0;
    border: 0;
    padding: 20px 40px;
    outline: none;
    transition: 0.5s;
    border-radius: 10px;
}
.contact-form-text:focus{
    box-shadow:  0 0 10px 4px var(--primary-color2);
}
textarea.contact-form-text{
    resize: none;
    height: 120px;
}
.contact-form-btn{
 border: 0;
 background: whitesmoke;
 padding: 12px 50px;
 border-radius: 20px;
 cursor: pointer;
 transition: 0.7s;
}
.contact-form-btn:hover{
    background: var(--primary-color2);
    background-clip: padding-box;
    color:whitesmoke;
}
.contact-form-btn::after{
    position: absolute ;
    top: -2px;left: -2px;
    bottom: -2px; right: -2px;
    background: var(--primary-color2);
    content:'';
    z-index: -1;
    border-radius: 4px;
}
.txt-contact h2{
    margin-top: 10%;
}
.txt-contact h2 + p {
    margin-top: 8%;
  }
/*-=============================== Footer ================================ */
footer{
    background: #111;
    padding: 1em 0 ;
}
footer.footer-area .social a > i{
    font-size: 30px;
    padding: 1rem;
    color: white;
}
footer.footer-area .social a:hover > i{
    color: var(--primary-color2);
}
p.parafot{
    color: var(--text-color);
    font: normal 500 16px/25px var(--roboto)
}