/*COMMON*/

html {
    scroll-behavior: smooth;
}

.yellow{
    color: #f2be45;
}

.blue{
    color: #054a9a;
}

.white{
    color: #FFFFFF;
}

.gray{
    color: #3b414d;
}

.bg-yellow{
    background-color: #f2be45;
}

.bg-blue{
    background-color: #054a9a;
}

.center{
    text-align: center;
}

.center-margin{
    margin: 0 auto;
}

.right{
    text-align: right;
}

.float-right-2{
    float: right;
}

.italic{
    font-style: italic;
}

/*HEADER*/

section#header{
}

.topbar{
    background-color: #054a9a;
    color: #ffffff;
    text-align: center;
    font-size: 18px;
    padding: 10px 20px;
}

.topbar a{
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
}

.topbar a:hover{
    color: #f2be45;
}

.navbar{
    border-bottom: 6px solid #054a9a;
}

.img-logo{
    width: 110px;
}

.navbar-expand-lg .navbar-nav{
    align-items: center;
}

a.nav-link {
    display: inline-block;
    font-family: 'PT Sans', sans-serif;
    color: #054a9a !important;
    font-weight: 700;
    text-decoration: none;
}

a.nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #f2be45;
    transition: width .3s;
}

a.nav-link:hover::after {
    width: 100%;
    transition: width .3s;
}

.navbar-light .navbar-toggler{
    color: #054a9a;
    border-color: #054a9a;
}

a.button-carousel {
    background-color: #e1251b;
    font-family: 'PT Sans', sans-serif;
    color: #FFFFFF;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 10px;
    padding: 8px 24px;
    text-transform: uppercase;
    font-size: 26px;
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 440px;
    bottom: 5%;
    z-index: 15;
    text-align: center;
    font-weight: bold;
}

a.button-carousel:hover{
    text-decoration: none;
    background-color: #f2be45;
    color: #ffffff;
}

.carousel-indicators{
    bottom: 24%;
}

.carousel-indicators li {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-right: 10px;
    margin-left: 10px;
}

.img-max-70{
    max-width: 70%;
}
/*CONTENT*/

section#content{
    padding-top: 70px;
}

h1.title-special{
    font-size: 42px;
}

h1.title{
    font-family: "Apex Sans";
    font-size: 30px;
    text-transform: uppercase;
    font-weight: bold;
}

.product-box {
    position: relative;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    -webkit-box-shadow: 0.2px 0.2px 10px rgba(0,0,0,0.75);
    -moz-box-shadow: 0.2px 0.2px 10px rgba(0,0,0,0.75);
    box-shadow: 0.2px 0.2px 10px rgba(0,0,0,0.75);
    height: 700px;
    width: 90%;
    margin: 0 auto;
    background: #054a9a;
    -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-bottom: 40px;
}

.product-box:hover {
    -webkit-transform: scale(1.04, 1.04);
    transform: scale(1.04, 1.04);
}

#products-container{
    padding-bottom: 100px;
}

.product-container{
    height: 73%;
    width: 100%;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    background-color: #ffffff !important;
}

.img-title-product{
    padding-top: 35px;
}

h2.name-box{
    margin-top: 40px;
}

.img-box-product{
    padding-top: 0px;
    max-width: 100%;
}

h3.price{
    font-family: 'PT Sans', sans-serif;
    color: #054a9a;
    font-size: 54px;
    padding: 0 10px;
    font-weight: 800;
    line-height: 0.8;
}

h5.tag{
    font-family: 'PT Sans', sans-serif;
    color: #054a9a;
    font-size: 14px;
}

span.tax{
    font-size: 16px;
    font-family: 'PT Sans', sans-serif;
    color: #054a9a;
    font-weight: 600;
}

.img-ornament-price{
    max-width: 80%;
}

.col-ornament-price{
    width: 22%;
}

p.product-info{
    font-family: 'PT Sans', sans-serif;
    font-weight: 400;
    font-size: 28px;
    color: #ffffff;
}

a.button-modal-product {
    display: inline-block;
    text-decoration: none;
}

a.button-modal-product::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #f7ac3b;
    transition: width .3s;
    margin-top: -10px;
}

a.button-modal-product:hover::after {
    width: 100%;
    transition: width .3s;
}

h1.nonstock{
    position: absolute;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    z-index: 100;
    top: 200px;
    font-size: 75px;
    color: #FFFFFF;
    background-color: #e1251b;
    padding: 0 60px 10px;
}

.button-product {
    background-color: #054a9a;
    font-family: 'PT Sans', sans-serif;
    color: #FFFFFF;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 16px;
    padding: 8px 48px;
    text-transform: uppercase;
    font-size: 28px;
    text-align: center;
    font-weight: 700;
    border: 2px solid #ffffff;
}
.button-product[disabled]{
    opacity: .7;
    cursor: not-allowed;
}
.button-product:hover{
    text-decoration: none;
    background-color: #f7ac3b;
    color: #ffffff;
}

a.button-modal-product{
    text-decoration: none;
}

.product-unit{
    position: absolute;
    left: 50px;
    top: 125px;
    padding: 15px;
    background-image: url("../img/bg-number.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 90px;
}

.product-number{
    font-family: 'PT Sans', sans-serif;
    color: #FFFFFF;
    font-size: 30px;
    line-height: 0px;
    margin-top: 8px;
    font-weight: bold;
}

.product-text{
    font-family: 'PT Sans', sans-serif;
    color: #FFFFFF;
    font-size: 10px;
    line-height: 0px;
    font-weight: bold;
    padding: 6px 0px;
}

.modal-dialog{
    max-width: 600px;
}

button.close {
    position: absolute;
    right: -22px;
    top: -25px;
    background-color: #f2be45;
    padding: 10px 15px 15px;
    border-radius: 50%;
    opacity: 1;
    color: #ffffff;
}

.close:not(:disabled):not(.disabled):focus, .close:not(:disabled):not(.disabled):hover{
    background-color: #054a9a;
    color: #ffffff;
    opacity: 1;
}

li.product{
    font-family: 'PT Sans', sans-serif;
    font-size: 18px;
    color: #1a1a1a;
    text-transform: capitalize;
}

.modal-dialog-cotizar{
    max-width: 750px;
}

.modal-body-cotizar{
    padding: 1rem 4rem;
}

label{
    color: #4d4d4d;
    font-family: 'PT Sans', sans-serif;
    font-weight: 700;
}

h3.h3-success{
    ont-family: 'PT Sans', sans-serif;
    font-size: 30px;
    color: #2c29a6;
}

h5.h5-success{
    font-family: 'PT Sans', sans-serif;
    font-size: 18px;
    color: #1a1a1a;
}

p.yellow{
    font-size: 12px;
}
/*FOOTER*/
.text-grey{
    color:#bcbcbc;
}
footer {
    background-color: #003DA6;
    padding: 30px 0 0;
    color: #fff;
    margin-top: -60px;
}

footer a, footer span {
    font-size: 13px;
}

footer a{
    color: #ffffff;
}

footer a:hover {
    color: #FFC627;
}

ul.footer-list{
    padding: 0;
    margin: 0;
    list-style: none;
}

a.link-footer{
    color: #bcbcbc;
    font-family: 'PT Sans', sans-serif;
    font-size: 14px;
    padding: 3px 0 1px;
}

a.link-footer:hover {
    color: #ffffff;
}

span.legal{
    font-size: 11px;
}

/*RESPONSIVE*/

@media (max-width: 1200px) {

    p.text-testimony{
       font-size: 16px;
    }

    .col-ornament-price{
        width: 19%;
    }

    .product-box{
        height: 625px;
    }

    .product-container{
        height: 70%;
    }

    a.button-carousel{
        font-size: 17px;
        width: 300px;
        bottom: 10%;
    }

    .carousel-indicators{
        bottom: 30%;
    }

    .img-box-product{
        max-width: 90%;
    }

}

@media (max-width: 992px) {

    h3.price{
        font-size: 32px;
    }

    .product-box{
        height: 620px;
    }

    h1.nonstock{
        top: 150px;
        font-size: 60px;
        padding: 0 20px 10px;
    }

    .button-product{
        font-size: 20px;
    }

}

@media (max-width: 768px) {

    .product-box{
        height: 650px;
    }

    h3.price{
        font-size: 48px;
    }

    h1.nonstock{
        top: 200px;
        font-size: 75px;
    }

    .img-box-product{
        max-width: 100%;
    }

    .product-container {
        height: 73%;
    }

    h4.title-footer, h4.title-footer-2{
        margin: 15px 0;
    }

    body > footer > div.container > div:nth-child(3) > div:nth-child(1) > h4, body > footer > div.container > div:nth-child(3) > div.col-xs-12.col-sm-6.right {
        text-align: center;
    }

    .right{
        text-align: left;
    }

    .slide-desktop{
        display:none;
    }

    .slide-mobile{
        display: block !important;
    }

    a.button-carousel{
        width: 246px;
        font-size: 16px;
    }

    .carousel-indicators{
        display: none;
    }

    .modal.show .modal-dialog {
        margin-top: 45px;
    }

    .img-ornament-price{
        display: none;
    }

    .col-product-list{
        max-height: 320px;
        overflow-y: scroll;
    }

    h1.title-special{
        text-align: center;
        font-size: 36px;
    }

    span.legal{
        font-size: 9px;
    }

}

@media (max-width: 576px) {

    .img-title-product{
        padding-top: 0px;
    }

    .col-ornament-price{
        width: 22%;
    }

    h3.price{
        font-size: 32px;
    }

    .navbar-brand{
        width: 70%;
    }

    img.img-navbar-brand{
       max-width: 100%;
    }

    .product-container{
        height: 70%;
    }

    section#content {
        padding-top: 30px;
    }

    .row-topbar {
        margin-right: 0px;
        margin-left: 0px;
    }

    #products-container > div > div > div.product-info > div > div > p{
        margin-top: 10px;
        font-size: 12px;    
    }

}

@media (max-width: 450px) {

.img-box-product {
    padding-top: 0px;
}

h2.name-box {
    margin-top: 15px;
    font-size: 22px
}

.col-ornament-price{
    width: 18%;
}

h3.price{
    font-size: 30px;
}

.product-box{
    height: 470px;
}

#products-container > div > div > div.product-info > div > div {
    padding-top: 0px !important;
}

p.product-info, .button-product{
    font-size: 18px;
}

.flipdown .rotor-group:nth-child(n+2):nth-child(-n+3):before, .flipdown .rotor-group:nth-child(n+2):nth-child(-n+3):after {
    left: 58px;
}

.flipdown .rotor-group-heading:before {
    font-size: 0.6rem;
}

.flipdown .rotor, .flipdown .rotor-leaf, .flipdown .rotor-leaf-front, .flipdown .rotor-leaf-rear, .flipdown .rotor-top, .flipdown .rotor-bottom, .flipdown .rotor:after{
    width: 24px;
}

.flipdown {
    width: 275px;
}

h1.nonstock{
    top: 150px;
    font-size: 60px;
}

.product-unit {
    height: 120px;
    width: 80px;
    right: 40px;
    top: 65px;
}

.product-number {
    font-size: 28px;
    line-height: 0px;
}

.product-text{
    font-size: 8px;
    padding: 6px 0px;
}

.img-max-70 {
    max-width: 54%;
}

.topbar{
}

.product-container {
    height: 76%;
}


}











