* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#container-slider {
    position: relative;
    display: block;
    width: 100%;
}

#slider {
    position: relative;
    display: block;
    width: 100%;
    height: 50vh;
    min-height: 250px;
    border-bottom: 2px solid #c8cbcf;
}

    #slider li {
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100%;
        height: 100%;
        display: block;
        -webkit-transition: opacity 1s;
        -moz-transition: opacity 1s;
        -ms-transition: opacity 1s;
        -o-transition: opacity 1s;
        transition: opacity 1s;
        z-index: -1;
        opacity: 0;
    }

#container-slider .arrowPrev, #container-slider .arrowNext {
    font-size: 30pt;
    color: rgba(204, 204, 204, 0.65);
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 50px;
    z-index: 2;
}

#container-slider .arrowNext {
    left: initial;
    right: 50px !important;
}

.content_slider {
    padding: 15px 30px;
    color: #FFF;
    width: 100%;
    height: 100%;
}

    .content_slider div {
        text-align: center;
    }

    .content_slider h2 {
        font-family: 'arial';
        font-size: 30pt;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 20px;
    }

    .content_slider p {
        font-size: 15pt;
        font-family: 'arial';
        color: #FFF;
        margin-bottom: 20px;
    }

#slider li .content_slider {
    background: rgba(0, 0, 0, 0.50);
    padding: 10px 125px;
}

.content_slider {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btnSlider {
    color: #FFF;
    font-size: 15pt;
    font-family: 'arial';
    letter-spacing: 1px;
    padding: 10px 50px;
    border: 1px solid #CCC;
    background: rgba(13, 13, 13, 0.55);
    border-radius: 31px;
    text-decoration: none;
    transition: .5s all;
}

    .btnSlider:hover {
        background: #111;
        border: 1px solid #111;
    }

.listslider {
    position: absolute;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
    left: 50%;
    bottom: 5%;
    list-style: none;
    z-index: 2;
    transform: translateX(-50%);
}

    .listslider li {
        border-radius: 50%;
        width: 10px;
        height: 10px;
        cursor: pointer;
        margin: 0 5px;
    }

        .listslider li a {
            background: #CCC;
            border-radius: 50%;
            width: 100%;
            height: 100%;
            display: block;
        }

.item-select-slid {
    background: #FFF !important;
}

@media screen and (max-width: 460px) {
    .content_slider h2 {
        font-size: 15pt !important;
    }

    .content_slider p {
        font-size: 12pt !important;
    }

    #container-slider .arrowPrev, #container-slider .arrowNext {
        font-size: 20pt;
    }

    #container-slider .arrowPrev {
        left: 15px;
    }

    #container-slider .arrowNext {
        right: 15px !important;
    }

    #slider {
        height: 400px;
        min-height: 400px;
    }

        #slider li .content_slider {
            padding: 10px 35px;
        }

    .btnSlider {
        padding: 10px 30px;
        font-size: 10pt;
    }
}

/* Style the tab */
.tab {
    overflow: hidden;
    border: 0px;
    color: #0a0a0a;
}

    /* Style the buttons inside the tab */
    .tab button {
        background-color: inherit;
        float: left;
        border: none;
        outline: none;
        cursor: pointer;
        padding: 14px 16px;
        transition: 0.3s;
        font-size: 17px;
    }

        /* Change background color of buttons on hover */
        .tab button:hover {
            background-color: #ddd;
        }

        /* Create an active/current tablink class */
        .tab button.active {
            border-bottom: 2px solid rgba(255,24,0,1);
        }

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 0px;
    border-top: none;
    color: #808080;
}

p {
    margin: 0 0 15px;
    line-height: 24px;
    color: gainsboro;
}

a {
    color: dodgerblue;
    text-decoration: none;
}

    a:hover {
        color: tomato;
    }

.container {
    max-width: 1024px;
    height: 100%;
    margin: 0 auto;
    padding: 30px 20px 50px 20px;
}


p {
    margin: 0 0 15px;
    line-height: 24px;
    color: black;
}


.tabs {
    position: relative;
    display: flex;
    min-height: 430px;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.tabby-tab {
    flex: 1;
    
}

    .tabby-tab label {
        display: block;
        box-sizing: border-box;
        /* tab content must clear this */
        height: 40px;
        padding: 10px;
        text-align: center;
        background: #c8cbcf;
        cursor: pointer;
        transition: background 0.5s ease;
        
    }

    .tabby-tab label:hover {
        background: #e3e5e7;
    }

.tabby-content {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    /* clear the tab labels */
    top: 40px;
    padding: 20px;
    border-radius: 0 0 8px 8px;
    background: #f9f9fa;
    transition: opacity 0.8s ease, transform 0.8s ease;
    /* show/hide */
    opacity: 0;
    transform: scale(0.1);
    transform-origin: top left;
}

    .tabby-content img {
        float: left;
        margin-right: 20px;
        border-radius: 8px;
    }


/* MAKE IT WORK ----- */

.tabby-tab [type=radio] {
    display: none;
}

[type=radio]:checked ~ label {
    background: #e3e5e7;
    z-index: 2;
    border-bottom: 2px solid #bb210f;
}

    [type=radio]:checked ~ label ~ .tabby-content {
        z-index: 1;
        /* show/hide */
        opacity: 1;
        transform: scale(1);
    }

/* BREAKPOINTS ----- */
@media screen and (max-width: 767px) {
    .tabs {
        min-height: 400px;
    }
}

@media screen and (max-width: 480px) {
    .tabs {
        min-height: 580px;
    }

    .tabby-tab label {
        height: 60px;
    }

 .tabby-content {
        top: 60px;
    }

 .tabby-content img {
            float: none;
            margin-right: 0;
            margin-bottom: 20px;
        }
}

