/*
* **********************************
* ################################## ESTILOS DO EXIBIÇÃO
* **********************************
*/

/*
========================
======================== OCULTA SOCIAL
========================
*/

.social {
  display: none;
}
img {
  height: auto;
}

/*
========================
======================== ALTERA MAIN HEADER
========================
*/

.main-header {
  background: rgb(15, 75, 117);
  background: -moz-linear-gradient(
    90deg,
    rgba(15, 75, 117, 1) 0%,
    rgba(29, 87, 133, 1) 40%,
    rgba(133, 161, 179, 1) 100%
  );
  background: -webkit-linear-gradient(
    90deg,
    rgba(15, 75, 117, 1) 0%,
    rgba(29, 87, 133, 1) 40%,
    rgba(133, 161, 179, 1) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(15, 75, 117, 1) 0%,
    rgba(29, 87, 133, 1) 40%,
    rgba(133, 161, 179, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0f4b75",endColorstr="#85a1b3",GradientType=1);
  position: relative;
}

.main-header .content {
  border-bottom: 5px solid var(--darkYellow);
  padding-bottom: 30px;
}

/*
========================
======================== EXIBIÇÃO
========================
*/

.exhibition-header {
  margin-top: 80px;
}

.exhibition-header h1 {
  width: 70%;
  font-size: 2.375em;
  font-weight: 700;
  color: #2b3748;
}

@media (max-width: 1024px) {
  .exhibition-header h1 {
    width: 100%;
    font-size: 2em;
  }
}

@media (max-width: 980px) {
  .exhibition-header h1 {
    font-size: 1.6em;
  }
}

.exhibition-header p {
  font-size: 1em;
  font-weight: 300;
  color: var(--lightBlue);
  margin-top: 10px;
  display: block;
}

.exhibition-share {
  margin-top: 10px;
}

.exhibition-container {
  margin-top: 40px;
}

.exhibition-container .content {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

@media (max-width: 1024px) {
  .exhibition-container .content {
    flex-direction: column;
  }
}

.exhibition-media {
  flex-basis: 100%;
  margin-bottom: 40px;
}

.exhibition-image img {
  min-width: 100%;
  height: auto;
  object-fit: contain;
}

.exhibition-left {
  flex-basis: 48%;
}

.exhibition-left .htmlchars p {
  font-size: 1.1em;
  line-height: 1.2em;
  font-weight: 300;
  color: #2b3748;
}

.exhibition-right {
  flex-basis: 48%;
}

@media (max-width: 1024px) {
  .exhibition-galery {
    margin-top: 40px;
  }
}

.exhibition-galery h1 {
  font-size: 2em;
  font-weight: 300;
  color: #2b3748;
  margin-bottom: 10px;
}

@media (max-width: 1024px) {
  .exhibition-galery h1 {
    text-align: center;
  }
}

.exhibition-galery ul {
  display: flex;
  flex-wrap: wrap;
}

.exhibition-galery li {
  flex-basis: calc(25% - 10px);
  margin: 5px;
}

@media (max-width: 780px) {
  .exhibition-galery li {
    flex-basis: calc(50% - 10px);
    margin-bottom: 15px;
  }
}

.exhibition-galery li img {
  min-width: 100%;
  height: 140px;
  object-fit: cover;
}

@media (max-width: 780px) {
  .exhibition-galery li img {
    height: 180px;
  }
}

@media (max-width: 640px) {
  .exhibition-galery li img {
    height: 120px;
  }
}

.btn-file {
  background-color: #026490;
  width: 100%;
  margin-top: 40px;
  transition: 0.4s;
  color: #fff !important;
}

.btn-file:hover {
  background-color: #0f4863;
  text-decoration: none !important;
}

/*
========================
======================== ALTERA MAIN FOOTER
========================
*/

.main-footer {
  margin-top: 100px;
}

/*
========================
======================== HTMLCHARS H4
========================
*/

.htmlchars h4 {
  font-size: 1.4em;
  font-weight: 400;
  margin-bottom: 15px;
  border-top: 3px dotted #005c9f;
  padding-top: 25px;
  margin-top: 25px;
}
.htmlchars h5 {
  margin: 15px 0;
}
.htmlchars ul,
.htmlchars ol {
  margin: 0 0 15px 0;
}
.htmlchars ul li {
  list-style-type: disc;
  margin-bottom: 5px;
  border-radius: 7px;
  padding: 12px;
  background: #005c9f;
  color: #fff;
}
.htmlchars ul li:nth-child(odd) {
  background: #0084c0;
}
.htmlchars ul li p {
  margin: 10px 0;
  color: #ffffff !important;
  font-size: 1em;
}
.htmlchars ul li p:last-of-type {
  margin: 10px 0 0;
  color: #ffffff;
}
.htmlchars ul li a {
  color: #ffffff;
  cursor: pointer;
}
.htmlchars ul li a:hover {
  text-decoration: none;
}

.htmlchars ol li {
  list-style-type: disc;
  margin-bottom: 5px;
  border-radius: 7px;
  background: #005c9f;
  color: #fff;

  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.htmlchars ol li:nth-child(odd) {
  background: #0084c0;
}
.htmlchars ol li:hover {
  background: #004a8d;
}
.htmlchars ol li p {
  margin: 10px 0;
  color: #ffffff !important;
  font-size: 1em;
}
.htmlchars ol li p:last-of-type {
  margin: 10px 0 0;
  color: #ffffff;
}
.htmlchars ol li a {
  color: #ffffff;
  cursor: pointer;
  display: block;
  padding: 12px;
}
.htmlchars ol li a:hover {
  text-decoration: none;
}
