.animate-lines {
  display: block;
}

.animate-lines span {
  display: block;
}


/*--------------------------------------*/

/*Custom Font
/*--------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

@font-face {
  font-family: 'Helvetica Neue LT Std';
  src: url('../fonts/Helvetica-Neue-LT-Thin.eot');
  src: url('../fonts/Helvetica-Neue-LT-Thin.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Helvetica-Neue-LT-Thin.woff2') format('woff2'),
    url('../fonts/Helvetica-Neue-LT-Thin.woff') format('woff'),
    url('../fonts/Helvetica-Neue-LT-Thin.ttf') format('truetype'),
    url('../fonts/Helvetica-Neue-LT-Thin.svg#Helvetica Neue LT Std') format('svg');
}

@font-face {
  font-family: 'Helvetica Neue LT';
  src: url('../fonts/HelveticaNeueLTPro-LtEx.eot');
  src: url('../fonts/HelveticaNeueLTPro-LtEx.eot?#iefix') format('embedded-opentype'),
    url('../fonts/HelveticaNeueLTPro-LtEx.woff2') format('woff2'),
    url('../fonts/HelveticaNeueLTPro-LtEx.woff') format('woff'),
    url('../fonts/HelveticaNeueLTPro-LtEx.ttf') format('truetype'),
    url('../fonts/HelveticaNeueLTPro-LtEx.svg#RF Dewi') format('svg');
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueLTStd-Lt.eot');
  src: url('../fonts/HelveticaNeueLTStd-Lt.eot?#iefix') format('embedded-opentype'),
    url('../fonts/HelveticaNeueLTStd-Lt.woff2') format('woff2'),
    url('../fonts/HelveticaNeueLTStd-Lt.woff') format('woff'),
    url('../fonts/HelveticaNeueLTStd-Lt.ttf') format('truetype'),
    url('../fonts/HelveticaNeueLTStd-Lt.svg#RF Dewi') format('svg');
}

@font-face {
  font-family: 'Apple Garamond';
  src: url('../fonts/AppleGaramond.eot');
  src: url('../fonts/AppleGaramond.eot?#iefix') format('embedded-opentype'),
    url('../fonts/AppleGaramond.woff2') format('woff2'),
    url('../fonts/AppleGaramond.woff') format('woff'),
    url('../fonts/AppleGaramond.ttf') format('truetype'),
    url('../fonts/AppleGaramond.svg#Apple Garamond') format('svg');
}

@font-face {
  font-family: 'Georgia';
  src: url('../fonts/georgia.eot');
  src: url('../fonts/georgia.eot?#iefix') format('embedded-opentype'),
    url('../fonts/georgia.woff2') format('woff2'),
    url('../fonts/georgia.woff') format('woff'),
    url('../fonts/georgia.ttf') format('truetype'),
    url('../fonts/georgia.svg#Georgia') format('svg');
}

@font-face {
  font-family: 'Georgia Bold';
  src: url('../fonts/georgiab.eot');
  src: url('../fonts/georgiab.eot?#iefix') format('embedded-opentype'),
    url('../fonts/georgiab.woff2') format('woff2'),
    url('../fonts/georgiab.woff') format('woff'),
    url('../fonts/georgiab.ttf') format('truetype'),
    url('../fonts/georgiab.svg#Georgia') format('svg');
}

/*--------------------------------------*/

/*Element Base
/*--------------------------------------*/

body {
  font-size: 18px;
  line-height: 1.5;
  color: #000;
  font-family: "Georgia";
  font-weight: 400;
  padding-top: 40px;
  margin: 0;
  padding: 0 !important;
  overflow-x: hidden;
}

.btn {
  border-radius: 6px;
  font-size: 16px;
  font-family: 'Helvetica Neue LT';
  padding: 9px 25px;
  border-radius: 0;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  text-decoration: none !important;
}

.btn.btn-primary {
  background: #bb2728;
  border-color: #bb2728;
}
.btn.btn-primary:hover{
  color: #bb2728;
  background: transparent;
}

.btn.btn-secondary{
  color: #fff;
  background: #11284c;
  font-size: 18px;
    font-family: 'Georgia';
    padding: 8px 60px;
}
.btn.btn-secondary:hover{
  color: #0c2958;
  background: transparent;
}
.btn.btn-outline-submit {
  border-color: #fff;
  color: #fff;
}

.btn.btn-outline-submit:hover {
  background: #fff;
  color: #11284c;
}

.btn.btn-ourline-blue {
  border: 1px solid #11284c;
  color: #0c2958;
  font-family: "Georgia";
  font-size: 1.25rem
}

.btn.btn-ourline-blue:hover {
  background-color: #11284c;
  color: #fff;
}

.btn.btn-ourline-blue i {
  font-size: 40px;
  line-height: 1;
}

.form-control {
  padding: 7px 15px;
  font-size: 16px;
  font-family: 'Helvetica Neue LT';
  /* text-transform: uppercase; */
}

.submit-form-control {
  min-width: 400px;
}

a {
  color: #000;
  transition: all .4s linear;
}

.top--3 {
  top: -3px;
}

.sepration {
  margin-top: 80px;
}

.archives-links {
  font-family: 'Helvetica Neue LT';
  color: #bb2728;
  font-size: 1 rem;
}
.text-primary{
  color: #11284c!important;
}
.arrow {
  position: relative;
  bottom: 0rem;
  left: 50%;
  margin-left: -20px;
  width: 40px;
  height: 40px;
  background-image: url(../images/arrow.png);
  background-repeat: no-repeat;
  background-position: center;

}

.bounce {
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-30px);
  }

  60% {
    transform: translateY(-15px);
  }
}

main {
  margin-top: 100px;
}

#scrollTop {
  z-index: 99;
  cursor: pointer;
  border: none;
  position: fixed;
  bottom: 0px;
  right: 0px;
  width: 50px;
  height: 50px;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  color: #FFFFFF;
  background: #bb2728;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
  display: none;
  transition: 0.6s all ease-in-out;
  border-radius: 0px;
}

.slick-dots li button {
  border: 1px solid #623e2a !important;
  width: 10px !important;
  height: 10px !important;
  border-radius: 50%;
}

.slick-dots li button:before {
  display: none;
}

.slick-dots li.slick-active button {
  background: #623e2a;
  border: 1px solid #623e2a !important;
}

.list-group .list-group-item {
  border-left: 0;
  border-right: 0;
  padding: 1.5rem 0 2rem;
  border-color: #11284c;
  font-family: 'Apple Garamond';
  font-size: 2.15rem;
  color: #11284c;
}

.list-group .list-group-item:hover {
  color: #bb2728;
}

.list-group .list-group-item:last-child {
  border-bottom: 0;

}

.list-group .list-group-item:first-child {
  border-top: 0;
}

.max-width-350 {
  max-width: 350px;
}

.bg-blue {
  background: #11294a;
}


date {
  border-left: 6px solid #bb2728;
  font-family: 'Apple Garamond';
  padding-left: 1rem;
  font-size: 1.5rem;
  color: #000;
}

.heading-wrap{
  border-left: 6px solid #bb2728;
  font-family: 'Apple Garamond';
  padding-left: 3rem;
  font-size: 1.5rem;

}
.heading-wrap h2{
  font-size: 1.8rem;
  font-family: 'Helvetica Neue LT';
  font-weight: 900;
  color: #11294a;
  text-transform: uppercase;
}
.tag-title {
  font-size: 1.5rem;
  font-family: 'Apple Garamond';
}

.tag-title strong {
  color: #bb2728!important;
}
.text-red{
  color: #ff0000!important;
}
.me-10 {
  margin-right: 5rem;
}
table{
  font-family: 'Helvetica Neue';
  border-left: 1px solid #11284c!important;
  border-right: 1px solid #11284c!important;
}
thead th{
  background: #11284c!important;
  color: #fff!important;
}

table td{
    border-color: #11284c;
    font-size: 1rem;
}
tfoot td{
  font-weight: bold;
  color: #11284c!important;
  border-color: #11284c;
}
table.table-bordered{
       --bs-table-border-color:: #11284c;
}
table.table-bordered a{
  text-decoration: none;
  pointer-events: none;
}
/*--------------------------------------*/

/*Typography
/*--------------------------------------*/
h1,
h2,
h3,
h4,
h5 {
  color: #000;
  font-family: 'Helvetica Neue LT Std';
  line-height: 1.2;
  letter-spacing: 1px;
}


h2 {
  font-size: 46px;
  margin-bottom: 16px;

}

h3 {
  font-size: 1.5rem;
  font-family: 'Georgia';
  color: #11294a;
  font-family: 'Georgia Bold';
}



p {
  margin-bottom: 1.5rem;
}

.font-helvetica-neue-LT {
  font-family: 'Helvetica Neue LT';
}

.font-helvetica-neue {
  font-family: 'Helvetica Neue';
}

.text-justify {
  text-align: justify !important;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1140px;
  }
}


sup {
  /* color: #bb2728; */
}

.rounded-10{
  border-radius: 10px;
}

/*********************************************/

/*  Header Section
/********************************************/

header {
  position: fixed;
  top: 0;
  background-color: #11294a;
  width: 100%;
  text-align: center;
  padding: 20px 16px;
  transition: all .1s;
  -webkit-transition: all 200ms ease-in-out;
  -ms-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  transition-property: inherit !important;
  transition-delay: .1s !important;
}

header {
  font-size: 12px;
}

header .btn-close {
  background-color: #fff;
  border-radius: 0;
  opacity: 1;
  width: 28px;
  height: 28px;
  background-size: 18px;
  position: relative;
  left: -8px;
}

header .nav-item {
  margin: 0px 6px;
}



header .nav-link {
  color: #fff;
  font-size: 16px;
  border: 0px solid #fff;
  padding: 10px 10px 4px !important;
  font-family: 'Helvetica Neue LT';
  font-weight: 300;
  letter-spacing: 1px;
  margin: 4px 0;
  text-transform: uppercase;
  text-align: right;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

header .dropdown:hover .nav-link,
header .nav-link:focus,
header .nav-link.active,
header .nav-link.show {
  color: #000 !important;
  border: 0px solid #fff;
}

header .nav-link:hover {
  color: #bb2728;
}

header .dropdown-menu {
  border-radius: 0;
  border: 0;
  font-size: 12px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  text-align: left;
  text-transform: uppercase;
  font-family: 'Helvetica Neue LT';
  letter-spacing: 1px;
  padding: 0px 0;
  margin: 0px 20px;

}

.dropdown-toggle::after {
  display: none;
}

header .dropdown-menu .dropdown-item {
  padding: 10px 0px;
  font-weight: 700;
  color: #666;
  border-top: 1px solid #666;
  text-wrap: auto;
}

header .dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0px;
}

header .dropdown-menu .dropdown-item:hover,
.dropdown-item:active {
  background-color: transparent !important;
  color: #000;
}

.logo {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  max-width: 422px;
  height: 60px;
}

header .btn {
  padding: 8px 20px;
}

header .link {
  color: #fff;
  font-size: 18px;
  font-family: 'Helvetica Neue LT';

}

.active-logo {
  display: none;
}

.active-header {
  padding: 5px 10px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, .1);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);

}

.active-header .logo {
  max-width: 350px;
  height: auto!important;
}

.active-header .navbar-toggler svg rect {
  fill: #fff;
}


.active-header .dropdown-menu {
  background-color: #fff;
}

.active-header .dropdown-menu a {
  color: #666;
}

.active-header .dropdown-menu a:hover {
  color: #000;
}

.active-header .before-active {
  display: none;
}

.active-header .active-logo {
  display: block;
}

.active-header .btn.btn-white {
  background-color: #000;
  color: #fff;
}

.active-header .btn.btn-white:hover {
  border-color: #000;
  background-color: rgba(0, 0, 0, .8);
  color: #fff;
}


.offcanvas {
  background: #bb2728;
  height: 100vh;
}

.offcanvas-header {
  justify-content: end;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-toggler {
  border: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.active-header .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(98, 62, 42, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}


/*********************************************/
/* Home Page */
/********************************************/

/* 1. Banner Section
/********************************************/
.hero-slider {
  overflow: hidden;
}

.hero-slider .hero-img {
  height: 550px !important;
  width: 100%;
  object-fit: cover;
  max-width: 100%;
  height: auto;
  opacity: 1 !important;
  animation-duration: 3s;
  transition: all 1s ease;
}


.caption-widget {
  max-width: 680px;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.caption-widget h5 {
  font-size: 1.75rem;
  letter-spacing: -1px;
  line-height: 46px;
  color: #11294a;
  font-family: 'Helvetica Neue LT';
  margin-bottom: 2rem;
}

.caption-widget blockquote {
  margin-top: 2rem;
}
.caption-widget blockquote a{
  text-decoration: none;
}
.caption-widget blockquote h2:hover {
    color: #bb2728;
}

.caption-widget h2 {
  font-size: 3rem;
  line-height: 52px;
  color: #11294a;
  margin-bottom: 10px;
  font-family: 'Apple Garamond';
}

.caption-widget hr {
  border-width: 5px;
  border-color: #11284c;
  opacity: 1;
}

.caption-widget date {
  border: 0;
  padding-left: 0;
}

.caption-widget .btn {
  font-family: 'Apple Garamond';
}

.caption-widget blockquote {
  border-left: 6px solid #bb2728;
  padding-left: 2rem;
}

.hero-slider.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.hero-slider .slick-dots {
  bottom: 30px;
  text-align: right;
  right: 80px;
  z-index: 999;
}

.hero-slider .slick-dots li {
  width: 60px;
}

.hero-slider .slick-dots li button {
  border: 0 !important;
  width: 60px !important;
  height: 4px !important;
  border-radius: 2rem;
  padding: 4px;
  background-color: #11284c;
}

.hero-slider .slick-dots li.slick-active button {
  background-color: #bb2728;
}

.hero-slider .slick-slide img {
  display: inline;
}

.hero-slider .slick-next,
.hero-slider .slick-prev {
  display: none;
}

.subcription-from label {
  font-family: 'Helvetica Neue LT';
  font-size: 16px;
}


/* /////////// IMAGE ZOOM /////////// */
@keyframes zoomInImage {
  from {
    transform: scale3d(1, 1, 1);
  }

  to {
    transform: scale3d(1.1, 1.1, 1.1);
  }
}

.zoomInImage {
  animation-name: zoomInImage;
}

@keyframes zoomOutImage {
  from {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.zoomOutImage {
  animation-name: zoomOutImage;
}


.inner-banner {
  min-height: 320px;
  width: 100%;
  position: relative;
}
.inner-banner::before{
  background: rgba(0, 0, 0, .0);
  height: 100%;
  width: 100%;
  position: absolute;
  content: '';
  display: block;
  left: 0;
  top:0;
}
.inner-banner date {
  color: #fff;
  border: 0;
  font-family: 'Georgia';
  font-size: 1rem;
}

.inner-banner h2 {
  font-size: 2.25rem;
  color: #fff;
  margin-top: 7rem;
  font-family: 'Georgia';
  text-transform: inherit;
}

.single-page p {
  margin-bottom: 1.5rem;
}

.single-page blockquote {
  position: relative;
  padding: .75rem 0;
  margin: 1rem 0;
  display: flex;
  justify-content: space-between;

}

.single-page blockquote p:last-child {
  margin-bottom: 0;
}

.single-page blockquote p {
  margin-bottom: 2rem;
}

.single-page blockquote {
  color: #11284c;
  font-style: italic;
}

.single-page blockquote::before {
  width: 6px;
  height: 100%;
  background-color: #bb2728;
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 0;
}

.single-page h3 {
  margin-bottom: .75rem;
}

.single-page strong,
.single-page b,
.single-page em {
  color: #11284c;
}

.img-title {
  text-transform: uppercase;
  font-size: 10px;
}

.single-page a {
 
  text-decoration: underline;
}

.single-page a:hover {
  color: #ff0000;
}

.single-page h4 {
  text-align: center;
  position: relative;
}

.single-page h4::before {
  width: 100%;
  height: 2px;
  background-color: #000;
  position: absolute;
  bottom: 50%;
  left: 0;
  content: '';
}

.single-page h4 strong {
  display: inline-block;
  text-align: center;
  color: #000;
  font-size: 1.25rem;
  position: relative;
  background-color: #fff;
  z-index: 11;
  padding: 0 1rem
}

.line-x {
  height: 2px;
  background-color: #0c2958;
  width: 200px;
  display: inline-block;
}
label{
  color: #11294a;
  font-size: 18px;
}
.form-control{
  border:0;
  border-bottom: 1px solid #11284c;
  border-radius: 0;
  padding: 10px 10px 6px 10px
}
.text-area{
  border:2px solid #11284c;
  padding: 8px;
  font-family: "Georgia";
  font-size:18px;

  ;
}
/*********************************************/

/*Footer
/*********************************************/
footer {
  padding: 4rem 0 2rem;
  font-weight: 300;
  font-size: 16px;
  font-family: 'Helvetica Neue LT';
  text-transform: uppercase;
  background-color: #11294a;
}


footer a {
  text-decoration: none;
  color: #fff;
}

footer a:hover {
  color: #bb2728;
}

footer p.copyright-txt {
  font-size: 0.813rem;
}

footer a {
  font-size: 0.75rem;
}

footer .nav a {
  font-size: 1rem;
}

footer .nav li {
  border-right: 1px solid #fff;
  line-height: 1;
  margin: 0 .5rem;
  padding: 0 1rem 0 0;
}

footer .nav li:last-child {
  border: 0;
  padding-right: 0;
  margin-right: 0;
}

.social-icon i {
  font-size: 1.3rem;
}

.animated {
     animation-duration: .25s; 
     line-height: 1;
}
.animated.delay{
   animation-duration: .5s; 
  animation-timing-function: ease-out; 
  animation-delay: .5s;
}
.single-page .img-fluid,
.single-page blockquote{
  cursor: pointer;
  transition: all .4s linear;
}
.single-page .img-fluid:hover,
.single-page blockquote:hover{
  transform: scale(1.05)!important;
}
/*********************************************/

/* 9. Responsive CSS
/*********************************************/


@media screen and (max-width: 1199px) {

  .logo {
    transition: all .4s linear;
    max-width: 340px;
  }

  .active-header .logo {
    max-width: 240px;
  }

  header .nav-link {
    font-size: 16px;

  }


  header .dropdown:hover .nav-link,
  header .nav-link:focus,
  header .nav-link.active,
  header .nav-link.show {
    color: #000 !important;
    border: 0px solid #fff;
  }

  header .dropdown-menu {
    margin: 0;
  }

  .caption-widget h2 {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }


}

@media screen and (max-width: 991px) {

  .active-header,
  header {
    padding: 0px 0 0px 10px;
  }

  .logo {
    transition: all .4s linear;
  }

  main {
    margin-top: 74px;
  }

  .hero-slider .hero-img {
    height: 300px !important;
  }

  .caption-widget {
    padding-top: 2rem;
    padding-bottom: 6rem;
  }

  .list-group .list-group-item {
    font-size: 1.75rem;
    line-height: 1.24;
  }

  .submit-form-control {
    min-width: 300px;
  }

  .hero-slider .slick-dots {
    right: 0rem;
    bottom: 1.5rem;
    text-align: center;
  }

  .hero-slider .slick-dots li,
  .hero-slider .slick-dots li button {
    width: 40px !important;
  }
}

@media screen and (max-width: 767px) {

  .inner-banner{min-height: 260px;}
  .single-page p {margin-bottom: 1rem; font-size: 1rem;}
  .research-details li {margin-bottom: 20px; font-size: 1rem;}
  .heading-wrap { padding-left: 1.2rem;}
  
header .nav-link {
  color: #fff;
  font-size: 16px;
  border: 0px solid #fff;
  padding: 10px 10px 4px !important;
  font-family: 'Helvetica Neue LT';
  font-weight: 600;
  letter-spacing: 1px;
  margin: 4px 0;
  text-transform: uppercase;
  text-align: right;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

header .dropdown:hover .nav-link,
header .nav-link:focus,
header .nav-link.active,
header .nav-link.show {
  color: #000 !important;
  border: 0px solid #fff;
}

header .nav-link:hover {
  color: #000 !important;
  border: 0px solid #fff;
  background-color: #FFF;
}

  body {
    margin-bottom: 30px;
  }

  date {
    font-size: 1.25rem;
  }

  .tag-title {
    font-size: 1.25rem;
  }

  header .logo {
    height: 45px;
    /* max-width: 240px; */
  }

  .navbar-toggler {
    padding: 0;
  }

  .navbar-toggler img {
    width: 80%;
  }

  .navbar-toggler svg {
    width: 28px;
  }

  .caption-widget h2 {
    font-size: 2rem;
    line-height: 2.0rem;
  }

  .caption-widget h5 {
    font-size: 1.25rem;
  }

  main {
    margin-top: 60px;
  }

  .submit-form-control {
    min-width: 400px;
    margin: 1rem 0;
  }

  .archives-links {
    font-size: 2rem;
  }

  .btn {
    font-size: 16px;
  }

  footer {
    padding: 2rem 0 1rem;
  }

  footer .nav a {
    font-size: .75rem;
  }

  .inner-banner h2 {
    font-size: 1.4rem;
    margin-top: 2.5rem;
  }

  .single-page blockquote {
    display: block;
    padding-left: 2rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .single-page blockquote::before {
    left: 0;
  }
  .btn{
        padding: 10px 15px 5px ;
  }
  .btn.btn-ourline-blue{
    font-size: 1rem;
  }
}

@media screen and (max-width: 420px) {
  .submit-form-control {
    min-width: 300px;
  }
}

@media screen and (max-width: 1200px) {
    .subscriptionformInput {
      width: 200px; /* requested baseline */
    }
  }


.research-details li{margin-bottom:20px}