@import url('https://fonts.googleapis.com/css?family=Work+Sans:300,400,500,600,700&display=swap');


/* body,html{
    height: 100%;
} */

/* flex grid */

.frow{

    display: flex;

            flex-flow: row;

        flex-wrap: wrap;

}
.fcol{
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
}
@media screen and (min-width: 900px){
    .fcol--1{
        width: 8.33%
    }
    .fcol--2{
        width: 16.66%
    }
    .fcol--3{
        width: 25%;
    }
    .fcol--4{
        width: 33.33%;
    }
    .fcol--5{ 
        width: 41.66%;
    }
    .fcol--6{
        width: 50%;
    }
    .fcol--7{
        width:58.33%;
    }
    .fcol--8{
        width: 66.66%;
    }
    .fcol--9{
        width: 75%;
    }
    .fcol--10{
        width: 83.33%;
    }
    .fcol--11{
        width: 91.66%;
    }
    .fcol--12{
        width: 100%;
    }
}

/* page style */
.page{
    margin: 43px 40px;
    min-height: 100%;
    justify-content: space-between;
    font-family: 'Work Sans', sans-serif;
    line-height: 1.2;
}

.page__left, .page__middle, .page__right{
    display: inline-block;
}
.page__left{
    width: 240px;
}
.page__middle{
    width: 50%;
}

.page__right{
    margin-left: 10px;
    width: 265px;
}

@media screen and (max-width: 1200px){
    .page__middle{
        width: 70%;
    }
    .page__right{
        width:100%;
        margin-top: 15px;
        margin-left: 0;
    }
}
@media screen and (max-width: 980px){
    .page__middle{
        width: 100%;
    }
}

/* sidenav */
.sideNav__menu{
    display: flex;
    flex-flow: row;
    align-items: center;
}
.sideNav__home{
    display: inline-block;
}
.sideNav__logo{
margin-top: -10px;
}

.sideNav__content{
    max-height: auto;
}
.sideNav__mobile{
    display: none;
}
.sideNav__mobile>img{
    pointer-events: none;
}
@media screen and (max-width: 980px){
    .sideNav__home{
        margin-bottom: 20px;
    }
    .sideNav__logo{
        margin-top: 0;
        width: 60%;
    }
    
    .sideNav__content{
        padding-right: 50px;
        position: absolute;
        background-color: white;
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s ease-out;
        -webkit-transition: max-height .3s ease-out;
        -moz-transition: max-height .3s ease-out;
        -ms-transition: max-height .3s ease-out;
        -o-transition: max-height .3s ease-out;
        z-index: 1;

}
    .sideNav__mobile{
        display: inline-block;
        padding: 10px;
        cursor: pointer;
    }
    .sideNav__mobile > img{
        display: block;
        margin-bottom: 15px;
    }
}

/* padding top is here so that it works in mobile - Don't move up to div parent */
.sideNav__header{
    padding-top: 50px;
    color: black;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
}

.sideNav__links, .sideNav__sublinks{
    list-style-type: none;
}
.sideNav__links{
    padding: 0;
    margin-top: 0;
}

.sideNav__link, .sideNav__sublink{
    padding-top: 15px;
}
.sideNav__link > a, .sideNav__sublink > a{
    font-weight: 500;
    text-decoration: none;
}

.sideNav__sublinks{
    margin-left: 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease-out;
    -webkit-transition: max-height .3s ease-out;
    -moz-transition: max-height .3s ease-out;
    -ms-transition: max-height .3s ease-out;
    -o-transition: max-height .3s ease-out;
}

.sideNav__link > a{
    color: #00558C;
}
.sideNav__link > a:hover{
    color: #00B1E2;
}
.sideNav__sublink > a{
    font-weight: 400;
    color: #00B1E2;
}
.sideNav__sublink > a:hover{
    color: #00558C;
}
.sideNav__sublink:after{
    content: "";
    background-image: url("../img/Nav-Menu-Icon_Lock.svg");
    width: 15px;
    height: 15px;
    display: inline-block;
    margin-left: 5px;
}

.sideNav__check, .sideNav__mobileCheck{
    width: 0;
    height: 0;
    margin: 0;
    display:none;
}
.sideNav__arrow{
    max-width: 15px;
    transition: transform .4s;
    -webkit-transition: transform .4s;
    -moz-transition: transform .4s;
    -ms-transition: transform .4s;
    -o-transition: transform .4s;
    width: 100%;
}

.sideNav__label{
    display: inline-block;
    padding: 0 5px;
    margin: 0;
    cursor: pointer;
}
.sideNav__label>img{
    pointer-events: none;
}
.sideNav__check:checked + .sideNav__label > .sideNav__arrow{
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}


/* tabs */

.tabs{
    justify-content: space-between;
}

.tabs__tab{
    width: 32%;
    background-color: #EDF2F5;
    color: black !important;
    border-bottom: solid 5px #00B1E2;
    padding: 6px 15px;
    text-align: center;
    font-weight: 400;
    font-size: 20px;
    cursor: pointer;
    text-decoration: none;
    box-sizing:border-box;
}
.tabs__tab:hover, .tabs__tab.active{
    border-bottom: solid 5px #CCD814;   
}

@media screen and (max-width: 600px){
    .tabs__tab{
        width:100%;
        margin-bottom: 10px;
    }
}

/* contacts section */
.contacts{
    background-color: #00B1E2;
    color: white;
    text-align: center;
    
}
.contacts__header{
    text-transform: uppercase;
    font-weight: 500;
    font-size: 20px;
    padding: 8px 25px 9px 25px;
    margin: 0;
}

.contacts__panel{
    background-color: white;
    color: black;
    font-size: 14px;
    padding: 5px 10px;
    text-align: left;
    display: flex;
    flex-flow : row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contacts__block{
    padding: 10px 0;
    width: 250px;
}

.contacts__text, .contacts__link{
    padding-top: 5px;
    display: block;
    font-weight: 500;
}
.contacts__link{
    text-decoration: none;
    color: #00558C !important;
}
.contacts__link:hover{
    color: #00B1E2 !important;
}

/* content */

.content{
    margin-top: 50px; 
}
.content__title{
    color: black;
    font-weight: 400;
    margin: 0;
    margin-bottom: 20px;
}

.content__banner{
    width: 100%;

}

.content__txt{
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 400;
}
.content__img{
    display: block;
    height: 100%;
}
.content__link{
    color: #00558C !important;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
}
.content__link:hover{
    color: #00B1E2 !important;
}
.content__header{
    color: black;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
    margin-top: 50px;
}

.content__list{
 list-style-type: disc;   
 list-style-position: inside;
}

.content__config{
    /* padding: 2%; */
    font-weight: 500;
    display: flex;
    flex-flow: row;
    flex-wrap: nowrap;
    align-items: center;
    border:1px solid rgb(224, 224, 224);
    margin: 5px 0;
}
.content__config >img {
    width: 30%;
    padding-right: 3%;
}

.content__row{
    justify-content: space-between;
}
.content__config--small{
    width: 28%;
    flex-wrap: wrap;
    justify-content: center;
}
.content__config--small >img {
    width: 60%;
}
/* shop section */
.shop{
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    flex-wrap: wrap;
}
.shop__panel{
    width: 24%;
    margin-top: 1.5%;
}
.shop__panel:hover{
    opacity: .85;
}
.shop__panel > a, .shop__panel > a > img{
    display: block;
}

.resource{
    width: 100%;
    background-color: #EDF2F5;

    margin: 6px 0;
}
.resource__txt{
    font-weight: 600;
    color: #191919;
    padding: 10px;
    display: inherit;
    align-items: center;
}

.resource__btn{
    background-color: #00558C;
    color: white;
    font-weight: 600;
    padding: 10px;
    display: inherit;
    align-items: center;
    justify-content: center;
}

.resource__btn > img{
    width: 24px;
}

.resource__btn > .resource__lock {
    width: 15px;
    margin-left: 6px;
    padding-bottom: 3px;
}

.resource__btn > .resource__icon {
    width: 20px;
    padding: 2px 0 2px 5%;
}
