@font-face {
    font-family: 'TitilliumWeb';
    src: url('fonts/TitilliumWeb-Regular.eot');
    src: local('☺'), url('fonts/TitilliumWeb-Regular.woff') format('woff'), url('fonts/TitilliumWeb-Regular.ttf') format('truetype'), url('fonts/TitilliumWeb-Regular.svg') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Regular.eot');
    src: local('☺'), url('fonts/Montserrat-Regular.woff') format('woff'), url('fonts/Montserrat-Regular.ttf') format('truetype'), url('fonts/Montserrat-Regular.svg') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    margin: 0;
    padding: 0;
    font-family: Montserrat, Sans Serif;
    color: #000;
    background-color: #000;
    font-size: 18px;
}

div,
section,
article,
td,
nav,
footer,
header,
table,
tr,
span,
ul,
li,
ol,
a,
input[type=text],
input[type=email],
input[type=password],
input[type=tel],
input[type=date],
textarea,
select {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

#form>div.row {
    display: block;
    margin-top: 30px;
}

#form>div.row.prev {
    display: none;
}

input[type=text],
input[type=email],
input[type=password],
input[type=tel],
input[type=date],
textarea,
select {
    background-color: #fff;
    border: 1px solid #009fe3;
    color: #000;
    padding: 12px 15px;
    width: 100%;
    font-size: 24px;
    text-align: left;
    font-family: Montserrat, Sans Serif;
    border-radius: 4px;
}

textarea {
    min-height: 60px;
}

input[type=submit],
input[type=reset],
input[type=buttom] {
    width: 100%;
    max-width: 360px;
    margin-right: 0;
    margin-left: auto;
    border: 0;
    font-size: 24px;
    color: #fff;
    background: #d9540e;
    text-transform: uppercase;
    border-radius: 5px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    text-decoration: none;
    text-align: center;
    padding: 12px 15px;
    font-weight: bold;
    display: block;
    cursor: pointer;
}

input[type=submit]:hover,
input[type=reset]:hover,
input[type=buttom]:hover {
    background: #2E2F93;
    color: #fff;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

::-webkit-input-placeholder {
    color: #333;
    opacity: 1 !important;
}

/* WebKit */
:-moz-placeholder {
    color: #333;
    opacity: 1 !important;
}

/* Firefox 18- */
::-moz-placeholder {
    color: #333;
    opacity: 1 !important;
}

/* Firefox 19+ */
:-ms-input-placeholder {
    color: #333;
    opacity: 1 !important;
}

/* IE 10+ */

label.error {
    color: red;
    font-weight: bold;
    width: 100%;
    padding-top: 10px;
    display: block;
}

h1 {
    margin: 0;
    padding: 0;
    font-size: 50px;
    font-family: 'Montserrat';
    font-weight: 900;
    color: #fff;
    text-shadow: 0 3px 7px #000, 0 -3px 7px #000;
}

h2 {
    margin: 0;
    padding: 0;
    font-size: 36px;
    font-family: Montserrat, Sans Serif;
    font-weight: bolder;
    color: #020202;
    text-transform: uppercase;
}

h3 {
    margin: 0;
    padding: 30px 0 20px;
    font-size: 30px;
    font-family: Montserrat, Sans Serif;
    font-weight: bold;
    color: #020202;
}

a {
    text-decoration: none;
    color: #F95300;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a:hover {
    color: #be551c;
}

img {
    border: 0;
    max-width: 100%;
    height: auto;
}

form {
    padding: 0;
    margin: 0;
}

p {
    margin: 0;
    padding: 0 0 15px 0;
}

#container {
    width: 100%;
    max-width: 1300px;
    margin: auto;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

#container.full {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

#container.full>.box {
    width: 100%;
}

i.ico {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

i.ico:hover {
    /*-webkit-filter: grayscale(10%) brightness(20%);
    filter: grayscale(10%) brightness(20%);*/
    /*margin-bottom: -5px;*/
}

i.ico.fb {
    background-image: url(img/ico-fb.svg);
}

i.ico.ig {
    background-image: url(img/ico-ig.svg);
}

i.ico.yt {
    background-image: url(img/ico-yt.svg);
}

i.ico.phone {
    background-image: url(img/ico-phone.svg);
}

i.ico.map {
    background-image: url(img/ico-map.svg);
}

body {
    background-image: url(img/back-02.jpg), url(img/back-01.jpg);
    background-position: bottom center, center top;
    background-repeat: no-repeat, no-repeat;
}

section#main-header {
    font-family: 'TitilliumWeb';
    background: rgba(255, 255, 255, 0.7);
    display: block;
    width: 100%;
    padding: 15px 0;
    font-weight: bolder;
    font-size: 20px;
}

section#main-header.b {
    margin-bottom: 15px;
}

section#main-header.b.a {
    background: rgba(255, 255, 255, 0.8);
}

section#main-header a {
    color: #000;
}

section#main-header a:hover {
    color: #FF2E34;
}

section#main-header>#container.head>.box.three>a i.ico:hover {
    margin-bottom: -5px;
}

#container.logo {
    padding: 15px 0;
}

#container.logo img {
    width: 250px;
}

section#main-content {
    padding: 40px 0;
}

#container.featured,
#container.prods {
    align-items: stretch;
    margin-top: 50px;
    margin-bottom: 50px;
}

#container.prods {
    margin-bottom: 0;
}

#container.prods.b {
    margin-bottom: 50px;
}

#container.featured>.box {
    width: 31%;
    position: relative;
    background: rgba(255, 255, 255, 0.7);
}

#container.prods>.box {
    width: 47%;
    position: relative;
}

.product {
    padding: 20px;
    display: block;
    width: 100%;
    font-size: 30px;
    font-weight: bolder;
    text-align: center;
}

.product img {
    display: block;
    object-fit: contain;
    object-position: bottom;
    width: 100%;
    height: 400px;
    max-width: none;
    margin-bottom: 15px;
}

.product ul {
    text-align: left;
    line-height: 1.5;
    margin-bottom: 0;
    padding-bottom: 0;
    list-style: none;
    list-style-image: url(img/list.png);
}

#container.prods>.box>.product {
    font-size: 22px;
    background: rgba(255, 255, 255, 0.7);
}

#container.prods>.box>.product.a {
    min-height: 719px;
}

#container.prods>.box>.product.b {
    min-height: 752px;
}

#container.prods>.box>.product.c {
    min-height: 796px;
}

#container.prods>.box>.product.d {
    min-height: 730px;
}

#container.prods>.box>.product.e {
    min-height: 763px;
}

.topvideo.mobile {
    display: none;
}

a.buy {
    border-radius: 10px;
    font-size: 40px;
    color: #fff;
    font-weight: bolder;
    padding: 10px 35px;
    display: inline-block;
    text-transform: uppercase;
    margin: 25px 0 60px 0;
    background: #E79C00;
    font-family: 'TitilliumWeb';
    letter-spacing: 2px;
}

.white {
    color: #fff;
    line-height: 2;
    padding-top: 25px;
}

section#terms {
    background-color: #000;
    padding: 15px 0;
    font-size: 14px;
    color: #fff;
}

#container.aliadas {
    justify-content: space-around;
    max-width: 700px;
}

#container.aliadas>.box {
    /*padding: 0 10px;*/
}

.product .agotado {
    background: #ddd;
    width: 50%;
    margin: 20px auto;
    color: red;
    padding: 5px;    
}

@media screen and (max-width: 1366px) {}

@media screen and (max-width: 1300px) {
    #container {
        padding-left: 25px;
        padding-right: 25px;
    }

    #container.prods>.box>.product.a {
        min-height: 774px;
    }
}

@media screen and (max-width: 900px) {
    #container.head {
        justify-content: space-around;
    }

    #container.head>.box.two {
        order: 3;
    }

    #container.head>.box.three {
        order: 2;
    }

    #container.prods>.box>.product.a,
    #container.prods>.box>.product.b,
    #container.prods>.box>.product.c,
    #container.prods>.box>.product.d,
    #container.prods>.box>.product.e {
        min-height: inherit;
    }

    #container.featured>.box,
    #container.prods>.box {
        width: 100%;
        margin-bottom: 35px;
    }

    #container.featured>.box.three,
    #container.prods>.box:last-child {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 800px) {}

@media screen and (max-width: 768px) {}

@media screen and (max-width: 640px) {
    #container.head>.box.three {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .topvideo.desktop {
        display: none;
    }

    .topvideo.mobile {
        display: block;
    }

    h1 {
        font-size: 32px;
    }

    .product,
    #container.prods>.box>.product {
        font-size: 20px;
    }

    h2 {
        font-size: 28px;
    }

    .product img {
        height: auto;
    }

    a.buy {
        font-size: 24px;
    }

    header section#main-header>#container.head>.box.one,
    header section#main-header>#container.head>.box.two {
        display: none;
    }

    header section#main-header>#container.head>.box.three {
        margin-top: 0;
        margin-bottom: 0;
    }

    #container.logo img {
        width: 140px;
    }
}

@media screen and (max-width: 480px) {}

@media screen and (max-width: 420px) {}

@media screen and (max-width: 360px) {}

@media screen and (max-width: 320px) {}