*{
    padding: 0;
    margin: 0;
    font-family: 'Barlow', sans-serif;
    box-sizing: border-box;
}
nav{
    background-color: #1A1F2E;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70px;
}
main{
    min-height: calc(100vh - 130px);
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.container-otps{
    width: 55%;
    margin-right: auto;
    margin-left: auto;
}
.container-otps a{
    color: #001F5D;
    text-decoration: none;
}
.container-opt, .container-opt-1, .container-opt-2, .container-opt-3, .container-opt-4{
    border-radius: 10px;
    background: #F4F6FB;
    padding: 1rem 2rem;
    position: relative;
    margin-bottom: 1rem;
}
.container-opt::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 100%;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
    background-color: #FF91F8;
    transition: all .3s linear;
    z-index: 0;
}
.container-opt-1::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 100%;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
    background-color: #91FF91;
    transition: all .3s linear;
    z-index: 0;
}
.container-opt-2::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 100%;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
    background-color: #91E1FF;
    transition: all .3s linear;
    z-index: 0;
}
.container-opt-3::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 100%;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
    background-color: #FF9191;
    transition: all .3s linear;
    z-index: 0;
}
.container-opt-4::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 100%;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
    background-color: #FFF091;
    transition: all .3s linear;
    z-index: 0;
}
.container-opt:hover.container-opt::before,
.container-opt-1:hover.container-opt-1::before,
.container-opt-2:hover.container-opt-2::before,
.container-opt-3:hover.container-opt-3::before,
.container-opt-4:hover.container-opt-4::before{
    width: 100%;
    border-radius: 10px;
}
.header-opt{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}
.header-opt h4{
    font-size: 24px;
    padding-left: 1rem;
    margin-top: 0;
    margin-bottom: 0;
}
.container-redes{
    width: 100%;
    display: flex;
    justify-content: center;
}
.container-redes a{
    margin-right: .5rem;
    margin-left: .5rem;
}
footer{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #1A1F2E;
    width: 100%;
    min-height: 60px;
    color: #C8D7E5;
}
.content-carousel{
    max-width: 1400px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    margin-top: 3rem;
    padding-right: 3rem;
    padding-left: 3rem;
}
.titulo-vitrina{
    width: 100%;
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    font-weight: normal;
}
.owl-carousel{
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}
.owl-carousel .owl-prev{
    position: absolute;
    left: -3rem;
    top: 130px;
}
.owl-carousel .owl-next{
    position: absolute;
    right: -3rem;
    top: 130px;
}
.owl-carousel .owl-stage-outer{
    padding-bottom: 4rem;
}
.content-marca{
    position: relative;
}
.content-marca .logo-marca{
    position: absolute;
    width: 210px;
    height: 100px;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    background-color: #F4F6FB;
    overflow: hidden;
    padding: 1.3rem;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.content-marca .logo-marca img{
    width: auto !important;
    max-width: 270px !important;
}
footer p{
    margin-bottom: 0;
}
@media (max-width: 991px) {
    .container-otps{
        width: 70%;
    }
}

@media (max-width: 768px) {
    .container-otps{
        width: 90%;
    }
    .content-carousel{
        padding-right: 0;
        padding-left: 0;
    }
    .owl-carousel .owl-prev{
        left: -1.5rem;
    }
    .owl-carousel .owl-next{
        right: -1.5rem;
    }
    .header-opt h4{
        font-size: 18px;
    }
}
