*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.navbar-collapse {
    flex-grow: 0;
}
:root {
    --red: #ff014f;
    --black: #222;
    --white: #FFFFFF;
    --gray: #3c3e41;
}
a {
    text-decoration: none;
    color: var(--black);
}
a:hover {
    color: var(--black);
}
.header-wrapper .container-fluid {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}
.site-logo {
    background-color: var(--red);
    color: var(--white)!important;
    padding: 6px 20px!important;
    border-radius: 5px;
    font-size: 21px;
    line-height: 21px;
    letter-spacing: 1px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
}
.nav-design {
    color: var(--black)!important;
    display: block;
    padding: 15px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    letter-spacing: 0.2px;
    margin-right: 1rem;
}
/* banner css */
.banner-wrapper {
    padding-top: 11%;
    padding-bottom: 5%;
    background-color: #f1f1f1;
    margin-bottom: 6rem;
}
.img-property {
    border-radius: 50%;
    background: white;
}
.banner-wrapper h5 {
    font-weight: 500;
    letter-spacing: 3px;
    font-size: 13px;
    color: var(--gray);
    margin-top: 0;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    font-family: "Montserrat", sans-serif;
}
.banner-wrapper h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 75px;
    color: var(--black);
    font-family: "Montserrat", sans-serif;
    margin-top: 0;
    margin-bottom: 0.5rem;
}
.banner-wrapper h1 span {
    color: var(--red);
    font-size: 52px;
    line-height: 52px;
    
}
.banner-wrapper .name-sec {
    margin-top: 4%;
}
.img-wrap {
    max-width: 90%;
    margin-left: auto;
}
.buttons-wrapper .btn-design {
    margin-top: 2rem;
    font-size: 16px;
    margin-right: 20px;
    display: inline-block;
    padding: 1rem 3rem;
    border-radius: 1rem;
    box-shadow: 5px 5px 15px #d1d9e6, -5px -5px 15px #ffffff;;
    background: linear-gradient(145deg, #e2e8ec, #ffffff);;
    transition: 0.5s;
    color: var(--black);
    border: 1px solid transparent;
}
.buttons-wrapper .btn-design:hover {
    background: linear-gradient(145deg, #ff014f, #d11414);;
    color: var(--white);
    transform: translateY(-3px);
}
/* Projects Section */
.card {
    border-radius: 5px;
    box-shadow: 5px 5px 15px #d1d9e6, -5px -5px 15px #ffffff;;
    background: linear-gradient(145deg, #e2e8ec, #ffffff);
    transition: .5s ease all;
}
.card:hover {
    transform: scale(1.1);
}
.line-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}
.git-projects {
    margin-top: 6rem;
}
.projects-wrap h1, .git-projects h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
    color: var(--black);
    font-family: "Poppins", sans-serif;
    margin-bottom: 2.5rem;
    text-align: center;
}
/* Footer */
.footer-sec {
    margin-top: 7%!important;
}
@media only screen and (max-width: 991px) {
    .banner-wrapper h1 {
        font-size: 40px;
        font-weight: 700;
        line-height: 50px;
    }
}
@media only screen and (max-width: 767px) {
    .banner-wrapper .name-sec {
        text-align: center;
        margin-top: 10%;
    }
    .banner-mbl {
        flex-direction: column-reverse;
    }
    .img-wrap {
        margin-right: auto;
    }
}
@media only screen and (max-width: 489px) {
    .site-logo {
        font-size: 14px;
        line-height: 28px;
    }
}
@media only screen and (max-width: 397px) {
    .site-logo {
        font-size: 12px;
        line-height: 20px;
    }
}
