.about-contents {
  padding: 80px 0;
}
.about-contents > h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 31px;
  letter-spacing: 0.18px;
  margin-bottom: 32px;
}

.about-contents > p {
  line-height: 24px;
  letter-spacing: 0.2px;
  margin-bottom: 80px;
}

.about-contents .text-about {
	 margin-bottom: 30px;
	 color: #1f1f1f;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-contents .name-about {
  color: #2b5aa9;
  font-weight: 600;
}
#map {
  height: 380px;
  margin-bottom: 3em;
}
.time-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 80px;
}

.time-line-box {
  height: 100%;
  width: 100%;
  position: relative;
}

.time-line-box:hover > img {
  filter: initial;
  animation: blurImg ease-in-out 0.8s;
}

@keyframes blurImg {
  from {
    filter: blur(2px) brightness(50%);
  }
  to {
    filter: initial;
  }
}

.time-line-box > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: blur(2px) brightness(50%);
}
.time-line-box:hover .text-timeline {
  /* display: none; */
  opacity: 0;
  animation: opacity ease-in-out 1s;
}

@keyframes opacity {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.text-timeline {
  position: absolute;
  top: 45%;
  z-index: 1;
  color: #fff;
  display: flex;
  gap: 60px;
  left: 50px;
  align-items: center;
  transform: translateY(-45%);
}
.years {
  font-size: 35px;
  font-weight: 600;
}
.text-years {
  width: 65%;
  font-size: 18px;
}
.achivement-about {
  display: flex;
  gap: 32px;
  /* justify-content: space-between; */
  overflow-x: hidden;
}
.achivement-wrap {
  display: flex;
  gap: 32px;
}

.achivement-box {
  max-width: 232px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  cursor: pointer;
}
.achivement-box > img {
  height: 315px;
  width: 232px;
  object-fit: cover;
}

.achivement-box > p {
  letter-spacing: 0.2px;
  line-height: 24px;
  font-weight: 600;
  color: #2b5aa9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* ---------------------------------------- */
.timeline-wrapp {
  margin-top: 3em;
  margin-bottom: 3em;
}
.timeline {
  position: relative;
  margin: 20px 0;
  position: relative;
  padding-bottom: 2em;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 2px;
  background: #e0e0e0;
  z-index: -1;
  left: 50%;
  margin-left: -2px;
}
.timeline-milestone {
  position: relative;
  background: #2196f3;
  text-align: center;
  width: 70px;
  color: #fff;
  font-weight: bold;
  padding: 5px 0;
  overflow: hidden;
  left: 50%;
  margin-left: -35px;
}
.timeline-block {
  margin: 4em 0;
  position: relative;
}
.timeline-block.simple .timeline-img {
  top: 0;
}

.timeline-img {
  left: 50%;
  font-size: 20px;
  color: #2196f3;
  position: absolute;
  margin-left: -11px;
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
}

.timeline-img.bounce-in {
  visibility: visible;
  -webkit-animation: cd-bounce-1 0.6s;
  -moz-animation: cd-bounce-1 0.6s;
  animation: cd-bounce-1 0.6s;
}

.timeline-block.right .timeline-content.bounce-in {
  -webkit-animation: cd-bounce-2-inverse 0.6s;
  -moz-animation: cd-bounce-2-inverse 0.6s;
  animation: cd-bounce-2-inverse 0.6s;
}

.timeline-block .timeline-content.bounce-in {
  visibility: visible;
  -webkit-animation: cd-bounce-2 0.6s;
  -moz-animation: cd-bounce-2 0.6s;
  animation: cd-bounce-2 0.6s;
}

.timeline-block.right .timeline-content {
  float: right;
}
.timeline-block.simple .timeline-content {
  position: relative;
  margin-left: 50px;
  text-align: left;
}
.timeline-block .timeline-content {
  margin-left: 0 !important;
  width: 45%;
}
.timeline-block .timeline-content > img {
  height: auto;
  width: auto;
}
.pagintor {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 10px;
}

@keyframes cd-bounce-2-inverse {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
    -moz-transform: translateX(100px);
    -ms-transform: translateX(100px);
    transform: translateX(100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-10px);
    -moz-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes cd-bounce-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes cd-bounce-2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    -moz-transform: translateX(-100px);
    -ms-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.icon-show-timeline {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: "Glyphicons Halflings";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

.timeline-content .title {
  text-transform: uppercase;
  color: #2196f3;
  margin-bottom: 1em;
  font-size: 16px;
  margin-top: 10px;
}
.timeline-block:after {
  content: "";
  display: table;
  clear: both;
}
.timeline-block:not(.right).simple .timeline-content {
  text-align: right;
}
.timeline-content .text {
  color: #616161;
  font-size: 16px;
}
.timeline-block:not(.simple) .timeline-content:before {
  content: " ";
  position: absolute;
  top: 26px;
  left: -15px;
  display: inline-block;
  border-top: 15px solid transparent;
  border-left: 0 solid #e0e0e0;
  border-right: 15px solid #e0e0e0;
  border-bottom: 15px solid transparent;
}
.timeline-block:not(.right) .timeline-content:before {
  border-left-width: 15px;
  border-right-width: 0;
  right: -15px;
  left: auto;
}
.timeline-block .timeline-content.is-hidden {
  visibility: hidden;
}

.timeline-img.is-hidden {
  visibility: hidden;
}

.about-contents .text-about > p > img {
 width: 100%;
}
