﻿body {
}
/* Tabs Start */

.ease {
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

/*.container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}*/

.tabs {
    background: #fff;
    position: relative;
}

    .tabs > input,
    .tabs > span {
        width: 33%;
        height: 60px;
        line-height: 60px;
        position: absolute;
        top: 0;
    }

    .tabs > input {
        cursor: pointer;
        filter: alpha(opacity=0);
        opacity: 0;
        position: absolute;
        z-index: 99;
    }

    .tabs > span {
        text-align: center;
        overflow: hidden;
    }

        .tabs > span i,
        .tabs > span {
            -webkit-transition: all .5s;
            -moz-transition: all .5s;
            -o-transition: all .5s;
            transition: all .5s;
        }

    .tabs > input:hover + span {
        background: #C2DDFE;
    }

    .tabs > input:checked + span {
        background: #fff;
    }

    .tabs > input:checked + span,
    .tabs > input:hover + span {
        color: #1e3fb5;
    }

#tab-1, #tab-1 + span {
    left: 0;
}

#tab-2, #tab-2 + span {
    left: 33%;
}

#tab-3, #tab-3 + span {
    left: 66%;
}

.tab-content {
    padding: 80px 20px 0px;
    width: 100%;
    /* min-height: 340px;*/
}

    .tab-content section {
        width: 100%;
        display: none;
    }

        .tab-content section h1 {
            margin-top: 15px;
            font-size: 100px;
            font-weight: 100;
            text-align: center;
        }

#tab-1:checked ~ .tab-content #tab-item-1 {
    display: block;
}

#tab-2:checked ~ .tab-content #tab-item-2 {
    display: block;
}

#tab-3:checked ~ .tab-content #tab-item-3 {
    display: block;
}

/* effect-3 */

.effect-3 .line {
    background: #1e3fb5;
    width: 33%;
    height: 4px;
    position: absolute;
    top: 56px;
}

#tab-1:checked ~ .line {
    left: 0;
}

#tab-2:checked ~ .line {
    left: 33%;
}

#tab-3:checked ~ .line {
    left: 66%;
}

