/*
* **********************************
* ################################## 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: 100%;
}

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

@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;
    }
}

.exhibition-form{
    flex-basis: 100%;
    margin-top: 40px;
}

.exhibition-form h1{
    text-align: center;
    margin-bottom: 30px;
}

.exhibition-form form{
    display: flex;
    flex-wrap: wrap;
}

.exhibition-form label{
    flex-basis: 100%;
}

.exhibition-form .form-group{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-basis: 100%;
}

.exhibition-form .form-group label{
    flex-basis: 49.5% !important;
}

.exhibition-form form input,
.exhibition-form form select,
.exhibition-form form textarea {
    width: 100%;
    background-color: #e7e8e3;
    font-size: 1em;
    font-weight: 300;
    color: #000;
    padding: 15px;
    border: 0 !important;
    outline: none;

    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
}

.exhibition-form form textarea {
    height: 160px;
}

.exhibition-form form input:focus,
.exhibition-form form select:focus,
.exhibition-form form textarea:focus {
    border: 0 !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
}

.exhibition-form form ::-webkit-input-placeholder {
    opacity: 1;
    color: #000;
}

.exhibition-form form ::-moz-placeholder {
    opacity: 1;
    color: #000;
}

.exhibition-form form :-ms-input-placeholder {
    opacity: 1;
    color: #000;
}

.exhibition-form form :-moz-placeholder {
    opacity: 1;
    color: #000;
}

.exhibition-form form .form-buttom{
    width: 100%;
    flex-basis: 100%;
    text-align: right;
}

.exhibition-form form .btn {
    background-color: #004b96;
    text-transform: none;
    padding: 15px 100px;
    text-transform: uppercase;
    font-size: 1.125em;
    font-weight: 400;
    display: inline-block;
}

.exhibition-form form .btn:hover {
    background-color: #1a73cd;
}



/*
========================
======================== 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;
    padding-left: 20px;
}
.htmlchars ul li {
    list-style-type: disc;
    margin-bottom: 5px;
    border-radius: 7px;
}
.htmlchars ul li p{
    margin: 10px 0;
    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;

}