@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700&display=swap");
:root {
  --color-white-100: hsl(206, 5%, 100%);
  --color-white-200: hsl(206, 5%, 90%);
  --color-white-300: hsl(206, 5%, 80%);
  --color-white-400: hsl(206, 5%, 65%);
  --color-white-500: hsl(206, 5%, 50%);
  --color-black-100: hsl(213, 20%, 10%);
  --color-black-200: hsl(213, 23%, 8%);
  --color-black-300: hsl(214, 21%, 6%);
  --color-black-400: hsl(210, 21%, 6%);
  --color-black-500: hsl(216, 22%, 4%);
  --color-black-600: hsl(220, 18%, 3%);
  --color-black-700: hsl(220, 27%, 2%);
  --color-black-800: hsl(180, 20%, 1%);
  --color-blue-100: hsl(214, 95%, 93%);
  --color-blue-200: hsl(213, 97%, 87%);
  --color-blue-300: hsl(212, 96%, 78%);
  --color-blue-400: hsl(213, 94%, 68%);
  --color-blue-500: hsl(217, 91%, 60%);
  --color-blue-600: hsl(221, 83%, 53%);
  --color-blue-700: hsl(224, 76%, 48%);
  --color-blue-800: hsl(226, 71%, 40%);
  --color-blue-900: hsl(224, 64%, 33%);
  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  box-sizing: inherit;
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}

body {
  font-family: "Rubik", sans-serif;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 400;
  line-height: 1.5;
  height: -webkit-fill-available;
  color: var(--color-white-100);
  background-image: url("/img/background.png");
  background-size: cover;
}

main {
  overflow: hidden;
}

a,
button {
  cursor: pointer;
  border: none;
  outline: none;
  user-select: none;
  background: none;
  box-shadow: none;
  text-decoration: none;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.section {
  /* margin: 0 auto; */
  margin-top: 2rem;
  padding: 1rem 0 1rem;
}

.container {
  max-width: 80rem;
  height: auto;
  margin: 0 auto;
  /* margin-top: 5rem; */
  padding: 0 1.25rem;
}

.centered {
  text-align: center;
  vertical-align: middle;
  margin-bottom: 1rem;
}

.heading-lg {
  font-family: inherit;
  font-size: clamp(2.179rem, 5vw, 3.176rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
}
.heading-md {
  font-family: inherit;
  font-size: clamp(1.794rem, 4vw, 2.379rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -1px;
}
.heading-sm {
  font-family: inherit;
  font-size: clamp(1.476rem, 3vw, 1.782rem);
  font-weight: 600;
  line-height: 1.5;
}
.heading-xs {
  font-family: inherit;
  font-size: clamp(1.215rem, 2vw, 1.335rem);
  font-weight: 500;
  line-height: 1.5;
}

.heading-xl {
  font-family: inherit;
  font-size: clamp(3.4rem, 2vw, 1.335rem);
  font-weight: 700;
  line-height: 1.5;
}

.paragraph {
  font-family: inherit;
  font-size: clamp(1rem, 2vw, 1.125rem);
  word-wrap: break-word;
  text-indent: 20px;
  color: var(--color-white-200);
}

.banner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.btn {
  position: relative;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  background-color: #9ba42a;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffff;
  gap: 10px;
  font-weight: bold;
  border: 3px solid #ffffff4d;
  outline: none;
  overflow: hidden;
  font-size: 15px;
}
.btn-project-hangman {
  position: relative;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  background-color: #9ba42a;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffff;
  gap: 10px;
  font-weight: bold;
  border: 3px solid #ffffff4d;
  outline: none;
  overflow: hidden;
  font-size: 15px;
}

.icon {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease-in-out;
}

.btn:hover {
  transform: scale(1.05);
  border-color: #fff9;
}

.btn:hover .icon {
  transform: translate(4px);
}

.btn:hover::before {
  animation: shine 1.5s ease-out infinite;
}

.btn::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  opacity: 0.6;
}

@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: auto;
  margin: 0 auto;
  transition: all 0.35s ease;
  background: rgb(105, 131, 48);
  background: linear-gradient(
    180deg,
    rgba(105, 131, 48, 1) 7%,
    rgba(0, 0, 0, 1) 60%
  );
}

.header.on-scroll {
  background: var(--color-black-300);
  box-shadow: var(--shadow-medium);
}

.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  column-gap: 1.25rem;
  width: 100%;
  height: 4.25rem;
  margin: 0 auto;
  position: sticky;
}

.active {
  display: inline-block;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25;
  user-select: none;
  white-space: nowrap;
  text-align: center;
  margin-left: auto;
  padding: 0.65rem 1.5rem;
  border-radius: 3rem;
  text-transform: capitalize;
  color: var(--color-white);
  background-color: var(--color-blue-600);
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease-in-out;
}

.brand {
  width: 60px;
  height: 65px;
}

.menu {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: auto;
  padding: 4rem 0 3rem;
  overflow: hidden;
  background-color: var(--color-black-300);
  box-shadow: var(--shadow-medium);
  transition: all 0.4s ease-in-out;
}
.menu.is-active {
  top: 0;
  width: 100%;
  height: auto;
}
.menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 1.25rem;
}
.menu-link {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  /* line-height: 1.5; */
  color: var(--color-white-100);
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.menu-block {
  display: inline-block;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25;
  user-select: none;
  white-space: nowrap;
  text-align: center;
  margin-left: auto;
  padding: 0.65rem 1.5rem;
  border-radius: 3rem;
  text-transform: capitalize;
  color: var(--color-white);
  background-color: var(--color-blue-600);
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease-in-out;
}

/* @media only screen and (min-width: 768px) {
  .banner-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 1rem;
  }
  .container {
    max-width: 20rem;
    height: auto;
    margin: 0 1rem;
    padding: 0 1.25rem;
  }
  .heading-xl {
    font-family: inherit;
    font-size: clamp(2rem, 0.5vw, 1.335rem);
    text-align: center;
    font-weight: 700;
    line-height: 1.5;
  }

  .paragraph {
    font-family: inherit;
    font-size: clamp(1rem, 2vw, 1.125rem);
    word-wrap: break-word;
    text-indent: 20px;
    color: var(--color-white-200);
  }

  .banner-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .btn {
    display: inline-block;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    align-items: center;
    vertical-align: middle;
    white-space: nowrap;
    user-select: none;
    outline: none;
    border: none;
    border-radius: 0.25rem;
    text-transform: unset;
    transition: all 0.3s ease-in-out;
    background: rgb(105, 131, 48);
    background: linear-gradient(
      180deg,
      rgba(105, 131, 48, 1) 7%,
      rgba(0, 0, 0, 1) 60%
    );
  }
} */

.burger {
  position: relative;
  display: block;
  cursor: pointer;
  user-select: none;
  order: -1;
  z-index: 10;
  width: 1.6rem;
  height: 1.15rem;
  border: none;
  outline: none;
  background: none;
  visibility: visible;
  transform: rotate(0deg);
  transition: 0.35s ease;
}

.burger-line {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  border: none;
  outline: none;
  opacity: 1;
  border-radius: 1rem;
  transform: rotate(0deg);
  background-color: var(--color-white-100);
  transition: 0.25s ease-in-out;
}
.burger-line:nth-child(1) {
  top: 0px;
}
.burger-line:nth-child(2) {
  top: 0.5rem;
  width: 70%;
}
.burger-line:nth-child(3) {
  top: 1rem;
}
.burger.is-active .burger-line:nth-child(1) {
  top: 0.5rem;
  transform: rotate(135deg);
}
.burger.is-active .burger-line:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}
.burger.is-active .burger-line:nth-child(3) {
  top: 0.5rem;
  transform: rotate(-135deg);
}

.banner-column {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  row-gap: 3rem;
}

.banner-image {
  display: block;
  max-width: 18rem;
  scale: 0.9;
  height: auto;
  margin-top: 1rem;
  object-fit: cover;
  justify-self: center;
  border-radius: 2rem;
  box-shadow: 3px 3px 3px black;
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: auto;
  margin: 0 auto;
  transition: all 0.35s ease;
  background: rgb(105, 131, 48);
  background: linear-gradient(
    180deg,
    rgba(105, 131, 48, 1) 7%,
    rgba(0, 0, 0, 1) 60%
  );
}

.banner-links {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: right;
  align-items: center;
  align-content: space-between;
  gap: 30px;
  bottom: 0;
  right: 20px;
  opacity: 0;
  visibility: hidden;
}

.banner-links > * {
  font-size: 2.25rem;
  line-height: 1.25;
  color: var(--color-white-100);
}

.bx:hover {
  color: #c7c7c7;
}

.bx {
  font-family: boxicons !important;
  font-weight: 400;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  display: inline-block;
  text-transform: none;
  /* speak: none; */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.bxl-facebook:before {
  content: "\e92f";
}
.bxl-instagram:before {
  content: "\e92f";
}
.bxl-twitter:before {
  content: "\e92f";
}
.bxl-youtube:before {
  content: "\e92f";
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* SLIDER */

.slider {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100rem;
  height: 55rem;
  margin: 0 auto;
  position: relative;

  /* IN THE END */
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  width: 100%;
  height: 55rem;

  display: flex;
  align-items: center;
  justify-content: center;

  /* THIS creates the animation! */
  transition: transform 1s;

  background-size: cover;
  background-position: center;
  z-index: 1;
}

.slide > img {
  /* Only for images that have different size than slide */
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.witcher {
  position: absolute;
  top: 0;
  /* width: 100%;*/
  height: 30rem;

  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;

  /* THIS creates the animation! */
  transition: transform 1s;

  background-image: url("/img/the-witcher-backgr-projects.png");
  background-size: cover;
  background-position: center;
  border-radius: 20px;

  z-index: 1;
}

.witcher > img {
  /* Only for images that have different size than slide */
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial__text {
  text-indent: 24px;
}

.hangman {
  position: absolute;
  top: 0;
  width: 100%;
  height: 30rem;

  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;

  /* THIS creates the animation! */
  transition: transform 1s;

  background-image: url("/img/hangman/hangman-wallpaper-3.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  z-index: 1;
}

.hangman > img {
  /* Only for images that have different size than slide */
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.retro__calc {
  position: absolute;
  top: 0;
  width: 100%;
  height: 30rem;

  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;

  /* THIS creates the animation! */
  transition: transform 1s;

  background-image: url("/img/calculator/calc__wallpaper.webp");
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  z-index: 1;
  filter: blur();
}

.retro__calc > img {
  /* Only for images that have different size than slide */
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider__btn {
  position: absolute;
  top: 50%;
  z-index: 10;

  border: none;
  background: rgba(255, 255, 255, 0.7);
  font-family: inherit;
  color: #333;
  border-radius: 50%;
  height: 3.5rem;
  width: 3.5rem;
  font-size: 2rem;
  cursor: pointer;
}

.slider__btn--left {
  left: 6%;
  transform: translate(-50%, -50%);
}

.slider__btn--right {
  right: 6%;
  transform: translate(50%, -50%);
}

.dots {
  position: absolute;
  bottom: 7rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  z-index: 1;
}

.dots__dot {
  border: none;
  background-color: #b9b9b9;
  opacity: 0.7;
  height: 1rem;
  width: 1rem;
  border-radius: 50%;
  margin-right: 1.75rem;
  cursor: pointer;
  transition: all 0.5s;

  /* Only necessary when overlying images */
  /* box-shadow: 0 0.6rem 1.5rem rgba(0, 0, 0, 0.7); */
}

.dots__dot:last-child {
  margin: 0;
}

.dots__dot--active {
  background-color: #fff;
  /* background-color: #888; */
  opacity: 1;
}

/* TESTIMONIALS */
.testimonial {
  width: 65%;
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.testimonial__header {
  display: flex;
  flex-direction: row;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
  z-index: 10;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 0.5rem;
}
.unordered-list-hangman {
  text-indent: -1px;
}

.ul-li-hangman {
  margin-left: 10px;
  list-style-type: circle;
  list-style-position: inside;
}

.ul-li-hangman span {
  position: relative;
  left: -10px;
  padding-left: 2%;
}

.testimonial__text__calc {
  text-indent: 2.5rem;
}

.unordered-list-calc {
  text-indent: -1px;
}

.ul-li-calc {
  margin-left: 10px;
  list-style-type: circle;
  list-style-position: inside;
}

.ul-li-calc span {
  position: relative;
  left: -10px;
  padding-left: 2%;
}

.testimonial__text {
  font-size: 1rem;
  margin-bottom: 2.5rem;
  color: rgb(254, 255, 254);
  font-weight: 500;
}

.testimonial__photo {
  grid-row: 1 / span 2;
  width: 6.5rem;
  border-radius: 20%;
}
.testimonial__author {
  margin-left: 3rem;
  font-style: normal;
  display: grid;
  grid-template-columns: 9.5rem 1fr;
  /* row-gap: 1rem; */
}

.testimonial__text__hangman {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: rgb(254, 255, 254);
  text-indent: 37px;
  font-weight: 500;
}

.testimonial__author__hangman {
  margin-left: 3rem;
  font-style: normal;
  display: grid;
  grid-template-columns: 10.5rem 1fr;
  /* row-gap: 1rem; */
}

.testimonial__photo__hangman {
  grid-row: 1 / span 2;
  border-radius: 20%;
}

.hangman__link__project__hangman {
  padding-left: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.testimonial__name__hangman {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 500;
  align-self: end;
  margin: 0;
  padding-left: 2rem;
}

.testimonial__text__calc {
  font-size: 1rem;
  margin-bottom: 1rem;
  margin-right: 10rem;
  color: rgb(254, 255, 254);
  font-weight: 500;
}

.testimonial__author__calc {
  margin-left: 3rem;
  font-style: normal;
  display: grid;
  grid-template-columns: 10.5rem 1fr;
  /* row-gap: 1rem; */
}

.testimonial__photo__calc {
  grid-row: 1 / span 2;
  border-radius: 20%;
}

.hangman__link__project__calc {
  padding-left: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.testimonial__name__calc {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 500;
  align-self: end;
  margin: 0;
  padding-left: 2rem;
}

.portofolio {
  background-image: url("/img/portofolio/wallpaper.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 20px;
}

.testimonial__text__portofolio {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: rgb(254, 255, 254);
  font-weight: 500;
  text-indent: 2.5rem;
}

.testimonial__author__portofolio {
  margin-left: 3rem;
  font-style: normal;
  display: grid;
  grid-template-columns: 10.5rem 1fr;
  /* row-gap: 1rem; */
}

.testimonial__photo__portofolio {
  grid-row: 1 / span 2;
  border-radius: 20%;
}

.hangman__link__project__portofolio {
  padding-left: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.testimonial__name__portofolio {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 500;
  align-self: end;
  margin: 0;
  padding-left: 2rem;
}

.ul-li-portofolio {
  margin-left: 10px;
  list-style-type: circle;
  list-style-position: inside;
}

.ul-li-portofolio span {
  position: relative;
  left: -20px;
  padding-left: 2%;
}

.backgr-hangman {
  /* The image used */
  /* background-image: url(/img/hangman/hangman-wallpaper.jpg); */
  border-radius: 20px;

  /* Add the blur effect */
  filter: blur(3px);
  -webkit-filter: blur(1.2px);

  /* Full height */
  height: 78%;
  width: 66%;

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.testimonial__name {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 500;
  align-self: end;
  margin: 0;
}

.testimonial__link {
  font-size: 1.2rem;
  font-weight: 500;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.section__title--testimonials {
  margin-bottom: 4rem;
}

.a {
  list-style-type: disc;
  text-indent: 20px;
}

.backgr-color {
  /* The image used */
  /* background-image: url(/img/the-witcher-backgr-projects.png); */
  border-radius: 20px;

  /* Add the blur effect */
  filter: blur(3px);
  -webkit-filter: blur(1.2px);

  /* Full height */
  height: 78%;
  width: 66%;

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -7;
}

.btn-project {
  position: relative;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  background-color: rgb(182, 3, 3);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffff;
  gap: 10px;
  font-weight: bold;
  border: 3px solid #ffffff4d;
  outline: none;
  overflow: hidden;
  font-size: 15px;
}

/* RESPONSIVE */

@media only screen and (min-width: 48rem) {
  .testimonial__text__hangman {
    font-size: 2px;
  }

  .menu {
    position: relative;
    top: 0;
    width: auto;
    height: auto;
    padding: 0rem;
    margin-left: auto;
    background: none;
    box-shadow: none;
  }
  .menu-inner {
    display: flex;
    flex-direction: row;
    column-gap: 2rem;
    margin: 0 auto;
  }
  .menu-link {
    text-transform: capitalize;
  }
  .menu-block {
    margin-left: 2rem;
  }
}

@media only screen and (min-width: 48rem) {
  .burger {
    display: none;
    visibility: hidden;
  }
  .testimonial__text__hangman {
    font-size: 2px;
  }
}

@media only screen and (min-width: 48rem) {
  .banner-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
  }
  .testimonial__text__hangman {
    font-size: 2px;
  }
}
@media only screen and (min-width: 64rem) {
  .banner-column {
    grid-template-columns: 1fr max-content;
    column-gap: 2rem;
    margin-top: 4rem;
  }
  .testimonial__text__hangman {
    font-size: 2px;
  }
}

@media only screen and (min-width: 48rem) {
  .banner-image {
    order: 1;
    max-width: 20rem;
    height: auto;
  }
  .testimonial__text__hangman {
    font-size: 2px;
  }
}
@media only screen and (min-width: 64rem) {
  .about-inner {
    /* max-width: 25rem; */
    height: auto;
    /* margin-right: 5rem; */
  }
  .testimonial__text__hangman {
    font-size: 2px;
  }
}

@media only screen and (min-width: 64rem) {
  .banner-links {
    opacity: 1;
    visibility: visible;
  }
  .testimonial__text__hangman {
    font-size: 1rem;
  }
}

@media (max-width: 47.9375em) {
  .banner-inner {
    padding: 3rem;
  }
  .testimonial__text__hangman {
    font-size: 0.6rem;
  }
  .testimonial__header {
    font-size: 1rem;
  }

  .testimonial__author__hangman {
    margin-left: -1rem;
    grid-template-columns: 4.5rem 1fr;
  }
  .testimonial__name__hangman {
    font-size: 0.8rem;
  }
  .hangman__link__project__hangman {
    font-size: 0.8rem;
  }
  #icon {
    size: sm;
  }

  .dots {
    bottom: 2rem;
  }

  .slide {
    height: 40rem;
  }

  .container {
    padding: 0 1rem;
    flex-direction: column;
  }

  .heading-lg {
    font-size: 1.5rem;
  }

  .heading-md {
    font-size: 1.25rem;
  }

  .heading-sm {
    font-size: 1.125rem;
  }

  .heading-xs {
    font-size: 1rem;
  }

  .heading-xl {
    font-size: 2.5rem;
  }

  .paragraph {
    font-size: 0.875rem;
  }

  .navbar {
    flex-direction: row;
    /* align-items: flex-start; */
    row-gap: 1rem;
  }

  .menu-link {
    font-size: 1.125rem;
  }
  .header {
    flex-direction: row;
  }
  .brand {
    display: flex;
    align-items: center;
  }
}
