.career-path-sec {
  padding: 76px 0;
  background-color: var(--bg-color-tow);
}

.career-path-wrap {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  overflow: hidden;
  height: 539px;
  position: relative;
}

.career-path-wrap::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1a70b8;
  opacity: 0;
  content: "";
  transition: all 0.3s ease-in-out;
}
.career-path-wrap:hover::after {
  opacity: 0.6;
}
.career-path-wrap .title {
  margin-top: 91px;
  margin-left: 93px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
.career-path-wrap:hover .title {
  transform: translateX(30px);
}

.career-path-wrap .title h2 {
  border-radius: 48px;
  padding: 12px 46px;
  background-color: var(--white);
  margin-bottom: 25px;
  font-weight: normal;
}

.career-path-wrap .title .logo {
  height: 61px;
}
.career-path-wrap .title .logo img {
  height: auto;
  width: 100%;
}

.hover-text {
  display: flex;
  gap: 120px;
  max-width: 789px;
  width: 100%;
  position: absolute;
  right: 260px;
  bottom: 121px;
  opacity: 0;
  transform: translateX(-70px);
  z-index: 1;
  transition: all 0.4s ease-in-out;
}
.title-mobile {
  display: none;
}
.career-path-wrap:hover .hover-text {
  opacity: 1;
  transform: translateX(0);
}
.hover-text p {
  color: white;
}
.hover-text a {
  background-color: #E3DBF4;
  color: var(--btn-text-color);
}



@media (min-width: 1231px) and (max-width: 1599px) {
}

@media (min-width: 992px) and (max-width: 1230px) {
  .hover-text {
    right: 15px;
  }  
}
@media (max-width: 991px) {
}

@media (min-width: 768px) and (max-width: 991px) {
  .title-mobile {
    display: flex;
    flex-direction: column;
    font-weight: bold;
    align-items: flex-start;
    margin-top: 41px;
  }
  .career-path-wrap:hover .title-mobile {
    align-items: center;
  }
  .career-path-wrap:hover .btntag {
    margin: 0;
  }
  .title-mobile .btntag {
    background-color: #f4f4f4;
    margin-left: 10px;
  }
  .career-path-wrap {
    height: 655px;
  }
  .title-mobile h2 {
    margin: 0;
  }
  .career-path-wrap .title > h2 {
    display: none;
  }
  .career-path-wrap .title {
    margin: 22px 23px 0;
    align-items: flex-end;
  }
  .career-path-wrap:hover .title {
    transform: translateX(0);
  }
  .career-path-wrap .title h2 {
    padding: 10px 42px;
  }
  .hover-text {
    flex-direction: column;
    right: 0;
    bottom: 41px;
    padding: 0 23px;
    gap: 27px;
  }
  .career-path-sec {
    padding: 45px 0 56px;
  }
}

@media (max-width: 767px) {
  .career-path-sec {
    padding: 45px 0 56px;
  }
  .title-mobile {
    display: flex;
    flex-direction: column;
    font-weight: bold;
    align-items: flex-start;
    margin-top: 41px;
  }
  .career-path-wrap .title-mobile {
    align-items: center;
  }
  .career-path-wrap .btntag {
    margin: 0;
  }
  .title-mobile .btntag {
    background-color: #f4f4f4;
    margin-left: 0;
  }
  .career-path-wrap {
    height: 655px;
  }
  .career-path-wrap::after {
    opacity: 0.6;
  }
  .title-mobile h2 {
    margin: 0;
  }
  .career-path-wrap .title > h2 {
    display: none;
  }
  .career-path-wrap .title {
    margin: 22px 23px 0;
    align-items: flex-end;
  }
  .career-path-wrap:hover .title {
    transform: translateX(0);
  }
  .career-path-wrap .title h2 {
    padding: 10px 32px;
  }
  .hover-text {
    flex-direction: column;
    right: 0;
    bottom: 41px;
    opacity: 1;
    transform: translateX(0);
    padding: 0 23px;
    gap: 27px;
  }
}

@media (max-width: 499px) {
}
