@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* COLORS */
    --secondary-color: hsl(0, 0%, 100%);
    --orange-color: hsl(25, 95%, 57%);
    --blue-color: hsl(214, 82%, 49%);
    --light-gray-color: hsl(0, 0%, 92%);
    --medium-gray-color: hsl(0, 0%, 78%);
    --dark-gray-color: hsl(0, 0%, 52%);
    --text-color-light-mode: hsl(0, 0%, 9%);
    --text-color-dark-mode: hsl(240, 67%, 94%);
    --color-icon-project-page: hsl(0, 0%, 9%);
    --transparent-color: hsla(0, 0%, 100%, 0);

    /* BACKGROUND COLORS */
    --background-color-light: hsla(240, 33%, 99%, 0.8);
    --background-color-dark: hsl(259, 88%, 10%);
    --background-color-navbar: hsl(240, 20%, 99%);
    --background-color-footer: hsl(0, 0%, 92%);
    --background-color-dark-mode-input-contact: hsla(240, 25%, 77%, 0.295);

    --shadow-navbar: hsl(0, 0%, 92%);
    --shadow-color: hsla(0, 0%, 49%, 0.39);
    --background-filter: hsla(0, 0%, 7%, 0.361);

    /* SCROLL BAR COLORS */
    --scroll-bar: hsl(0, 0%, 53%);
    --scroll-bar-background: hsl(0, 0%, 73%);

    /* FONT-WEIGHT */
    --big-font-weight: 800;
    --medium-font-weight: 600;
    --middle-font-weight: 500;
    --small-font-weigt: 400;
}

/* BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

/* BODY / BODY LIGHT-MODE / BODY DARK-MODE */
body {
    font-family: "Poppins", sans-serif;
    height: auto;
    color: var(--text-color-light-mode);
    background-color: var(--background-color-light);
    overflow-x: hidden;
}

body.light-mode {
    color: var(--text-color-light-mode);
    background-color: var(--background-color-light);
}

body.dark-mode {
    color: var(--text-color-dark-mode);
    background-color: var(--background-color-dark);
    --background-color-navbar: hsl(240, 42%, 33%);
    --background-color-footer: hsl(240, 42%, 33%);
    --text-color-light-mode: hsl(240, 67%, 94%);
}

/* SCROLL BAR */
::-webkit-scrollbar {
    width: 11px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--scroll-bar);
    border-radius: 6px;
}

::-webkit-scrollbar-track {
    background-color: var(--scroll-bar-background);
}

/* NAVBAR */
header {
    position: sticky;
    top: 0;
    width: 100%;
    height: auto;
    z-index: 10;
}

.navbar {
    width: 100%;
    height: auto;
    top: 0;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 3px 10px 0 var(--shadow-navbar);
    background: var(--background-color-navbar);
}

.logo {
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.logo-text {
    font-size: 1.8em;
    font-weight: var(--big-font-weight);
    color: var(--text-color-light-mode);
}

.navbar-container {
    display: flex;
    align-items: center;
}

.nav-links {
    width: 100%;
    height: 100%;
}

.nav-links ul {
    display: flex;
    justify-content: center;
}

.nav-links ul li {
    padding: 0 7px;
    font-weight: var(--medium-font-weight);
}

.nav-links ul li .nav-text {
    position: relative;
    padding: 3px 9px;
    font-size: 1.1em;
    color: var(--text-color-light-mode);
    transition: color .3s ease-in-out;
}

.nav-links ul li .nav-text::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--dark-gray-color);
    transition: all .4s ease;
    transform: translateX(-50%);
}

.nav-links ul li .nav-text:hover {
    color: var(--purple-gradient);
}

.nav-links ul li .nav-text:hover::after {
    width: 100%;
}

.moon {
    font-weight: var(--medium-font-weight);
    font-size: 1.1em;
}

.menu-hamburger {
    position: absolute;
    width: 22px;
    height: 18px;
    top: 1.6em;
    right: 2em;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.bar-menu {
    width: 100%;
    height: 3.5px;
    border-radius: 15px;
    background-color: var(--text-color-light-mode);
    transition: all .3s ease-in-out;
}

.menu-hamburger.active .bar-menu {
    background-color: var(--text-color-light-mode);
}

.menu-hamburger.active .bar-menu:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-hamburger.active .bar-menu:nth-child(2) {
    opacity: 0;
}

.menu-hamburger.active .bar-menu:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* BREAKPOINTS */
@media screen and (max-width: 1120px) {
    .logo-text {
        font-size: 1.6em;
    }

    .nav-links ul li .nav-text {
        font-size: .9em;
        font-weight: var(--middle-font-weight);
    }
}

@media screen and (max-width: 771px) {
    .menu-hamburger {
        display: flex;
    }

    .blur-content {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--background-filter);
        backdrop-filter: blur(5px);
        pointer-events: none;
        display: none;
        z-index: 4;
    }

    .nav-links {
        position: absolute;
        width: 40%;
        height: 100vh;
        top: 0;
        right: 0;
        display: none;
        justify-content: center;
        align-content: center;
        background: var(--background-color-navbar);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links ul {
        position: absolute;
        top: 25%;
        left: 0;
        margin-left: 15px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .nav-links ul li {
        margin: 25px 0;
        font-size: 1em;
    }

    .nav-links ul li .nav-text,
    .nav-links ul li .nav-text:hover {
        border: none;
    }

    .moon {
        position: relative;
        font-size: 1em;
        right: 3em;
    }

    .logo {
        z-index: 10;
    }
}

@media screen and (max-width: 600px) {
    .nav-links {
        position: absolute;
        width: 65%;
        height: 100vh;
    }
}

@media screen and (max-width: 375px) {
    .nav-links {
        position: absolute;
        width: 100%;
        height: 100vh;
    }

    .nav-links ul {
        position: absolute;
        top: 25%;
        left: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .nav-links ul li {
        margin: 17px 12px;
    }

    .nav-links ul li .nav-text {
        border: none;
        font-size: .875em;
    }
}

/* SCROLL BACK TO TOP BTN */
#btnTop {
    position: fixed;
    display: none;
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
    border: none;
    border-radius: 50%;
    color: var(--text-color-light-mode);
    font-weight: var(--medium-font-weight);
    background-color: var(--secondary-color);
    z-index: 5;
    cursor: pointer;
}

.dark-mode #btnTop {
    background: var(--background-color-footer);
}

/* BREAKPOINTS */
@media screen and (max-width: 1120px) {
    #btnTop {
        width: 35px;
        height: 35px;
    }
}

/* HOME */
.home {
    position: relative;
    width: 100%;
    height: 95vh;
    display: flex;
    flex-direction: column;
}

.home-display {
    width: 100%;
    height: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home-text {
    width: 55%;
    margin: 0 50px;
    display: flex;
    justify-content: start;
    align-items: center;
}

.title-text-home {
    font-size: 10em;
    font-weight: var(--big-font-weight);
    line-height: 150px;
    text-transform: uppercase;
}

.first-text {
    letter-spacing: 5px;
}

.text-transform {
    -webkit-text-stroke: 5px var(--text-color-light-mode);
    color: var(--transparent-color);
    letter-spacing: 3px;
}

.home-image {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.home-image img {
    width: 55%;
    border-radius: 22% 78% 69% 31% / 32% 58% 42% 68%;
    filter: drop-shadow(10px 5px var(--medium-gray-color)) contrast(130%);
    object-fit: cover;
}

.btn-downlaod {
    position: relative;
    padding: 35px 0;
}

.download-btn {
    padding: 7px 20px;
    border-radius: 25px;
    font-weight: var(--medium-font-weight);
    color: var(--secondary-color);
    background-color: var(--orange-color);
    transition: all .3s ease-in-out;
}

.download-btn i {
    padding: 0 5px;
    font-weight: var(--middle-font-weight);
}

.download-btn:hover {
    border: 2px solid var(--orange-color);
    color: var(--orange-color);
    background-color: var(--secondary-color);
}

.dark-mode .download-btn:hover {
    border: 2px solid var(--text-color-dark-mode);
}

.scroll {
    position: relative;
    height: 20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.scroll-container {
    text-align: center;
}

.scroll-container:hover {
    cursor: pointer;
}

.scroll-container i {
    font-size: 1.5em;
    font-weight: var(--medium-font-weight);
}

.scroll-text {
    letter-spacing: 1.5px;
}

.scroll-angle {
    display: flex;
    flex-direction: column;
    line-height: 8px;
}

.scroll-angle i {
    animation: moove 2s infinite;
}

@keyframes moove {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* BREAKPOINTS */
@media screen and (max-width: 1220px) {
    .title-text-home {
        font-size: 8em;
        line-height: 125px;
    }
}

@media screen and (max-width: 1120px) {
    .home-text .home-image {
        width: 50%;
    }

    .title-text-home {
        font-size: 6em;
        line-height: 100px;
    }

    .text-transform {
        -webkit-text-stroke: 3px var(--text-color-light-mode);
    }

    .home-image img {
        width: 60%;
    }

    .download-btn {
        font-weight: var(--middle-font-weight);
        border: 1px solid var(--orange-color);
    }
}

@media screen and (min-width: 950px) and (max-width: 1120px) {
    .home-text {
        margin: 0;
        text-align: center;
    }

    .title-text-home {
        font-size: 7em;
    }
}

@media screen and (min-width: 867px) and (max-width: 950px) {
    .home-text {
        margin: 0 10px;
    }

    .title-text-home {
        font-size: 6.25em;
    }

    .home-image img {
        width: 65%;
        height: auto;
    }
}

@media screen and (max-width: 867px) {
    .home-text {
        margin: 0 5px;
    }

    .title-text-home {
        font-size: 6em;
    }
}

@media screen and (max-width: 771px) {
    .home-image img {
        width: 70%;
    }
}

@media screen and (max-width: 600px) {
    .home-display {
        width: 100%;
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
    }

    .home-text,
    .home-image {
        width: 100%;
    }

    .home-text {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .title-text-home {
        font-size: 5em;
        line-height: 80px;
    }

    .home-image img {
        width: 45%;
    }
}

@media screen and (max-width: 450px) {
    .home-display {
        height: 75%;
    }

    .scroll {
        height: 25%;
    }

    .title-text-home {
        font-size: 4.25em;
        line-height: 80px;
    }

    .download-btn {
        padding: 7px 10px;
    }
}

@media screen and (max-width: 375px) {
    .home-display {
        height: 73%;
    }

    .scroll {
        height: 27%;
    }

    .title-text-home {
        font-size: 4em;
        line-height: 60px;
    }

    .home-image img {
        width: 52%;
    }
}

/* ABOUT */
.about {
    position: relative;
    width: 60%;
    height: auto;
    margin: 50px 75px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.title-text {
    font-size: 2.5em;
    font-weight: 700;
    letter-spacing: 1.2px;
    margin-bottom: 40px;
    text-align: center;
}

.text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.article {
    width: 95%;
    height: auto;
    margin-bottom: 15px;
}

.text {
    font-size: 1em;
    font-weight: var(--small-font-weigt);
    text-align: justify;
}

/* BREAKPOINTS */
@media screen and (max-width: 1120px) {
    .title-text {
        font-size: 1.5em;
    }

    .text {
        font-size: .9em;
    }
}

@media screen and (max-width: 867px) {
    .about {
        margin: 75px 35px;
    }

    .text {
        font-size: .875em;
    }
}

@media screen and (max-width: 580px) {
    .about {
        width: 100%;
        margin: 50px 0 0 0;
    }
}

@media screen and (max-width: 450px) {
    .about {
        height: auto;
    }

    .title-text {
        font-size: 1.2em;
    }

    .text {
        font-size: .8em;
    }
}

/* SKILLS */
.skills {
    position: relative;
    width: 100%;
    height: auto;
    margin: 50px 0;
    display: flex;
    justify-content: end;
}

.skills-container {
    width: 60%;
    margin: 0 15px;
}

.container-language {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.small-title {
    font-size: 1.5em;
    font-weight: var(--medium-font-weight);
}

hr {
    width: 80%;
    height: 4px;
    margin: 5px 0;
    border: none;
    border-radius: 5px;
    background-color: var(--background-color-footer);
}

.laguage-image-container {
    position: relative;
    width: 80%;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.box {
    width: 90px;
    height: 90px;
    margin: 5px;
    padding: 5px;
    display: flex;
    justify-content: center;
    border-radius: 15px;
    ;
    box-shadow:
        4px 3px var(--medium-gray-color),
        2px 3px var(--text-color-light-mode);
    background-color: var(--secondary-color);
}

.box img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.source-container {
    position: relative;
    margin: 0 25px;
    display: flex;
    justify-content: end;
    align-items: center;
}

.text-source {
    font-size: .9em;
    font-weight: var(--middle-font-weight);
}

.source-text {
    margin: 15px 2px;
    color: var(--medium-gray-color);
}

.source-link {
    color: var(--blue-color);
}

/* BREAKPOINTS */
@media screen and (max-width: 1120px) {
    .small-title {
        font-size: 1.2em;
    }

    .box {
        width: 70px;
        height: 70px;
    }

    .text-source {
        font-size: .875em;
    }
}

@media screen and (max-width: 867px) {
    .small-title {
        font-size: .975em;
        text-align: center;
    }

    .text-source {
        font-size: .8em;
    }
}

@media screen and (max-width: 580px) {
    .skills-container {
        width: 100%;
        margin: 0;
    }
}

@media screen and (max-width: 450px) {
    .box {
        width: 60px;
        height: 60px;
    }

    .source-container {
        margin: 0 5px;
    }

    .text-source {
        font-size: .775em;
    }
}

/* PROJECTS */
.projects {
    position: relative;
    width: 100%;
    height: auto;
    margin: 50px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.projects-content {
    width: 90%;
}

.slider-projects {
    padding: 50px 0;
}

.slider-projects-container {
    margin-inline: 3rem;
    overflow: hidden;
}

.card-project {
    width: 350px;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 0.1px solid var(--dark-gray-color);
    border-radius: 15px;
    background-color: var(--secondary-color);
    overflow: hidden;
}

.dark-mode .card-project {
    background: var(--background-color-footer);
}

.card-project-image {
    width: 100%;
    height: 100%;
}

.card-project-image-link img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.card-project-image-link:hover {
    cursor: pointer;
}

.card-project-description {
    position: relative;
    width: 95%;
    height: 100%;
    margin: 0px 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.card-text {
    width: 100%;
    height: auto;
    margin: 10px 0 0 0;
}

.card-title {
    margin-bottom: 10px;
    font-size: 1.1em;
    font-weight: var(--medium-font-weight);
    color: var(--text-color-light-mode);
}

.card-details {
    font-size: 1em;
    font-weight: var(--small-font-weigt);
    text-align: justify;
    color: var(--text-color-light-mode);
}

.card-btn {
    padding: 25px 0;
}

.btn-link-project {
    padding: 6px 20px;
    border-radius: 25px;
    font-weight: var(--medium-font-weight);
    border: 1.5px solid var(--text-color-light-mode);
    color: var(--text-color-light-mode);
    background-color: var(--background-color-navbar);
    transition: all .3s ease-in;

}

.btn-link-project:hover {
    border: 1.5px solid var(--secondary-color);
    color: var(--secondary-color);
    background-color: var(--text-color-light-mode);
}

.dark-mode .btn-link-project:hover {
    color: var(--background-color-dark);
}

.card-icon {
    display: flex;
    justify-content: end;
}

.card-icon i {
    padding: 0 4px;
    font-size: 1.1em;
    font-weight: var(--middle-font-weight);
    color: var(--medium-gray-color);
    transition: .3s ease-in;
}

.card-icon i:hover {
    color: var(--text-color-light-mode);
    cursor: pointer;
}

/* SWIPPER CLASS */
.swiper-button-prev:after,
.swiper-button-next:after {
    content: "";
}

.swiper-button-prev,
.swiper-button-next {
    width: initial;
    height: initial;
    font-size: 3em;
    color: var(--text-color-light-mode);
    display: none;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    color: var(--dark-gray-color);
}

.dark-mode .swiper-button-next:hover,
.dark-mode .swiper-button-prev:hover {
    color: var(--light-gray-color);
}

.swiper-button-prev {
    left: 0;
}

.swiper-button-next {
    right: 0;
}

.swiper-pagination-bullet {
    background-color: var(--medium-gray-color);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: var(--text-color-light-mode);
}

/* BREAKPOINTS */
@media screen and (max-width: 1120px) {
    .card-title {
        font-size: 1em;
    }

    .card-details,
    .btn-link-project {
        font-size: .9em;
    }
}

@media screen and (min-width: 1120px) {
    .swiper-button-prev {
        left: -1.1rem;
    }

    .swiper-button-next {
        right: -1.1rem;
    }
}

@media screen and (max-width: 867px) {
    .projects-content {
        width: 100%;
    }

    .card-title {
        font-size: .9em;
    }

    .card-details,
    .btn-link-project {
        font-size: .875em;
    }

    .card-icon i {
        font-size: 1em;
    }
}

@media screen and (min-width: 600px) {
    .slider-projects-container {
        margin-inline: 3rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: block;
    }
}

@media screen and (max-width: 450px) {
    .card-project {
        width: 350px;
        height: 325px;
    }

    .card-project-image-link img {
        width: 100%;
        height: 175px;
    }

    .card-title {
        font-size: .875em;
    }

    .card-details,
    .btn-link-project {
        font-size: .8em;
    }

    .card-text {
        margin: 0;
    }

    .card-btn {
        padding: 15px 0;
    }

    .btn-link-project {
        padding: 4px 15px;
        font-weight: var(--middle-font-weight);
    }

    .card-icon i {
        font-size: .9em;
        font-weight: var(--small-font-weigt);
    }
}

/* CONTACT */
.contact {
    position: relative;
    width: 100%;
    height: 450px;
    margin: 75px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-container {
    width: 75%;
    margin: 75px 0;
    padding: 75px 15px;
    background-image: url(../image/background-contact.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 15px;
}

.dark-mode .contact-container {
    background-image: url(../image/background-contact-dark-mode.png);
}

.title-email {
    font-size: 1.2em;
    color: var(--text-color-light-mode);
}

.dark-mode .text-contact {
    color: var(--text-color-dark-mode);
}

.btn-email {
    padding: 30px 0;
}

.button-email {
    padding: 6px 20px;
    border-radius: 25px;
    font-weight: var(--medium-font-weight);
    border: 1.5px solid var(--text-color-light-mode);
    color: var(--text-color-light-mode);
    background-color: var(--background-color-navbar);
}

.button-email:hover {
    border: 1.5px solid var(--secondary-color);
    color: var(--secondary-color);
    background-color: var(--text-color-light-mode);
    transition: .2s ease-in;
}

.dark-mode .button-email:hover {
    color: var(--background-color-dark);
}

/* BREAKPOINTS */
@media screen and (max-width: 1120px) {
    .title-email {
        font-size: 1em;
    }

    .button-email {
        font-size: .9em;
    }
}

@media screen and (max-width: 867px) {
    .button-email {
        font-size: .875em;
    }
}

@media screen and (max-width:580px) {
    .contact-container {
        width: 80%;
        margin: 35px 0;
        padding: 0px;
    }
}

@media screen and (max-width: 450px) {
    .contact-container {
        width: 85%;
    }

    .title-email {
        font-size: .975em;
        padding: 7px 0 2.5px;
    }

    .btn-email {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .button-email {
        padding: 5px 15px;
        font-size: .8em;
    }
}

/* FOOTER */
.footer {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 75px;
    background-color: var(--background-color-footer);
}

.footer.dark-mode {
    background-color: var(--background-color-footer);
}

.logo-footer {
    justify-content: center;
    text-align: center;
}

.footer-container {
    position: relative;
    width: 25%;
    padding: 50px 10px;
    display: flex;
    flex-direction: column;
}

.footer-container h3 {
    margin-bottom: 15px;
    font-size: 1.1em;
    font-weight: var(--medium-font-weight);
    letter-spacing: 2px;
    color: var(--text-color-light-mode);
}

.footer-container h3.dark-mode {
    color: var(--text-color-light-mode);
}

.footer-container ul li {
    margin: 3px;
}

.footer-container ul li a {
    font-size: 1em;
    font-weight: var(--small-font-weigt);
    color: var(--text-color-light-mode);
    transition: all .3s ease-in;
}

.footer-container ul li a.dark-mode {
    color: var(--text-color-light-mode);
}

.footer-container ul li a:hover {
    border-bottom: 1.5px solid var(--text-color-light-mode);
    cursor: pointer;
}

.dark-mode .footer-container ul li a:hover {
    border-bottom: 1.5px solid var(--text-color-dark-mode);
    color: var(--text-color-dark-mode);
    cursor: pointer;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.icon-footer {
    display: flex;
}

.icon-footer i {
    font-size: 1.1em;
    font-weight: var(--middle-font-weight);
}

.icon-footer i:hover {
    color: var(--dark-gray-color);
    cursor: pointer;
}

.all_rights_reserved {
    padding-bottom: 20px;
    text-align: center;
    font-size: .8em;
}

/* BREAKPOINTS */
@media screen and (max-width: 1120px) {
    .footer-container h3 {
        font-size: 1em;
    }

    .footer-container ul li a {
        font-size: .9em;
    }
}

@media screen and (max-width:950px) {
    .logo-footer {
        text-align: start;
    }

    .footer-container {
        width: 50%;
        padding: 30px 10px;
    }
}

@media screen and (max-width: 867px) {
    .footer-container h3 {
        font-size: .9em;
    }

    .footer-container ul li a {
        font-size: .875em;
    }
}

@media screen and (max-width:580px) {
    .footer-container {
        width: 100%;
        padding: 25px 10px;
    }

    .all_rights_reserved {
        font-size: .75em;
    }
}

@media screen and (max-width: 450px) {
    .footer-container h3 {
        font-size: .875em;
    }

    .footer-container ul li a {
        font-size: .8em;
    }
}

/* PROJECT PAGE */
.project-page {
    position: relative;
    width: 100%;
    height: auto;
    padding: 50px 25px;
    justify-content: center;
    align-items: center;
}

.project-page-container {
    display: flex;
    flex-direction: column;
}

.project-page-title {
    font-size: 2.5em;
    font-weight: var(--big-font-weight);
    text-align: center;
}

.project-video {
    width: 65%;
    margin: auto;
    padding: 50px 0;
}

.video-project {
    width: 100%;
    border-radius: 16px;
}

.project-page-text {
    width: 100%;
}

.project-page-text-container {
    width: 65%;
    margin: auto;
}

.text-content {
    padding: 5px 0;
}

.project-page-icon {
    padding: 15px 0;
    text-align: center;
}

.project-page-icon i {
    padding: 10px;
    font-size: 1.2em;
    font-weight: var(--middle-font-weight);
    color: var(--text-color-light-mode);
    transition: all .2s ease-in;
}

.project-page-icon i:hover {
    color: var(--dark-gray-color);
}

/* BREAKPOINTS */
@media screen and (max-width: 950px) {

    .project-video,
    .project-page-text-container {
        width: 85%;
    }
}

@media screen and (max-width: 867px) {
    .project-page-title {
        font-size: 1.8em;
    }

    .project-video,
    .project-page-text-container {
        width: 90%;
    }

    .project-page-icon i {
        font-size: 1em;
    }
}

@media screen and (max-width: 580px) {
    .project-page {
        padding: 25px 0;
    }

    .project-page-title {
        font-size: 1.5em;
    }

    .project-video {
        width: 90%;
        padding: 25px 0;
    }

    .project-page-text-container {
        width: 90%;
    }
}

@media screen and (max-width: 450px) {
    .project-page-title {
        font-size: 1.2em;
    }

    .project-page-icon i {
        padding: 0 5px;
        font-size: 1em;
    }
}