@font-face {
  font-family: 'Figtree';
  src: url("../fonts/seguroviagem/Figtree-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Figtree';
  src: url("../fonts/seguroviagem/Figtree-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: 'Figtree';
  src: url("../fonts/seguroviagem/Figtree-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Figtree';
  src: url("../fonts/seguroviagem/Figtree-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Figtree';
  src: url("../fonts/seguroviagem/Figtree-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: 'Figtree';
  src: url("../fonts/seguroviagem/Figtree-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
ul, li{
    margin:0;
    padding: 0;
}

.content {
    background-color: #f3f3f3;
    padding: 1% 10%;
    display: block;
    box-sizing: border-box;
    font-family: 'Figtree', sans-serif;
    font-weight: 400;
}

@media (max-width: 768px) {
    .content {
    padding: 1% 8%;
    }
}

.content .titulo-pagina{
    font-size: 1.875em;
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    margin: 0.5em 0 1em 0;
      color: #0c2e72;
}

.content ul a{
    color: #0c2e72;
    text-decoration: none;
}

@media screen and (max-width: 1024px){
    .content ul li{
        width: calc(33.333% - 1.5em);
    }
}
@media screen and (max-width: 700px){
    .content ul li{
        width: calc(50% - 1.5em);
    }
}
@media screen and (max-width: 580px){
    .content ul li{
        width: calc(100% - 1.5em);
    }
}

.content ul li img{
    height: 150px
}

.content ul li img{
    height: 150px
}

.content ul li p{
    margin-top: 0.5em;
}


.content .bread-crumb{
        margin: 2em 0;
        font-size: 0.9em;
}

.content .bread-crumb li{
    margin: 0 0.5em 0 0;
    padding-right: 0.5em;
    display: inline-block;
    text-align: center;
    border-right: 1px solid #0c2e72;
}

.content .bread-crumb li.noticia-titulo{
    transform: translateY(3px);
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border: none;
}

.content .wrap{
    max-width: 800px;
    display: block;
    margin: auto;
}

.content .wrap img{
    display: block;
    margin: 2em auto;
    max-width: 100%;
}

.content .wrap .back-arrow {
    margin: 0;
}

.content .wrap p{
    margin: 1em 0;
    line-height: 1.4em;
}

.content nav{
    padding: 1em 0;
}

@media (max-width: 768px) {
    .content nav{
        width: 100%;
    }
}

.content nav .nav-item{
    background-color: #0c2e72;
    color: white;
    border-radius: 25px;
    padding: 0.5em 2em;
    margin-right: 0.5em;
    transition: all 0.5s;
    font-size: 1em;
}

@media (max-width: 768px) {
    .content nav .nav-item{
        width: 100%;
        text-align: center;
    }
    .content nav .nav-item:hover{
        opacity: 0.8;
    }
}


/* GALERIA */

.content.galeria ul{
    display: flex;
    align-items: center;
    justify-content: left;
    flex-wrap: wrap;
}

.content.galeria ul a{
    display: flex;
    flex-direction: row;
    max-width: 25%;
}

@media screen and (max-width: 1024px){
    .content.galeria ul a{
        max-width: 33.333%;
        /* width: calc(33.333% - 1.5em); */
    }
}
@media screen and (max-width: 700px){
    .content.galeria ul a{
        max-width: 50%;
    }
}
@media screen and (max-width: 580px){
    .content.galeria ul a{
        max-width: 100%;
    }
}

@media screen and (max-width: 1024px){
    .content.galeria ul li{
        width: 100%;
    }
}
@media screen and (max-width: 700px){
    .content.galeria ul li{
        width: 100%;
    }
}
@media screen and (max-width: 580px){
    .content.galeria ul li{
        width: 100%;
    }
}


.content.galeria ul li:hover{
    box-shadow: 2px 2px 5px RGBA(0, 0, 0, 0);
    transform: translateX(5px)
}


.content.galeria ul li{
    display: flex;
    flex-direction: column;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;

    padding: 1em 0 1em 1em;
    margin: 0.5em;
    background-color: white;
    box-shadow: 2px 2px 5px RGBA(0, 0, 0, 0.05);
    transition: all 0.5s;
    cursor: pointer;
    overflow: hidden;
    border-right: 1em white solid;
    box-sizing: border-box;
}

.content.galeria ul li img{
    max-width: 100%;
    width: 100%;
    height: auto;
}