:root{
    /*colors*/
    --blue: #0072F7;
    --purple:#882BFF;
    --white: #FBFBFB;
    --black: #15141A;
    --light-black: #212129;

    --primary: var(--purple);
    --secondary: var(--blue);

    /*paddings & margins*/
    --space-between:3.12rem;
    --gap: 2.5rem;

    /*Animation transition*/
    --link-transition:all 0.3s ease-in-out;
}

/*loading fonts*/

/*logo font*/
/*regular*/
/*noinspection ALL*/
@font-face {
    font-family: 'Recoleta', sans-serif;
    src: url("assets/fonts/Recoleta/Recoleta-SemiBold.woff2");
    font-weight: 400;
    font-style: normal;
}


/*regular*/
/*noinspection ALL*/
@font-face {
    font-family: 'Inter', sans-serif;
    src: url("assets/fonts/Inter-Regular.woff2");
    font-weight: 400;
    font-style: normal;
}

/*Medium*/
/*noinspection ALL*/
@font-face {
    font-family: 'Inter', sans-serif;
    src: url("assets/fonts/Inter-Medium.woff2");
    font-weight: 500;
    font-style: normal;
}

/*Semi Bold*/
/*noinspection ALL*/
@font-face {
    font-family: 'Inter', sans-serif;
    src: url("assets/fonts/Inter-SemiBold.woff2");
    font-weight: 600;
    font-style: normal;
}



/*Light*/
/*noinspection ALL*/
@font-face {
    font-family: 'Inter', sans-serif;
    src: url("assets/fonts/Inter-Light.woff2");
    font-weight: 300;
    font-style: normal;
}


/*Extra Light*/
/*noinspection ALL*/
@font-face {
    font-family: 'Inter', sans-serif;
    src: url("assets/fonts/Inter-ExtraLight.woff2");
    font-weight: 200;
    font-style: normal;
}

/*typography*/
.heading{
    font-size: 3rem;
    font-weight: 400;
    line-height: 160%;
}

.heading-semi-bold{
    font-size: 3rem;
    font-weight: 600;
    line-height: 160%;
}

.title{
    font-size: 3rem;
    font-weight: 500;
    /*text-decoration: underline;*/
}

.title-without-underline-light{
    font-size: 3rem;
    font-weight: 300;
}

.subtitle{
    font-size: 3rem;
    font-weight: 400;
    line-height: 150%;
}

.subtitle-semi-bold{
    font-size: 3rem;
    font-weight: 600;
    line-height: 150%;
}

.center-aligned{
    text-align: center;
}

.body-text{
    font-size: 1.12rem;
    font-weight: 400;
    line-height: 302%;
}

.callout{
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 180%;
}

.callout-underlined{
    font-size: 1.5rem;
    font-weight: 400;
    text-decoration: underline;
}

.callout-extra-light{
    font-size: 1.5rem;
    font-weight: 200;
}

.blog-title{
    font-size: 3rem;
    font-weight: 400;
    line-height: 125%;
}

.blog-text{
    font-size: 1.5rem;
    line-height: 217%;
}

.small-text{
    font-size: 1rem;
}

/*typography colors*/
.blue{
    color: var(--primary) !important;
}

.white{
    color: var(--white) !important;
}

.black{
    color: var(--black) !important;
}

.light-black{
    color: var(--light-black) !important;
}
/*typography colors end*/

/*colors*/
.blue-background{
    background-color: var(--primary) !important;
}

.white-background{
    background-color: var(--white) !important;
}

.black-background{
    background-color: var(--black) !important;
}

.light-black-background{
    background-color: var(--light-black) !important;
}

.red{
    color: #FB4242 !important;
}
/*colors end*/

/*buttons*/
.primary-btn{
    display: inline-block;
    background-color: var(--light-black);
    border: none;
    cursor: pointer;
    color: var(--white);
    padding: 0.96rem 1.62rem;
    text-align: center;
    text-decoration: none;
    font-size: 1rem;
    -webkit-transition: var(--link-transition);
    transition: var(--link-transition);
}

.primary-btn-variant-two{
    display: inline-block;
    background-color: var(--primary);
    border: none;
    cursor: pointer;
    color: var(--white);
    padding: 0.96rem 1.62rem;
    text-align: center;
    text-decoration: none;
    font-size: 1rem;
    -webkit-transition: var(--link-transition);
    transition: var(--link-transition);
}

.primary-btn:hover{
    background-color: var(--primary);
    color: var(--white);
}

.primary-btn-variant-two:hover{
    background-color: var(--white);
    color: var(--black);
}

.secondary-btn{
    background-color: var(--light-black);
    border: 2px solid var(--white);
    color: var(--white);
    padding: 0.96rem 1.62rem;
    text-align: center;
    text-decoration: none;
    display: flex;
    gap: 0.62rem;
    font-size: 1rem;
    font-weight: 600;
    -webkit-transition: var(--link-transition);
    transition: var(--link-transition);
}

.secondary-btn:hover{
    border: 2px solid var(--primary);
    background-color: var(--primary);
}

.secondary-btn-variant-two{
    background-color: #F3F3FA;
    border: 2px solid var(--black);
    color: var(--black);
    padding: 0.96rem 1.62rem;
    text-align: center;
    text-decoration: none;
    display: flex;
    gap: 0.62rem;
    font-size: 1rem;
    font-weight: 600;
    -webkit-transition: var(--link-transition);
    transition: var(--link-transition);
}

.secondary-btn-variant-two:hover{
    border: 2px solid var(--primary);
    background-color: var(--primary);
}
/*buttons end*/

/*iconography*/
.secondary-icon{
    background: url("assets/images/Icons-arrow.svg") no-repeat;
    float: left;
    width: 20px;
    height: 20px;
}
/*iconography ends*/



/*common CSS rules*/
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
}

img {
    width: 100%;
}

a{
    text-decoration: none;
}

.container{
    max-width: 80%;
    margin: 0 auto;
    /*overflow: auto;*/
    padding: 0 var(--gap);
}

.blog-container{
    max-width: 59%;
    margin: 0 auto;
    /*overflow: auto;*/
    padding: 0 var(--gap);
}

.flex{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.grid{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.right-content{
    grid-column: span 3 / span 3;
}

/*the common margin given between each section*/
.common-margin-top{
    margin-top: 5rem;
}

.contact-me-margin-top{
    margin-top: 5.75rem;
}
/*common CSS rules end*/

/*navbar*/
.navigation-bar{
    padding: 0.93rem 0;
    background-color: var(--white);
    position: sticky;
    width: 100%;
    top: 0;
    overflow: hidden;
    z-index:1000;
    -webkit-transition: var(--link-transition);
    transition: var(--link-transition);
}

.navigation-bar .flex{
    justify-content: space-between;
}

.navigation-bar .hamburger{
    display: none;
}

.nav-links a {
    padding: 0 50px;
    margin: 0 5px;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--light-black);
    -webkit-transition: var(--link-transition);
    transition: var(--link-transition);
}

.nav-links a:hover{
    text-decoration: underline;
    color: var(--primary);
}

.activeNav {
    text-decoration: underline;
    color: var(--primary) !important;
}

/*navigation bars shadow*/
.addShadow{
    box-shadow: 0px 17px 66px -5px rgba(0, 0, 0, 0.07);
}
/*navbar ends*/

/*Logo*/
.logo-type{
    font-size: 1.56rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    color: var(--black);
}

.logo-type-h2{
    font-size: 3.93rem;
    font-style: normal;
    font-weight: 600;
    line-height: 94.632%; /* 3.72613rem */
    color: var(--white);
}

/*hero-section*/
.main-title{
    padding-bottom: var(--space-between);
}

.hero-section .hero-img-section video{
    max-width: 100%;
    height: auto;
}
/*hero-section ends*/

/*about me section*/
.aboutMe-inner-content .right-content{
    margin-top:var(--space-between);
}

.aboutMe-inner-content .right-content .inner-paragraph{
    margin-top: 2rem;
    margin-bottom: 2rem;
}
/*about me section ends*/

/*projects section*/
.projects{
    display: flex;
    gap: 1.25rem;
    margin-top: var(--space-between);
    color: var(--black);
}

.single-project{
    color: var(--black);
    width: 21rem;
}

.single-project .inner-text-box{
    display: flex;
    flex-direction: column;
    margin-top: 1.62rem;
    gap: 0.62rem;
    z-index:1000;
    -webkit-transition: var(--link-transition);
    transition: var(--link-transition);
}
.single-project .category{
    opacity: 50%;
}

.single-project:hover{
    text-decoration: underline;
}

.single-project img{
    -webkit-transition: var(--link-transition);
    transition: var(--link-transition);
}

.single-project img:hover{
    scale: 1.1;
}

.project-image{
    overflow: hidden;
}

/*projects section ends*/

/*skills section*/
.skills{
    display: flex;
    gap: 6.25rem;
    flex-direction: column;
}

/*noinspection ALL*/
.single-skill{
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 30%;
    padding-bottom: var(--space-between);
    border-bottom: 5px var(--black) solid;
    color: var(--black);
    z-index:1000;
    -webkit-transition: var(--link-transition);
    transition: var(--link-transition);
    cursor:url("/assets/images/cursor.svg"),auto;
}

.single-skill:hover{
    opacity: 100%;
    color: var(--primary) !important;
    border-bottom: 5px var(--primary) solid;
}
/*skills section ends*/

/*footer*/
footer{
    background-color: var(--black);
}

.footer-inner-content{
    display: flex;
    padding-top: 6.25rem;
    padding-bottom: 24.37rem;
    justify-content: space-between;
    align-items: center;
}

.footer-inner-content .left-content{
    display: flex;
    flex-direction: column;
    gap: var(--gap);
}

.footer-inner-content .left-content .social-links{
    display: flex;
    gap: 1.87rem;
}

.footer-inner-content .left-content .footer-email{
    color: var(--white);
    -webkit-transition: var(--link-transition);
    transition: var(--link-transition);}

.footer-inner-content .left-content .footer-email:hover{
    color: var(--primary);
}

.footer-inner-content .inner-inner-section{
    display: flex;
    gap: 0.9rem;
    flex-direction: column;
}

.portfolio-link{
    color: var(--white);
    -webkit-transition: var(--link-transition);
    transition: var(--link-transition);
}

.portfolio-link:hover{
    text-decoration: underline;
    color: var(--primary);
}
/*footer ends*/

/*CTA*/
.CTA{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8rem;
    gap:1rem;
    background-color: #F3F3FA;
}

/*under construction section*/
.under-construction-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    gap: 2rem;
}

.under-construction-section .error-mask{
    /*noinspection ALL*/
    -webkit-mask-image: linear-gradient(180deg, #CDCDCD 0%, rgba(205, 205, 205, 0) 77.59%);
    mask-image: linear-gradient(180deg, #CDCDCD 0%, rgba(205, 205, 205, 0) 77.59%);
}

.under-construction-section .text-inner-content{
    position: absolute;
    width: 100%;
    text-align: center;
    top: 603px;
}

.under-construction-section .text-inner-content button{
    margin-top: 2rem;
}

.under-construction-section .error-code{
    font-size: 31.25rem;
    font-weight: bold;
    color: var(--black);
    opacity: 10%;
}
/*under construction section ends*/


/*contact me page*/

/*contact me form*/
#contact-me-form input[type="text"],
#contact-me-form input[type="email"],
#contact-me-form input[type="tel"],
#contact-me-form textarea {
    width: 100%;
    border: 3px solid #FBFBFB30;
    background: var(--light-black);
    color: var(--white);
    margin: 1.25rem 0 1.87rem;
    padding: 1rem 0 1rem 1.68rem;
}

.contact-me-form .btn-container{
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

.form-content{
    grid-column: 1 / 5;
}
/*contact me page ends*/


/*blogs*/
.blog-title-with-content{
    display: flex;
    flex-direction: column;
    gap: 1.87rem;
}
.blog-title-section{
    margin-top: 5rem;
    margin-bottom: 5rem;
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.blog-content{
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.next-previous{
    display: flex;
    gap: 1.87rem;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.next-previous a{
    text-decoration: underline;
    color: var(--black);
}

.next-previous a:hover{
    color: var(--primary);
}

/*blogs end*/


/*Media queries for tablet*/
@media screen and (min-width: 600px) and (max-width: 768px) {
    /*typography*/
    .heading{
        font-size: 2rem;
    }

    .heading-semi-bold{
        font-size: 2rem;
    }

    .title{
        font-size: 1.3rem;
    }

    .title-without-underline-light{
        font-size: 1.3rem;
    }

    .subtitle{
        font-size: 1rem;
        line-height: 210%;
    }

    .subtitle-semi-bold{
        font-size: 1rem;
        line-height: 210%;
    }

    .body-text{
        font-size: 0.87rem;
    }

    .callout{
        font-size: 1rem;

    }

    .callout-underlined{
        font-size: 1rem;
    }

    .callout-extra-light{
        font-size: 1rem;
    }


    /*common CSS*/
    .common-margin-top{
        margin-top: 6.25rem;
    }

    .container{
        max-width: 312.5%;
    }

    .grid{
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    /*navigation*/
    .navigation-bar .hamburger{
        display: none;
        cursor: pointer;
    }

    .navigation-bar .hamburger .line{
        display: block;
        width: 30px;
        height: 3px;
        background: var(--black);
        margin: 6px 0;
    }

    .navigation-bar .flex{
        justify-content: center;
    }

    .nav-links{
        display: none;
        /*position: absolute;*/
        /*height: 450px;*/
        /*top: 90px;*/
        /*left: 0;*/
        /*right: 0;*/
        /*width: 100vh;*/
        /*background: #15141A;*/
    }

    .navigation-bar .navigation-cta {
        display: none;
    }

    /*about me*/
    .aboutMe-inner-content .right-content {
        margin-top: 3rem;
    }

    .aboutMe-inner-content .right-content .inner-paragraph{
        margin-top: 0.62rem;
    }

    /*skills*/
    .skills{
        margin-top: 2.5rem;
    }

    .single-skill{
        border-bottom: 3px var(--black) solid;
    }

    .single-skill:hover{
        border-bottom: 3px var(--primary) solid;
    }

    /*projects*/
    .projects{
        margin-top: 3.12rem;
    }

    .blog-title{
        font-size: 3rem;
    }

    .blog-text{
        font-size: 1rem;
    }

    .blog-title-section{
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .blog-content{
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .blog-container{
        max-width: 100%;
    }
}

/*Media queries for mobile*/
@media screen and (max-width: 600px) {
    /*typography*/
    .heading{
        font-size: 2rem;
    }

    .heading-semi-bold{
        font-size: 2rem;
    }

    .title{
        font-size: 1.7rem;
    }

    .title-without-underline-light{
        font-size: 1.7rem;
    }

    .subtitle{
        font-size: 1.12rem;
        line-height: 210%;
    }

    .subtitle-semi-bold{
        font-size: 1.12rem;
        line-height: 210%;
    }

    .body-text{
        font-size: 0.75rem;
    }

    .callout{
        font-size: 0.875rem;
    }

    .callout-underlined{
        font-size: 0.875rem;
    }

    .callout-extra-light{
        font-size: 0.875rem;
    }

    /*common CSS*/
    .common-margin-top{
        margin-top: 6.25rem;
    }

    .container{
        margin: 0 var(--gap);
        max-width: 156.25%;
        padding-left: 0;
        padding-right: 0;
    }

    .grid{
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    /*navigation*/
    .navigation-bar .hamburger{
        /*display: none;*/
        cursor: pointer;
    }

    .navigation-bar .hamburger .line{
        display: block;
        width: 30px;
        height: 3px;
        background: var(--black);
        margin: 6px 0;
    }

    .navigation-bar .flex{
        justify-content: center;
    }

    .nav-links{
        display: none;
        /*position: absolute;*/
        /*height: 450px;*/
        /*top: 90px;*/
        /*left: 0;*/
        /*right: 0;*/
        /*width: 100vh;*/
        /*background: #15141A;*/
    }

    .navigation-bar .navigation-cta {
        display: none;
    }


    /*about me*/
    .aboutMe-inner-content .right-content {
        margin-top: 2.5rem;
    }

    .aboutMe-inner-content .right-content .inner-paragraph{
        margin-top: 0.62rem;
    }

    /*projects*/
    .projects{
        margin-top: 2.5rem;
        flex-direction: column;
    }

    .single-project{
        width: 19rem;
    }

    /*skills*/
    .skills{
        margin-top: 2.5rem;
    }

    .single-skill{
        border-bottom: 2px var(--black) solid;
    }

    .single-skill:hover{
        border-bottom: 2px var(--primary) solid;
    }

/*footer*/
    .footer-inner-content{
        flex-direction: column;
        gap: 5rem;
        padding-bottom: 5rem;
    }

    .blog-title{
        font-size: 3rem;
    }

    .blog-text{
        font-size: 1rem;
    }

    .blog-title-section{
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .blog-content{
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .blog-container{
        max-width: 100%;
    }

    .CTA{
        margin-top: 2rem;
        padding: 8rem 2rem 8rem 2rem;
    }

    .secondary-btn-variant-two{
        border: 2px solid var(--black);
        padding: 0.96rem 0.80rem;
        font-weight: 500;
    }
}
