header{
    margin-bottom: 10vh;
}
body{
    text-align: justify;
}
main{position: relative;}
.contenido h4{
    font-family: 'Montserrat-Bold';
    font-size: 22px;
    color: #000000;
    line-height: 31px;
    text-align: center;
    margin-bottom: 30px;
}
.contenido h5{
    font-family: 'Montserrat-Bold';
    font-size: 22px;
    color: #000000;
    line-height: 31px;
    text-align: left;
    margin-bottom: 30px;
}
.contenido p{
    font-family: 'Montserrat-Medium';
    font-size: 18px;
    color: #000000;
    line-height: 27px;
    margin-bottom: 30px;
}
.contenido p > b{
    font-family: 'Montserrat-Bold';
}
.contenido ul{
    margin-bottom: 30px;
    list-style: decimal;
}
.contenido ul li{
    font-family: 'Montserrat-Medium';
    font-size: 18px;
    color: #000000;
    line-height: 27px;
    margin-bottom: 10px;
}
.contenido ul li > b{
    font-family: 'Montserrat-Bold';
}
.fixed-img1{
    position: absolute;
    left: 0;
    top: 5%;
}
.fixed-img2{
    position: absolute;
    right: 0;
    top: 29%;
}
.fixed-img3{
    position: absolute;
    left: 0;
    bottom: 20%;
}
.fixed-img4{
    position: absolute;
    right: 0;
    bottom: 5%;
}
.img img{
    width: 100%;
}
p > a{ word-wrap: break-word;}
.contenido table.table td{
    font-family: 'Montserrat-Medium';
    font-size: 18px;
    color: #000000;
    line-height: 27px;
    margin-bottom: 0;
    vertical-align: middle;
}
.contenido table.table {
    border: 1px solid #dee2e6;
}
.contenido table.table th{
    font-family: 'Montserrat-Bold';
    font-size: 18px;
    color: #000000;
    line-height: 27px;
    margin-bottom: 0;
    border: 1px solid #dee2e6;
}
.contenido table.table tbody tr td:last-child{
    border-left: 1px solid #dee2e6;
}
.table-striped tbody tr:nth-of-type(odd) {
    background-color: #f7f6f5;
}
#to_top {
    content: url(img/to_top.svg);
    display: inline-block;
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}
#to_top::after {
    content: url(img/to_top.svg);
    color: #fff;
}
#to_top:hover {
    cursor: pointer;
    content: url(img/to_top_hover.svg);
}
#to_top:active {
    content: url(img/to_top_hover.svg);
}
#to_top.show {
    opacity: 1;
    visibility: visible;
}
@media (max-width: 767px) {
    .container {
        padding-left: 30px;
        padding-right: 30px;
    }
    .contenido h4{
        font-size: 18px;
        color: #000000;
        line-height: 27px;
        margin-bottom: 30px;
    }
    .contenido h5{
        font-size: 18px;
        line-height: 27px;
    }
    .contenido p{
        font-size: 15px;
        line-height: 25px;
        margin-bottom: 30px;
    }
    .contenido ul li{
        font-size: 15px;
        line-height: 25px;
        margin-bottom: 10px;
    }
    .img{
        width: 20%;
        z-index: 1;
        opacity: .3;
    }
    .contenido table.table td{
        font-size: 18px;
        color: #000000;
        line-height: 27px;
    }
    .contenido table.table {
        border: 1px solid #dee2e6;
    }
    .contenido table.table th{
        font-size: 18px;
        color: #000000;
        line-height: 27px;
    }
    #to_top {
        content: url(img/to_top_hover.svg);
        display: inline-block;
        width: 35px;
        height: 35px;
        text-align: center;
        border-radius: 4px;
        position: fixed;
        bottom: 10px;
        right: initial;
        left: 50%;
        transform: translateX(-50%);
        transition: background-color .3s, opacity .5s, visibility .5s;
        opacity: 0;
        visibility: hidden;
        z-index: 1000;
    }
}