@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");



@font-face {
    font-family: CBlack;
    src: url(font/CabinetGrotesk-Black.otf);
}
@font-face {
    font-family: CBold;
    src: url(font/CabinetGrotesk-Bold.otf);
}
@font-face {
    font-family: CEBold;
    src: url(font/CabinetGrotesk-Extrabold.otf);
}
@font-face {
    font-family: CELight;
    src: url(font/CabinetGrotesk-Extralight.otf);
}
@font-face {
    font-family: CLight;
    src: url(font/CabinetGrotesk-Light.otf);
}
@font-face {
    font-family: CMedium;
    src: url(font/CabinetGrotesk-Medium.otf);
}
@font-face {
    font-family: CRegular;
    src: url(font/CabinetGrotesk-Regular.otf);
}

body {
    background: linear-gradient(to bottom, #F8F2DC, #d8d3bf);
    font-family: CMedium, sans-serif; 
    overflow-x: hidden;  
}

.custom-nav {
    gap: 3rem !important;
    
}
.custom-nav a{
    color: rgb(255, 255, 255);
    font-size: 20px;
}





.menu {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: none;
  padding: 0;
  z-index: 100000 !important;
}
.line {
  fill: none;
  stroke: rgb(255, 255, 255);
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}
.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}
.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

.custom-nav a:hover{
    color: #b56262;
}

.image{
    width: 7%;
}

/* Initial state: hidden and moved down */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.7s ease, transform 1.7s cubic-bezier(0.23, 1, 0.32, 1);
}

/* When revealed: visible and in place */
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.home {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 98vh;
  background-image: url('Fotografias\ Monte\ 2/Monte_ACTUAL2_7110.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1000 !important;
} 

  
.home img{
    position: fixed;
    background-repeat: no-repeat !important;
}

.home2{
    color: rgb(255, 255, 255);
}

.home2 h1{
 font-family: CBold;
 font-size: 70px;
}


.home2 h1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;   /* cobre mais área atrás do texto */
  height: 98vh;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.6) 100%,   /* preto suave no início */
    rgba(0, 0, 0, 0.3) 100%,  /* vai suavizando */
    rgba(0, 0, 0, 0) 100%    /* desaparece gradualmente */
  );
  z-index: -2;
} 

.home2 p{
    font-size: 20px;
}


button {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: "CLight", sans-serif !important;
   }
   
   button.learn-more {
    width: 12rem;
    height: auto;
   }
   
   button.learn-more .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 3rem;
    height: 3rem;
    background: #ffffff;
    border-radius: 1.625rem;
   }
   
   button.learn-more .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #000000;
   }
   
   button.learn-more .circle .icon.arrow {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.625rem;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
   }
   
   button.learn-more .circle .icon.arrow::before {
    position: absolute;
    content: "";
    top: -0.29rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid #000000;
    border-right: 0.125rem solid #000000;
    transform: rotate(45deg);
   }
   
   button.learn-more .button-text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 0;
    margin: 0 0 0 1.85rem;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    text-transform: uppercase;
   }
   
   button:hover .circle {
    width: 100%;
   }
   
   button:hover .circle .icon.arrow {
    background: #ffffff;
    transform: translate(1rem, 0);
   }
   
   button:hover .button-text {
    color: #000000;
   }

   @media (min-width: 992px) {
  .rounded-lg-3 { border-radius: .3rem; }
}


   button.learn-more2 {
    width: 12rem;
    height: auto;
   }
   
   button.learn-more2 .circle2 {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 3rem;
    height: 3rem;
    background: #000000;
    border-radius: 1.625rem;
   }
   
   button.learn-more2 .circle2 .icon2 {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #ffffff;
   }
   
   button.learn-more2 .circle2 .icon2.arrow2{
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.625rem;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
   }
   
   button.learn-more2 .circle2 .icon2.arrow2::before {
    position: absolute;
    content: "";
    top: -0.29rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid #ffffff;
    border-right: 0.125rem solid #ffffff;
    transform: rotate(45deg);
   }
   
   button.learn-more2 .button-text2 {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 0;
    margin: 0 0 0 1.85rem;
    color: #000000;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    text-transform: uppercase;
   }
   
   button:hover .circle2 {
    width: 100%;
   }
   
   button:hover .circle2 .icon2.arrow2 {
    background: #000000 ;
    transform: translate(1rem, 0);
   }
   
   button:hover .button-text2 {
    color: #ffffff;
   }

   @media (min-width: 992px) {
  .rounded-lg-3 { border-radius: .3rem; }
}


.about{
    color: #232323!important;
    font-family: "CLight";

}

.about h1{
    color: #232323 !important ;
    font-family: "CMedium", sans-serif;
}

.about1{
    margin-top: 13% !important;
}

.lead {
font-size: 25px !important;

}


.footer-20192::before {
  content: "";
  display: block;
  width: 90%;               /* 👈 line length */
  border-top: 1px solid #232323;
  margin: 0 auto 2rem auto;   /* 👈 centers the line */
}

.footer-20192 {
  
  position: relative;
  color: #232323;
  font-family: "CBold", sans-serif;
  padding: 7rem 0;
}
  .footer-20192 .container {
    position: relative; }
  .footer-20192 h3 {
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: 0;
    line-height: 1.5; }
  .footer-20192 .links li {
    margin-bottom: 10px;
    line-height: 1.5;
    display: block; }
    .footer-20192 .links li a {
      color: #000000  ; 
      font-family: "CELight", sans-serif;
    }
      .footer-20192 .links li a:hover {
        color: #232323; }
  .footer-20192 .social li {
    display: inline-block;
    position: relative; }
    .footer-20192 .social li a {
      position: relative;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: inline-block;
      margin: 0;
      padding: 0;
      background-color: #9c4646;
      color: #ffffff; }
      .footer-20192 .social li a > span {
        position: absolute;
        line-height: 1;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }
  .footer-20192 .footer-logo {
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: .1rem; }
  .footer-20192 .copyright {
    color: #9d9d9d; }
  .footer-20192 .cta {
    -webkit-box-shadow: -20px -20px 0 0 rgba(52, 58, 64, 0.2);
    box-shadow: -20px -20px 0 0 rgba(52, 58, 64, 0.2);
    padding: 20px;
    background-color: #494949;
    top: -150px;
    position: relative; }
    .footer-20192 .cta h2, .footer-20192 .cta h3 {
      line-height: 1.5; }
    .footer-20192 .cta h3 {
      font-size: 20px; }



      .featured-projects {
        margin-top: 3%;

      }


      .fh1{
        font-size: 50px;
        color: #232323;
        font-family:  "CRegular", sans-serif;
      }


/* Smartphones (portrait and landscape) ----------- */
@media only screen and (max-width: 600px) {
  .hoh1{
    font-size: 50px !important;
  }

  .hoh1 .brkl{
    display: block;
  }

  .home{
    height: 80vh;
  }

  .image{
    width: 15%;
  }

  .menu{
    display: flex;
  }

.navbar-collapse {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: #f8f2dc !important;
  z-index: 9999 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;  /* Vertically centers children */
  align-items: center !important;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  box-sizing: border-box !important;
  padding-top: 0 !important; /* optionally reset padding if needed */
}

  .navbar-collapse.show {
    opacity: 1;
    pointer-events: auto;
  }
  .navbar-collapse ul.custom-nav {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  justify-content: center !important;
  margin-top: 0 !important;
  height: 100%; /* Make ul full height so it centers vertically */
    gap: 2rem !important;
    width: 100vw !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    list-style: none;
  }

    .navbar-collapse ul.custom-nav > li {
    width: 100vw !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }
.navbar-collapse ul.custom-nav a.nav-link {
    display: inline-block !important;  /* change from block to inline-block */
    width: auto !important;             /* undo full width */
    border-bottom: 2px solid #9c4646 !important;
    font-size: 2rem !important;
    text-align: center !important;
    background: none !important;
    color: #232323 !important;
}

.menu-open {
  overflow: hidden !important;
  height: 100vh !important;
}

.custom-nav a{
  border-bottom: 2px solid #9c4646 !important;
  display: inline-block;
  padding-bottom: 2px;
}

.menu.opened {
  color: black !important;
  stroke: black;
  border-radius: 4px;   /* optional: add rounding */
}

.menu.opened svg .line {
  stroke: black !important;
}

  .footer-20192 .footer-logo,
  .footer-20192 .footer-logo img,
  .footer-20192 .social li a.footer-logo {
    width: auto !important;
    max-width: 80px !important; /* change to desired size */
    height: auto !important;
    border: none !important;
    display: inline-block;
  }

.mobile {
  display: none !important;
}

  .home2 h1::before{
    height: 100%;
  }

  .home{
    height: 100%;
  }

  .about1 {
    flex-direction: column-reverse !important;
  }

  .heroimg{
    width: 90%;
  }

  .herop{
    font-size: 20px !important;
  }

  .heroh1{
    margin-top: 10%;
    font-size: 25px;
  }


  .projects-scroll {
    gap: 0.3rem !important;         /* smaller gap on mobile */
    padding: 0 0.75rem;
  }

  .project-card {
    height: 60vh;       /* was 90vh — reduce to fit mobile */
    max-width: 92vw;    /* keep card narrower than viewport */
    flex: 0 0 auto;
    margin-top: 3%;
  }

  .project-card img {
    width: 100% !important;   /* override fixed 500px */
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
}

/* Tablets (portrait and landscape) ----------- */
@media only screen and (min-width: 601px) and (max-width: 900px) {
  /* Styles for tablets */
}




.projects-scroll {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 2rem;
  padding: 0 2rem;
  -webkit-overflow-scrolling: touch;
}

.project-card{
  flex: 0 0 auto;
  scroll-snap-align: start;
  position: relative;
    /* show partial of next/previous image */
  height: 90vh; /* nearly full screen height */
  overflow: hidden;
  margin-top: 5%;
}

.project-card img {
  width: 500px;
  height: 100%;
  object-fit: cover;
}

.projects-scroll::-webkit-scrollbar {
  display: none; /* hide scrollbar */
}

.projects-scroll .project-card img {
  cursor: url('images/circle-arrow-right-svgrepo-com.png') 16 16, pointer;
  /* 16 16 is the hotspot (center of the icon), adjust as needed */
}

.image-gradient-fade {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100% !important;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #f3ecd5 100%);
  pointer-events: none;
  z-index: 10;
}

/* From Uiverse.io by Nawsome */ 
.boxes {
  --size: 32px;
  --duration: 800ms;
  height: calc(var(--size) * 2);
  width: calc(var(--size) * 3);
  position: relative;
  transform-style: preserve-3d;
  transform-origin: 50% 50%;
  margin-top: calc(var(--size) * 1.5 * -1);
  transform: rotateX(60deg) rotateZ(45deg) rotateY(0deg) translateZ(0px);
}

.boxes .box {
  width: var(--size);
  height: var(--size);
  top: 0;
  left: 0;
  position: absolute;
  transform-style: preserve-3d;
}

.boxes .box:nth-child(1) {
  transform: translate(100%, 0);
  -webkit-animation: box1 var(--duration) linear infinite;
  animation: box1 var(--duration) linear infinite;
}

.boxes .box:nth-child(2) {
  transform: translate(0, 100%);
  -webkit-animation: box2 var(--duration) linear infinite;
  animation: box2 var(--duration) linear infinite;
}

.boxes .box:nth-child(3) {
  transform: translate(100%, 100%);
  -webkit-animation: box3 var(--duration) linear infinite;
  animation: box3 var(--duration) linear infinite;
}

.boxes .box:nth-child(4) {
  transform: translate(200%, 0);
  -webkit-animation: box4 var(--duration) linear infinite;
  animation: box4 var(--duration) linear infinite;
}

.boxes .box > div {
  --background: #5C8DF6;
  --top: auto;
  --right: auto;
  --bottom: auto;
  --left: auto;
  --translateZ: calc(var(--size) / 2);
  --rotateY: 0deg;
  --rotateX: 0deg;
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--background);
  top: var(--top);
  right: var(--right);
  bottom: var(--bottom);
  left: var(--left);
  transform: rotateY(var(--rotateY)) rotateX(var(--rotateX)) translateZ(var(--translateZ));
}

.loading .box > div:nth-child(1) {
  --top: 0;
  --left: 0;
}

.loading .box > div:nth-child(2) {
  --background: #145af2;
  --right: 0;
  --rotateY: 90deg;
}

.loading .box > div:nth-child(3) {
  --background: #447cf5;
  --rotateX: -90deg;
}

.loading .box > div:nth-child(4) {
  --background: #DBE3F4;
  --top: 0;
  --left: 0;
  --translateZ: calc(var(--size) * 3 * -1);
}

@-webkit-keyframes box1 {
  0%, 50% {
    transform: translate(100%, 0);
  }

  100% {
    transform: translate(200%, 0);
  }
}

@keyframes box1 {
  0%, 50% {
    transform: translate(100%, 0);
  }

  100% {
    transform: translate(200%, 0);
  }
}

@-webkit-keyframes box2 {
  0% {
    transform: translate(0, 100%);
  }

  50% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(100%, 0);
  }
}

@keyframes box2 {
  0% {
    transform: translate(0, 100%);
  }

  50% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(100%, 0);
  }
}

@-webkit-keyframes box3 {
  0%, 50% {
    transform: translate(100%, 100%);
  }

  100% {
    transform: translate(0, 100%);
  }
}

@keyframes box3 {
  0%, 50% {
    transform: translate(100%, 100%);
  }

  100% {
    transform: translate(0, 100%);
  }
}

@-webkit-keyframes box4 {
  0% {
    transform: translate(200%, 0);
  }

  50% {
    transform: translate(200%, 100%);
  }

  100% {
    transform: translate(100%, 100%);
  }
}

@keyframes box4 {
  0% {
    transform: translate(200%, 0);
  }

  50% {
    transform: translate(200%, 100%);
  }

  100% {
    transform: translate(100%, 100%);
  }
}









/*LOADER LOADER LOADER*/


.banter-loader {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 72px;
  height: 72px;
  margin-left: -36px;
  margin-top: -36px;
}

.banter-loader__box {
  float: left;
  position: relative;
  width: 20px;
  height: 20px;
  margin-right: 6px;
}

.banter-loader__box:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}

.banter-loader__box:nth-child(3n) {
  margin-right: 0;
  margin-bottom: 6px;
}

.banter-loader__box:nth-child(1):before, .banter-loader__box:nth-child(4):before {
  margin-left: 26px;
}

.banter-loader__box:nth-child(3):before {
  margin-top: 52px;
}

.banter-loader__box:last-child {
  margin-bottom: 0;
}

@keyframes moveBox-1 {
  9.0909090909% {
    transform: translate(-26px, 0);
  }

  18.1818181818% {
    transform: translate(0px, 0);
  }

  27.2727272727% {
    transform: translate(0px, 0);
  }

  36.3636363636% {
    transform: translate(26px, 0);
  }

  45.4545454545% {
    transform: translate(26px, 26px);
  }

  54.5454545455% {
    transform: translate(26px, 26px);
  }

  63.6363636364% {
    transform: translate(26px, 26px);
  }

  72.7272727273% {
    transform: translate(26px, 0px);
  }

  81.8181818182% {
    transform: translate(0px, 0px);
  }

  90.9090909091% {
    transform: translate(-26px, 0px);
  }

  100% {
    transform: translate(0px, 0px);
  }
}

.banter-loader__box:nth-child(1) {
  animation: moveBox-1 4s infinite;
}

@keyframes moveBox-2 {
  9.0909090909% {
    transform: translate(0, 0);
  }

  18.1818181818% {
    transform: translate(26px, 0);
  }

  27.2727272727% {
    transform: translate(0px, 0);
  }

  36.3636363636% {
    transform: translate(26px, 0);
  }

  45.4545454545% {
    transform: translate(26px, 26px);
  }

  54.5454545455% {
    transform: translate(26px, 26px);
  }

  63.6363636364% {
    transform: translate(26px, 26px);
  }

  72.7272727273% {
    transform: translate(26px, 26px);
  }

  81.8181818182% {
    transform: translate(0px, 26px);
  }

  90.9090909091% {
    transform: translate(0px, 26px);
  }

  100% {
    transform: translate(0px, 0px);
  }
}

.banter-loader__box:nth-child(2) {
  animation: moveBox-2 4s infinite;
}

@keyframes moveBox-3 {
  9.0909090909% {
    transform: translate(-26px, 0);
  }

  18.1818181818% {
    transform: translate(-26px, 0);
  }

  27.2727272727% {
    transform: translate(0px, 0);
  }

  36.3636363636% {
    transform: translate(-26px, 0);
  }

  45.4545454545% {
    transform: translate(-26px, 0);
  }

  54.5454545455% {
    transform: translate(-26px, 0);
  }

  63.6363636364% {
    transform: translate(-26px, 0);
  }

  72.7272727273% {
    transform: translate(-26px, 0);
  }

  81.8181818182% {
    transform: translate(-26px, -26px);
  }

  90.9090909091% {
    transform: translate(0px, -26px);
  }

  100% {
    transform: translate(0px, 0px);
  }
}

.banter-loader__box:nth-child(3) {
  animation: moveBox-3 4s infinite;
}

@keyframes moveBox-4 {
  9.0909090909% {
    transform: translate(-26px, 0);
  }

  18.1818181818% {
    transform: translate(-26px, 0);
  }

  27.2727272727% {
    transform: translate(-26px, -26px);
  }

  36.3636363636% {
    transform: translate(0px, -26px);
  }

  45.4545454545% {
    transform: translate(0px, 0px);
  }

  54.5454545455% {
    transform: translate(0px, -26px);
  }

  63.6363636364% {
    transform: translate(0px, -26px);
  }

  72.7272727273% {
    transform: translate(0px, -26px);
  }

  81.8181818182% {
    transform: translate(-26px, -26px);
  }

  90.9090909091% {
    transform: translate(-26px, 0px);
  }

  100% {
    transform: translate(0px, 0px);
  }
}

.banter-loader__box:nth-child(4) {
  animation: moveBox-4 4s infinite;
}

@keyframes moveBox-5 {
  9.0909090909% {
    transform: translate(0, 0);
  }

  18.1818181818% {
    transform: translate(0, 0);
  }

  27.2727272727% {
    transform: translate(0, 0);
  }

  36.3636363636% {
    transform: translate(26px, 0);
  }

  45.4545454545% {
    transform: translate(26px, 0);
  }

  54.5454545455% {
    transform: translate(26px, 0);
  }

  63.6363636364% {
    transform: translate(26px, 0);
  }

  72.7272727273% {
    transform: translate(26px, 0);
  }

  81.8181818182% {
    transform: translate(26px, -26px);
  }

  90.9090909091% {
    transform: translate(0px, -26px);
  }

  100% {
    transform: translate(0px, 0px);
  }
}

.banter-loader__box:nth-child(5) {
  animation: moveBox-5 4s infinite;
}

@keyframes moveBox-6 {
  9.0909090909% {
    transform: translate(0, 0);
  }

  18.1818181818% {
    transform: translate(-26px, 0);
  }

  27.2727272727% {
    transform: translate(-26px, 0);
  }

  36.3636363636% {
    transform: translate(0px, 0);
  }

  45.4545454545% {
    transform: translate(0px, 0);
  }

  54.5454545455% {
    transform: translate(0px, 0);
  }

  63.6363636364% {
    transform: translate(0px, 0);
  }

  72.7272727273% {
    transform: translate(0px, 26px);
  }

  81.8181818182% {
    transform: translate(-26px, 26px);
  }

  90.9090909091% {
    transform: translate(-26px, 0px);
  }

  100% {
    transform: translate(0px, 0px);
  }
}

.banter-loader__box:nth-child(6) {
  animation: moveBox-6 4s infinite;
}

@keyframes moveBox-7 {
  9.0909090909% {
    transform: translate(26px, 0);
  }

  18.1818181818% {
    transform: translate(26px, 0);
  }

  27.2727272727% {
    transform: translate(26px, 0);
  }

  36.3636363636% {
    transform: translate(0px, 0);
  }

  45.4545454545% {
    transform: translate(0px, -26px);
  }

  54.5454545455% {
    transform: translate(26px, -26px);
  }

  63.6363636364% {
    transform: translate(0px, -26px);
  }

  72.7272727273% {
    transform: translate(0px, -26px);
  }

  81.8181818182% {
    transform: translate(0px, 0px);
  }

  90.9090909091% {
    transform: translate(26px, 0px);
  }

  100% {
    transform: translate(0px, 0px);
  }
}

.banter-loader__box:nth-child(7) {
  animation: moveBox-7 4s infinite;
}

@keyframes moveBox-8 {
  9.0909090909% {
    transform: translate(0, 0);
  }

  18.1818181818% {
    transform: translate(-26px, 0);
  }

  27.2727272727% {
    transform: translate(-26px, -26px);
  }

  36.3636363636% {
    transform: translate(0px, -26px);
  }

  45.4545454545% {
    transform: translate(0px, -26px);
  }

  54.5454545455% {
    transform: translate(0px, -26px);
  }

  63.6363636364% {
    transform: translate(0px, -26px);
  }

  72.7272727273% {
    transform: translate(0px, -26px);
  }

  81.8181818182% {
    transform: translate(26px, -26px);
  }

  90.9090909091% {
    transform: translate(26px, 0px);
  }

  100% {
    transform: translate(0px, 0px);
  }
}

.banter-loader__box:nth-child(8) {
  animation: moveBox-8 4s infinite;
}

@keyframes moveBox-9 {
  9.0909090909% {
    transform: translate(-26px, 0);
  }

  18.1818181818% {
    transform: translate(-26px, 0);
  }

  27.2727272727% {
    transform: translate(0px, 0);
  }

  36.3636363636% {
    transform: translate(-26px, 0);
  }

  45.4545454545% {
    transform: translate(0px, 0);
  }

  54.5454545455% {
    transform: translate(0px, 0);
  }

  63.6363636364% {
    transform: translate(-26px, 0);
  }

  72.7272727273% {
    transform: translate(-26px, 0);
  }

  81.8181818182% {
    transform: translate(-52px, 0);
  }

  90.9090909091% {
    transform: translate(-26px, 0);
  }

  100% {
    transform: translate(0px, 0);
  }
}

.banter-loader__box:nth-child(9) {
  animation: moveBox-9 4s infinite;
}


