/* COLORS
----------------------------------------------------------*/
/* dark blue = #004B8C */
/* medium blue = #1d9dd8 */

:root {
    --darkblue: #004B8C;
    --mediumblue: #006EAD;
    --darkgray: #231f20;
    --darkteal: #00819D;
}

/* DEFAULTS
----------------------------------------------------------*/

html {
    height: 100%;
    width: 100%;
}

body {
    background-color: #F4F4F4;
    font-size: 16px;
    /*font-family: arsenalregular, Arial, Verdana, Arial, sans-serif;*/
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
    color: #32424e;
    margin: 0px;
    padding: 0px;
    height: 100%;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: uni_neuebook,'Source Sans Pro','Helvetica Neue',sans-serif;
}

.wrapper {
    max-width: 1170px;
    margin: 0 auto;
}
.wrapper.military-star-faq {
    max-width: 1200px;
    padding: 0 20px;
    margin-bottom: 100px;
}

a:link, a:visited {
    color: #0079AD;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

p {
    line-height: 1.6em;
}

.row.wide {
    margin-left: -25px;
    margin-right: -25px;
}

/* NAVIGATION
----------------------------------------------------------*/
.page.sticky-nav .fw {
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 9;
}
.page.sticky-nav .fw .hdr-brand.hide-mobile img {
    width: 100px;
}
.page.sticky-nav .fw .fw-vp .hdr-brand {
    padding: 4px 0;
}
.page.sticky-nav .fw .hdr-navbar .navbar-nav {
    margin-top: 0;
    padding: 4px 0;
}
.page.sticky-nav .fw .hdr-navbar .nav>li>a {
    font-size: 16px;
}
.hdr-navbar .navbar-nav {
    width: auto;
    float: right;
    margin-top: 65px;
    transition: all ease-in-out 200ms;
}
/*
    This line removed the top margin, if there is no logo
    The purpose of the margin is to align the menu links with the bottom of the logo
*/
.hdr-navbar:not(:has(a.header-logo)) .navbar-nav {
    margin-top: initial;
}
.hdr-brand img {
    margin-left: 0;
}
.hdr-brand.hide-mobile img {
    width: 200px;
	margin-top: 0;
    transition: all ease-in-out 200ms;
}
.hdr-navbar .nav>li>a {
    font-size: 20px;
    transition: all ease 250ms;
	text-transform: uppercase;
}
.footer-container {
    padding: 20px 0;
}
.footer-container .nav.footer-nav li a {
    padding: 0;
    background: none;
}
.footer-nav a,
.footer-nav li {
    color: #fff;
    font-size: 18px;
}
.footer-nav {
    padding: 0;
}
.footer-nav a:hover {
    color: #ddd;
}
.footer-nav li {
    margin: 18px 0;
}
.col-md-6.footer-logo-container, .footer-logo {
    float: right;
}
.footer-logo {
    float: right;
    margin-top: 15px;
}
.footer-logo img {
    width: 200px;
}
.bar-container.footer-bar {
    height: 62px;
}

@media (max-width: 768px) {
    .col-md-6.footer-logo-container,
    .footer-logo {
        float: none;
    }
    .col-md-6.footer-logo-container {
        margin: 0 0 25px;
    }
    .footer-nav {
        padding: 0;
    }
    .footer-logo {
        margin-top: 20px;
    }
}

/* PRIMARY LAYOUT ELEMENTS
----------------------------------------------------------*/
.page {
    position: relative; /* needed for footer positioning*/
    margin: 0 auto; /* center, not in IE5 */
    width: 100%;
    height: auto !important; /* real browsers */
    height: 100%; /* IE6: treaded as min-height*/
    min-height: 100%; /* real browsers */
}

.help-center {
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--mediumblue);
    padding: 10px 15px;
}
.help-center h2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    margin: 0;
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
}
.help-center svg {
    width: 30px;
    height: 30px;
}

.homepage .highlight,
.nsgb .highlight {
    background-image: none;
    background: #fff;
}

.nsgb .highlight-title {
    padding: 0px 6px 0px 2px;
    width: 280px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    font-size: 16pt;
}

.homepage .highlight_title,
.nsgb .highlight_title {
    border-bottom: 2px solid #E6E5E5;
    width: 100%;
    margin: 0;
    padding-right: 0;
    padding-left: 0;
}

.highlight_text {
    text-align: center;
    width: 272px;
    height: 114px;
    line-height: 30px;
    padding: 12px 6px 0px 2px;
    font-size: 10pt;
    margin: 0 0 0 2px;
    /*border-bottom: 0px solid #55BC75;*/
}


.homepage .highlight_text,
.nsgb .highlight_text {
    margin: 0;
    padding: 12px 0 0;
    width: 100%;
}

.content {
    width: 100%;
    margin: 0px auto;
    padding: 0px;
}

.right {
    float: right;
}

.left {
    float: left;
}

.center {
    text-align: center;
}

a.button {
    font-family: 'Source Sans Pro';
    display: inline-block;
    line-height: 18px;
    text-transform: uppercase;
    color: #FFFFFF;
    background-color: #26A1A1;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.9px;
    padding: 11px 35px;
    transition: all 300ms ease;
}
a.button:hover {
    text-decoration: none;
    background: #008085;
}
a.button.large {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 13px 40px;
}
a.button.medium {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.9px;
    padding: 11px 35px ;
}
a.button.small{
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.8px;
    padding: 9px 30px;
}

.form-button {
    background-color: #FF8F00;
    color: #fff;
    padding: 13px 30px;
    position: relative;
    margin: auto;
    font-size: 15px;
    line-height: 17px;
    width: 150px;
    text-align: center;
    border-radius: 3px;
    border: 1px solid #ff8f00;
}

    .form-button:hover {
        background-color: #ffa532;
        text-decoration: none;
    }

    .data-table th {
}

.data-table td {
    text-align: center;
}

.data-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.data-table tr:nth-child(odd) {
    background-color: #e6e6e6;
}

.data-table tr:first-child {
    background-color: #015274;
    color: #fff;
}

.data-table th {
    color: #fff;
    font-weight: normal;
    font-size: 14px;
    padding: 8px 0 8px 20px;
    text-align: left;
}

.data-table td {
    color: #1A1A1A;
    font-size: 14px;
    padding: 8px 0 8px 25px;
    /*text-align: center;*/
}


.homepage .top-buttons {
    display: inline-block;
    position: relative;
    left: 50%;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.homepage a.locations-button {
    display: inline-block;
    position: relative;
    top: 12px;
}

.homepage a.button.orange {
    padding: 4px 59px;
    border-bottom: 5px solid #cc7400;
    position: relative;
    margin-left: 20px;
    font-size: 15px;
    line-height: 17px;
}

    .homepage a.button.orange:hover {
        text-decoration: none;
    }

.homepage .button strong {
    text-transform: uppercase;
}

.homepage-location {
    background-color: #ccf0ff;
    margin: 0px auto 0px auto;
    border: solid 4px;
    border-left: 0;
    border-right: 0;
}

.homepage-location-content {
    margin: 0px auto 0px auto;
    padding-top: 35px;
    max-width: 900px;
    text-align: center;
    position: relative;
}
.homepage-location-content .button.large {
    padding-left: 60px;
    padding-right: 60px;
    font-weight:600;
    font-size: 21px;
}

.homepage-location-content .button {
    margin: 60px 0 40px;
}

.homepage-location-testimonial {
    text-align: center;
    font-size: 44px;
    font-family: 'uni_neuebold';
    color: #202e39;
    padding: 0 75px;
    margin: 40px auto 0px auto;
}
.guantanamo-link {
    margin-bottom: 40px;
    font-size: 22px;
    font-weight: 400;
    color: #32424E;
}
.guantanamo-link a {
    font-weight: 700;
    text-decoration: underline;
    color: #0079ad;
}
.wifi-symbol {
    display: block;
    margin: 50px auto -75px;
    width:150px;
}
.homepage-how-it-works {
    margin-top:100px;
    margin-bottom: 100px;
}

.homepage-how-it-works .hiw-heading {
    text-align: center;
    margin: 50px 0 80px;
    font-family: 'uni_neuebold';
    font-size: 30px;
    color: #014656;
}
.homepage .highlight-wrap {
    overflow: hidden;
    padding-bottom: 25px;
    max-width: 1000px;
    margin: 0 auto;
}
.homepage .highlight {
    display: inline-block;
    float: left;
    width: 30%;
    margin-right: 4%;
    border-bottom: solid 2px #014656;
}
.homepage .highlight:first-child {
    margin-left: 1%;
}
.homepage .highlight:last-child {
    margin-right: 1%;
}
.homepage .highlight-icon {
    width: 50px;
    margin: 0 auto -25px;
    display: block;
}
.homepage .highlight-title {
    font-size: 26px;
    font-family: 'uni_neuebold';
    text-align: center;
    line-height:70px;
    margin:0;
    border-bottom: solid 3px #F4F4F4;
}
.homepage .highlight-text {
    padding: 20px 30px;
    font-size: 16px;
    text-align: center;
}


.feature_bg {
    /*background: #FCFCFC url("../images/learn_more_feature_bg.png") no-repeat center;
    height: 326px;*/
    background: #FCFCFC url("../images/NavyMontage.png") no-repeat center;
    height: 245px;
    margin: 0px auto 0px auto;
}

    .feature_bg.location {
        height: 125px;
    }

.feature-content {
    margin: 0px auto 0px auto;
}

.feature-content.location {
    overflow: hidden;
}

.feature_content.location .region {
    margin: 5px;
    float: left;
    width: 100%;
}


.feature-title {
    font-family: 'uni_neuebold', sans-serif;
    text-align: center;
    font-size: 44px;
    color: #202e39;
}
.feature_text {
    padding-top: 90px;
    margin: 0px auto 0px auto;
    text-align: center;
    font-size: 13pt;
}

.feature_text.location {
    padding-top: 60px;
}

.feature_bg.location .feature_text {
    padding-top: 35px;
}

.learn_more_plugnplay_bg {
    background-color: #39B6C3;
    height: 190px;
    margin: 0px auto 0px auto;
}

.learn_more_plugnplay_content {
    width: 950px;
    margin: 0px auto 0px auto;
    padding-top: 35px;
}

.learn_more_plugnplay_text {
    /*font-family: Capita-Light;*/
    font-family: 'Open Sans';
    text-align: center;
    font-size: 13pt;
    color: #FFF;
    margin: 0px auto 0px auto;
}

.learn_more_flexibility_title {
    text-align: left;
    /*font-family: Capita-Light;*/
    font-family: 'Open Sans';
    font-size: 13pt;
    margin-bottom: 8px;
}

.learn_more_flexibility_text {
    text-align: left;
    font-size: 10pt;
    margin-top: 8px;
}

.learn_more_logo {
    background: url('../images/learn_more_logo.png') no-repeat;
    width: 935px;
    height: 44px;
    margin: 50px auto 0px auto;
    padding-bottom: 50px;
}

.learn_more_map {
    background: url('../images/learn_more_map.png') no-repeat;
    width: 586px;
    height: 306px;
    margin: 0px auto 0px auto;
    padding-bottom: 50px;
}

.sign_up_plans_container {
    width: 100%;
    height: 315px;
    margin-top: 15px;
    position: relative;
}

.sign_up_plans_bg {
    background-color: #39B6C3;
    width: 100%;
    height: 215px;
    position: absolute;
    top: 25px;
    left: 0;
    z-index: 10;
}

.sign_up_plans_overlay {
    width: 100%;
    height: 315px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
}

.sign_up_plans_price_blue {
    position: relative;
    width: 231px;
    height: 63px;
    margin: 0px auto 0px auto;
    padding-bottom: 12px;
    background: url('../images/sign_up_plans_price_blue.png') no-repeat;
}

.sign_up_plans_price_orange {
    position: relative;
    width: 231px;
    height: 63px;
    margin: 0px auto 0px auto;
    padding-bottom: 12px;
    background: url('../images/sign_up_plans_price_orange.png') no-repeat;
}

.sign_up_plans_price_text {
    top: 17px;
    left: 39px;
    position: absolute;
    text-align: left;
    color: #FFF;
    /*font-family: Capita-Light;*/
    font-family: 'Open Sans';
    font-size: 18pt;
}

.sign_up_plans_price_text_details {
    top: 17px;
    left: 105px;
    position: absolute;
    text-align: left;
    font-size: 12pt;
}

.blue_border {
    border-color: #39B6C3;
}

.green {
    color: #55BC75 !important;
}

.pointer {
    cursor: pointer;
}


.copyright {
    color: #9BBEBA;
    font-size: 7pt;
}

.bar-container {
    width: 100%;
    height: 3px;
    position: relative;
    background: #1d9dd8; /* Old browsers */
    background: -moz-linear-gradient(left, #1d9dd8 0%, #003f73 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,#1d9dd8), color-stop(100%,#003f73)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(left, #1d9dd8 0%,#003f73 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left, #1d9dd8 0%,#003f73 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(left, #1d9dd8 0%,#003f73 100%); /* IE10+ */
    background: linear-gradient(to right, #1d9dd8 0%,#003f73 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1d9dd8', endColorstr='#003f73',GradientType=1 ); /* IE6-9 */
}



/* LOCATION PAGE
------------------------------------------------- */
.region {
    padding: 30px 0 20px;
}



/* CONTACT PAGE
------------------------------------------------- */
.contact-page {
    position: relative;
    padding: 100px 0 25px;
}
.contact-wrap {
    background-color: #fff;
    border-radius: 35px;
    padding: 25px 5px;
    box-shadow: 0px 1px 7px 0px rgba(0,0,0, .15);
    max-width: 1000px;
    margin: 0 auto 40px;
}
.contact-wrap .form-control {
    min-width: 100%;
}
.contact-wrap .card {
    max-height: 90vh;
    padding: 0;
    margin: 0;
    overflow-y: auto;
}
.contact-wrap .card .card-title {
    font-family: uni_neuebold,'Source Sans Pro','Helvetica Neue',sans-serif;
    color: var(--darkgray);
    font-size: 24px;
    margin: 0 0 25px 0;
    text-align: center;
}
.contact-wrap .column1,
.contact-wrap .column2 {
    display: inline-block;
    vertical-align: bottom;
}
.contact-wrap .form-group {
    margin: 0;
}
.contact-wrap .column1 {
    width: 60%;
}
.contact-wrap .column2 {
    width: 30%;
    margin: 0 0 70px 8%;
}
.contact-wrap label {
    font-weight: 400;
}
.contact-wrap input,
.contact-wrap textarea {
    border-radius: 0;
}
.contact-wrap input[type=submit] {
    font-family: 'Source Sans Pro';
    display: inline-block;
    line-height: 18px;
    text-transform: uppercase;
    color: #FFFFFF;
    background-color: #26A1A1;
    border-radius: 25px;
    font-size: 21px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 13px 60px;
    border: 0;
}
.contact-wrap .column2 h3 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #202e39;
    margin: 0 0 7px;
}


/* FAQ PAGE
------------------------------------------------- */
.faq-page {
    position: relative;
    padding: 100px 0 25px;
}
.faq-page .header-text h1 {
    font-family: uni_neuebold,'Source Sans Pro','Helvetica Neue',sans-serif;
    color: #202e39;
    font-size: 41px;
    margin: 0 20px 25px;
    cursor: pointer;
}
.faq-page .header-text h1 .icon-container {
    display: inline-block;
    font-size: 70%;
    margin-left: 7px;
}

.faq-page .header-text h2 {
    font-size: 27px;
    max-width: 600px;
    line-height: 1.4;
    margin: 0 20px;
}
.faq-page .faq-page-content {
    margin-bottom: 60px;
}
.faq-page .faq-container {
    padding: 0 20px 40px;
}
.faq-page .faq-container .faq {
    margin-bottom: 10px;
    border: 1px solid #aeb3b8;
    background-color: rgba(255,255,255, .3);
    box-shadow: 4px 4px 5px 1px rgba(0,0,0,0.08);
}
.faq-page .faq-container .faq.active > .question.main {
    margin-bottom: 10px;
    background-color: rgba(0,0,0, .05);
}
.faq-page .faq-container .faq.active > .question .icon-container i {
    transform: rotate(90deg);
}

.faq-page .faq-container .faq .question {
    padding: 13px 11px;
    display: flex;
    justify-content: space-between;
    transition: all ease-in-out 250ms;
    cursor: pointer;
}
.faq-page .faq-container .faq .question:hover {
    background-color: rgba(0,0,0, .05);
}

.faq-page .faq-container .faq .question .title {
    font-size: 20px;
    line-height: 1.1;
    font-weight: 700;
    color: #202e39;
    margin: 0;
}

.faq-page .faq-container .faq .question .icon-container {
    position: relative;
    width: 16px;
    height: 16px;
    margin-left: 8px;
}

.faq-page .faq-container .faq .question .icon-container i {
    color: #0088c3;
    transition: all ease-in-out 250ms;
}

.faq-page .faq-container .faq .answer {
    padding: 22px 30px 55px;
    font-size: 18px;
}
.faq-page .faq-container .faq .answer > .faq.active {
    background-color: rgba(0,0,0, .05);
}
.faq-page .faq-container .faq.active .answer > .faq.actve > .question {
    background-color: transparent !important;
}
.faq-page .faq-container .faq .answer > .faq > .answer > a {
    font-weight: 700;
}

.faq-page .contact-us {
    text-align: center;
    padding-top: 0;
    padding: 0 20px 60px;
    margin: 0 auto;
}
.faq-page .contact-us .wrapper {
	max-width: 1160px;
}
.faq-page .contact-us #divContactForm {
    cursor: pointer;
}
.faq-page .contact-us .title {
    font-size: 20px;
    font-weight: 700;
    color: #202e39;
	margin-top: 20px;
    margin-bottom: 0;
}
.faq-page .contact-us svg {
    width: auto;
    height: 100px;
    display: block;
    margin: 0 auto 30px;
}
.faq-page .call {
    margin: 30px 0 0;
}
.faq-page .call p {
    margin-bottom: 10px;
}
.faq-page .call div {
	border: none;
	color: rgba(0,0,0,0.7);
}
.faq-page .call a {
    position: relative;
    display: inline-block;
    padding: 0 10px 0 0;
	color: rgba(0,0,0,0.7);
	font-weight: 600;
	font-size: 1.8rem;
    white-space: nowrap;
}
.faq-page .call a:after {
    content: "|";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
}
.faq-page .call a:last-child {
    padding-right: 0;
}
.faq-page .call a:last-child:after {
    display: none;
}

#multimodal_form .multimodal-window {
    min-height: 800px;
    max-width: 800px;
    width: 100%;
}

#multimodal_form .multimodal-content {
    width: 100%;
    height: 100%;
    background-color: #fff;
    padding: 0;
}
#multimodal_form .pnlForm {
    max-width: 700px;
    margin: 0 auto;
    padding: 45px 20px;
}
#multimodal_form .pnlForm .form-group:last-child {
    margin-bottom: 0;
}
#multimodal_form input, #multimodal_form select, #multimodal_form textarea {
    max-width: 100%;
}

/* NSGB / Landing
------------------------------------------------- */
.in-page-tabs {
    background: #fff;
}
.page.sticky-nav .nav-tabs li a {
    padding: 5px 22px 6px;
    line-height: 25px;
    transition: all ease-in-out 200ms;
}

.nsgb .wrapper {
    max-width: 1000px;
}

a.button.navy {
    display: inline-block;
    background-color: #123C68;
    color: #fff;
    font-size: 19px;
    padding: 20px 50px;
    transition: .3s all;
}

a.button.navy:hover,
a.button.navy.activepage {
    background-color: #39B6C3;
    text-decoration: none;
}

.nsgb .feature-title {
    text-align: center;
    margin: 60px 0 50px;
}

.nsgb a.button.navy {
    min-width: 130px;
}

.nsgb .button-links {
    text-align: center;
    overflow: hidden;
    max-width: 900px;
}

.nsgb.landing .button-links {
    margin: auto;
    margin-bottom: 300px;
    margin-top: 30px;
    max-width: 1000px;
}

.nsgb .button-section {
    display: inline-block;
    vertical-align: top;
    width: 28%;
    margin: 0 2%;
    text-align: center;
}

    .nsgb .button-section a.button.navy {
        width: 100%;
        padding: 20px 0;
    }

.nsgb.landing .button-default {
    display: inline-block;
    margin: 0 3%;
    vertical-align: top;
    text-align: center;
    max-width: 250px;
    text-align: left;
}

    .nsgb.landing .button-default .button {
        width: 100%;
        padding: 20px 0;
    }

.nsgb .button-section:first-child {
    margin-left: 0;
}

.nsgb .white-box {
    background: #fff;
    padding: 25px 30px;
    border-bottom: 1px solid #202e39;
}
.nsgb .blue-box {
    background: #ccf0ff;
    padding: 25px 30px;
}
.nsgb .white-box h3 {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 700;
    color: #32424E;
    font-size: 22px;
}

.nsgb .intro-boxes {
    margin-top: 40px;
}
.nsgb .intro-boxes .white-box {
    min-height: 365px;
}

/* NSGB / General Information
------------------------------------------------- */
.row {
    overflow: hidden;
}

.quarter {
    width: 25%;
    float: left;
    margin-left: 3%;
}

.half {
    width: 48%;
    float: left;
    margin-left: 3%;
}

.three-quarters {
    width: 72%;
    float: left;
    margin-left: 3%;
}



.information-section img {
    width: 35%;
}

.information-section .intro-text {
    font-size: 18px;
    font-weight: 600;
    color: #3F4B5F;
}

.wifi-voice {
    border-bottom: 1px solid #202e39;
    margin-top: 40px;
}

.wifi-text {
    margin-left: 25px;
}

.wifi-header {
    height: 70px;
}

    .wifi-header h2 {
        font-size: 20px;
        display: inline;
        margin-right: 30px;
        vertical-align: top;
    }

    .wifi-header img {
        width: 64px;
    }

information-section .faq-table h5 {
    margin: 15px 0;
}

.faq-table {
    margin-bottom: 40px;
}

.information-section .faq-table p {
    font-size: 14px;
    font-weight: 600;
    margin: 5px 0px;
    color: #39B6C3;
}

.quarter:first-child,
.half:first-child,
.three-quarters:first-child {
    margin-left: 0;
}

.nsgb table {
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%;
}

.form-table {
    width: 33%;
    display: block;
    margin: auto;
    padding-bottom: 100px;
}

    .form-table td {
        font-size: 14px;
        font-family: 'Open Sans', 'sans-serif';
    }

.webmaster-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.webmaster-table tr:nth-child(odd) {
    background-color: #e6e6e6;
}

.webmaster-table tr:first-child {
    background-color: #015274;
    color: #fff;
}

.webmaster-table th {
    color: #fff;
    font-weight: normal;
    font-size: 14px;
    padding: 8px 0 8px 20px;
    text-align: left;
}

.webmaster-table td {
    color: #1A1A1A;
    font-size: 14px;
    padding: 8px 0 8px 25px;
    /*text-align: center;*/
}

.plans-table th {
}

.plans-table td {
    text-align: center;
}

.plans-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.plans-table tr:nth-child(odd) {
    background-color: #e6e6e6;
}

.plans-table tr:first-child,
.plans-table tr.tr-header {
    background-color: #015274;
    color: #fff;
}

.plans-table th {
    color: #fff;
    font-weight: normal;
    font-size: 14px;
    padding: 8px 0 8px 20px;
    text-align: left;
}

.plans-table td {
    color: #1A1A1A;
    padding: 8px 0 8px 20px;
    /*text-align: center;*/
}

.information-section .plans-table.faq th {
    text-align: left;
    font-size: 18px;
}

.plans-table.faq td {
    text-align: left;
}
.information-section .faq-ol-list ol {
    padding-left: 15px;
}
.information-section .faq-ol-list ol {
    padding-left: 15px;
}
.information-section .faq-ol-list ol li {
    list-style-type: auto;
}

.information-section .faq-ul-list ul {
    padding-left: 15px;
}
.information-section .faq-ul-list ul li {
    list-style-image: url(/media/images/icons/chevron-right-blue.svg);
}
.information-section .faq-ul-list ul:last-child {
    margin-bottom: 40px;
}
.information-section .faq-ul-list p {
    margin-bottom: 15px;
}


/* NSGB / Residential+Business Customers
------------------------------------------------- */
.nsgb {
    line-height: 1.6;
}

    .nsgb .button-links {
        text-align: center;
        margin: 40px auto;
        overflow: hidden;
    }

    .nsgb a.button.navy {
        font-size: 14px;
        padding: 20px 35px;
    }

    .nsgb .gray-divider {
        width: 600px;
        height: 1px;
        background-color: #ccc;
        margin: 68px auto;
    }

    .nsgb h1 {
        text-align: left;
        margin: 40px 0 0px 0;
        color: #333;
    }

    .nsgb .blurb {
        text-align: center;
        font-size: 16px;
        color: #333;
    }

    .nsgb.general .blurb {
        padding-bottom: 20px;
        text-align: center;
        font-size: 16px;
        color: #333;
    }

.sub-head-text {
    text-align: center;
    font-size: 16px;
    color: #333;
    padding-bottom: 40px;
}

.nsgb .highlight_wrap {
    overflow: hidden;
}

.nsgb.business .highlight_wrap {
    margin-bottom: 200px;
}

.nsgb.residential .highlight_wrap {
    margin-bottom: 80px;
}

.nsgb .highlight_container {
    width: 700px;
    overflow: hidden;
}

.nsgb.sign-up .highlight_wrap {
    overflow: visible;
}

.nsgb.sign-up .highlight_container {
    width: 948px;
    margin: 0 auto 60px;
    overflow: visible;
}

.nsgb.business .highlight_container {
    overflow: visible;
}

.nsgb .highlight {
    border-bottom: 3px solid #55BC75;
    width: 43%;
    margin-left: 14%;
    height: auto;
    text-align: center;
    padding: 30px 0;
    position: relative;
    overflow: visible;
}

.nsgb.sign-up .highlight {
    margin-left: 21px;
    float: left;
    width: 288px;
    height: 200px;
    text-align: left;
    padding: 0;
}

    .nsgb.sign-up .highlight:first-child {
        margin-left: 21px;
    }

.nsgb.sign-up .highlight_text {
    text-align: center;
    width: 272px;
    height: 114px;
    line-height: 30px;
    padding: 12px 6px 0px 2px;
    font-size: 10pt;
    margin: 0 0 0 2px;
    overflow: visible;
}

.nsgb.general .highlight {
    padding: 13px 0 20px;
}

.nsgb.general .highlight_container {
    margin-top: 20px;
}

.nsgb.business .highlight {
    min-height: 275px;
}

.nsgb .highlight:first-child {
    margin-left: 0;
}

.nsgb .highlight.gray {
    border-bottom: 3px solid #ccc;
    position: relative;
    overflow: visible;
}

/*.nsgb .highlight.gray:before {
    content: "";
    background-image: url(/images/coming-soon.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    width: 250px;
    height: 126px;
    top: 0px;
    left: -40px;
    -moz-transform: rotate(-20deg);
    -webkit-transform: rotate(-20deg);
    -o-transform: rotate(-20deg);
    -ms-transform: rotate(-20deg);
    transform: rotate(-20deg);
    z-index: 999;
    overflow: visible;
}*/

.nsgb .highlight_text {
    color: #333;
    padding-bottom: 30px;
    height: auto;
    line-height: 18px;
}

.nsgb .highlight.gray .highlight_text {
    color: #ccc;
}

.nsgb.business .highlight .highlight_text {
    padding-bottom: 52px;
}

.nsgb.business .highlight.two-lines .highlight_text {
    padding-bottom: 58px;
}

/*.nsgb.business .highlight.two-lines .highlight_text {
    padding-bottom: 17px;
}*/

.nsgb .highlight_text img {
    display: block;
    margin: auto;
}

/*.nsgb.business .highlight_text i {
    margin-bottom: 45px;
}*/

.nsgb .highlight.gray .highlight_text i {
    color: #ddd;
}

.nsgb.business .highlight.two-lines .highlight_text i {
    margin-bottom: 20px;
}

.nsgb.business .highlight_text h3 {
    font-size: 30px;
    margin-bottom: 24px;
}

.nsgb.business .highlight_text h4 {
    margin-top: 15px;
}

.nsgb.business .highlight input {
    margin-top: 8px;
}

.nsgb .highlight.gray .highlight_text a {
    color: #ddd;
}

.nsgb.business .highlight ul,
.nsgb.business .highlight ol {
    list-style-position: inside;
    padding: 0;
}

.nsgb.business .highlight ul {
    margin-top: 30px;
}

    .nsgb.business .highlight ul li {
        list-style: none;
        margin-bottom: 20px;
    }

.nsgb.business .highlight li {
    margin-bottom: 5px;
}

.nsgb .highlight.gray a#downloadAgreement {
    background-color: #bbb;
    color: #ddd;
}

.nsgb .highlight a.button.navy,
.nsgb .highlight a.button.orange {
    padding: 15px 20px;
    ;
    /*margin-bottom: 25px;*/
}

.nsgb.business .highlight a.button.navy {
    position: absolute;
    bottom: 23px;
    padding: 15px 0;
    width: 136px;
    left: 50%;
    margin-left: -68px;
}

.nsgb.business a.button.navy.large {
    width: 200px;
    margin-left: -100px;
}




.information-section .info {
    margin-bottom: 200px;
    background-color: white;
    padding: 20px 35px;
}

.information-section .header-text {
    text-align: left;
    font-size: 18px;
    font-weight: bold;
    color: #39B6C3;
    margin: 15px 0 7px 0;
}

.information-section h2 {
    font-weight: 700;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 20px;
    margin: 0 0 18px;
}
.information-section p {
    margin: 0 0 40px;
}
.information-section li {
    font-size: 14px;
}


.information-section h5 {
    font-size: 16px;
    margin: 20px 0 7px 0;
}

.information-section .plans-table {
    font-size: 14px;
    margin-bottom: 35px;
}

    .information-section .plans-table th {
        font-size: 14px;
        color: #ffffff;
    }




/* NSGB UPDATES
------------------------------------------------- */
.nsgb .section-header {
    text-align: center;
}

.faq-section {
    margin: 40px 0 80px;
}

.faq-section h1 {
    margin-top: 0;
    text-align: center;
}

.faq-header-container {
    text-align: left;
}

.faq-header {
    font-size: 42px;
    font-weight: 300;
    color: #202e39;
    padding-bottom: 15px;
    border-bottom: 1px solid #d3d3d3;
    margin: 35px 0 35px;
    display: inline-block;
}

.information-section .faq-table {
    text-align: center;
}

.information-section .faq-table p {
    text-align: left;
}

.faq-table p a {
    font-size: 13px;
    font-weight: 400;
}


.intro .six.columns {
    border-left: 3px solid #55BC75;
    padding-left: 25px;
    min-height: 250px;
    background: #fff;
    padding: 20px;
}

.intro h3 {
    margin-top: 0;
}

.new-subscribers {
    margin: 60px 0 80px;
}

.intro-text {
    font-size: 22px;
}

.wifi-voice, .cable, .faq-section {
    border-bottom: 1px solid #202e39;
    min-height: 250px;
    background: #fff;
    padding: 30px 25px;
    margin: 40px 0;
}
.wifi-voice .feature-title,
.cable .feature-title,
.faq-section .feature-title {
    margin-top: 20px;
}

.wifi-voice .section-header, .cable .section-header {
text-align: center;
margin: 0 0 35px;
}

.wifi-voice .section-header img,
.cable .section-header img {
    display: inline-block;
    vertical-align: top;
    max-width: 200px;
}
.wifi-voice .section-header img.laptop-desktop-phone {
    max-width: 375px;
    vertical-align: middle;
}

.wifi-voice .section-header h2,
.cable .section-header h2 {
    display: inline-block;
    vertical-align: top;
    font-weight: 300;
    font-size: 42px;
    margin-left: 15px;
}
.guam .wifi-voice .section-header h2 {
    vertical-align: middle;
}

.cable .section-header h2 {
    position: relative;
    top: 5px;
}

.subscriber-icons {
    text-align: center;
    margin: 40px 0 0;
}

.subscriber-icons .half {
    float: none;
    display: inline-block;
    vertical-align: top;
    width: 35%;
    background: #ccf0ff;
    padding: 20px;
    margin: 0 40px;
}

.subscriber-icons h5 {
    font-size: 20px;
    margin: 0 0 20px;
    font-weight: 700;
    text-transform: none;
    font-family: 'Source Sans Pro', sans-serif;
}

.subscriber-icons img {
    height: 70px;
}
.subscriber-icons .icon-agreement {
    height: 90px;
}
.subscriber-icons p {
    margin-top: 20px;
}

.cable-button {
    text-align: center;
    margin: 40px 0;
}
.cable-button .button {
    margin: 10px 20px;
}

.cable {
    text-align: center;
}


.small-buttons {
    text-align: center;
    margin: 50px 0 25px;
}

.button.gray {
    background: #dadada;
    color: #555;
    font-weight: bold;
    font-size: 13px;
    transition: .3s all;
    text-decoration: none;
}

    .button.gray:hover {
        background: #c0c0c0;
    }

.small-buttons .button {
    margin: 0 0 15px;
}

    .small-buttons .button i {
        margin-right: 8px;
    }


/* Checkboxes
------------------------------------------------- */
input[type=checkbox].css-checkbox {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

    input[type=checkbox].css-checkbox + label.css-label {
        padding-left: 20px;
        height: 15px;
        display: inline-block;
        line-height: 15px;
        background-repeat: no-repeat;
        background-position: 0 0;
        font-size: 12px;
        vertical-align: middle;
        cursor: pointer;
    }

    input[type=checkbox].css-checkbox:checked + label.css-label {
        background-position: 0 -15px;
    }


.css-label {
    padding-left: 10px;
    background-image: url('../images/lite-cyan-check.png');
}


.learn_more {
    margin-bottom: 100px;
}

.contact_page {
    margin-bottom: 100px;
}

.header_text a:hover {
    opacity: 0.7;
}
/* Drop Down List
------------------------------------------------- */
.styled-select select {
    background: transparent;
    padding: 5px;
    /*font-family: arsenalregular;*/
    font-family: 'Open Sans';
    color: #536C69;
    font-size: 13px;
    line-height: 1;
    border: 0;
    border-radius: 0;
    height: 34px;
    -webkit-appearance: none;
}

.styled-select {
    height: 34px;
    overflow: hidden;
    background: url('../images/arrow_ddl.jpg') no-repeat right #fff;
    border: 1px solid #DEDEDE;
}

/*
.styled-select select
{
  font-family: arsenalregular;
  color: #536C69;
  background: transparent;
  -webkit-appearance: none;
  width: 290px;
  font-size: 20px;
  border: 1px solid #DEDEDE;
  height: 39px;
  padding: 5px 55px 5px 5px;
}

.styled-select
{
  width: 271px;
  height: 41px;
  overflow: hidden;
  background: url('../images/arrow_ddl.jpg') no-repeat right #FFF;
  border-right: 1px solid #DEDEDE;
}

.styled-select select
{
  padding-right: 0px;
  vertical-align: top !important;
  text-align: left;
  line-height: 20px;
  height: auto;
}

.styled-select
{
  border-bottom: 0px solid #DEDEDE;
}

.styled-select option
{
  border-bottom: 1px solid #DEDEDE;
}
*/

/* MISC
----------------------------------------------------------*/

.clear {
    clear: both;
}

.home_testimonial_logos {
    position: absolute;
    left: 50%;
    margin-left: -256px;
    margin-top: -50px;
}

    .home_testimonial_logos td {
        padding-left: 5px;
        padding-right: 5px;
    }

.homepage_lists {
    width: 950px;
    margin: 35px auto 50px auto;
}

    .homepage_lists .column1 {
        width: 36%;
        float: left;
    }

    .homepage_lists .column2 {
        width: 36%;
        float: left;
    }

    .homepage_lists .column3 {
        width: 28%;
        float: left;
        margin: 70px 0 0 0;
    }

.testimonial_text_table {
    width: 405px;
}

.homepage_get_started_wrap {
    width: 580px;
    margin: 0px auto;
}

.learn_more .homepage_get_started_wrap {
    padding: 80px 0 0 0;
}

.homepage_get_started_wrap .column1 {
    width: auto;
    float: left;
    text-align: right;
}

.homepage_get_started_wrap .column2 {
    width: auto;
    float: left;
    margin: 30px 0 0 20px;
}

#terms_conditions_msg {
    padding: 25px;
    font-size: 14px;
    width: 100%;
    max-width: 1000px;
    height: 500px;
    overflow-x: hidden;
}

#privacy_policy_msg {
    padding: 25px;
    font-size: 14px;
    width: 100%;
    max-width: 1000px;
    height: 500px;
    overflow-x: hidden;
}

.landing_pages {
    width: 950px;
    margin: 45px auto 50px auto;
}

    .landing_pages .column1 {
        width: 50%;
        float: left;
    }

    .landing_pages .column2 {
        width: 50%;
        float: left;
    }

.flexibility_security_wrap {
    width: 950px;
    margin: 0px auto;
}

    .flexibility_security_wrap .item {
        width: 50%;
        float: left;
        clear: right;
        height: 170px;
    }

    .flexibility_security_wrap .right {
        text-align: right;
    }

    .flexibility_security_wrap .item .column1 {
        width: 120px;
        text-align: left;
        float: left;
    }

    .flexibility_security_wrap .item .column2 {
        width: 300px;
        float: left;
    }

.contact_wrap {
    width: 950px;
    margin: 0px auto 50px auto;
}

    .contact_wrap .column1 {
        width: 400px;
        float: left;
        text-align: left;
    }

    .contact_wrap .column2 {
        width: 550px;
        float: left;
        text-align: left;
    }

.sign_up_plans_wrap {
    width: 935px;
    margin: 0 auto;
}

.wifi_options_wrap {
    text-align: center;
    width: 900px;
    margin: 0px auto;
}

    .wifi_options_wrap .column1 {
        text-align: center;
        width: 450px;
        font-size: 10pt;
        float: left;
    }

    .wifi_options_wrap .column2 {
        font-size: 10pt;
        text-align: center;
        width: 450px;
        float: left;
    }

        .wifi_options_wrap .column2 .option_table {
            width: 350px;
            margin: 10px auto 0 auto;
        }

.sign_up_form_wrap {
    font-size: 12pt;
    text-align: center;
    width: 900px;
    margin: 0px auto;
}

    .sign_up_form_wrap .column1 {
        width: 425px;
        float: left;
        margin: 0 50px 0 0;
        text-align: left;
    }

    .sign_up_form_wrap .column2 {
        width: 425px;
        float: left;
        text-align: left;
    }

.billing_information_wrap {
    width: 900px;
    text-align: center;
    margin: 0px auto;
    clear: both;
}

.credit_card_wrap {
    width: 700px;
    margin: 0px auto;
}

    .credit_card_wrap .column1 {
        float: left;
        margin: 0 10px 0 0;
    }

    .credit_card_wrap .column2 {
        float: left;
        margin: 0 10px 0 0;
    }

    .credit_card_wrap .column3 {
        float: left;
    }

        .credit_card_wrap .column2 .styled-select, .credit_card_wrap .column3 .styled-select {
            margin-top: 2px;
        }

.sign_up_success_wrap {
    margin: 25px auto 50px auto;
    width: 375px;
}

.sign_up_success_column {
    width: 375px;
}

.green_background {
    background-color: #91EFAE;
    width: 3px;
}

.employee_ssid_wrap {
}

    .employee_ssid_wrap span {
    }

    .employee_ssid_wrap .txt_input {
        width: 135px;
        margin-left: 10px;
    }

    .employee_ssid_wrap .password {
        margin-left: 14px;
    }

.customer_ssid_wrap {
    width: 100%;
    clear: both;
    margin: 20px auto 0px auto;
    padding: 30px 0 0 0;
}

    .customer_ssid_wrap span {
    }

    .customer_ssid_wrap .txt_input {
        width: 140px;
        margin-left: 10px;
    }

.homepage_testimonial_bg img {
    margin: 0px auto;
    display: block;
}

.navy_locations {
    width: 1200px;
    max-width: 100%;
    margin: 0px auto;
    text-align: center;
    margin-bottom: 100px;
}

    .navy_locations select {
        margin: 10px;
        padding: 5px 15px;
        border-radius: 30px;
        -webkit-appearance: none;
        -moz-appearance: none;
        background: transparent;
        background-image: url("../images/icons/chevron-down-solid.svg");
        background-repeat: no-repeat;
        background-size: 12px;
        background-position: calc(100% - 12px) 55% !important;
        background-color: var(--darkteal);
        border: none;
        color: #fff;
        cursor: pointer;
        width: 300px;
    }


    .navy_locations .controls {
        margin-bottom: 25px;
    }

    .navy_locations .control_outputs .output_header {
        height: 73px;
        width: 100%;
        background: var(--mediumblue);
        color: #FFFFFF;
        font-size: 18px;
        display: flex;
        align-items: center;
    }

        .navy_locations .control_outputs .output_header .column1,
        .navy_locations .control_outputs .output_header .column2,
        .navy_locations .control_outputs .output_header .column3,
        .navy_locations .control_outputs .output_header .column4 {
            width: 100%;
            margin: 12px 15px;
            float: left;
        }

    .navy_locations .control_outputs .body {
        height: 70px;
        width: 100%;
        color: #536c69;
        font-size: 14px;
        line-height: 1.8;
    }

        .navy_locations .control_outputs .body .column1,
        .navy_locations .control_outputs .body .column2,
        .navy_locations .control_outputs .body .column3,
        .navy_locations .control_outputs .body .column4 {
            width: 100%;
            margin: 12px 15px;
            float: left;
        }

    .navy_locations .control_outputs .output_column1 {
        width: 25%;
        float: left;
        z-index: 100;
    }

    .navy_locations .control_outputs .output_column2 {
        width: 25%;
        float: left;
        z-index: 50;
    }

    .navy_locations .control_outputs .output_column3 {
        width: 25%;
        float: left;
        z-index: 50;
    }

    .navy_locations .control_outputs .output_column4 {
        width: 25%;
        float: left;
        z-index: 50;
    }

.faq-section {
    background: #fff;
    padding: 25px 35px;
}


.faq-section li {

    margin: 0 0 6px;
    list-style-type: none;
}



/* ------------------ GUAM ------------------- */
/* ------------------------------------------- */
/* ------------------------------------------- */
/* ------------------------------------------- */

.guam-plan-table {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}
.guam-plan-table thead tr,
.guam-plan-table thead tr:nth-child(even),
.guam-plan-table thead tr:nth-child(odd) {
    background-color: #015274;
}
.guam-plan-table thead td {
    color: #fff;
}


.guam-plan-table tr:nth-child(odd) {
    background-color: #fff;
}

.guam-plan-table tr:nth-child(even) {
    background-color: #f2f2f2;
}
.guam-plan-table tbody td:nth-child(2) {
    width: 200px;
    border-left: 1px solid #ddd;
    text-align: center;
}

.guam-plan-table thead th:nth-child(2) {
    width: 200px;
    text-align: center;
}
.guam-plan-table th {
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    padding: 8px 20px;
    text-align: left;
    white-space: normal;
}

.guam-plan-table td {
    color: #1A1A1A;
    padding: 8px 20px;
    text-align: left;
    white-space: normal;
}

#package1, #package2, package3 {
    padding: 35px;
}
.channel-table thead tr,
.channel-table thead tr:nth-child(even),
.channel-table thead tr:nth-child(odd) {
    background-color: #015274;
}
.channel-table thead tr h3 {
    color: #fff;
    margin: 0;
}
.channel-table thead td {
    color: #fff;
}


.channel-table tr:nth-child(odd) {
    background-color: #fff;
}

.channel-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.channel-table th {
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    padding: 8px 0 8px 20px;
    text-align: left;
}

.channel-table td {
    color: #1A1A1A;
    padding: 8px 0 8px 20px;
    text-align: left;
    white-space: wrap;
    font-size: 14px;
}

@media (max-width: 1030px) and (min-width: 600px) {
    @-viewport {
        width: 768px;
    }

    #mnu-default {
        margin-left: 0px;
    }

    .header_menu {
        width: 345px;
        float: right;
    }

    .contact_wrap .column1 .social {
        font-size: 0.7em;
    }

    .contact_wrap .column2 table {
        width: 100%;
    }

    .header_content {
        width: 100%;
    }

    .header_text {
        width: 43%;
    }

    .homepage_feature_content {
        width: 100%;
    }

    .separator_gray {
        width: 65%;
    }

    .home .highlight_container,
    .nsgb.sign-up .highlight_container {
        width: 768px;
    }

    .home .highlight,
    .nsgb.sign-up .highlight {
        width: 228px;
    }

    .home .highlight_title {
        width: 100%;
    }

    .home .highlight_text,
    .nsgb.sign-up .highlight_text {
        width: 218px;
        font-size: 8pt;
    }

    .home .highlight img,
    .nsgb.sign-up .highlight img {
        margin-left: 93px !important;
    }

    .homepage_get_started_content {
        width: 100%;
    }

    .homepage_testimonial_content {
        width: 100%;
        height: 300px !important;
    }

    .separator_green {
        width: 78%;
    }

    .homepage_testimonial_customers {
        width: 100%;
    }

        .homepage_testimonial_customers table {
            margin: 0px auto;
        }

        .homepage_testimonial_customers .testimonial_text_table {
            width: 65%;
        }

    .green_background {
        background: none;
    }

    .homepage_lists {
        width: 100%;
        font-size: 13pt;
    }

        .homepage_lists .column1, .homepage_lists .column2 {
            width: auto;
            margin-left: 125px;
        }

        .homepage_lists .column3 {
            width: 100%;
            text-align: center;
            margin: 20px 0 0 0;
        }

            .homepage_lists .column3 .blue_btn {
                margin: 0px auto;
            }

    .homepage_text {
        font-size: 15pt;
    }

    #privacy_policy_msg, #terms_conditions_msg {
        width: 81%;
    }

    .feature_content {
        width: 100%;
    }

    h1.feature_title {
    }

    .contact_wrap {
        width: 100%;
    }

        .contact_wrap .column1 {
            width: 39%;
            padding: 0 0 0 20px;
        }

        .contact_wrap .column2 {
            width: 58%;
        }

            .contact_wrap .column2 .txt_input {
                width: 90% !important;
            }

    .landing_pages {
        width: 100%;
    }

        .landing_pages .column1 img {
            width: 100%;
        }

    .learn_more_plugnplay_content {
        width: 100%;
    }

    .flexibility_security_wrap {
        width: 100%;
    }

        .flexibility_security_wrap .item {
            width: 43%;
            padding: 0 0 0 5%;
            height: 33%;
        }

            .flexibility_security_wrap .item .column1 {
                margin: 0px auto;
                padding: 0 0 20px 0;
                height: 80px;
            }

        .flexibility_security_wrap .right .column1 {
            padding: 0px 60px 20px 0;
        }

        .flexibility_security_wrap .item .column2 {
            width: 100%;
        }

    .learn_more_flexibility_title, .learn_more_flexibility_text {
        text-align: center;
    }

    .learn_more_logo {
        width: 100%;
        margin-left: -80px;
    }

    .sign_up_plans_wrap {
        width: 100%;
    }

        .sign_up_plans_wrap .highlight, .sign_up_plans_wrap .highlight_big {
            margin-right: 6px !important;
        }

        .sign_up_plans_wrap .highlight {
            width: 33%;
        }

        .sign_up_plans_wrap .highlight_big {
            width: 33%;
        }

    .highlight_title {
        width: 100%;
    }

    .highlight_text {
        width: 94%;
    }

    .wifi_options_wrap {
        width: 91%;
    }

        .wifi_options_wrap .column1, .wifi_options_wrap .column2 {
            padding: 0 15% 30px 15%;
            width: 70%;
        }

    .sign_up_form_wrap {
        width: 91%;
    }

        .sign_up_form_wrap .column1, .sign_up_form_wrap .column2 {
            width: 42%;
        }

        .sign_up_form_wrap h2 {
            font-size: 1.3em;
        }

    .billing_information_wrap {
        width: 91%;
    }

    .sign_up_success_wrap {
        width: 78%;
    }

        .sign_up_success_wrap img {
            margin: 0 40px;
        }

    .learn_more .feature_content img {
        display: block;
        margin: 20px auto !important;
    }

    .home .highlight img {
        margin: -22px 0 0 95px !important;
    }

    .home .homepage_text {
        padding: 30px 20px 0 20px;
    }

    .feature_content.location .region.world,
    .feature_content.location .region.us {
    }

    .feature_content.location .region {
        float: none;
        display: block;
        width: 100%;
        margin: 5px auto 50px;
        max-width: 100%;
    }

    .choose-region {
        display: none;
    }
}

@media (max-width: 600px) {
    @-viewport {
        width: 320px;
    }

    .home .highlight_container,
    .nsgb.sign-up .highlight_container {
        width: 100%;
    }

    body {
        width: 100%;
    }

    .header {
        height: 200px;
    }

    .header_content {
        width: 100%;
        text-align: center;
        height: 200px;
    }

    .header_logo {
        float: none;
        padding-top: 50px;
        width: 100%;
        text-align: center;
    }

        .header_logo img {
            width: 160px;
        }

    .header_text {
        margin-top: -115px;
        width: 100%;
        text-align: center;
        padding: 0;
    }

    .header #contact {
        margin-right: 10px;
    }

    .header #default {
        display: none;
    }

    .homepage_text h3 {
        font-size: 1.2em;
        padding: 0 30px;
    }

    .homepage_text .green {
        font-style: italic;
    }

    .homepage_text .small_text {
        padding: 0 20px;
    }

    .homepage_text .btn {
        margin-top: -30px;
    }

    .homepage_feature_content {
        width: 93%;
    }

    h1.feature_title {
        font-size: 18pt;
    }

    .homepage_text {
        font-size: 12pt;
        padding: 25px 0 0 0;
    }

    .homepage_lists {
        width: 72%;
        margin: 35px auto 50px auto;
        padding: 0 35px 0 35px;
    }

        .homepage_lists .column1 {
            width: 100%;
        }

        .homepage_lists .column2 {
            width: 100%;
        }

        .homepage_lists .column3 {
            width: 100%;
            margin: 30px 0 0 0;
        }

        .homepage_lists ul {
            margin: 0 0 0 0;
        }

    .nsgb .highlight {
        margin: 0 0 20px 8px !important;
    }

    .nsgb.sign-up .highlight {
        margin-bottom: 50px !important;
    }

    .contact_wrap .column2 table {
        margin: 0 auto;
    }

    .homepage_testimonial_content {
        width: 93%;
    }

    .separator_green {
        width: 68%;
    }

    .homepage_testimonial_customers {
        width: 93%;
        background-image: none;
    }

    .homepage_testimonial_content {
        height: 280px !important;
    }

    .homepage_testimonial_text {
        width: 78%;
    }

    .testimonial_text_table {
        width: 88%;
    }

    .testimonial_title_table {
        width: 91%;
        padding: 0 15px;
    }

    .home_testimonial_logos {
        display: none;
    }

    .homepage_get_started_content {
        width: 94%;
        padding: 30px 0 0 0;
    }

    .homepage_get_started_wrap {
        width: 100%;
        margin: 0 0 0 0;
        text-align: center;
    }

    .homepage_get_started_wrap .column1 {
        width: 100%;
        float: left;
        text-align: center;
    }

    .homepage_get_started_wrap .column2 {
        width: 100%;
        text-align: center;
        float: left;
        margin: 30px 0 0 0;
    }

    #terms_conditions_msg {
        width: 100%;
        font-size: 11px;
    }

    #privacy_policy_msg {
        font-size: 11px;
        width: 100%;
    }

    .separator_gray {
        width: 67%;
    }

    .feature_content {
        width: 88%;
    }

    .feature_text {
        padding: 70px 0 0 0;
    }

    .landing_pages {
        width: 94%;
    }

        .landing_pages .column1 {
            width: 90%;
            float: left;
        }

            .landing_pages .column1 img {
                width: 100%;
                float: left;
            }

        .landing_pages .column2 {
            width: 90%;
            float: left;
        }

    .learn_more_plugnplay_content {
        width: 88%;
    }

    .learn_more_plugnplay_bg {
        height: 94%;
    }

    .flexibility_security_wrap {
        width: 94%;
    }

        .flexibility_security_wrap .item {
            float: left;
            width: 94%;
            text-align: center;
        }

            .flexibility_security_wrap .item .column2 {
                width: 56%;
            }

                .flexibility_security_wrap .item .column2 .separator_gray_learn_more {
                    width: 56%;
                }

        .flexibility_security_wrap .right {
            text-align: center;
        }

        .flexibility_security_wrap .high {
            height: 270px;
        }

    .learn_more_map {
        width: 100%;
        height: 167px;
    }

    .learn_more_logo {
        width: 88%;
        height: 44px;
    }

    .contact_wrap {
        width: 94%;
        margin: 0px auto 50px auto;
    }

    .social {
        display: none;
    }

    .contact_wrap .column1 {
        width: 100%;
        float: left;
        text-align: center;
    }

    .contact_wrap .column2 {
        width: 100%;
        float: left;
        text-align: center;
    }

        .contact_wrap .column2 .txt_input, .contact_wrap .column2 textarea {
            width: 270px !important;
        }

    .pricing_plan_title {
        margin: -20px 0 0 0 !important;
    }

    .sign_up_plans_wrap {
        width: 93%;
    }

    .sign_up_plans_container {
        height: 820px;
    }

    .package_info_header {
        margin: -10px 0 0 0 !important;
    }


    .wifi_options_wrap {
        width: 93%;
    }

        .wifi_options_wrap .column1 {
            width: 90%;
        }

        .wifi_options_wrap .column2 {
            width: 90%;
        }

        .wifi_options_wrap .txt_input {
            width: 90% !important;
        }

        .wifi_options_wrap .wifi_padding {
            width: 20px !important;
        }

        .wifi_options_wrap .column2 .option_table {
            width: 93%;
        }

    .sign_up_form_wrap {
        width: 93%;
    }

        .sign_up_form_wrap .column1 {
            width: 84%;
        }

            .sign_up_form_wrap .column1 .sign_up_input_long {
                width: 84%;
            }

            .sign_up_form_wrap .column1 .sign_up_input_medium {
                width: 49%;
            }

        .sign_up_form_wrap .column2 {
            width: 84%;
        }

            .sign_up_form_wrap .column2 .sign_up_input_long {
                width: 84%;
            }

            .sign_up_form_wrap .column2 .sign_up_input_medium {
                width: 49%;
            }

    .billing_information_wrap {
        width: 88%;
    }

        .billing_information_wrap h2 {
            width: 82%;
        }

    .credit_card_wrap {
        width: 88%;
    }

        .credit_card_wrap .sign_up_input_long {
            width: 84%;
        }

        .credit_card_wrap .month {
            width: 52% !important;
        }

    .sign_up_success_wrap {
        width: 94%;
    }

    .sign_up_success_column {
        width: 94%;
    }

    .sign_up_feature_text {
        margin: -20px 0 0 0 !important;
    }

    .learn_more .homepage_get_started_wrap {
        padding: 0 0 0 0;
    }

    .employee_ssid_wrap {
        width: 79%;
        margin-left: -24px;
        margin-top: 10px;
        margin-bottom: 20px;
    }

        .employee_ssid_wrap .txt_input {
            margin-left: 0px;
        }

    .customer_ssid_wrap .txt_input {
        margin-left: 0;
    }

    .homepage_testimonial_text h1 {
        font-size: 1.5em !important;
    }

    .learn_more .feature_content img {
        display: block;
        width: 88%;
        margin: 20px auto !important;
    }

    .home .homepage_text {
        padding: 30px 20px 0 20px;
        margin: 0 0 0 0;
    }

    .home .homepage_testimonial_bg .locations_img {
        width: 100%;
        margin: 70px 0 0;
    }


    .learn_more .navy_locations {
        width: 100%;
    }

        .learn_more .navy_locations .controls {
            height: 100px
        }

        .learn_more .navy_locations .control_outputs output_column1 {
            width: 100%;
            float: left;
            z-index: 100;
        }

        .learn_more .navy_locations .control_outputs output_column2 {
            width: 100%;
            float: left;
            z-index: 50;
        }

    .navy_locations .control_outputs .output_header .column1 {
        float: none;
        margin: 0 auto;
        padding: 15px 0;
    }

    .navy_locations .control_outputs .output_header .column2 {
        float: none;
        margin: 0 auto;
        padding: 15px 0;
    }

    .navy_locations .control_outputs .body .column1 {
        float: none;
        margin: 0 auto;
        padding: 15px 0;
    }

    .navy_locations .control_outputs .body .column2 {
        float: none;
        margin: 0 auto;
        padding: 15px 0;
    }
    .navy_locations .control_outputs .output_column3,
    .navy_locations .control_outputs .output_header .column3,
    .navy_locations .control_outputs .body .column3 {
        width: 100%;
        text-align: center;
    }
    .navy_locations .control_outputs .output_column4,
    .navy_locations .control_outputs .output_header .column4,
    .navy_locations .control_outputs .body .column4 {
        width: 100%;
        text-align: center;
    }

    .navy_locations .control_outputs .body {
        height: auto;
    }

    .navy_locations .control_outputs .output_column1 {
        width: 100%;
    }

    .navy_locations .control_outputs .output_column2 {
        clear: both;
        width: 100%;
    }

    .home {
        width: 100%;
    }

    .content_bg {
        width: 100%;
    }

    .content {
        width: 100%;
    }

    .navy_locations .controls {
        margin: 0 0 50px;
    }
    .navy_locations .controls select {
        width: 90%;
    }
    .feature_content.location .region.world,
    .feature_content.location .region.us {
    }

    .feature_content.location .region {
        float: none;
        display: block;
        width: 100%;
        margin: 5px auto 50px;
        max-width: 100%;
    }

    .choose-region {
        display: none;
    }

    .feature_text.location {
        padding-top: 10px;
    }

    .nsgb .button-section,
    .nsgb.landing .button-section {
        width: 100%;
        margin-left: 0;
        margin-bottom: 25px;
    }

        .nsgb .button-section:last-child {
            margin-bottom: 0;
        }

    .nsgb.landing .button-links {
        margin-top: 15px;
    }


    .information-section .info {
        padding: 20px 3px;
    }


    .information-section th,
    .information-section .plans-table th,
    .information-section td {
        font-size: 12px;
        padding: 8px 0;
        text-align: center;
    }

    .nsgb .highlight:first-child {
        margin-bottom: 30px;
    }

    .nsgb .form-table {
        width: 90%;
    }

    .homepage_testimonial_content .top-buttons a,
    .homepage_testimonial_content .top-buttons a.gb-button {
        display: block;
        margin: 0 0 30px
    }
}

.normal-list li {
    list-style-type: auto;
}
