*,*::before,
*::after {
  box-sizing: border-box;
}

body {
    margin: 0;
    display: flex;
    flex-direction: column;
    background-color: aliceblue;
    max-width: auto;
}

main, footer {
    font-family: 'Source Sans 3', sans-serif;
}

nav {
    font-family: 'Open Sans', sans-serif;
}

#navbar-container {
    transition: all 0.4s ease-in-out;
}

header.navbar-container {
    width: 100%;
    max-width: auto;
    padding-block: 1rem;
    margin-inline: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 9999;
    display: flex;
    background-color: rgba(34, 30, 30, 0.941);
    overflow: hidden;
    position: fixed;
    height: 180px;
}

header.navbar-container .logo img {
    width: 150px;
    cursor: pointer;
}

header.navbar-container .nav-list-desktop {
    display: flex;
    gap: 0 2.5rem;
    align-items: baseline;
    transition: all 0.3s ease-in-out;
}

header.navbar-container .nav-list-desktop ul {
    padding-left: 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

header.navbar-container .nav-list-desktop li {
    list-style-type: none;
}

header.navbar-container .nav-list-desktop li a:not(.active) {
    padding: 0.5rem 0.75rem;
    border-radius: 450px;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    color: white;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.active {
    color: rgba(209, 119, 119, 0.951);
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    padding: 0.5rem 0.75rem;
    border-radius: 450px;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
}

header.navbar-container .nav-list-desktop button {
    width: 85px;
    height: 35px;
    font-size: 1.05rem;
    border-radius: 7.5px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    background-color: black;
    color: white;
}

main {
    display: flex;
    flex: 1;
    width: 100%;
    max-width: auto;
    margin-inline: auto;
    padding: 2rem 2rem;
    align-items: stretch;
    flex-direction: row;
    gap: 2.2rem;
    justify-content: space-between;
    margin-top: 200px;
}

main .content {
    flex: 5;
    display: flex;
    align-items: center;
    width: 100%;
    gap: 2rem;
    flex-direction: column;
}

main .content .content-gyber {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    align-content: center;
    margin-inline: auto;
    width: 100%;
    flex-wrap: nowrap;
    gap: 3.5rem;
    padding: 30px 30px;
    height: 85vh;
}

main .content .content-gyber .content-description {
    flex: 12;
    width: 300px;
}

main .content .content-gyber .round-logo {
    flex: 7;
    display: flex;
}

main .content .content-gyber .round-logo img {
    width: 205px;
    min-width: 100px;
}

main .content .content-gyber .content-description .title {
    margin-block: 1rem;
    font-size: 2.5rem;
}

main .content .content-gyber .content-description p {
    font-size: 1.15rem;
    line-height: 1.7rem;
}

main .content .content-gyber .content-description button {
    padding: 0.8rem 2rem;
    border: 3px solid transparent;
    border-radius: 999px;
    margin-block-start: 1rem;
    background-color: #2e2f31;
    font-family: 'Quicksand', sans-serif;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    cursor: pointer;
    transition: all 0.15s ease-in;
}

main .content .content-gyber .content-description button:hover {
    border: solid 3px black;
    color: black;
    background-color: white;
    transition: all 0.15s ease-in;
}

main .founder .profile {
    flex: 1;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

main .founder .profile button {
    padding: 10px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 20px;
    background-color: #2e2f31;
    color: white;
    font-family: 'Quicksand', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    border: 3px solid transparent;
    border-radius: 10px;
    transition: all 0.15s ease-in;
    cursor: pointer;
}

main .founder .profile button:hover {
    border: solid 3px black;
    color: black;
    background-color: white;
    transition: all 0.15s ease-in;
}

figcaption {
    text-align: center;
}

main .founder .profile figure img {
    width: 185px;
    border-radius: 10px;
} 

header.navbar-container .nav-side-mobile {
    display: none;
}

main .media-mobile {
    display: none;
}

.card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    padding: 25px;
    background-color: lightgrey;
}

.card2 {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    padding: 25px;
    background-color: white;
}

.content-more {
    display: flex;
    flex-direction: column;
    padding: 20px;
    width: 100%;
    align-items: center;
}

.content-more section {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    gap: 1rem;
    align-content: center;
    cursor: pointer;
    padding-top: 20px;
}

.content-more h1 {
    text-align: center;
}

.content-more section .one {
    display: flex;
    flex: 3;
    align-items: center;
    text-align: center;
    flex-direction: column;
    width: 33.3%;
}

.content-more section .one img {
    width: 225px;
    position: relative;
    margin-top: 25px;
}

.content-more section .two {
    display: flex;
    flex: 3;
    align-items: center;
    text-align: center;
    flex-direction: column;
    width: 33.3%;
}

.content-more section .two img {
    width: 125px;
    position: relative;
    margin-top: 26.3px;
}

.content-more section .three {
    display: flex;
    flex: 3;
    align-items: center;
    text-align: center;
    flex-direction: column;
    width: 33.3%;
}

.content-more section .three img {
    width: 200px;
}

.content-more section .hover-zoom {
    transition: transform .2s;
    margin: 0 auto;
}

.content-more section .hover-zoom:hover {
    transform: scale(1.08);
    filter: grayscale(0.6);
}

footer {
    display: flex;
    flex-direction: column;
    background-color: rgba(15, 13, 13, 0.889);
    justify-content: center;
    color: white;
    height: 55vh;
    padding-top: 40px;
    align-content: center;
    width: 100%;
    max-width: auto;
}

footer.footer-up {
    display: flex;
    flex-direction: row;
}

footer .footer-up section .contact {
    display: flex;
    justify-content: center;
    position: relative;
    padding: 0 15px;
    margin: -50px 0;
    flex-direction: column;
}

footer .footer-up section .contact p {
    margin: -1.5px 0;
    cursor: pointer;
}

footer .footer-up section .contact p a {
    text-decoration: underline;
}


footer .footer-up section .mini {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: -5px;
    gap: 10rem;
}

footer .footer-up.media-desktop .social-media {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
}

footer .footer-up .media-desktop .social-media ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 2rem;
    padding: 0 10px;
}

footer .footer-up .media-desktop .social-media li {
    list-style-type: none;
}

footer .footer-up .media-desktop .social-media li a {
    color: white;
    text-decoration: none;
}

footer .footer-up .media-desktop .social-media li a:hover {
    color: rgb(196, 173, 173);
    text-decoration: none;
}

footer .footer-bottom .copy {
    text-align: center;
    font-size: 15px;
}

@media screen and (max-width: 1150px) {
    main {
        flex-direction: column;
        align-items: center;
    }
    main .founder .profile {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: 650px;
        padding-right: 150px;
    }
    main .founder .profile button {
        align-self: self-end;
        margin: 0 0 0 -200px;
    }
    footer {
        height: 100%;
    }
}

@media screen and (max-width: 768px) {
    main {
        flex-direction: column;
        align-items: center;
    }
    main .founder .profile {
        padding-right: 30px;
    }
    header.navbar-container {
        justify-content: flex-start;
        width: 100%;
        max-width: 768px;
    }
    header.navbar-container .nav-list-desktop {
        padding-left: 150px;
    }
    header.navbar-container .logo img {
        padding-left: 20px;
    }
    footer {
        width: 100%;
        height: 45vh;
        max-height: auto;
        font-size: 14px;
        justify-content: center;
    }
    main .content .content-gyber .content-description  {
        font-size: 75%;
    }
    main .founder .profile {
        width: 20rem;
        font-size: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    main .founder .profile button {
        align-self: normal;
        margin: 0;
    }
    main .founder .profile figure img {
        width: 140px;
    }
    footer .footer-up .media-desktop {
        display: none;
    }
    footer .footer-up section .mini {
        padding-left: 200px;
    }
    .content-more section {
        flex-direction: column;
        font-size: 13px;
    }
    .content-more section .one {
        width: 100%;
    }
    .content-more section .two {
        width: 100%;
    }
    .content-more section .three {
        width: 100%;
    }
    main .content .content-gyber {
        height: 60vh;
    }
    main .content .content-gyber .content-description p {
        font-size: 16px;
    }
    main .content .content-gyber .content-description .title {
    font-size: 35px; 
    }
    main .media-mobile {
        position: fixed;
        inset-block: 0;
        inset-inline-end: 0;
        display: flex;
    }
    main .media-mobile .social-media {
        height: 100%;
        display: flex;
        margin-top: 35px;
    }
    main .media-mobile .social-media ul {
        padding: 1.1rem 0.68rem;
        border-top-left-radius: 12px;
        border-bottom-left-radius: 12px;
        margin: auto;
        background-color: #1e2228ef;
        display: flex;
        flex-flow: column nowrap;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }
    main aside .social-media li {
        list-style-type: none;
    }
    main aside .social-media li a {
        text-decoration: none;
        font-size: 1.05rem;
        color: white;
        transition: all 0.1s ease-in-out;
    }
}

@media screen and (max-width: 426px) {
    header.navbar-container {
        width: 100%;
        max-width: 425px;
    }
    header.navbar-container .logo img {
        width: 110px;
    }
    main .content .content-gyber {
        gap: 3px;
    }
    main .content .content-gyber .content-description {
        width: 200px;
        justify-content: space-evenly;
    }
    main .content .content-gyber .content-description .title {
        font-size: 24px;
    }
    main .content .content-gyber .content-description p {
        font-size: 15px;
        line-height: 18px;
    }
    main .content .content-gyber .content-description button {
        font-size: 12px;
        padding: 13px;
        margin: -8.5px 0 0 0;
    }
    main .content .content-gyber .round-logo img {
        width: 45px;
    }
    header.navbar-container .nav-list-desktop {
        display: none;
    }
    header.navbar-container .nav-side-mobile {
        display: flex;
        transition: all 0.3s ease-in-out;
    }
    header.navbar-container .nav-side-mobile .side-nav {
        display: flex;
        width: 0;
        position: fixed;
        z-index: 1;
        height: 100%;
        top: 0;
        right: 0;
        background-color: #111;
        overflow: hidden;
        transition: all 0.3s ease-in-out;
        padding-top: 30px;
        flex-direction: column;
        padding-top: 55px;
    }
    header.navbar-container .nav-side-mobile .side-nav button {
        width: 85px;
        height: 35px;
        font-size: 16px;
        border-radius: 7.5px;
        text-decoration: none;
        font-weight: 500;
        cursor: pointer;
        background-color: black;
        color: white;
        align-self: center;
        margin-top: 10px;
        transition: all 0.3s ease-in-out;
    }
    header.navbar-container .nav-side-mobile .side-nav a:not(.active) {
        padding: 10px 8px 8px 32px;
        text-decoration: none;
        font-size: 16px;
        color: white;
        display: block;
        transition: 0.3s;
    }
    .active {
        padding: 10px 8px 8px 32px;
        text-decoration: none;
        font-size: 16px;
        color: rgba(209, 119, 119, 0.951);;
        display: block;
        transition: 0.3s;
    }
    header.navbar-container .nav-side-mobile .side-nav .close-button {
        position: absolute;
        top: 0;
        right: 25px;
        padding-bottom: 20px;
        font-size: 30px;
        transition: all 0.3s ease-in-out;
    }
    header.navbar-container .nav-side-mobile .open-button {
        font-size: 20px;
        cursor: pointer;
        background-color:  rgba(34, 30, 30, 0.041);
        color: white;
        border: none;
        margin-left: 220px;
        margin-bottom: 10px;
        transition: 0.3s ease-in-out;
    }
    footer {
        width: 100%;
        height: 45vh;
        font-size: 14px;
        justify-content: center;
        font-size: 13px;
    }

    footer .footer-up section .mini {
        font-size: 10px;
        gap: 1rem;
    }
    footer .footer-bottom .copy {
        font-size: 13px;
    }
}

@media screen and (max-width: 376px) {
    main .content .content-gyber {
        display: flex;
    } 
    main .content .content-gyber .round-logo img {
        padding-bottom: 160px;
        padding-right: 30px;
    }
    main .content .content-gyber .content-description .title {
        padding-left: 20px;
    }
    main .content .content-gyber .content-description p {
        font-size: 11.5px;
        width: 230px;
        padding-left: 20px;
    }
    main .content .content-gyber .content-description button {
        margin-left: 20px;
        margin-top: 10px;
    }
    main .founder .profile {
        font-size: 12.8px;
    }
    main .founder button {
        font-size: 12px;
        width: 125px;
        height: 37.5px;
        align-self: center;
    }
    header.navbar-container .nav-side-mobile .open-button {
        margin-left: 200px;
    }
}

@media screen and (max-width: 321px) {
    main .content {
        width: 280px;
    }
    main .founder .profile {
        width: 260px;
    }
    header.navbar-container .nav-side-mobile .open-button {
        margin-left: 150px;
    }
    footer .footer-up .contact h3 {
        font-size: 15px;
    }
    footer .footer-up .contact p {
        font-size: 10px;
    }
    footer .footer-up section .mini {
      margin-right: 100px;
      gap: 20px;
    }
    footer .footer-bottom .copy {
        font-size: 12px;
    }
}