:root {
    --background-color: #080808;
    --text-color: #fff;
    --project-btn-hover-color: #fff;
    --accent-color: #ff004f;
    --accent-color-border: #ff004f;
    --nav-background: rgba(38, 38, 38, 0.8);
    --box-background: #262626;
    --pink-btn-text-hover: #262626;
    --input-background: #262626;
    --pink-btn-background: #262626;
    --link-color: #fff;
    --background-image: linear-gradient(to bottom left, rgba(8, 8, 8, 0.5), rgba(8, 8, 8, 0.9)), url(./images/backgrounds.png);
    --mbackground-image: linear-gradient(to bottom left, rgba(8, 8, 8, 0.5), rgba(8, 8, 8, 0.9)), url(./images/mobile\ backgrounds.png);
    --about-color: #ababab;
    --layer-gradient: linear-gradient(#00000099, #262626);
    --layer-hover: linear-gradient(#00000099, #ff004f);
    --nav-background: rgba(38, 38, 38, 0.8);
    --faded-shadow: rgba(255, 0, 79, 0.2);

}

.mode-1 {
    --background-color: #f4f1eb;
    --text-color: #2b2b2b;
    --project-btn-hover-color: #2b2b2b;
    --accent-color: #b28a5d;
    --accent-color-border: #b28a5d;
    --nav-background: rgba(225, 220, 210, 0.85);
    --box-background: #d6c4ab;
    --pink-btn-text-hover: #d6c4ab;
    --input-background: #faf8f3;
    --pink-btn-background: #faf8f3;
    --link-color: #7a5d3c;
    --background-image: linear-gradient(to bottom left, rgba(244, 241, 235, 0.5), rgba(244, 241, 235, 0.9)), url(./images/backgroundss.png);
    --mbackground-image: linear-gradient(to bottom left, rgba(244, 241, 235, 0.5), rgba(244, 241, 235, 0.9)), url(./images/mobile\ backgroundss.png);
    --about-color: #3d3d3d;
    --layer-gradient: linear-gradient(#e6d0b2, #c7a985);
    --layer-hover: linear-gradient(#f2e2cd, #f8f1e6);
    --faded-shadow: rgba(178, 138, 93, 0.3);
}

.mode-2 {
    --background-color: linear-gradient(to bottom left, #fffaf5, #ffdfda, #f7bdd8, #b5c6f2);
    --text-color: #3d011ee8;
    --project-btn-hover-color: #af346e;
    --accent-color: linear-gradient(to left, #fbaed2, #9bbdfb);
    --accent-color-border: #993262;
    --nav-background: linear-gradient(to right, rgba(255, 232, 220, 0.95), rgba(248, 210, 180, 0.9));
    --box-background: linear-gradient(to bottom left, #fde8dc, #f5c6c4, #d4b8f7);
    --pink-btn-text-hover: #b55783;
    --input-background: linear-gradient(to bottom left, #fffaf5, #ffdfda, #f7bdd8, #b5c6f2);
    --pink-btn-background: #c4779b;
    --link-color: #2e2e2e;
    --background-image: linear-gradient(to bottom left, rgba(255, 245, 230, 0.55), rgba(250, 220, 200, 0.50), rgba(225, 190, 250, 0.9)), url(./images/backgroundss.png);
    --mbackground-image: linear-gradient(to bottom left, rgba(255, 235, 220, 0.55), rgba(245, 210, 190, 0.50), rgba(215, 175, 235, 0.9)), url(./images/mobile\ backgroundss.png);
    --about-color: #2e2e2e;
    --layer-gradient: linear-gradient(to bottom left, #ffdde1, #e89cb5, #b5c6f2);
    --layer-hover: linear-gradient(to bottom left, #ffecef, #f6d4f0, #c8c0f5);
    --faded-shadow: rgba(0, 0, 0, 0.575);
    --glow-effect: 0px 6px 24px rgba(230, 140, 200, 0.25);
}

/* Cursor circle */
.cursor-shadow {
    position: fixed;
    width: 1px;
    height: 1px;
    background: linear-gradient(135deg, rgba(255, 0, 150, 0.3), rgba(0, 204, 255, 0.3));
    border-radius: 50%;
    pointer-events: none;
}

.cursor-shadow::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 0, 150, 0.5), rgba(0, 204, 255, 0.5));
    border-radius: 50%;
    transform: translate(-50%, -50%);
    filter: blur(25px);
    z-index: -1;
}

/* CLICK EFFECT */
.click-effect {
    position: fixed;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 0, 150, 0.5), rgba(0, 204, 255, 0.1));
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    animation: clickAnimation 0.5s ease-out;
}

@keyframes clickAnimation {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

* {
    margin: 0;
    padding: 0;
    font-family: 'poppins', sans-serif;
    box-sizing: border-box;
}

*::-webkit-scrollbar {
    display: none;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--background-color);
    color: var(--text-color);
    overflow-x: hidden;

}

#header {
    width: 100%;
    height: 100vh;
    overflow: auto;
    background-image: var(--background-image);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

#header::-webkit-scrollbar {
    display: none;
}

.container {
    padding: 10px 5%;
    overflow-x: hidden;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

nav ul::-webkit-scrollbar {
    display: none;
}

.container a {
    text-decoration: none;
    color: inherit;
}

.logo {
    display: flex;
    font-weight: 900;
    font-size: 21px;
}

.logo-first-letter {
    font-size: 22px;
    color: var(--accent-color-border);
}

nav ul li {
    display: inline-block;
    list-style: none;
    margin: 10px 14px;
    transition: 0.5s;
}

#side-menu {
    overflow-y: auto;
}

nav ul li:hover {
    transform: scale(1.1);
}

nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 18px;
    position: relative;
}

nav ul li a::after {
    content: '';
    width: 0%;
    height: 3px;
    background: var(--accent-color);
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}

nav ul li a:hover::after {
    width: 100%;
}

.header-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 15%;
    gap: 2rem;
}

.header-text-heading {
    font-size: 35px;
    color: var(--text-color);
    font-weight: 500;
}

.span-red {
    color: var(--accent-color-border);
}

.role {
    color: var(--accent-color);
    font-weight: 800;
}

.header-text-sub-heading {
    font-size: 45px;
    line-height: 45px;
}

.header-text-description {
    margin-top: 1rem;
    width: 70%;
    font-weight: 500;
    font-size: 22px;
}

.btn-pink {
    background: var(--accent-color);
    width: fit-content;
    color: var(--text-color);
    padding: 0.8rem 2.3rem;
    box-shadow: 5px 5px 7px 0 #3f3f3f;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.5s;
    font-weight: bolder;
    border: solid 3px transparent;
    position: relative;
    z-index: 1;
}

.btn-pink::before {
    content: "";
    position: absolute;
    background: var(--text-color);
    top: 0px;
    left: 0px;
    right: 0;
    bottom: 0;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: all 0.8s;
}

.btn-pink:hover::before {
    transform: scale(1);
}

.btn-pink:hover {
    transform: translateY(-3px);
    color: var(--pink-btn-background);
    box-shadow: 8px 8px 10px 0 #3f3f3f;

}

.faded-text {
    user-select: none;
    font-size: 4.5em;
    color: var(--pink-btn-background);
    position: relative;
    padding-left: 5%;
    font-weight: bold;
    transition: all 3s;
    opacity: 0.4;
    text-shadow: 1px 1px 4px var(--faded-shadow);
}

.faded-texts {
    user-select: none;
    font-size: 4.5em;
    color: var(--pink-btn-background);
    font-weight: bold;
    transition: all 3s;
    text-shadow: 1px 1px 4px var(--faded-shadow);
}


/* -----------------------about----------------------- */
#about {
    padding-top: 10px;
    color: var(--about-color);
}

.row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-col-1 {
    flex-basis: 35%;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow:
        5px 0px 20px rgba(17, 17, 17, 0.6),
        -5px 0px 20px rgba(35, 35, 35, 0.6),
        0px 5px 20px rgba(63, 63, 63, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.about-col-1:hover {
    border-radius: 18px;
    box-shadow:
        10px 0px 30px rgba(17, 17, 17, 0.7),
        -10px 0px 30px rgba(35, 35, 35, 0.7),
        0px 10px 30px rgba(63, 63, 63, 0.7);
    transform: scale(1.02);
}

.about-col-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s;
}

.about-col-1 img:hover {
    transform: scale(1.05);
    filter: grayscale(0.6);
}

.about-col-2 {
    flex-basis: 60%;
}

.about-col-2 p {
    padding-top: 10px;
    font-size: 17px;
}

.sub-title {
    font-size: 60px;
    font-weight: 600;
    color: var(--text-color);

}

.tab-tittle {
    display: flex;
    margin: 20px 0 20px;
    color: var(--text-color);
    font-size: 25px;

}

.tab-links {
    margin-right: 50px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    position: relative;

}

.tab-links::after {
    content: '';
    width: 0;
    height: 3px;
    background: var(--accent-color);
    position: absolute;
    left: 0;
    bottom: -8px;
    transition: 0.5s;
}

.tab-links.active-link::after {
    width: 50%;
}

.tab-contents ul li {
    list-style: none;
    margin: 10px 0;
}

.tab-contents ul li span {
    font-size: 14px;
    font-weight: bolder;
    color: var(--accent-color-border);
}

.tab-contents {
    display: none;
}

.tab-contents.active-tab {
    display: block;
}



/* ----------------------------------projects---------------------------------------- */

#projects {
    padding: 30px 0;
}

.project-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px;
    margin-top: 50px;
}

.project-list div {
    background: var(--layer-gradient);
    padding: 40px;
    font-size: 13px;
    font-weight: 300;
    border-radius: 15px;
    transition: 0.5s, transform 0.5s;
    box-shadow: 5px 5px 7px 0 #3f3f3f;
}

.project-list div:hover {
    transform: translateY(-3px);
    box-shadow: 8px 8px 20px 0 #3f3f3f;
}

.project-role-1,
.project-role-2,
.project-role-3,
.project-role-4 {
    display: inline;
}

.btn.pbtn {
    color: var(--pink-btn-background);
    font-size: 25px;
    background: var(--accent-color);
}

.project-list div:hover .btn.pbtn {
    color: var(--project-btn-hover-color);
    background: var(--box-background);
}

.icons-red a {
    text-decoration: none;
    color: inherit;
}

.icons-red {
    color: var(--accent-color-border);
}

.project-list div:hover .icons-red {
    color: var(--text-color);
}

button .fa-solid.fa-link {
    font-size: 25px;
}


.project-list div span i {
    padding: 5px;
    font-size: 32px;
}


.project-list div i {
    font-size: 50px;
    margin-bottom: 30px;

}

.project-list div h2 {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 15px;
}

.project-list div p {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 1px;
}

.project-list div h3 {
    margin-bottom: 0px;
}


.project-list div a {
    text-decoration: none;
    color: inherit;
    color: var(--text-color);
    font-size: 12px;
    margin-top: 20px;
    display: inline-block;
}

.project-list div:hover {
    background: var(--accent-color);
    color: var(--pink-btn-text-hover);
    transform: translateY(-10px);
}

.btn {
    display: block;
    margin: 50px auto;
    width: fit-content;
    border: 2px solid var(--accent-color-border);
    padding: 14px 50px;
    border-radius: 6px;
    text-decoration: none;
    color: var(--text-color);
    box-shadow: 5px 5px 7px 0 #3f3f3f;
    transition: 0.5s;
}

.btn:hover {
    background: var(--accent-color);
    color: var(--pink-btn-text-hover);
    transform: translateY(-3px);
    box-shadow: 8px 8px 12px 0 #3f3f3f;
}


/* ------------------------------Internship and work------------------------------ */
#experience {
    padding: 20px 0 100px 0;
}

.work-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px;
    margin-top: 50px;
}

.work {
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    transition: 0.5s, transform 0.5s;
    box-shadow: 5px 5px 7px 0 #3f3f3f;
}

.work:hover {
    transform: translateY(-3px);
    box-shadow: 8px 8px 20px 0 #3f3f3f;
}

.work img {
    width: 100%;
    border-radius: 15px;
    display: block;
    transition: transform 0.5s;
    opacity: 0.2;
}

.layer {
    width: 100%;
    height: 90%;
    background: var(--layer-gradient);
    border-radius: 15px;
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    font-size: 14px;
    transition: height 0.5s;
}

.layer h3 {
    font-weight: 600;
    margin-bottom: 20px;
}

.layer a {
    margin-top: 20px;
    color: var(--accent-color-border);
    text-decoration: none;
    font-size: 18px;
    line-height: 60px;
    background: var(--text-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
}

.work:hover img {
    transform: scale(1.1);
}

.work:hover .layer {
    height: 100%;
    background: var(--layer-hover);
}


@keyframes bcolorChange {
    0% {
        background-color: var(--box-background);
    }

    25% {
        background-color: var(--about-color);
    }

    50% {
        background-color: var(--background-color);
    }

    75% {
        background-color: var(--input-background);
    }

    100% {
        background-color: var(--nav-background);
    }
}

hr {

    animation: bcolorChange 10s infinite;
    height: 0.125rem;
    border-radius: 15px;
    border: none;
    width: 75%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}




/* -----------------------------------------Sevices----------------------------------------- */
#services {
    padding: 20px 0 100px 0;
}

#services .container {
    overflow: hidden;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 40px;
    margin-top: 50px;
}

.services-list div {
    background: var(--layer-gradient);
    padding: 40px;
    font-size: 13px;
    font-weight: 300;
    border-radius: 15px;
    box-shadow: 5px 5px 7px 0 #3f3f3f;
    transition: 0.5s, transform 0.5s;
}

.services-list div:hover {
    background: var(--accent-color);
    color: var(--pink-btn-text-hover);
    transform: translateY(-3px);
    box-shadow: 8px 8px 20px 0 #3f3f3f;
}

.services-list div span i {
    padding: 5px;
    font-size: 50px;
    margin-bottom: 30px;
}

.services-list div h2 {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 15px;
}

.services-list div p {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 1px;
}

.services-list .icons-red {
    color: var(--accent-color-border);
}

.services-list div:hover .icons-red {
    color: var(--text-color);
}

.btn.pbtn {
    color: var(--input-background);
    font-size: 25px;
    background-color: var(--accent-color);
}

.services-list div:hover .btn.pbtn {
    color: var(--text-color);
    background-color: var(--box-background);
}



/* --------------------------------------Contact--------------------------------------------- */
.Contact-left {
    flex-basis: 35%;

}

.Contact-left p {
    margin-top: 30px;
}

.Contact-left p i {
    color: var(--accent-color-border);
    margin-right: 15px;
    font-size: 25px;
    transition: 0.5s;
}

.Contact-left p a {
    color: var(--text-color);
    text-decoration: none;
    transition: 0.5s;
}

.Contact-left p a:hover {
    color: var(--accent-color-border);
    text-decoration: none;
}

.Contact-left p a:hover i {
    color: var(--text-color);
    text-decoration: none;
}

.social-icons {
    margin-top: 30px;
}

.social-icons a {
    text-decoration: none;
    font-size: 30px;
    margin-right: 15px;
    color: var(--about-color);
    display: inline-block;
    transition: transform 0.5s;
}

.social-icons a:hover {
    color: var(--accent-color-border);
    transform: translateY(-5px);
}

.btn.btn2 {
    display: inline-block;
    background: var(--accent-color);
}

.Contact-right {
    flex-basis: 60%;

}

.Contact-right form {
    width: 100%;
}

form input,
form textarea {
    width: 100%;
    border: 0;
    outline: none;
    background: var(--input-background);
    padding: 15px;
    margin: 15px 0;
    color: var(--text-color);
    font-size: 18px;
    border-radius: 6px;
    resize: none;
}

form .btn2 {
    padding: 14px 60px;
    font-size: 18px;
    margin-top: 20px;
    cursor: pointer;
    transition: 0.5s;
}

.btn:hover {
    transform: translateY(-5px);
}

footer p {
    width: 100%;
    text-align: center;
    padding: 25px 0;
    background: var(--box-background);
    font-weight: 300;
    margin-top: 20px;
}

footer p b {
    color: var(--accent-color-border);
}

footer p b a {
    text-decoration: none;
    color: inherit;
}

nav .fas {
    display: none;
}

#msg {
    color: #389328;
    margin-top: -10px;
    display: block;
}

.arrow-top {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 1000;
    transition: 0.5s;
}

.arrowcercle {
    height: 40px;
    width: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrowcercle a {
    color: var(--text-color);
    font-size: 20px;
    text-decoration: none;
}

.arrow-top:hover {
    transform: scale(1.1);
    color: var(--pink-btn-text-hover);
}

#backToTop a {
    text-decoration: none;
    color: inherit;
}

.current-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--accent-color);
    position: absolute;
    top: 15px;
    right: 15px;
    animation: greenPulse 1s infinite alternate;
    z-index: 1000;
}

@keyframes greenPulse {
    0% {
        background-color: var(--link-color);
    }
    50% {
        background-color: var(--input-background);
    }
    100% {
        background-color: var(--accent-color);
    }
}



/* --------------------------CSS for small screen----------------------------- */
@media only screen and (max-width:600px) {
    #header {
        background-image: var(--mbackground-image);
    }

    nav .fas {
        display: block;
        font-size: 25px;
    }

    nav ul {
        background: var(--nav-background);
        position: fixed;
        top: 0;
        right: -200px;
        width: 200px;
        height: 100vh;
        padding-top: 50px;
        z-index: 2;
        transition: right 0.5s;
    }

    nav ul li {
        display: block;
        margin: 25px;
    }

    nav ul .fas {
        position: absolute;
        top: 25px;
        left: 25px;
        cursor: pointer;
    }

    .sub-title {
        font-size: 40px;
    }

    .about-col-1,
    .about-col-2 {
        flex-basis: 100%;
    }

    .about-col-1 {
        margin-bottom: 30px;
    }

    .about-col-2 {
        font-size: 14px;
    }

    #About-para {
        margin-right: 5px;
    }

    .tab-links {
        font-size: 16px;
        margin-right: 20px;
    }

    .Contact-left,
    .Contact-right {
        flex-basis: 100%;
    }

    footer p {
        font-size: 14px;
    }

    .header-text {
        padding-top: 50%;
        gap: 1rem;
    }

    .header-text-heading {
        font-size: 20px;
        font-weight: 300;
    }

    .role {
        font-weight: 500;
    }

    .header-text-sub-heading {
        font-size: 20px;
        line-height: 20px;
    }

    .header-text-description {
        margin-top: 0.5rem;
        width: 80%;
        font-weight: 300;
        font-size: 18px;
    }

    .faded-text {
        font-size: 2.3rem;
    }

    .faded-texts {
        font-size: 2.3em;
    }

    .container {
        overflow-y: hidden;
    }
}


/* -------------------Media for responsive design-------------- */
@media only screen and (min-width: 601px) and (max-width: 800px) {
    #header {
        background-image: var(--mbackground-image);
    }

    nav .fas {
        display: block;
        font-size: 25px;
    }

    nav ul {
        background: var(--nav-background);
        position: fixed;
        top: 0;
        right: -200px;
        width: 200px;
        height: 100vh;
        padding-top: 50px;
        z-index: 2;
        transition: right 0.5s;
    }

    nav ul li {
        display: block;
        margin: 25px;
    }

    nav ul .fas {
        position: absolute;
        top: 25px;
        left: 25px;
        cursor: pointer;
    }

    .header-text {
        padding-top: 20%;
        gap: 1rem;
    }

    .header-text-heading {
        font-size: 20px;
        font-weight: 300;
    }

    .role {
        font-weight: 500;
    }

    .header-text-sub-heading {
        font-size: 20px;
        line-height: 20px;
    }

    .header-text-description {
        margin-top: 0.5rem;
        width: 80%;
        font-weight: 300;
        font-size: 18px;
    }

    .faded-text {
        font-size: 3rem;
    }

    .faded-texts {
        font-size: 3rem;
    }

    .about-col-1 {
        flex-basis: 70%;
    }

    .Fourth-project {
        display: block !important;
    }
}

@media only screen and (min-width: 601px) and (max-width: 700px) {

    .Contact-left,
    .Contact-right {
        flex-basis: 100%;
    }
}

@media only screen and (min-width: 800px) and (max-width: 920px) {
    nav .fas {
        display: block;
        font-size: 25px;
    }

    nav ul {
        background: var(--nav-background);
        position: fixed;
        top: 0;
        right: -200px;
        width: 200px;
        height: 100vh;
        padding-top: 50px;
        z-index: 2;
        transition: right 0.5s;
    }

    nav ul li {
        display: block;
        margin: 25px;
    }

    nav ul .fas {
        position: absolute;
        top: 25px;
        left: 25px;
        cursor: pointer;
    }

    .about-col-1 {
        flex-basis: 70%;
    }

    .Fourth-project {
        display: block !important;
    }
}


@media (max-width: 350px) {
    .row {
        flex-direction: column;
        align-items: center;
    }

    .about-col-1,
    .about-col-2 {
        flex-basis: 100%;
        text-align: center;
    }

    .about-col-2 p {
        padding-top: 0.5rem;
        font-size: 1rem;
    }

    .sub-title {
        font-size: 2.5rem;
    }

    .tab-tittle {
        flex-direction: column;
        align-items: center;
        font-size: 1.2rem;
    }

    .tab-links {
        margin-right: 0;
        margin-bottom: 10px;
        font-size: 16px;
    }

    .tab-links.active-link::after {
        width: 80%;
    }

    .tab-contents ul li span {
        font-size: 12px;
    }

    .faded-text {
        font-size: 2rem;
    }

    .faded-texts {
        font-size: 2rem;
    }
}

@media (max-width: 400px) {

    .about-col-1,
    .about-col-2 {
        flex-basis: 100%;
    }

    .about-col-2 p {
        padding-top: 0.5rem;
        font-size: 1rem;
    }

    .sub-title {
        font-size: 2.5rem;
    }

    .tab-tittle {
        padding: 3px;
        justify-content: space-between;
    }

    .tab-links {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .tab-links.active-link::after {
        width: 80%;
    }

    .tab-contents ul li span {
        font-size: 12px;
    }
}