@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Signika+Negative:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --color-dark: #191919;
    --color-text: #1C1D20;
    --color-text-light: #FFF;
    --color-gray: #999D9E;
    --color-light: #FFFFFF;
    --color-dark-dark: #141517;
    --color-blue: #455CE9;
    --color-blue-dark: #334BD3;
    --color-red: #ca1616;
    --color-red-dark: #AE1414;

    --color-border-solid: #D2D2D2;
    --color-border-solid-light: #545557;
}


/* General Styles --------------------------------------------- */
*,
*:after,
*:before {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(16px, 1.2vw, 19px);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--color-text);
}

section {
    padding: 100px 0;
    overflow: hidden;
}

img {
    border: 0;
    object-fit: cover;
}

h1 {
    font-family: "Signika Negative", sans-serif;
    font-size: 5.5rem;
    font-weight: 400;
    margin-bottom: 20px;
}

h2 {
    font-family: "Signika Negative", sans-serif;
    font-size: 3.4rem;
    font-weight: 500;
    margin-bottom: 50px;
    text-align: center;
    text-shadow: 0 10px 10px rgba(0, 0, 0, 0.4);
}

h3 {
    font-family: "Poppins", sans-serif;
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 40px;
}

p {
    font-size: 1rem;
    line-height: 2rem;
}

a {
    text-decoration: none;
    color: inherit;
    outline: none;
    cursor: pointer;
}

a:focus {
    outline: none;
}

a:focus-visible {
    outline: 1px solid var(--color-border-solid-light);
    outline-offset: 3px;
    background: none;
}

li {
    list-style: none;
}

/* Responsive design **************************/
@media screen and (max-width: 768px) {
    section {
        padding: 80px 0;
    }

    h2 {
        font-size: 3.2rem;
        margin-bottom: 40px;
    }

    p {
        font-size: 0.9rem;
        line-height: 1.8rem;
    }
}

@media screen and (max-width: 520px) {
    section {
        padding: 60px 0;
    }

    h1 {
        font-size: 3.8rem;
        margin-bottom: 10px;
    }

    h2 {
        font-size: 2.4rem;
        margin-bottom: 25px;
    }

    h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    p {
        font-size: 1rem;
        line-height: 1.6rem;
    }
}


/* Header --------------------------------------------- */
header {
    position: fixed;
    width: 100%;
    padding: 10px 0;
    z-index: 50;
    transition: 0.5s;
    overflow: hidden;
}

.container-nav {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding: 10px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    /* padding: 10px 15px; */
}

.has-bg {
    background-color: var(--color-dark);
    transition: 0.5s;
}

.navbar-logo {
    width: 50px;
}

.navbar-list {
    list-style: none;
    display: flex;
    gap: 30px;
}

.navbar-list li {
    padding: 5px 15px;
    font-size: 1rem;
    color: var(--color-text-light);
    transition: 0.3s;
}

.navbar-list li:hover {
    list-style: disc;
    color: var(--color-red);
}

.navbar_toogleBtn {
    display: none;
    position: absolute;
    right: 35px;
    font-size: 1.6rem;
    color: var(--color-text-light);
    margin-top: 5px;
}

/* Cursor animation ----- */
.cursor {
    pointer-events: none;
}

.cursor__ball {
    position: fixed;
    top: 0;
    left: 0;
    mix-blend-mode: difference;
    z-index: 1000;
}

.cursor__ball circle {
    fill: #f7f8fa;
}

/* Responsive design **************************/
@media only screen and (max-width: 768px) {
    nav .navbar-logo {
        width: 50px;
    }

    header {
        padding: 5px 0;
    }

    .container-nav {
        padding: 5px 0;
    }

    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
    }

    .navbar-list {
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 30px 0;
        width: 100%;
        background-color: var(--color-dark);
    }

    .navbar-list li {
        text-align: center;
        padding: 10px;
    }

    .navbar_toogleBtn {
        display: block;
    }

    .navbar-list.active {
        display: flex;
    }
}

@media only screen and (max-width: 520px) {
    .navbar-list li {
        font-size: 1rem;
    }
}


/* Main section starts ------------------------------------------ */
#main {
    background-image: url(../image/main-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 100px 0 0;
    height: 100vh;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    position: relative;
}

.container-main {
    width: 100%;
    margin: 0 auto;
}

.title-container {
    position: absolute;
    left: 12%;
    top: 60%;
    transform: translateY(-50%);
    z-index: 1;
    text-align: left;
}

#main h1, 
#main h3 {
    color: var(--color-text-light);
    text-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
}

#main h1 {
    animation: move-up 2s forwards;
}

@keyframes move-up {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }

    25% {
        opacity: 25%;
    }

    50% {
        opacity: 50%;
    }

    75% {
        opacity: 75%;
    }

    100% {
        opacity: 100%;
        transform: translateY(0px);
    }
}

/* Responsive design **************************/
@media screen and (max-width: 1168px) {
    .title-container {
        left: 10%;
        top: 68%;
    }
}

@media screen and (max-width: 980px) {
    #main {
        padding: 80px 0 0;
    }

    .title-container {
        left: 10%;
        top: 75%;
    }
}

@media screen and (max-width: 520px) {
    #main {
        padding: 60px 0 0;
    }

    .title-container {
        left: 10%;
        top: 78%;
    }
}


/* Marquee starts --------------------------------------- */
.marquee-container {
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    position: absolute;
    top: 85%;
}

.marquee-inner {
    background-color: transparent;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    padding: 8px 0;
    margin: 0 auto;
    overflow: hidden;
}

.marquee-container h2 {
    font-family: "Audiowide", sans-serif;
    font-size: 8rem;
    font-weight: 600;
    letter-spacing: -5px;
    color: var(--color-gray);
    opacity: 0.1;
}

.marquee-items {
    display: flex;
    width: 100%;
}

.marquee-item-move {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
}

.marquee-inner>div {
    animation: var(--direction) var(--marquee-speed) linear infinite;
}

.marquee-container:hover .marquee-inner>div {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0%);
    }
}

/* Responsive design **************************/
@media screen and (max-width: 768px) {
    .marquee-container {
        top: 85%;
    }

    .marquee-item-move {
        gap: 20px;
        padding: 0 10px;
    }

    .marquee-container h2 {
        font-size: 5.2rem;
    }
}

@media screen and (max-width: 520px) {
    .marquee-item-move {
        gap: 20px;
        padding: 0 10px;
    }
}


/* About starts ------------------------------------------ */
#about {
    background-color: var(--color-light);
    color: var(--color-text);
    padding: 150px 0 100px;
    overflow: hidden;
}

.container-about {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

#about .stripe {
    height: .3px;
    background-color: var(--color-border-solid-light);
}

#about h2 {
    text-align: left;
    margin-left: 45px;
}

#about h3 {
    font-size: 2.2rem;
    font-weight: 500;
    margin: 30px 0;
}

.about-flex {
    display: flex;
    gap: 50px;
}

.about-text-box {
    width: 50%;
    padding: 30px 45px;
    text-align: left;
}

.about-img {
    width: 50%;
    display: flex;
    justify-content: center;
}

.about-btn {
    width: 14vw;
    height: 14vw;
    background-color: var(--color-red);
    border-radius: 50%;
    font-size: 1.2rem;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--color-text-light);
}

.about-btn:hover {
    background-color: var(--color-dark-dark);
}

/* Responsive design **************************/
@media only screen and (max-width: 980px) {
    #about {
        padding: 100px 0 80px;
    }

    #about h3 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 768px) {
    .about-flex {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .about-text-box {
        width: 100%;
        text-align: center;
    }

    .about-img {
        width: 100%;
    }

    #about h2 {
        text-align: center;
        margin-left: 0px;
        margin-bottom: 45px;
    }

    #about h3 {
        font-size: 1.6rem;
        font-weight: 500;
        margin-bottom: 25px;
    }

    .about-btn {
        width: 180px;
        height: 180px;
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 520px) {
    .about-btn {
        width: 120px;
        height: 120px;
        font-size: 1rem;
    }
}


/* Protfolio starts ------------------------------------------ */
#portfolio {
    background-color: var(--color-light);
    color: var(--color-text);
    padding: 100px 0 120px;
    overflow: hidden;
}

.container-pf {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

#portfolio h2 {
    margin-bottom: 60px;
}

#portfolio h3 {
    font-size: 1.6rem;
    font-weight: 500;
    margin: 30px 0;
}

.pf-flex {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
}

.web-design,
.graphic-design {
    width: 50%;
    border: 1px solid var(--color-border-solid-light);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 30px 40px;
    aspect-ratio: 1/1;
}

.web-img img,
.graphic-img img {
    height: 400px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
}

.btn-click {
    padding: 20px 50px;
    margin: 0 auto;
    border: 1px solid var(--color-red);
    color: var(--color-text);
    border-radius: 2.125rem;
    will-change: transform;
    font-size: 1.1rem;
    overflow: hidden;
    position: relative;
}

.btn-click span {
    display: block;
    position: relative;
    z-index: 10;
}

.btn-click:hover span {
    color: var(--color-text-light);
    animation: MoveScaleUpInitial 0.3s forwards, MoveScaleUpEnd 0.3s forwards 0.3s;
}

@keyframes MoveScaleUpInitial {
    to {
        transform: translate3d(0, -105%, 0) scale3d(1, 2, 1);
        opacity: 0;
    }
}

@keyframes MoveScaleUpEnd {
    from {
        transform: translate3d(0, 100%, 0) scale3d(1, 2, 1);
        opacity: 0;
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.btn-click::before,
.btn-click::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.btn-click::before {
    content: '';
    background-color: var(--color-red);
    width: 120%;
    height: 0;
    padding-bottom: 120%;
    top: -110%;
    left: -10%;
    border-radius: 50%;
    transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
}

.btn-click:hover::before {
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
    transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.btn-click::after {
    content: '';
    background: var(--color-red);
    transform: translate3d(0, -100%, 0);
    transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.btn-click:hover::after {
    transform: translate3d(0, 0, 0);
    transition-duration: 0.05s;
    transition-delay: 0.4s;
    transition-timing-function: linear;
}

/* Responsive design **************************/
@media only screen and (max-width: 1200px) {
    #portfolio {
        padding: 80px 0;
    }

    .pf-flex {
        gap: 30px;
    }

    .web-img img,
    .graphic-img img {
        aspect-ratio: 1/0.8;
    }
}

@media only screen and (max-width: 1024px) {
    .web-img img,
    .graphic-img img {
        aspect-ratio: 1/0.95;
    }
}

@media only screen and (max-width: 834px) {
    .web-img img,
    .graphic-img img {
        height: 300px;
        aspect-ratio: 1/0.9;
    }

    #portfolio h3 {
        font-size: 1.4rem;
        margin: 25px 0;
    }
}

@media only screen and (max-width: 760px) {
    .web-img img,
    .graphic-img img {
        aspect-ratio: 1;
    }
}

@media only screen and (max-width: 520px) {
    #portfolio {
        padding: 60px 0;
    }

    .pf-flex {
        flex-direction: column;
        gap: 20px;
    }

    .web-design,
    .graphic-design {
        width: 100%;
    }

    .web-img img,
    .graphic-img img {
        height: 250px;
        aspect-ratio: 1/0.75;
    }

    #portfolio h3 {
        font-size: 1.2rem;
        margin: 20px 0;
    }

    .btn-click {
        padding: 10px 30px;
        font-size: 0.9rem;
    }
}

/* Contact starts ------------------------------------------ */
#contact {
    background-color: var(--color-dark);
    color: var(--color-text-light);
    padding: 100px 0;
    overflow: hidden;
}

.container-contact {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

#contact h2 {
    text-align: left;
    margin-left: 20px;
}

#contact p {
    font-size: 1.2rem;
    margin: 30px 0 30px 20px;
}

#contact .stripe {
    height: .3px;
    background-color: var(--color-border-solid-light);
}

.contact-flex {
    display: flex;
    gap: 50px;
}

.contact-info,
.contact-img {
    width: 50%;
}

.contact-img {
    display: flex;
    justify-content: center;
}

.contact-mail,
.contact-phone {
    width: 75%;
    padding: 20px 40px;
    margin-bottom: 20px;
    border: .5px solid var(--color-red);
    border-radius: 30px;
    transition: 0.3s;
}

.contact-mail:hover,
.contact-phone:hover {
    border: .5px solid gold;
}

.contact-mail a,
.contact-phone a {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.contact-mail i,
.contact-phone i {
    font-size: 1.2rem;
}

.contact-list {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.contact-list li {
    list-style: none;
    font-size: 2rem;
    margin-left: 20px;
    transition: all .6s ease;
}

.contact-list li:hover {
    color: gold;
}

.contact-btn {
    width: 14vw;
    height: 14vw;
    background-color: var(--color-red);
    border-radius: 50%;
    font-size: 1.2rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--color-text-light);
    cursor: pointer;
}

.contact-btn:hover {
    background-color: gold;
    color: var(--color-text);
}

/* Responsive design **************************/
@media only screen and (max-width: 768px) {
    .contact-flex {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 80px;
        padding: 15px 25px;
    }

    #contact h2 {
        text-align: center;
        margin-left: 0px;
    }

    .contact-img,
    .contact-info {
        width: 100%;
    }

    .contact-info {
        flex-direction: column;
        justify-content: center;
        margin: 0 auto;
    }

    .contact-mail,
    .contact-phone {
        text-align: center;
        margin: 25px auto;
    }

    #contact p {
        font-size: 1rem;
        margin-bottom: 20px;
        line-height: 1.8rem;
    }

    .contact-icon {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }

    .contact-btn {
        width: 180px;
        height: 180px;
        font-size: 1.1rem;
    }
}

@media only screen and (max-width: 520px) {
    #contact h2 {
        text-align: center;
        margin-left: 0px;
    }

    #contact p {
        font-size: 1rem;
        margin: 30px 0;
    }

    .contact-mail,
    .contact-phone {
        width: 100%;
    }

    .contact-btn {
        width: 120px;
        height: 120px;
        font-size: 1rem;
    }
}


/* Footer starts ------------------------------------------ */
footer {
    background-color: var(--color-dark);
    color: var(--color-text-light);
    text-align: center;
    padding: 30px 0;
}

.container-footer {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

footer .stripe {
    height: .3px;
    background-color: var(--color-border-solid-light);
    margin-bottom: 20px;
}

@media only screen and (max-width: 520px) {
    .container-footer {
        padding: 15px 0;
    }

    footer p {
        font-size: .7rem;
    }
}


/* -------------------------- Website-page ------------------------------------------ */

/* Hero-web starts ------------------------------------------ */
#hero-web {
    background-image: url(../image/webdesign-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 150px 100px 50px;
    font-family: 'Signika Negative', sans-serif, Arial;
    height: 100vh;
    overflow: hidden;
}

.container {
    display: flex;
    height: 90%;
    width: 90%;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container.grid-letter,
.container.columns {
    align-content: stretch;
    align-items: stretch;
    flex-wrap: wrap;
}

.letter {
    text-align: center;
    color: var(--color-text);
    font-size: 9vmax;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
}

.container.grid-letter .letter {
    flex-basis: 50%;
}

.container.columns .letter {
    flex-basis: 25%;
}

.design {
    font-size: 6vmax;
    color: var(--color-text-light);
    text-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
    padding: 0 4vmax;
    font-weight: 500;
    display: none;
}

.container.final .design {
    display: block;
}

.U,
.x,
.u,
.i {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.U {
    background-image: url(../image/grey-bg.jpg);
}

.x {
    background-image: url(../image/yellow-bg.jpg);
}

.u {
    background-image: url(../image/grey-bg.jpg);
}

.i {
    background-image: url(../image/yellow-bg.jpg);
}

.container.plain .letter {
    background: transparent;
    font-weight: 500;
    color: var(--color-text-light);
    padding: 0 5px;
}

/* Responsive design **************************/
@media screen and (max-width: 768px) {
    #hero-web {
        height: 80vh;
        padding: 150px 25px 50px;
    }

    .design {
        padding: 0 3vmax;
    }
}

@media screen and (max-width: 520px) {
    #hero-web {
        padding: 140px 10px 20px;
    }

    .container {
        height: 80%;
        width: 80%;
    }

    .letter {
        font-size: 1.8rem;
        padding: 0 10px;
    }

    .design {
        font-size: 1.8rem;
    }
}

/* Portfolio-web starts ------------------------------------------ */
#portfolio-design {
    position: relative;
    width: 100%;
    text-align: center;
    overflow: hidden;
}

.portfolio-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 450px;
    background-image: url(../image/design-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    overflow: hidden;
}

.container-design {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.section-body {
    margin-bottom: 80px;
}

.filter {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.filter-btn {
    border: none;
    outline: none;
    background-color: transparent;
    margin: 0.45rem 0.8rem;
    padding: 0.6rem 1.4rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1;
    border-radius: 2rem;
    box-shadow: 0 10px 8px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    cursor: pointer;
}

.filter-btn.active {
    background-color: var(--color-light);
    color: var(--color-text);
}

.grid {
    width: 100%;
    margin: 1.5rem 0;
}

.grid-item {
    width: 33.33%;
    padding: 1rem 1.2rem;
    display: flex;
    justify-content: center;
}

.gallery-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    height: 330px;
    width: 100%;
    cursor: pointer;
    box-shadow: 0 10px 8px rgba(0, 0, 0, 0.2);
}

.gallery-image img {
    position: absolute;
    height: 115%;
    width: initial;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform-origin: center;
    transition: 0.5s;
}

.gallery-image .img-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    color: var(--color-text-light);
    background-color: rgba(176, 139, 187, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 2rem 3.2rem;
    opacity: 0;
    transition: 0.5s;
}

.img-overlay .plus {
    position: relative;
    margin: auto 0;
}

.plus:before,
.plus:after {
    content: "";
    position: absolute;
    width: 4.5rem;
    height: 3px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--color-text-light);
    border-radius: 3px;
}

.plus:before {
    transform: translate(-50%, -50%) rotate(-90deg);
}

.img-description {
    width: 100%;
    text-align: left;
}

.img-overlay h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.img-overlay h5 {
    font-size: .9rem;
    font-weight: 400;
}

.gallery-image:hover .img-overlay {
    opacity: 1;
}

.gallery-image:hover img {
    transform: translate(-50%, -50%) scale(1.1);
}

.pf-btn-click {
    margin: 0;
    border: 1px solid var(--color-red);
    background-color: var(--color-light);
    color: var(--color-text-light);
    border-radius: 2.125rem;
    font-size: 1.1rem;
    overflow: hidden;
    position: relative;
    display: inline-block;
}

.pf-btn-click span {
    position: relative;
    text-align: center;
    width: 100%;
    padding: 20px 50px;
    color: var(--color-text);
    font-size: 1.1rem;
    z-index: 3;
    transition: all 0.3s ease-in-out;
    display: block;
}

.pf-btn-click:hover span {
    color: var(--color-text-light);
    animation: scaleUp 0.3s ease-in-out;
}

@keyframes scaleUp {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
    }
}

.pf-btn-click::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    height: 100%;
    background-color: var(--color-red);
    transition: all 0.4s ease-in-out;
}

.pf-btn-click:hover::after {
    width: 100%;
    top: 0;
    left: 0;
    right: auto;
}

/* Responsive design **************************/
@media only screen and (max-width: 980px) {
    .portfolio-bg {
        height: 400px;
    }

    .background-bg {
        height: 370px;
    }

    .filter {
        margin-bottom: 3rem;
    }

    .filter-btn {
        padding: 0.6rem 1.45rem;
        font-size: 0.7rem;
    }

    .grid {
        margin: 0.8rem 0;
    }

    .grid-item {
        padding: 0.8rem;
    }

    .gallery-image {
        height: 250px;
        max-width: 325px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .gallery-image .img-overlay {
        padding: 1.4rem 2rem;
    }

    .plus:before,
    .plus:after {
        width: 2.8rem;
    }

    .img-overlay h3 {
        font-size: 1.1rem;
    }

    .img-overlay h5 {
        font-size: 0.8rem;
    }
}

@media only screen and (max-width: 850px) {
    .portfolio-bg {
        height: 380px;
    }

    .filter {
        margin-bottom: 2.8rem;
    }

    .grid-item {
        width: 50%;
    }

    .gallery-image {
        height: 210px;
        max-width: 270px;
    }
}

@media only screen and (max-width: 600px) {
    .portfolio-bg {
        height: 320px;
    }

    .filter {
        margin-bottom: 2rem;
    }

    .grid-item {
        width: 100%;
    }

    .gallery-image {
        max-width: 300px;
        height: 210px;
    }
}

@media only screen and (max-width: 480px) {
    .background-bg {
        height: 200px;
    }

    .container-design {
        padding: 0 3rem;
    }

    .filter-btn {
        margin: 0.5rem 0.3rem;
        padding: 0.5rem 1.2rem;
    }
}

/* -------------------------- Website-page ------------------------------------------ */

/* Hero-graphic starts ------------------------------------------ */
#hero-graphic {
    background-image: url(../image/graphicdesign-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    font-family: 'Signika Negative', sans-serif, Arial;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.navbar-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--color-dark);
    z-index: 1;
}

.container-graphic {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.graphic-title {
    position: absolute;
    left: 12%;
    top: 35%;
    transform: translateY(-50%);
    text-align: left;
}

.graphic-title h1 {
    font-size: 5rem;
    font-weight: 600;
    text-shadow: 0 10px 10px rgba(0, 0, 0, 0.4);
    margin-bottom: 8px;
}

.ball {
    width: 30%;
    height: 30%;
    position: absolute;
    top: 78%;
    left: 95%;
    transform: translate(-50%, -50%);
}

/* Responsive design **************************/
@media screen and (max-width: 980px) {
    #hero-graphic {
        padding: 80px 0;
    }

    .graphic-title h1 {
        font-size: 4.4rem;
        margin-bottom: 4px;
    }
}

@media screen and (max-width: 768px) {
    .graphic-title h1 {
        font-size: 3.8rem;
        margin-bottom: 2px;
    }
}

@media screen and (max-width: 520px) {
    .graphic-title {
            top: 32%;
        }

    .navbar-bg {
        height: 90px;
    }
        
    .graphic-title h1 {
        font-size: 3rem;
        margin-bottom: 0px;
    }
}


