.m-lifelong {
  background-color: #002A3F;
  padding: 60px 0px;
  background: url("../images/bg-lifelong.png") no-repeat;
  background-size: cover;
  position: relative;
}

.m-lifelong .container {
  position: relative;
}

.m-lifelong__container {
  display: flex;
  justify-content: center;
}

.m-lifelong__content {
  display: flex;
  overflow: auto;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 40px;
}

.m-lifelong__curso {
  width: 280px;
  background-color: #002A3F;
  color: white;
  font-weight: 500;
  font-size: 24px;
  padding: 12px;
  position: absolute;
  right: 0;
}

.m-lifelong__curso::after {
  content: '';
  width: 255px;
  background: white;
  height: 2px;
  position: absolute;
  left: -255px;
  top: 58px;
}

/* Estilizando a barra de rolagem */
#scrollableDiv::-webkit-scrollbar {
  width: 10px; /* Largura da barra de rolagem */
}

/* Estilizando o indicador de rolagem */
#scrollableDiv::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2); /* Cor quase transparente para o indicador */
  border-radius: 5px; /* Borda arredondada */
}

/* Estilizando o indicador de rolagem quando está sendo arrastado */
#scrollableDiv::-webkit-scrollbar-thumb:active {
  background-color: rgba(0, 0, 0, 0.4); /* Cor mais escura quando está sendo arrastado */
}

.m-lifelong__curso p {
  font-size: 16px;
  margin-bottom: 4px;
}

.m-lifelong p,
.m-lifelong h2,
.m-lifelong__suporte h3 {
  color: white;
}

.m-lifelong__suporte {
  margin-top: 40px;
}

.m-lifelong__suporte__links a{
  color: white;
  border-right: 1px solid white;
  padding: 0 15px;
  font-weight: 500;
}

.m-lifelong__suporte__links a:last-child {
  border-right: unset;
}

.m-lifelong__suporte__links a:first-child {
  padding-left: unset;
}

/* Basic styling */
/* Draw the lines */
.jOrgChart .line {
    height                : 30px;
    width                 : 4px;
  }
  
  .jOrgChart .down {
    background-color 		: white;	
    margin 				: 0px auto;
  }
  
  .jOrgChart .top {
    border-top          : 3px solid white;
  }
  
  .jOrgChart .left {
    border-right          : 2px solid white;
  }
  
  .jOrgChart .right {
    border-left           : 4px solid white;
  }
  
  /* node cell */
  .jOrgChart td {
    text-align            : center;
    vertical-align        : top;
    padding               : 0;
  }
  
  /* The node */
  .jOrgChart .node {
    /* background-color 		: #35363B; */
    display               : inline-block;
    z-index 				: 10;
    margin               : 0 2px;
    border: 1px solid white;
  }

  .jOrgChart .node.title {
    width: 176px;
    height: 64px;
    background-color: white;
    color: #005187;
    font-weight: 500;
    font-size: 24px;
    padding: 12px 0px;
  }

  .jOrgChart .node.bloco {
    width: 360px;
    padding: 10px 20px;
    margin: 0 60px;
  }

  .jOrgChart .bloco__content {
    text-align: initial;
  }

  .jOrgChart .bloco__content ul {
    list-style: none;
    padding: unset;
  }

  .jOrgChart .bloco__content p {
    color: white;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
  }
  
  .jOrgChart .bloco__content .m-link strong {
    color: white;
  }



.m-lifelong .m-link {
  display: inline-block;
  align-items: center;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  color: #83D0F5;
  cursor: pointer;
  position: relative;
}

.m-lifelong .m-link:hover {
  text-decoration: none;
  color: white;
}
.m-lifelong .m-link:before {
    content: "";
    display: block;
    width: 100%;
    height: 0.025rem;
    background-color: white;
    transform-origin: left;
    transform: scale(0);
    transition: 0.3s linear;
    position: absolute;
    bottom: 0;
}
.m-lifelong .m-link:hover::before {
    transform: scale(1);
}

.m-lifelong .m-link::after {
    display: inline-block;
    content: "";
    vertical-align: middle;
    width: 16px;
    height: 12px;
    right: 20px;
    bottom: 20px;
    background: url("../images/arrow-white.svg") no-repeat;
    margin-left: 10px;
    transition: all .3s ease;
}

.m-lifelong .m-link:hover::after {
    transform: translateX(3px);
}


.m-lifelong .icon {
  display: none;
  position: absolute;
  width: 47px;
  top: 350px;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  animation: moveLeftAndRight 1s linear infinite alternate;
}

@keyframes moveLeftAndRight {
  0% {
    left: 52%;
  }
  50% {
    left: 48%;
  }
  100% {
    left: 52%;
  }
}

.m-lifelong__curso--quebra {
  position: relative;
  margin: auto;
  text-align: center;
}

.m-lifelong__content--quebra {
  overflow: auto;
  cursor: grab;
  justify-content: unset;
  padding: 80px 0;
}

/* .m-lifelong .icon {
  display: block;
} */

.m-lifelong__curso--quebra::after {
  width: 2px;
  height: 50px;
  bottom: -50px;
  left: 140px;
  top: unset;
  display: none;
}
@media (max-width: 1200px){

  .m-lifelong__curso {
    position: relative;
    margin: auto;
    text-align: center;
  }
  
  .m-lifelong__content {
    overflow: auto;
    justify-content: unset;
    padding: 80px 0;
  }
  
  /* .m-lifelong .icon {
    display: block;
  } */
  
  .m-lifelong__curso::after {
    width: 2px;
    height: 50px;
    bottom: -50px;
    left: 140px;
    top: unset;
    display: none;
  }

  .jOrgChart .node.bloco {
    width: 330px;
    margin: 0 40px;

  }
}

@media(max-width: 340px) {

  .m-lifelong__content {
    height: 860px;
  }

  .jOrgChart .node.bloco {
    width: 270px;
  }
}