﻿html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}
.bg-blue {
    background: #0071BC;
}
input,
select {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.mobile {
    display: none;
}
.desktop {
    display: block;
}
body {
    font-size: 1.3rem;
    font-family: 'Montserrat', sans-serif;
    text-rendering: optimizeLegibility;
    background-color: #f2f2f2;
}
.container {
    max-width: 1400px!important;
}
a {
    color: #005b9a;
}
.above-fold {
    background-image: url(../images/main-bg.jpg);
    background-size: auto;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-color: #dddddd;

}

.icons{
    margin:0px;
}
.top-nav {
    background-color: #005b9a !important;
}

.order-btn {
    text-transform: uppercase;
    background-color:none;
    border: solid #005b9a 3px;
    border-radius: 5px;
    padding: 20px 25px;
    background: #fcdd1d;
}

.link {
    cursor: pointer;
    font-weight:500;
    text-decoration: none;
    font-size: 1.3rem;
}
.link--arrowed .arrow-icon {
    position: relative;
    top: -1px;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    vertical-align: middle;
}

.link--arrowed .arrow-icon--circle {
    -webkit-transition: stroke-dashoffset .3s ease;
    transition: stroke-dashoffset .3s ease;
    stroke-dasharray: 95;
    stroke-dashoffset: 95;
}

.link--arrowed:hover .arrow-icon {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
}

.link--arrowed:hover .arrow-icon--circle {
    stroke-dashoffset: 0;
}
a:hover {
    color: #005b9a;
    text-decoration:none;
}
.select {
    padding: 20px 30px;
    color: #fff !important;
    cursor: pointer;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.5rem;
    background-color: #005b9a;
    border-radius: 5px;
}
.select:hover {
    color: #005b9a !important;
    background-color: #fcdd1d;
}
.select2 {
    padding: 10px 20px;
    color: #005b9a !important;
    cursor: pointer;
    font-weight: 500;
    text-decoration: none;
    font-size: 1.2rem;
    background-color: #fcdd1d;
    border-radius: 5px;
}
.select2:hover {
    background-color: #fcdd1d;
}
.icon_txt {
    text-align: center;
    color: #1a1a1a;
    margin-top: 10px;
}
.header-text {
    font-family: Darkline;
    font-size: 3rem !important;
    text-align:center;
}
.tagline2 h1 {
    text-transform: uppercase;
    font-size: 4rem !important;
    color: #005b9a;
}

.box {
    border-radius:20px;
    background-color: rgb(248, 250, 249);
    box-shadow: 0px 7px 13px 0px rgba(0, 0, 0, 0.11);
    padding: 60px 40px 10px 40px;
}
.box2 {
    border-radius: 20px;
    background-color: rgb(248, 250, 249);
    box-shadow: 0px 7px 13px 0px rgba(0, 0, 0, 0.11);
    padding: 20px;
}
.producto {
    width: 80%;
    margin:0 auto;
}

.theres {
    font-family: Darkline;
    font-size: 4rem;
        animation: cute-arrow 1s infinite;
     position:relative;
}

.we {
    margin-top:-20px;
    font-size: 4rem;
}

.price{
    margin-top:20px;
}

ul{
    margin:0px;
    padding:0px;
}



/*Accordion*/
/**
 * Required CSS 
 */
.accordion__title {
    cursor: pointer;
    margin: 0;
    position: relative;
    background: #f2f2f2;
    margin: 10px 0;
    padding: 20px;
    text-align: left !important;
}

.accordion__icon {
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
}

    .accordion__icon .line-01,
    .accordion__icon .line-02 {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 16px;
        height: 2px;
        background-color: #272343;
        transition: 0.3s;
    }

    .accordion__icon .line-02 {
        transform: rotate(90deg);
    }

.accordion__content {
    display: none;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-top-color: rgb(221, 221, 221);
    border-top-style: solid;
    border-top-width: 1px;
    border-top: 0;
}

.accordion--open > .accordion__title .line-02 {
    transform: rotate(0deg);
}








.box ul li {
    color: #3c3c3c;
    /* set color of list item text */
    display: inline-block;
    list-style: none;
    margin: 0 0 16px 1.1225em;
    /* Give the bullet room on the left hand side */
    padding: 0;
    position: relative;
}

.box ul li::before {
    color: #005b9a;
    /* color of bullet or square */
    content: "\2022";
    /* Unicode of character to precede the list item */
    display: inline-block;
    font-size: 4em;
    /* use em or % */
    left: -.3em;
    /* use em, line up bullet flush with left hand side */
    position: absolute;
    /* Set the bullet positioned absolutely top left */
    top: -.65em;
    /* use em or % */
}

/* cute arrow--------------*/
.margin-top{
    margin-top:-30px!important;
    position:absolute;
}
.cute-arrow {
    width: 19px;
    height: 32px;
    position: relative;
    animation: cute-arrow 1s infinite;
    margin: -12px auto -40px;
    display: block;
    left: 12px;
}
@keyframes cute-arrow {
    from {
        top: 10px;
    }

    to {
        top: 0px;
    }
}
/* cute arrow--------------*/

.iconsss{
    width:50%;
}

.above-fold .iconsss{
    width: 90%;
}
.set {
    font-size: 25px;
    font-family: "Montserrat";
    color: rgb(255, 255, 255);
    font-weight: bold;
    line-height: 0.8;
    text-align: center;
}

.sets {
    padding:10px;
    border-radius:50px;
    position: absolute;
    background-color: #005b9a;
    border: solid 5px #fff;
}

.arrow-up{
    margin-top:80px;
}
.arrow-down{
    margin-top:-100px;
}
.quote {
    line-height: 0;
    font-size: 9rem !important;
    font-family: Arial;
    font-weight: bold;
    color: #d6d6d6;
}


.blue {
    color: #005b9a;
}
.green {
    color: #7fd494;
}
.violet {
    color: #426cca;
}


.model {
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(-20px);
    }

    100% {
        transform: translatey(0px);
    }
}


    

/*Desktop Only*/
@media (min-width: 1200px) {

}


@media (max-width: 680px) {
    .cute-arrow{
        margin: 0 auto;
    display: block;
     left: 0px; 

    }

}

@media screen and (max-width: 600px) {
    body {
        font-size: 1rem;
    }
    .mobile{
        display:block!important;
    }
    .desktop {
        display:none!important;
    }
    .order-btn {
        padding: 15px 5px;
    }
    .box {
        padding:10px;
    }
    .theres {
        font-size:2.5rem;
    }
    .we {
        font-size:1.8rem;
    }
    .h3, h3 {
        font-size: 1.5rem;
    }
    .cute-arrow {
        width: 9px;
        height: 15px;
        position: relative;
        animation: cute-arrow 1s infinite;
        margin: -10px auto;
        display: block;
        left: 5px;
    }
    .iconsss {
        width:100%;
    }
    .select {
        font-size: 1rem;
        padding:20px;
    }
    .box2 {
        margin-bottom: 20px;
    }
    .save {
        font-size:1.5rem;
        text-align:center;
    }
    .box ul li::before {
        top: -.65em;
    }
    .h4, h4 {
        font-size: 1.1rem;
    }
    .tagline2 h1 {
        font-size: 2rem !important;
    }
    .header-text {
        font-family: Darkline;
        font-size: 5rem !important;
    }
    .above-fold {
        background-image: url(../images/main-bg-mb.jpg);
        padding: 0px;
    }
    .icons {
        border-radius:5px;
        padding-top:10px;
        background-color: rgba(255, 255, 255, 0.9);
    }
    .link {
        font-size: 1rem;
    }
    .p-4 {
        padding:.5rem !important;
    }
    .btn {
        padding: .5rem !important;
    }

    .prod-m {
        width: 120px;
    }

    .box2 h2 {
        font-size: 22px;
    }
    .pt-5, .py-5 {
        padding-top: 0rem !important;
    }
}

.aligncenter {
    display: block;
    margin: auto;
}

/* GENERAL */
.digitalMag {
}

    .digitalMag h1,
    .digitalMag h2 {
        font-weight: 700;
    }

    .digitalMag h1 {
        font-size: 24px;
    }

    .digitalMag h2 {
        font-size: 36px;
        color: #f24130;
    }

/* HERO */
.digitalMag {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.71)), url("/images/hero-img.jpg");
    height: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

    /* CARDS */
    .digitalMag .card-text {
        color: #f24130;
    }


@media screen and (max-width: 1200px) {
    .card-body {
        padding: .50rem;
    }

    .card-deck .card-text {
        font-size: 14px;
    }
}


@media screen and (max-width: 767px) {
    div#carousel {
        margin: 0 auto;
        display: block;
        text-align: center;
    }

    .item {
        display: inline-block;
        margin: 0 auto;
    }
}