/*
Table Of Content
1. Fonts & Global 
2. Header
*/

/*1. Fonts & Global*/
/* @import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&family=Oswald:wght@500&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans&family=Montserrat:wght@400;600&display=swap');


html{
    box-sizing: border-box;
    font-size: 14px;
    overflow: auto;
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'DM Sans', sans-serif;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    scroll-behavior: smooth;
    line-height: 24px;
  }

  .mobile-only{
    display: none;
    }
    
    .desktop-only{
    display: block;
    }
    
    @media (max-width: 768px){
    .mobile-only{
      display: block;
    }
    .desktop-only{
      display: none;
    }
}

/*2. Header*/

.hd-main{
    border-bottom: 1px solid #e0e0e0;
    position: fixed;
    z-index: 9;
    background: #fff;
}

.hd-menu{
    float: right;
}

.hd-menu a{
    color: #000;
    text-decoration: none;
}

.hd-title{
    display: inline-block;
}

.hd-menu-div{
    display: inline-block;
    padding: 20px 10px 20px;
}

.hd-title a{
    color: #000;
    text-decoration: none;
}

.intro{
    padding-top: 7rem;
    text-align: center;
    padding-bottom: 2rem;
}

.intro img{
    height: 135px;
    border-radius: 50%;
}

.comp-sec{
    margin-bottom: 3%;
}

.comp-sec p:nth-child(1){
    font-size: 1.5em;
    font-weight: bold;
}

.exp-skills span{
    background-color: #333333;
    border-radius: 8px;
    color: #fff;
    padding: 5px;
    font-size: 12px;
    margin-right: 10px;
}

.exp-gry-color{
    color: #687076;
}

.proj-div-col.col-md-6 {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    /* max-width: 23%; */
    /* margin: 20px 1%; */
    padding: 0;
}

.proj-div{
    box-shadow: 0 3px 6px #0000001a;
    border: 1px solid #dbdbdb;
    border-radius: 6px;
    margin-bottom: 5%;
    display: block;
    cursor: pointer;
    color: #000;
    text-decoration: none;
    transition: .5s;
}

.proj-div:hover{
    transform: scale(1.05);
    /* filter: brightness(1.1); */
}

.proj-img img{
    height: 145px;
}

.proj-img{
    background-color: #F8FAFC;
}

.proj-btm{
    padding: 10px;
}

.skill-title{
    font-size: 1.5em;
    font-weight: bold;
}

.txt-ctr{
    text-align: center;
}

.ft-bold{
    font-weight: bold;
}

.contact-div div{
    font-weight: bold;
    font-size: 1.5em;
}

.contact-div{
    color: #000;
    text-decoration: none;
    display: inline-block;
    padding: 15px 25px;
    border: 1px solid #dbdbdb;
    border-radius: 8px;
}

.contact-div:hover{
    box-shadow: 0 3px 6px #dbdbdb;
    transition: .5s;
}

.project_desc{
    line-height: 20px;
    font-size: 10px;
    list-style: none;
    padding: 0;
}

.mg-5{
    margin: 5% 0;
}

.ta-c{
    text-align: center;
}

.contact-width{
    width: 50%;margin: 0 auto;
}

@media(max-width:576px){
    .proj-img img{
        border-top-right-radius: 6px;
        border-top-left-radius: 6px;
    }
    .exp-skills span{
        display: inline-block;
        margin-bottom: 5px;
    }
    .contact-width{
        width: auto;
    }
    .contact-div{
        margin-bottom: 15px;
    }
}