@import url(variables.css);

:root {
    --jumbotron-padding-y: 3rem;
}

.jumbotron {
    padding-top: var(--jumbotron-padding-y);
    padding-bottom: var(--jumbotron-padding-y);
    margin-bottom: 0;
    background-color: #fff;
}
@media (min-width: 768px) {
    .jumbotron {
        padding-top: calc(var(--jumbotron-padding-y) * 2);
        padding-bottom: calc(var(--jumbotron-padding-y) * 2);
    }
}

.jumbotron p:last-child {
    margin-bottom: 0;
}

.jumbotron-heading {
    font-weight: 300;
}

.jumbotron .container {
    max-width: 40rem;
}

/* footer {
    padding-top: 3rem;
    padding-bottom: 3rem;
} */

/* footer p {
    margin-bottom: .25rem;
} */
.card{
    border: none;

}

.card a {
    text-decoration: none;
}

.card p {
    color: #1955aa;
    /* font-weight: bold; */
    font-size: 20px;
    text-align: center;
    margin-top: 10px;
}

.card strong {
    font-size: 12px;
    margin-bottom: 10px;
    text-align: center;
    color: #464646;
    margin-top: 12px;
}

.card-body{
    color:#0056b3;
    /* font-weight: 600; */
    align-content: center;
}

.show-more-red {
    display: block;
    margin: 0 auto;
    background-color: var(--sec-color);
    border-radius: 0;
    padding: 8px 10px;
    color: white;
    font-size: 14px;
    max-width: 100px;
    text-align: center;
    font-weight: 400;
    font-family: var(--main-font);
}
.show-more-red:hover {
  text-decoration: none;
  color: white;
}

.seta-left, .seta-right{
    color:#0056b3;
    font-weight: 900;
    font-size: 60px;
}
.seta-left:before{
    content: '<';
}
.seta-right:before{
    content: '>';
}
/*****************/
@media screen and (min-width: 200px) and (max-width: 640px){
    .seta-left, .seta-right{
        font-size: 30px;
    }
}
@media screen and (min-width: 600px) and (orientation:landscape){

}
@media screen and (max-width: 380px) and (orientation:portrait){

}
