/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 15-Apr-2019, 08:17:42
    Author     : robertward-pound
*/

/* Style the tab */
.tab {
    float:left;
    overflow: hidden;
    margin: 0;
    width:100%;
    padding: 10px;
}

/* Style the buttons that are used to open the tab content */
.tab a {
    background-color: whitesmoke;
    color:color;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 15px;
    transition: 0.3s;
    font-size: 13pt;
    border-radius: 5px;
    margin:0 10px;
    width:calc(25% - 20px);
    text-align: center;
    font-family: Montserrat;
}
/* Change background color of buttons on hover */
.tab a:hover {

}

/* Create an active/current tablink class */
.tab a.active {
    background-color: #0B3247;
    color:white;
}

/* Style the tab content */
.tabcontent {
    display: none;
    border-top: none;
    margin: 0 6px;
    overflow:auto;
    background: #fff;
    float:left;
    width:calc(100% );
}

@media only screen and (max-width:900px){
    .tab a {
    width:calc(49.9999% - 20px);
    margin: 10px 10px
}
}