/* GLOBAL STYLES ------------------------------------*/

    html{
        box-sizing: border-box;
    }

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

    html, body {
    margin: 0;
    padding: 0;
    max-width: 100%;
    overflow-x: hidden;
    }

    .page-title {
      background-color: #40e6dd;
      margin-bottom: calc(-0.3 * var(--clip-depth));
      padding: 0;
      position: relative;
      z-index: 0;
    }

    .page-title h2,
    .page-title .title-text {
      color: #fff;
      font-family: "Oswald", Arial, Helvetica, sans-serif;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .02em;
      line-height: 1;
      margin: 0;
      padding: clamp(6px, 1.2vw, 14px) 0;
      font-size: clamp(2.4rem, 8vw, 7rem);
    }

:root {
    --fs-hero: clamp(1.4rem, 4.5vw + 0.5rem, 3.6rem);
    --hero-lh: 1.18;
    --caret-thickness: 0.18em;
    --typing-min: 20ch;
    --typing-lane: 22ch;
    --clip-depth: clamp(15px, 5vw, 39px);
}


/* NAVIGATION ------------------------------------*/

.mw-header{
  background-color:#40e6dd;
  color:#ffffff;
  padding: 20px 0 10px;
  overflow: visible;
}

.header-title{
  gap:25px;
  margin: 0 0 20px 0;
}

.mw-name{
  color:#ffffff;
  font-family:"Oswald", Arial, Helvetica, sans-serif;
  font-size:clamp(1.8rem, 3vw, 3rem);
  font-weight:400;
  letter-spacing:5px;
  line-height:1;
  margin:0;
  text-transform:uppercase;
}

.header-left  { 
  text-align:right; 
}

.header-right { 
  text-align:left; 
}

.mw-logo-header{
  width:80px;
  height:auto;
  display:block;
}

.navbar { 
    background: transparent; 
    margin-bottom: 0;
}

.mw-logo-brand { 
    height:34px; 
    width:auto; 
    display:block; 
}

.navbar-nav .nav-link {
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 15px 30px;
  background-color:#40e6dd;
  border: 0.5px solid #5b5b5b;
  color:#5b5b5b !important;
  text-transform:uppercase;
  font-size:1rem;
  font-weight:800;
  font-family:"Barlow Semi Condensed", Arial, Helvetica, sans-serif;
  text-decoration:none;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus{
  background-color:#5b5b5b;
  color:#ffffff !important;
  border-color:#5b5b5b;
  text-decoration:none;
}

.navbar-nav .nav-link.active{
  background-color:#5b5b5b;
  color:#ffffff !important;
  border-color:#5b5b5b;
}

.navbar-nav{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
}

.mw-dropdown {
  background-color: #2d2d2d;
  border: 0.5px solid #5b5b5b;
  padding: 0;
  min-width: 220px;
}

.mw-dropdown .dropdown-item {
  color: #5b5b5b;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 800;
  font-family: "Oswald", Arial, Helvetica, sans-serif;
  padding: 12px 16px;
  border-bottom: 0.5px solid #5b5b5b;
}

.mw-dropdown .dropdown-item:last-child {
  border-bottom: 0;
}

.mw-dropdown .dropdown-item:hover,
.mw-dropdown .dropdown-item:focus {
  background-color: #5b5b5b;
  color: #ffffff;
}

.navbar .dropdown-toggle::after {
  margin-left: .4rem;
  vertical-align: .1em;
  border-top-color: currentColor;
}

.navbar .dropdown-menu {
  margin-top: 0;
}

.portfolio-nav {
  background-color: #2d2d2d;
  color: #ffffff;
  border: 1px solid #2d2d2d;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.portfolio-nav:hover {
  background-color: #ffffff;
  color: #2d2d2d;
  border-color: #2d2d2d;
  text-decoration: none;
}

/* LANDING PAGE / HOME ------------------------------------*/

body.home {
    margin: 0;
    background-color: #40e6dd;
    font-family: "Oswald", Arial, Helvetica, sans-serif;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
}

.home .container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.home .mw-logo{
    width: clamp(6rem, 13vw + 2rem, 18rem);
    height: auto;
    display: block;
    margin-inline: auto;
}

.typewriter {
    font-size: var(--fs-hero);
    line-height: var(--hero-lh);
    font-family: "Oswald", Arial, Helvetica, sans-serif;
    font-weight: 200;
    margin: 0;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
    min-height: calc(2 * var(--hero-lh) * var(--fs-hero));
}

#typing {
    border-right: 0.08em solid currentColor;
    white-space: nowrap;
    overflow: hidden;
}

#typing.wt-400 {
    font-weight: 400;
}

#typing.wt-700 {
    font-weight: 700;
}

.home .row {
    justify-content: center;
    align-items: center;
    color: #ffffff;
}

.typing-lane{
    display:inline-flex;
    align-items:baseline;
    justify-content:flex-start;
    min-width:auto;
    max-width: 100%;
    margin-inline: auto;
}

#typing{
    border-right: 0.08em solid currentColor;
    white-space: nowrap;
    overflow: hidden;
    display:inline-block;
    text-align:left;
}

.hero-row > .col-md-auto {
  flex: none !important;
  max-width: 100% !important;
  width: 100% !important;
}

.hero-row {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 20px);
}

.hero-row .typewriter {
  text-align: center;
}

/* SCROLL ICON */ 

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #b0b0b0;
    font-family: "Oswald", Arial, Helvetica, sans-serif;
    font-weight: 300;
    letter-spacing: 0.05em;
    cursor: pointer;
    user-select: none;
    opacity: 0.85;
    transition: opacity 0.3s ease;
    z-index: 10;
    pointer-events: auto;
    text-decoration: none;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator:link,
.scroll-indicator:visited {
    text-decoration: none;
    color: #b0b0b0;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.scroll-indicator:hover,
.scroll-indicator:focus {
    text-decoration: none;
    color: #ffffff;
    opacity: 1;
}

.scroll-text {
    margin-bottom: 0.25rem;
    font-size: clamp(0.9rem, 1vw + 0.25rem, 1.2rem);
}

.scroll-arrow .arrow-down {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-left: 2px solid #b0b0b0;
    border-bottom: 2px solid #b0b0b0;
    transform: rotate(-45deg);
    animation: bounce 1.8s infinite;
}

/* KEYFRAME BOUCNE ANIMATION - GENERATED BY GOOGLE GEMINI ------------------------------------*/

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(-45deg);
    }
    40% {
        transform: translateY(6px) rotate(-45deg);
    }
    60% {
        transform: translateY(3px) rotate(-45deg);
    }
}

/* PAGE FADE TRANSITIONS - TWEAKED BY CHATGPT5 ------------------------------------*/
body.page-fade {
  opacity: 0;
  transition: opacity 0.6s ease;
  will-change: opacity;
}

body.page-fade.fade-in {
  opacity: 1;
}

body.page-fade.fade-out {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  body.page-fade,
  body.page-fade.fade-in,
  body.page-fade.fade-out {
    transition: none;
  }
}

/* HEADER ------------------------------------*/

.mw-header{
  background-color:#2d2d2d;
  font-family:"Oswald", Arial, Helvetica, sans-serif;
  color:#ffffff;
}

.header-title{
  gap:25px;
  margin: 0 0 20px 0;
}

.mw-name{
  color:#ffffff;
  font-family:"Oswald", Arial, Helvetica, sans-serif;
  font-size:clamp(1.8rem, 3vw, 3rem);
  font-weight:400;
  letter-spacing:5px;
  line-height:1;
  margin:0;
  text-transform:uppercase;
}

.header-left  { 
    text-align:right; 
}

.header-right { 
    text-align:left;
}

.header-center{
    flex-shrink:0;
}

.mw-logo-header{
    width:80px;
    height:auto;
    display:block;
}

.mw-logo-brand {
    height:50px;
    width:auto; display:block;
}

.navbar.navbar-dark .navbar-nav .nav-link{
  color:#e8e8e8;
}

.navbar.navbar-dark .navbar-nav .nav-link:hover,
.navbar.navbar-dark .navbar-nav .nav-link:focus{
  color:#ffffff;
}

@media (min-width: 992px){
  .navbar .navbar-collapse{ 
    justify-content:center !important; 
}
}

@media (max-width: 575.98px){
  .navbar .nav-link{ 
    padding-top:.5rem; 
    padding-bottom:.5rem; 
}
}


/* WHO AM I? - ABOUT ME ------------------------------------*/

    .about{
        background-color: #2d2d2d;
        font-family: "Oswald", Arial, Helvetica, sans-serif;
    }

    .hero{
        -webkit-mask-image: linear-gradient(black, transparent);
        mask-image: linear-gradient(black, transparent);
        min-width: 40vh;
        max-width: 80vh;
    }

    .about h2{
      font-size: 7em;
      line-height: 1;
      font-weight: 700;
      padding: 0;
      margin: 0;
      color: #fff;
      white-space: nowrap;
      overflow: hidden;
    }

    /* hr{
        display: inline-block;
        width: 450px;
    } */

    .about .who a{
        color: #2d2d2d;
    }

    .about .who a:hover{
        color: #5701ba;
    }

    .white-section{
      background:#fff;
      padding-top: var(--clip-depth);
      position: relative;
      z-index: 1;
    }

    .who-wrapper .hero{
      width: min(38vw, 520px);
      height: auto;
    }

    .who-text { 
      font-size: clamp(0.5rem, 1vw + 0.9rem, 1.25rem); 
      /* line-height: 1.6;  */
    }

/* RESUME ------------------------------------*/

    .resume{
        background-color: #2d2d2d;
        font-family: "Oswald", Arial, Helvetica, sans-serif;
        display: flex;
        flex-direction: column;
        min-height: 100vh;
    }

    .download-container{
        margin: 20px auto;
        display: flex;
        flex-direction: row;
        gap: 10px
    }

    /* PROFILE STYLES */

    .profile {
        background: #fff;
        padding: 0;
        margin: 0 auto 0 auto;
        border: solid 2px #505050;
        border-radius: 12px 12px 0 0;
    }

    .profile-reference {
        background: #fff;
        padding: 0;
        margin: 0 auto 0 auto;
        border: solid 2px #505050;
        border-radius: 0 !important;
    }

    .profile h2{
        text-align: center;
        padding: 5px;
    }

    .profile > p{
        margin: 0;
        padding: 20px;
    }

    body.resume .page-title {
        background-color: #2d2d2d;
        margin-bottom: calc(-0.7* var(--clip-depth));
        padding: 0;
        position: relative;
        z-index: 0;
        }

    body.resume .page-title h2,
    body.resume .page-title .title-text {
        color: #fff;
        font-family: "Oswald", Arial, Helvetica, sans-serif;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .02em;
        line-height: 1;
        margin: 0;
        padding: clamp(6px, 1.2vw, 14px) 0;
        font-size: clamp(2.4rem, 8vw, 7rem);
      }

    /* TITLE STYLES */

    section h2{
        background-color: #2d2d2d;
        color: #fff;
        margin: 0;
        padding: 5px 5px 5px 10px;
        border-radius: 10px 10px 0 0;
    }

    section h3{
        color: #fff;
        margin: 0;
        padding: 5px 5px 5px 10px;
        font-weight: 500;
    }

    section h4{
        color: #fff;
        line-height: 0.7;
        margin: 0;
        padding: 0 0 10px 10px;
        font-weight: 300;
    }

    section h5{
        color: #fff;
        margin: 0;
        padding: 5px 10px;
        font-size: 1em;
        font-weight: 700;
    }

    .work-sub-title,
    .work-date {
      background: #505050;
    }

    .work-sub-title-desc{
      background: #fff;
    }

    .work-sub-title-desc h4{
        color:#2d2d2d; 
        line-height: 1;
    }


    .logo-tile {
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .logo-img {
      width: 80%;
      height: auto;
      object-fit: contain;
      opacity: .9;
      transition: transform .2s ease, opacity .2s ease;
    }

    .logo-tile:hover .logo-img {
      transform: scale(1.04);
      opacity: 1;
    }

    .proficiency-logos {
      display: flex;
      flex-wrap: wrap;
      align-content: center;
      height: 100%;
    }

    .proficiency-logos-wrapper {
      display: none;
    }

    .logo-tile:hover .logo-img {
      transform: scale(1.04);
      opacity: 1;
    }

    /* EMPLOYMENT - JOB STYLES */

    .employment{
        border: solid 2px #505050;
        border-radius: 12px 12px 0 0;
        display: block;
        overflow: hidden;
        background:#fff;
    }

    .job{
        display: grid;
        grid-template-columns: minmax(0,1fr);
        grid-template-areas: 
        "title date" 
        "body body";
        border-top: 2px solid #505050; 
    }

    .job:first-of-type {
        border-top: none; 
    }

    .work-item{
        grid-area: body;
        padding: 20px;
        padding-right: 45px;
    }

    .work-sub-title{
        grid-area: title;
    }

    .work-date{
        grid-area: date;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .work-date h5, .skills-date h5{
        height: 100%;
        text-align: center;
        display: inline-block;
    }

    /* SKILLS STYLES */

    .skills{
        border: 2px solid #505050;
        border-radius: 12px 12px 0 0;
        background-color: #fff;
        overflow: hidden;
    }

    .skills-container{
        display: grid;
        grid-template-columns: 1fr max-content;
        grid-auto-rows: auto;
        grid-column-gap: 0;
    }

    .skills-container .skills-title h2{
        border-radius: 10px 10px 0 0; 
    }

    .skills-container:first-child{ 
        border-top: none; 
    }

    .skills-title{ 
        grid-column: 1 / -1; 
    }

    .skills-sub-title{ 
        grid-column: 1
    }

    .skills-date{
        /* grid-column: 2; */
        display: flex; 
        align-items: center; 
        justify-content: center;
    }

    .skills-body{
        grid-column: 1 / -1;
        padding: 20px;
    }   

    .skills-body ul{ 
        margin: 0; padding-left: 20px; 
    }

    /* REFERENCES STYLES */

    .reference{
        border: 2px solid #505050;
        border-radius: 12px 12px 0 0;
        background: #fff;
        overflow: hidden;
        padding: 0;
    }

    .reference > h2{ 
        border-radius: 10px 10px 0 0; 
    }

    .ref{
        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas:
            "name"
            "title"
            "contact";
        border-top: 2px solid #505050;
    }

    .ref:first-of-type{
        border-top: none;
    }

    .ref-name{
        grid-area: name;
    }

    .ref-title{ 
        grid-area: title; 
    }

    .ref-contact{ 
        grid-area: contact; 
        padding-bottom: 10px; 
    }

    .ref-contact ul{
        list-style-type: none;
        margin-bottom: 6px;
        padding-bottom: 0;
    }

    .ref-title h4{
        font-weight: 400;
    }

    .ref-title h5{
        background-color: #505050;
        color: #fff;
        line-height: 0.7;
        margin: 0;
        /* padding: 0 0 10px 10px; */
        font-weight: 300;
        font-size: 0.8em;
    }

    .job,
    .ref {
      border-collapse: collapse;
      background-clip: padding-box;
    }

    /* CLIENT LIST */

    .clients{
        border: 2px solid #505050;
        border-radius: 12px 12px 0 0;
        background: #fff;
        overflow: hidden;
        padding: 0;
    }

    .clients:first-of-type{
        border-top: none;
    }

    .clients > h2{ 
        border-radius: 10px 10px 0 0; 
    }

    .clients-logos{
        border: 2px solid #505050;
        border-radius: 12px 12px 0 0;
    }



            /* MARQUEE ANIMATION DEVELOPED FROM YOUTUBE TUTORIAL - USER OPTIMISTIC WEB: https://www.youtube.com/watch?v=bd9MLIb3DCg AND THE ADMIN BAR: https://www.youtube.com/watch?v=LR2AediwJbI&t=72s */ 

            .client-list{
            display: flex;
            overflow: hidden;
            user-select: none;
            mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
            }

            .clients-marquee{
                display: flex;
                flex-direction: row;
                flex-shrink: 0;
                min-width: 100%;
            }

            .client-marquee ul{
                list-style: none;
                display: flex;
                justify-content: space-between;
                align-items: center;
                animation: scroll 60s linear infinite;
                gap: 50px;
            }

            .client-list img{
                height: clamp(200px, 15vw, 380px);
                width: auto;
                display: block;
            }

            .client-list:hover ul{
                animation-play-state: paused;
            }

            @keyframes scroll {
                to{
                    transform: translateX(-100%);
                }
                
            }

            /* END ANIMATION*/

    .client-list ul li::marker{
        content: none;
        padding: 0;
    }
    

.download-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.download-container .nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 15px 30px;
  background-color: #2d2d2d;
  border: 0.5px solid #5b5b5b;
  color: #5b5b5b !important;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 800;
  font-family: "Barlow Semi Condensed", Arial, Helvetica, sans-serif;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.download-container .nav-link:hover,
.download-container .nav-link:focus,
.download-container .nav-link:active {
  background-color: #5b5b5b;
  color: #ffffff !important;
  border-color: #5b5b5b;
  text-decoration: none;
}


/* PORTFOLIO ------------------------------------*/

.card-img {
  filter: brightness(0.6);
}

.text-shadow {
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.65);
}

.portfolio-title-card{
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.portfolio-title-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

      /* PORTFOLIO MODAL - Start: https://startbootstrap.com/theme/freelancer */

      .portfolio-modal .modal-content {
        background-color: #111111 !important;
        color: #fff;
        border: solid #5b5b5b;
        }

      .divider-custom {
        margin: 1.25rem 0 1.5rem;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        }

        .divider-custom-left {
        margin: 1.25rem 0 1.5rem;
        width: 100%;
        display: flex;
        justify-content: start;
        align-items: start;
        }
        
        .divider-custom .divider-custom-line {
        width: 100%;
        max-width: 7rem;
        height: 0.25rem;
        background-color:#fff;
        }
        
        .divider-custom .divider-custom-line:first-child {
        margin-right: 1rem;
        }
        
        .divider-custom .divider-custom-line:last-child {
        margin-left: 1rem;
        }
        
        .divider-custom.divider-light .divider-custom-line {
        background-color: #fff;
        }
        
        .divider-custom.divider-light .divider-custom-icon {
        color: #fff;
        }
        
        .portfolio .portfolio-item {
        cursor: pointer;
        position: relative;
        display: block;
        max-width: 25rem;
        overflow: hidden;
        }
        
        .portfolio .portfolio-item .portfolio-item-caption {
        position: absolute;
        top: 0;
        left: 0;
        transition: all 0.2s ease-in-out;
        opacity: 0;
        background-color: #2d2d2d;
        }
        
        .portfolio .portfolio-item .portfolio-item-caption:hover {
        opacity: 1;
        }
        
        .portfolio .portfolio-item .portfolio-item-caption .portfolio-item-caption-content {
        font-size: 1.5rem;
        }
        
        .portfolio-modal .btn-close {
        color: #b0b0b0 !important;
        font-size: 2rem;
        padding: 1rem;
        }
        
        .portfolio-modal .portfolio-modal-title {
        font-size: 2.25rem;
        line-height: 2rem;
        color: #b0b0b0;
        }
        
        @media (min-width: 992px) {
        .portfolio-modal .portfolio-modal-title {
        font-size: 3rem;
        line-height: 2.5rem;
        }
        }
        
        .btn-primary {
          --bs-btn-color: #fff;
          --bs-btn-bg: #2d2d2d;
          --bs-btn-border-color: #2d2d2d;
          --bs-btn-hover-color: #fff;
          --bs-btn-hover-bg: #2d2d2d;
          --bs-btn-hover-border-color: #2d2d2d;
          --bs-btn-focus-shadow-rgb: 60, 198, 171;
          --bs-btn-active-color: #fff;
          --bs-btn-active-bg: #2d2d2d;
          --bs-btn-active-border-color: #2d2d2d;
          --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
          --bs-btn-disabled-color: #fff;
          --bs-btn-disabled-bg: #2d2d2d;
          --bs-btn-disabled-border-color: #2d2d2d;
        }
        
        .portfolio .portfolio-item .portfolio-item-caption-content h3 {
        text-shadow: 0 2px 8px rgba(0,0,0,.7);
        }
      /* PORTFOLIO MODAL - End */

/* FULL FEATURED IMAGE GALLERY - Start - Sourced from: https://www.cssscript.com/demo/image-viewer-spotlight/ */

img.viewer {
  width: 100%;
  max-width: none;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.spotlight-group .ratio:hover .img-cover {
  transform: scale(1.03);
}

.spotlight-group .ratio {
  border-radius: .5rem;
  overflow: hidden;
}

/* FULL FEATURED IMAGE GALLERY - End */

/* CONTACT ------------------------------------*/

  .form-slab.form-control{
    background:#f0f0f0;
    border:0;
    border-radius:0;
    height:48px;
  }
  .form-slab.form-control::placeholder{
    color:#2d2d2d;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.02em;
  }

  textarea.form-slab{ 
    height:auto; 
    min-height:260px;
    resize:vertical; }

  .form-slab.form-control:focus{
    background:#c9c9c9;
    box-shadow:none;
    outline:0;
  }

/* FOOTER ------------------------------------------*/


.mw-footer {
    background-color: #2d2d2d;
    color: #fff;
    margin-top: auto;
}

.mw-footer a {
    color: #fff;
    text-decoration: none;
}

.mw-footer a:hover {
    opacity: .75;
    transition: opacity .2s ease;
}

.footer-icons img {
    width: 36px;
    height: 36px;
    display: block;
}

@media (min-width: 768px) {
  .footer-icons img {
    width: 40px;
    height: 40px;
  }
}

body.about {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

/* MEDIA QUERIES ------------------------------------*/

/* // Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {

  /* NAVBAR -------------------------- */
  .navbar-brand { margin-bottom: 6px; }

  .navbar-collapse,
  .navbar-collapse.collapsing,
  .navbar-collapse.show {
    background-color: #2d2d2d;
  }

  .navbar-collapse {
    padding: 1rem 0;
    margin-bottom: .25rem;
    overflow: visible;
  }

  .navbar-nav .nav-link {
    width: 100%;
    text-align: center;
    padding: 12px 0;
    background-color: transparent;
    border: none;
    color: #e8e8e8 !important;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link:focus {
    background-color: #5b5b5b;
    color: #ffffff !important;
  }

  .mw-header .navbar { 
    padding-top: .35rem; 
    padding-bottom: .5rem; 
    margin-bottom: 16px;
  }

  .mw-header .navbar .container {
    display:flex;
    align-items:center;
    min-height:56px;
    overflow:visible;
    padding-left:16px;
    padding-right:16px;
  }

  .navbar-brand,
  .navbar-toggler {
    height:50px;
    display:flex;
    align-items:center;
  }

  .navbar-toggler {
    margin-left:auto;
    padding:.45rem .55rem;
    border-radius:.75rem;
    width:44px;
    justify-content:center;
  }

  .about h2 {
    font-size: 3.4em;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
  }

  body.resume 
  .page-title {
    margin-bottom: calc(-0.38 * var(--clip-depth));
  }

  .hero{
    min-width: 20vh;
    max-width: 35vh;
  }

}

/* // Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {

  .navbar-collapse,
  .navbar-collapse.collapsing,
  .navbar-collapse.show { background-color:#2d2d2d; }

  .navbar-collapse { padding:1rem 0; margin-bottom:.25rem; overflow:visible; }

  .navbar-nav .nav-link {
    width:100%;
    text-align:center;
    padding:12px 0;
    background-color:transparent;
    border:none;
    color:#e8e8e8 !important;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link:focus {
    background-color: #5b5b5b;
    color:#ffffff !important;
  }

  .mw-header .navbar { 
    padding-top:.35rem; 
    padding-bottom:.5rem; 
    margin-bottom:16px; 
  }

  .mw-header .navbar .container { 
    display:flex; 
    align-items:center; 
    min-height:56px; 
    overflow:visible; 
    padding-left:16px; 
    padding-right:16px; 
  }

  .navbar-brand, .navbar-toggler { 
    height:50px; 
    display:flex; 
    align-items:center; 
  }

  .navbar-toggler { 
    margin-left:auto; 
    padding:.45rem .55rem; 
    border-radius:.75rem; 
    width:44px; 
    justify-content:center; 
  }

  .about h2 {
    font-size: 4.25em;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
  }

  body.resume .page-title {
    margin-bottom: calc(-0.4 * var(--clip-depth));
  }

  .hero{
    min-width: 30vh;
    max-width: 40vh;
  }

}

/* // Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {

  .navbar-collapse,
  .navbar-collapse.collapsing,
  .navbar-collapse.show { background-color:#2d2d2d; }

  .navbar-collapse { padding:1rem 0; margin-bottom:.25rem; overflow:visible; }

  .navbar-nav .nav-link {
    width:100%;
    text-align:center;
    padding:12px 0;
    background-color:transparent;
    border:none;
    color:#e8e8e8 !important;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link:focus {
    background-color:#5b5b5b;
    color:#ffffff !important;
  }

  .mw-header .navbar { 
    padding-top:.35rem; 
    padding-bottom:.5rem; 
    margin-bottom:16px; 
  }

  .mw-header .navbar .container { 
    display:flex; 
    align-items:center; 
    min-height:56px; 
    overflow:visible; 
    padding-left:16px; 
    padding-right:16px; 
  }

  .navbar-brand, .navbar-toggler { 
    height:50px;
    display:flex; 
    align-items:center; 
  }

  .navbar-toggler { 
    margin-left:auto; 
    padding:.45rem .55rem; 
    border-radius:.75rem; 
    width:44px; 
    justify-content:center; 
  }

  .about h2 {
    font-size: 5.5em;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
  }

  body.resume .page-title {
    margin-bottom: calc(-0.5 * var(--clip-depth));
  }

  .hero{
    min-width: 35vh;
    max-width: 50vh;
  }

  .proficiency-logos-wrapper {
    display: block;
  }
  .proficiency-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    height: 100%;
  }
  .proficiency-logos .col-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }

}

/* // Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {

  .navbar-nav {
    display:grid;
    grid-auto-flow:column;
    grid-auto-columns:1fr;
    gap:10px;
    justify-content:center;
    width:100%;
    max-width: 1200px;
  }

  .navbar .navbar-collapse { 
    justify-content:center !important; 
  }

  .about h2 {
    font-size: 7em;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
  }

  body.resume .page-title {
    margin-bottom: calc(-0.6 * var(--clip-depth));
  }

  .hero{
    min-width: 40vh;
    max-width: 50vh;
  }

  .proficiency-logos-wrapper {
    display: block;
  }
  .proficiency-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    height: 100%;
  }
  .proficiency-logos .col-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }

}

/* // Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) and (max-width: 1399.98px) {

  .navbar-nav {
    display:grid;
    grid-auto-flow:column;
    grid-auto-columns:1fr;
    gap:10px;
    justify-content:center;
    width:100%;
    max-width: 1300px;
  }

  .navbar .navbar-collapse { justify-content:center !important; }

  .about h2 {
    font-size: 7em;
  }

    body.resume .page-title {
    margin-bottom: calc(-0.7 * var(--clip-depth));
  }

  .proficiency-logos-wrapper {
    display: block;
    width: 100%;
    /* margin-top: 2rem; */
    margin-left: 1rem;
  }
  .proficiency-logos {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: center;
    gap: 1.5rem;
  }
  .proficiency-logos .col-xl-auto {
    flex: 0 1 auto;
    width: auto;
    max-width: none;
  }
  .logo-tile {
    width: 90px;
    height: 90px;
  }
}
  .logo-tile {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .logo-img {
    width: 70%;
    height: auto;
    object-fit: contain;
    opacity: .9;
    transition: transform .2s ease, opacity .2s ease;
  }

  .logo-tile:hover .logo-img {
    transform: scale(1.04);
    opacity: 1;

  }

/* // Extra Extra large devices (1400px and up) */
@media (min-width: 1400px) {

  .navbar-nav {
    display:grid;
    grid-auto-flow:column;
    grid-auto-columns:1fr;
    gap:10px;
    justify-content:center;
    width:100%;
    max-width: 1400px;
  }

  .navbar .navbar-collapse { justify-content:center !important; }

  .about h2 {
    font-size: 7em;
  }

    body.resume .page-title {
    margin-bottom: calc(-0.8 * var(--clip-depth));
  }

  .who { 
  display: flow-root;
  }

  .proficiency-logos-wrapper {
    display: block;
    width: 100%;
    /* margin-top: 2rem; */
  }
  .proficiency-logos {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: center;
    gap: 1.5rem;
  }
  .proficiency-logos .col-xl-auto {
    flex: 0 1 auto;
    width: auto;
    max-width: none;
  }
  .logo-tile {
    width: 100px;
    height: 100px;
  }
}

  .logo-tile {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .logo-img {
    width: 80%;
    height: auto;
    object-fit: contain;
    opacity: .9;
    transition: transform .2s ease, opacity .2s ease;
  }

  .logo-tile:hover .logo-img {
    transform: scale(1.04);
    opacity: 1;

  }
  