* {
  box-sizing: border-box;
}

html {
  letter-spacing: 0.05rem;
  scroll-behavior: smooth;

  /* website Layout */
  --site-layout: 90rem;
  --layout-w-480: 30rem;
  --layout-w-720: 45rem;
  --layout-w-960: 60rem;
  --layout-w-1440: 90rem;
  --layout-w-1920: 120rem;

  /* website color scheme */
  --font-color: rgba(255, 255, 255, 1);
  --font-color-alt: rgba(0, 0, 0, 1);
  --color-white: rgba(255, 255, 255, 1);
  --website-color-1: rgb(32, 32, 33);
  --website-color-2: rgb(55, 72, 69);
  --website-color-3: rgb(183, 190, 200);
  --website-color-4: rgb(255, 255, 255);
  --website-color-5: rgb(255, 221, 85);

  --color-gray-50: rgb(242, 242, 242);
  --color-gray-100: rgb(141, 139, 137);
  --color-gray-300: rgb(78, 78, 78);
  --color-gray-400: rgb(70, 65, 60);
  --color-gray-500: rgb(37, 34, 31);
  --color-gray-600: rgb(32, 29, 26);
  --color-gray-700: rgb(0, 0, 0);

  /* error & success */
  --color-error-100: rgb(255, 192, 180);
  --color-error-500: rgb(199, 51, 15);
  --color-error-700: rgb(170, 54, 26);

  --color-success-100: rgb(145, 255, 218);
  --color-success-500: rgb(0, 119, 79);

  /* opacity */
  --opacity-3: 0.3;
  --opacity-5: 0.5;
  --opacity-7: 0.7;
  --opacity-9: 0.9;
  --opacity-1: 1;

  /* space */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 4rem;
  --space-12: 5.5rem;

  /* border radius */
  --border-radius-small: 4px;
  --border-radius-medium: 6px;
  --border-radius-large: 10px;
  --border-radius-50: 50px;

  /* box shadow */
  --shadow-medium: 0 2px 8px rgba(0, 0, 0, 0.2);

  --clr-neutral-100: hsl(0, 0%, 100%);
  --clr-primary-100: hsl(240, 2%, 50%);
  --clr-primary-400: hsl(240, 2%, 24%);
  --clr-primary-800: hsl(240, 4%, 18%);
  --clr-primary-900: hsl(240, 2%, 13%);
}

/* Webkit (Chrome, Edge, Safari) */
::-webkit-scrollbar {
  width: 10px;
  /* Scrollbar width */
  height: 10px;
  /* For horizontal scroll */
}

/* Track */
::-webkit-scrollbar-track {
  background: #000;
  /* Light gray background */
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #000;
  /* Darker scrollbar */
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #000;
}

/* Firefox */
* {
  scrollbar-width: thin;
  /* "thin" for a smaller scrollbar */
  scrollbar-color: var(--website-color-5) var(--website-color-1);
  /* Thumb color | Track color */
}

.open-sans {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.merriweather {
  font-family: "Merriweather", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

body {
  font-family: "Open Sans", sans-serif;
  background-color: var(--website-color-1);
  color: var(--font-color);
  margin: 0;
  padding: 0;
}

main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

.flexbox-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: var(--space-4);
}

.flexbox-row ul.left-col,
.flexbox-row ul.right-col {
  width: var(--layout-w-720);
}

.flexbox-row ul.middle-col {
  width: 100px;
  /* middle section*/
}

.flexbox-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--space-4);
}

.mobile {
  display: none;
}

section {
  width: 100%;
  max-width: var(--site-layout);
  height: 100%;
  margin: 0 auto;
  padding: 0;
}

section#bg {
  width: 100%;
  max-width: var(--site-layout);
  height: 100%;
  background-image: url(/imgs/assets/bg.svg);
  background-color: var(--website-color-1);
  background-repeat: no-repeat;
  background-position: center 0;
  background-size: contain;
  margin: 0 auto;
  padding: 0;
}

.sections {
  /* margin-top: 182.77px; */
  height: 100%;
  max-height: 100%;
  background-color: transparent;
  padding: 0 var(--space-4) var(--space-12);
}

.sections ul ul .flexbox-row {
  justify-content: flex-start;
  align-items: center;
  gap: var(--space-6);
  margin-bottom: var(--space-4);
}

/* .sections ul ul li {
  padding-bottom: var(--space-6);
} */

.sections ul.credentials,
.sections ul.detailed-info {
  margin: var(--space-4) 0;
}

.sections ul.credentials .flexbox-row,
.sections ul.detailed-info .flexbox-row {
  justify-content: flex-start;
  padding-top: var(--space-2);
}

.sections ul.credentials p.date,
.sections ul.detailed-info li.date {
  color: var(--font-color);
  font-weight: 700;
  /* font-size: calc(0.67rem + 0.15vw);  */
}

.sections ul.credentials p.short-info,
.sections ul.detailed-info li.short-info {
  color: var(--color-gray-50);
}

.anima li img:nth-child(1) {
  animation-delay: 0s;
}

.anima li img:nth-child(2) {
  animation-delay: 0.2s;
}

.anima li img:nth-child(3) {
  animation-delay: 0.4s;
}

.anima li img:nth-child(4) {
  animation-delay: 0.6s;
}

.anima li img:nth-child(5) {
  animation-delay: 0.8s;
}

.anima li img:nth-child(6) {
  animation-delay: 1s;
}

.anima li img:nth-child(7) {
  animation-delay: 1.2s;
}

.anima li img:nth-child(8) {
  animation-delay: 1.4s;
}

.anima li img:nth-child(9) {
  animation-delay: 1.6s;
}

.anima li img:nth-child(10) {
  animation-delay: 1.8s;
}

.anima li img {
  opacity: 0;
  transform: translateY(10px);
  animation: moveup 0.8s linear forwards;
}

@keyframes moveup {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

.anima-wiggle {
  transform: translateX(5px);
  transform: translateY(3px);
  animation: wiggle 0.8s linear;
}

@keyframes wiggle {
  0% {
    transform: translate(2px, -2px) rotate(0deg);
  }

  10% {
    transform: translate(-2px, 2px) rotate(-2deg);
  }

  20% {
    transform: translate(3px, -3px) rotate(2deg);
  }

  30% {
    transform: translate(-3px, 3px) rotate(-1deg);
  }

  40% {
    transform: translate(4px, -4px) rotate(2deg);
  }

  50% {
    transform: translate(-4px, 4px) rotate(-2deg);
  }

  60% {
    transform: translate(3px, -3px) rotate(1deg);
  }

  70% {
    transform: translate(-3px, 3px) rotate(-1deg);
  }

  80% {
    transform: translate(2px, -2px) rotate(0deg);
  }

  90% {
    transform: translate(-2px, 2px) rotate(1deg);
  }

  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
}

.center-nav {
  width: 3rem;
  height: 3rem;
  border: 2px solid rgba(255, 221, 85, 0);
  background-color: rgba(255, 221, 85, 0);
  border-radius: 50%;
  text-align: center;
  max-width: auto;
  margin: 0 auto;
  padding: var(--space-2);
}

.sm-cir {
  margin-right: var(--space-2);
  padding: 0.15rem var(--space-4);
  border-radius: 10rem;
  background-color: var(--website-color-5);
  color: var(--font-color-alt);
}

.pulse {
  opacity: 1;
  border: 2px solid rgba(255, 221, 85, 0);
  padding: var(--space-1);
  background-color: transparent;
  animation: pulse 0.5s forwards;
}

@keyframes pulse {
  0% {
    transform: scale(0);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
    border: 2px solid var(--website-color-5);
    background-color: rgba(255, 221, 85, 1);
    opacity: 1;
  }
}

.portfolio-section li a {
  display: flex;
  width: auto;
  max-width: var(--layout-w-720);
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: var(--space-4);
}
.portfolio-section li a img {
  width: auto;
  max-width: 300px;
  height: 100%;
  border: 1px solid rgba(183, 190, 200, 0.4);
  transition: all 0.4s ease-in-out;
}

.portfolio-section li a img:hover {
  box-shadow: 0px 0px 22px -15px rgba(255, 255, 255, 0.98);
  -webkit-box-shadow: 0px 0px 22px -15px rgba(255, 255, 255, 0.98);
  -moz-box-shadow: 0px 0px 22px -15px rgba(255, 255, 255, 0.98);
}

.project-layout {
  column-count: 4;
  /* Adjust for more or fewer columns */
  column-gap: var(--space-4);
}

.project-layout img,
.project-layout video {
  width: 100%;
  break-inside: avoid;
  margin-bottom: var(--space-4);
  /* Even spacing */
}

.project-layout div,
.portfolio-img div,
.skeleton-item div {
  position: relative;
}

.project-layout a span {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(32, 32, 33, 0.9);
  z-index: 999;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}

.img-title {
  font-family: "Merriweather", serif;
  font-family: inherit;
  text-transform: uppercase;
  font-size: calc(0.825rem + 0.2vw);
  color: var(--font-color);
  color: var(--website-color-5);
  margin: 0;
  padding: 0;
  letter-spacing: 2px;
}

.project-layout a span .img-title,
.portfolio-img a span .img-title {
  text-transform: none;
  text-align: center;
  padding: var(--space-2) var(--space-4);
}

.project-layout a:hover > span {
  opacity: 1;
}

.portfolio-img a span {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(32, 32, 33, 0.9);
  z-index: 999;
  opacity: 0.8;
  transition: all 0.2s ease-in-out;
}

.portfolio-img a:hover > span {
  opacity: 0;
}

.skeleton-item div {
  margin-bottom: var(--space-4);
}
.skeleton-item a span,
.skeleton-item li div {
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 100%;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite ease-in-out;
  z-index: 999;
  opacity: 1;
}

.skeleton-item span .img-title {
  text-transform: none;
  color: transparent;
}
/* Keyframe animation for skeleton effect */
@keyframes skeleton-loading {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.modalFullsize {
  display: none;
  position: fixed;
  z-index: 9998;
  top: 0;
  right: 0;
  bottom: 100%;
  padding: 1rem; /* Adjusted to account for the header height */
  height: 100%;
  width: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.modalFullsize-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* perfect center */
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90vh;
  animation: fadeIn 0.5s ease;
  z-index: 9999;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.close {
  position: absolute;
  top: 0;
  right: 1rem;
  bottom: 1rem;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
}

@media (max-width: 768px) {
  
  .modalFullsize-content {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    padding: 3rem 1rem 1rem;
    overflow-y: scroll; /* or scroll */
  }
}

/* 
.infini-h-scroller {
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  padding: 0;
}

.infini-h-scroller__inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  padding-block: var(--space-4);
}

.infini-h-scroller__inner img {
    width: auto;
    max-width: 100px;
    height: 100%;
}

.infini-h-scroller[data-animated="true"] {
  overflow: hidden;
  -webkit-mask: linear-gradient(
    90deg,
    transparent,
    white 20%,
    white 80%,
    transparent
  );
  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.infini-h-scroller[data-animated="true"] .infini-h-scroller__inner {
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll var(--_animation-duration, 40s)
    var(--_animation-direction, forwards) linear infinite;
}

.infini-h-scroller[data-direction="right"] {
  --_animation-direction: reverse;
}

.infini-h-scroller[data-direction="left"] {
  --_animation-direction: forwards;
}

.infini-h-scroller[data-speed="fast"] {
  --_animation-duration: 20s;
}

.infini-h-scroller[data-speed="slow"] {
  --_animation-duration: 60s;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
} */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Merriweather", serif;
  font-family: inherit;
  text-transform: uppercase;
  color: var(--website-color-5);
  margin: 0;
  padding: 0;
  letter-spacing: 2px;
}

h2,
h3 {
  color: var(--font-color);
}

/*   
    font-size: calc(2.25rem + 1vw); 
    font-size: calc(1.5rem + 0.75vw);
    font-size: calc(1.125rem + 0.5vw);
    font-size: calc(1rem + 0.25vw);
    font-size: calc(0.825rem + 0.2vw);
    font-size: calc(0.67rem + 0.15vw); 
  */

h1 {
  font-size: calc(1.125rem + 0.5vw);
}

h2 {
  font-size: calc(1rem + 0.25vw);
}

h3 {
  font-size: calc(0.825rem + 0.2vw);
  text-decoration: underline;
}

h4 {
  font-size: calc(0.67rem + 0.15vw);
}

h5 {
  font-size: calc(0.25rem + 0.1vw);
}

span.capitilized {
  text-transform: capitalize;
}

span.website-color-1 {
  color: var(--website-color-1);
}

span.website-color-2 {
  color: var(--website-color-2);
}

span.website-color-3 {
  color: var(--website-color-3);
}

span.website-color-4 {
  color: var(--website-color-4);
}

span.website-color-5 {
  color: var(--website-color-5);
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  font-family: inherit;
  font-size: calc(0.825rem + 0.2vw);
  text-decoration: none;
  cursor: pointer;
  color: var(--website-color-5);
  margin: 0;
  padding: 0;
  transition-property: color;
  transition-duration: 0.2s;
}

a:hover,
a:active {
  color: var(--font-color);
}

p {
  font-family: inherit;
  font-size: calc(0.825rem + 0.2vw);
  line-height: var(--space-6);
  color: var(--color-gray-50);
  margin: 0;
  padding: 0;
}

blockquote {
  font-family: inherit;
  font-optical-sizing: auto;
  color: var(--font-color);
  font-weight: 300;
  font-style: italic;
  margin: 0;
  padding: 0;
}

.spacer {
  display: block;
  width: 100%;
  height: var(--space-2);
}

.space-1 {
  height: var(--space-1);
}

.space-3 {
  height: var(--space-3);
}

.space-4 {
  height: var(--space-4);
}

.space-6 {
  height: var(--space-6);
}

.space-8 {
  height: var(--space-8);
}

.space-10 {
  height: var(--space-10);
}

.space-12 {
  height: var(--space-12);
}

.space-18 {
  height: 8rem;
}

.space-20 {
  height: 9rem;
}

.space-24 {
  height: 11rem;
}

.space-36 {
  height: 16.5rem;
}

.space-48 {
  height: 22rem;
}

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

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

.float-right {
  display: block;
  float: right;
  text-align: right;
  clear: both;
}

.float-left {
  display: block;
  float: left;
  text-align: left;
  clear: both;
}

.center {
  width: 100%;
  max-width: auto;
  margin: 0 auto;
  text-align: center;
}

.btn {
  cursor: pointer;
  font: inherit;
  font-size: calc(0.825rem + 0.2vw);
  display: inline-block;
  font-weight: 700;
  padding: var(--space-2) var(--space-6);
  background-color: var(--website-color-5);
  color: var(--font-color-alt);
  border: 1px solid var(--website-color-1);
  border-radius: var(--border-radius-medium);
  transition-property: background-color;
  transition-duration: 0.2s;
}

.btn:hover,
.btn:active {
  color: var(--font-color-alt);
  background-color: var(--website-color-3);
}

.btn-alt {
  font-size: calc(0.825rem + 0.2vw);
  background-color: transparent;
  color: var(--font-color-alt);
  border: 3px solid var(--website-color-5);
  transition-property: background-color;
  transition-duration: 0.4s;
}

.btn-alt:hover,
.btn-alt:active {
  background-color: var(--website-color-5);
}

.showInput {
  display: block;
}

.hideInput {
  display: none;
}

.alert {
  border-radius: var(--border-radius-small);
  background-color: var(--color-error-100);
  color: var(--color-error-500) !important;
  padding: var(--space-4);
  font-weight: 700;
}

.success {
  border-radius: var(--border-radius-small);
  background-color: var(--color-success-100);
  color: var(--color-success-500) !important;
  padding: var(--space-4);
  font-weight: 700;
}

.alert h2,
.success h2 {
  font-size: 1rem;
  margin: var(--space-2) 0;
  text-transform: uppercase;
}

p.alert,
p.success {
  margin: var(--space-2) 0;
}

.badge {
  margin-left: var(--space-2);
  padding: 0.15rem var(--space-4);
  border-radius: 10rem;
  background-color: var(--website-color-5);
  color: var(--font-color);
}

hr {
  background-color: rgba(183, 190, 200, 0.1);
  border-bottom: none;
  border-left: none;
  border-right: none;
  border-top: none;
  height: 2px;
  margin: 0;
}

.hr-l-dashed {
  width: 100%;
  background-image: url(/imgs/assets/hr-l-dashed.svg);
  border-bottom: none;
  border-left: none;
  border-right: none;
  border-top: none;
  height: 4px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 0 center;
  opacity: 0.3;
  margin-top: var(--space-2);
}

.hr-r-dashed {
  width: 100%;
  background-image: url(/imgs/assets/hr-r-dashed.svg);
  border-bottom: none;
  border-left: none;
  border-right: none;
  border-top: none;
  height: 4px;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.3;
  margin-top: var(--space-2);
}

.error-page {
  text-align: center;
  width: var(--layout-w-720);
  background-color: rgba(32, 32, 33, 0.98);
  color: var(--font-color);
}

footer {
  width: 100%;
  max-width: var(--site-layout);
  height: 100%;
  margin: 0 auto;
}

#footer {
  width: 100%;
  background-color: var(--website-color-1);
  color: var(--font-color-alt);
  margin-top: auto;
  padding: var(--space-12) var(--space-4) var(--space-4);
}

#footer .flexbox-row {
  justify-content: center;
  align-items: top;
}

#footer .flexbox-col:first-child {
  padding-right: var(--space-12);
}

#footer #footer-socials.flexbox-row {
  gap: var(--space-2);
}

#footer p,
#footer a {
  color: var(--font-color);
}

#footer h3,
#footer h4 {
  color: var(--website-color-5);
}

#footer .icon-facebook-white {
  background-image: url(/imgs/icons/social/facebook-white.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px;
  width: 24px;
  height: 24px;
  background-color: transparent;
}

#footer .icon-instagram-white {
  background-image: url(/imgs/icons/social/instagram-white.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 25px;
  width: 24px;
  height: 24px;
  background-color: transparent;
}

#footer .icon-discord-white {
  background-image: url(/imgs/icons/social/discord-white.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
  width: 24px;
  height: 24px;
  background-color: transparent;
}

#footer .icon-whatsapp-white {
  background-image: url(/imgs/icons/social/whatsapp-white.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
  width: 24px;
  height: 24px;
  background-color: transparent;
}

#footer .icon-youtube-white {
  background-image: url(/imgs/icons/social/youtube-white.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
  width: 24px;
  height: 24px;
}

#footer .icon-x-twitter-white {
  background-image: url(/imgs/icons/social/x-twitter-white.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
  width: 24px;
  height: 24px;
  background-color: transparent;
}

@media (max-width: 48rem) {
  .project-layout {
    column-count: 2;
    column-gap: var(--space-4);
  }

  .project-layout > * {
    break-inside: avoid;
  }
}

@media (max-width: 27.5rem) {
  /* 768px */
  body {
    background-position: top right;
    background-size: contain;
  }

  img {
    width: 100%;
    max-width: 10rem;
    height: 100%;
  }

  #main-logo {
    position: relative;
    z-index: 9999;
  }

  .mobile {
    display: block;
  }

  section#bg {
    background-image: none;
  }

  .flexbox-row ul {
    width: 100%;
  }

  .sections {
    padding-bottom: 0;
  }

  .sections ul ul .flexbox-row,
  .sections .portfolio-section .flexbox-row {
    flex-direction: row;
    align-items: flex-start;
  }

  .sections ul ul li {
    padding-bottom: 0;
  }

  .sections ul ul li img,
  .sections .portfolio-section .flexbox-row li img {
    width: 100%;
    max-width: 2.5rem;
    height: 100%;
    margin-bottom: var(--space-4);
  }

  .sections ul.credentials p.date,
  .sections ul.detailed-info li.date p {
    width: 100%;
  }

  .flexbox-row ul.middle-col {
    visibility: hidden;
  }

  .flexbox-row ul.left-col,
  .flexbox-row ul.right-col,
  .flexbox-row ul.middle-col {
    width: 100%;
  }

  .sections ul.credentials .flexbox-row {
    gap: 0;
  }

  .portfolio-section li.flexbox-row {
    justify-content: flex-start;
  }

  .portfolio-section li a {
    /* flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: var(--space-2);
    overflow-y: auto; */
    padding: 0;
  }

  .portfolio-section li a img {
    width: auto;
    max-width: 100%;
    height: auto;
  }

  #mobile-portfolio.sections .flexbox-row {
    flex-direction: column-reverse;
    flex-wrap: wrap-reverse;
    align-items: flex-start;
  }

  .project-layout img,
  .project-layout video {
    width: auto;
    max-width: 100%;
    height: auto;
  }

  .project-layout {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    gap: var(--space-2);
    column-count: auto;
    /* Adjust for more or fewer columns */
    column-gap: var(--space-2);
    /* overflow-x: auto; */
  }

  #section-2 {
    height: 100%;
    max-height: 60rem;
    overflow-y: scroll;
  }

  .sections .flexbox-row,
  #section-2 .flexbox-row,
  .sections ul ul.credentials .flexbox-row {
    flex-direction: column;
    flex-wrap: wrap;
  }

  .sections ul ul.credentials .flexbox-row {
    align-items: flex-start;
  }

  #footer .flexbox-col:first-child {
    padding-right: 0;
  }

  #footer .flexbox-row {
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
  }

  #footer #footer-socials.flexbox-row {
    flex-direction: row;
  }

  #footer p {
    text-align: center;
  }
}
