/* ========================================================= FONTS */
@font-face {
  font-family: "Nokio Medium";
  src: url("Nokio-Medium.woff2") format("woff2"),
    url("Nokio-Medium.woff") format("woff"),
    url("Nokio-Medium.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "FunCityLevel2Stencil";
  src: url("FunCityLevel2Stencil.woff2") format("woff2"),
    url("FunCityLevel2Stencil.woff") format("woff"),
    url("FunCityLevel2Stencil.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

.nokio-text {
  font-family: "Nokio Medium", sans-serif;
}

.fun-city-text {
  font-family: "FunCityLevel2Stencil", sans-serif;
}

.comfortaa-text {
  font-family: "Comfortaa", sans-serif;
}

* {
  font-family: "Comfortaa", sans-serif;
}

/* ========================================================= Scrollbar */

@-moz-document url-prefix() {
  * {
    scrollbar-width: thin;
    scrollbar-color: transparent;
  }
}

::-webkit-scrollbar {
  width: 4px;

  @media (max-width: 450px) {
    width: 1px;
  }
}

::-webkit-scrollbar-thumb {
  background: #e51b23;
  border-radius: 10px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-button {
  display: none;
}

html {
  scroll-behavior: smooth;
}

#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  background-color: #333;
  color: white;
  border: none;
  max-width: 35px;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 100%;
}
/* ========================================================= Background & Colors */

.bg-white {
  background-color: white;
  transition: 0.3s;
}

.bg-black {
  background-color: #111319;
  transition: 0.3s;
}

.bg-grey {
  background-color: #eeeeee;
  transition: 0.3s;
}

.bg-red {
  background-color: #e51b23;
  transition: 0.3s;
}

.text-white {
  color: white !important;
}

.text-gray {
  color: #9b9b9b;
}

.text-black {
  color: black;
}
.text-red {
  color: #e51b23;
}

/* ========================================================= Positions */

.pos-relative {
  position: relative;
}

.pos-relative.overflow-hidden {
  overflow: hidden;
}

.pos-absolute {
  position: absolute;
}

.d-flex {
  display: flex !important;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-column {
  flex-direction: column;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-end {
  justify-content: flex-end;
}

.align-items-center {
  align-items: center;
}

.align-items-start {
  align-items: flex-start;
}

.align-items-end {
  align-items: flex-end;
}

.align-items-baseline {
  align-items: baseline;
}

/* ========================================================= Text align */

.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-justify {
  text-align: justify;
}

/* ========================================================= Widths */

.w-100 {
  width: 100%;
}
.w-50 {
  width: 50%;
}
.w-25 {
  width: 25%;
}

/* ========================================================= General */

body {
  margin: 0;
}

.container {
  max-width: 1320px;
  padding: 0 15px;
  margin: 0 auto;
}

li.list-none {
  list-style: none;
}

.font-large {
  font-size: 66px;
  letter-spacing: -11.68px;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================================= Header  */

.sub-header {
  position: relative;
  margin: 25px 0 5px;
  z-index: 1;
}

.navigation ul {
  padding: 0 40px;
}

header {
  position: sticky;
  top: 0;
  height: 0;
  z-index: 3;
}

header a {
  position: relative;
  color: white;
  text-decoration: none;
  font-size: 18px;
}

header a:not(.logo-mobile):hover::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #e51b23;
}

a.logo {
  text-decoration: unset;
  font-size: 22px;
  margin: 0;
  color: white;
}

a.logo h3 {
  margin: 0;
  font-weight: 100;
}

.navigation {
  /* background: black; */
  padding: 20px 0;
}

/* ========================================================= Burger menu  */
.burger-menu {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 25px;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  z-index: 100;
}

a.logo-mobile {
  opacity: 0;
  transition: 0.5s;
}

a.logo-mobile.show {
  opacity: 1;
  transition: 0.5s;
}

a.logo-mobile h3 {
  font-size: 26px;
  font-weight: 100;
}

.burger-menu span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 3px;
  opacity: 1;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.burger-menu span:nth-child(1) {
  top: 0px;
}

.burger-menu span:nth-child(2) {
  top: 10px;
}

.burger-menu span:nth-child(3) {
  top: 20px;
}

.burger-menu.active span {
  background: black;
}

.burger-menu.active span:nth-child(1) {
  top: 10px;
  transform: rotate(135deg);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.burger-menu.active span:nth-child(3) {
  top: 10px;
  transform: rotate(-135deg);
}
@media (min-width: 890px) {
  a.logo-mobile {
    display: none;
  }
}
@media (max-width: 890px) {
  .burger-menu {
    display: block;
  }

  .navigation ul {
    display: none;
    position: absolute;
    top: -490px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 99;
    transition: 0.3s;
  }

  .navigation ul.active {
    display: flex;
    top: 0;
  }

  .navigation ul li {
    margin: 10px 0;
    width: 100%;
    text-align: center;
  }
}

/* ========================================================= Hero Image  */

.hero-image {
  margin-top: -135px;
  background-image: url("hero-image-colored.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 1165px;
  position: relative;
  transition: background-image 0.5s ease;
}

.image-colored {
  top: 0;
  z-index: -1;
}

/* ========================================================= Warehouse-Company Section  */
section.company h2 {
  margin-top: 0;
  font-size: 34px;
  font-weight: 100;
}

.warehouse-content {
  border-radius: 0px 28px 28px 0px;
  width: 100%;
  max-width: 640px;
  height: 705px;
  padding: 80px 100px 45px 0px;
  box-sizing: border-box;
}

.warehouse-content-text {
  max-width: 240px;
}

h3.fun-city-text.text-white {
  position: absolute;
  margin: 0;
  top: 53%;
  padding-bottom: 90px;
  transform: translateY(-50%) matrix(0, -1, 1, 0, 0, 0);
  letter-spacing: -3.3px;
}

.warehouse-content-text p {
  font-size: 18px;
  line-height: 28px;
  margin: 0;
}

.company-content h3 {
  max-width: fit-content;
  margin: 0 auto;
}

@media only screen and (min-width: 850px) {
  .left-red-lines:before {
    content: "";
    background-image: url("red-lines.svg");
    width: 32px;
    height: 52px;
    background-repeat: no-repeat;
    position: absolute;
    top: 70%;
    left: -35px;
    transform: translate(-50%, -50%);
  }

  .left-black-lines:before {
    content: "";
    background-image: url("black-lines.svg");
    width: 32px;
    height: 52px;
    background-repeat: no-repeat;
    position: absolute;
    top: 70%;
    left: -35px;
    transform: translate(-50%, -50%);
  }

  .right-red-lines:before {
    content: "";
    background-image: url("red-lines2.svg");
    width: 32px;
    height: 52px;
    background-repeat: no-repeat;
    position: absolute;
    top: 60%;
    right: -35px;
    transform: translate(50%, -50%);
  }

  .right-black-lines:before {
    content: "";
    background-image: url("black-lines2.svg");
    width: 32px;
    height: 52px;
    background-repeat: no-repeat;
    position: absolute;
    top: 60%;
    right: -35px;
    transform: translate(50%, -50%);
  }
}

.company-content {
  max-width: 910px;
  margin: 0 auto 0 75px;
  padding-right: 20px;
}
.company-content-text p {
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
}

.company-tile {
  width: 200px;
  height: 200px;
  border-radius: 20px;
  box-sizing: border-box;
  padding: 0 12px;
  row-gap: 20px;
}

.company-tiles {
  margin-top: 35px;
  row-gap: 55px;
}

.company-tiles .slick-slide > div:first-child {
  margin-bottom: 20px;
}

.company-tiles .slick-track {
  display: flex;
  justify-content: center;
  gap: 22px;
}

.warehouse-content img {
  bottom: 30px;
  right: 40px;
}

.company-tile:hover {
  background-color: black;
}

.company-tile:hover img,
.company-tile:hover .text-visible {
  opacity: 0;
}

.company-tile:hover .text-hidden {
  opacity: 1;
}

.text-hidden {
  opacity: 0;
  top: 50%;
  left: 50%;
  width: 100%;
  padding: 0 25px;
  box-sizing: border-box;
  text-align: center;
  transform: translate(-50%, -50%);
}

.company-tile-text h4 {
  margin: 0;
}

/* ========================================================= Distribution Channels Section  */
.gray-scale {
  filter: grayscale(100%);
  transition: 0.3s;
}

.slider-image:hover .gray-scale {
  filter: grayscale(0%);
}

.slider-image:hover .text-hidden {
  opacity: 1;
}

.slider-image .text-hidden {
  background: #e51b23de;
  font-size: 25px;
  font-weight: 300;
  margin: 0;
  display: flex;
  min-height: 180px;
  align-items: center;
  justify-content: center;
}

/* ========================================================= Our Milestones Section  */

.milestone-tile {
  border-radius: 28px;
  padding: 60px 20px 80px 40px;
  max-width: 425px;
  max-height: 355px;
  box-sizing: border-box;
  margin: 0 10px !important;
}

.milestone-year h3,
.milestone-tile p {
  margin: 0;
  letter-spacing: normal;
}

.milestone-year p {
  margin-left: 20px;
}

.large-year {
  margin-left: auto !important;
  font-size: 39px;
  transition: 0.3s;
}

.milestone-tile:before {
  content: "";
  background-color: white;
  width: 100%;
  max-width: 380px;
  height: 1px;
  position: absolute;
  top: calc(35% + 25px);
  left: 50%;
  transform: translateX(-50%);
}

.milestone-tile:after {
  content: "";
  background-color: #e51b23;
  border-radius: 20px;
  position: absolute;
  width: 68px;
  height: 13px;
  top: 40.5%;
  left: 40px;
  transition: 0.5s;
}

.milestone-tile:hover:after {
  left: 80%;
}

.milestone-tile:hover .large-year {
  color: #e51b23 !important;
}

.milestone-text {
  margin-top: 60px;
  padding-right: 20px;
}
.milestone-text p {
  margin-top: 15px;
}

.milestones-container {
  margin-bottom: 40px;
}

section.our-milestones {
  padding-bottom: 60px;
}

.our-milestones .statistics {
  padding-left: 10px;
  font-weight: bold;
}

.milestone-text ul {
  padding: 0;
}

/* ========================================================= Mission Vision Section  */

.middle-image {
  width: 748px;
  height: 747px;
  background-repeat: no-repeat;
}

.middle-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("mission-vision-background.png");
  background-repeat: no-repeat;
  background-size: cover;
  filter: grayscale(100%);
  z-index: 0;
  transition: 0.3s;
}

.middle-image p {
  font-weight: 500 !important;
  line-height: 26px !important;
  margin: 0 !important;
}

.text-opacity {
  opacity: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
  border-radius: 100%;
  padding: 145px 40px;
  max-width: 368px;
  box-sizing: border-box;
  background-color: #e51b23bd;
}

.middle-image:hover::before {
  filter: grayscale(0%);
}

.middle-image:hover .text-opacity {
  opacity: 1;
}

.mission-container,
.vision-container {
  max-width: 255px;
}

section.mission-vision {
  padding: 105px 0;
}

section.mission-vision p {
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  line-height: 20px;
}

.mission-container h3 {
  top: 40px;
  left: 90px;
  margin-bottom: 0;
  z-index: 1;
}

.vision-container h3 {
  bottom: 70px;
  right: 90px;
  margin-top: 0;
}
/* ========================================================= Reassuarance Cycles Section  */

.reassuarance-cycles {
  position: relative;
  height: 536px;
  background-repeat: no-repeat;
  transition: 0.3s;
}

.reassuarance-cycles:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("reassuarance-cycles-background.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  z-index: -1;
  transition: 0.3s;
}

.reassuarance-cycles:hover:before {
  filter: unset;
}

.reassuarance-cycles:hover .bg-red {
  background-color: black;
}
.reassuarance-cycles:hover .bg-black {
  background-color: #e51b23;
}

.reassuarance-tile {
  width: 225px !important;
  height: 225px !important;
  max-height: 225px;
  border-radius: 100%;
  box-sizing: border-box;
  padding: 0 35px;
  margin: 0 21px !important;
}

.reassuarance-tile h3 {
  font-size: 22px;
  font-weight: bold;
}

.reassuarance-tile:first-child {
  margin-left: 0 !important;
}
/* ========================================================= Our Commitments Section  */
.milestones-containers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.our-commitments .milestone-tile:before {
  top: calc(23% + 25px);
}

.our-commitments .milestone-tile:after {
  top: calc(23% + 18px);
}

.our-commitments .milestone-text {
  font-size: 18px;
  line-height: 22px;
}

.our-commitments .milestone-tile {
  border-radius: 28px;
  padding: 50px 20px 80px 40px;
  height: 340px;
  box-sizing: border-box;
  margin: 0 !important;
  width: calc(33.33% - 20px); /* Ensures 3 per row */
  max-width: 425px;
}

.our-commitments .slick-slide > div:first-child {
  margin-bottom: 20px;
}

@media (max-width: 1385px) {
  .our-commitments .milestone-tile {
    width: calc(100% / 3 - 20px);
    margin: 0 10px !important;
  }
}

@media (max-width: 768px) {
  .our-commitments .milestone-tile {
    width: 100%; /* Full width for mobile */
  }

  .reassuarance-cycles .bg-red {
    background-color: #e51b23 !important;
  }
  .reassuarance-cycles .bg-black {
    background-color: #e51b23 !important;
  }

  .middle-image::before {
    filter: grayscale(0%);
  }

  .text-opacity {
    opacity: 1;
  }
}

section.our-commitments {
  padding-bottom: 95px;
}

/* ========================================================= Distribution Contacts Section  */

section.distribution-contancts {
  padding: 0.1px 0 75px;
}

.brand p {
  max-width: 510px;
}
.brand {
  background-color: white;
  border: 1px solid #d6d6d6;
  height: 85px;
}

.brand img {
  filter: grayscale(1);
  margin: 0px 7px;
}

.brands {
  row-gap: 15px;
}

.brand.w-100 {
  padding-right: 85px;
}
.brand.w-100:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 60px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #dfdfdf;
}

/* ========================================================= Footer  */

.main-footer {
  padding: 40px 0;
}

.main-footer a {
  text-decoration: unset;
  color: white;
}

.main-footer p {
  margin-top: 10px;
}

.main-footer .d-flex {
  margin-bottom: 40px;
}

.sub-footer p {
  font-size: 15px;
}

/* ========================================================= Responsive  */
@media only screen and (max-width: 1460px) {
  h3.fun-city-text.text-white {
    position: absolute;
    margin: 0;
    top: 53%;
    padding-bottom: 0px;
    transform: translateY(-50%) matrix(0, -1, 1, 0, 0, 0);
    letter-spacing: -3.3px;
  }
}

@media only screen and (max-width: 1350px) {
  .company-content {
    margin: 0 auto 0 15px;
  }
  .warehouse-content {
    padding: 80px 40px 45px 0px;
  }
}

@media only screen and (max-width: 1300px) {
  .mission-vision .d-flex {
    flex-direction: column;
    row-gap: 20px;
  }

  .mission-container,
  .vision-container {
    max-width: 100%;
  }

  .mission-container .text-right,
  .vision-container .text-left {
    text-align: center;
  }
  .text-red {
    min-height: 40px;
  }
}

@media only screen and (max-width: 1250px) {
  .font-large {
    font-size: 40px;
    letter-spacing: -1.68px;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .our-milestones .milestone-tile {
    border-radius: 28px;
    padding: 60px 20px 90px 40px;
    max-width: 425px;
    height: 280px !important;
    max-height: 355px;
    box-sizing: border-box;
    margin: 0 10px !important;
  }

  .milestone-tile:before {
    top: calc(35% + 22px);
  }

  .milestone-text {
    margin-top: 30px;
    padding-right: 20px;
  }

  .mission-container h3 {
    top: 80px;
  }

  .brand.w-100 {
    flex-direction: column;
    height: auto;
    padding: 0;
  }

  .brand.w-100:before {
    content: unset;
  }

  .warehouse-content {
    padding: 0px 40px 45px 40px;
    flex-direction: column;
    height: auto;
    row-gap: 20px;
    justify-content: flex-start;
  }

  .company-tiles {
    margin-top: 35px;
    gap: 15px;
    row-gap: 15px;
  }

  h3.fun-city-text.text-white {
    position: relative;
    margin: 0;
    top: 0;
    padding-bottom: 0px;
    transform: unset;
    letter-spacing: -3.3px;
  }
}
@media only screen and (max-width: 1100px) {
  header a {
    position: relative;
    color: white;
    text-decoration: none;
    font-size: 14px;
  }
}

@media only screen and (max-width: 1095px) {
  .warehouse-company-content {
    flex-direction: column;
    gap: 20px;
  }

  .milestone-text p {
    margin-top: 15px;
    font-size: 16px;
  }

  .warehouse-content img {
    display: none;
  }
  .warehouse-content {
    border-radius: 0;
    width: 100%;
    max-width: 100%;
    padding: 0px 15px 45px 15px;
    height: auto;
    row-gap: 20px;
    justify-content: flex-start;
    align-items: center;
  }

  .warehouse-content-text {
    max-width: 100%;
  }

  .company-content {
    max-width: 100%;
    margin: 0 15px 0 15px;
    padding-right: 0px;
  }
}

@media only screen and (max-width: 1035px) {
  .milestone-tile:after {
    content: "";
    background-color: #e51b23;
    border-radius: 20px;
    position: absolute;
    width: 68px;
    height: 13px;
    top: 40.5%;
    left: 20px;
    transition: 0.5s;
  }
}
@media only screen and (max-width: 1024px) {
  .our-milestones .milestone-tile {
    max-width: none;
  }

  .our-commitments .milestone-tile {
    max-width: none;
  }
}
@media only screen and (max-width: 890px) {
  header a {
    color: black;
  }

  .navigation {
    padding: 20px 85px;
}

  .mission-container h3,
  .vision-container h3 {
    position: relative;
    top: 0;
    left: 0;
  }
  .warehouse-content {
    padding: 30px 15px 45px 15px;
  }
  section.mission-vision {
    padding: 15px 0;
  }
  section.distribution-contancts {
    padding: 10px 0 40px;
  }
  section.our-commitments {
    padding-bottom: 30px;
  }
  section.our-milestones {
    padding-top: 10px;
    padding-bottom: 30px;
  }
}
@media only screen and (max-width: 850px) {
  .font-large {
    font-size: 30px;
  }

  .reassuarance-container {
    gap: 15px;
  }

  .reassuarance-tile {
    width: 145px !important;
    height: 145px !important;
    max-height: 225px;
    border-radius: 100%;
    box-sizing: border-box;
    padding: 0 35px;
    margin: 0px !important;
  }

  .reassuarance-tile * {
    scale: 0.6;
    margin: 0 !important;
  }
}

@media only screen and (max-width: 750px) {
  .middle-image {
    width: 100%;
    height: 500px;
  }

  .middle-image::before {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
  .text-opacity {
    display: flex;
    height: 100%;
    max-height: 279px;
    width: 100%;
    padding: 0 30px;
    max-width: 279px;
    align-items: center;
  }
}
@media only screen and (max-width: 670px) {
  .milestone-tile:before {
    max-width: 540px;
  }
}

@media only screen and (max-width: 620px) {
  .brand.w-100 img {
    scale: 0.5;
  }
  .sub-footer .d-flex {
    padding-bottom: 10px;
    flex-direction: column;
  }
  .sub-footer p {
    text-align: center;
    font-size: 15px;
  }
}
@media only screen and (max-width: 575px) {
  .middle-image p {
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 26px !important;
    margin: 0 !important;
  }
}
@media only screen and (max-width: 495px) {
  .reassuarance-tile img {
    max-height: 60px;
}
}
@media (min-width: 446px) {
  .hero-image h2 {
    display: none;
  }
  .visible-mobile {
    display: none !important;
  }
}
@media only screen and (max-width: 445px) {
  .hidden-mobile {
    display: none;
  }
  .visible-mobile {
    display: block;
    width: 100%;
    height: 100%;
  }
  .slider-image {
    width: 50%;
  }
  .slider-images {
    display: flex;
    flex-wrap: wrap;
  }
  .slider-image .text-hidden {
    font-size: 16px;
    min-height: 60px;
  }
  .company {
    margin-top: -285px;
  }
  .hero-image h2 {
    bottom: 300px;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
    font-size: 34px;
    font-weight: 100;
    width: 100%;
  }
  section.company h2 {
    display: none;
  }
  .text-opacity {
    display: flex;
    height: 100%;
    max-height: 220px;
    width: 100%;
    padding: 0 30px;
    max-width: 220px;
    align-items: center;
  }
  .hero-image {
    margin-top: -150px;
  }
  a.logo h3 {
    margin: 0;
    padding-top: 15px;
    font-weight: 100;
  }

  .company-content h3 {
    padding-top: 15px;
  }
  .slick-slide img {
    width: 100%;
    display: block;
  }
  .slider-image .text-hidden {
    opacity: 1;
  }
  .brand p {
    font-size: 12px;
  }
  .company-tiles {
    margin-top: 35px;
    gap: 0;
    row-gap: 15px;
  }
  .company-tile {
    width: 48%;
    height: 180px;
    border-radius: 20px;
    box-sizing: border-box;
    padding: 0 12px;
    row-gap: 20px;
  }

  .middle-image {
    height: 400px;
  }

  .brand:not(.w-100) {
    width: 49%;
    justify-content: center;
  }

  .brand:not(.w-100) img {
    filter: grayscale(1);
    margin: 0px 7px;
    max-width: 150px;
  }

  .our-milestones .slick-dots {
    bottom: -20px;
  }

  .milestone-text {
    margin-top: 30px;
    padding-right: 0;
  }

  .our-commitments .milestone-tile {
    padding: 50px 20px 80px 20px;
  }
  .milestone-tile {
    height: 355px !important;
  }
  /* .milestone-tile:before {
    content: "";
    background-color: white;
    width: 100%;
    max-width: 380px;
    height: 1px;
    position: absolute;
    top: calc(27% + 20px);
    left: 50%;
    transform: translateX(-50%);
  }
  .milestone-tile:after {
    top: 31%;
  } */

  .milestone-tile:hover:after {
    left: 75%;
  }
}
