/* Montserrat loaded in HTML to avoid render-blocking @import */

@property --company-fade {
    syntax: '<color>';
    inherits: false;
    initial-value: white;
}

@property --highlight-fade {
    syntax: '<color>';
    inherits: false;
    initial-value: #adb5bd;
}

/* ==========================================================================
   1. CSS VARIABLES
   ========================================================================== */

:root {
    --bg-dark: #121212;
    --accent-light-blue: #54b0ff;
    --accent-dark-blue: #002239;
    --accent-middle: #002239;
    --text-white: #ffffff;
    --text-light-grey: #adb5bd;
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    overflow-x: clip;
}

#binary-canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -2;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 100%);
}

body {
    text-align: center;
    line-height: 1.5;
    background-color: var(--bg-dark);
}

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */

h1 {
    font-weight: 700
}

p,
a {
    font-size: 1.6rem
}

a {
    text-decoration: none
}

a:hover {
    transition: all .3s ease-in-out
}

.section-title {
    margin-bottom: 4.5rem;
    font-size: 4rem
}

@media(max-width: 37.5em) {
    .section-title {
        font-size: 2.8rem
    }
}

.text-color-main {
    margin-left: 1rem;
    color: var(--accent-middle);
    -webkit-text-fill-color: var(--accent-middle)
}

@supports((-webkit-background-clip: text) or (background-clip: text)) or (-webkit-background-clip: text) {
    .text-color-main {
        background-image: linear-gradient(0deg, var(--accent-light-blue) 0%, var(--accent-light-blue) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: rgba(0, 0, 0, 0);
        color: rgba(0, 0, 0, 0)
    }
}

@media(max-width: 48em) {
    .text-color-main {
        margin: 0;
        background-image: none;
        -webkit-text-fill-color: var(--accent-light-blue);
        color: var(--accent-light-blue);
        box-shadow: none
    }
}

.text-color-highlight {
    color: var(--text-light-grey);
    -webkit-text-fill-color: var(--text-light-grey)
}

@supports((-webkit-background-clip: text) or (background-clip: text)) or (-webkit-background-clip: text) {
    .text-color-highlight {
        --highlight-fade: #adb5bd;
        background-image: linear-gradient(135deg, var(--text-white) 30%, var(--highlight-fade) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: rgba(0, 0, 0, 0);
        color: rgba(0, 0, 0, 0);
        transition: --highlight-fade 0.6s ease;
    }

    .text-color-highlight:hover {
        --highlight-fade: white;
    }
}


/* ==========================================================================
   4. LAYOUT
   ========================================================================== */

.mobile-break {
    display: none;
}

.desktop-break {
    display: inline;
}

@media(max-width: 45em) {
    .mobile-break {
        display: inline;
    }

    .desktop-break {
        display: none;
    }
}

section {
    padding: 5rem 0rem
}

@media(max-width: 45em) {
    section {
        border: none;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

section .row {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: 1fr;
    padding: 0 1.5rem
}

@media(max-width: 56.25em) {
    section .row {
        grid-template-columns: 1fr;
        grid-template-rows: auto
    }
}

@media(max-width: 37.5em) {
    section .row {
        padding: 0
    }
}

section .row p+p {
    margin-top: 1rem
}

section .row span {
    margin-top: 2rem
}

.container {
    width: 100%;
    padding: 0 1.5rem;
    margin: 0 auto;
    max-width: 1140px
}

@media(max-width: 75em) {
    .container {
        max-width: 960px;
        width: 100%
    }
}

@media(max-width: 56.25em) {
    .container {
        max-width: 720px;
        width: 100%;
        justify-content: center
    }
}

@media(max-width: 48em) {
    .container {
        max-width: 720px;
        width: 100%
    }
}

@media(max-width: 37.5em) {
    .container {
        max-width: 540px;
        width: 100%
    }
}

/* ==========================================================================
   5. BUTTONS
   ========================================================================== */

.cta-btn {
    margin-top: -1rem;
    display: inline-block;
    position: relative;
    padding: .8rem 1.6rem;
    font-weight: bold;
    line-height: 1;
    z-index: 1;
    overflow: hidden;
    border-radius: 3px;
    transition: all cubic-bezier(0.19, 1, 0.22, 1) .6s
}

.cta-btn::after {
    content: "";
    display: block;
    position: absolute;
    background-image: linear-gradient(135deg, var(--accent-light-blue) 0%, var(--accent-dark-blue) 100%);
    width: 0px;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    transition: all cubic-bezier(0.19, 1, 0.22, 1) .6s
}

@media(max-width: 37.5em) {
    .cta-btn::after {
        width: 0;
        height: 0;
        background-image: none
    }
}

.cta-btn--contact {
    border-radius: 10px;
    margin-top: 1rem;
    align-self: center;
    color: #fff;
    border: 1px solid #fff
}

.cta-btn--contact::after {
    background: #fff;
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-btn--contact:hover {
    color: #000;
    text-decoration: none;
    box-shadow: none;
    mix-blend-mode: screen;
    transition: color 0.3s;
}

@media(max-width: 37.5em) {
    .cta-btn--contact:hover {
        color: #fff
    }
}

.cta-btn--contact:hover::after {
    opacity: 1
}

/* ==========================================================================
   6. HERO SECTION
   ========================================================================== */

#hero {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--bg-dark);
    font-weight: 400;
    color: #272341;
    padding: 0rem 5.6rem;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    line-height: 1.2;
}

@media(max-width: 56.25em) {
    #hero {
        justify-content: center
    }
}

@media(max-width: 37.5em) {
    #hero {
        padding: 0rem 1.6rem
    }
}

#hero .hero-title {
    font-size: 5.6rem;
    font-weight: 700;
    margin-bottom: 3.2rem;
    text-align: left;
    color: var(--text-white);
}

#hero .hero-title .name {
    margin: 0;
    font-size: 5.6rem;
    display: inline-block;
}

@media(max-width: 75em) {
    #hero .hero-title {
        font-size: 2.3rem;
        text-align: center;
    }
}

@media(max-width: 56.25em) {
    #hero .hero-title .name {
        font-size: 3.6rem;
        text-align: center
    }
}

@media(max-width: 37.5em) {
    #hero .hero-title .name {
        font-size: 3.5rem;
        line-height: 1.5
    }
}

@media(max-width: 20em) {
    #hero .hero-title {
        font-size: 2.8rem
    }
}

.company-name {
    display: block;
    font-size: 3.14rem;
    font-weight: 700;
    margin-top: 0.1rem;
    margin-left: 0rem;
    text-align: center;
    --company-fade: rgba(255, 255, 255, 0.6);
    background: linear-gradient(to bottom, #ffffffcf 21%, var(--company-fade) 96%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: companyNameDim 0.8s ease-out 2s backwards;
    transition: --company-fade 0.6s ease;
}

.company-name:hover {
    --company-fade: white;
}

@keyframes companyNameDim {
    from {
        --company-fade: white;
    }

    to {
        --company-fade: rgba(255, 255, 255, 0.6);
    }
}

@media(max-width: 56.25em) {
    .company-name {
        font-size: 2.6rem;
        margin-left: 0;
    }
}

@media(max-width: 37.5em) {
    .company-name {
        font-size: 2rem;
        white-space: nowrap;
    }
}

@media(max-width: 48em) {
    .company-name {
        background: none;
        -webkit-background-clip: unset;
        background-clip: unset;
        -webkit-text-fill-color: rgba(255, 255, 255, 0.85);
        color: rgba(255, 255, 255, 0.85);
        animation: none;
    }
}

.hero-overlay {
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    bottom: 30px;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    padding-left: 6rem;
    pointer-events: none;
}

.hero-content .name,
.hero-content .company-name,
.hero-icons a,
.scroll-down-link {
    pointer-events: auto;
}

.hero-title-group {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.hero-icons {
    display: flex;
    gap: 3.2rem;
    margin-top: -1.2rem;
}

@keyframes iconFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease .2s;
    opacity: 0;
    animation: iconFadeIn 1s ease-out forwards;
}

.hero-icons a:first-child {
    animation-delay: 1.2s;
}

.hero-icons a:last-child {
    animation-delay: 1.3s;
}

.hero-icons a .icon {
    fill: url(#icon-gradient);
    transition: all ease-in-out .2s;
}

.hero-icons a[aria-label="email"] .icon {
    width: 3.6rem;
    height: 3.6rem;
}

.hero-icons a[aria-label="schedule a call"] .icon {
    width: 3.2rem;
    height: 3.2rem;
}

.hero-icons a:hover {
    transform: scale(1.1) translateY(-2px);
}

.hero-icons a:hover .icon {
    fill: var(--text-white);
}

@media(max-width: 48em) {
    .hero-content {
        align-items: center;
        text-align: center;
        position: relative;
        transform: translateY(-2rem);
        padding-left: 0;
        padding-right: 0;
    }

    #hero .hero-title {
        margin-bottom: 0;
    }

    .hero-icons {
        margin-top: 1.5rem;
    }
}

/* ==========================================================================
   7. ABOUT SECTION
   ========================================================================== */

#about {
    background-color: transparent;
    color: #00000000;
    height: 100%;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
    padding-bottom: 20%;
    position: relative;
}

@keyframes logoFloat {

    0%,
    100% {
        translate: 0 0;
        scale: 1;
    }

    50% {
        translate: 0 -6px;
        scale: 1.03;
    }
}

@media(max-width: 75em) {
    #about {
        height: 100%;
        -webkit-clip-path: none;
        clip-path: none;
        z-index: -1;
    }
}

#about .about-wrapper {
    color: var(--text-white);
    grid-template-columns: 1fr 1fr;
    margin-top: 9rem;
}

@media(max-width: 37.5em) {
    #about .about-wrapper {
        margin-top: -6rem;
        padding-bottom: 0;
        grid-template-columns: 1fr
    }
}

@media(min-width: 1024px) {
    #about {
        margin-top: 10rem;
        margin-right: 9rem;
        padding-top: 12rem;
    }
}

#about .about-wrapper__image {
    margin-top: 2rem;
    display: flex;
    height: 90%;
    align-items: center;
    justify-content: center;
}

#about .about-wrapper__image img {
    max-width: 350px;
    width: 100%;
    height: auto;
    transition: translate 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), scale 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

#about .about-wrapper__image img:hover {
    translate: 0 -8px;
    scale: 1.05;
}

@media (max-width: 48em) {
    #about .about-wrapper__image {
        display: none;
    }
}

#about .about-wrapper__info {
    display: flex;
    height: 97%;
    justify-content: center;
    flex-direction: column;
    text-align: left;
    padding-top: 3rem;
}

#about .about-wrapper__info p {
    line-height: 2.9rem;
    padding-bottom: 2rem;
    font-size: 1.9rem;
    letter-spacing: 0.03em;
}

#about .about-wrapper__info .section-title {
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

@media(max-width: 37.5em) {
    #about .about-wrapper__info p {
        font-size: 1.6rem;
        line-height: 2.4rem;
    }
}

#about .about-wrapper__logo-inline {
    display: none;
}

@media(max-width: 48em) {
    #about .about-wrapper__info {
        align-items: center;
        text-align: center;
    }

    #about .about-wrapper__info .section-title {
        display: none;
    }

    #about .about-wrapper__logo-inline {
        display: block;
        width: 90px;
        height: auto;
        margin: 6rem 0 0 0;
        animation: logoFloat 4s ease-in-out infinite;
    }
}


/* ==========================================================================
   7b. SERVICES SECTION
   ========================================================================== */

#services {
    background-color: transparent;
    padding: 5rem 0 30rem;
    /* margin-top: -12rem; */
}

#services .section-title {
    margin-bottom: 6rem;
    text-align: center;
    color: var(--text-white);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: center;
}

.service-card__image {
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
}

.service-icon {
    display: block;
    width: 100px;
    height: 100px;
    fill: url(#service-icon-gradient);
}

.service-card__info {
    text-align: left;
}

.service-card__title {
    font-size: 2.2rem;
    color: var(--text-white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card__desc {
    font-size: 1.6rem;
    color: var(--text-light-grey);
    line-height: 1.7;
}

@media (max-width: 48em) {
    #services {
        padding: 0rem 0 6rem;
    }

    #services .section-title {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 2rem;
    }

    .service-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-card__image {
        display: none;
    }

    .service-card__info {
        text-align: center;
    }
}

/* ==========================================================================
   8. CONTACT SECTION
   ========================================================================== */

#contact {
    position: relative;
    -webkit-clip-path: polygon(0 15vh, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 15vh, 100% 0, 100% 100%, 0 100%);
    padding: 16rem 0 10rem 0;
    margin-top: -6rem;
    margin-bottom: -1px;
    color: #fff;
    overflow: hidden;
}

#contact::before {
    content: "";
    position: absolute;
    width: 200vmax;
    height: 200vmax;
    left: 50%;
    top: 50%;
    margin-left: -100vmax;
    margin-top: -100vmax;
    border-radius: 50%;
    background-image: linear-gradient(0deg, var(--accent-light-blue) 0%, var(--accent-dark-blue) 80%);
    z-index: -1;
    animation: gradientTilt 12s linear infinite;
}

@keyframes gradientTilt {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media(max-width: 45em) {
    #contact {
        padding: 15rem 0 4rem 0;
        margin-top: 0;
        -webkit-clip-path: polygon(0 8vh, 100% 0, 100% 100%, 0 100%);
        clip-path: polygon(0 8vh, 100% 0, 100% 100%, 0 100%)
    }

    #contact::before {
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        margin: 0;
        border-radius: 0;
        animation: none;
    }
}

#contact>.container {
    position: relative;
    z-index: 1;
}

#contact .contact-wrapper {
    margin-top: -3.2rem;
    padding: 0 2rem;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

#contact .contact-wrapper__text {
    margin-top: -0.6rem;
    margin-bottom: 2.8rem;
    font-size: 3.2rem
}

#contact .contact-wrapper a {
    margin-top: 0.1rem;
    font-size: 3.6rem
}


@media(max-width: 45em) {

    #contact .contact-wrapper__text {
        font-size: 2rem;
        line-height: 1.5;
    }

    #contact .contact-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #contact .contact-wrapper a {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-top: -0.6rem;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ==========================================================================
   8a. PRICING TIERS
   ========================================================================== */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 3.5rem 3rem;
    border-radius: 28px;
    background: rgba(18, 18, 18, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.14);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    will-change: transform;
}

.pricing-card:hover {
    transform: scale(1.04);
}

.pricing-card__label {
    font-size: 1.3rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-light-blue);
    margin-bottom: 1.6rem;
    font-weight: 700;
}

.pricing-card__title {
    font-size: 2.2rem;
    line-height: 1.25;
    color: var(--text-white);
    font-weight: 700;
    margin-bottom: 2.4rem;
}

.pricing-card__lead,
.pricing-card__desc {
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-light-grey);
}

.pricing-card__lead {
    margin: 0 0 1.5rem 0;
}

.pricing-card__desc {
    margin: 0 0 2.4rem 0;
}

.pricing-card__cta {
    display: block;
    width: 100%;
    margin-top: auto;
    text-align: center;
    font-size: 1.8rem;
    padding: 1.2rem 1.6rem;
}

@media (max-width: 62em) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        gap: 2.5rem;
        padding: 0 2rem;
    }
}

@media(max-width: 48em) {
    .hero-overlay {
        display: none;
    }
}

/* ==========================================================================
   9. FOOTER
   ========================================================================== */

.footer {
    padding: 4.8rem 0
}

.footer__text {
    font-size: 1.3rem;
    color: color-mix(in srgb, var(--text-light-grey) 70%, transparent);
    margin-top: 2rem;
}

.footer__text+.footer__text {
    margin-top: .6rem;
}

.footer__text a {
    font-size: 1.3rem;
    color: inherit;
    transition: all .2s ease-in-out;
    display: inline-block
}

.footer__text a:hover,
.footer__text a:active {
    color: #fff
}

@media(max-width: 45em) {
    .footer__text {
        margin-top: 3rem;
    }
}

.social-links {
    display: flex;
    justify-content: center
}

.social-links a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 5rem;
    height: 5rem;
    margin: 1.6rem 1.6rem;
    transition: all ease .2s
}

.social-links a .icon {
    width: 3rem;
    height: 3rem;
    fill: url(#icon-gradient);
    transition: all ease-in-out .2s
}

.social-links a:hover {
    transform: scale(1.1) translateY(-2px)
}

.social-links a:hover .icon {
    fill: var(--text-white)
}

.back-to-top .icon-angle-up {
    width: 2.4rem;
    height: 2.4rem;
    fill: url(#icon-gradient);
    margin: 1rem 0 1.6rem;
    transition: all 200ms ease;
    opacity: 21%;
}

.back-to-top:hover .icon-angle-up {
    transform: translateY(-2px);
    fill: var(--text-white);
    opacity: 100%
}

@media(max-width: 45em) {
    .back-to-top .icon-angle-up {
        margin-top: -1rem;
    }
}

/* ==========================================================================
   10. PROJECTS SECTION (disabled)
   ========================================================================== */

.cta-btn--projects {
    box-shadow: inset 1px 1px 2px 2px #00000000, inset -2px -2px #00000000;
    border: 2px solid rgba(255, 255, 255, 0)
}

@media(max-width: 37.5em) {
    .cta-btn--projects {
        border: none;
        box-shadow: 1.5px 1.5px 3px rgba(174, 174, 192, .4), -1px -1px 3px #fff
    }
}

.cta-btn--projects::after {
    border-radius: 10px;
    height: 310%;
    width: 150%;
    transform: translate(-98%, -25%) rotate(45deg);
}

.cta-btn--projects::after {
    transform: translate(-98%, -30%) rotate(45deg)
}

.cta-btn--projects:hover {
    box-shadow: none
}

.cta-btn--projects:hover::after {
    transform: translate(-12%, -30%) rotate(45deg)
}

#projects {
    background-color: transparent;
    color: #00000000;
    margin-top: -12rem;
    padding-top: 15rem;
    margin-bottom: 9rem;
}

#projects .section-title {
    color: var(--text-white);
    text-align: center;
    margin-bottom: 6rem;
}

@media(min-width: 75em) {
    #projects {
        padding-left: 9rem;
    }

    #projects .section-title {
        margin-left: -9rem;
    }
}

@media(max-width: 45em) {
    #projects {
        margin-top: -6rem;
        padding-top: 5rem;
        margin-bottom: 0;
    }
}

@media(max-width: 45em) {
    #projects {
        padding-bottom: 1px
    }
}

#projects .project-wrapper {
    margin-bottom: 15rem
}

@media(max-width: 37.5em) {
    #projects .project-wrapper {
        margin-bottom: 0rem
    }
}

#projects .project-wrapper .row {
    margin: 0;
    margin-bottom: 8rem
}

@media(max-width: 37.5em) {
    #projects .project-wrapper .row {
        margin-bottom: 0
    }
}

#projects .project-wrapper__text {
    color: var(--text-white);
    width: 100%;
    text-align: left
}

@media(max-width: 75em) {
    #projects .project-wrapper__text {
        margin-bottom: 4.8rem
    }
}

@media(max-width: 37.5em) {
    #projects .project-wrapper__text {
        margin-bottom: 2.5rem
    }
}

#projects .project-wrapper__text-title {
    font-weight: bold;
    margin-bottom: 1.8rem;
    font-size: 2.5rem;
}

@media(max-width: 45em) {
    #projects .project-wrapper__text-title {
        font-size: 2rem;
    }
}

@media(max-width: 37.5em) {

    #projects .project-wrapper__text,
    #projects .project-wrapper__text-title {
        text-align: center;
    }
}

#projects .project-wrapper__text-info {
    color: var(--text-light-grey);
    margin-bottom: 1.5rem;
}

#projects .project-wrapper__text-btns {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap
}

#projects .project-wrapper__image {
    width: 81%;
    margin: 0 auto
}

@media(max-width: 45em) {
    #projects .project-wrapper__image {
        width: 100%;
        margin-top: -4rem;
        margin-bottom: 6rem;
    }
}

#projects .project-wrapper__image .thumbnail {
    border: none;
    box-shadow: 12px 18px 42px -6px rgb(0, 0, 0);
    border-radius: 28px;
    transition: box-shadow 0.6s ease;
}

#projects .project-wrapper__image .thumbnail:hover {
    box-shadow: 9px 12px 30px -6px rgba(0, 0, 0, 0.6);
}

#projects .project-wrapper__image .thumbnail .img-fluid {
    width: 100%;
    height: auto;
    vertical-align: middle;
    border-radius: 28px
}

@media(max-width: 37.5em) {
    #projects .project-wrapper__image .thumbnail {
        box-shadow: none;
        margin-bottom: 3.2rem;
        transform: none
    }
}

/* ==========================================================================
   11. ANIMATIONS
   ========================================================================== */