﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Comfortaa', cursive;
}

nav h1 {
    position: absolute;
    width: 200px;
    top: 8px;
    left: 5%;
    color: #fff;
}

nav #logo {
    position: absolute;
    width: 60px;
    top: 8px;
    left: 5%;
    color: #fff;
}

nav ul {
    float: right;
    margin-right: 25px;
    list-style: none;
}

    nav ul li {
        display: inline;
        line-height: 50px;
        margin: 0 15px;
    }

        nav ul li a {
            position: relative;
            padding: 5px 0;
            color: #fff;
            font-size: 18px;
            text-decoration: none;
        }

            nav ul li a:hover {
                color: #E3007B;
            }

label #sign-one,
label #sign-two {
    font-size: 30px;
    color: #fff;
    float: right;
    line-height: 50px;
    margin-right: 30px;
    cursor: pointer;
    display: none;
}

#res-menu {
    display: none;
}

.banner-area {
    background: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url(/images/home02.jpg);
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
    height: 100vh;
    width: 100%;
}

.banner-text {
    position: absolute;
    width: 100%;
    height: 200px;
    margin-top: 200px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: center;
}
    .banner-text h2 strong {
        font-size: 46px;
    }
        .banner-text h2 {
        color: #fff;
        margin-left: 40%;
        margin-top: -140px;
        font-size: 32px;
        text-align: center;
        line-height: 50px;
    }

    .banner-text a {
        text-align: center;
    }

@media (max-width: 870px) {
    .banner-text {
        position: absolute;
        width: 95%;
        height: 200px;
        margin-top: 200px;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .banner-text h2 {
        margin-left: 5%;
        margin-top: -80px;
        font-size: 28px;
    }

        .banner-text h2 strong {
            font-size: 36px;
        }
    
    label #sign-one {
        display: block;
    }

    nav {
        height: 90px;
        background: #000;
    }

        nav ul {
            position: fixed;
            width: 100%;
            height: 100vh;
            background-color: crimson;
            top: 90px;
            left: -100%;
            text-align: center;
            transition: .5s;
            z-index: 10;
        }

            nav ul li {
                display: block;
                margin: 40px 0;
                line-height: 30px;
            }

                nav ul li a {
                    font-size: 20px;
                }

    #res-menu:checked ~ ul {
        left: 0;
    }

    #res-menu:checked ~ label #sign-one {
        display: none;
    }

    #res-menu:checked ~ label #sign-two {
        display: block;
    }
}
/* footer */
*, *:before, *:after {
    box-sizing: border-box;
}

.footer {
    display: flex;
    flex-flow: row wrap;
    padding: 50px;
    color: #fff;
    
    background-color: #E3007B;
    font-size: 12px;
}

    .footer > * {
        flex: 1 100%;
    }

.l-footer {
    margin-right: 1.25em;
    margin-bottom: 2em;
}

h2 {
    font-weight: 400;
    font-size: 15px;
}

.footer ul {
    list-style: none;
    padding-left: 0;
}

.footer li {
    line-height: 2em;
}

.footer a {
    text-decoration: none;
}

.r-footer {
    display: flex;
    flex-flow: row wrap;
}

    .r-footer > * {
        flex: 1 50%;
        margin-right: 1.25em;
    }

.box a {
    color: #fff;
}

.h-box {
    column-count: 1;
    column-gap: 1.25em;
}

.b-footer {
    text-align: center;
    color: #999;
    padding-top: 50px;
}

.l-footer p {
    padding-right: 20%;
    color: #fff;
}

.l-footer a {
    color: #fff;
    text-decoration: none;
}

ul .social {
    list-style-type: none;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.social li {
    float: left;
}

    .social li a {
        display: block;
        padding: 16px;
        font-size: 24px;
    }

@media screen and (min-width: 600px) {
    .r-footer > * {
        flex: 1;
    }

    .features {
        flex-grow: 2;
    }

    .l-footer {
        flex: 1 0px;
    }

    .r-footer {
        flex: 2 0px;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    font-weight: 500;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 0.1rem solid transparent;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    line-height: 1.7;
    border-radius: 0.25rem;
    transition: all 0.2s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .btn {
        transition: none;
    }
}

.btn:hover {
    color: #212529;
    text-decoration: none;
}

.btn:focus, .btn.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(33, 200, 122, 0.25);
}

.btn.disabled, .btn:disabled {
    opacity: 0.65;
}

.btn-sm, .btn-group-sm > .btn {
    padding: 0.5625rem 1.125rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.125rem;
}


/* Two Columns */
/* Create two equal columns that floats next to each other */
.column {
    float: left;
    width: 50%;
    
    /*padding: 10px;*/
    /*height: 300px;  Should be removed. Only for demonstration */
}

.column-image {
    align-content: center;
    justify-content: center;
    /*background-image: url(/images/hombre-camiseta.png);
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
    height: 100vh;*/
}

.column-image img{
    margin: 0;
    padding: 0;
    width: 70%;
    
}

.column-image-slide {
    align-content: center;
    justify-content: center;
    /*background-image: url(/images/hombre-camiseta.png);
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
    height: 100vh;*/
}

    .column-image-slide img {
        margin: 0;
        padding: 0;
        width: 100%;
    }

.column-container {
    width: 100%;
    height: 100%;
    /*display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;*/
    align-items: center;
    justify-content: center;
}

    .column-container h2 {
        margin-top: 30px;
        /*margin-left: 40%;
        margin-top: -140px;*/
        font-size: 28px;
        text-align: center;
        line-height: 25px;
        color: #535353;
    }

        .column-container h2.remark {
            font-weight: bold;
            color: #E3007B;
            font-size: 48px;
        }

    .column-container h4 {
        margin-top: 30px;
        /*margin-left: 40%;
        margin-top: -140px;*/
        font-size: 14px;
        text-align: center;
        line-height: 20px;
        color: #535353;
    }

    /* Clear floats after the columns */
    .row:after {
        content: "";
        display: table;
        clear: both;
    }

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .column {
        width: 100%;
    }

    .column-image-slide img {
        margin: 0;
        padding: 0;
        width: 50%;
    }
}

/* Slideshow */
@media screen and (max-width: 600px){
    .slides-dots {
        position: absolute;
        margin-top: -20px;
        margin-left: 30%;
    }

    
}

.mySlides {
    display: none;
}

.fade img {
    margin-top: 40px;
    margin-left: 150px;
    vertical-align: middle;
}

.grid-container {
    margin-top: 100px;
    /*width: auto;*/
    text-align: center;
    width: 100%; 
    color: #fff;
}

.grid-row {
    position: relative;
    /*float: left;*/
    /*margin-bottom: 10px;*/
}

    .grid-row strong {
        font-size: 1.8em;
    }

    .r-number {
        font-size: 48px;
        font-weight: bold;
    }

.r-header {
    position: absolute;
    /*float:left;*/
    text-align:center;
    margin-top: 80px;
}

.r-description {
    position: absolute;
    /*float: left;*/
    margin-top: 120px;
    
}

.r-button {
    /*position: absolute;*/
    /*float: left;*/
    margin-top: 190px;
}

@media only screen and (max-width: 600px) {
    .grid-container {
        width:100%;
        text-align:center;
        align-content:center;
        justify-content:center;
    }

    .grid-row {
        margin-bottom: 10px;
    }

        .grid-row strong {
            font-size: 1.2em;
        }

    .c-mobile{
        min-height:300px;
    }

    .c-content {
        position: absolute;
        top: 80px;
        margin-left:10%;
    }

    .r-number {
        font-size: 18px;
        font-weight: bold;
    }

    .r-header {
       
    }

    .r-description {
        
    }

    .r-button {
        
    }
}

/* Slideshow container */
.slideshow-container {
    width: 100%;
    min-height: 200px;
    position: relative;
    margin: auto;
    background: #E3007B;
}

.slides-dots {
    position: absolute;
    margin-top: -20px;
    margin-left: 50%;
}

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active {
    background-color: #bbb;
}

/* Fading animation */
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
    .text {
        font-size: 11px
    }
}

/* Accordion */
.accordion {
    background-color: #fff;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    font-family: 'Comfortaa', cursive;
}

    .active, .accordion:hover {
        background-color: #fff;
    }

    .accordion:after {
        content: '\002B';
        color: #777;
        font-weight: bold;
        float: right;
        margin-left: 5px;
        
    }

.active:after {
    content: "\2212";
}

.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    
}

.faqs-container{
    margin-top: 20px;
    margin-bottom: 20px;
    width:100%;
}

    .faqs-container h2 {
        text-align: center;
        font-weight: bold;
        font-size: 30px;
        color: #535353;
    }

    .faqs-container h4 {
        text-align: center;
        font-size: 18px;
        color: #535353;
    }

@media screen and (max-width: 600px) {
    .faqs-container {
        width: 90%;
    }

    .faqs-container h2 {
        text-align: center;
        font-weight: bold;
        font-size: 24px;
        color: #535353;
    }

    .faqs-container h4 {
        text-align: center;
        font-size: 12px;
        color: #535353;
    }
}

/* Tabs */
/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    -webkit-animation: fadeEffect 1s;
    animation: fadeEffect 1s;
}

/* Fade in tabs */
@-webkit-keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* fontaweson custom */
.check-green{
    color: green;
}


.img-disabled{
    opacity: 0.3;
}