@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

:root {
  --main-color: #0883ff;
}
.main-timeline {
  font-family: 'Roboto', sans-serif !important;
}
.main-timeline:after {
  content: '';
  display: block;
  clear: both;
}
.main-timeline .timeline {
  width: 50%;
  padding: 60px 0 0 0;
  margin: 0 5px 25px 0;
  float: left;
}
.main-timeline .timeline-content {
  min-height: 100px;
  padding: 0 15px 0 0;
  border-right: 2px solid var(--main-color);
  display: block;
  position: relative;
}
.main-timeline .timeline-content:hover {
  text-decoration: none;
}
.main-timeline .timeline-content:before,
.main-timeline .timeline-content:after {
  content: '';
  background-color: var(--main-color);
  height: 6px;
  width: 6px;
  border-radius: 50%;
  position: absolute;
  right: -4px;
  top: 0;
}
.main-timeline .timeline-content:after {
  top: auto;
  bottom: 0;
}
.main-timeline .timeline-year {
  color: #fff;
  background-color: var(--main-color);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 3px 20px 3px 50px;
  position: absolute;
  right: -2px;
  top: -60px;
  z-index: 1;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 15% 100%, 0 50%);
}
.main-timeline .title {
  color: var(--main-color);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: capitalize;
  margin: 0 0 7px;
}
.main-timeline .description {
  color: #555;
  font-size: 13px;
  font-weight: 500;
  line-height: 22px;
  text-align: left;
  letter-spacing: 0.5px;
  margin: 0;
}
.main-timeline .timeline:nth-child(even) {
  margin: 0 0 25px 5px;
  float: right;
}
.main-timeline .timeline:nth-child(even) .timeline-content {
  text-align: left;
  padding: 0 0 0 15px;
  border-left: 2px solid var(--main-color);
  border-right: none;
}
.main-timeline .timeline:nth-child(even) .timeline-content:before,
.main-timeline .timeline:nth-child(even) .timeline-content:after {
  right: auto;
  left: -4px;
}
.main-timeline .timeline:nth-child(even) .timeline-year {
  right: auto;
  left: -2px;
  clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%);
}
.main-timeline .timeline:nth-child(2) {
  --main-color: #8e45b6;
}
.main-timeline .timeline:nth-child(3) {
  --main-color: #ff8000;
}
.main-timeline .timeline:nth-child(4) {
  --main-color: #fe3b0d;
}
@media screen and (max-width: 767px) {
  .main-timeline .timeline,
  .main-timeline .timeline:nth-child(even) {
    width: 100%;
    margin: 0 0 25px;
  }
}

body {
  font-family: 'Roboto', sans-serif !important;
}
h2 {
  font-family: 'Roboto', sans-serif !important;
  font-size: 23px;
  padding: 15px;
  color: #2d4256;
  font-weight: 600;
}
.bulletinmain {
  display: flex;
  flex-direction: column;
  width: 225px;
}

/* .bulletinmain .bulletinimgcon {
} */

.bulletinimgcon img {
  width: 100% !important;
  height: 225px;
  object-fit: contain;
}

.bulletinmain .linkcon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.readbtn:hover {
  color: #63af21;
}
.readbtn::before,
.readbtn::after {
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transform-origin: center;
}
.readbtn::before {
  border-top: 2px solid #63af21;
  border-bottom: 2px solid #63af21;
  transform: scale3d(0, 1, 1);
}
.readbtn::after {
  border-left: 2px solid #63af21;
  border-right: 2px solid #63af21;
  transform: scale3d(1, 0, 1);
}
.readbtn:hover::before,
.readbtn:hover::after {
  transform: scale3d(1, 1, 1);
  transition: transform 0.5s;
}

.readbtn {
  background: none;
  color: #63af21;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  border: 0;
  box-sizing: border-box;
  padding: 0.5em 0.5em;
  box-shadow: none;
  vertical-align: middle;
  width: 127px;
  text-align: center;
}
.readbtn::before,
.readbtn::after {
  width: 100%;
  height: 100%;
  content: '';
  position: absolute;
  box-sizing: inherit;
}
.card {
  text-align: center;
  background: #fff;
  box-shadow: 0px 0px 13.92px 2.08px rgb(46 89 8 / 12%);
  border-radius: 10px;
  border: none;
  margin-bottom: 30px;
  transform: translateY(0);
  transition: 0.3s linear;
}
.card:hover {
  transform: translateY(-7px);
}
