:root {
  --gray-900: #212121;
  --gray-800: #424242;
  --gray-700: #616161;
  --gray-600: #757575;
  --gray-500: #9e9e9e;
  --gray-400: #bdbdbd;
  --gray-350: #d9d9d9;
  --gray-300: #e0e0e0;
  --gray-200: #eeeeee;
  --gray-100: #f5f5f5;
  --gray-50: #fafafa;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-soft-white: #f2f2f2;
  --color-purple: #820ad1;
  --tgr-red: #ef0334;
  --tgr-yellow: #dbdb46;
  --tgr-blue: #59c2b7;
  --tgr-blue-dark: #142d91;
  --tgr-blue-darker: #040234;
}

* {
  box-sizing: border-box;
  margin: 0;
}

body {
  font-family: "alfabet", sans-serif;
  background-color: var(--color-black);
  position: relative;
  user-select: none;
  cursor: none;
}

body::-webkit-scrollbar {
  display: none;
}

a {
  cursor: none;
}

.site-wrapper {
  overflow: clip;
  position: relative;
}

.navbar-toggler i {
  color: var(--color-soft-white);
  font-size: 30px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.offcanvas-site-header {
  background: var(--color-black);
}

.offcanvas-site-header .offcanvas-header {
  padding: var(--bs-offcanvas-padding-y) 24px;
}

.offcanvas-site-header .offcanvas-body {
  padding: var(--bs-offcanvas-padding-y) 24px;
}

.offcanvas-site-header .offcanvas-body li {
  font-size: 48px;
  color: var(--gray-600);
  font-weight: 100;
}

.offcanvas-body {
  margin-top: 36px;
  padding-left: 20px !important;
}

.offcanvas-site-header ol {
  line-height: 70px;
}

.offcanvas-site-header .offcanvas-body li a {
  font-size: 64px;
  color: var(--color-white);
  font-weight: 400;
  text-decoration: none;
}

.offcanvas-site-header .btn-close {
  --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f2f2f2'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
  opacity: 1;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

.break-line {
  display: block;
}

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-black);
  z-index: 200;
  display: flex;
  align-items: end;
  animation: removeLoading 1s 3.2s forwards;
}

.loading-inside {
  position: fixed;
  width: 100%;
  height: 10%;
  background-color: var(--tgr-red);
  z-index: 201;
  animation: loading 3s forwards, removeLoading 1.5s 3s forwards;
}

@keyframes loading {
  0% {
    height: 0;
  }

  35% {
    height: 30%;
  }

  65% {
    height: 60%;
  }

  100% {
    height: 100%;
  }
}

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

  100% {
    transform: translateY(-100%);
  }
}

.loading-screen h2 {
  font-size: 128px;
  color: var(--color-white);
  font-weight: 400;
  margin-left: 70px;
  margin-bottom: 50px;
  position: relative;
  z-index: 203;
}

.w-max-content {
  width: max-content;
}

.hidden-right-shape-g {
  transition: all 2s;
  filter: blur(10px);
  transform: translateX(-30%);
}

.hidden-left-shape-g {
  transition: all 2s;
  filter: blur(10px);
  transform: rotate(-60deg);
  transform: translate(-60%, -10%);
}

.hidden-right-shape-t {
  transition: all 1.5s;
  filter: blur(10px);
  transform: rotate(-45deg);
  right: -35vw;
  top: 50vh;
  position: absolute;
}

.hidden-top-shape-r {
  transition: all 2s;
  filter: blur(10px);
  transform: rotate(-60deg);
  transform: translate(20%, -60%);
}

.show-shape-t {
  transform: rotate(0);
  right: 0;
  top: 0;
  filter: blur(0);
  position: absolute;
}

.hidden-right-shape {
  transition: all 1.5s;
  filter: blur(10px);
  transform: rotate(90deg);
}

.show-shape {
  filter: blur(0) !important;
  transform: translate(0, 0) !important;
  transform: rotate(0) !important;
}

.hidden-right {
  opacity: 0;
  transition: all 1s;
  filter: blur(5px);
  transform: translateX(80%);
}

.hidden-left {
  opacity: 0;
  transition: all 1s;
  filter: blur(5px);
  transform: translateX(-80%);
}

.hidden-bottom {
  transition: all 0.5s;
  filter: blur(5px);
  transform: translateY(20%);
}

.show-card {
  filter: blur(0);
  transform: translateY(0);
  opacity: 1;
}

.custom-cursor {
  width: 30px;
  height: 30px;

  position: fixed;
  z-index: 100;

  transform: translate(-50%, -50%);

  border: 2px solid #040234;
  background-color: #142d91;
  border-radius: 10px;

  pointer-events: none;
}

.footer-cursor {
  border: none;
  background-color: var(--tgr-blue);
}

@keyframes cursorExpand {
  0% {
    width: 30px;
    height: 30px;
  }

  100% {
    width: 35px;
    height: 35px;
  }
}

@keyframes cursorContract {
  0% {
    width: 35px;
    height: 35px;
  }

  100% {
    width: 30px;
    height: 30px;
  }
}

.custom-cursor.click {
  animation: cursorExpand 0.3s forwards;
}

.custom-cursor.release {
  animation: cursorContract 0.3s forwards;
}

.hovered-link {
  background: radial-gradient(50% 50% at 50% 50%,
      #142d91 43%,
      rgba(12, 6, 154, 0) 100%);
  border: none;
}

.footer-cursor-hovered {
  border: none;
  background: radial-gradient(50% 50% at 50% 50%,
      var(--tgr-blue) 43%,
      rgba(12, 6, 154, 0) 100%);
}

.no-background-hover {
  background-color: transparent;
  border: 2px solid var(--color-purple);
}

.purple-button {
  background-color: transparent;
  color: var(--tgr-yellow);
  padding: 8px 10px;
  border-radius: 5px;
  transition: background-color 0.2s ease-in-out;
  display: flex;
  text-decoration: none;
}

.purple-button:hover {
  background-color: var(--color-purple);
}

.purple-button i {
  font-size: 18px;
}

.purple-button-outline {
  background-color: transparent;
  color: var(--color-soft-white);
  box-shadow: 0px 0px 0px 1.2px var(--color-purple) inset;
  text-decoration: none;
  border-radius: 15px;
  border: none;
  padding: 16px 72px;
  transition: all 0.2s ease-in-out;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  display: block;
}

.purple-button-outline:hover {
  background: var(--color-purple);
  color: var(--color-white);
}

.blue-button {
  background-color: var(--tgr-blue);
  color: var(--color-soft-white);
  box-shadow: 0px 0px 0px 1.2px var(--tgr-blue) inset;
  text-decoration: none;
  border-radius: 15px;
  border: none;
  padding: 16px 72px;
  transition: all 0.2s ease-in-out;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  display: block;
  color: var(--color-white);
}

.blue-button:hover {
  box-shadow: 0px 0px 0px 1.2px var(--tgr-blue) inset;
  background: transparent;
  color: var(--color-white);
}

.container-fluid {
  padding-right: calc(var(--bs-gutter-x) + 15px);
  padding-left: calc(var(--bs-gutter-x) + 15px);
}

/* Header */
header .nav-item a {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-soft-white);
}

header .nav-item a:hover:not(.purple-button-outline) {
  color: var(--color-soft-white);
}

.hover-underline-animation {
  position: relative;
  text-decoration: none;
}

.hover-underline-animation::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  background-color: var(--color-soft-white);
  transform-origin: bottom right;
  transition: transform 0.25s ease-in-out;
}

.hover-underline-animation:hover::after {
  transform: scaleX(1);
}

header .nav-link {
  padding: 0;
}

.header-items-space {
  gap: 40px;
}

header .logo {
  width: 100%;
  max-width: 80px;
  max-height: 60px;
}

header {
  padding: 40px;
  position: relative;
  z-index: 2;
}

.header-shape {
  position: absolute;
  top: -24rem;
  right: -13rem;
  z-index: -1;
}

/* Home */
.we-are h1 {
  font-size: 128px;
  font-weight: 600;
  color: var(--color-white);
  width: max-content;
  line-height: 135px;
}

.we-are span:nth-of-type(2) {
  display: block;
  width: max-content;
}

.we-are {
  position: relative;
  z-index: 3;
  left: 30rem;
  margin-top: 19.5rem;
}

.body-second-shape {
  left: -56rem;
  top: 2rem;
  position: absolute;
}

.body-second-shape img {
  width: 154vw;
}

.we-are span {
  font-family: Loretta;
  font-weight: 300;
  font-style: italic;
}

.gradient-effect {
  background: linear-gradient(to right,
      var(--tgr-yellow) 10%,
      var(--color-soft-white) 25%,
      var(--tgr-red) 30%,
      var(--tgr-yellow) 35%,
      var(--color-soft-white) 45%,
      var(--tgr-red) 55%,
      var(--tgr-yellow) 65%,
      var(--color-soft-white) 75%,
      var(--tgr-red) 80%,
      var(--tgr-yellow) 85%,
      var(--color-soft-white) 90%,
      var(--tgr-red) 95%,
      var(--tgr-yellow) 100%);
  background-size: 1600px 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation: gradient 8s linear infinite;
  animation: gradient 8s linear infinite;
  font-family: Alfabet !important;
  font-weight: 600 !important;
  font-style: normal !important;
}

@-webkit-keyframes gradient {
  0% {
    transform: 0 1600px;
  }

  to {
    background-position: 1600px 0;
  }
}

@keyframes gradient {
  0% {
    background-position: 0 1600px;
  }

  to {
    background-position: 1600px 0;
  }
}

.we-are p {
  margin-bottom: 0;
  font-size: 24px;
  color: var(--color-white);
  font-weight: 100;
}

.we-are i {
  color: var(--tgr-yellow);
  font-size: 18px;
  padding-bottom: 3px;
  animation: arrowDown 2s ease-in-out infinite;
  animation-fill-mode: both;
  padding-left: 8px;
}

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

  50% {
    transform: translateY(3px);
  }

  100% {
    transform: translateY(0);
  }
}

.we-build-your-project {
  position: relative;
  left: 0;
  margin-top: 28rem;
  z-index: 3;
}

.we-build-your-project div:first-child h2 {
  font-size: 64px;
  color: var(--color-white);
  font-weight: 600;
  text-align: end;
  width: max-content;
  margin-bottom: 0;
}

.we-build-your-project div:first-child span {
  font-style: italic;
  font-weight: 300;
  color: var(--tgr-yellow);
  font-family: Loretta;
}

.we-build-your-project div:first-child {
  width: 100%;
  margin-bottom: 100px;
}

.we-build-your-project div:last-child h2:first-child {
  font-size: 20vw;
  color: var(--tgr-blue);
  font-weight: 850;
  line-height: 15rem;
  width: max-content;
}

.we-build-your-project div:last-child h2:last-child {
  font-size: 6vw;
  color: var(--color-white);
  font-weight: 100;
  width: max-content;
}

.home-phrase {
  position: relative;
  z-index: 3;
  width: 100%;
  margin-top: 17rem;
  display: flex;
  justify-content: center;
}

.home-phrase div {
  max-width: 45%;
}

.home-phrase h2 {
  font-size: 64px;
  color: var(--color-white);
  font-weight: 400;
  text-align: center;
  font-family: Loretta;
  line-height: 70px;
}

.home-phrase span {
  font-style: italic;
  color: var(--tgr-yellow);
}

.our-cases {
  position: relative;
  z-index: 3;
  margin-top: 12rem;
}

.our-cases-page {
  margin-top: 8rem;
}

.our-cases img {
  width: 100%;
  transform-origin: top left;
  transition: transform 0.2s ease-in-out;
}

.our-cases a:hover img {
  transform: scale(0.98);
}

.our-cases a:hover .case-container p {
  padding-left: 0;
}

.our-cases a:hover .case-container p::after {
  transform: scaleX(1);
}

.case-container p {
  transition: padding 0.2s ease-in-out;
  width: max-content;
  position: relative;
  text-decoration: none;
}

.case-container p::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  background-color: var(--color-soft-white);
  transform-origin: bottom right;
  transition: transform 0.25s ease-in-out;
}

.case-container p:last-of-type:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  background-color: var(--color-soft-white);
  transform-origin: bottom right;
  transition: transform 0.4s ease-in-out;
}

.our-cases h2 {
  font-size: 128px;
  color: var(--color-white);
  font-style: italic;
  font-weight: 700;
  width: max-content;
  position: sticky !important;
  z-index: 1;
  top: 60px;
  margin-bottom: 45px;
  line-height: 120px;
}

.case-container {
  position: relative;
  z-index: 2;
  margin-top: 100px;
  margin-bottom: 20px;
}

.case-container img {
  width: 100%;
  max-width: 1080px;
  max-height: 600px;
  border-radius: 20px;
}

.case-mg-left-1 {
  margin-left: 100px;
}

.case-mg-left-2 {
  margin-left: 200px;
}

.our-cases a {
  text-decoration: none;
}

.case-container p:first-of-type {
  color: var(--color-white);
  font-size: 20px;
  font-weight: 300;
  margin-top: 12px;
  margin-bottom: 0;
  padding-left: 15px;
}

.case-container p:last-of-type {
  color: var(--color-white);
  font-size: 24px;
  font-weight: 500;
  padding-left: 15px;
}

.body-third-shape img {
  position: absolute;
  z-index: 0;
  left: 4vw;
  top: 480vh;
  height: 345vh;
  width: 126vw;
  pointer-events: none;
}

.our-history {
  position: relative;
  left: 0;
  z-index: 3;
  margin-top: 10rem;
}

.our-history h2 {
  font-size: 9.6875rem;
  color: var(--color-soft-white);
  font-weight: 700;
  text-align: center;
  line-height: 9.6875rem;
}

.our-history-img-container img {
  position: relative;
  width: 100%;
  max-width: 700px;
  max-height: 525px;
  border-radius: 20px;
  object-fit: cover;
}

.our-history-img-container img:last-child {
  left: 30vw;
  top: -120px;
}

.our-history-img-container img:nth-child(2) {
  left: 28vw;
  top: 110px;
}

.we-are-creative {
  position: relative;
  z-index: 1;
}

.we-are-creative h2:first-of-type {
  font-size: 128px;
  font-weight: 300;
  color: var(--color-white);
  font-family: Loretta;
  white-space: pre-line;
  line-height: 120px;
}

.we-are-creative p {
  font-size: 48px;
  color: var(--color-white);
  font-weight: 100;
  margin-top: 40px;
  line-height: 50px;
}

.text-opacity-section h2 span {
  opacity: 0;
  transform: translateY(20px);
  display: inline-block;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.text-opacity-section.show-card span {
  opacity: 1;
  transform: translateY(0);
}

.text-opacity-section span:not(.break-line) {
  opacity: 0.5;
  display: inline-block;
  transition: opacity 0.6s ease-out;
}

.fade-in {
  opacity: 1 !important;
}

.home-phrase-2 {
  position: relative;
  margin-top: 15rem;
}

.home-phrase-2 p:first-child {
  font-size: 20px;
  color: var(--color-white);
  font-weight: 300;
  margin-bottom: 15px;
}

.home-phrase-2 p:last-child {
  font-size: 20px;
  color: var(--color-white);
  font-weight: 500;
  margin-bottom: 0;
}

.home-phrase-2 img {
  width: 100%;
  border-radius: 20px;
  height: 100%;
  object-fit: cover;
}

.home-phrase-2 .col-xl-9 {
  padding-right: 100px;
  padding-left: 20px;
}

.floating-phrase {
  position: sticky;
  top: 300px;
}

.culture {
  position: relative;
  margin-top: 19rem;
}

.culture p {
  font-size: 20px;
  color: var(--color-white);
  font-weight: 300;
  margin-bottom: 40px;
}

.culture-container {
  max-width: 50% !important;
}

.culture div:first-child .purple-button-outline {
  display: inline-block;
}

.swiperHome {
  margin-top: 10rem;
}

.swiperHome .swiper-wrapper {
  transition-timing-function: linear;
}

.swiperHome .swiper-slide {
  height: auto !important;
}

.swiperHome img {
  width: 100%;
  max-width: 900px;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.how-can-we-help {
  margin-top: 20vh;
}

.how-can-we-help h2 {
  font-size: 181px;
  font-style: italic;
  font-weight: 850;
  color: var(--tgr-blue);
  padding-left: 20px;
}

.how-can-we-help p {
  font-size: 32px;
  color: var(--color-white);
  font-weight: 500;
  font-family: Loretta;
  margin-bottom: 0;
}

.how-can-we-help p span {
  font-style: italic;
}

.how-can-we-help ul {
  list-style: none;
  padding-left: 0;
}

.how-can-we-help ul li {
  font-size: 24px;
  font-style: italic;
  font-weight: 200;
  color: var(--color-white);
}

.how-can-we-help-item {
  gap: 70px;
}

.how-can-we-help-item:last-child {
  margin-top: 30vh;
}

.default-footer {
  margin-top: 16rem;
}

.footer-video {
  width: 100%;
  height: 100%;
  border-top-right-radius: 20px;
  object-fit: cover;
}

.footer-bottom a {
  text-decoration: none;
}

.footer-bottom {
  margin-top: 90px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--color-white);
  font-weight: 100;
  margin-bottom: 0;
}

.footer-icon {
  background-color: var(--tgr-blue-dark);
  border-radius: 5px;
  padding: 8px 10px;
  display: flex;
  transition: transform 0.2s ease-in-out;
}

.footer-icon:hover {
  transform: scale(1.1);
}

.footer-icon i {
  color: var(--color-white);
  font-size: 20px;
}

.footer-content {
  padding: 105px 60px 15px 60px;
}

.footer-bg {
  background-color: var(--tgr-blue-darker);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.footer-bg>div:last-child {
  flex: 29vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.default-footer hr {
  color: var(--tgr-yellow);
  margin-bottom: 30px;
  margin-top: 90px;
  opacity: 1;
}

.footer-text h2 {
  font-size: 110px;
  color: var(--color-white);
  font-weight: 700;
  margin-bottom: 50px;
}

.footer-text>p {
  font-family: Loretta;
  font-size: 24px;
  color: var(--color-white);
  font-weight: 300;
  margin-bottom: 15px;
}

.body-last-shape {
  bottom: -118rem;
  left: 60rem;
  position: absolute;
  width: 120vw;
  z-index: 0;
  pointer-events: none;
  transform: rotate(-90deg);
}

.footer-button {
  display: inline-block;
}

.default-footer input,
.gradient-footer input {
  border: 1px solid var(--color-purple);
  border-radius: 15px;
  padding: 16px 20px;
  background: var(--tgr-blue-darker);
  font-size: 16px;
  color: var(--gray-700);
  font-weight: 600;
}

.default-footer input:focus,
.gradient-footer input:focus {
  background: var(--tgr-blue-darker);
  font-size: 16px;
  color: var(--gray-700);
  font-weight: 600;
  border: 1px solid var(--color-purple);
  box-shadow: none;
}

.default-footer input::placeholder,
.gradient-footer input::placeholder {
  font-size: 16px;
  color: var(--gray-700);
  font-weight: 600;
}

.input-container {
  position: relative;
  display: none;
  animation: inputSize 1s forwards;
}

.input-container a {
  position: absolute;
  top: 12px;
  right: 12px;
}

.default-footer .purple-button-outline {
  padding-top: 18px;
  padding-bottom: 18px;
}

@keyframes inputSize {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

.container {
  max-width: 1860px;
}

/* Cases */
.body-r-shape {
  left: 14rem;
  top: -9rem;
  position: absolute;
}

.body-g-shape {
  left: -18rem;
  top: 220rem;
  position: absolute;
}

.body-g-shape img {
  width: 310vw;
}

.body-t-shape {
  top: 460rem;
  left: 7rem;
  z-index: -1;
  position: absolute;
}

.body-t-shape img {
  width: 80vw;
  transform: rotate(-5deg);
}

.hidden-left-shape-r {
  transition: all 2s;
  filter: blur(10px);
  transform: rotate(-120deg);
  transform: translate(60%, -40%);
}

.hidden-right-shape-g-light-blue {
  transition: all 2s;
  filter: blur(10px);
  transform: rotate(-120deg);
  transform: translate(-60%, -10%);
}

.hidden-bottom-shape-t {
  transition: all 2s;
  filter: blur(10px);
  transform: rotate(-120deg);
  transform: translate(-10%, 20%);
}

/* Show case */
.body-blue-r-shape {
  left: 13rem;
  top: -83rem;
  position: absolute;
  z-index: -1;
}

.case-start {
  margin-top: 5rem;
}

.case-start h1 {
  font-size: 128px;
  color: var(--color-white);
  font-weight: 600;
  margin-bottom: 8rem;
}

.case-start p:first-child {
  font-size: 20px;
  color: var(--gray-600);
  font-weight: 300;
  margin-bottom: 5px;
}

.case-start p {
  font-size: 20px;
  color: var(--color-white);
  font-weight: 300;
}

.case-start ul {
  list-style: none;
  padding-left: 0;
}

.case-start li {
  font-size: 20px;
  color: var(--color-white);
  font-weight: 300;
}

.main-img-container {
  margin-top: 12rem;
}

.main-img-container img,
.main-img-container video {
  width: 100%;
  border-radius: 15px;
}

.main-img-container h2, .last-section-bremen h2 {
  font-size: 48px;
  font-family: Loretta;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 6.5rem;
  max-width: 64rem;
  text-align: center;
}

.last-section-bremen {
  margin-top: 7rem;
}

.show-case-swiper h2 {
  font-size: 48px;
  font-family: Loretta;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 6.5rem;
  max-width: 64rem;
}

.custom-h2 h2 {
  font-size: 48px;
  font-family: Loretta;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 6.5rem;
  margin-top: 6.5rem;
  text-align: center;
}

.show-case-swiper-custom p {
  font-size: 20px;
  color: var(--color-white);
  margin-bottom: 6.5rem;
  max-width: 64rem;
  font-weight: 300;
}

.show-case-swiper {
  margin-top: 7rem;
  margin-bottom: 6.5rem;
}

.video-paragraph {
  margin-top: 7rem;
}

.show-case-swiper img,
.show-case-swiper video {
  width: 100%;
  border-radius: 15px;
  max-height: 510px;
  object-fit: cover;
}

.show-case-section-5 p {
  font-size: 20px;
  color: var(--color-white);
  font-weight: 300;
  margin-top: 55px;
}

.show-case-img-1 {
  width: 100%;
  border-radius: 15px;
  max-height: 960px;
}

.custom-bremen-margin {
  margin-bottom: 7rem;
}

.show-case-img-2 {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  object-fit: cover;
  max-height: 960px;
}

.show-case-section-6 {
  margin-top: 10rem;
  margin-bottom: 10rem;
}

.show-case-section-6 img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
}

.show-case-section-6 p:first-child {
  font-size: 20px;
  color: var(--color-white);
  font-weight: 300;
  margin-bottom: 26px;
  margin-top: 70px;
}

.show-case-section-6 p:last-child {
  font-size: 20px;
  color: var(--color-white);
  font-weight: 300;
}

.gradient-footer p {
  font-family: Loretta;
  font-size: 24px;
  color: var(--color-white);
  font-weight: 300;
  margin-bottom: 20px;
}

.gradient-footer h2 {
  font-size: 96px;
  color: var(--color-white);
  font-weight: 700;
  line-height: 96px;
  margin-bottom: 55px;
}

.gradient-footer-container {
  max-width: 60rem;
  position: relative;
  z-index: 9;
}

.gradient-footer {
  background: var(--tgr-blue-dark);
  overflow: hidden;
}

.gradient-container {
  background: var(--tgr-blue-darker);
  padding-top: 100px;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
}

.gradient-red {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background: radial-gradient(100.51% 183% at 6% 77%,
      rgba(239, 3, 52, 0.8) 0%,
      rgba(239, 3, 52, 0) 37%);
  animation: gradientRed 20s ease-in-out infinite;
}

.gradient-purple {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(38.51% 74.51% at 100% 3%,
      #9747ff 0%,
      rgba(151, 71, 255, 0) 114%);
  animation: gradientPurple 20s ease-in-out infinite;
}

@keyframes gradientRed {

  0%,
  100% {
    top: 0rem;
    right: 0rem;
  }

  50% {
    top: 5rem;
    right: 10rem;
  }
}

@keyframes gradientPurple {

  0%,
  100% {
    bottom: 0rem;
    left: 5rem;
  }

  50% {
    bottom: 0rem;
    left: 15rem;
  }
}

.gradient-footer img {
  width: 100%;
}

.gradient-footer hr {
  margin-top: 0;
  color: var(--tgr-yellow);
  opacity: 1;
  margin-bottom: 0;
}

.footer-icon-gradient {
  background-color: var(--color-purple);
  border-radius: 5px;
  padding: 8px 10px;
  display: flex;
  transition: transform 0.2s ease-in-out;
}

.footer-icon-gradient:hover {
  transform: scale(1.1);
}

.footer-icon-gradient i {
  color: var(--color-white);
  font-size: 20px;
}

.footer-bottom-gradient a {
  text-decoration: none;
}

.footer-bottom-gradient p {
  font-size: 13px;
  color: var(--color-white);
  font-weight: 100;
  margin-bottom: 0;
  font-family: Alfabet;
}

.footer-bottom-gradient-container {
  padding-top: 20px;
  padding-bottom: 20px;
}

.next-prev-cases img {
  position: relative;
}

.btn-container {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  top: 60px;
}

.btn-container i {
  color: var(--color-white);
  font-size: 16px;
}

.btn-container a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

.btn-container.left {
  left: 0;
  margin-left: 55px;
}

.btn-container.right {
  right: 0;
  margin-right: 55px;
}

.btn-container:hover+img {
  filter: blur(1px);
  transition: filter 0.2s ease-in-out;
}

.footer-desktop {
  display: block;
}

.footer-mobile {
  display: none;
}

.white-bar {
  background-color: var(--color-soft-white);
  width: 100%;
  height: 36px;
}

.gray-bar {
  background-color: #363535;
  width: 100%;
  height: 36px;
}

.blue-bar {
  width: 100%;
  height: 36px;
  background-color: var(--tgr-blue-dark);
}

.yellow-bar {
  width: 100%;
  height: 36px;
  background-color: var(--tgr-yellow);
}

.purple-bar {
  width: 100%;
  height: 36px;
  background-color: var(--color-purple);
}

.blue-marine-bar {
  width: 100%;
  height: 36px;
  background-color: var(--tgr-blue);
}

.red-bar {
  width: 100%;
  height: 36px;
  background-color: var(--tgr-red);
}

.dark-blue-bar {
  width: 100%;
  height: 36px;
  background-color: var(--tgr-blue-darker);
}

.bar-container {
  position: relative;
  top: -100px;
  left: 0;
  opacity: 0;
  z-index: 0;
  transition: transform 0.8s ease, opacity 0.5s ease;
}

.offcanvas.show .bar-container {
  opacity: 1;
  transform: translateY(calc(100% - 150px));
}

.offcanvas {
  bottom: -70px;
}

.offcanvas.offcanvas-end {
  width: 100%;
}

@media (max-width: 1400px) {
  .btn-container {
    top: 40px;
  }

  .body-r-shape {
    left: -17rem;
    top: -9rem;
  }

  .home-phrase div {
    max-width: 60%;
  }

  .footer-bg {
    flex-direction: column;
  }

  .footer-video {
    max-height: 430px;
    border-top-left-radius: 20px;
  }

  .we-are {
    left: 20rem;
  }

  .our-history-img-container img:last-child {
    left: 5vw;
    top: -320px;
  }

  .our-history-img-container img:nth-child(2) {
    left: 45vw;
    top: -180px;
  }

  .how-can-we-help h2 {
    margin-bottom: 5rem;
  }

  .body-second-shape {
    left: -40rem;
    top: 5rem;
  }

  .we-are {
    left: 15rem;
  }

  .footer-desktop {
    display: none;
  }

  .footer-mobile {
    display: block;
    padding: 0 60px 15px 60px;
  }

  .footer-bg>div:last-child {
    display: block;
  }

  .footer-mobile hr {
    margin-top: 0;
  }

  .footer-content {
    padding: 105px 60px 40px 60px;
  }
}

@media (max-width: 1200px) {
  .btn-container {
    top: 30px;
  }

  .home-phrase-2 p:first-child {
    margin-top: 30px;
  }

  .home-phrase-2 .col-xl-9 {
    padding-right: 20px;
    padding-left: 20px;
  }

  .home-phrase-2 img {
    padding-right: 0;
    padding-left: 0;
    margin-bottom: 160px;
  }

  .how-can-we-help ul {
    margin-left: 6rem;
  }

  .how-can-we-help-item {
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .offcanvas-site-header .offcanvas-body li a {
    font-size: 100px;
  }

  .gradient-footer h2 {
    font-size: 80px;
    line-height: 86px;
  }

  .offcanvas-site-header .offcanvas-body li {
    font-size: 80px;
  }

  .offcanvas-site-header ol {
    line-height: 100px;
  }

  .offcanvas-body {
    padding-left: 80px !important;
  }

  .case-start h1 {
    font-size: 100px;
  }

  .next-prev-cases img {
    display: none;
  }

  .btn-container {
    position: initial;
  }

  .btn-container.right,
  .btn-container.left {
    width: fit-content;
    margin: 0;
  }

  .custom-cursor {
    display: none;
  }

  .body-t-shape {
    top: 421rem;
  }

  .body-r-shape {
    left: -45rem;
  }

  .footer-cursor {
    display: none;
  }

  .header-info {
    display: none;
  }

  .case-mg-left-2 {
    margin-left: 100px;
  }

  .body-second-shape {
    left: -32rem;
  }

  .home-phrase {
    margin-top: 12rem;
  }

  .case-mg-left-1 {
    margin-left: 60px;
  }

  .our-history-img-container img:nth-child(2) {
    left: 30vw;
    z-index: -1;
    top: -70px;
  }

  .our-history-img-container img:last-child {
    left: 0;
    top: -140px;
  }

  .culture-container {
    max-width: 80% !important;
  }

  .home-phrase div {
    max-width: 86%;
  }

  .we-are {
    left: 2.5rem;
  }

  .navbar-toggler {
    border: none;
  }

  .container {
    max-width: 940px;
  }

  .how-can-we-help h2 {
    font-size: 130px;
    line-height: 135px;
  }

  .case-data {
    margin-bottom: 50px;
  }

  .main-img-container {
    margin-top: 8rem;
  }

  .show-case-swiper h2,
  .main-img-container h2,
  .last-section-bremen h2 {
    font-size: 40px;
  }

  .custom-h2 h2 {
    font-size: 40px;
  }

  .blue-button.left {
    margin-left: 26px;
  }

  .blue-button.right {
    margin-right: 26px;
  }

  .right-btn {
    display: flex;
    justify-content: end;
  }

  .blue-button.right,
  .blue-button.left {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}

@media (max-width: 768px) {

  .show-case-swiper h2,
  .main-img-container h2,
  .last-section-bremen h2 {
    font-size: 32px;
  }

  .custom-h2 h2 {
    font-size: 32px;
  }

  .main-img-container img {
    min-height: 600px;
    object-fit: cover;
  }

  .gradient-footer h2 {
    font-size: 60px;
    line-height: 66px;
  }

  .next-prev-cases .blue-button {
    padding: 16px 24px;
  }

  .show-case-section-6 img {
    padding-bottom: 16px;
  }

  .case-start h1 {
    font-size: 70px;
  }

  .our-history h2 {
    line-height: 7.6875rem;
    font-size: 7.6875rem;
  }

  .body-t-shape {
    top: 354rem;
  }

  .how-can-we-help p {
    line-height: 36px;
  }

  .loading-screen h2 {
    font-size: 68px;
    margin-left: 30px;
  }

  .body-last-shape {
    bottom: -116rem;
    left: 40rem;
  }

  .how-can-we-help-item:last-child {
    margin-top: 0;
    margin-left: 16rem;
  }

  .how-can-we-help-item {
    gap: 30px;
  }

  .how-can-we-help h2 {
    font-size: 112px;
    line-height: 112px;
    margin-bottom: 96px;
  }

  .culture-container {
    max-width: 86% !important;
  }

  .our-history-img-container img:last-child {
    left: 0;
  }

  .we-are-creative h2:first-of-type {
    font-size: 60px;
    line-height: 54px;
  }

  .we-are-creative p {
    line-height: 40px;
    font-size: 40px;
  }

  .our-history-img-container img:nth-child(2) {
    left: 10vw;
    top: -40px;
    z-index: -1;
  }

  .container {
    max-width: 700px;
    padding-right: calc(var(--bs-gutter-x) * 1.2);
    padding-left: calc(var(--bs-gutter-x) * 1.2);
  }

  .case-mg-left-1 {
    margin-left: 20px;
  }

  .case-mg-left-2 {
    margin-left: 40px;
  }

  .we-are {
    left: 2rem;
  }

  .body-second-shape {
    left: -78rem;
    top: 4rem;
  }

  .body-second-shape img {
    width: 300vw;
  }

  .header-shape {
    top: -28vh;
    right: -19vw;
  }

  .show-shape-t {
    height: 110vh;
  }

  .we-build-your-project div:first-child h2 {
    font-size: 46px;
  }

  .we-build-your-project div:last-child h2:first-child {
    font-size: 11.875rem;
    line-height: 110px;
  }

  .we-build-your-project div:first-child {
    margin-bottom: 140px;
  }

  .we-build-your-project {
    margin-top: 16rem;
  }

  .we-build-your-project div:last-child h2:last-child {
    font-size: 5rem;
  }

  .home-phrase div {
    max-width: 100%;
  }

  .home-phrase h2 {
    font-size: 50px;
  }

  .home-phrase {
    margin-top: 13rem;
  }

  .our-cases h2 {
    font-size: 110px;
    line-height: 105px;
  }

  .our-cases {
    margin-top: 6rem;
  }

  .footer-content {
    padding: 76px 30px 40px 30px;
  }

  .footer-mobile {
    display: block;
    padding: 0 30px 15px 30px;
  }

  .offcanvas-site-header ol {
    line-height: 70px;
  }

  .offcanvas-site-header .offcanvas-body li a {
    font-size: 64px;
  }

  .offcanvas-site-header .offcanvas-body li {
    font-size: 48px;
  }

  .offcanvas-body {
    padding-left: 40px !important;
  }
}

@media (max-width: 600px) {
  .how-can-we-help-item:last-child {
    margin-left: 2rem;
  }

  .how-can-we-help h2 {
    font-size: 78px;
    line-height: 90px;
  }
}

@media (max-width: 428px) {
  .case-start h1 {
    font-size: 42px;
  }

  .main-img-container video {
    min-height: 400px;
    object-fit: cover;
  }

  .culture {
    margin-top: 15rem;
  }

  .home-phrase-2 img {
    object-position: -100px;
  }

  .case-container img {
    min-height: 300px;
    object-fit: cover;
  }

  .gradient-red {
    background: radial-gradient(100.51% 183% at 6% 77%,
        rgba(239, 3, 52, 0.8) 0%,
        rgba(239, 3, 52, 0) 40%);
    animation: gradientRed 20s ease-in-out infinite;
  }

  .gradient-purple {
    background: radial-gradient(38.51% 74.51% at 100% 3%,
        #9747ff 0%,
        rgba(151, 71, 255, 0) 180%);
    animation: gradientPurple 20s ease-in-out infinite;
  }

  .gradient-footer h2 {
    font-size: 32px;
    line-height: 42px;
  }

  .next-prev-cases .blue-button a {
    font-size: 12px;
  }

  .blue-button.right,
  .blue-button.left {
    margin-left: 0;
    margin-right: 0;
    width: 80%;
    justify-content: center;
  }

  .blue-button.left {
    margin-top: 30px;
    margin-bottom: 22px;
  }

  .show-case-swiper h2 {
    font-size: 28px;
    padding: 0 20px;
  }

  .custom-h2 h2 {
    font-size: 28px;
  }

  .main-img-container h2 ,
  .last-section-bremen h2{
    font-size: 28px;
  }

  .blue-button.right {
    margin-bottom: 30px;
    margin-top: 0;
  }

  .right-btn {
    justify-content: center;
  }

  .left-btn {
    display: flex;
    justify-content: center;
  }

  .header-shape {
    top: -26vh;
    right: -35vw;
  }

  header {
    padding-top: 20px;
  }

  .body-r-shape {
    left: -66rem;
    top: -14rem;
  }

  .body-t-shape img {
    width: 160vw;
  }

  .body-g-shape {
    left: -4rem;
    top: 124rem;
  }

  .body-t-shape {
    top: 172rem;
    left: 0rem;
  }

  .case-container {
    margin-top: 10px;
  }

  .case-container p:last-of-type {
    padding-left: 0;
    font-size: 20px;
  }

  .case-container p:first-of-type {
    padding-left: 0;
    font-size: 18px;
  }

  .footer-text h2 {
    font-size: 46px;
    line-height: 50px;
  }

  .home-phrase-2 {
    margin-top: 8rem;
  }

  .body-last-shape {
    bottom: -124rem;
  }

  .how-can-we-help h2 {
    font-size: 60px;
    line-height: 60px;
  }

  .culture-container {
    max-width: 100% !important;
  }

  .we-are-creative {
    margin-top: 4rem;
  }

  .our-cases h2 {
    font-size: 60px;
    line-height: 60px;
  }

  .we-are-creative p {
    line-height: 26px;
    font-size: 20px;
  }

  .we-are-creative h2:first-of-type {
    font-size: 36px;
    line-height: 36px;
  }

  .our-history-img-container img:nth-child(2) {
    top: -10px;
  }

  .our-history-img-container img:last-child {
    top: -30px;
  }

  .case-mg-left-2 {
    margin-left: 0;
  }

  .our-history h2 {
    line-height: 3.6875rem;
    font-size: 3.6875rem;
  }

  .case-mg-left-1 {
    margin-left: 0;
  }

  .we-build-your-project div:last-child h2:first-child {
    font-size: 6.5rem;
    line-height: 70px;
  }

  .home-phrase h2 {
    line-height: 60px;
  }

  .we-build-your-project {
    margin-top: 14rem;
  }

  .we-build-your-project div:first-child {
    margin-bottom: 90px;
  }

  .we-build-your-project div:last-child h2:last-child {
    font-size: 2.8rem;
  }

  .we-build-your-project div:first-child h2 {
    font-size: 25px;
  }

  .we-are h1 {
    font-size: 56px;
    line-height: 60px;
  }

  .body-second-shape {
    left: -40rem;
    top: 6rem;
  }
}