:root {
    scroll-behavior: smooth;
    
    --body-font: "Work Sans", sans-serif;
    --heading-font: "Epilogue", sans-serif;

    --default-transition-duration: 200ms;

    /* COLOR */
    --white: #fff;
    --white-60: rgba(255, 255, 255, 0.6);
    --primary-100: #e5e6ff;
    --primary-100-transparent-20: rgba(229, 230, 255, 0.2);
    --primary-100-transparent-10: rgba(229, 230, 255, 0.1);
    --primary-200: #bdbfff;
    --primary-300: #9497ff;
    --primary-400: #6e72ff;
    --primary-main: #444aff;
    --primary-600: #3136cc;
    --primary-700: #1f2399;
    --primary-800: #0f1266;
    --primary-900: #050733;
    --primary-900-transparent-20: rgba(5, 7, 51, 0.2);
    --light-text-gradient: linear-gradient(90deg, rgb(229, 230, 255) 0%, rgb(68, 74, 255) 100%);
    --dark-background-gradient: linear-gradient(45deg, rgba(5,7,51,1) 0%, rgba(15,18,102,1) 100%);

    /* SPACING */
    --standard-width: 1160px;
    --standard-width-sm: 615px;
    --standard-width-md: 860px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 30px;
    --spacing-xl: 64px;
    --spacing-xxl: 120px;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 24px;

    /* BOX SHADOW */
    --standard-box-shadow: 0px 2px 40px rgba(0, 0, 0, 0.15);
}


/* ------------------------------------------------- CUSTOM FONTS ----------------------------------------------------------- */

@font-face {
    font-family: "Work Sans";
    src: url("../assets/fonts/WorkSans-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Work Sans";
    src: url("../assets/fonts/WorkSans-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Work Sans";
    src: url("../assets/fonts/WorkSans-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Work Sans";
    src: url("../assets/fonts/WorkSans-MediumItalic.ttf") format("truetype");
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: "Epilogue";
    src: url("../assets/fonts/Epilogue-Thin.ttf") format("truetype");
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: "Epilogue";
    src: url("../assets/fonts/Epilogue-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Epilogue";
    src: url("../assets/fonts/Epilogue-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}
  
@font-face {
    font-family: "Epilogue";
    src: url("../assets/fonts/Epilogue-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}
  
@font-face {
    font-family: "Epilogue";
    src: url("../assets/fonts/Epilogue-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}
  
@font-face {
    font-family: "Epilogue";
    src: url("../assets/fonts/Epilogue-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}
  
@font-face {
    font-family: "Epilogue";
    src: url("../assets/fonts/Epilogue-BoldItalic.ttf") format("truetype");
    font-weight: bold;
    font-style: italic;
}


/* ------------------------------------------------- GENERIC STYLES ----------------------------------------------------------- */

body {
    font-family: var(--body-font);
    font-weight: normal;
    margin: 0;
    text-transform: lowercase;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    margin: 0;
}

h1, h2 {
    color: var(--white);
    font-size: 88px;
    font-weight: bold;
    line-height: 100%;
    letter-spacing: -4px;
}

h3 {
    font-size: 40px;
    font-weight: bold;
    letter-spacing: -2px;
}

h4 {
    font-size: 25px;
    font-weight: normal;
    letter-spacing: 2px;
    line-height: 30px;
}

h5 {
    font-size: 20px;
    font-weight: normal;
    letter-spacing: 8px;
    line-height: normal;
}

h6 {
    font-size: 25px;
    font-weight: 500;
    letter-spacing: -1px;
    line-height: normal;
}

p {
    font-size: 16px;
    line-height: 200%;
}

button {
    font-family: var(--body-font);
    color: var(--primary-100);
    border: none;
    border-radius: var(--border-radius-md);
    font-size: 15px;
    line-height: 126%;
    cursor: pointer;
}

.full-viewport-height {
    min-height: 100dvh;
}

.dark-gradient-background {
    background: var(--dark-background-gradient);
}

.margin-container {
    width: 90%;
    max-width: var(--standard-width);
    margin-inline: auto;
}

.blue-text {
    color: var(--primary-main);
}

.light-gradient-text {
    background: var(--light-text-gradient);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

.link-text {
    font-size: 14px;
    line-height: 126%;
    text-decoration: none;
}

.primary-button {
    background-color: var(--primary-main);
}

.secondary-button {
    padding-block: 19px;
    background-color: transparent;
    border: 2px solid var(--primary-main);
    width: 30%;
    max-width: 160px;
}

.italicize {
    font-style: italic;
}

.arrow-down-icon-group {
    width: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-inline: auto;
    animation: 4000ms ease-out 2300ms infinite move-down-up;
}
.arrow-down-icon-group svg:nth-of-type(1) {
    animation: 4000ms ease-out 2000ms infinite blink;
}
.arrow-down-icon-group svg:nth-of-type(2) {
    animation: 4000ms ease-out 2100ms infinite blink;
}
.arrow-down-icon-group svg:nth-of-type(3) {
    animation: 4000ms ease-out 2200ms infinite blink;
}

.spin-button {
    animation: 500ms ease-in-out rotate-once;
}


/* ------------------------------------------------- HEADER ----------------------------------------------------------- */

.top-section {
    background-color: var(--white);
    padding-bottom: 120px;
}

#header {
    padding-top: 30px;
}

.top-banner {
    background-color: transparent;
    height: 48px;
    width: 100%;
    max-width: 180px;
    margin-inline: auto;
    border-radius: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.top-banner .logo-link {
    font-size: 0;
}
.top-banner .logo-link:hover > svg {
    transform: scale(1.05);
}

.top-banner .logo-link svg circle {
    fill: var(--primary-main);
}
.top-banner .logo-link svg path {
    fill: var(--white);
}

.top-banner svg {
    transition: transform 200ms ease-in-out;
}

.heading-and-image {
    padding-top: 88px;
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 36px;
    transition-property: opacity, transform;
    transition-duration: 600ms;
    transition-timing-function: ease-in-out;
}
.heading-and-image.hidden {
    opacity: 0;
    transform: translateY(-88px);
}

.heading-and-image .heading {
    text-align: center;
    position: relative;
    flex: 0 1 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.heading-and-image h5 {
    letter-spacing: 3px;
    opacity: 0.3;
    font-weight: 300;
    margin-bottom: 16px;
}

.heading-and-image .name {
    font-size: 88px;
    position: relative;
}
.heading-and-image .name::after {
    color: transparent;
    content: "nnange akume";
    -webkit-text-stroke: .9px white;
    position: absolute;
    inset: 0;
    z-index: 2;
}

.heading-and-image .summary {
    font-size: 14px;
    opacity: .8;
}

.heading-and-image .summary .bold {
    font-weight: 500;
}

.heading-and-image .summary a {
    text-decoration-color: transparent;
    color: inherit;
    transition: text-decoration-color var(--default-transition-duration) ease-in-out;
}
.heading-and-image .summary a:hover {
    text-decoration-color: inherit;
}

.heading-and-image .image-container {
    width: 152px;
    min-width: 120px;
    position: absolute;
    left: 264px;
    top: 52px;
    z-index: 1;
    transition-property: opacity, transform;
    transition-duration: 1000ms;
    transition-timing-function: ease-in-out;
}
.heading-and-image .image-container.hidden {
    opacity: 0;
    transform: translateX(80px);
}

.heading-and-image .image-container img {
    width: 100%;
}


/* ------------------------------------------------- TOOLS AND TECHNOLOGIES SECTION ----------------------------------------------------------- */

.tools-technologies {
    padding-block: 160px;
}

h2 {
    font-size: 72px;
}
.tools-technologies h2 {
    color: var(--primary-900);
}

.tools-technologies h2 span {
    letter-spacing: -1px;
}

.tools-technologies p {
    color: var(--primary-900);
    margin-top: 80px;
    margin-bottom: 60px;
}

.tools-flex-container {
    max-width: 800px;
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    row-gap: 32px;
    column-gap: 24px;
}

.tools-flex-container .tool {
    padding-block: 20px;
    padding-inline: 20px;
    border-radius: 6px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.tools-flex-container .tool::before {
    border-radius: 8px;
    position: absolute;
    content: "";
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    left: -2px;
    top: -2px;
    z-index: -1;
}
.tools-flex-container .tool::after {
    border-radius: 8px;
    position: absolute;
    content: "";
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    opacity: 0.5;
    left: -2px;
    top: -2px;
    z-index: -2;
    transition: filter 200ms ease-in-out;
}
.tools-flex-container .tool:hover::after {
    filter: blur(4px);
}

.tools-flex-container .tool .icon {
    height: 20px;
}

.tools-flex-container .tool span {
    font-size: 14px;
    opacity: 1;
}

.tools-flex-container .tool.figma {
    background: linear-gradient(45deg, rgb(255, 248, 247) 0%, rgb(250, 247, 255) 50%, rgb(244, 252, 255) 75%, rgb(243, 253, 249) 100%);
}
.tools-flex-container .tool.figma span {
    background: linear-gradient(45deg, rgba(255,114,98) 0%, rgba(162,89,255) 50%, rgba(26,188,254) 75%, rgba(10,207,131) 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}
.tools-flex-container .tool.figma::before {
    background: linear-gradient(45deg, rgba(255,114,98) 0%, rgba(162,89,255) 50%, rgba(26,188,254) 75%, rgba(10,207,131) 100%);
}
.tools-flex-container .tool.figma::after {
    background: linear-gradient(45deg, rgba(255,114,98) 0%, rgba(162,89,255) 50%, rgba(26,188,254) 75%, rgba(10,207,131) 100%);
}
.tools-flex-container .tool.html {
    background: linear-gradient(45deg, rgb(254, 247, 244) 0%, rgb(254, 246, 244) 100%);
}
.tools-flex-container .tool.html span {
    background: linear-gradient(45deg, rgba(241,101,41) 0%, rgba(228,77,38) 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}
.tools-flex-container .tool.html::before {
    background: linear-gradient(45deg, rgba(241,101,41) 0%, rgba(228,77,38) 100%);
}
.tools-flex-container .tool.html::after {
    background: linear-gradient(45deg, rgba(241,101,41) 0%, rgba(228,77,38) 100%);
}
.tools-flex-container .tool.css {
    background-color: rgb(247, 245, 250);
    color: rgba(102, 51, 153);
}
.tools-flex-container .tool.css::before {
    background-color: rgba(102, 51, 153);
}
.tools-flex-container .tool.css::after {
    background-color: rgba(102, 51, 153);
}
.tools-flex-container .tool.javascript {
    background-color: rgb(255, 253, 244);
    color: rgb(247, 223, 30);
}
.tools-flex-container .tool.javascript::before {
    background-color: rgba(247, 223, 30);
}
.tools-flex-container .tool.javascript::after {
    background-color: rgba(247, 223, 30);
}
.tools-flex-container .tool.typescript {
    background-color: rgb(245, 248, 252);
    color: rgb(49, 121, 198);
}
.tools-flex-container .tool.typescript::before {
    background-color: rgba(49, 121, 198);
}
.tools-flex-container .tool.typescript::after {
    background-color: rgba(49, 121, 198);
}
.tools-flex-container .tool.react {
    background-color: rgb(243, 249, 250);
    color: rgb(8, 125, 164);
}
.tools-flex-container .tool.react::before {
    background-color: rgba(8, 125, 164);
}
.tools-flex-container .tool.react::after {
    background-color: rgba(8, 125, 164);
}
.tools-flex-container .tool.node {
    background: linear-gradient(45deg, rgb(245, 245, 245) 0%, rgb(245, 249, 245) 50%, rgb(248, 251, 247) 100%);
}
.tools-flex-container .tool.node span {
    background: linear-gradient(45deg, rgba(51,51,51) 0%, rgba(62,134,61) 50%, rgba(121,179,98) 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}
.tools-flex-container .tool.node::before {
    background: linear-gradient(45deg, rgba(51,51,51) 0%, rgba(62,134,61) 50%, rgba(121,179,98) 100%);
}
.tools-flex-container .tool.node::after {
    background: linear-gradient(45deg, rgba(51,51,51) 0%, rgba(62,134,61) 50%, rgba(121,179,98) 100%);
}
.tools-flex-container .tool.mysql {
    background: linear-gradient(45deg, rgb(242, 248, 249) 0%, rgb(254, 249, 243) 100%);
}
.tools-flex-container .tool.mysql span {
    background: linear-gradient(45deg, rgba(0,117,143) 0%, rgba(242,145,17) 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}
.tools-flex-container .tool.mysql::before {
    background: linear-gradient(45deg, rgba(0,117,143) 0%, rgba(242,145,17) 100%);
}
.tools-flex-container .tool.mysql::after {
    background: linear-gradient(45deg, rgba(0,117,143) 0%, rgba(242,145,17) 100%);
}
.tools-flex-container .tool.mongodb {
    background-color: rgb(242, 247, 246);
    color: rgb(0, 104, 75);
}
.tools-flex-container .tool.mongodb::before {
    background-color: rgba(0, 104, 75);
}
.tools-flex-container .tool.mongodb::after {
    background-color: rgba(0, 104, 75);
}


/*------------------------------------------- BOTTOM NAVBAR ------------------------------------------------------------- */

.bottom-nav {
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-inline: auto;
    visibility: hidden;
    transform: translateY(calc(100% + 40px));
    position: sticky;
    bottom: 24px;
    z-index: 99;
    transition-property: transform, visibility;
    transition-duration: 500ms;
    transition-timing-function: ease-in-out;
}
.bottom-nav.full-appearance {
    visibility: visible;
    transform: translateY(0);
}

.bottom-nav ul {
    background-color: transparent;
    backdrop-filter: blur(8px);
    padding: 0;
    list-style: none;
    margin: 0;
    border-radius: var(--border-radius-lg);
    box-shadow: 2px 4px 28px 0px rgba(5, 7, 51, 0.2);
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    transition-property: background-color, backdrop-filter, box-shadow;
    transition-duration: 400ms;
    transition-timing-function: ease-in-out;
}
.bottom-nav ul.full-background {
    background-color: var(--primary-main);
    backdrop-filter: blur(0px);
    box-shadow: 2px 4px 28px 0px rgba(5, 7, 51, 0.1);
}
.bottom-nav ul.full-background .logo-link svg path {
    fill: var(--primary-100);
}
.bottom-nav ul.full-background > li:first-of-type a,
.bottom-nav ul.full-background > li:nth-of-type(2) a,
.bottom-nav ul.full-background > li:nth-of-type(3) a {
    border-right-color: var(--primary-100-transparent-20);
}
.bottom-nav ul.full-background a {
    color: var(--primary-100);
}
.bottom-nav ul.full-background a:hover {
    background-color: var(--primary-600);
}

.bottom-nav ul > li:nth-of-type(2),
.bottom-nav ul > li:nth-of-type(3) {
    display: flex;
}

.bottom-nav ul > li .link-text {
    padding-top: 19px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bottom-nav a {
    color: var(--primary-900);
    display: block;
    padding-block: 18px;
    padding-inline: 25px;
    transition-property: color, background-color, border-color;
    transition-duration: var(--default-transition-duration);
    transition-timing-function: ease-in-out;
}

.bottom-nav ul > li:first-of-type a,
.bottom-nav ul > li:nth-of-type(2) a,
.bottom-nav ul > li:nth-of-type(3) a {
    border-right: 1px solid var(--primary-900-transparent-20);
}

.bottom-nav a:hover {
    background-color: var(--primary-100);
}

.bottom-nav .logo-link {
    font-size: 0;
}

.bottom-nav .logo-link svg path {
    fill: var(--primary-900);
    transition: fill var(--default-transition-duration) ease-in-out;
}


/* ------------------------------------------------- FOOTER ----------------------------------------------------------- */

footer {
    padding-block: 60px;
    padding-top: 80px;
    box-sizing: border-box;
    color: var(--primary-900);
}

footer h2 {
    color: var(--primary-900);
}

.footer-flex-container {
    flex-grow: 1;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}
.footer-flex-container .left-side,
.footer-flex-container .right-side {
    flex: 0 1 30%;
}
.footer-flex-container .left-side {
    min-width: 480px;
}

.lets-talk-link {
    text-align: center;
    display: inline-block;
    margin-top: 40px;
    margin-left: 70px;
}

.lets-talk-link > a {
    text-align: center;
    width: 112px;
    height: 112px;
    border: 1px solid var(--primary-main);
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition-property: border-color;
    transition-duration: var(--default-transition-duration);
    transition-timing-function: ease-in-out;
}
.lets-talk-link > a:hover {
    border-color: transparent;
}
.lets-talk-link > a:hover span {
    color: var(--primary-100);
}
.lets-talk-link > a::before {
    content: "";
    background-color: var(--primary-main);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transform: translateY(100%);
    transition: transform var(--default-transition-duration) ease-in-out;
}
.lets-talk-link > a:hover::before {
    transform: translateY(0);
}

.lets-talk-link > a span {
    color: rgb(0, 0, 238);
    transition: color var(--default-transition-duration) ease-in-out;
}

footer .arrow-down-icon-group {
    margin-bottom: 20px;
}

.lets-talk-link > p {
    margin-bottom: 0;
    font-size: 14px;
}
.lets-talk-link > p span {
    opacity: 20%;
}
.lets-talk-link > p a {
    opacity: 20%;
    text-decoration: none;
    color: var(--primary-900);
    transition: opacity 100ms ease-out;
}
.lets-talk-link > p a:hover {
    opacity: 100%;
}

.footer-social-links {
    max-width: 360px;
    margin-left: auto;
}

.footer-social-links .social-link {
    font-size: 0;
    color: var(--primary-900);
    text-decoration: none;
    padding: 35px 0 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--primary-900-transparent-20);
    transition: background-color 200ms ease-in-out, border 200ms ease-in-out;
}
.footer-social-links .social-link:hover {
    background-color: var(--primary-100);
    border-bottom: 1px solid var(--primary-900);
}
.footer-social-links .social-link:hover > svg {
    opacity: 100%;
    transform: translateX(10px);
}
.footer-social-links .social-link:hover > p {
    opacity: 100%;
    transform: translateX(-10px);
}

.footer-social-links .social-link > svg,
.footer-social-links .social-link > p {
    opacity: 20%;
    transition: opacity 200ms ease-in-out, transform 200ms ease-in-out;
}

.footer-social-links .social-link p {
    margin: 0;
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 300;
}

.copyright {
    max-width: 360px;
    margin-left: auto;
    margin-top: 60px;
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 30px;
}

.copyright a:first-child {
    font-size: 0;
}

.copyright p {
    margin: 0;
    opacity: 70%;
}



/* ------------------------------------------------- ANIMATIONS ----------------------------------------------------------- */

@keyframes fade-in {
    0% {
        opacity:0%;
    }
    100% {
        opacity:100%;
    }
}

@keyframes spin {
    70% {
        transform: scale(0.6) rotate(2turn);
    }
    100% {
        transform: scale(1) rotate(0turn);
    }
}

@keyframes blink {
    8% {
        opacity: 0%;
    }
    16%, 100% {
        opacity: 100%;
    }
}

@keyframes move-down-up {
    8% {
        transform: translateY(4px);
    }
    16%, 100% {
        transform: translateY(0px);
    }
}

@keyframes auto-scroll {
    50% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0px);
    }
}



/* ------------------------------------------------- MEDIA QUERIES ----------------------------------------------------------- */

@media only screen and (max-width: 1120px) {

    /* --------------------------------------------------------- GENERIC ------------------------------------------------------------ */

    h1, h2 {
        font-size: 72px;
    }

    .primary-button, .secondary-button {
        padding-block: 16px;
    }

    /* -------------------------------------------------------------- FOOTER ------------------------------------------------------------ */

    .footer-flex-container .right-side {
        flex-basis: 35%;
    }

    .footer-flex-container .left-side {
        min-width: 380px;
    }

    .lets-talk-link {
        margin-left: 54px;
    }
}


@media only screen and (max-width: 960px) {

    /* --------------------------------------------------------- GENERIC ------------------------------------------------------------ */

    h1, h2 {
        font-size: 68px;
    }

    /* --------------------------------------------------------- MAIN CONTENT ------------------------------------------------------------ */

    .heading-and-image .image-container::before,
    .heading-and-image .image-container::after {
        font-size: 16px;
    }

    /* ----------------------------------------------------------- FOOTER ----------------------------------------------------------- */

    .footer-flex-container .right-side {
        flex-basis: 37%;
    }

    .copyright {
        gap: 20px;
    }

    .copyright p {
        font-size: 14px;
    }
}


@media only screen and (max-width: 760px) {

    /* --------------------------------------------------------------- GENERIC ----------------------------------------------------------- */

    h1, h2 {
        font-size: 60px;
        letter-spacing: -3px;
    }

    /* --------------------------------------------------------------- MAIN CONTENT ------------------------------------------------------- */

    .heading-and-image .image-container,
    .heading-and-image .image-container::before,
    .heading-and-image .image-container::after {
        animation: none
    }

    /* ------------------------------------------------------------FOOTER ------------------------------------------------------------ */

    .footer-flex-container {
        justify-content: space-between;
    }

    .footer-flex-container .left-side {
        min-width: auto;
    }

    .footer-social-links .social-link {
        padding-top: 25px;
        padding-bottom: 16px;
    }

    .footer-social-links .social-link p {
        font-size: 20px;
    }

    .lets-talk-link {
        margin-left: 42px;
    }

    .lets-talk-link .arrow-down-icon-group svg {
        width: 20px;
    }

    .lets-talk-link .arrow-down-icon-group svg:nth-of-type(2),
    .lets-talk-link .arrow-down-icon-group svg:nth-of-type(3) {
        margin-top: -4px;
    }

    .lets-talk-link > a {
        width: 100px;
        height: 100px;
    }

    .copyright p {
        font-size: 12px;
    }
}


@media only screen and (max-width: 620px) {

    /* --------------------------------------------------------------- GENERIC ----------------------------------------------------------- */

    button {
        font-size: 13px;
    }

    h1, h2 {
        font-size: 50px;
    }

    .primary-button, .secondary-button {
        padding-block: 14px;
    }

    /* --------------------------------------------------------------- MAIN CONTENT -------------------------------------------------------- */

    .heading-and-image .image-container {
        width: 136px;
        left: 252px;
        top: 48px;
    }

    .heading-and-image .name {
        font-size: 72px;
    }

    .heading-and-image .summary .bottom-if {
        display: none;
    }

    /* ------------------------------------------------------------ FOOTER ------------------------------------------------------------ */

    .bottom-nav a {
        padding-block: 16px;
        padding-inline: 16px;
    }

    .bottom-nav ul > li .link-text {
        padding-top: 17px;
    }

    .footer-flex-container .right-side {
        flex-basis: 35%;
    }

    .footer-social-links .social-link {
        align-items: end;
    }

    .footer-social-links .social-link p {
        font-size: 16px;
    }

    .footer-social-links .social-link svg {
        width: 16px;
    }

    .lets-talk-link {
        margin-left: 28px;
    }

    .copyright {
        gap: 10px;
    }
}


@media only screen and (max-width: 481px) {

    /* --------------------------------------------------------------- GENERIC ----------------------------------------------------------- */

    h1, h2 {
        font-size: 44px;
    }

    button {
        font-size: 12px;
        border-radius: 4px;
    }

    .primary-button, .secondary-button {
        padding-block: 12px;
    }

    .link-text {
        font-size: 13px;
    }

    /* --------------------------------------------------------------- MAIN CONTENT ----------------------------------------------------------- */

    .top-section {
        padding-bottom: 0;
    }

    .heading-and-image {
        padding-top: 68px;
    }
    .heading-and-image.hidden {
        opacity: 1;
        transform: translateY(0);
    }

    .heading-and-image h5 {
        margin-top: 0;
    }

    .heading-and-image .name {
        font-size: 44px;
        max-width: 280px;
        margin-top: 8px;
    }
    .heading-and-image .name::after {
        display: none;
    }

    .heading-and-image .image-container {
        display: none;
    }

    .heading-and-image .summary {
        width: 85%;
    }

    /* --------------------------------------------------------- TOOLS AND TECHNOLOGIES ------------------------------------------------- */

    .tools-technologies h2,
    .tools-technologies p {
        text-align: center;
    }
    
    .tools-flex-container {
        justify-content: center;
    }

    /* --------------------------------------------------------- FOOTER ----------------------------------------------------------------- */

    footer {
        padding-block: 40px;
    }

    .bottom-nav ul {
        border-radius: 8px;
        display: grid;
        grid-template-columns: auto;
    }

    .bottom-nav a {
        padding-block: 10px;
    }

    .bottom-nav ul > li .link-text {
        padding-top: 11px;
    }

    .bottom-nav ul > li:first-of-type {
        grid-column: 1;
    }
    .bottom-nav ul > li:nth-of-type(2) {
        grid-column: 2 / 4;
    }
    .bottom-nav ul > li:nth-of-type(3) {
        grid-column: 2 / 4;
    }
    .bottom-nav ul > li:nth-of-type(4) {
        grid-column: 1;
        grid-row: 2;
    }
    .bottom-nav ul > li:nth-of-type(2) a,
    .bottom-nav ul > li:nth-of-type(3) a {
        width: 100%;
    }

    .bottom-nav ul > li:first-of-type a,
    .bottom-nav ul > li:nth-of-type(2) a,
    .bottom-nav ul > li:nth-of-type(3) a,
    .bottom-nav ul > li:nth-of-type(4) a {
        border-right: none;
    }

    .bottom-nav ul > li:first-of-type a,
    .bottom-nav ul > li:nth-of-type(4) a {
        border-right: 1px solid var(--primary-100-transparent-20);
    }

    .bottom-nav ul > li:first-of-type a,
    .bottom-nav ul > li:nth-of-type(2) a {
        border-bottom: 1px solid var(--primary-100-transparent-20);
    }

    .footer-flex-container {
        margin-top: 40px;
        flex-direction: column;
        justify-content: start;
    }

    .lets-talk-link .arrow-down-icon-group {
        margin-bottom: 15px;
    }

    .lets-talk-link {
        margin-top: 30px;
        margin-left: 40px;
    }

    .lets-talk-link > a {
        width: 80px;
        height: 80px;
    }

    .footer-flex-container .right-side {
        margin-top: 40px;
        max-width: 216px;
    }

    .copyright {
        margin-top: 60px;
    }
}


@media only screen and (max-width: 270px) {

    /* --------------------------------------------------------------- GENERIC ----------------------------------------------------------- */

    h1, h2 {
        font-size: 40px;
    }

    /* --------------------------------------------------------------- FOOTER ----------------------------------------------------------- */

    .lets-talk-link {
        margin-left: 28px;
    }
}