/*------------------------------------------
  Responsive Grid Media Queries - 1280, 1024, 768, 480
   1280-1024   - desktop (default grid)
   1024-768    - tablet landscape
   768-480     - tablet 
   480-less    - phone landscape & smaller
--------------------------------------------*/
@media all and (min-width: 1024px) and (max-width: 1280px) {

}

@media all and (min-width: 768px){

}

@media all and (max-width: 1094px) {


}
@media all and (max-width: 995px) {
    .mob-vis{
        display: block;
    }
    .mobile-menu{
        display: block;
    }
    .header-menu {
        margin-top: 10px;
        display: none; 
        width: 100%;
        text-align: center;
    }
    .mob-mem-vis{
        display: block;
    }
    .mobile-members-menu{
        display: block;
    }
    .members-sub-menu {
        margin-top: 10px;
        display: none; 
        width: 100%;
        text-align: center;
    }
    .menu-li {
        display: block;
    }
    .menu-a {
        width: 100%;
        /*background-color: #2d9acb;*/
    }
	.footer ul.foootermenu{margin-bottom:10px;}
	
    .sub-menu-a, .sub-menu-a:focus {
        color: #000;
        background-color: #fff;
    }
    .sub-menu-a:hover {
        background: #000064;
        color: #ffffff !important;
    }
    .hide-mobile{
        display: none;
    }

    .header-right {
        width: 100%;
    }
    .sub-menu-ul{
        margin-bottom: 10px;
        width: 100%;
    }

    ul ul {
        padding: 0;
        position: relative; 
        top: 0px;
    }
    ul ul li a {
        width: 100%;
    }
    .sub-menu-a::after { 
        content: "";
    }
    .input-full3, .input-full, .input-full2  {
        width: 100%;
    }
    .label-3 {
        margin-left: 0px;
    }
    body { 
        margin: 0px;
    }
  /*  .footer-fixed {
        position: relative;
    }*/
    .visible-mob{
        display: block;
    }
    .hide-mob{
        display: none;
    }
    .triangle-white{
        visibility: hidden;
    }
}

@media all and (max-width: 827px) {
    .content-left {
        padding-right: 0px;
    }

}

@media (max-width: 768px){
    /* HIGH VISIBILITY */
    body.high-visibility .header-logo img {
        top: 0px;
    }
    body.high-visibility .header-right {
        margin-top: 40px;
    }
    body.high-visibility .home-banner-left {
        height: 300px;
        clear: both;
    }
    body.high-visibility .members-sub-menu .sub-menu-a,
    body.high-visibility .members-sub-menu .sub-menu-a:focus {
        background: #2d9acb;
    }
    
    body.high-visibility .header-menu {
        display: block;
    }
    
    body.high-visibility .menu-a , 
    body.high-visibility .sub-menu-a {
        background: #112233;
        text-align: left;
    }
    body.high-visibility .home-banner-left div {
        display: block !important;
        position: relative;
        float: left;
    }
    /* HIGH VISIBILITY - END */
}

@media all and (max-width: 480px) {
    /* HIGH VISIBILITY */
    body.high-visibility .header-logo img {
        top: 0px;
    }
    body.high-visibility .header-right {
        margin-top: 40px;
    }
    body.high-visibility .home-banner-left {
        height: 300px;
        clear: both;
    }
    body.high-visibility .members-sub-menu .sub-menu-a,
    body.high-visibility .members-sub-menu .sub-menu-a:focus {
        background: #2d9acb;
    }
    
    body.high-visibility .header-menu {
        display: block;
    }
    
    body.high-visibility .menu-a , 
    body.high-visibility .sub-menu-a {
        background: #112233;
        text-align: left;
    }
    body.high-visibility .home-banner-left div {
        display: block !important;
        position: relative;
        float: left;
    }
    /* HIGH VISIBILITY - END */
    .members-sub-menu .sub-menu-ul li {
        float: left;
        width: 100%;
        background: #ffffff;
    }
    
    .members-sub-menu .sub-menu-ul li .sub-menu-a, 
    .members-sub-menu .sub-menu-ul li .sub-menu-a:focus {
        float: none;
    }
    
    .members-login a {
        padding: 8px 24px;
    }
}

/*special resolutions*/
@media all and (max-width: 510px) {
    .home-banner-a-more {
        margin-right: 0px;
        display: block;
        margin-bottom: 10px;
    }
    .icon-box img{
        margin-bottom: 5px;
        width: 50px;
        height: auto;
    }
}
@media all and (max-width: 390px) {

}
/* Portrait */
@media screen and (orientation:portrait) { /* Portrait styles here */ }
/* Landscape */
@media screen and (orientation:landscape) { /* Landscape styles here */ }


/* CSS for iPhone, iPad, and Retina Displays */

/* Non-Retina */
@media screen and (-webkit-max-device-pixel-ratio: 1) {
}

/* Retina */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3/2),
only screen and (min--moz-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
}

/* iPhone Portrait */
@media screen and (max-device-width: 480px) and (orientation:portrait) {
} 

/* iPhone Landscape */
@media screen and (max-device-width: 480px) and (orientation:landscape) {
}

/* iPad Portrait */
@media screen and (min-device-width: 481px) and (orientation:portrait) {
}

/* iPad Landscape */
@media screen and (min-device-width: 481px) and (orientation:landscape) {
}