@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap);:root {
    --header-height: 3rem;
    --hue: 0;
    --sat: 0%;
    --title-color: hsl(var(--hue),var(--sat),20%);
    --title-color-dark: hsl(var(--hue),var(--sat),0%);
    --text-color: hsl(var(--hue),var(--sat),46%);
    --body-color: hsl(var(--hue),var(--sat),98%);
    --container-color: #fff;
    --body-font: "Poppins",sans-serif;
    --big-font-size: 3.5rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.813rem;
    --tiny-font-size: 0.625rem;
    --font-normal: 400;
    --font-medium: 500;
    --font-semi-bold: 600;
    --mb-0-25: 0.25rem;
    --mb-0-5: 0.5rem;
    --mb-0-75: 0.75rem;
    --mb-1: 1rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-2-5: 2.5rem;
    --mb-3: 3rem;
    --z-tooltip: 10;
    --z-fixed: 100;
    --z-modal: 1000
}

@media screen and (max-width: 992px) {
    :root {
        --big-font-size:2.75rem;
        --h1-font-size: 1.5rem;
        --h2-font-size: 1.25rem;
        --h3-font-size: 1rem;
        --normal-font-size: 0.938rem;
        --small-font-size: 0.813rem;
        --smaller-font-size: 0.75rem
    }
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body,button,input,textarea {
    font-family: Poppins,sans-serif;
    font-family: var(--body-font);
    font-size: 1rem;
    font-size: var(--normal-font-size)
}

body {
    background-color: #fafafa;
    background-color: var(--body-color);
    color: #757575;
    color: var(--text-color)
}

h1,h2,h3 {
    color: #333;
    color: var(--title-color);
    font-weight: 600;
    font-weight: var(--font-semi-bold)
}

ul {
    list-style: none
}

a {
    text-decoration: none
}

button {
    border: none;
    cursor: pointer;
    outline: none
}

img {
    height: auto;
    max-width: 100%
}

.section {
    padding: 6rem 0 2rem
}

.section__title {
    color: #333;
    color: var(--title-color);
    font-size: 2.25rem;
    font-size: var(--h1-font-size)
}

.section__subtitle {
    display: block;
    font-size: .875rem;
    font-size: var(--small-font-size);
    margin-bottom: 4rem
}

.section__subtitle,.section__title {
    text-align: center
}

.container {
    margin-left: auto;
    margin-right: auto;
    max-width: 968px
}

.grid {
    grid-gap: 1.5rem;
    display: grid;
    gap: 1.5rem
}

.button {
    background-color: #333;
    background-color: var(--title-color);
    border-radius: 1rem;
    color: #fff;
    color: var(--container-color);
    display: inline-block;
    font-weight: 500;
    font-weight: var(--font-medium);
    padding: 1.25rem 2rem
}

.button:hover {
    background-color: #000;
    background-color: var(--title-color-dark)
}

.button__icon {
    margin-left: .5rem;
    margin-left: var(--mb-0-5)
}

.button--flex {
    align-items: center;
    display: inline-flex
}

@media screen and (max-width: 992px) {
    .container {
        margin-left:1.5rem;
        margin-left: var(--mb-1-5);
        margin-right: 1.5rem;
        margin-right: var(--mb-1-5)
    }

    .button {
        padding: 1rem 1.75rem
    }

    .button__icon {
        height: 22px;
        width: 22px
    }
}

@media screen and (max-width: 768px) {
    body {
        margin:0 0 3rem;
        margin: 0 0 var(--header-height) 0
    }

    .section {
        padding: 2rem 0 4rem
    }

    .section__subtitle {
        margin-bottom: 3rem;
        margin-bottom: var(--mb-3)
    }
}

@media screen and (max-width: 350px) {
    :root {
        --big-font-size:2.25rem
    }

    .container {
        margin-left: 1rem;
        margin-left: var(--mb-1);
        margin-right: 1rem;
        margin-right: var(--mb-1)
    }
}

.header {
    background-color: var(--body-color);
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: var(--z-fixed)
}

.nav {
    align-items: center;
    -webkit-column-gap: 1rem;
    column-gap: 1rem;
    display: flex;
    height: calc(var(--header-height) + 1.5rem);
    justify-content: space-between
}

.nav__logo,.nav__toggle {
    color: var(--title-color);
    font-weight: var(--font-medium)
}

.nav__list {
    -webkit-column-gap: 2rem;
    column-gap: 2rem;
    display: flex
}

.nav__link {
    align-items: center;
    color: var(--title-color);
    display: flex;
    flex-direction: column;
    font-size: var(--small-font-size);
    font-weight: var(--font-medium);
    transition: .3s
}

.nav__close,.nav__icon,.nav__toggle {
    display: none
}

.active-link,.nav__link:hover {
    color: #add8e6
}

.scroll-header {
    box-shadow: 0 -1px 4px rgba(0,0,0,.15)
}

@media screen and (max-width: 768px) {
    .header {
        bottom:0;
        top: auto
    }

    .nav {
        height: var(--header-height)
    }

    .nav__menu {
        background-color: var(--body-color);
        border-radius: 1.5rem 1.5rem 0 0;
        bottom: -100%;
        box-shadow: 0 -1px 4px rgba(0,0,0,.15);
        left: 0;
        padding: 2rem 1.5rem 4rem;
        position: fixed;
        transition: .3s;
        width: 100%
    }

    .show-menu {
        bottom: 0
    }

    .nav__list {
        grid-gap: 2rem;
        display: grid;
        gap: 2rem;
        grid-template-columns: repeat(3,1fr)
    }

    .nav__icon {
        font-size: 1.2rem
    }

    .nav__close {
        bottom: .5rem;
        color: var(--title-color);
        cursor: pointer;
        font-size: 1.5rem;
        position: absolute;
        right: 1.3rem
    }

    .nav__close:hover {
        color: var(--title-color-dark)
    }

    .nav__toggle {
        cursor: pointer;
        font-size: 1.1rem
    }

    .nav__close,.nav__icon,.nav__toggle {
        display: block
    }
}

@media screen and (max-width: 350px) {
    .nav__menu {
        padding:2rem .25rem 4rem
    }

    .nav__list {
        -webkit-column-gap: 0;
        column-gap: 0
    }
}

.home__container {
    row-gap: 7rem
}

.home__content {
    align-items: center;
    -webkit-column-gap: 2rem;
    column-gap: 2rem;
    grid-template-columns: 116px repeat(2,1fr);
    padding-top: 5.5rem
}

.home__social {
    grid-row-gap: 1rem;
    display: grid;
    grid-template-columns: -webkit-max-content;
    grid-template-columns: max-content;
    row-gap: 1rem
}

.home__social-icon {
    color: var(--title-color);
    font-size: 1.25rem
}

.home__social-icon:hover {
    color: var(--title-color-dark)
}

.home__title {
    font-size: var(--big-font-size);
    margin-bottom: var(--mb-0-25)
}

.home__hand {
    height: 38px;
    margin-left: .4rem;
    width: 38px
}

.home__subtitle {
    font-size: var(--h3-font-size);
    font-weight: var(--font-normal);
    margin-bottom: var(--mb-1);
    padding-left: 5.4rem;
    position: relative
}

.home__subtitle:before {
    background-color: var(--text-color);
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    top: 1rem;
    width: 70px
}

.home__description {
    margin-bottom: var(--mb-3);
    max-width: 400px
}

.home__img {
    -webkit-animation: profile__animate 8s ease-in-out 1s infinite;
    animation: profile__animate 8s ease-in-out 1s infinite;
    background: url(/Personal-Portfolio/static/media/prof.716f17753c9096d7b8d0.png);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: inset 0 0 0 9px hsla(0,0%,100%,.3);
    height: 300px;
    justify-self: center;
    order: 1;
    width: 300px
}

@-webkit-keyframes profile__animate {
    0% {
        border-radius: 60% 40% 30% 70%/60% 30% 70% 40%
    }

    50% {
        border-radius: 30% 60% 70% 40%/50% 60% 30% 60%
    }

    to {
        border-radius: 60% 40% 30% 70%/60% 30% 70% 40%
    }
}

@keyframes profile__animate {
    0% {
        border-radius: 60% 40% 30% 70%/60% 30% 70% 40%
    }

    50% {
        border-radius: 30% 60% 70% 40%/50% 60% 30% 60%
    }

    to {
        border-radius: 60% 40% 30% 70%/60% 30% 70% 40%
    }
}

.home__scroll {
    margin-left: 9.25rem
}

.wheel {
    -webkit-animation: scroll 2s ease infinite;
    animation: scroll 2s ease infinite
}

@-webkit-keyframes scroll {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    30% {
        -webkit-transform: TranslateY(3.75rem);
        transform: TranslateY(3.75rem)
    }
}

@keyframes scroll {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    30% {
        -webkit-transform: TranslateY(3.75rem);
        transform: TranslateY(3.75rem)
    }
}

.home__scroll-name {
    color: var(--title-color);
    font-weight: var(--font-medium);
    margin-left: 2px;
    margin-right: var(--mb-0-25)
}

.home__scroll-arrow {
    color: var(--title-color);
    font-size: 1.25rem
}

@media screen and (max-width: 992px) {
    .home__content {
        -webkit-column-gap:1.25rem;
        column-gap: 1.25rem;
        grid-template-columns: 100px repeat(2,1fr)
    }

    .home__hand {
        height: 26px;
        width: 26px
    }

    .home__subtitle {
        margin-bottom: var(--mb-1);
        padding-left: 3.75rem
    }

    .home__subtitle:before {
        top: .8rem;
        width: 42px
    }

    .home__description {
        margin-bottom: var(--mb-0-25);
        max-width: none
    }

    .home__img {
        box-shadow: inset 0 0 0 8px hsla(0,0%,100%,.3);
        height: 250px;
        width: 250px
    }

    .home__scroll {
        margin-left: 7.5rem
    }
}

@media screen and (max-width: 768px) {
    .home__content {
        grid-template-columns:.5fr 3fr;
        padding-top: 3.5rem
    }

    .home__img {
        justify-self: auto;
        order: 0
    }

    .home__data {
        grid-column: 1/3
    }

    .home__img {
        box-shadow: inset 0 0 0 6px hsla(0,0%,100%,.3);
        height: 200px;
        width: 200px
    }

    .home__scroll {
        display: none
    }
}

@media screen and (max-width: 350px) {
    .home__img {
        height:180px;
        width: 180px
    }

    .home__hand {
        height: 22px;
        width: 22px
    }
}

.about__container {
    align-items: center;
    -webkit-column-gap: 4rem;
    column-gap: 4rem;
    grid-template-columns: repeat(2,1fr)
}

.about__img {
    border-radius: 1.5rem;
    justify-self: center;
    width: 350px
}

.about__info {
    gap: .5rem;
    grid-template-columns: repeat(3,140px);
    margin-bottom: var(--mb-2)
}

.about__box {
    background-color: var(--container-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: .75rem;
    padding: 1rem 1.25rem;
    text-align: center
}

.about__icon {
    color: var(--title-color);
    font-size: 1.5rem;
    margin-bottom: var(--mb-0-5)
}

.about__title {
    font-size: var(--small-font-size);
    font-weight: var(--font-medium)
}

.about__subtitle {
    font-size: var(--tiny-font-size)
}

.about__description {
    margin-bottom: var(--mb-2-5);
    padding: 0 4rem 0 0
}
.about__box .about__subtitle {
    color: red;
    font-size: 1.2rem; /* Change the font size to your desired value */
    font-weight: bold; /* Make the text bolder */
}
  
@media screen and (max-width: 992px) {
    .about__container {
        grid-template-columns:1fr;
        row-gap: 2.5rem
    }

    .about__img {
        width: 220px
    }

    .about__box {
        padding: .75rem .5rem
    }

    .about__data {
        text-align: center
    }

    .about__info {
        justify-content: center
    }

    .about__description {
        margin-bottom: 2rem;
        padding: 0 5rem
    }
}

@media screen and (max-width: 576px) {
    .about__info {
        grid-template-columns:repeat(3,1fr)
    }

    .about__description {
        padding: 0
    }
}

@media screen and (max-width: 350px) {
    .about__info {
        grid-template-columns:repeat(2,1fr)
    }
}

.skills__container {
    -webkit-column-gap: 3rem;
    column-gap: 3rem;
    grid-template-columns: repeat(2,350px);
    justify-content: center
}

.skills__content {
    background-color: var(--container-color);
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 1.25rem;
    padding: 2rem 4rem
}

.skills__title {
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
    margin-bottom: var(--mb-1-5);
    text-align: center
}

.skills__box {
    -webkit-column-gap: 2.5rem;
    column-gap: 2.5rem;
    display: flex;
    justify-content: center
}

.skills__group {
    grid-row-gap: 1rem;
    align-items: flex-start;
    display: grid;
    row-gap: 1rem
}

.skills__data {
    -webkit-column-gap: .5rem;
    column-gap: .5rem;
    display: flex
}

.skills .bx-badge-check {
    color: var(--title-color);
    font-size: 1rem
}

.skills__name {
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
    line-height: 18px
}

.skills__level {
    font-size: var(--tiny-font-size)
}

@media screen and (max-width: 992px) {
    .skills__container {
        grid-template-columns:-webkit-max-content;
        grid-template-columns: max-content;
        row-gap: 2rem
    }
}

@media screen and (max-width: 576px) {
    .skills__container {
        grid-template-columns:1fr
    }

    .skills__content {
        padding: 1.5rem
    }
}

@media screen and (max-width: 350px) {
    .skills__box {
        -webkit-column-gap:1.25rem;
        column-gap: 1.25rem
    }

    .skills__name {
        font-size: var(--small-font-size)
    }
}

.experiences__container {
    -webkit-column-gap: 1.8rem;
    column-gap: 1.8rem;
    grid-template-columns: repeat(3,270px);
    justify-content: center
}

.experiences__content {
    background-color: var(--container-color);
    border: 1px solid rgba(0,0,0,.1);
    padding: 6rem 0 2rem 2.5rem;
    position: relative
}

.experiences__icon {
    color: var(--title-color);
    display: block;
    font-size: 2rem;
    margin-bottom: var(--mb-1)
}

.experiences__title {
    font-size: var(--h3-font-size);
    font-weight: var(--font-medium);
    margin-bottom: var(--mb-1)
}

.experiences__button {
    align-items: center;
    color: var(--title-color);
    -webkit-column-gap: .25rem;
    column-gap: .25rem;
    cursor: pointer;
    display: inline-flex;
    font-size: var(--small-font-size)
}

.experiences__button-icon {
    font-size: 1rem;
    transition: .3s
}

.experiences__button:hover .experiences__button-icon {
    -webkit-transform: translateX(.25rem);
    transform: translateX(.25rem)
}

.experiences__modal {
    align-items: center;
    background-color: rgba(0,0,0,.5);
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    opacity: 0;
    padding: 0 1rem;
    position: fixed;
    right: 0;
    top: 0;
    transition: .3s;
    visibility: hidden;
    z-index: var(--z-modal)
}

.experiences__modal-content {
    background-color: var(--container-color);
    border-radius: 1.5rem;
    padding: 4.5rem 2.5rem 2.5rem;
    position: relative;
    width: 500px
}

.experiences__modal-close {
    color: var(--title-color);
    cursor: pointer;
    font-size: 1.5rem;
    position: absolute;
    right: 1.5rem;
    top: 1.5rem
}

.experiences__modal-description,.experiences__modal-title {
    text-align: center
}

.experiences__modal-title {
    font-size: var(--h3-font-size);
    font-weight: var(--font-medium);
    margin-bottom: var(--mb-1)
}

.experiences__modal-description {
    font-size: var(--small-font-size);
    margin-bottom: var(--mb-2);
    padding: 0 3.5rem
}

.experiences__modal-experiences {
    row-gap: .75rem
}

.experiences__modal-experience {
    align-items: center;
    -webkit-column-gap: .5rem;
    column-gap: .5rem;
    display: flex
}

.experiences__modal-icon {
    color: var(--title-color);
    font-size: 1.1rem
}

.experiences__modal-info {
    font-size: var(--small-font-size)
}

.active-modal {
    opacity: 1;
    visibility: visible
}

@media screen and (max-width: 992px) {
    .experiences__container {
        grid-template-columns:repeat(3,218px)
    }
}

@media screen and (max-width: 768px) {
    .experiences__container {
        grid-template-columns:repeat(2,1fr)
    }

    .experiences__content {
        padding: 3.5rem .5rem 1.25rem 1.5rem
    }

    .experiences__icon {
        font-size: 1.5rem
    }
}

@media screen and (max-width: 576px) {
    .experiences__modal-content {
        padding:4.5rem 1.5rem 2.5rem
    }

    .experiences__modal-description {
        padding: 0
    }
}

@media screen and (max-width: 350px) {
    .experiences__container {
        grid-template-columns:-webkit-max-content;
        grid-template-columns: max-content
    }

    .experiences__content {
        padding-right: 6rem
    }
}

.qualification__container {
    max-width: 768px
}

.qualification__tabs {
    display: flex;
    justify-content: center;
    margin-bottom: var(--mb-2)
}

.qualification__button {
    color: var(--title-color);
    cursor: pointer;
    font-size: var(--h3-font-size);
    font-weight: var(--font-medium);
    margin: 0 var(--mb-1);
    transition: .3s
}

.qualification__button:hover {
    color: #add8e6
}

.qualification__icon {
    font-size: 1.8rem;
    margin-right: var(--mb-0-25)
}

.qualification__active {
    color: #add8e6
}

.qualification__sections {
    display: grid;
    grid-template-columns: .5fr;
    justify-content: center
}

.qualification__content {
    display: none
}

.qualification__content-active {
    display: block
}

.qualification__data {
    grid-column-gap: 1.5rem;
    -webkit-column-gap: 1.5rem;
    column-gap: 1.5rem;
    display: grid;
    grid-template-columns: 1fr -webkit-max-content 1fr;
    grid-template-columns: 1fr max-content 1fr
}

.qualification__title {
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium)
}

.qualification__subtitle {
    display: inline-block;
    margin-bottom: var(--mb-1)
}

.qualification__calendar,.qualification__subtitle {
    font-size: var(--small-font-size)
}

.qualification__rounder {
    background-color: var(--text-color);
    border-radius: 50%;
    display: inline-block;
    height: 13px;
    width: 13px
}

.qualification__line {
    background-color: var(--text-color);
    display: block;
    height: 100%;
    -webkit-transform: translate(6px,-7px);
    transform: translate(6px,-7px);
    width: 1px
}

@media screen and (max-width: 992px) {
    .qualification__container {
        margin-left:auto;
        margin-right: auto
    }
}

@media screen and (max-width: 768px) {
    .qualification__container {
        margin-left:var(--mb-1-5);
        margin-right: var(--mb-1-5)
    }
}

@media screen and (max-width: 576px) {
    .qualification__sections {
        grid-template-columns:none
    }

    .qualification__button {
        margin: 0 var(--mb-0-75)
    }
}

@media screen and (max-width: 350px) {
    .qualification__data {
        gap:.5rem
    }
}

.contact__container {
    -webkit-column-gap: 6rem;
    column-gap: 6rem;
    grid-template-columns: repeat(2,-webkit-max-content);
    grid-template-columns: repeat(2,max-content);
    justify-content: center;
    padding-bottom: 3rem
}

.contact__info {
    grid-row-gap: 1rem;
    display: grid;
    grid-template-columns: 300px;
    row-gap: 1rem
}

.contact__card {
    background-color: var(--container-color);
    border: 1px solid rgba(0,0,0,.1);
    border-radius: .75rem;
    padding: 1rem;
    text-align: center
}

.contact__card-icon {
    color: var(--title-color);
    font-size: 2rem;
    margin-bottom: var(--mb-0-25)
}

.contact__card-data,.contact__card-title {
    font-size: var(--font-medium)
}

.contact__card-title {
    font-weight: var(--font-medium)
}

.contact__card-data {
    display: block;
    margin-bottom: var(--mb-0-75)
}

.contact__button {
    align-items: center;
    color: var(--text-color);
    -webkit-column-gap: .25rem;
    column-gap: .25rem;
    display: inline-flex;
    font-size: var(--font-medium);
    justify-content: center
}

.contact__button-icon {
    font-size: 1rem;
    transition: .3s
}

.contact__button:hover .contact__button-icon {
    -webkit-transform: translate(.25rem);
    transform: translate(.25rem)
}

@media screen and (max-width: 992px) {
    .contact__container {
        -webkit-column-gap:3rem;
        column-gap: 3rem
    }
}

@media screen and (max-width: 768px) {
    .contact__container {
        grid-template-columns:1fr;
        row-gap: 3rem
    }

    .contact__info {
        justify-content: center
    }
}

@media screen and (max-width: 576px) {
    .contact__info {
        grid-template-columns:1fr
    }
}

.footer {
    background-color: var(--container-color);
    border-top: 1px solid rgba(0,0,0,.1)
}

.footer__container {
    padding: 2rem 0 6rem
}

.footer__link,.footer__title {
    color: var(--title-color)
}

.footer__title {
    margin-bottom: var(--mb-2);
    text-align: center
}

.footer__link:hover {
    color: var(--title-color-dark)
}

.footer__list {
    -webkit-column-gap: 1.5rem;
    column-gap: 1.5rem;
    margin-bottom: var(--mb-2)
}

.footer__list,.footer__social {
    display: flex;
    justify-content: center
}

.footer__social {
    -webkit-column-gap: 1.25rem;
    column-gap: 1.25rem
}

.footer__social-link {
    background-color: var(--title-color);
    border-radius: .5rem;
    color: var(--container-color);
    display: inline-flex;
    font-size: 1.125rem;
    padding: .4rem
}

.footer__social-link:hover {
    background-color: var(--title-color-dark)
}

.footer__copy {
    color: var(--title-color);
    display: block;
    font-size: var(--smaller-font-size);
    margin-top: 4.5rem;
    text-align: center
}

@media screen and (max-width: 992px) {
    .footer__social-link {
        border-radius:.25rem;
        font-size: 1rem;
        padding: .25rem
    }
}

.scrollup {
    background-color: var(--title-color);
    border-radius: .4rem;
    bottom: -20%;
    opacity: .8rem;
    padding: .3rem .5rem;
    position: fixed;
    right: 2.5rem;
    transition: .4s;
    z-index: var(--z-tooltip)
}

.scrollup__icon {
    color: var(--container-color);
    font-size: 1.5rem
}

.scrollup:hover {
    background-color: var(--title-color-dark)
}

.show-scroll {
    bottom: 3rem
}

@media screen and (max-width: 992px) {
    .scrollup {
        padding:.25rem .4rem;
        right: 1.5rem
    }

    .scrollup__icon {
        font-size: 1.25rem
    }
}

@media screen and (max-width: 768px) {
    .show-scroll {
        bottom:4rem
    }
}

@media screen and (max-width: 350px) {
    .scrollup {
        right:1rem
    }
}

.portfolio__container {
    overflow: visible;
    overflow: initial
}

.portfolio__content {
    padding: 1.5rem
}

.portfolio__img {
    border-radius: .5rem;
    height: 300px
}

.portfolio__title {
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-0-5)
}

.portfolio__description {
    margin-bottom: var(--mb-0-75)
}

.portfolio__button:hover .button__icon {
    -webkit-transform: translateX(.25rem);
    transform: translateX(.25rem)
}

@media screen and (max-width: 992px) {
    .portfolio__video {
        height:315px;
        width: 560px
    }

    .portfolio__data,.portfolio__video {
        margin-left: auto;
        margin-right: auto
    }
}

@media screen and (max-width: 768px) {
    .portfolio__video {
        height:283.5px;
        width: 504px
    }
}

@media screen and (max-width: 576px) {
    .portfolio__video {
        height:177.18175px;
        width: 315px
    }
}

@media screen and (max-width: 350px) {
    .portfolio__video {
        height:159.46px;
        width: 283.5px
    }
}

/*# sourceMappingURL=main.9882eb1d.css.map*/
/* Red Sloped Section */
.red-sloped-section {
    position: absolute;
    top: -100%; /* Start the red section outside the viewport */
    left: 0;
    width: 100vw;
    height: 100vh;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 20vw));
    background-color: red;
    animation: slideFromTop 2s forwards;
    z-index: -1; /* Set a lower z-index to move it behind the content */
  }

@keyframes slideFromTop {
  from {
    top: -100%;
  }
  to {
    top: 0;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;600;700;800&family=Roboto:wght@100;300;400&display=swap');

:root {
    --primary-color: #f9532d;
    --primary-dark: #1F252E;
}

* {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(161.5deg, #1F252E 50%, #fff 50%);
    height: 100vh;
    color: #ffffff;
}
/* Genral */
.container {
    padding: 0 8.4rem;
}

.img-w {
    width: 100%;
    height: auto;
}
/* Nav */
header {
    background: var(--primary-dark);
    position: relative;
    box-shadow: 0 4px 17px rgb(255 255 255 / 10%);
    position: sticky;
    top: 0;
    z-index: 1;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    opacity: 0;
    animation: leftSideAni 1s ease forwards;
}

.logo a {
    color: #fff;
    text-decoration: none;
}


li a {
    display: inline-block;
    padding: .3rem 1rem;
    color: #fff;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: .7px;
    border-radius: 36px;
    line-height: 2;
    transition: .3s;
    opacity: 0;
    animation: navani .3s ease forwards;
    animation-delay: calc(.15s * var(--navAni));
}

li a.active,
li a:hover {
    color: var(--primary-color);
}

#click {
    display: none;
}

.menu {
    display: none;
}

.mode i {
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--primary-color);
    opacity: 0;
    animation: rightSideAni 1.5s ease forwards;
}

/* Nav End */

/* Section 1 */

.main {
    padding: 6rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(277px, 1fr));
    row-gap: 2rem;
    column-gap: 6rem;
    align-items: center;
    position: relative; /* Position the main container */
    z-index: 1; /* Set a higher z-index to keep it in front of the red slide */
  }
.main h3 {
    display: absolute;
    color: #fff;
    font-size: 1.5rem;
    opacity: 0;
    animation: topSideAni 1s ease forwards;
}
.main h1 {
    color: #000;
    font-size: 4rem;
    font-weight: 600;
    opacity: 0;
    animation: leftSideAni 1s ease forwards;
    animation-delay: 1s;
}

  .skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 60px; /* Gap between grid items */
}

.skill {
    background-color: #000000; /* Background color for skill boxes */
    color: #fff; /* Text color */
    padding: 20px; /* Padding around each skill box */
    border-radius: 8px; /* Border radius */
    text-align: center; /* Center text */
    /* Add other styles for individual skills as needed */
}

  .skills-section {
    position: relative; /* Ensure positioning within the flow */
    z-index: 1; /* Set a higher z-index to place it above the red section */
    padding: 40px; /* Adjust padding as needed */
    text-align: left; /* Align text to the left */
    color: #fff; /* Text color */
}

.skills-section h2 {
    font-size: 2rem; /* Skills section title font size */
    margin-bottom: 20px; /* Margin bottom for skills section title */
}

.skills-list {
    list-style: none; /* Remove default list styles */
    padding-left: 0; /* Remove default list padding */
}

.skills-list li {
    margin-bottom: 10px; /* Spacing between each skill */
    font-size: 1.2rem; /* Font size of skills */
    /* Add other styles for individual skills as needed */
}

.social {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem;
    margin-top: 1.4rem;
    justify-content: center; /* Align items to the center */
}

.social a {
    display: grid;
    place-items: center;
    text-decoration: none;
    color: var(--primary-color);
    border: 1.6px solid var(--primary-color);
    font-size: 1.5rem;
    border-radius: 50%;
    padding: 0.39rem;
    text-align: center;
    opacity: 0;
    animation: SocialAni 1s ease forwards;
    animation-delay: calc(.2s * var(--socialAni));
}

.social a:hover {
    color: var(--primary-dark);
    background-color: var(--primary-color);
    box-shadow: 0 0 20px var(--primary-color);
    transition: all .3s ease-in-out;
}


.images {
    margin-left: auto;
    width: 300px;
}   
.images img {
    border-radius: 50%;
    box-shadow: 0 0 15px #D1D9E6;
}

/* Section 1 End */

/* Animation */
@keyframes leftSideAni {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes navani {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes topSideAni {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes SocialAni {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@media screen and (max-width: 1024px) {
    .container {
        padding: 0 4.4rem;
    }
    .main h3 {
        color: #000;
        margin-top: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .container {
        padding: 0 1.6rem;
    }
}

@media screen and (max-width:600px) {
    body {
        height: auto;
    }
    header {
        height: auto;
        background-color: var(--primary-dark);
    }

    ul {
        background: var(--primary-dark);
        width: 100%;
        height: 100vh;
        position: absolute;
        display: flex;
        flex-direction: column;
        text-align: center;
        top: 3.4rem;
        left: -100%;
        z-index: 111111;
    }

    .menu {
        display: block;
        font-size: 1.5rem;
        font-weight: bold;
        color: #244D61;
    }

    #click:checked~ul {
        left: 0%;
        transition: all 0.3s ease;
    }
    .images {
        width: 100%;
        margin: auto;
    }

    .main {
        margin-top: 2rem;
    }
}