header nav {
    position: fixed;
}

nav .menu .list {
    padding-right: 90px !important;
}

@media (max-width: 1080px) {
    nav .menu .list {
        padding-right: 10px !important;
    }
}

@media (max-width: 480px) {
    header nav {
        padding: 20px;
        max-height: 70px;
    }

    nav .brand {
        font-size: 23px;
    }
}

.portHero {
    position: relative;
    overflow: hidden;
}

.portHero .portCont {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color);
    height: 300px;
    margin-top: 5em;
}

@media (max-width: 540px) {
    .portHero .portCont {
        margin-top: 4em;
    }
}

.portHero .portCont .title {
    position: absolute;
    text-align: center;
    color: var(--color);
    width: 100%;
    font-size: 150px;
    letter-spacing: 15px;
    -webkit-text-stroke: 1px;
    -webkit-text-stroke-color: rgba(0, 0, 0, 0.4);
}

.portHero .portCont .img {
    position: absolute;
    overflow: hidden;
    width: 300px;
    height: 300px;
    border-radius: 39% 61% 20% 80% / 71% 30% 70% 29%;
    background-color: var(--colorTwo);
    mix-blend-mode: multiply;
}

.portHero .portCont .img::before {
    position: absolute;
    content: "";
    top: 0;
    left: 15px;
    background-color: gainsboro;
    border-radius: 39% 61% 20% 80% / 71% 30% 70% 29%;
    width: 100%;
    height: 100%;
}

.portHero .portCont .img img {
    position: relative;
    top: 5px;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.portHero .portCont .socials {
    height: 100%;
    z-index: 1;
}

.portHero .portCont .socials span {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--color);
    margin-left: 1.5em;
    box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.4);
    transition: .5s;
    transform: translateY(250px);
}

.portHero .portCont .socials span:hover {
    background: var(--colorTwo);
}

.portHero .portCont .socials span a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.portHero .portCont .socials span a i {
    color: var(--colorTwo);
    transition: .5s;
}

.portHero .portCont .socials span:hover a i {
    color: var(--colorFour);
}