#intro {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  /*background-image: linear-gradient(to top, rgba(43, 90, 150, 0.8), rgba(43, 90, 150, 0.8)), url(../img/building.jpg);*/
  /*background-size: cover;*/
  /*background-repeat: no-repeat;*/
  display: flex;
  flex-direction: column;
}

.inner {
  background-color: rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 5;
  text-align: center;
  color: white;
  padding-top: 23vh;
}

#announcement-list .row {
  margin: 0;
}

#announcement-list .row>div:nth-child(3)>span {
  text-align: center; 
}

#announcement-list .row {
  padding: 10px 0;
  border-bottom: solid 1px #D3D3D3;
  cursor: pointer;
}

#announcement-list .row:not(:first-child):hover {
  background-color: #d3d3d3;
}

#announcement-list .row:first-child {
  border-bottom: solid 3px #D3D3D3;
}

#announcement-list .row:last-child {
  border-bottom: none; 
}

#announcement-list .row:nth-child(2n) {
  background-color: rgba(99, 116, 133, 0.075);
}


@media only screen and (max-width: 960px) {
  #intro {
    height: 60vh;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .intro-text {
    height: 70%;
  }
}

#vision h3 {
  font-weight: bold;
}

.vision-flex-content {
  display: flex;
  flex-direction: row;
}

.icon-container>i {
  width: 50px;
  height: 50px;
  margin-right: 12px;
  border: 2px solid #e2ebf6;
  border-radius: 50%;
  line-height: 48px;
  text-align: center;
  font-size: 21px;
  color: #525252;
}

.list-item>i {
  padding-right: 10px;
}

.vertical-line {
  border-left: 3px solid #e2ebf6;
  height: calc(100% - 50px);    
  position: absolute;
  width: 50px;
  top: 50px;
  left: 39px;
}

.vertical-line-right {
  position: absolute;
  border-right: 3px solid #e2ebf6;
  height: 100%;    
  width: 50px;
  top: 0px;
  right: 6px;
}

.vertical-line-dotted {
  border-right: 3px dotted #e2ebf6;
  height: 100%;    
  position: absolute;
  width: 50px;
  top: 0px;
  right: -9px;
}

.vertical-line-half-top {
  border-left: 3px solid #e2ebf6;
  height: 50%;
  position: absolute;
  width: 50px;
  top: 0px;
  left: 39px;
}

.horizontal-line-full {
  position: absolute;
  border-bottom: 3px solid #e2ebf6;
  height: calc(50% - 3px);    
  width: calc(100% - 45px);
  top: 4px;
  left: 39px;
}

.vertical-line-half-bottom {
  position: absolute;
  border-right: 3px solid #e2ebf6;
  height: 50%;
  width: 50px;
  bottom: 0px;
  right: 6px;
}

.detail-container {
  padding-top: 9px;
  flex: 1;
}

.navigation-container {
  padding-left: 62px;
  padding-right: 30px;
}

.navigation-container a {
  text-decoration: none;
}

span.list-item {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
}

span.list-item.bullet {
  display: list-item;
  list-style-type: disc;
  list-style-position: inside;
}

.divider-row {
  height: 50px;
}

.last-row>.col-12 {
  height: 50px;
}

@media (max-width: 576px) {
  span.list-item {
    font-size: unset;
  }
}

.btn-navigation {
  text-align: center;
  padding: 10px;
  color: #7fa8da;
  transition: all 0.3s;
  position: relative;
  border: 3px solid #e2ebf6;
  text-decoration: none;
  overflow: hidden;
}

.btn-navigation i {
  margin: 0 10px;
}

.btn-navigation:before,
.btn-navigation:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.25);
  transition: all 0.3s;
  transform: translate(-100%, 0);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}

.btn-navigation:after {
  transition-delay: 0.2s;
}

.btn-navigation:hover:before,
.btn-navigation:hover::after {
  transform: translate(0, 0);
  text-decoration: none;
}

.inner i {
  -webkit-animation: slide-top 0.5s cubic-bezier(0.215, 0.610, 0.355, 1.000) infinite alternate both;
          animation: slide-top 0.5s cubic-bezier(0.215, 0.610, 0.355, 1.000) infinite alternate both;
}

@-webkit-keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}
@keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}


@media (max-width: 575.98px) {
  #map {
    height: 550px;
  }
  #research .image-container {
    max-height: 100%;
  }
}


@media (min-width: 576px) and (max-width: 767.98px) {
  #map {
    height: 450px;
  }
  #research .image-container {
    max-height: 100%;
  }
}


@media (min-width: 768px) and (max-width: 991.98px) {
  #map {
    height: 535px;
  }
  #research .image-container {
    max-height: 100%;
  }
}


@media (min-width: 992px) and (max-width: 1199.98px) {
  #map {
    height: 750px;
  }
}


@media (min-width: 1200px) {
  #map {
    height: 750px;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {  
  /* Put your IE-only styles here. Works for IS 10 & IE 11*/
  #research .image-container {
    flex-basis: auto;
  }
}