
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700,800');

html {
  height: 100%;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #000;
  background-color: #f2f2f2;
  font-size: 15px;
}

img {
  max-width: 100%;
  height: auto;
  margin-right: 20px;
}

.btn-default {
  background-color: #209e79;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 0 35px;
  min-height: 45px;
  display: -ms-inline-flexbox;
  display: -webkit-inline-box;
  display: inline-flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
}

.bread-crumbs {
  margin: 0 -5px 15px;
  padding: 0;
  list-style: none;
}

.bread-crumbs li {
  padding: 0 5px;
  display: inline-block;
  margin: 0;
}

.bread-crumbs li:after {
  content: "\f105";
  font: normal normal normal 14px/1 FontAwesome;
  position: relative;
  left: 7px;
}

.bread-crumbs li:last-child:after {
  display: none;
}

.bread-crumbs li a {
  color: #b2171b;
  text-transform: capitalize;
}

header {
  /* border-bottom: solid 3px #209e79; */
  background-color: #fff;
}
header:after {
  content: "";
  height: 3px;
  position: absolute;
  left: 0;
  right: 0;
  background: #209e79;
  pointer-events: none;
  z-index: 10;
}

header>.container {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  position: relative;
}

header .logo {
  padding: 10px 25px 10px 0;
}

header .logo img {
  height: auto;
}

header nav {
  -ms-flex-item-align: stretch;
  align-self: stretch;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
}

header nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

header nav ul li {
  margin: 0;
}

header nav ul li.active>a {
  color: #b2171b;
}

header nav ul li.active>a:after {
  display: block;
}

header nav ul li a:hover {
  color: #209e79;
}

header nav ul li a.highlighted:after {
  content: "\f054";
  font-family: FontAwesome;
  float: right;
  padding: 0 10px 0 0;
}

header nav ul li i.fa {
  position: absolute;
  width: 35px;
  height: 35px;
  right: 10px;
  font-size: 25px;
  display: none;
  cursor: pointer;
  top: 0;
}

header nav ul li i.fa.clicked::before {
  content: "\f106";
}

header nav ul.sub-menu li {
  padding: 10px 15px;
  border-bottom: 1px solid #ccc;
}

header nav ul.sub-menu li:last-child {
  border-bottom: none;
}

header nav>ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-item-align: stretch;
  align-self: stretch;
}

header nav>ul>li {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  border-left: solid 1px #e6e6e6;
  position: relative;
}

header nav>ul>li:first-child {
  border-left: 0;
}

header nav>ul>li:hover a:after {
  display: block;
}

header nav>ul>li:hover>ul {
  display: block;
}

header nav>ul>li>a {
  font-size: 15px;
  color: #000;
  text-transform: uppercase;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  padding: 0 12px;
  position: relative;
  text-decoration: none;
  font-weight: 600;
}

header nav>ul>li>a:after {
  display: none;
  content: "";
  position: absolute;
  background: url(../images/hover-icon.png);
  background-repeat: no-repeat;
  width: 21px;
  height: 14px;
  bottom: -1px;
  left: 0;
  right: 0;
  margin: auto;
}

header nav>ul>li>a:hover {
  text-decoration: none;
}

header nav>ul>li ul {
  display: none;
  position: absolute;
  top: 100%;
  z-index: 9;
  background: #fff;
  min-width: 255px;
  padding: 15px 0;
  /*font-size: 0.88vw;*/
  background: rgba(255, 255, 255, 0.8);
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

header nav>ul>li ul li {
  padding: 0 15px;
}

header nav>ul>li ul ul {
  left: 100%;
  top: -15px;
  margin: 0 2px;
}

header nav>ul>li ul a {
  color: #000;
  display: block;
  padding: 5px 0;
  text-transform: capitalize;
  text-align: center;
  font-weight: 600;
}




header nav>ul>li ul a:hover {
  text-decoration: none;
}

header nav>ul>li ul li {
  position: relative;
}

header nav>ul>li ul li:hover ul {
  display: block;
}

header nav>ul>li i.fa {
  color: #fff;
}

header nav>ul>li li i.fa {
  color: #000;
  top: 10px;
}

header input[type="search"] {
  background: transparent;
  border: 0;
  outline: 0;
  width: 100px;
}

header input[type="search"]::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #b0b0b0;
}

header input[type="search"]::-moz-placeholder {
  /* Firefox 19+ */
  color: #b0b0b0;
}

header input[type="search"]:-ms-input-placeholder {
  /* IE 10+ */
  color: #b0b0b0;
}

header input[type="search"]:-moz-placeholder {
  /* Firefox 18- */
  color: #b0b0b0;
}

header input[type="button"] {
  background: transparent;
  border: 0;
  position: absolute;
  padding: 0;
  width: 100%;
  height: 25px;
  left: 0;
}

header ::-webkit-input-placeholder {
  color: #535353;
}

header :-moz-placeholder {
  color: #535353;
}

header ::-moz-placeholder {
  color: #535353;
}

header :-ms-input-placeholder {
  color: #535353;
}

header .search-btn {
  width: 23px;
  height: 25px;
  position: relative;
  font-size: 20px;
  line-height: 25px;
  text-align: center;
  background-image: url(../images/search-icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 10px;
  float: left;
}

header .search-bar {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  padding: 0 10px;
}

h1 {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 43px;
  line-height: 55px;
  margin: 0;
}

h2 {
  margin: 10px 0 35px;
  text-align: left;
  text-transform: uppercase;
  font-size: 30px;
  font-weight:800;
  padding-bottom: 23px;
  position: relative;
  /* text-align: center; */
}

h2.ft-sz-26 {
  font-size: 26px;
}

h3 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 15px 0 4px;
}

p {
  font-family: 'Montserrat';
  font-size: 15px;
  color: #000;
  margin: 0 0 10px;
  line-height: 24px;
  font-weight: 400;
}

p a {
  color: #b2171b;
}

p a:hover {
  color: #b2171b;
}

button {
  border: 0;
  outline: 0;
}

button.default {
  background-color: #209e79;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 0 35px;
  min-height: 45px;
}

input[type=file] {
  width: 100%;
}

input[type='submit'] {
  background-color: #209e79;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 0 35px;
  min-height: 45px;
  margin: 10px 0 0;
  border: 0;
}

.search-btn input[type='submit'] {
  width: 100%;
  padding: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  line-height: initial;
  font-size: 0;
  min-height: initial;
  opacity: 0;
}

.banner {
  position: relative;
  overflow: hidden;
}

.banner .owl-dots {
  display: none;
}

.banner img {
  width: 100%;
  height: auto;
}

.banner .banner-inner {
  /* height: 350px; */
}
.banner .owl-carousel .owl-item img {
  height: 598px;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner .banner-text-wrap {
  width: 1140px;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.banner .banner-text {
  left: 50px;
  right: 0;
  width: 600px;
  text-align: left;
  padding: 30px;
  background: #fff;
  background: rgba(255, 255, 255, 0.8);
  position: relative;
}

.banner .banner-text:after {
  content: "";
  background: rgba(0, 0, 0, 0.2);
  opacity: 1;
  left: 0;
  right: 0;
  width: 555px;
  margin: auto;
  top: 50%;
}

.banner .banner-text h2 {
  font-size: 26px;
  font-weight: 600;
  text-align: left;
  margin: 10px 0 0px;
  padding-bottom: 20px;
  line-height: 36px;
  opacity: 1;
}

.banner .banner-text h2:after {
  content: ' ';
  background: none;
}

.banner .banner-text p {
  margin-bottom: 20px;
}

.banner .banner-text.pos-lt {
  left: 75px;
}

.banner h1 {
  margin-bottom: 40px;
}

.banner .banner-slider .owl-nav {
  position: absolute;
  top: 50%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
  width: 1140px;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 100%;
}

.banner .banner-slider .owl-nav button {
  position: relative;
  font-size: 20px;
  color: #209e79;
  background: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.banner .banner-slider .owl-nav button.owl-prev:after {
  content: "";
  background: url(../images/icon-sprite.png) no-repeat -1px -1px;
  width: 25px;
  height: 14px;
  display: inline-block;
}

.banner .banner-slider .owl-nav button.owl-prev span {
  display: none;
}

.banner .banner-slider .owl-nav button.owl-next:after {
  content: "";
  background: url(../images/icon-sprite.png) no-repeat -29px -1px;
  width: 25px;
  height: 14px;
  display: inline-block;
}

.banner .banner-slider .owl-nav button.owl-next span {
  display: none;
}

@media (max-width: 1200px) {
  .banner .banner-slider .owl-nav button {
    display: none;
  }
}

section {
  padding: 60px 0;
}

.section-head-blck {
  padding: 0 0 35px;
}

.section-head-blck p {
  color: #209e79;
  font-size: 14px;
  max-width: 290px;
  text-align: center;
  margin: 0 auto 20px;
  line-height: 1.42857143;
}

.img-text-blck {
  border: solid 1px #c2c2c2;
  padding: 0 10px 18px;
  -ms-flex: 1 0;
  -webkit-box-flex: 1;
  flex: 1 0;
  background: #fff;
}

.img-text-blck .img-sec {
  width: calc(100% + 20px);
  margin: 0 -10px;
  position: relative;
}

.img-text-blck .img-sec:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  bottom: 0;
  background: #53b296;
}

.img-text-blck .img-sec:after {
  content: "";
  position: absolute;
  background-image: url(../images/img-after.png);
  background-repeat: no-repeat;
  width: 21px;
  height: 14px;
  bottom: 1px;
  left: 30px;
}

.img-text-blck .img-sec img {
  width: 100%;
  max-height: 256px;
  -o-object-fit: cover;
  object-fit: cover;
}

.img-text-blck p {
  font-size: 15px;
  margin: 0 0 10px;
  line-height: 1.42857143;
  color: #545454;
}

.img-text-blck h3 {
  color: #000;
  margin-bottom: 10px;
}

.img-text-blck a {
  font-size: 13px;
  font-family: 'Gotham book';
  font-weight: bold;
  color: #209e79;
  border-bottom: solid 1px #209e79;
  padding: 0 0 1px;
  display: none;
}

.gallery-slider .item a:hover {
  text-decoration: none;
}

.img-text-blck a:hover {
  text-decoration: none;
}

.view-all {
  text-align: center;
  margin: 30px 0 0;
  display: inline-block;
  width: 100%;
}

.view-all a {
  font-family: 'Montserrat';
  color: #de2a00;
  border-bottom: solid 1px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
}

.view-all a:hover {
  text-decoration: none;
}

.latest-events {
  background: #D0D3D4;
}

.events-list-blck {
  background: #fff;
  margin: 0 0 30px;
  padding: 20px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex: 1 0;
  -webkit-box-flex: 1;
  flex: 1 0;
  max-height: 152px;
}


.events-list-blck:hover .date-wrap {
  background-color: #209e79;
  cursor: pointer;
}

.events-list-blck .date-wrap {
  background-color: #fcc400;
  color: #fff;
  padding: 0 12px;
  margin-right: 18px;
  min-height: 112px;
  min-width: 115px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  -ms-flex: 0 1;
  -webkit-box-flex: 0;
  flex: 0 1;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.events-list-blck .date-wrap .date {
  font-size: 55px;
  font-weight: bold;
  line-height: normal;
  font-family: 'Montserrat';
}

.events-list-blck .date-wrap .month {
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 300;
  text-align: center;
  font-family: 'Montserrat';
}

.events-list-blck .date-wrap.img-box {
  padding: 0;
  margin-right: 20px;
  height: 80px;
  width: 66px;
  min-height: 80px;
  min-width: 66px;
  background-color: transparent;
}

.events-list-blck .date-wrap.img-box .img-thumbnail {
	padding: 0;
	border-radius: 0;
}
.events-list-blck .date-wrap.img-box img {
  max-width: 66px;
  max-height: 80px;
  object-fit: cover;
  object-position: center;
}

.events-list-blck.people-list .date-wrap.img-box img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.events-list-blck .event-desc {
  font-family: 'Gotham book';
}

.events-list-blck .event-desc .evnt-title {
  padding-bottom: 3px;
  display: block;
  font-weight: bold;
}

.events-list-blck .event-desc p {
  color: #8b8b8b;
  font-size: 15px;
  margin: 0 0 10px;
  line-height: 1.42857143;
}

.events-list-blck .event-desc h3 {
  color: #000;
  font-size: 17px;
  margin-top: 10px;
  text-transform: none;
}

.events-list-blck .event-desc a {
  font-size: 13px;
  font-weight: bold;
  color: #fcc400;
  padding: 0 0 1px;
  text-transform: capitalize;
}

.events-list-blck .event-desc a:hover {
  text-decoration: none;
}

.events-list-blck.mr--20 {
  margin: 0 0 20px;
}

.events-list-blck {
  padding: 15px 20px;
  border-top: 4px solid transparent;
  -webkit-transition: all ease .5s;
  transition: all ease .5s;
  min-height: 150px;
  position: relative;
}

.events-list-blck.people-list {
  min-height: 125px;
}

.events-list-blck.people-list h5 {
  margin: 0 0 2px;
  padding-top: 2px;
  font-size: 18px;
  font-weight: 600;
  -webkit-transition: all ease .5s;
  transition: all ease .5s;
  line-height: 19px;
}

.events-list-blck.people-list h5 a {
  font-size: 18px;
  font-weight: 600;
  line-height: 19px;
  text-decoration: none;
  color: inherit;
}

.events-list-blck.people-list p {
  font-size: 15px;
  font-weight: 300;
  margin: 0;
  line-height: 19px;
}

.events-list-blck.people-list p a {
  text-decoration: none;
  font-size: 15px;
  text-transform: none;
  font-weight: 300;
}

.events-list-blck.people-list p a:hover {
  color: #b2171b;
  /*text-decoration: underline;*/
}

.events-list-blck.people-list p b {
  color: #000;
  font-weight: 300;
}

.events-list-blck.people-list p.bold {
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-height: 16px;
  /* fallback */
  max-height: 32px;
  /* fallback */
  -webkit-line-clamp: 1;
  /* number of lines to show */
  -webkit-box-orient: vertical;
}

.event-desc p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-height: 16px;
  /* fallback */
  max-height: 38px;
  /* fallback */
  /* number of lines to show */
  -webkit-box-orient: vertical;
}

.content-sec.pd-zero .frame-type-list .news .news-list-view a .col-md-6.col-sm-6 {
	max-height: 180px;
}

.news-list-view a .event-desc p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-height: 1.2em;
  /* fallback */
  max-height: 57px;
  /* fallback */
  -webkit-line-clamp: 3;
  /* number of lines to show */
  -webkit-box-orient: vertical;
  font-weight: normal;
  padding: 3px 0 0 0;
}

.news-list-view a .event-desc p:empty {
  display: none;
}

.events-list-blck p.align-txt {
  margin: 0 0 8px;
}

.events-list-blck:hover {
  border-top: 4px solid #209e79;
}

.events-list-blck.people-list:hover .date-wrap.img-box img {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}

.events-list-blck.people-list:hover h5{
  color: #209e79;
}

.events-list-blck.people-list a {
  color: #8b8b8b;
  text-decoration: none;
}

.events-list-blck.people-list .event-desc .txt-wrap p {
  font-size: 13px;
}

.events-list-blck.publication-list h5 {
  font-size: 17px;
}

.events-list-blck.publication-list h3 a {
  font-size: 17px;
  display: block;
  color: #209e79;
}

.events-list-blck.publication-list .date-wrap.img-box {
  padding: 0;
  margin-right: 20px;
  min-height: 100px;
  min-width: 92px;
  background-color: transparent;
}

.events-list-blck.publication-list .date-wrap.img-box img {
  width: 92px;
  height: 100px;
}

.events-list-blck.publication-list .event-desc {
  min-height: 100px;
}

.events-list-blck.publication-list .event-desc h5 {
  margin: 0 0 10px;
  color: #000;
}

.events-list-blck.publication-list {
  height: 140px;
}

.events-list-blck.publication-list .event-desc {
  position: relative;
}

.events-list-blck.publication-list .bold {
  font-size: 16px;
  font-weight: 600;
}

@media (min-width: 1200px) {
  .events-list-blck.publication-list .event-desc h5 {
    margin: 0 0 10px;
  }
}


.news #past {
  display: none;
}

.newsletter {
  /* background: url(../images/newsletter.jpg) no-repeat; */
  background-size: cover;
  position: relative;
  z-index: 0;
  color: #fff;
  text-align: center;
}

.newsletter #ajaxCallResult {
  width: 100%;
  margin: 10px 0 0;
}

.newsletter:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(188, 30, 4, 0.9);
  z-index: -1;
}

.newsletter p {
  color: #fff;
  text-transform: uppercase;
}

.newsletter h2 {
  margin-bottom: 10px;
  padding-bottom: 0;
  text-align: center;
}

.newsletter h2:after {
  display: none;
}

.newsletter input {
  outline: 0;
  margin: 0;
}

.newsletter input[type="text"] {
  background: #343c3f;
  border: 0;
  height: 50px;
  padding: 0 0 0 25px;
  min-width: 373px;
  margin: 0;
  width: auto;
}

.newsletter input[type="submit"] {
  background: #fff;
  border: 0;
  color: #000;
  text-transform: uppercase;
  font-size: 14px;
  min-width: 130px;
}

.newsletter ::-webkit-input-placeholder {
  color: #fff;
  font-size: 13px;
  font-family: 'Gotham book';
}

.newsletter :-moz-placeholder {
  color: #fff;
  font-size: 13px;
  font-family: 'Gotham book';
}

.newsletter ::-moz-placeholder {
  color: #fff;
  font-size: 13px;
  font-family: 'Gotham book';
}

.newsletter :-ms-input-placeholder {
  color: #fff;
  font-size: 13px;
  font-family: 'Gotham book';
}

.newsletter .newsletter-det {
  margin: 55px 0 20px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.newsletter .newsletter-det form {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.newsletter .newsletter-det .icon-sec {
  width: 66px;
  background: url(../images/mail.png) no-repeat #fff;
  background-position: center;
}

footer {
  padding: 65px 0 50px;
  background: #343c3f;
  color: #fff;
  font-family: 'Gotham book';
  margin-top: 30px;
}


.newsletter+footer {
  margin-top: 0;
}

footer>.container {
  position: relative;
}

footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

footer .footer-links {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
}

footer .footer-links>ul {
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
  margin: 0 0 20px;
}

footer .footer-links>ul li a {
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
}

footer .footer-links>ul li ul li a {
  text-transform: inherit;
  font-weight: normal;
  text-decoration: none;
}

footer .footer-links>ul .address li {
  background-repeat: no-repeat;
  background-position: left 0;
  padding-left: 35px;
  margin: 0 0 20px;
  position: relative;
}

footer .footer-links>ul .address li:last-child {
  margin: 0;
}

footer .footer-links>ul .address li:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 23px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  left: 0;
  top: 0;
}

footer .footer-links>ul .address li.location:after {
  background-image: url(../images/location-icon.png);
}

footer .footer-links>ul .address li.phone:after {
  background-image: url(../images/call-icon.png);
}

footer .footer-links>ul .address li.mail-ft:after {
  background-image: url(../images/mail-icon.png);
}

footer .footer-links .inner-links li {
  margin: 0 0 10px;
}

footer .footer-links .inner-links li a {
  font-weight: 600;
}

footer .footer-links ul li.footer-logo-wrap {
  padding-right: 30px;
  border-right: 2px solid #444;
  margin-right: 30px;
}

@media (max-width: 767px) {
  footer .footer-links ul li.footer-logo-wrap {
    padding-right: 20px;
    margin-right: 10px;
  }
  .banner .owl-carousel .owl-item img {
    height: 300px;
  }
}

footer .follow-us {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
}

footer .follow-us p {
  font-size: 15px;
  color: #fff;
  margin: 0;
}

footer .follow-us ul {
  margin-left: 15px;
}

footer .follow-us ul li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 5px;
}

footer .follow-us ul li a {
  width: 38px;
  height: 38px;
  background-color: #fff;
  display: block;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  color: #209e79;
  font-size: 20px;
  text-align: center;
  line-height: 38px;
}

footer .follow-us ul li a i {
  line-height: 38px;
}

footer .follow-us ul li a.fb {
  background-image: url(../images/fb.png);
}

footer .follow-us ul li a.instagram {
  background-image: url(../images/instagram.png);
}

footer .follow-us ul li a.twitter {
  background-image: url(../images/twitter.png);
}

.copy-right {
  color: #fff;
  font-size: 12px;
  padding-top: 30px;
}

.copy-right a {
  font-weight: bold;
  color: #fff;
  border-bottom: solid 1px;
}

.copy-right a:hover {
  text-decoration: none;
}

.sidebar {
  background: #fff;
  padding: 20px;
  margin: 0 0 20px;
}

.sidebar-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-links>li {
  border-bottom: 1px dashed #eee;
  padding: 20px 0 25px;
}

.sidebar-links li {
  margin: 0;
}

.sidebar-links li a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

.sidebar-links li a:hover {
  color: #209e79;
}

.sidebar-links li a:hover span {
  color: #209e79;
}

.sidebar-links li i {
  color: #cbcbcb;
  font-size: 20px;

}

.sidebar-links li i:before {
  background: url('../images/icon-sprite.png') no-repeat -17px -18px;
  width: 12px;
  height: 10px;
  display: inline-block;
  content: "";
}

.sidebar-links li.active i:before {
  background-position: -1px -17px;
}



.sidebar-links li:last-child {
  border-bottom: none;
}

.sidebar-links a {
  display: block;
  font-family: 'Gotham book';
}

.sidebar-links ul {
  list-style: none;
  padding: 5px 0 0 25px;
  display: none;
}

.sidebar-links>li.active>ul.inner-links {
  display: block;
}

.sidebar-links ul.inner-links li.active a {
  color: #209e79;
}

.sidebar-links ul.inner-links li {
  padding: 7px 0;
}

.sidebar-links ul.inner-links li a {
  color: #7b7b7b;
  font-family: "Montserrat";
  font-weight: normal;
}

.sidebar-links ul.inner-links li:hover a {
  color: #209e79;
}

.sidebar-links.pd-10-15>li {
  padding: 10px 0 15px;
}

.content-sec {
  display: inline-block;
  padding: 20px;
  width: 100%;
  font-family: 'Gotham book';
}

.content-sec .pull-right {
  padding-left: 10px;
}

.content-sec h3 {
  margin-bottom: 15px;
  text-transform: none;
}

.event-details-wrap .content-publication img {
  margin: 25px 0 5px 0;
}

.content-sec .sub-heading {
  margin: 35px 0;
  font-weight: 700;
  text-transform: none;
  font-size: 18px;
}

.content-sec p,
.content-sec span {
  color: #7b7b7b;
}

.content-sec .text-wrap {
  background: #fff;
}

.content-sec.pd-rt-50 {
  padding: 0 50px 0 0;
}

@media (max-width: 768px) {
  .content-sec.pd-rt-50 {
    padding: 0;
  }
}

.btn-danger {
  color: #fff;
  background-color: #de2a00;
  border-color: #de2a00;
  border-radius: 0;
  padding: 10px 20px;
  font-size: 16px;
}

.btn-danger a {
  color: #fff;
  text-transform: none;
  text-decoration: none;
}

.btn-danger a:before {
  content: "\f019";
  font-family: FontAwesome;
  padding-right: 5px;
}

.no-border,
.no-border tr,
.no-border td,
.no-border th {
  border: 0 !important;
}

h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 20px 0 0;
}

.people-list-block a {
  display: block;
  color: #000;
}

.people-list-block a:hover {
  text-decoration: none;
}

.people-list-block span a {
  color: #b2171b;
}

.people-list-block img {
  width: 100%;
}

.people-list-block .cont-det {
  margin: 10px 0 25px;
}

.people-list-block .cont-det span {
  display: block;
}

.people-list-block .cont-det span.name {
  font-size: 16px;
  color: #209e79;
  margin: 0 0 5px;
}

.people-details-wrap .people-info {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  margin: 0 0 10px;
}

.people-details-wrap .people-info img {
  width: 100px;
}

.people-details-wrap .people-info .name-contact {
  padding: 0 0 0 25px;
}

.people-details-wrap .people-info .name-contact span a {
  color: #b2171b;
}

.people-details-wrap .people-info .name-contact .name {
  font-size: 16px;
  color: #209e79;
  margin: 0 0 5px;
}

.people-details-wrap .people-info .name-contact span {
  display: block;
}

input[type='text'] {
  background: #fff;
  min-height: 35px;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: solid 1px #ccc;
  width: 100%;
  margin: 0 0 10px;
  padding: 10px;
  outline: 0;
}

label {
  display: block;
  width: 100%;
  font-weight: 600;
}

select {
  background: #fff;
  min-height: 35px;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: solid 1px #ccc;
  width: 100%;
  margin: 0 0 10px;
  padding: 10px;
  outline: 0;
}

ul {
  margin: 10px 0 0;
}

ul.f3-widget-paginator {
	list-style-type: none;
}
ul.f3-widget-paginator li {
	display: inline-block;
	padding-right: 1rem;
}
ul li {
  margin: 0 0 5px;
}

ol {
  margin: 10px 0 0;
}

ol li {
  margin: 0 0 5px;
}

a.download,
a.external-link {
  position: relative;
  color: #b2171b;
  padding-left: 25px;
  font-weight: 600;
}

a.download::before,
a.external-link::before {
  position: absolute;
  top: 3px;
  left: 0;
  content: "\f019";
  font: normal normal normal 14px/1 FontAwesome;
}

a.external-link:before {
  content: "\f08e";
}

.search-tab {
  float: left;
  position: absolute;
  top: 145px;
}

.search-tab ul {
  margin: 0;
}

.search-tab ul.nav-tabs li.active a {
  background: #fcc400;
  border-top: 4px solid #209e79;
  border-width: 4px 0 0 0;
}

.search-tab ul li a {
  background: #fff;
  color: #000;
  font-weight: 600;
  border-top: 4px solid transparent;
  border-radius: 0;
  margin-right: 6px;
  padding: 10px 28px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.search-tab ul li a:hover {
  border-color: transparent;
}

.search-tab ul li:last-child a {
  margin-right: 0;
}

.search-tab .tab-pane {
  padding: 20px;
  background: #fff;
}

.search-tab .tab-pane p {
  margin: 10px 0 30px;
  font-weight: 600;
}

.search-tab .sample .field-wrap {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.search-tab .sample .field-wrap p {
  margin: 0 10px;
  padding-top: 8px;

}

.search-tab .sample .field-wrap select,
.search-tab .sample .field-wrap input[type='text'] {
  -ms-flex: 1;
  -webkit-box-flex: 1;
  flex: 1;
  margin: 0 0 20px;
  border: 1px solid #b1adad;
}

.search-tab .sample .field-wrap input[type='submit'] {
  margin: 0px 0px 0 10px;
  border: 0;
  height: 43px;
  border: 1px solid #eee;
}

.nav-tabs>li.active>a,
.nav-tabs>li.active>a:focus,
.nav-tabs>li.active>a:hover {
  background-color: #b2171b;
  color: #fff;
}

.nav-tabs>li>a {
  color: #b2171b;
}

ul.publication-list {
  padding: 0 0 0 15px;
  margin: 0 0 35px;
  list-style: none;
}

ul.publication-list a {
  color: #b2171b;
  font-weight: bold;
}

.frame-default {
  /* padding: 0 0 25px; */
}



.ce-gallery[data-ce-columns="4"] .ce-column {
  width: 25%;
  margin: 0;
  padding: 15px 15px;
}

.ce-gallery[data-ce-columns="4"] .ce-row {
  margin: 0 -15px;
}

.ce-gallery[data-ce-columns="4"] img {
  width: 100%;
}

.ce-gallery[data-ce-columns="4"] figure {
  width: 100%;
}

.ce-uploads li {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  margin: 0 0 30px;
}

.ce-uploads li a {
  color: #b2171b;
}

.ce-uploads li i {
  padding-right: 10px;
  color: #b2171b;
  font-size: 40px;
}

ul.mobile-link-adj {
  padding: 0;
  margin: -15px 0 0;
  list-style: none;
}

ul.mobile-link-adj li {
  color: #333;
  background-color: transparent;
  border: 1px solid #ddd;
  padding: 10px 15px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

ul.mobile-link-adj li a {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
}

div#upcomming {
  -ms-flex: 1 0;
  -webkit-box-flex: 1;
  flex: 1 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.news-list-view .col-md-4 {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.news-list-view .row {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.news-list-view .row:after,
.news-list-view .row:before {
  content: normal;
}

.gallery-slider .owl-nav,
.event-slider .owl-nav {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 40%;
}

.gallery-slider .owl-nav button.owl-prev,
.gallery-slider .owl-nav button.owl-next,
.event-slider .owl-nav button.owl-prev,
.event-slider .owl-nav button.owl-next {
  font-size: 20px;
  color: #209e79;
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

@media (max-width: 1200px) {

  .gallery-slider .owl-nav,
  .event-slider .owl-nav {
    display: none;
  }
}

.gallery-slider .owl-prev,
.event-slider .owl-prev {
  position: relative;
  left: -60px;
  -webkit-box-shadow: -3px 0px 0px rgba(0, 0, 0, 0.1);
  box-shadow: -3px 0px 0px rgba(0, 0, 0, 0.1);
}

.gallery-slider .owl-prev:after,
.event-slider .owl-prev:after {
  content: "";
  background: url(../images/icon-sprite.png) no-repeat -56px -1px;
  width: 15px;
  height: 14px;
  display: inline-block;
}

.gallery-slider .owl-prev span,
.event-slider .owl-prev span {
  display: none;
}

.gallery-slider .owl-next,
.event-slider .owl-next {
  position: relative;
  right: -60px;
  -webkit-box-shadow: 3px 0px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 3px 0px 0px rgba(0, 0, 0, 0.1);
}

.gallery-slider .owl-next:after,
.event-slider .owl-next:after {
  content: "";
  background: url(../images/icon-sprite.png) no-repeat -73px -1px;
  width: 15px;
  height: 14px;
  display: inline-block;
}

.gallery-slider .owl-next span,
.event-slider .owl-next span {
  display: none;
}

section.library-wrap {
  padding: 0 0 60px;
}

.side_banner {
  background: url("../images/pattern-content-left.png") no-repeat;
  background-position: left top;
}

.content-section h2 {
  text-align: left;
  margin: 10px 0 20px;
}

.content-section h4.subtitle {
  margin: 0 0 20px;
}

.content-section p.contact {
  margin: 20px 0;
  font-weight: 600;
}

.content-section a {
  color: #b2171b;
}

.content-section span.date {
  color: #7b7b7b;
  font-weight: 300;
  margin-left: 5px;
}

ol.breadcrumb {
  padding: 8px 0;
  background-color: transparent;
  border-radius: 0px;
  margin-bottom: 25px;
}

ol.breadcrumb li a {
  color: #000;
  font-weight: 300;
}

ol.breadcrumb li.active a {
  color: #209e79;
}

.breadcrumb>li:before {
  display: none;
}

.breadcrumb>li:after {
  padding: 0 5px;
  color: #ccc;
  content: "|";
}

.breadcrumb>li:last-child:after,
.breadcrumb>li.active:after {
  display: none;
}


.annuoncement h2,
.annuoncement h3 {
  text-align: left;
  padding: 20px 0 20px;
  text-transform: none;
}

.annuoncement p {
  color: #7b7b7b;
}

.annuoncement .content-wrap {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.annuoncement .content-wrap .note {
  -ms-flex: 1;
  -webkit-box-flex: 1;
  flex: 1;
  margin-right: 18px;
  background-color: #fff;
  padding: 20px;
  /* border: 2px dashed #f2f2f2; */
  -webkit-box-shadow: 0px 3px 28px 0px rgba(0, 0, 0, 0.09);
  box-shadow: 0px 3px 28px 0px rgba(0, 0, 0, 0.09);
}

.annuoncement .content-wrap .note h4 {
  font-weight: 400;
  margin: 10px 0 25px;
}

.annuoncement .content-wrap .note p {
  margin: 0 0 20px;
  color: #7b7b7b;
}

.annuoncement .content-wrap .note strong {
  font-weight: 600;
  color: #000;
}

.annuoncement .content-wrap .img-wrap>div {
  /* border: 2px dashed #cbcbcb; */
  -webkit-box-shadow: 0px 3px 28px 0px rgba(51, 51, 51, 0.56);
  box-shadow: 0px 3px 28px 0px rgba(51, 51, 51, 0.56);
}

.sidebar-wrap {
  background-color: #fff;
  border-top: 4px solid #209e79;
  border-bottom: 4px solid #fcc300;
  padding: 20px;
  margin-bottom: 30px;
}

.sidebar-wrap.mr-tp--20 {
  margin-top: 20px;
}

.sidebar-wrap h4.sidebar-title {
  margin: 0 0 15px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
}

.white-bg-div {
  background: #fff;
}

.white-bg-div .event-details-wrap {
  padding: 50px 145px;
}

.white-bg-div .back-link {
  display: block;
  padding: 45px 10px 0 75px;
  font-weight: 400;
}

.white-bg-div .back-link:before {
  content: '<';
  padding-right: 8px;
}

.white-bg-div h2 {
  margin: 0;
}

.white-bg-div h2.tag-pd-zero {
  padding: 0;
}

.white-bg-div .btn-danger {
  margin: 20px 10px 0 0;
}

.white-bg-div b {
  font-size: 16px;
}

.white-bg-div span {
  color: #7b7b7b;
}

.white-bg-div p {
  margin: 0 0 4px;
}

.white-bg-div .text-wrap {
  margin: 45px 0;
}

.panel-heading {
  color: #209e79;
  padding: 5px 0 25px;
  border-bottom: 1px dashed #ccc;
  font-size: 16px;
  line-height: 22px;
  position: relative;
  padding-right: 15px;
  cursor: pointer;
}

.panel-heading:after {
  background: url(../images/icon-sprite.png) no-repeat -17px -18px;
  width: 12px;
  height: 10px;
  display: inline-block;
  content: "";
  position: absolute;
  top: 11px;
  right: 0;
}

.panel-heading.panel-show {
  border-bottom: none;
}

.panel-heading.panel-show:after {
  background-position: -1px -17px;
}

.white-bg-div .text-wrap .card {
  border-bottom: 1px dashed #ccc;
}

.white-bg-div .text-wrap .head-tag {
  margin: 25px 0;
  text-transform: none;
}

.white-bg-div .text-wrap .table tr td {
  padding: 5px;
  color: #7b7b7b;
}

.white-bg-div .text-wrap .table tr td b {
  color: #000;
}

.mr-zero {
  margin: 0;
}

.pd-zero {
  padding: 0;
}

.row-mr--30 {
  margin-top: 30px;
}

.people-details-wrap {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.people-details-wrap .people-info {
  width: 240px;
  background: #fff;
  padding: 10px;
  margin: 0 25px 0 0;
}

.people-details-wrap .people-info img {
  width: 100%;
  max-height: 240px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
  max-width: 240px;
  padding: 0;
  border: none;
  border-radius: 0;
}

.people-details-wrap .people-details {
  -ms-flex: 1;
  -webkit-box-flex: 1;
  flex: 1;
  background: #fff;
}

.people-details-wrap .people-details .section {
  padding: 20px;
  border-bottom: 1px solid #e5e5e5;
}

.people-details-wrap .people-details .section:last-child {
  border-bottom: none;
}

.people-details-wrap .people-details .social-icon-wrap i {
  font-size: 26px;
  margin-right: 15px;
  color: #7b7b7b;
}

.people-details-wrap .people-details .social-icon-wrap i:hover {
  color: #209e79;
}

.people-details-wrap .people-details p,
.people-details-wrap .people-details span,
.people-details-wrap .people-details a {
  color: #7b7b7b;
}

.people-description {
  background: #fff;
  margin: 30px 0;
}

.people-description .tab-content {
  min-height: 250px;
  padding: 50px 30px;
}

.people-description .tab-content h3 {
  font-weight: 600;
  text-transform: none;
  margin: 10px 0 25px;
}

.people-description .tab-content p {
  color: #7b7b7b;
  margin-bottom: 20px;
}

.people-description .tab-content .content-box {
  padding-bottom: 25px;
  border-bottom: 1px dashed #ccc;
  margin-bottom: 30px;
}

.people-description .tab-content .content-box a {
  display: block;
  text-decoration: none;
  color: #209e79;
  padding: 10px 0 0;
}

.people-description .tab-content .content-box a:hover {
  text-decoration: underline;
}

.people-description .tab-content .content-box:last-child {
  border-bottom: none;
}

.people-description .nav-tabs li a {
  color: #000;
  background: none;
  border: none;
  border-right: 1px solid #ddd;
  border-bottom: 2px solid #209e79;
  padding: 20px 25px;
  margin: 0;
}

.people-description .nav-tabs>li.active>a,
.people-description .nav-tabs>li.active>a:focus,
.people-description .nav-tabs>li.active>a:hover {
  color: #209e79;
  background: none;
  border: none;
  border-right: 1px solid #ddd;
  border-bottom: 2px solid #209e79;
  padding: 20px 25px;
  margin: 0;
}

.people-description .nav-tabs>li.active>a:after {
  content: "";
  position: absolute;
  background: url(../images/hover-icon.png);
  background-repeat: no-repeat;
  width: 21px;
  height: 14px;
  bottom: -1px;
  left: 0;
  right: 0;
  margin: auto;
}

.month-list {
  padding: 0px 0 15px;
  border-bottom: 2px solid #209e79;
  margin: 0px 0px 30px 0px;
}

.pubctn-list-wrap .month-list {
  padding-bottom: 0;
}

.moz .month-list li {
  padding-left: 4px;
}

.month-list li a {
  /* padding: 7px 7px 9px 4px; */
}



.month-list>li:first-child a:before {
  /* border-right: 2px solid #209e79; */
  /* padding-right: 24px; */
  content: "";
  height: 32px;
  display: inline-block;
  position: absolute;
  background: #209e79;
  width: 2px;
  right: -2px;
  top: -6px;
}

.month-list li:first-child {
  /* padding-right: 16px; */
}

.month-list li.active a:after {
  content: "";
  position: absolute;
  background: url(../images/hover-icon.png);
  background-repeat: no-repeat;
  width: 21px;
  height: 14px;
  bottom: -1px;
  left: 0px;
  right: 0;
  top: 46px;
  margin: auto;
}

.moz .month-list li.active a::after{
  top: 36px;
}
.moz .pubctn-list-wrap .month-list li.active a::after {
  top: 32px;
}

.month-list li a {
  color: #000;
  font-weight: 600;
  text-decoration: none;
}

.month-list li.active a {
  color: #209e79;
  position: relative;
}

.month-list li.pull-right a {
  font-size: 26px;
  font-weight: bolder;
}

.month-list li.pull-right a:after {
  background: none;
}

.month-list li.pull-right a .form-control {
  font-size: 26px;
  font-weight: bolder;
  border: none;
  background: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0;
  margin: -7px 0 0;
}

.month-list li.pull-right.pos-top {
  position: relative;
}

.month-list li.pull-right.pos-top a {
  position: absolute;
  top: -7px;
  right: 0;
}


.month-list.letters li select {
  border: none;
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-size: 22px;
  padding: 6px 0px;
  color: #000;
  font-family: 'Gotham book';
  font-size: 15px;
  font-weight: 800;
  height: initial;
  padding-right: 25px;
  padding-left: 10px;
}

.month-list>li:first-child {
  padding-right: 16px;
  padding-left: 0;
}

.month-list>li:first-child a {
  padding-right: 24px;
  position: relative;
}

.month-list:not(.letters)>li:not(:first-child) {
  padding-right: 8px;
  padding-left: 8px;
}

.moz .month-list:not(.letters) > li:not(:first-child) {
  padding-right: 9px;
  padding-left: 9px;
}

.event-year {
  font-family: 'Montserrat';
  font-size: 28px;
  font-weight: 800;
}


.month-list li.pull-right.event-year {
  position: relative;
  top: -10px;
  padding-right: 0;
}



.view-all[data-linktype] {
  display: none;
}
.content-sec .last_name {
  color: inherit;
}
@media (max-width: 1199px) {
  .month-list.letters li.pull-right a .form-control {
    font-size: 21px;
  }
}

@media (max-width: 1199px) {
  .month-list.letters li {
    padding-right: 4px;
    font-size: 14px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .month-list.letters li {
    padding-right: 0px;
    font-size: 13px;
  }
}


.pubctn-list-wrap.remove {
  opacity: 0;
  height: 0;
  visibility: hidden;
}

.pubctn-list-wrap .list-inline {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  width: 100%;
}

.pubctn-list-wrap .list-inline .scroll-cont {
  width: 100%;
  height: 42px;
  overflow: hidden;
  position: relative;
  display: block;
}

.pubctn-list-wrap .scroll-arrows {
  position: absolute;
  right: 0;
  height: 36px;
  width: 10px;
  top: -7px;
  color: #333;
}

.scroll-wrap {
  position: relative;
  padding-right: 12px;
  width: 100%;

}

.pubctn-list-wrap .btn-scroll-up,
.pubctn-list-wrap .btn-scroll-down {
  cursor: pointer;
}

.pubctn-list-wrap .scroll-cont::-webkit-scrollbar {
  display: none;
}

.pubctn-list-wrap .scroll-cont::-webkit-scrollbar-track {
  display: none;
}

.pubctn-list-wrap .scroll-cont::-webkit-scrollbar-thumb {
  display: none;
}

.pubctn-list-wrap .scroll-cont::-webkit-scrollbar-thumb:window-inactive {
  display: none;
}


.pubctn-lists.remove {
  height: 0;
  visibility: hidden;
}

.pubctn-lists a:hover {
  text-decoration: none;
}

.pagination-wrap nav li a {
  color: #000;
  border: none;
  background: none;
}

.pagination-wrap nav li:hover a {
  color: #209e79;
}

.pd-lf--0 {
  padding-left: 0;
}

.mr-rt--20 {
  margin-right: 20px;
}

.pd-bt--60 {
  padding: 0 0 60px;
}

.OIB-isotope .grid .element-item {
  margin-bottom: 3px;
  position: relative;
}


.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  -webkit-transition: .3s ease;
  transition: .3s ease;
  background: rgba(32, 158, 121, 0.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.overlay p {
  color: #fff;
  padding: 20px 10px 40px 20px;
  font-family: 'Montserrat';
  vertical-align: bottom;
  display: inline-block;
  max-height: 100%;
  margin-bottom: 0;
  overflow: hidden;
}

.one:hover .overlay {
  opacity: 1;
}

section.content-page p {
  font-size: 16px;
}

section.content-page p i {
  width: 25px;
}

section.content-page p i.fa-map-marker {
  font-size: 18px;
}

section.content-page p i.fa-calender {
  font-size: 16px;
}

section.content-page h4 {
  font-weight: 400;
}

section.content-page h4.publication-subtitle {
  margin: 0 0 10px;
}

section.content-page b.ft-wt-100 {
  font-weight: 100;
}

section .link-wrap {
  margin: 13px 0;
}

section .link-wrap p {
  line-height: 19px;
}

section .link-wrap p span,
section .link-wrap p i {
  color: #209e79;
}

section .link-wrap p i {
  font-size: 17px;
}

section .link-wrap p a {
  text-decoration: none;
}

.ce-bodytext p {
  color: #7b7b7b
}

.mapmarker:before {
  content: "\f041";
}

.news-list-view a {
  text-decoration: none !important;
  display: block;
  width: 100%;
}

.news-list-view a:hover {
  text-decoration: none !important;
}

.article h3 {
  text-transform: none;
  font-size: 18px;
  font-family: "Gotham";
  font-weight: 500;
  margin: 50px 0 30px 0;
}

.back-link a {
  color: #000;
}

a.link-icon {
  color: #209e79;
  font-size: 17px;
}

a.link-icon:hover {
  color: #209e79;
  text-decoration: underline;
}
.peoplelist-wrap .people-list {
  cursor: pointer;
}

.outer img {
  float: none !important;
  /* width: 100%; */
}

.link-icon .external-link-new-window:before {
  font-family: FontAwesome;
  content: "\f0c1";
  margin-right: 12px;
  font-weight: 900;
}

a.link-icon:before {
  content: "\f0c1";
  font-family: FontAwesome;
  margin-right: 10px;
  font-weight: 900;
  display: inline-block;
}

.search-bar form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.event-details-wrap p {
  font-size: 17px;
}

/* .event-details-wrap h4.panel-heading {
  color: #209e79;
  padding: 30px 0;
  font-weight: 300;
  border-bottom: 1px dashed #ccc;
  cursor: pointer;
}
.event-details-wrap h4.panel-heading:after {
  content: "\f0d7";
  font-family: FontAwesome;
  float: right;
  color: #7b7b7b;
} */

.event-details-wrap h4.panel-heading+.panel-tabel-wrap {
  display: none;
}

.event-details-wrap .contenttable td,
.event-details-wrap .panel-tabel td {
  vertical-align: top;
}

.event-details-wrap .contenttable td:first-child,
.event-details-wrap .panel-tabel td:first-child {
  width: 150px;
}

.btn-danger:before {
  content: "";
  margin-right: 5px;
  background: url(../images/icon-sprite.png) no-repeat -31px -18px;
  width: 20px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
}

#c501 {
  background: #fff;
}

.search-container {
  padding: 50px 145px;
}

#c501 legend {
  font-size: 30px;
  text-transform: uppercase;
  border-bottom: none;
  margin-bottom: 40px;
}

.tx-indexedsearch-rules h2 {
  margin: 30px 0 0;
}

.tx-indexedsearch-title a {
  color: #000;
  text-decoration: none;
  text-transform: none;
  font-size: 18px;
  font-weight: 400;
}

.tx-indexedsearch-res h3 .tx-indexedsearch-icon {
  display: none;
}

.tx-indexedsearch-browsebox li a {
  color: #535353;
}

.tx-indexedsearch-browsebox p,
.tx-indexedsearch-browsebox ul {
  font-size: 13px;
  margin: 0;
}

.tx-indexedsearch-browsebox ul li:first-child {
  padding-left: 0;
}

.tx-indexedsearch-browsebox {
  margin: 15px 0;
}

.tx-indexedsearch-browsebox p {
  margin: 0;
}

#c501 p a {
  color: #209e79;
  text-decoration: underline;
}

.tx-indexedsearch-res {
  margin: 40px 0;
}

.tx-indexedsearch-res h3 {
  margin: 0 0 15px;
}

.tx-indexedsearch-percent {
  color: #7b7b7b;
  margin: 0 10px;
  font-weight: 300;
  font-size: 18px;
}

.tx-indexedsearch-description {
  color: #7b7b7b;
  font-size: 16px;
}

.tx-indexedsearch-form {
  float: left;
  width: 75%;

}

.tx-indexedsearch-search-submit input {
  margin: 0 10px 0;
  min-height: 43px;
}

@media (max-width: 992px) {
  .search-container {
    padding: 50px 60px;
  }
}

@media (max-width: 767px) {
  .search-container {
    padding: 40px 20px;
  }

  .tx-indexedsearch-form {
    float: left;
    width: 100%;
  }

  .tx-indexedsearch-search-submit input {
    margin: 0;
  }

}

/**/
.mediaWrapper {
  position: relative;
}

.startDate,
.publication-id {
  display: inline-block;
  background-color: #ffc900;
  color: #fff !important;
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 10px 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.publication-id{
  font-weight: 700;
  font-size: 32px;
  width: 100px;
}


.startDate span.mediaDate,
.startDate span.mediaMonth {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

li.active-submenu a {
  color: #209e79;
}

.people-description .nav-tabs>li:only-child>a {
  border-right: 0;
}

.header-address-dept {
  color: #7b7b7b;
  font-size: 18px;
  font-family: Gotham;
  font-weight: 400;
}

.cus-heading-wrap {
  margin-bottom: 30px;
}

.search-container {
  background: #f2f2f2;
}

.people-details-page .frame-default>.row {
  margin: 0;
}

.btn-default:hover {
  color: #fff;
  background-color: #adadad;
  text-decoration: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.latest-events h2 {
  text-align: center;
}

#news-container-2.row {
  margin: 0;
}

.people-librarystaff-page .header-address-dept {
  display: none;
}

.latest-events .pagination-wrap {
  display: none;
}

table.contenttable {
  border: 0;
  width: 100%;
  /* border: none; */
  /* box-shadow: none; */
}

table.contenttable td {
  padding: 10px;
}

table.contenttable a {
  color: #7b7b7b;
  font-size: 14px;
}

table.contenttable a:hover {
  color: #209e79;
}

table.contenttable ul {
  margin-bottom: 10px;
}

.pubctn-list-wrap .events-list-blck h5 {
  color: #000;
}


a.external-link-new-window,
a.download {
  color: #727272;
}

a.external-link-new-window:hover,
a.download:hover {
  color: #209e79;
}


.content-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.content-area .text-wrap {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  margin: 5px 0 0;
}

.content-area .download-area {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  margin-bottom: 20px;
}

.content-area .content-publication {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
  padding: 0;
}

.content-area .mediaWrapper {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
  padding: 0;
}

.content-area .text-wrap-expand {
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4;
  margin: 5px 0 0;
}


.content-area .download-area:empty {
  display: none;
}

.Tx-Formhandler .row {
  margin: 0px;
}

.Tx-Formhandler .row small.error {
  color: #f00;
  top: -4px;
  position: relative;
}

.Tx-Formhandler .row input.error {
  -webkit-box-shadow: #f00 0px 0px 1px;
  box-shadow: #f00 0px 0px 1px;
}

.banner-slider .banner-text .btn-default {
  line-height: 44px;
}

.events-list-blck.people-list .cont-det p {
  line-height: 1em;

}

.events-list-blck.people-list .cont-det p+p {

  margin-top: 5px;
}

.custom-select {
  position: relative;
}

.custom-select.year-filter {
  top: -16px;
}

.custom-select select::-ms-expand {
  display: none;
}

.custom-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 6px;
}

@-moz-document url-prefix() {
  .custom-select {
    border: 1px solid #CCC;
    border-radius: 4px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
  }

  .custom-select select {
    width: 110%;
    background-position: right 30px center !important;
    border: none !important;
  }
}

.custom-select:after {
  background: url(../images/icon-sprite.png) no-repeat -17px -18px;
  width: 12px;
  height: 10px;
  display: inline-block;
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 9;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.pagination-wrap .pagination>li {
  display: inline;
  float: left;
  padding: 6px 12px;
  font-weight: 700;
}

.pagination-wrap .pagination>li:first-child {
  padding-left: 0;
}

.pagination-wrap nav li a {
  width: auto;
  float: none;
  padding: 0;
}

.pagination-wrap nav li.current {
  color: #209e79;
}


.annuoncement .content-wrap .ce-above .ce-gallery {
  margin-bottom: 0;
}

.annuoncement .content-wrap .note p {
  margin-bottom: 3px;
}

.news-list-view .view-all a {
  display: inline;
}


.scroll-arrows i:after {
  content: "";
  background: url(../images/icon-sprite.png) no-repeat;
  display: inline-block;
  width: 12px;
  height: 10px;
}

.scroll-arrows i.btn-scroll-up:after {
  background-position: -72px -17px;
}

.scroll-arrows i.btn-scroll-down:after {
  background-position: -17px -18px;
}

.scroll-wrap.level-first .scroll-arrows i.btn-scroll-up,
.scroll-wrap.level-last .scroll-arrows i.btn-scroll-down {
  cursor: no-drop;
}
.scroll-wrap.level-first .scroll-arrows i.btn-scroll-up:after,
.scroll-wrap.level-last .scroll-arrows i.btn-scroll-down:after {
  background-image: none;
}

.scroll-wrap.level-first .scroll-arrows i.btn-scroll-up:after {
  background-position: -55px -17px;
}

.scroll-wrap.level-last .scroll-arrows i.btn-scroll-down:after {
  background-position: -72px -31px;
}

.scroll-cont li {
  padding-right: 10px;
  padding-left: 10px;
  height: 42px;
  display: list-item;
  float: left;
  margin-bottom: 0;
}


.frame-type-menu_sitemap a {
  color: #727272;
}

.frame-type-menu_sitemap a:hover {
  color: #209e79;
}

.frame-type-menu_sitemap>ul>li:first-child>a {
  display: none;
}

.grid img {
  width: 100% !important;
  height: auto !important;
}

.grid .element-item {
  width: 33%;

}

.events-list-blck.publication-list {
  height: auto;
  max-height: initial;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}
.events-list-blck.publication-list img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.events-list-blck.publication-list  .event-desc h3,
.events-list-blck.publication-list  .event-desc,
.events-list-blck.publication-list  .event-desc p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}
.publication-detail .text-wrap p {
  font-family: 'Montserrat', sans-serif;  
  font-weight: 500;
}

.publ-container.row {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}
.publ-container.row> div {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.publ-container a:hover {
  text-decoration: none;
}

button.scrollToTop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  font-size: 29px;
  color: #209e79;
  background: #fff;
  display: none;
  z-index: 100;
}

.news .pubctn-lists>div {
  display: none;
}

.news .pubctn-lists>div.show-pub {
  display: block;
}

.pubctn-list-wrap .month-list li.active a:after {
  bottom: -3px;
}

.sidebar-links li.active>a {
  color: #209e79;
}


.btn-danger:hover {
  color: #fff;
  background-color: #209e79;
  border-color: #209e79;
}

.is-subpage .side_banner {
  background: none;
}

.event-details-wrap ..content-publication {
  padding: 20px 0;
}

.content-publication .mediaWrapper img {
  padding-left: 0;
  margin-top: 0;
}

.content-publication .mediaWrapper {
  padding-bottom: 30px;
  margin-top: 20px;
}

.row.pubctn-lists,
.peoplelist-wrap {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.row.pubctn-lists:before,
.row.pubctn-lists:after,
.peoplelist-wrap:after,
.peoplelist-wrap:before {
  content: normal;
}

.events-list-blck.people-list .event-desc .cont-det p,
.events-list-blck.people-list .event-desc .cont-det a {
  font-size: 13px;
  font-family: "Gotham";
  font-weight: 300;
}

.frame-type-menu_sitemap>ul {
  list-style: none;
  padding: 0;
}

.event-slider.owl-carousel {
  display: block;
}

section.newspub {
  opacity: 0;
}

.font-resize {
  position: absolute;
  right: 0;
  top: -80px;
  font-weight: bold;
}

.font-resize button {
  background: transparent;
  padding: 0 2px;
}

.font-resize #btn-decrease {
  font-size: 12px;
}

.font-resize #btn-orig {
  font-size: 14px;
}

.font-resize #btn-increase {
  font-size: 16px;
}

.press-content {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-height: 1.2em;
  max-height: 4.8em;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.people-description .nav-tabs {
  margin-top: 0;
}

.people-description .panel,
.search-tab .panel {
  border-radius: 0;
}

.people-description .panel-heading,
.search-tab .panel-heading {
  border-radius: 0;
  padding: 0;
}

.people-description .panel-title a,
.search-tab .panel-title a {
  padding: 15px 10px;
  display: block;
}

.people-description .panel-title a:hover,
.search-tab .panel-title a:hover {
  text-decoration: none;
}


.people-description .panel-heading:after,
.search-tab .panel-heading:after {
  top: 19px;
  right: 18px;
}

.people-description .panel-heading.active a,
.search-tab .panel-heading.active a {
  color: #209e79;
  text-decoration: none;
}

.people-description .panel-heading.active:after,
.search-tab .panel-heading.active:after {
  background-position: -1px -17px;
}

.people-description .panel-group,
.search-tab .panel-group {
  margin-bottom: 0;
}

.people-description {
  word-break: break-word;
}

.event-details-wrap {
  position: relative;
}

.event-details-wrap .font-resize {
  right: 40px;
  top: -21px;

}

.content-title {
  max-width: 700px;
}

.filter-row {
  display: none;
  margin-bottom: 30px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.cust-sel {
  border: 0;
  background: #ffffff;
  position: relative;
}

.cust-sel:after {
  background: url(../images/icon-sprite.png) no-repeat -17px -18px;
  width: 12px;
  height: 10px;
  display: inline-block;
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}

.cust-sel select {
  background: transparent;
  border: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  margin-bottom: 0;
  position: relative;
  z-index: 3;
}

.filter-row select {

  font-weight: bold;

}

.filter-row .cust-sel {
  width: 120px;
  margin-left: 15px;
}

.annuoncement>h3 {
  font-size: 18px;
  font-weight: 600;
  font-family: "Gotham book";
}

.ce-headline-center.content-title {
  max-width: 100%;
}

.all-events {
  display: none;
}

ul.list-inline.month-list.letters .cust-sel {
  background: transparent;
  min-width: 85px;
  top: -7px;
  right: -15px;
}

.filter-alumni .year-filter select {
  padding: 10px;
  font-weight: bold;
  font-size: 15px;
  height: auto;
  color: #000;
}

.tx-indexedsearch-text-item-path .fas {
  font-size: 13px;
}
.events-list-blck.publication-list .event-desc h5,
.events-list-blck.publication-list .event-desc h3{
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-height: 19px;
  max-height: 39px;
  min-height:39px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.events-list-blck.publication-list .event-desc .author{
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-height: 19px;
  max-height: 39px;
  min-height:39px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.mediaWrapper.event-image {
  margin-top: 77px;
}
.peoplelist-wrap .year{
  width: 100%;
}
.foundation_logo img{
  width: 105px;
}


/* setup alignment of arabic text */
.event-desc h5, .event-desc span {
    text-align: start;
    unicode-bidi: plaintext;
}

.people-description .tab-content p em {
  font-weight: 500;
}
.events-list-blck.people-list h5,
.event-desc h5, .event-desc span {
    font-family: 'Montserrat';
    font-weight: 500;
}
.ce-bodytext p {
  font-weight: 500;
}
.search-tab ul.nav-tabs li a {
  background: #fcc400;
  border-width: 4px 0 0 0;
}
.search-tab ul.nav-tabs li a.active{
  border-top: 4px solid #209e79;
}