*, *::after, *::before {
  box-sizing: border-box;
}

body {
    font-family: 'Poppins';font-size: 22px;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
}

a {
    color: inherit;
    text-decoration: none;
    padding: 0;
    margin: 0;
    display: flex;
}

header {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
  width: 100%;
  height: 150px;
  padding: 0 80px 0 80px;
  margin: 0;
  background-color: #fff;
}

header h1 {
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  display: inline-flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-size: 0.650em;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  height: 40px;
  color: #0c542a;
}

header .i-set {
  padding-right: 5px;
}

header img {
  width: 180px;
  height: auto;
}

header .navigation {
    display: flex;
    transition: transform 500ms;
    padding: 10px;
    line-height: 2;
    margin-top: 25px;
}

header .navigation ul {
    display: flex;
    list-style: none;
    align-items: center;
    transition: transform 1s;
    padding: 0 0 0 25px;
    margin: 0;
}

header .navigation ul li {
  color: #252525;
  font-size: 0.8em;
  font-weight: lighter;
  text-transform: uppercase;
  padding: 10px;
}

header .navigation ul li:hover {
    color: #fa5032;
}

header #trw-hamburger {
  display: flex;
}

input[type="checkbox"]:checked ~ #sidebarMenu { transform: translateX(0); }

input[type=checkbox] {
  transition: all 0.3s;
  box-sizing: border-box;
  display: none;
}

.show-more {
  font-size: 16px;
}

.show-more i {
  font-size: 16px;
}

.main-content {
  display: flex;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}

.truncate-alt {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.sidebarIconToggle {
  transition: all 0.3s;
  box-sizing: border-box;
  cursor: pointer;
  position: absolute;
  z-index: 4;
  top: 75px;
  right: 80px;
  height: auto;
  width: 30px;
}

.spinner {
  transition: all 0.3s;
  box-sizing: border-box;
  height: 4px;
  width: 100%;
  background-color: #333;
}

.horizontal {
  transition: all 0.3s;
  box-sizing: border-box;
  position: relative;
  float: left;
  margin-top: 4px;
}

.diagonal.part-1 {
  position: relative;
  transition: all 0.3s;
  box-sizing: border-box;
  float: left;
}

.diagonal.part-2 {
  transition: all 0.3s;
  box-sizing: border-box;
  position: relative;
  float: left;
  margin-top: 4px;
}

input[type=checkbox]:checked ~ .sidebarIconToggle > .horizontal {
  transition: all 0.3s;
  box-sizing: border-box;
  opacity: 0;
}

input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-1 {
  transition: all 0.3s;
  box-sizing: border-box;
  transform: rotate(135deg);
  margin-top: 12px;
  background-color: #ffffff;
}

input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-2 {
  transition: all 0.3s;
  box-sizing: border-box;
  transform: rotate(-135deg);
  margin-top: -12px;
  background-color: #ffffff;
}

#sidebarMenu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  transform: translateY(-100%);
  transition: all 0.5s ease;
  background: rgba(12, 84, 42, 1);
  white-space: nowrap;
  overflow: scroll;
  overflow: -moz-scrollbars-none;
  -ms-overflow-style: none;
  z-index: 3;
}

#sidebarMenu::-webkit-scrollbar{
    display: none;
  }

#sidebarMenu {
  scrollbar-width: none;
}

#sidebarMenu {
  -ms-overflow-style: none;
}

.sidebarMenuInner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: center;
  justify-content: center;
  margin: 0;
  padding: 12vh 0 12vh 16vw;
  text-align: left;
  width: 100%;
}

.link-tree {
  flex: 1 1 33%;
  margin: 0;
}

.sidebarMenuInner li {
  display: flex;
  flex-direction: column;
  font-size: 1em;
  color: #ffce2b;
  line-height: 2;
  margin: 10px 0;
  cursor: pointer;
}

.sidebarMenuInner li a:hover {
  opacity: 0.8;
}

.sidebarMenuInner li a {
  text-transform: none;
  cursor: pointer;
  text-decoration: none;
}

.link-tree i {
    line-height: 2;
    margin-right: 5px;
}

.under-ul {
  display: flex;
  font-size: 0.8em;
  color: #ffffff;
  line-height: 2;
}

.under-ul a:hover {
  opacity: 0.8;
}

.hamburger-search {
  display: block;
  width: 600px;
  height: auto;
  margin: 40px 0 40px 0;
}

.hamburger-search-form {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-content: center;
  justify-content: center;
  margin: auto;
}

.hamburger-search-form input[type="text"] {
  position: relative;
  padding: 5px;
  width: 100%;
  height: 35px;
  background-color: #fff;
  color: #262626;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  font-size: 16px;
  font-weight: normal;
  border: none;
  outline: none;
}

.hamburger-search-form button {
  background: #fa5032;
  border: none;
  font-size: 22px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  padding: 0 12px;
  cursor: pointer;
  height: 35px;
  color: #fff;
  outline: none;
  text-decoration: none;
}

.hamburger-search-form input::placeholder {
  color:#333;
  font-size: 17px;
  letter-spacing: 1px;
  font-weight: normal;
  padding-left: 3px;
  opacity: 0.9;
}

#button-device-fluid {
    display: inline-flex;
    position: absolute;
    top: 65px;
    right: 125px;
}

.search-box {
  display: inline-flex;
  padding: 0;
  outline: none;
}

.search-box input {
  outline: none;
  border: none;
  width: 0;
  background-color: transparent;
  color: white;
  font-size: 16px;
  transition: width .4s cubic-bezier(0.18, 0.89, 0.32, 1.33);
}

.search-box input::placeholder {
  color:#808080;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: lighter;
  padding-left: 2px;
  opacity: 0.8;
}

.search-box:hover input,
.search-box input:focus,
.search-box input:valid {
  margin-left: 5px;
  width: 350px;
  border-bottom: 1px solid rgba(12, 84, 42,0.5);
  border-radius: 0;
}

.search-box button {
  outline: none;
  border: none;
  cursor: pointer;
  background-color: transparent;
  padding: 0;
  width: 40px;
  height: 40px;
  -webkit-appearance: none;
  font-size: 25px;
  color: #333;
}

.search-box:hover input,
.search-box input:focus,
.search-box input:valid {
background-color: rgba(12, 84, 42);
border-radius: 6px;
}

.search-box input::placeholder {
    color:rgba(255,255,255,0.7);
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 100;
    padding-left: 2px;
  }

  .search-box:hover input, .search-box input:focus, .search-box input:valid {
    margin-left: 5px;
    text-indent: 10px;
}

.search-btn {
  vertical-align: middle;
}

.search-btn:hover {
  opacity: 0.8;
  transition: 0.2s;
}

header .social-top a {
    display: inline-flex;
}

.social-top {
  position: absolute;
  top: 8px;
  right: 80px;
  z-index: 1;
}

.social-top i {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-size: 13px;
  width: 26px;
  height: 26px;
  background-color: #fa5032;
  color: #fff;
  transition: transform .2s;
  border-radius: 50%;
  text-align: center;
}

.social-top i:hover {
  background-color: #0c542a;
  transform: scale(1.2);
}

.slider {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.slider::after {
  display: block;
  position: relative;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, #000 100%);
  margin-top: -200px;
  height: 200px;
  width: 100%;
  content: '';
}

.container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.container h1 {
  color: gray;
  padding: 0;
  margin: 50px 0 0 0;
  font-size: 25px;
  font-weight: bold;
  line-height: 1.6;
}

.container h2 {
  color: gray;
  padding: 0;
  margin: 0;
  font-size: 22px;
  font-weight: normal;
  line-height: 1.5;
}

.content {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.content-pad {
    flex: 1 1 25%;
    margin: 0;
    text-align: center;
}

.content-pad img {
  width: 250px;
  padding: 10px;
}

.content-pad i {
  margin-right: 5px;
}

.orange-icon {
  color: #fa5032;
}

.yellow-icon {
  color: #ffce2b;
}

.purple-icon {
  color: #9b4a97;
}

.hero-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.highlight {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  background-color: #0c542a;
  width: 100%;
  height: 100%;
  min-height: 200px;
  padding: 0;
  margin: 0;
}

.highlight h1 {
  font-size: 1em;
  color: #fff;
  line-height: 1;
  vertical-align: middle;
}

.newsletter {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  background-color: #0c542a;
  width: 100%;
  height: 100%;
  min-height: 200px;
  padding: 0;
  margin: 0;
}

.newsletter-container {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  width: 90%;
  height: 200px;
}

.newsletter a {
  color: inherit;
  text-decoration: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
}

.newsletter-intro {
   display: inline-flex;
   flex-direction: column;
   width: 50%;
   margin: 0;
   padding: 0;
}
.newsletter-intro h1 {
   font-size: 1.5em;
   font-weight: normal;
   color: #FFFFFF;
   letter-spacing: -.03em;
   line-height: 1.4;
   margin: 0;
   padding: 0;
}

.newsletter-intro p {
  font-size: 0.750em;
  line-height: 1.4;
  letter-spacing: -.03em;
  color: lightgray;
  margin: 0;
  padding: 0;
}

.newsletter-intro i {
  color: #55cc29;
}

.newsletter-agreement form {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-direction: row;
  background-color: #fff;
  border: 3px solid #55cc29;
  border-radius: 25px;
  padding: 0;
  height: 55px;
}

.newsletter-agreement input {
  flex-grow:2;
  border:none;
  margin-left: 25px;
  height: 45px;
  font-size: 0.8em;
  font-weight: lighter;
  color: gray;
  opacity: 1;
}

.newsletter-agreement input:focus {
  outline: none;
}

.newsletter-agreement form:focus-within {
  outline: 1px solid #55cc29;
}

.newsletter-agreement input::placeholder {
  color: gray;
  opacity: 1;
}

.newsletter-agreement input:-ms-input-placeholder {
  color: gray;
  opacity: 1;
}

.newsletter-agreement input::-ms-input-placeholder {
  color: gray;
  opacity: 1;
}

.newsletter-agreement button {
  height: 55px;
  background: #55cc29;
  color: #fff;
  font-size: 0.870em;
  font-weight: normal;
  text-align: center;
  text-transform: uppercase;
  padding: 0 15px;
  border: 3px solid #55cc29;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s;
  margin-right: -3px;
}

.newsletter-agreement button:hover {
  background: #ffce2b;
}

.newsletter-agreement p {
 font-size: 0.650em;
 line-height: 1;
 letter-spacing: -.03em;
 color: lightgray;
 margin: 0;
 padding: 0;
 text-align: center;
 margin-top: 10px;
}

.newsletter-agreement {
 display: flex;
 flex-direction: column;
 width: 50%;
 margin: 0;
 padding: 0;
}

.response {
  display: none;
  color: #ffce2b;
  font-size: 0.8em;
  letter-spacing: -.03em;
  text-align: center;
  padding: 0;
  margin: 10px 0 0 0;
}

.main-news-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 80px;
  width: 100%;
  height: 100%;
  margin: 10px 0 20px 0;
  padding: 0;
}

.news-transition {
  display: block;
  margin: 60px 0;
}

.pinned-fluid {
  margin: 0;
  padding: 0;
}

.pinned-news-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 50%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.pinned-news-wrapper h1 {
  text-align: left;
  font-size: 1.8em;
  letter-spacing: -.03em;
  font-weight: 700;
  color: #0c542a;
  text-decoration: none;
  line-height: 1.1;
  margin: 0;
  padding: 0;
  transition: all 0.3s;
  width: 100%;
}

.pinned-news-wrapper h1:hover {
  opacity: 0.8;
 }

.pinned-news-wrapper h2 {
  font-size: 1.4em;
  font-weight: 700;
  letter-spacing: -.03em;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  color: #FFFFFF;
  text-align: left;
  text-decoration: none;
  line-height: normal;
  padding: 0 0 0 15px;
  transition: all 0.3s;
}

.pinned-news-wrapper h2:hover {
  opacity: 0.8;
 }

 .pinned-news-wrapper-image {
   display: block;
   width: 100%;
   height: 100%;
 }

.pinned-news-wrapper-image img {
  display: block;
  width: 100%;
  min-width: 100%;
  height: 100%;
  max-height: 370px;
  margin: 10px 0 0 0;
  padding: 0;
  border-radius: 6px;
  -webkit-filter: brightness(100%);
  object-position: center;
  object-fit: cover;
}

.pinned-news-wrapper img:hover {
  -webkit-filter: brightness(80%);
  transition: all 0.3s;
 }

.pinned-news-wrapper #headline-label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  background: rgba(250, 80, 50, 0.8);
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  text-align: left;
  padding: 0;
  margin: 0;
  transition: all 0.3s;
  overflow: hidden;
}

.pinned-news-wrapper #headline-label:hover {
  background: rgba(250, 80, 50, 1);
}

.headlines-news-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 50%;
  margin: 50px 0 0 0;
  padding: 0;
}

.headlines-news-wrapper img {
  display: flex;
  align-self: center;
  width: 250px;
  min-width: 250px;
  height: 140px;
  padding: 0;
  margin: 0 10px 50px 0;
  border-radius: 6px;
  -webkit-filter: brightness(100%);
  object-position: center;
  object-fit: cover;
}

.headlines-news-wrapper img:hover {
  -webkit-filter: brightness(80%);
  transition: all 0.3s;
 }

.headlines-news-wrapper h1 {
  display: flex;
  align-self: center;
  font-size: 1.2em;
  font-weight: bold;
  color: #0c542a;
  letter-spacing: -.03em;
  text-decoration: none;
  line-height: 1.1em;
  margin: 0 0 50px 0;
  padding: 0;
  transition: all 0.3s;
}

.headlines-news-wrapper h1:hover {
  opacity: 0.8;
 }

.news-pad {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.news-pad a {
  color: inherit;
  text-decoration: none;
  padding: 0;
  margin: 0;
  display: inherit;
}

.pinned-container {
  width: 90%;
  height: 100%;
  background-color: #FFFFFF;
  padding: 0;
  margin: 0 auto;
}

.pinned-container button {
  display: block;
  background-color: transparent;
  border: 4px solid #fa5032;
  border-radius: 10px;
  letter-spacing: 0;
  font-size: 0.9em;
  line-height: 1;
  color: #fa5032;
  padding: 17px 25px;
  text-transform: uppercase;
  transition: all 0.5s;
  align-self: center;
  margin: auto;
  margin-bottom: 40px;
}

.pinned-container button:hover {
  background-color: #fa5032;
  color: #fff;
  cursor: pointer;
  transform: scale(1.1);
}

.pinned-news-wrapper-text {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
}


.pinned-news-wrapper-image {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
}

#social-media-hui {
    display: none;
}

.newspage-wrapper {
  position: relative;
  display: flex;
  width: 100%;
  margin: 0;
  padding: 0;
}

.set-newspage {
  margin-bottom: 60px;
}

.post-data-list {
  position: relative;
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
  padding: 0;
}

.li-post-group {
  position: relative;
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
  padding: 0;
}

.newspage-wrapper img {
  display: flex;
  align-self: center;
  width: 320px;
  min-width: 320px;
  height: 180px;
  padding: 0;
  margin: 0 20px 0 0;
  border-radius: 6px;
  -webkit-filter: brightness(100%);
  object-position: center;
  object-fit: cover;
}

.newspage-wrapper img:hover {
  -webkit-filter: brightness(80%);
  transition: all 0.3s;
 }

 .newspage-title-wrapper {
   display: flex;
   flex-direction: column;
   flex-wrap: wrap;
   align-items: center;
   align-content: center;
   justify-content: center;
   text-align: left;
   margin: 0;
   padding: 0 0 40px 0;
 }

 .newspage-image-wrapper {
   display: flex;
   flex-direction: column;
   flex-wrap: wrap;
   align-items: center;
   align-content: center;
   justify-content: center;
   text-align: left;
   margin: 0;
   padding: 0 0 40px 0;
 }

.newspage-wrapper h1 {
  display: flex;
  align-self: flex-start;
  font-size: 1em;
  font-weight: normal;
  font-weight: bold;
  color: #fa5032;
  letter-spacing: -.03em;
  text-decoration: none;
  line-height: 1.8em;
  margin: 0;
  padding: 0;
  transition: all 0.3s;
}

.newspage-wrapper h1:hover {
  opacity: 0.8;
 }

 .newspage-wrapper h2 {
   display: flex;
   align-self: flex-start;
   font-size: 1.2em;
   font-weight: bold;
   color: #3C4754;
   letter-spacing: -.03em;
   text-decoration: none;
   line-height: 1.1em;
   margin: 0;
   padding: 0;
   transition: all 0.3s;
 }

 .newspage-wrapper h2:hover {
   opacity: 0.8;
  }

  .newspage-wrapper h3 {
    display: flex;
    align-self: flex-start;
    font-size: 0.9em;
    font-weight: normal;
    color: #808080;
    letter-spacing: -.03em;
    text-decoration: none;
    line-height: 1.2em;
    margin: 0;
    padding: 5px 0 0 0;
    transition: all 0.3s;
  }

  .newspage-wrapper h3:hover {
    opacity: 0.8;
   }

   .newspage-wrapper h4 {
     display: flex;
     align-self: flex-start;
     font-size: 0.7em;
     font-weight: normal;
     color: gray;
     letter-spacing: -.03em;
     text-decoration: none;
     line-height: 2;
     margin: 0;
     padding: 3px 0 0 0;
     transition: all 0.3s;
   }

   .newspage-wrapper h4:hover {
     opacity: 0.8;
    }

    .newspage-wrapper i {
      line-height: 2;
      padding-right: 5px;
     }


.location {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  background-color: #ffce2b;
  width: 100%;
  height: 100%;
}

.location h1 {
  font-size: 1.4em;
  font-weight: normal;
  line-height: 1.4;
  color: #fff;
  text-align: center;
}

.location div {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  margin-bottom: 40px;
  overflow: hidden;
}

.location iframe {
  max-width: 90vw;
  overflow: hidden;
}

.location i {
  color: #fa5032;
}

.home-institutional {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  background-color: #fff;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.sponsorships-pad {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  background-color: #fff;
  width: 100%;
  overflow: hidden;
}

.sponsorships-split {
  flex: 1 1 33%;
  margin: 0;
  padding: 0;
}

.sponsorships-wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 30px;
}

.sponsorships-wrapper h2 {
  font-size: 1.2em;
  font-weight: bold;
  line-height: 1.1;
  color: #0c542a;
  width: 80%;
  text-align: center;
}

.sponsorships-wrapper img {
  max-width: 400px;
  max-height: 250px;
  object-fit: cover;
  object-position: center;
}

.home-institutional h1 {
  font-size: 1.4em;
  font-weight: normal;
  line-height: 1.4;
  color: #0c542a;
  text-align: center;
}

.home-institutional i {
  color: #ffce2b;
}

.spotlight-images {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  background-color: #0194e1;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
}

.spotlight-images h1 {
  font-size: 1.4em;
  font-weight: normal;
  line-height: 1.4;
  color: #fff;
  text-align: center;
  margin: 15px 0;
}

.spotlight-images i {
  color: lightgray;
}

.spotlight-images-pad {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 90%;
  overflow: hidden;
  padding: 0 10px;
}

.spotlight-images-split {
  flex: 1 1 33%;
  margin: 0 0 30px 0;
  padding: 0;
  max-width: 33%;
}

.spotlight-images-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 20px 20px;
  padding: 0;
  background-color: #fff;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  box-shadow: 1px 1px 0px #999,
                2px 2px 0px #4E5761,
                3px 3px 0px #4E5761,
                4px 4px 0px #4E5761,
                5px 5px 0px #4E5761,
                6px 6px 0px #4E5761;
  transition: all 0.4s;
}

.maximize-spotlight {
  display: none;
  position: absolute;
  right: 18px;
  top: 15px;
  color: #fff;
  font-size: 30px;
  transition: all 0.5s;
}

.spotlight-images-wrapper:hover {
  transform: scale(1.1);
}

.spotlight-images-wrapper:hover img {
  -webkit-filter: brightness(80%);
}

.spotlight-images-wrapper:hover .maximize-spotlight {
  display: block;
}

.spotlight-images-title-wrapper {
  height: 100px;
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.2), 0 12px 28px 0 rgba(0, 0, 0, 0.19);
}

.spotlight-images-wrapper h2 {
  font-size: 1em;
  font-weight: bold;
  line-height: 1.1;
  color: #4E5761;
  padding: 12px 15px 0 15px;
  margin: 0;
}

.spotlight-images-wrapper img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.2), 0 6px 14px 0 rgba(0, 0, 0, 0.19);
  -webkit-filter: brightness(100%);
}

.spotlight-images button {
  background-color: transparent;
  border: 4px solid #fff;
  border-radius: 10px;
  letter-spacing: 0;
  font-size: 0.9em;
  line-height: 1;
  color: #fff;
  padding: 17px 25px;
  margin-bottom: 40px;
  text-transform: uppercase;
  transition: all 0.5s;
}

.spotlight-images button:hover {
  background-color: #fff;
  color: #9b4a97;
  cursor: pointer;
  transform: scale(1.1);
}

.show_more_main {
  display: block;
  width: 100%;
}

.show_more {
    display: block;
    max-width: 20vw;
    margin: auto;
    background-color: transparent;
    border: 4px solid #fff;
    border-radius: 10px;
    letter-spacing: 0;
    font-size: 0.9em;
    line-height: 1;
    color: #fff;
    padding: 17px 25px;
    margin-bottom: 40px;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.5s;
    cursor: pointer;
}

.inner-spotlight-images {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  background-color: rgba(30, 30, 30, 1);
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  padding-bottom: 40px;
}

.inner-spotlight-images h1 {
  font-size: 1.2em;
  font-weight: normal;
  line-height: 1.4;
  color: #fff;
  text-align: center;
  margin: 0;
  padding: 0;
}

.inner-spotlight-images i {
  color: #9b4a97;
}

.inner-spotlight-images-pad {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 85%;
  overflow: hidden;
  padding: 0 10px;
}

.inner-spotlight-images-split {
  flex: 1 1 33%;
  margin: 0 0 15px 0;
  padding: 0;
  max-width: 33%;
}

.inner-spotlight-images-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 20px 15px;
  padding: 0;
  background-color: #fff;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  box-shadow: 1px 1px 0px #999,
                2px 2px 0px #4E5761,
                3px 3px 0px #4E5761,
                4px 4px 0px #4E5761,
                5px 5px 0px #4E5761,
                6px 6px 0px #4E5761;
  transition: all 0.4s;
}

.inner-maximize-spotlight {
  display: none;
  position: absolute;
  right: 18px;
  top: 15px;
  color: #fff;
  font-size: 30px;
  transition: all 0.5s;
}

.inner-spotlight-images-wrapper:hover {
  transform: scale(1.1);
}

.inner-spotlight-images-wrapper:hover img {
  -webkit-filter: brightness(80%);
}

.inner-spotlight-images-wrapper:hover .maximize-spotlight {
  display: block;
}

.inner-spotlight-images-title-wrapper {
  height: 100px;
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.2), 0 12px 28px 0 rgba(0, 0, 0, 0.19);
}

.inner-spotlight-images-wrapper h2 {
  font-size: 0.9em;
  font-weight: bold;
  line-height: 1.1;
  color: #4E5761;
  padding: 12px 15px 0 15px;
  margin: 0;
}

.inner-spotlight-images-wrapper img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.2), 0 6px 14px 0 rgba(0, 0, 0, 0.19);
  -webkit-filter: brightness(100%);
}

.inner-spotlight-images button {
  background-color: transparent;
  border: 4px solid #fff;
  border-radius: 10px;
  letter-spacing: 0;
  font-size: 0.9em;
  line-height: 1;
  color: #fff;
  padding: 17px 25px;
  margin-bottom: 40px;
  text-transform: uppercase;
  transition: all 0.5s;
}

.inner-spotlight-images button:hover {
  background-color: #fff;
  color: #9b4a97;
  cursor: pointer;
  transform: scale(1.1);
}

.inner-set {
  padding-top: 25px;
  background-color: #0194e1!important;
}

.inner-i {
  color: lightgray!important;
}

.video-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  background-color: rgba(30, 30, 30, 1);
  overflow: hidden;
}

.video-container i {
  display: flex;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 10vw;
  text-align: center;
  color: #fff;
  opacity: 1;
  transition: all 0.5s ease-out;
}

.video-container i:hover {
  color: #0194e1;
  cursor: pointer;
}

.video-container img {
  width: 100vw;
  height: 500px;
  object-fit: cover;
  object-position: center;
  -webkit-filter: brightness(80%);
  transition: all 0.5s ease-out;
}

.video-container img:hover {
  -webkit-filter: brightness(60%);
}

.video-container:hover .video-container img {
  -webkit-filter: brightness(60%);
}

.inner-video-container {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  overflow: hidden;
  background-color: rgba(30, 30, 30, 1);
  padding: 20px 0;
  margin: 0;
}

.inner-video-wrapper {
  display: flex;
  justify-content: center;
  padding: 30px;
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(0.25turn, rgba(236, 236, 236,0), rgba(189, 195, 199), rgba(236, 236, 236,0.1));
  border-image-slice: 1;
  width:100%;
}

.inner-video-container i {
  display: flex;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 10vw;
  text-align: center;
  color: #fff;
  opacity: 1;
  transition: all 0.5s ease-out;
}

.inner-video-container i:hover {
  color: #0194e1;
  cursor: pointer;
}

.inner-video-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -webkit-filter: brightness(80%);
  transition: all 0.5s ease-out;
}

.inner-video-container img:hover {
  -webkit-filter: brightness(60%);
}

.inner-video-container:hover .video-container img {
  -webkit-filter: brightness(60%);
}

.inner-video-container-txt {
  display: inline-flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  margin-left: 15px;
}

.inner-video-container-txt h1 {
  font-size: 1.4em;
  font-weight: normal;
  color: #FFFFFF;
  letter-spacing: -.03em;
  line-height: 1.4;
  margin: 0;
  padding: 0;
}

.inner-video-container-txt h2 {
  font-size: 0.8em;
  font-weight: normal;
  color: lightgray;
  letter-spacing: -.03em;
  line-height: 1.4;
  margin: 10px 0 10px 0;
  padding: 0;
}

.inner-video-container-txt h3 {
  font-size: 0.6em;
  font-weight: lighter;
  color: lightgray;
  letter-spacing: -.03em;
  line-height: 1.4;
  margin: 15px 0 0 0;
  padding: 0;
}

.inner-video-container-vd {
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  width: 50%;
}

.news-button,
.news-button:after {
  width: 170px;
  height: 50px;
  line-height: 50px;
  font-size: 20px;
  background: linear-gradient(45deg, transparent 5%, #0c542a 5%);
  border: 0;
  color: #fff;
  letter-spacing: 3px;
  box-shadow: 6px 0px 0px #fa5032;
  outline: transparent;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.news-button-expand,
.news-button-expand:after {
  width: 250px;
  height: 50px;
  line-height: 50px;
  font-size: 20px;
  background: linear-gradient(45deg, transparent 5%, #0c542a 5%);
  border: 0;
  color: #fff;
  letter-spacing: 3px;
  box-shadow: 6px 0px 0px #fa5032;
  outline: transparent;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.content-wrapper {
  display: block;
  margin: auto;
  margin-top: 40px;
  margin-bottom: 40px;
  width: 90%;
  height: auto;
  text-align: left;
}

.wrapper-inset {
  margin-top: 40px;
  margin-bottom: -20px;
  padding: 0;
}

.wrapper-offset {
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 0;
}

article {
  display: block;
  width: 75%;
  margin: auto;
  padding: 0;
}

article h1 {
    text-align: left;
    font-size: 2em;
    letter-spacing: -.03em;
    font-weight: 700;
    color: #fa5032;
    text-decoration: none;
    line-height: 1.3;
    margin: 20px 0 0 0;
    padding: 0;
    transition: all 0.3s;
    width: 100%;
}

article h2 {
    text-align: left;
    font-size: 0.9em;
    font-weight: normal;
    color: #555;
    letter-spacing: -.03em;
    text-decoration: none;
    line-height: 1.3;
    margin: 10px 0 0 0;
    padding: 0;
    transition: all 0.3s;
    width: 100%;
}

article .article-image-wrapper img {
    display: block;
    width: 75%;
    height: 100%;
    max-height: 400px;
    margin: auto;
    padding: 0;
    border-radius: 6px;
    -webkit-filter: brightness(100%);
    object-position: center;
    object-fit: cover;
    transition: all 0.5s ease-out;
    cursor: zoom-in;
}

article .article-image-wrapper div {
    width: 75%;
    background-color: #f5f5f5;
    margin: auto;
    padding: 0;
}

article .article-image-wrapper div p {
  display: block;
  font-size: 0.6em;
  font-weight: normal;
  line-height: 1.3;
  color: #555;
  margin: 0;
  padding: 6px;
}

article .article-image-wrapper img:hover {
-webkit-filter: brightness(80%);
}

article .article-image-wrapper img::after {
cursor: zoom-out;
}

article .article-main-wrapper {
    display: block;
    width: 100%;
    height: 100%;
    margin: 30px auto;
    padding: 0;
    background: linear-gradient( to left, rgba(245,245,245,1) 12%, rgba(197,197,197,1) 47%, rgba(245,245,245,1) 100% ) left bottom #fff no-repeat;
    background-size: 100% 1px;
}

article .article-body-wrapper {
    display: block;
    width: 90%;
    height: 100%;
    margin: 30px auto;
    padding: 0;
}

article .article-body-wrapper p {
    color: #333;
    font-family: helvetica,arial,sans-serif;
    font-size: 0.950em;
    margin-bottom: 1.75rem;
    line-height: 1.5;
    letter-spacing: -.03125rem;
    overflow-wrap: break-word;
}

.article-edition-info {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.editorial {
  display: inline-flex;
  flex: 80%;
  margin: 0;
  padding: 0;
  text-align: left;
}

.editorial p {
  font-size: 0.750em;
  color: #757575;
}

.editorial span {
  padding: 0;
  margin: 0;
}

.editorial i {
  color: #333;
  margin: 0 3px 0 0;
  padding: 0;
}

article .social-share-buttons {
    display: inline-flex;
    flex: 20%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
    text-align: right;
}

article .social-share-buttons .fa-solid {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    font-size: 16px;
    width: 35px;
    height: 35px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.3s ease-out;
}

article .social-share-buttons .fa-brands {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    font-size: 16px;
    width: 35px;
    height: 35px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.3s ease-out;
}

article .social-share-buttons .fa-solid:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

article .social-share-buttons .fa-brands:hover {
    transform: scale(1.2);
    opacity: 0.9;
}

article .social-share-buttons .fa-facebook-f {
    background: #3B5998;
    color: white;
}

article .social-share-buttons .fa-twitter {
    background: #55ACEE;
    color: white;
    margin-right: 5px;
}

article .social-share-buttons .fa-whatsapp {
    background: #25D366;
    color: white;
    margin-right: 5px;
}

article .social-share-buttons .fa-envelope {
    background: #c80000;
    color: white;
    margin-right: 5px;
}

.newspage-gallery {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    background-color: transparent;
    width: 100%;
    height: 100%;
    margin-bottom: 0;
}

.newspage-gallery h1 {
    font-size: 1.2em;
    font-weight: normal;
    line-height: 1.2;
    color: #9b4a97;
    text-align: center;
    margin: 10px 0;
}

.newspage-gallery button {
    background-color: transparent;
    border: 4px solid #9b4a97;
    border-radius: 10px;
    letter-spacing: 0;
    font-size: 0.9em;
    line-height: 1;
    color: #9b4a97;
    padding: 17px 25px;
    margin-bottom: 10px;
    text-transform: uppercase;
    transition: all 0.5s;
    cursor: pointer;
}

.newspage-gallery-pad {
   display: flex;
   flex-direction: row;
   flex-wrap: wrap;
   align-items: center;
   align-content: center;
   justify-content: center;
   width: 90%;
   overflow: hidden;
   padding: 0 10px;
}

.newspage-gallery-split {
    flex: 1 1 50%;
    margin: 0 0 30px 0;
    padding: 5px;
    max-width: 33%;
}

.newspage-gallery-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: transparent;
    transition: all 0.4s;
}

.newspage-gallery-wrapper img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    -webkit-filter: brightness(100%);
    padding: 0;
    border-radius: 6px;
    transition: all 0.4s;
}

.newspage-gallery-wrapper img:hover {
    -webkit-filter: brightness(60%);
}

.maximize-newspage-gallery {
    display: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    color: #fff;
    font-size: 30px;
    transition: all 0.5s;
}

.newspage-gallery-wrapper:hover .maximize-newspage-gallery {
    display: flex;
}

#news-page-results {
    letter-spacing: -.03em;
    color: #333;
    margin: auto;
    padding: 0;
    max-width: 90%;
    width: 90%;
    height: 100%;
}

#news-page-results .header {
    color: #454545;
    letter-spacing: -.03em;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1.5em;
    font-weight: normal;
    margin: auto;
    line-height: 1em;
    width: 100%;
    padding-bottom: 5px;
}

#news-page-results h1 {
    font-size: 1.5em;
    font-weight: bolder;
    color: #0c542a;
    letter-spacing: -.03em;
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

#news-page-results h2 {
    font-size: 1.1em;
    font-weight: normal;
    color: #333;
    letter-spacing: -.03em;
    margin: 5px 0 0 0;
    padding: 0;
    line-height: 1.1;
}

#news-page-results h3 {
    font-size: 1.2em;
    font-weight: normal;
    color: #0c0c0c;
    letter-spacing: -.03em;
    margin: 10px 0;
    padding: 0;
    line-height: 1.2;
}

#news-page-results h4 {
    text-align: left;
    font-size: 0.9em;
    font-weight: normal;
    color: #fa5032;
    letter-spacing: -.03em;
    text-decoration: none;
    vertical-align: bottom;
    line-height: 1.4;
    padding: 0;
    margin: 0;
}

#news-page-results p {
    font-size: 0.7em;
    font-weight: normal;
    color: #333333;
    letter-spacing: -.03em;
    margin: 10px 0 0 0;
    padding: 0;
    line-height: 1.2;
}

#news-page-results .container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    font-family: 'Roboto', sans-serif;
    letter-spacing: -.03em;
    line-height: 1.9em;
    color: #333;
    margin: 0;
    padding: 0;
    width: 100%;
}

#news-page-results .articleItem {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 30px 0;
    margin: 0;
    background: linear-gradient( to right, rgba(245,245,245,1) 12%, rgba(197,197,197,1) 47%, rgba(245,245,245,1) 100% ) left bottom #fff no-repeat;
    background-size: 100% 1px;
}

#news-page-results .article-img {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    width: 350px;
    height: 220px;
}

#news-page-results .article-txt {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin-left: 15px;
}

#news-page-results .article-img img {
    width: 350px;
    height: 220px;
    margin: 0;
    padding: 0;
    -webkit-filter: brightness(100%);
    object-position: center;
    object-fit: cover;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
}

#news-page-results h1 {
    font-size: 1.5em;
    font-weight: bold;
    color: #0c542a;
    letter-spacing: -.03em;
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

ul.simple-pagination {
	list-style: none;
}

.simple-pagination {
	display: block;
	overflow: hidden;
	padding: 0 5px 45px 0;
	margin: 0;
}

.simple-pagination ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.simple-pagination li {
	list-style: none;
	padding: 0;
	margin: 0;
	float: left;
}
span.ellipse.clickable {
	cursor: pointer;
}

.ellipse input {
	width: 3em;
}

.compact-theme span {
	cursor:pointer;
}

.compact-theme a, .compact-theme span {
	float: left;
	color: #333;
	font-size:14px;
	line-height:24px;
	font-weight: normal;
	text-align: center;
	border: 1px solid #AAA;
	border-left: none;
	min-width: 14px;
	padding: 0 7px;
	box-shadow: 2px 2px 2px rgba(0,0,0,0.2);
	background: #efefef; /* Old browsers */
	background: -moz-linear-gradient(top, #ffffff 0%, #efefef 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#efefef)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #ffffff 0%,#efefef 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #ffffff 0%,#efefef 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #ffffff 0%,#efefef 100%); /* IE10+ */
	background: linear-gradient(top, #ffffff 0%,#efefef 100%); /* W3C */
}

.compact-theme a:hover, .compact-theme li:not(.disabled):not(.active) span:hover {
	text-decoration: none;
	background: #efefef; /* Old browsers */
	background: -moz-linear-gradient(top, #efefef 0%, #bbbbbb 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#efefef), color-stop(100%,#bbbbbb)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #efefef 0%,#bbbbbb 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #efefef 0%,#bbbbbb 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #efefef 0%,#bbbbbb 100%); /* IE10+ */
	background: linear-gradient(top, #efefef 0%,#bbbbbb 100%); /* W3C */
}

.compact-theme li:first-child a, .compact-theme li:first-child span {
	border-left: 1px solid #AAA;
	border-radius: 3px 0 0 3px;
}

.compact-theme li:last-child a, .compact-theme li:last-child span {
	border-radius: 0 3px 3px 0;
}

.compact-theme .current {
	background: #bbbbbb; /* Old browsers */
	background: -moz-linear-gradient(top, #bbbbbb 0%, #efefef 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#bbbbbb), color-stop(100%,#efefef)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #bbbbbb 0%,#efefef 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #bbbbbb 0%,#efefef 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #bbbbbb 0%,#efefef 100%); /* IE10+ */
	background: linear-gradient(top, #bbbbbb 0%,#efefef 100%); /* W3C */
	cursor: default;
}

.compact-theme .ellipse {
	background: #EAEAEA;
	padding: 0 10px;
	cursor: default;
}

.light-theme span {
	cursor:pointer;
}

.light-theme a, .light-theme span {
	float: left;
	color: #666;
	font-size:16px;
	line-height:30px;
	font-weight: normal;
	text-align: center;
	border: 1px solid #BBB;
	min-width: 14px;
	padding: 0 10px;
	margin: 18px 5px 40px 0;
	border-radius: 3px;
	box-shadow: 0 1px 2px rgba(0,0,0,0.2);
	background: #efefef; /* Old browsers */
	background: -moz-linear-gradient(top, #ffffff 0%, #efefef 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#efefef)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #ffffff 0%,#efefef 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #ffffff 0%,#efefef 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #ffffff 0%,#efefef 100%); /* IE10+ */
	background: linear-gradient(top, #ffffff 0%,#efefef 100%); /* W3C */
}

.light-theme a:hover, .light-theme li:not(.disabled):not(.active) span:hover {
	text-decoration: none;
	background: #FCFCFC;
}

.light-theme .current {
	background: #fa5032;
	color: #FFF;
	border-color: #444;
	box-shadow: 0 1px 0 rgba(255,255,255,1), 0 0 2px rgba(0, 0, 0, 0.3) inset;
	cursor: default;
}

.light-theme .ellipse {
	background: none;
	border: none;
	border-radius: 0;
	box-shadow: none;
	font-weight: bold;
	cursor: default;
}

.dark-theme span {
	cursor:pointer;
}

.dark-theme a, .dark-theme span {
	float: left;
	color: #CCC;
	font-size:14px;
	line-height:24px;
	font-weight: normal;
	text-align: center;
	border: 1px solid #222;
	min-width: 14px;
	padding: 0 7px;
	margin: 0 5px 0 0;
	border-radius: 3px;
	box-shadow: 0 1px 2px rgba(0,0,0,0.2);
	background: #555; /* Old browsers */
	background: -moz-linear-gradient(top, #555 0%, #333 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#555), color-stop(100%,#333)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #555 0%,#333 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #555 0%,#333 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #555 0%,#333 100%); /* IE10+ */
	background: linear-gradient(top, #555 0%,#333 100%); /* W3C */
}

.dark-theme a:hover, .dark-theme li:not(.disabled):not(.active) span:hover {
	text-decoration: none;
	background: #444;
}

.dark-theme .current {
	background: #222;
	color: #FFF;
	border-color: #000;
	box-shadow: 0 1px 0 rgba(255,255,255,0.2), 0 0 1px 1px rgba(0, 0, 0, 0.1) inset;
	cursor: default;
}

.dark-theme .ellipse {
	background: none;
	border: none;
	border-radius: 0;
	box-shadow: none;
	font-weight: bold;
	cursor: default;
}

#article  {
    margin: auto;
    padding: 20px;
    margin-bottom: 30px;
}

#article .title-h  {
    color: #fa5032;
}

#article .text-h  {
    font-size: 0.9em!important;
}

#article .container #main-content a {
    color: inherit;
    text-decoration: none;
    padding: 0;
    margin: 0;
    display: inline-block;
}

#article .container #main-content p {
    font-size: 14px;
}

.sponsorship-content {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.sponsorship-content img {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    object-fit: cover;
    object-position: center;
    margin-top: 0;
    z-index: 1;
}

.sponsorship-content h1  {
    font-size: 1em;
    color: #fa5032;
    z-index: 2;
    padding: 10px;
    margin: 0;
}

#contact {
    width: 100%;
    margin: auto;
    padding: 20px 0;
}

#contact .container {
  display: block;
  width: 90%;
  max-width: 90vw;
  height: 100%;
  margin: auto;
  overflow: hidden;
  text-align: left;
  background-color: #f4f4f4;
  padding: 50px 30px;
  border-radius: 12px;
}

 #contact .contact-info {
  display: block;
  width: 50%;
  margin: 0;
  padding: 0;
  float: left;
}

#contact h1 {
  display: block;
  text-align: left;
  font-size: 1.2em;
  letter-spacing: -.03em;
  font-weight: 700;
  color: #454647;
  text-decoration: none;
  line-height: 1.2;
  margin: 0;
  padding: 5px 0;
  transition: all 0.3s;
}
#contact h2 {
    margin-top: 30px;
    font-size: 1em;
    color: #585858;
    margin-bottom: 0;
    line-height: 1.2em;
}
#contact h3 {
    display: inline-block;
    margin-top: 30px;
    font-size: 1em;
    font-weight: normal;
    color: #585858;
    margin-bottom: 0;
    line-height: 1.2em;
}
#contact a {
    color: #333333;
    text-decoration: none;
}
.contact-a1 {
    color: #333333;
    margin-right: 10px;
    padding-right: 10px;
}
#contact .title-field {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    width: 100%;
    margin-top: 5px;
    margin-bottom: 5px;
    text-align: left;
}
#contact .field {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  vertical-align: middle;
  font-size: 0.9em;
}

#contact i {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  margin: 0 5px 0 0;
  padding: 0;
  vertical-align: middle;
  color: #fa5032;
}

#contact p {
    display: block;
    text-align: left;
    font-size: 0.9em;
    letter-spacing: -.03em;
    font-weight: normal;
    color: #454647;
    text-decoration: none;
    line-height: 1.4;
    margin: 0;
    padding: 5px 0 0 0;
    transition: all 0.2s;
}

#contact .contact-url:hover {
    color: #0c542a;
    font-weight: bold;
}

#contact .contact-box {
  display: block;
  margin: 0 0 30px 0;
  padding: 0;
  text-align: left;
}

#contact .contact-form {
    width: 50%;
    margin: 0;
    padding: 0;
    float: right;
}

#contact-mail {
  display: block;
  width: 100%;
  margin: auto;
  padding: 0;
}

#contact-mail .mail-container {
    padding: 0;
    margin: 0;
}

#contact-mail .form-container {
    width: 80%;
    margin: auto;
    padding: 0;
}

#contact-mail h2 {
    font-size: 0.9em;
    font-weight: normal;
    color: #333333;
    text-align: left;
    font-family: Helvetica, Arial, sans-serif;
    padding-top: 5px;
}

#contact-mail .required {
    font-size: 0.7em;
    font-weight: normal;
    color: #e03025;
    text-align: left;
    font-family: Helvetica, Arial, sans-serif;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

#contact-mail form {
    margin: 10px auto;
    width: 100%;
}

#contact-mail .mail-info {
    font-size: 1.0em;
    font-weight: normal;
    color: #474747;
    text-align: left;
    font-family: Helvetica, Arial, sans-serif;
}

#contact-mail input[type=text], select {
    width: 100%;
    min-height: 55px;
    padding: 20px;
    margin-bottom: 12px;
    display: block;
    border: 1px solid #ccc;
    border-radius: 12px;
    box-sizing: border-box;
}

#contact-mail input[type=email], select {
    width: 100%;
    min-height: 55px;
    padding: 20px;
    margin-bottom: 12px;
    display: block;
    border: 1px solid #ccc;
    border-radius: 12px;
    box-sizing: border-box;
}

#contact-mail input[type=tel], select {
    width: 100%;
    min-height: 55px;
    padding: 20px;
    margin-bottom: 12px;
    display: block;
    border: 1px solid #ccc;
    border-radius: 12px;
    box-sizing: border-box;
}

#contact-mail input {
    font-size: 0.7em;
    font-family: Helvetica, Arial, sans-serif;
    white-space: nowrap;
    text-overflow: ellipsis;
}

#contact-mail input:focus:invalid {
    box-shadow:none;
    border: 2px solid #fa5032; !important;
    outline:none;
}

#contact-mail textarea:focus:invalid {
    box-shadow:none;
    border: 2px solid #fa5032; !important;
    outline:none;
}

#contact .contact-info i {
    display: inline-flex;
    margin: 0 5px 0 0;
    padding: 0;
    vertical-align: middle;
}

#contact .contact-form i {
    display: inline-flex;
    margin: 0 5px 0 0;
    padding: 0;
    vertical-align: middle;
}

#contact-mail .text-area {
    width: 100%;
    min-height: 130px;
    white-space: pre-wrap;
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
    word-wrap: break-word;
    padding: 15px;
    font-size: 0.7em;
    font-family: Helvetica, Arial, sans-serif;
    overflow: hidden;
    border: 1px solid #ccc;
    border-radius: 12px;
    box-sizing: border-box;
}

#contact-mail .submitbutton {
  display: flex;
  align-self: center;
  align-items: center;
  justify-content: center;
  background-color: #fa5032;
  font-size: 0.8em;
  font-weight: normal;
  letter-spacing: -.03em;
  color: #FFFFFF;
  border: 1px solid #ccc;
  border-radius: 12px;
  box-sizing: border-box;
  padding: 15px;
  margin: 10px auto;
  transition: all 0.4s;
  width: 50%;
  text-align: center;
}

#contact-mail .submitbutton:hover {
    background-color: #0c542a;
    cursor: pointer;
}

.contactresult {
  display: none;
}

.cookies-container.hide {
            display: none !important;
            margin: auto;
            width: 100%;
        }

.cookies-container {
  margin:auto;
  padding: 0;
}

.cookies-container.hide {
            display: block;
            margin: auto;
            width: 100%;
}

#special-ad {
    display: block;
    z-index: 9999;
}

#special-ad a {
    text-decoration: underline;
    cursor: pointer;
    color: #7FFFD4;
}

#special-ad .adviser-text {
    width: 90%;
    display: inline-block;
    color: #fff;
    font-size: 0.7em;
    font-weight: lighter;
    line-height: normal;
    text-align: left;
}

#special-ad .ad-modal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    width: 90%;
    min-height: 80px;
    background-color: rgba(12, 84, 42, 0.9);
    position: fixed;
    z-index: 99;
    bottom: 15%;
    left: 5%;
    border-width: 6px;
    border-style: solid;
    border-image: linear-gradient( to bottom, #ffce2b, #003e30 ) 1 100%;
    z-index: 9999;
    color: #fff;
    box-shadow: 10px 10px 10px 10px rgb(0 0 0 / 25%), 0 12px 28px 0 rgb(0 0 0 / 19%);
    padding: 25px 30px;
}

#special-ad .ad-modal-contents {
    display: inline-flex;
    width: 100%;
    text-align: center;
    padding: 10px;
    margin: auto;
}

#special-ad .close {
    display: block;
    font-size: 0.7em;
    font-weight: lighter;
    color: #fff;
    background-color: #fa5032;
    cursor: pointer;
    padding: 8px 20px 8px 20px;
    border-radius: 8px;
    width: 90%;
    min-width: 90%;
    margin: auto;
    text-align: center;
}

#special-ad .close:hover {
    cursor: pointer;
    opacity: 0.9;
}

#special-ad .ad-block {
    display: block;
    width: 100%;
    height: 100%;
}

#special-ad .ad-block-top {
    display: block;
    width: 100%;
}

#special-ad .ad-block-bottom {
    display: block;
    width: 100%;
}

#special-ad .adviser-btn {
    display: inline-block;
    width: calc(15% - 15px);
    padding-left: 0;
}

.cookies-container a {
  display: inline-flex;
}

footer {
  background-color: #f9f9f9;
  padding: 0;
  margin: 0;
}

footer .powered {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-content: center;
  justify-content: center;
  height: 40px;
  background-color: #0A0B0D;
}

footer .powered a:hover {
  opacity: 0.8;
}

footer .powered h1 {
  font-size: 0.7em;
  font-weight: normal;
  color: lightgray;
  line-height: 1.5;
  padding: 0 15px 0 15px;
  margin: 0;
}

footer .powered h2 {
  font-size: 0.7em;
  font-weight: normal;
  color: lightgray;
  line-height: 1.5;
  padding: 0 15px 0 15px;
  margin: 0;
}

footer .copyright {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  background-color: #f9f9f9;
  padding: 0;
  margin: 0;
}

footer .copyright .watermark {
  position: absolute;
  bottom: 10px;
  left: 80px;
  width: 150px;
}

footer .copyright h1 {
  position: absolute;
  bottom: 10px;
  right: 80px;
  font-size: 0.7em;
  font-weight: normal;
  color: #fff;
}

footer .copyright img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  padding: 0;
  margin: 0;
}

footer .container {
  display: flex;
  flex-grow: 1;
  flex-direction: row;
  align-items: flex-start;
  align-content: center;
  justify-content: center;
  background-color: #f9f9f9;
  margin: 0;
  padding: 30px 80px 30px 80px;
}

footer .link-tree {
  display: flex;
  flex-grow: 1;
  flex-direction: row;
  align-items: center;
  align-content: center;
  justify-content: center;
  list-style: none;
  margin-left: auto;
  margin-right: auto;
}

footer .link-tree li {
  display: flex;
  flex-direction: column;
  font-size: 1em;
  color: #161616;
  line-height: 2;
  margin: 10px 0;
  cursor: pointer;
  list-style: none;
}

footer .link-tree li a:hover {
  opacity: 0.8;
}

footer .link-tree li a {
  text-transform: none;
  cursor: pointer;
  text-decoration: none;
}

footer .link-tree i {
    line-height: 2;
    margin-right: 5px;
}

footer .under-ul {
  display: flex;
  font-size: 0.8em;
  color: #69747A;
  line-height: 2;
  list-style: none;
}

footer .under-ul a:hover {
  color: #333;
}

footer .mobile-copyright {
  display: none;
}

footer .link-tree {
    flex: 1 1 20%;
}

.gallery-container {
display: flex;
flex-wrap: wrap;
align-items: center;
align-content: center;
justify-content: center;
background-color: rgba(30, 30, 30, 1);
width: 100%;
height: 100%;
min-height: 400px;
padding: 50px 0;
}

.fancy-thumbs-container {
display: flex;
flex-wrap: wrap;
align-items: center;
align-content: center;
justify-content: center;
background-color: rgba(30, 30, 30, 1);
width: 90%;
}

.fancy-thumbs-container h1 {
font-size: 1em;
font-weight: normal;
color: #fff;
line-height: 1.4;
text-align: left;
padding: 0 0 0 10px;
margin: 0;
}

.fancy-thumbs-wrapper {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

.fancy-thumbs-display {
  position: relative;
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

.fancy-thumbs-display img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
  -webkit-filter: brightness(100%);
  padding: 0;
  border-radius: 6px;
  transition: all 0.4s;
}

.fancy-thumbs-display img:hover {
  -webkit-filter: brightness(60%);
}

.maximize-inside {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  color: #fff;
  font-size: 30px;
  transition: all 0.5s;
}

.fancy-thumbs-display:hover .maximize-inside {
  display: block;
}

.fancybox-thumbs {
top: auto;
width: auto;
bottom: 0;
left: 0;
right : 0;
height: 95px;
padding: 10px;
box-sizing: border-box;
background: rgba(0, 0, 0, 0.3);
}

.fancybox-show-thumbs .fancybox-inner {
right: 0;
bottom: 95px;
}

@media screen and (max-width: 800px) {

  .spotlight-images h1 {
    font-size: 6vw;
}

  .spotlight-images button {
    font-size: 4vw;
}

  .content-pad img {
    width: 60vw;
    padding: 10px;
}

  .fancy-thumbs-container {
  width: 96%;
  }

  .fancy-thumbs-display {
    flex: 50%;
    max-width: 50%;
  }
}


@media screen and (max-width: 912px) {
  header .navigation {
    display: none;
  }
}

@media screen and (max-width: 820px) {
  header .navigation {
    display: none;
  }
}

@media screen and (max-width: 767px) {

  .spotlight-images-wrapper:hover {
    transform: none;
  }

  .inner-spotlight-images-wrapper:hover {
    transform: none;
  }

  #special-ad .ad-modal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    width: 90%;
    min-height: 80px;
    background-color: rgba(12, 84, 42, 0.9);
    position: fixed;
    z-index: 99;
    bottom: 10%;
    left: 5%;
    border-width: 6px;
    border-style: solid;
    border-image: linear-gradient( to bottom, #ffce2b, #003e30 ) 1 100%;
    z-index: 9999;
    color: #fff;
    box-shadow: 10px 10px 10px 10px rgb(0 0 0 / 25%), 0 12px 28px 0 rgb(0 0 0 / 19%);
    padding: 20px 20px;
  }

#special-ad .ad-modal-contents {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0;
}

#special-ad .close {
    display: block;
    font-size: 4vw;
    font-weight: lighter;
    color: #fff;
    background-color: #fa5032;
    cursor: pointer;
    padding: 8px 25px 8px 25px;
    border-radius: 8px;
    width: 65%;
    min-width: 65%;
    margin: auto;
    text-align: center;
    margin-top: 15px;
}
#special-ad .adviser-text {
    display: inline-block;
    width: 100%;
    min-width: 100%;
    color: #fff;
    font-size: 3.8vw;
    font-weight: normal;
    line-height: normal;
    text-align: left;
}

#special-ad .ad-block-top {
    display: block;
    width: 100%;
    min-width: 100%;
}

#special-ad .ad-block {
    display: block;
    width: 100%;
    min-width: 100%;
    height: 100%;
}

#special-ad .ad-block-bottom {
    display: block;
    width: 100%;
    min-width: 100%;
}

#special-ad .adviser-btn {
    display: block;
    padding-top: 7px;
    min-width: 50%;
    margin: auto;
}

#special-ad .adviser-btn {
    display: block;
    width: 100%;
    padding-left: 0;
}

  #contact .container {
    display: block;
    width: 90%;
    max-width: 90vw;
    height: 100%;
    margin: auto;
    overflow: hidden;
    text-align: left;
    background-color: #f4f4f4;
    padding: 20px 15px;
    border-radius: 12px;
}

#contact-mail .submitbutton {
    display: flex;
    align-self: center;
    align-items: center;
    justify-content: center;
    background-color: #fa5032;
    font-size: 0.8em;
    font-weight: normal;
    letter-spacing: -.03em;
    color: #FFFFFF;
    border: 1px solid #ccc;
    border-radius: 12px;
    box-sizing: border-box;
    padding: 15px;
    margin: 10px auto 80px auto;
    transition: all 0.4s;
    width: 50%;
    text-align: center;
}

#contact h1 {
    display: block;
    text-align: left;
    font-size: 4.5vw;
    letter-spacing: -.03em;
    font-weight: 700;
    color: #454647;
    text-decoration: none;
    line-height: 1.2;
    margin: 0;
    padding: 5px 0;
    transition: all 0.3s;
}

#contact p {
    display: block;
    text-align: left;
    font-size: 4vw;
    letter-spacing: -.03em;
    font-weight: normal;
    color: #454647;
    text-decoration: none;
    line-height: 1.4;
    margin: 0;
    padding: 5px 0 0 0;
    transition: all 0.2s;
}

  #contact .contact-info {
   display: block;
   width: 100%;
   margin: 0;
   padding: 0;
   float: none;
 }
 #contact .contact-form {
    width: 100%;
    margin: 0;
    padding: 0;
    float: none;
}
#contact-mail .form-container {
    width: 100%;
    margin: auto;
    padding: 0;
}

  #contact h2 {
    font-size: 4vw
}

  #contact .field {
    font-size: 3.5vw;
  }

  .sponsorship-content h1  {
      font-size: 3.6vw;
  }

  .sponsorship-content img {
    margin-top: 0;
}

  #article .title-h  {
      font-size: 5vw!important;
  }

  #article .text-h  {
      font-size: 4vw!important;
  }

  .inner-video-container {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    overflow: hidden;
    background-color: rgba(30, 30, 30, 1);
}

.inner-video-wrapper {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 30px;
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(0.25turn, rgba(236, 236, 236,0), rgba(189, 195, 199), rgba(236, 236, 236,0.1));
    border-image-slice: 1;
    width: 100%;
}

  .inner-video-container-vd {
    position: relative;
    display: inline-flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    width: 100%;
  }

  .inner-video-container-txt {
    position: relative;
    display: inline-flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    margin-left: 0;
  }

  .inner-video-container-txt h1 {
    font-size: 5vw;
    font-weight: normal;
    color: #FFFFFF;
    letter-spacing: -.03em;
    line-height: 1.2;
    margin: 10px 0 0 0;
    padding: 0;
}

.inner-video-container-txt h2 {
    font-size: 4vw;
    font-weight: normal;
    color: lightgray;
    letter-spacing: -.03em;
    line-height: 1.4;
    margin: 8px 0 8px 0;
    padding: 0;
}

.inner-video-container-txt h3 {
    font-size: 3vw;
    font-weight: lighter;
    color: lightgray;
    letter-spacing: -.03em;
    line-height: 1.4;
    margin: 10px 0 0 0;
    padding: 0;
}

  #news-page-results h1 {
      font-size: 3.5vw;
      font-weight: bolder;
      color: #0c542a;
      letter-spacing: -.03em;
      margin: 0;
      padding: 0;
      line-height: 1.2;
  }

  #news-page-results h2 {
      font-size: 2.5vw;
      font-weight: normal;
      color: #333;
      letter-spacing: -.03em;
      margin: 5px 0 0 0;
      padding: 0;
      line-height: 1.1;
  }

  #news-page-results h3 {
      font-size: 4vw;
      font-weight: normal;
      color: #0c0c0c;
      letter-spacing: -.03em;
      margin: 10px 0;
      padding: 0;
      line-height: 1.2;
  }

  #news-page-results h4 {
      text-align: left;
      font-size: 2.5vw;
      font-weight: normal;
      color: #fa5032;
      letter-spacing: -.03em;
      text-decoration: none;
      vertical-align: bottom;
      line-height: 1.4;
      padding: 0;
      margin: 0;
  }

  #news-page-results p {
      font-size: 2vw;
      font-weight: normal;
      color: #333333;
      letter-spacing: -.03em;
      margin: 6px 0 0 0;
      padding: 0;
      line-height: 1.1;
  }

  #news-page-results .article-txt {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin-left: 6px;
}

#news-page-results .article-img {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    width: 150px;
    height: 120px;
}

  #news-page-results .article-img img {
    width: 130px;
    height: 80px;
    margin: 0;
    padding: 0;
    -webkit-filter: brightness(100%);
    object-position: center;
    object-fit: cover;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
}

#news-page-results .articleItem {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 5px 0;
    margin: 0;
    background: linear-gradient( to right, rgba(245,245,245,1) 12%, rgba(197,197,197,1) 47%, rgba(245,245,245,1) 100% ) left bottom #fff no-repeat;
    background-size: 100% 1px;
}

  .show_more {
    max-width: 80vw;
}

  .inner-spotlight-images button {
    font-size: 4vw;
}

  .inner-spotlight-images h1 {
    font-size: 5vw;
}

  .inner-spotlight-images-pad {
    width: 100%;
}

.spotlight-images-split {
    flex: 1 1 100%;
    margin: 0;
    padding: 0;
    max-width: 100%;
}

.inner-spotlight-images-split {
    flex: 1 1 100%;
    margin: 0 0 10px 0;
    padding: 0;
    max-width: 100%;
}

.inner-spotlight-images-wrapper h2 {
    font-size: 5vw;
}

  .fancy-thumbs-container h1 {
    font-size: 4vw;
}

  .fancy-thumbs-display img {
    height: 100px;
  }

  .newspage-gallery h1 {
    font-size: 5vw;
    line-height: 1.2;
    margin: 10px 0;
}

  .newspage-gallery button {
      background-color: transparent;
      border: 4px solid #9b4a97;
      border-radius: 10px;
      letter-spacing: 0;
      font-size: 4.5vw;
      line-height: 1;
      color: #9b4a97;
      padding: 10px 20px;
      margin-bottom: 10px;
      text-transform: uppercase;
      transition: all 0.5s;
      cursor: pointer;
  }

  .newspage-gallery-split {
      flex: 1 1 100%;
      margin: 0 0 10px 0;
      padding: 0;
      max-width: 100%;
  }

  article {
    width: 90%;
}

  article h1 {
    font-size: 8vw;
}

article h2 {
    font-size: 5vw;
}

.editorial p {
    font-size: 3.5vw;
}

article .article-body-wrapper {
    width: 100%;
}

article .article-body-wrapper p {
    font-size: 5.5vw;
}

article .social-share-buttons {
    flex: 100%;
    margin: 0 0 20px 0;
}

article .social-share-buttons .fa-envelope {
    margin-right: 10px;
}

article .social-share-buttons .fa-whatsapp {
    margin-right: 10px;
}

article .social-share-buttons .fa-twitter {
    margin-right: 10px;
}

article .article-image-wrapper img {
    width: 100%;
    max-height: 200px;
}

article .article-image-wrapper div {
    width: 100%;
}

article .article-image-wrapper div p {
    font-size: 3vw;
}

.news-button-expand, .news-button-expand:after {
    width: 50vw;
    height: 5vh;
    line-height: 5vh;
    font-size: 4vw;
    background: linear-gradient(45deg, transparent 5%, #0c542a 5%);
    border: 0;
    color: #fff;
    letter-spacing: 3px;
    box-shadow: 6px 0px 0px #fa5032;
    outline: transparent;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

  .newspage-wrapper h1 {
    display: flex;
    align-self: flex-start;
    font-size: 4vw;
    font-weight: normal;
    font-weight: bold;
    color: #fa5032;
    letter-spacing: -.03em;
    text-decoration: none;
    line-height: 1.8em;
    margin: 0;
    padding: 0;
    transition: all 0.3s;
}

  .newspage-wrapper h2 {
    display: flex;
    align-self: flex-start;
    font-size: 5vw;
    font-weight: bold;
    color: #3C4754;
    letter-spacing: -.03em;
    text-decoration: none;
    line-height: 1.1em;
    margin: 0;
    padding: 0;
    transition: all 0.3s;
}

.newspage-wrapper h3 {
    display: flex;
    align-self: flex-start;
    font-size: 3.5vw;
    font-weight: normal;
    color: #808080;
    letter-spacing: -.03em;
    text-decoration: none;
    line-height: 1.2em;
    margin: 0;
    padding: 5px 0 0 0;
    transition: all 0.3s;
}

.newspage-wrapper h4 {
    display: flex;
    align-self: flex-start;
    font-size: 3vw;
    font-weight: normal;
    color: gray;
    letter-spacing: -.03em;
    text-decoration: none;
    line-height: 2;
    margin: 0;
    padding: 3px 0 0 0;
    transition: all 0.3s;
}

  .news-button, .news-button:after {
    width: 150px;
    height: 35px;
    line-height: 35px;
    font-size: 15px;
    background: linear-gradient(45deg, transparent 5%, #0c542a 5%);
    border: 0;
    color: #fff;
    letter-spacing: 3px;
    box-shadow: 6px 0px 0px #fa5032;
    outline: transparent;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.wrapper-inset {
    margin-top: 30px;
    margin-bottom: -20px;
    padding: 0;
}

.wrapper-offset {
    margin-top: 30px;
    margin-bottom: 10px;
    padding: 0;
}

  .headlines-news-wrapper h1 {
      display: flex;
      align-self: center;
      font-size: 4vw;
      font-weight: bold;
      color: #0c542a;
      letter-spacing: -.03em;
      text-decoration: none;
      line-height: 1.1em;
      margin: 0 0 30px 0;
      padding: 0;
      transition: all 0.3s;
  }

  .pinned-news-wrapper h1 {
      font-size: 5vw;
      margin-top: 10px;
  }

  .pinned-news-wrapper h2 {
      font-size: 4vw;
  }

  .newspage-wrapper img {
    display: flex;
    align-self: center;
    width: 100%;
    min-width: 100%;
    height: 180px;
    padding: 0;
    margin: 0;
    border-radius: 6px;
    -webkit-filter: brightness(100%);
    object-position: center;
    object-fit: cover;
}

  .post-data-list {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
    padding: 0;
}

  .li-post-group {
    position: relative;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

  .newspage-image-wrapper {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    text-align: left;
    margin: 0;
    padding: 0 0 10px 0;
    width: 100%;
}

.newspage-title-wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  text-align: left;
  margin: 0;
  padding: 0 0 40px 0;
  width: 100%;
  height: 100%;
}

.video-container i {
    font-size: 30vw;
}

  .spotlight-images-wrapper h2 {
    font-size: 4.5vw;
}

  .spotlight-images-title-wrapper {
      height: 80px;
  }

  .response {
    display: none;
    color: #ffce2b;
    font-size: 0.8em;
    letter-spacing: -.03em;
    text-align: center;
    padding: 0;
    margin: -30px 0 20px 0;
  }

  .contactresponse {
    display: none;
    color: #0c542a;
    font-size: 0.8em;
    letter-spacing: -.03em;
    text-align: center;
    padding: 0;
    margin: -30px 0 20px 0;
  }

  .newsletter {
    flex-direction: column;
    height: 100%;
  }

  .newsletter-container {
    flex: 1 1 100%;
    height: 100%;
  }

  .newsletter-intro {
   width: 100%;
  }
  .newsletter-intro h1 {
   font-size: 4.5vw;
   line-height: 1.2;
   padding: 40px 0 5px 0;
   text-align: center;
  }

  .newsletter-intro p {
  font-size: 3.5vw;
  line-height: 1.2;
  padding: 0 0 15px 0;
  text-align: center;
  }

  .newsletter-agreement form {
    height: 40px;
  }

  .newsletter-agreement input {
    margin-left: 15px;
    max-width: 80%;
    height: 30px;
    font-size: 4vw;
  }

  .newsletter-agreement button {
    height: 40px;
    font-size: 3vw;
    padding: 0 8px;
    margin-right: -3px;
  }

  .newsletter-agreement p {
    font-size: 3.5vw;
    line-height: 1.2;
    padding: 0 0 40px 0;
    text-align: center;
    }

  .newsletter-agreement {
   width: 100%;
  }
}

@media screen and (min-width: 768px) and (max-device-width: 1024px) {

  #special-ad .ad-modal-contents {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px;
    margin: auto;
}

  #special-ad .adviser-btn {
    display: block;
    width: 100%;
    margin-top: 20px;
    padding-left: 0;
}

#special-ad .adviser-text {
    width: 100%;
    display: block;
    color: #fff;
    font-size: 0.7em;
    font-weight: lighter;
    line-height: normal;
    text-align: left;
}

#special-ad .close {
    display: block;
    font-size: 0.7em;
    font-weight: lighter;
    color: #fff;
    background-color: #fa5032;
    cursor: pointer;
    padding: 8px 20px 8px 20px;
    border-radius: 8px;
    width: 50%;
    min-width: 50%;
    margin: auto;
    text-align: center;
}

  .inner-video-container-txt h1 {
    font-size: 1em;
    font-weight: normal;
    color: #FFFFFF;
    letter-spacing: -.03em;
    line-height: 1.4;
    margin: 0;
    padding: 0;
}

.inner-video-container-txt h2 {
    font-size: 0.7em;
    font-weight: normal;
    color: lightgray;
    letter-spacing: -.03em;
    line-height: 1.4;
    margin: 8px 0 8px 0;
    padding: 0;
}

.inner-video-container-txt h3 {
    font-size: 0.5em;
    font-weight: lighter;
    color: lightgray;
    letter-spacing: -.03em;
    line-height: 1.4;
    margin: 10px 0 0 0;
    padding: 0;
}

  #news-page-results h1 {
      font-size: 1.1em;
      font-weight: bolder;
      color: #0c542a;
      letter-spacing: -.03em;
      margin: 0;
      padding: 0;
      line-height: 1.2;
  }

  #news-page-results h2 {
      font-size: 0.9em;
      font-weight: normal;
      color: #333;
      letter-spacing: -.03em;
      margin: 5px 0 0 0;
      padding: 0;
      line-height: 1.1;
  }

  #news-page-results h3 {
      font-size: 0.8em;
      font-weight: normal;
      color: #0c0c0c;
      letter-spacing: -.03em;
      margin: 10px 0;
      padding: 0;
      line-height: 1.2;
  }

  #news-page-results h4 {
      text-align: left;
      font-size: 0.7em;
      font-weight: normal;
      color: #fa5032;
      letter-spacing: -.03em;
      text-decoration: none;
      vertical-align: bottom;
      line-height: 1.4;
      padding: 0;
      margin: 0;
  }

  #news-page-results p {
      font-size: 0.7em;
      font-weight: normal;
      color: #333333;
      letter-spacing: -.03em;
      margin: 10px 0 0 0;
      padding: 0;
      line-height: 1.2;
  }

  #news-page-results .article-img img {
    width: 200px;
    height: 130px;
    margin: 0;
    padding: 0;
    -webkit-filter: brightness(100%);
    object-position: center;
    object-fit: cover;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
}

  .show_more {
    max-width: 40vw;
}

  .inner-spotlight-images-split {
    flex: 1 1 50%;
    margin: 0;
    padding: 0;
    max-width: 50%;
}

  .spotlight-images-split {
    flex: 1 1 50%;
    margin: 0;
    padding: 0;
    max-width: 50%;
}

  .fancy-thumbs-display img {
    height: 200px;
  }

  article {
    width: 90%;
}

  article h1 {
    font-size: 6vw;
}

article h2 {
    font-size: 4vw;
}

.editorial p {
    font-size: 3vw;
}

article .article-body-wrapper {
    width: 100%;
}

article .article-body-wrapper p {
    font-size: 4.7vw;
}

article .social-share-buttons {
    flex: 100%;
    margin: 0 0 20px 0;
}

article .social-share-buttons .fa-envelope {
    margin-right: 10px;
}

article .social-share-buttons .fa-whatsapp {
    margin-right: 10px;
}

article .social-share-buttons .fa-twitter {
    margin-right: 10px;
}

article .article-image-wrapper img {
    width: 100%;
    max-height: 400px;
}

article .article-image-wrapper div {
    width: 100%;
}

article .article-image-wrapper div p {
    font-size: 2.5vw;
}

.news-button-expand, .news-button-expand:after {
    width: 45vw;
    height: 5vh;
    line-height: 5vh;
    font-size: 3.5vw;
    background: linear-gradient(45deg, transparent 5%, #0c542a 5%);
    border: 0;
    color: #fff;
    letter-spacing: 3px;
    box-shadow: 6px 0px 0px #fa5032;
    outline: transparent;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

  header {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: flex-start;
    width: 100%;
    height: 150px;
    padding: 0 40px 0 40px;
    margin: 0;
    background-color: #fff;
}

.sidebarIconToggle {
    transition: all 0.3s;
    box-sizing: border-box;
    cursor: pointer;
    position: absolute;
    z-index: 4;
    top: 75px;
    right: 40px;
    height: auto;
    width: 30px;
}

#button-device-fluid {
    display: inline-flex;
    position: absolute;
    top: 65px;
    right: 85px;
}

.social-top {
    position: absolute;
    top: 8px;
    right: 40px;
    z-index: 1;
}

  .news-button, .news-button:after {
    margin: 0 0 20px 0;
}

  .pinned-news-wrapper h1 {
    font-size: 5vw;
}

.pinned-news-wrapper h2 {
    font-size: 4vw;
}

.headlines-news-wrapper h1 {
    font-size: 4vw;
}

  .newspage-wrapper img {
    display: flex;
    align-self: center;
    width: 280px;
    min-width: 280px;
    height: 160px;
    padding: 0;
    margin: 0 20px 0 0;
    border-radius: 6px;
    -webkit-filter: brightness(100%);
    object-position: center;
    object-fit: cover;
}

  .video-container i {
      font-size: 20vw;
  }

  .spotlight-images-title-wrapper {
    height: 150px;
}

.spotlight-images-wrapper h2 {
    font-size: 3.8vw;
}

  header .navigation ul li {
    font-size: 1.2vw;
    padding: 8px;
}

header .navigation ul {
    padding: 0 0 0 15px;
}

.spotlight-images-wrapper {
    margin: 20px 20px;
}

  .response {
    display: none;
    color: #ffce2b;
    font-size: 0.8em;
    letter-spacing: -.03em;
    text-align: center;
    padding: 0;
    margin: -40px 0 30px 0;
  }

  .contactresponse {
    display: none;
    color: #0c542a;
    font-size: 0.8em;
    letter-spacing: -.03em;
    text-align: center;
    padding: 0;
    margin: -40px 0 30px 0;
  }

  .newsletter {
    flex-direction: column;
    height: 100%;
  }

  .newsletter-container {
    flex: 1 1 100%;
    height: 100%;
  }

  .newsletter-intro {
   width: 100%;
  }
  .newsletter-intro h1 {
   font-size: 4vw;
   line-height: 1.2;
   padding: 60px 0 5px 0;
   text-align: center;
  }

  .newsletter-intro p {
  font-size: 2.5vw;
  line-height: 1.2;
  padding: 0 0 25px 0;
  text-align: center;
  }

  .newsletter-agreement form {
    height: 60px;
  }

  .newsletter-agreement input {
    margin-left: 15px;
    max-width: 80%;
    height: 50px;
    font-size: 3vw;
  }

  .newsletter-agreement button {
    height: 60px;
    font-size: 2.5vw;
    padding: 0 8px;
    margin-right: -3px;
  }

  .newsletter-agreement p {
    font-size: 2.5vw;
    line-height: 1.2;
    padding: 10px 0 60px 0;
    text-align: center;
    }

  .newsletter-agreement {
   width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .hero-image {
    max-width: 100%;
  }

.spotlight-images-pad {
  padding: 0;
  width: 100%;
}

.inner-spotlight-images-pad {
  padding: 0;
  width: 95%;
}

.inner-spotlight-images h1 {
    margin-top: 10px;
}

  .sponsorships-pad {
    flex-direction: column;
}

.home-institutional h1 {
    font-size: 4vw;
}

.sponsorships-wrapper h2 {
    font-size: 4.5vw;
}

.sponsorships-wrapper img {
    max-width: 200px;
    max-height: 125px;
    object-fit: cover;
    object-position: center;
}

.location h1 {
    font-size: 4vw;
    font-weight: normal;
    line-height: 1.4;
    color: #fff;
    text-align: center;
}

  .container h1 {
    margin: 15px 0 0 0;
    font-size: 3.5vw;
    line-height: 1.6;
  }

  .container h2 {
    font-size: 3.5vw;
    line-height: 1.5;
  }

  .highlight {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .pinned-container #pinned {
    position: relative;
    width: 100%;
    background-color: #FFFFFF;
    float: left;
}

.pinned-container #headlines h1 {
    display: inline-flex;
    width: 50vw;
    font-size: 4.8vw;
    font-weight: bold;
    letter-spacing: -.035em;
    color: #0c542a;
    text-decoration: none;
    margin: 0;
    padding: 0 0 0 10px;
}

.pinned-container #pinned h1 {
    font-size: 9vw!important;
}

.pinned-container #pinned h2 {
    font-size: 4.8vw!important;
    padding: 5px 14px 5px 14px!important;
}

.pinned-container #pinned img {
    left: 0px;
    width: 100%;
    height: 400px!important;
    margin: auto;
    border-radius: 4px;
    vertical-align: bottom;
    margin-top: 15px;
    -webkit-filter: brightness(100%);
    object-position: center;
    object-fit: cover;
}

.news-pad #headlines img {
  width: 39vw;
  height: 170px;
  border-radius: 4px;
  -webkit-filter: brightness(100%);
  display: inline-flex;
  vertical-align: middle;
  margin: 0;
  object-position: center;
  object-fit: cover;
}

.pinned-container #headline-label {
    padding: 0;
    margin: 0;
}

  .content-pad {
      flex: 1 1 100%;
      margin: 0;
      text-align: center;
  }

  header h1 {
    font-size: 0.6em;
  }

  header .navigation {
    display: none;
  }

}

@media screen and (min-width: 541px) and (max-device-width: 768px) {
.main-news-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: 100%;
  height: 100%;
  margin: 20px 0 0 0;
}

.pinned-news-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.headlines-news-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    margin: 20px 0 0 0;
    padding: 0;
}

.headlines-news-wrapper img {
    display: flex;
    align-self: center;
    width: 35vw;
    min-width: 35vw;
    height: 150px;
    padding: 0;
    margin: 0 10px 30px 0;
    border-radius: 6px;
    -webkit-filter: brightness(100%);
    object-position: center;
    object-fit: cover;
}
}

@media screen and (max-width: 540px) {
  header {
    height: 80px;
    padding: 0 30px 0 30px;
}

header img {
  width: 100px;
  height: auto;
}

  .sidebarIconToggle {
    top: 40%;
    right: 30px;
  }

  #button-device-fluid {
      display: none;
  }

  .content-pad {
      flex: 1 1 100%;
      margin: 0;
      text-align: center;
  }

  .highlight {
    height: 100%;
    padding: 5px;
}

.highlight h1 {
  font-size: 4vw;
  color: #fff;
  line-height: 1;
  vertical-align: middle;
}

.main-news-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: 100%;
  height: 100%;
  margin: 20px 0 10px 0;
}

.headlines-news-wrapper h1 {
    display: flex;
    align-self: center;
    font-size: 4.5vw;
    font-weight: bold;
    color: #0c542a;
    letter-spacing: -.03em;
    text-decoration: none;
    line-height: 1.1em;
    margin: 0 0 30px 0;
    padding: 0;
    transition: all 0.3s;
}

.pinned-news-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.headlines-news-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    margin: 20px 0 0 0;
    padding: 0;
}

.headlines-news-wrapper img {
    display: flex;
    align-self: center;
    width: 150px;
    min-width: 150px;
    height: 90px;
    padding: 0;
    margin: 0 10px 30px 0;
    border-radius: 6px;
    -webkit-filter: brightness(100%);
    object-position: center;
    object-fit: cover;
}

.link-tree {
      flex: 1 1 100%;
      margin: 0 0 0 30px;
  }

  .sidebarMenuInner {
    padding: 10px 0 0 0;
  }

  .hamburger-search {
    display: block;
    width: 600px;
    height: auto;
    margin: 15px 30px 30px 30px;
}

header .social-top {
  display: none;
}

header h1 {
  display: none;
}

footer {
    background-color: rgba(12, 84, 42, 1);
}

footer .container {
    margin: 0;
    padding: 0;
}

footer .copyright {
  display: none;
}

footer .mobile-copyright {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
}

footer .mobile-copyright h1 {
  font-size: 0.7em;
  font-weight: normal;
  color: #fff;
  text-align: center;
}

footer .mobile-copyright .mobile-watermark {
  padding: 30px 0;
  width: 150px;
  height: auto;
}

footer .mobile-copyright img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  padding: 0;
  margin: 0;
}

footer .link-tree {
    display: none;
}

footer .powered {
  flex-direction: column;
  height: 60px;
}

footer .mobile-copyright-info {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
}

footer .mobile-copyright-info p {
  font-size: 0.7em;
  color: #fff;
  line-height: 1;
  margin: 0 0 15px 0;
  padding: 5px;
}

footer .powered h1 {
    font-size: 0.6em;
}

footer .powered h2 {
    font-size: 0.6em;
}

.slider::after {
  margin-top: -120px;
  height: 120px;
}


}
