@font-face {
    font-family:'lato-light-webfont';
    src: url('../fonts/lato-light-webfont.ttf');
    src: url('../fonts/lato-light-webfont.eot');
    src: url('../fonts/lato-light-webfont.eot') format('embedded-opentype'),
         url('../fonts/lato-light-webfont.woff') format('woff'),
         url('../fonts/lato-light-webfont.ttf') format('truetype'),
         url('../fonts/lato-light-webfont.svg#lato-light-webfont') format('svg');  
} 

.tabs {
    max-width: 100%;
    float: none;
    list-style: none;
    padding: 0;
    margin: 50px auto;
    border-bottom: 4px solid #ccc;
}

.tabs:after {
    content: '';
    display: table;
    clear: both;
}
 
.tabs input[type=radio] {
    display:none;
}
 
.tabs label {
    display: block;
    float: left;
    width: 33%;
    color: #000;
    font-size:18px;
    font-weight: normal;
    text-decoration: none;
    text-align: center;
    font-family: sans-serif;
        font-weight: lighter;
    line-height: 2;
    cursor: pointer;
    border: 1px solid #000;
/*    box-shadow: inset 0 4px #ccc;*/
/*    border-bottom: 4px solid #ccc;*/
    -webkit-transition: all 0.5s;  Safari 3.1 to 6.0 
    transition: all 0.5s;
}
  
.tabs label span {
    display: none;
}
 
.tabs label i {
    padding: 5px;
    margin-right: 0;     
}
 
.tabs label:hover {
/*    background: #1E96A4;*/
/*    color: #fff;  */
/*
    box-shadow: inset 0 4px #1E96A4;
    border-bottom: 4px solid #1E96A4;
*/
}
 
.tab-content {
    display: none;
    width: 100%;
    float: left;
    padding: 15px;
    box-sizing: border-box;
    background-color:#ffffff;
}
    .tab-content * {
 
    -webkit-animation: scale 0.7s ease-in-out;
    -moz-animation: scale 0.7s ease-in-out;
    animation: scale 0.7s ease-in-out;
}
 
@keyframes scale {
 
  0% { 
    transform: scale(0.9);
    opacity: 0;
    }
 
  50% {
    transform: scale(1.01);
    opacity: 0.5;
    }
 
  100% { 
    transform: scale(1);
    opacity: 1;
  }
}

    .tabs [id^="tab"]:checked + label {
    background: #FFF;
        font-family: sans-serif;
        font-weight: lighter;
/*
    box-shadow: inset 0 4px #F37C82;
    border-bottom: 4px solid #F37C82;
*/
    color: #fff;
    background: #205648;
}
 
#tab1:checked ~ #tab-content1,
#tab2:checked ~ #tab-content2,
#tab3:checked ~ #tab-content3 {
    display: block;
}
    @media (max-width: 2000px) {   
    .tabs i {
        padding: 5px;
        margin-right: 10px;
    }
 
    .tabs label span {
       
        display: inline-block;
    }
 
   
}

@media(max-width:490px){
    .tabs label {
        font-size: 8px;
    } 
}