/* -------------------------------- *\
** Variables
** -------------------------------- */

:root {
    --color__hecoBg: #F6F3EF;
    --color__gizBg: #FFFEEB;
    --color__gizBlue: #004fff;
    --color__vergeViolet: #4C02E8;
}

/* -------------------------------- *\
** Utility Classes
** -------------------------------- */

@media screen and (max-width: 1023px) {

    .hideTablet {
        display: none;
    }

}

@media screen and (max-width: 767px) {

    .hideMobile {
        display: none;
    }

}

/* -------------------------------- *\
** Typography
** -------------------------------- */

html, body {
    font-family: 'Google Sans Flex', sans-serif;
    -webkit-font-smoothing: antialiased;
    font-size: 18px;
}

h2 {
    font-weight: 300;
    letter-spacing: -.4px;
    font-size: 2.2rem;
    line-height: 1.38;
}

h3 {
    font-weight: 600;
    font-size: 1.7rem;
}

a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid var(--color__vergeViolet);
    transition: color .6s;
}

a:hover {
    color: var(--color__vergeViolet);
}

p {
    font-size: .9rem;
    line-height: 1.55;
    font-weight: 300;
    margin: 0 auto 1rem;
}

@media screen and (max-width: 767px) {

    h2 {
        font-size: 1.5rem;
    }

}

/* -------------------------------- *\
** Standard & High-Level Elements
** -------------------------------- */

body {
    margin: 0;
    padding: 0;
    background: linear-gradient(var(--color__hecoBg) 90vh, #FFF 150vh, #FFF calc(100% - 600px), var(--color__hecoBg) calc(100% - 150px));
}

.wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.container {
    margin: 0 auto;
    width: 82%;
    max-width: 1150px;
}

img {
    max-width: 100%;
}

/* -------------------------------- *\
** Hero
** -------------------------------- */

#hero {
    padding-top: 80px;
    margin-bottom: 150px;
}

.hero__logo {
    width: 52%;
    max-width: 220px;
}

#hero h2 {
    margin: 30px 0 0;
    padding-left: 12%;
    max-width: 950px;
}

@media screen and (max-width: 767px) {

    #hero {
        padding-top: 50px;
        margin-bottom: 70px;
    }

    #hero h2 {
        padding-left: 0px;
    }
    
}

/* -------------------------------- *\
** Gallery
** -------------------------------- */

#gallery .container {
    display: flex;
    flex-wrap:wrap;
    gap: 3.5%;
}

.gallery__profile {
    width: 31%;
    margin-bottom: 130px;
}

.gallery__profile h3 {
    margin:20px 0 13px;
}

.profile__bio {
    padding-right: 20px;
}

.profile__brands {
    margin-bottom: 11px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.profile__brands a {
    font-family: 'JetBrains Mono', monospace;
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .4px;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;   
}

.brand__separator {
    margin-right: 5px;
}

.profile__channels {
    margin-top: 26px;
    display: flex;
    gap: 14px;
}

.profile__channels a {
    border: none;
}

.profile__channels img {
    width: 20px;
}

@media screen and (min-width: 768px) {

    .gallery__profile:nth-of-type(3n - 1) {
        position: relative;
        top: 50px;
    }
    
}

@media screen and (max-width: 767px) {

    #gallery .container {
        flex-direction: column;
    }

    .gallery__profile {
        width: 100%;
        margin-bottom: 70px;
    }
    
}

/* -------------------------------- *\
** Footer
** -------------------------------- */

#footer {
    margin-top: 20px;
}

#footer .container {
    display: flex;
    justify-content: center;
    padding: 50px 0;
    border-top: 1px solid;
    max-width: 440px;
}

#footer img {
    width: 58px;
}