@charset "utf-8";

/*	CSS Document Written by by Front-End Developer's Team of StapleLogic (http://www.staplelogic.com)
*	In this file you will find all the classes used in site with proper comments.
*	This file is copyright to StapleLogic and no reproduction of this file is allowed without the prior written permission from StapleLogic
*	Version of file : V1.0
*/

/*-------Font-------*/
@import url('https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700');

/*----------------------------------Start Reset-------------------------------------*/
/**
 * VH and VW units can cause issues on iOS devices: http://caniuse.com/#feat=viewport-units
 * 
 * To overcome this, create media queries that target the width, height, and orientation of iOS devices. 
 * It isn't optimal, but there is really no other way to solve the problem. In this example, I am fixing 
 * the height of element `.foo` —which is a full width and height cover image.
 *
 * iOS Resolution Quick Reference: http://www.iosres.com/
 */

html, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, hgroup, menu, nav, section, summary, time, mark, audio, video, main {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    font-family: 'Ubuntu', sans-serif;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
    display: block;
}
html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}
nav ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}
/* change colours to suit your needs */
ins {
    background-color: #ff9;
    color: #000;
    text-decoration: none;
}
/* change colours to suit your needs */
mark {
    background-color: #ff9;
    color: #000;
    font-style: italic;
    font-weight: bold;
}
del {
    text-decoration: line-through;
}
abbr[title], dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
/* change border colour to suit your needs */
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #cccccc;
    margin: 1em 0;
    padding: 0;
}
input, select {
    vertical-align: middle;font-family: 'Ubuntu', sans-serif; outline:0;
}
a {
    text-decoration: none;
    font-family: 'Ubuntu', sans-serif;
    outline:0;
}
li {
    list-style: none;
}
input {
    border: none;
    cursor: auto;
    font-family: 'Ubuntu', sans-serif;
}
* {
    margin: 0;
    padding: 0;
}
a, button, a:active, button:active, a:focus, button:focus, a:hover, button:hover {
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
}
input, input:active, input:focus, input:hover, textarea:hover, textarea:active, textarea:focus, textarea {
    outline: none;
    -webkit-appearance: none;
}
textarea {
    resize: none;
    font-family: 'Ubuntu', sans-serif;
    box-shadow: 0 0 0;
}
img {
    max-width: 100%;
    height: auto;
    width: auto\9; /* ie8 */
    vertical-align: middle;
    outline: none;
    border: 0;
    -ms-interpolation-mode: bicubic;
}
p {
    color: #383838;
    font-size: 14px;
}
h1, h2, h3, h4, h5, h6 {
    font-style: normal;
    font-weight: normal;
    font-family: 'Ubuntu', sans-serif;
    color: #102747;
}
h3{font-size: 22px}
h2 {
    font-size: 30px;
    font-weight: 600;
}
.btn:focus, .btn:active:focus, .btn.active:focus {
    outline: none;
    outline-offset: 0;
}
option {
    padding: 3px 6px;
}
.clear{clear:both;}
/*----------------------------------Reset End-------------------------------------*/

/******** header css ********/
.top-header {
    background-color: #000;
}
.top-content {
    float: right;
    width: 40%;
}
.top-content li {
    color: #fff;
    float: left;
    font-size: 15px;
    padding: 8px 4px;
}
.top-content li a {
    color: #fff;
    transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
}
.top-content li a:hover{
    color: #FF9F39;
}
.main-header {
    background-color: #102747;
    border-bottom: 4px solid #fe9f38;
    /* border-top: 1px solid #fff; */
    padding: 22px;
}
.logo {
    float: left;
}
nav {
    float: right;
    width: auto;
}
nav ul li {
    float: left;
    line-height: 77px;
    margin: 0 3px;
}
nav ul li a {
    color: #fff;
    font-size: 19px;
    padding: 10px 14px;
    transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
}
nav ul li a:hover {
    background-color: #fe9f38;
}
a.active {
    background-color: #fe9f38;
}
/******** header css ends ********/

/******** banner css ********/
.banner {
    margin: 34px 0 0;
    position: relative;
}

.banner-area {
    /*display: table-cell;*/ 
    overflow: hidden;
    width: 55%;
    float: left;
}
.banner .banner-area li {
    position: relative;
}
.banner-area li .baner-content {
    position: absolute;
    top: 17%;
}
.baner-content {
    margin: 0 55px;
}
.baner-content h2 {
    color: #fff;
    margin: 24px 0;
}
.baner-content p {
    color: #fe9f38;
    font-size: 20px;
    line-height: 37px;
}
/******** banner css ends ********/

/******** tabs css ends ********/
.tab-area {
    /* display: table-cell; */
    height: 100%;
    /* vertical-align: middle; */
    width: 45%;
    float: right;
    /* max-height: 100%; */
    position: absolute;
    right: 0;
    top: 0;
}
.tab-area > ul {
    /*display: table;*/
    float: left;
    height: 100%;
    min-height: 100%;
    overflow: hidden;
    width: 100%;
}
.tab-area li {
    background-color: #102747;
    /* display: table; */
    float: left;
    height: 50%;
    margin: 0 0 1% 1%;
    text-transform: uppercase;
    width: 49%;
}
.tab-area li:nth-child(2n) {
    margin-right: 0;
}
.tab-area li a {
    color: #fe9f38;
    float: left;
    font-size: 25px;
    font-weight: 600;
    padding: 18% 25px;
    width: 100%;
    height: 100%;
}
.tab-area li a:hover span {
    background-color: #fff;
}
.btn-more {
    background-color: #ff9f39;
    color: #fff;
    float: left;
    font-size: 18px;
    margin: 15px 0 0;
    padding: 15px;
    transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
}
.btn-more:hover {
    background-color: #fff;
    color: #102747;
}
.tab-area li a p {
    float: left;
    text-align: center;
    font-size: 25px;
    margin: 12px 0 0;
    color:#fff;
}
.tab-area li a span{
    border-radius: 50%;
    float: right;
    height: 95px;
    width: 95px;
    transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    background-image: url("../images/sprit.png");
    background-color: #fe9f38;
    background-repeat: no-repeat;
    background-size: 400px auto;
}
.self-serve {
    background: #fe9f38 url("../images/sprit.png");

    background-position: 5px 14px;
}
.active-sim {
    background-position: -94px 14px;
}
.pay-bill {
    background-position: -194px 14px;
}
.location {
    background-position: -281px 14px;
}
/******** tabs css ends ********/
/******** service css ********/
.services {
    width: 100%;
    margin: 0 0 25px;
}
.services > ul {
    float: left;
    margin: 30px 0 0;
    width: 100%;
}
.services li {
    float: left;
    text-align: center;
    width: 25%;
}

.services li:hover {
    background-color: #feb260;
}
.services p {
    color: #102747;
    float: left;
    font-size: 20px;
    margin: 15px 0;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
}
.services a {
    float: left;
    padding: 60px 0;
    width:100%;
}
.heading {
    color: #102747;
    font-size: 32px;
    font-weight: 600;
    margin: 35px 0 0;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
}
.heading::before {
    background-color: #fe9f38;
    bottom: -6px;
    content: "";
    height: 4px;
    left: 50%;
    margin: 0 8px 0 -39px;
    position: absolute;
    width: 78px;
}
.heading.bill::before {
    left: 50%;
    margin: 0 0 0 -50px;
    width: 100px;
}
.head-contact {
    color: #fff;
    display: inline-block;
    font-size: 30px;
    font-weight: 500;
    margin: 15px 0 0;
    position: relative;
    text-transform: uppercase;
}
.head-contact::before {
    background-color: #fe9f38;
    bottom: -6px;
    content: "";
    height: 4px;
    left: 50%;
    margin: 0 8px 0 -60px;
    position: absolute;
    width: 120px;
}
.services span {
    border: 3px solid #102747;
    display: inline-block;
    float: none;
    height: 120px;
    vertical-align: middle;
    width: 120px;
    border-radius: 50%;
    background-image: url("../images/sprit.png");
    background-color: #fff ;
    background-repeat: no-repeat;
    background-size: 400px auto;
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
}
.insurance-bg {    
    background-position: 9px -70px;
}
.services li a:hover .insurance-bg{
    background-color: #102747 ;
    background-position: 9px -170px;
}
.wireless-bg {
    background-position: -90px -70px;
}
.services li a:hover .wireless-bg {
    background-color: #102747 ;
    background-position: -90px -170px;
}
.internet-bg {
    background-size: 390px auto !important;
    background-position: -191px -70px;
}
.services li a:hover  .internet-bg {
    background-color: #102747 ;
    background-position: -190px -164px; 
}
.home-phone-bg {
    background-position: 6px -267px; 
}
.services li a:hover .home-phone-bg{
    background-color: #102747 ;
    background-position: 6px -360px; 
}
.monitor-bg {
    background-position: -98px -259px;
}
.services li a:hover .monitor-bg {
    background-color: #102747 ;
    background-position: -98px -355px;
}
.tv-bg {
    background-position: -197px -263px;
}
.services li a:hover .tv-bg{
    background-color: #102747 ;
    background-position:  -197px -358px;
}
.tem-bg {
    background-position:  -292px -262px;
}
.services li a:hover .tem-bg {
    background-color: #102747 ;
    background-position:  -292px -358px;
}
.service-bg {
    background-position:  -294px -74px;
}
.services li a:hover .service-bg {
    background-color: #102747 ;
    background-position:  -294px -177px;
}
/******** service css ends ********/
/*.map {
    background-image: url("../images/map.png");
    background-size: cover;
    float: left;
    padding: 40px 0;
    width: 100%;
}*/

/******* bill-payment page css **********/
.bill-area {
    margin: 1% 2%;
    text-transform: uppercase;
    width: 96%;
}
.payment-area {
    background-color: #f6f6f6;
    border: 1px solid #102747;
    margin: 50px 0 55px;
    text-align: center;
}
.select-card .card-option label {
    font-size: 18px !important;
}
.payment-area input {
    height: 40px;
}
.country {
    float: left;
    margin: 0 0 30px;
    text-align: center;
    width: 100%;
}
.country h2 {
  color: #102747;
  font-size: 28px;
  font-weight: 500;
  margin: 20px 0 30px;
}
.country input[type="radio"], .country input[type="checkbox"], .select-card input[type="radio"], .select-card input[type="checkbox"] {
    display: none;
}
.country input[type="radio"]:checked + label.label-txt, .select-card input[type="radio"]:checked + label.label-txt {
    background-position: 0 -35px;
    height: 35px;
}
.card-option.pay-int {
  margin: 10px auto;
  text-align: left;
  width: 712px;
}
.currucy .select-card .card-option.pay-int label {
    margin: 0 30px 0 0;
}
/*.captcha-sec.ac-number > img {
    margin: 15px 0;
}*/
.captcha-sec img {
  border: 1px solid #ccc;
  border-radius: 4px;
}
.pay-button {
    border: 0 none;
    margin: 5px 18px 10px;
}
.pay-button button {
    background-color: #102747;
    border-radius: 6px;
    color: #fff;
    font-size: 22px;
    padding: 15px 45px;
    border: 2px solid #102747;
    transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
}
.pay-button button:hover,.button:hover {
    background-color: transparent;
    border: 2px solid #fe9f38;
    color: #fe9f38;
}
.ac-number.captcha-sec input {
    width: 242px;
}
.refresh-cap {
    float: left;
    margin: 0 0 15px;
    width: 100%;
}
.captcha-sec .refresh-cap a {
  color: #3b6fa9;
  float: left;
  width: 100%;
}
.captcha-sec .refresh-cap a:hover{
    text-decoration: underline;
}
.country input[type="radio"] + label.label-txt, .select-card input[type="radio"] + label.label-txt {
    -moz-user-select: none;
    background-image: url("../images/radio.png");
    background-position: 0 0;
    background-repeat: no-repeat;
    cursor: pointer;
    display: inline-block;
    font-size: 22px;
    height: 35px;
    line-height: 32px;
    margin: 0 35px;
    padding-left: 50px;
    transition: background-position 0s ease 0s;
    vertical-align: middle;
}
.ac-number .headings, .card-num .headings, .select-dob .headings, .currucy .headings {
    color: #102747;
    float: left;
    font-size: 22px;
    margin: 0 0 10px;
    width: 100%;
}
.card-num input {
    background: transparent none repeat scroll 0 0;
    border: 1px solid #999999;
    border-radius: 5px;
    color: #444;
    font-size: 18px;
    height: 40px;
    margin: 0 10px;
    padding: 8px 0 8px;
    text-align: center;
    /*width: 90px;*/
    width: 455px;
}
.card-num .headings {
  color: #102747;
  margin: 20px 0 30px;
}
.orr {
    margin: 30px 0;
}
.ac-number {
    margin: 0 0 25px;
}
.ac-number input {
    background: transparent none repeat scroll 0 0;
    border: 1px solid #999999;
    border-radius: 4px;
    color: #444;
    font-size: 18px;
    padding: 9px 0 8px;
    text-align: center;
    width: 455px;
}
.select-dob {
    margin: 50px 0;
}
.select-dob label {
    float: left;
    font-size: 18px;
    letter-spacing: 1px;
    margin: 0 0 15px;
    text-align: center;
    width: 100%;
}
.select-dob select {
    -moz-appearance: none;
    -webkit-appearance: none;
    border: 1px solid #999999;
    border-radius: 4px;
    color: #575757;
    font-size: 18px;
    height: 40px;
    margin: 0 10px;
    padding: 7px;
    width: 130px;
    background-color: transparent;
}
.yellow-text {
    color: #fe9f38;
}
.card-option label {
    margin: 0 10px 0 0;
    vertical-align: middle;
}
/*.dob {
  background: rgba(0, 0, 0, 0) url("../images/sprit.png") no-repeat scroll -470px -67px;
}*/
.dob {
    background-image: url("../images/sprit.png");
    background-position: -271px -74px;
    background-repeat: no-repeat;
}
.trade-mark {
  margin: 40px 0 26px;
}
/******* bill-payment page css ends **********/

/*********** plan css ********/
.lte-plans {
    margin: 34px 0 22px;
}
.plan-area {
    margin: 0 2%;
    width: 96%;
}
.plan-area h3 {
    margin: 25px 0 0 ;
}
.plan-area .heading.bill::before {
    bottom: -9px;
}
.plan-area span {
    float: left;
    font-size: 20px;
    font-weight: normal;
    margin: 15px 0;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
}
.plan-area hr {
    border-color: #102747;
    float: left;
    margin: 15px 0 0;
    width: 100%;
}

.plan {
    border: 1px solid #e2e2e2;
    float: left;
    margin: 0 1.3% 0 0;
    padding: 12px;
    width: 24%;
}
.plan-content {
    border: 1px solid #102747;
    border-radius: 5px 5px 0 0;
}
.plan-content li {
    border-bottom: 1px solid #ccc;
    float: left;
    height: 82px;
    padding: 5px 15px 8px;
    width: 100%;
}
.plan-content span {
    margin: -3px 0 10px;
    text-transform: capitalize;
}
.detail label {
    display: inline-block;
    vertical-align: middle;
}
.detail span {
    color: #fe9f38;
    float: right;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 3px;
    text-align: left;
    width: 70%;
    margin-top: 0;
}
.lte-plans .plan:nth-child(4n) {
    margin-right: 0;
}
.detail {
    float: left;
    width: 80%;
}
.detail.detail-first {
    margin: 20px 0;
}
.detail  p {
    color: #102747;
    float: left;
    width: 100%;
}
.icon {
    float: right;
    padding: 12px 0;
    width: 40px;
}
.button {
    background-color: #102747;
    border: 2px solid #102747;
    border-radius: 4px;
    color: #fff;
    float: left;
    font-size: 18px;
    margin: 20px 0 0;
    padding: 12px 0;
    text-align: center;
    width: 100%;
    transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
}
.plan-content h2 {
    background-color: #102747;
    color: #fff;
    font-size: 43px;
    font-weight: 500;
    padding: 5px 0 2px;
    text-align: center;
}
.plan-content sup {
    font-size: 25px;
    vertical-align: top;
}
.all-plan {
    margin: 10px 0 30px;
    text-transform: uppercase;
}
.all-plan h3 {
    background-color: #102747;
    color: #fff;
    float: left;
    padding: 9px 15px;
    width: 400px;
}
.plan-info {
    border: 1px solid #102747;
    float: left;
    margin: 1px 0 0;
    padding: 15px 15px;
    width: 65%;
}
.plan-info span {
    background-image: url("../images/sprit.png");
    background-position: -470px -67px;
    background-repeat: no-repeat;
    height: 28px;
    margin: 0 15px 0px 0;
    width: 29px;
}
.plan-info li {
    font-size: 20px;
    font-weight: 300;
    padding: 14px 0;
}
.all-plan h3 {
    background-color: #102747;
    color: #fff;
    float: left;
    padding: 9px 15px;
    text-transform: uppercase;
    width: 400px;
}
.terms {
    margin: 0 0 50px;
    float: left;
}
.terms .term-con span {
    float: right;
    font-size: 28px;
    margin: -5px 0 0;
    width: 20px;
}
.btn.term-con {
    background-color: #102747;
    color: #fff;
    cursor: pointer;
    float: left;
    font-size: 20px;
    font-weight: normal;
    margin: 0 0 1px;
    padding: 9px 30px;
    text-decoration: none;
    text-transform: uppercase;
    width: 400px;
}
.term-condition {
    background: #fff none repeat scroll 0 0;
    border: 1px solid #102747;
    float: left;
    padding: 15px;
    text-transform: uppercase;
    width: 100%;
}
.term-condition h5 {
    margin: 0 0 15px;
    font-size: 16px;
    font-weight: bold;
}
.term-condition b {
    float: left;
    margin: 0 10px 14px 0;
}
.term-condition p {
    font-size: 16px;
    line-height: 28px;
    margin: 15px 0;
}


.item-dtl {
    border-collapse: separate;
    border-spacing: 1px;
    width: 100%;
}
.payment-detail {
    border: 1px solid #102747;
    margin: 50px 0 55px;
    padding: 0 0 40px;
    width: 100%;
}
.thank-you .green {
    color: #04d304;
}
.thank-you h2 {
    margin: 18px 0; font-weight: 500;
}
.center {
    text-align: center;
    width: 100%;
}
.thank-you .headings {
    color: #102747;
    float: left;
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 25px;
    width: 100%;
}
.trans-detail .headings {
    margin-top: 24px;
    border-bottom: 1px solid;
}
/*.thank-you .trans-receipt {
  margin: 0 2%;
  width: 96%;
}*/
.trans-receipt {
    border-top: 1px solid #102747;
    float: left;
    margin: 0 1%;
    padding: 5px;
    width: 98%;
}
.trans-receipt .align-left {
    float: left;
}
.align-right {
    float: right;
}
.services-buttons {
    border: 1px solid #102747;
    border-radius: 5px;
    color: #102747;
    display: inline-block;
    font-size: 30px;
    margin: 20px 0 0;
    min-width: 210px;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease 0s;
}
.pdf-print {
    background-color: #fe9f38;
    border: 1px solid #fe9f38;
    color: #fff;
}
.services-buttons:hover {
    background-color: transparent;
    border-color: #fe9f38;
    color: #fe9f38;
}
.reciept-head {
    margin: 40px 15px 0;
}
.reciept-logo {
    border-bottom: 2px solid #102747;
    padding: 0 0 10px;
}
.reciept-head img {
    width: 100px;
}
.reciept-head p {
    color: #102747;
    font-size: 17px;
    line-height: 27px;
    margin: 15px 0;
}
.pmnt-method {
    margin: 5px 0;
    width: 60%;
}
.trans-detail table b {
    float: left;
    text-align: right;
    width: 50%;
    color: #102747;
}
.pmnt-method span {
    float: left;
    margin: 0 15px;
}
.item-dtl td {
    color: #686868;
    font-size: 22px;
    padding: 8px 0;
}




/*********** plan css end ********/
.alert-danger,.alert-success {
    background: #f2dede none repeat scroll 0 0;
    border-color: #ebccd1;
    border-radius: 4px;
    color: #a94442;
    font-size: 20px;
    margin: 15px;
    padding: 15px;
    text-align: center;
    width: auto;
    line-height: 32px;
    font-weight: 300;
}
.alert-success {
    background-color: #58c866;
    border-color: #fff;
    color: #fff;
}
.t-redirect {
    color: #3399ff;
    text-decoration: underline;
    transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
}
.t-redirect:hover {
    color: #4fb5ff;
}
/*********** contact css ********/
.page-content-wrapper {
    color: #102747;
    float: left;
    font-size: 18px;
    margin: 0;
    padding: 6px 30px;
    width: 50%;
}
.contact-page .map-area iframe {
    border-radius: 10px;
    height: 306px;
    width: 100%;
}
.contact-page .map-area {
    float: right;
    margin: 0 0px 0 0;
    width: 48%;
}
.contact-main .bottom-footer {
    bottom: 0;
    position: absolute;
}
.page-content-wrapper h3 {
    color: #102747;
    font-size: 28px;
    font-weight: 500;
    margin: 13px 0 0;
    text-align: left;
    text-transform: uppercase;
}
.icons-line {
    font-size: 16px;
    line-height: 25px;
    margin: 0 0 5px;
}
.page-content-wrapper h4 {
    color: #102747;
    font-size: 30px;
    font-weight: 400;
    margin: 0;
    padding: 30px 0 0;
    text-align: left;
    text-transform: uppercase;
}
.contact-page .head-contact::before {
    left: 64px;
}
.contact-page {
    background-color: #eee;
    height: 306px;
    left: 2%;
    margin: -125px 0 0;
    position: absolute;
    top: 50%;
    width: 96%;
    z-index: -1;
}
/*********** contact css end ********/

/************ footer ****************/
.bottom-footer {
    background-color: #102747;
    float: left;
    padding: 0 15px;
    width: 100%;
    margin: 1px 0 0;
}
.bottom-footer ul {
    float: left;
}
.bottom-footer li {
    float: left;
    padding: 45px 0;
}
.bottom-footer li a {
    border-right: 1px solid #fff;
    color: #fff;
    font-size: 16px;
    padding: 0 15px;
    transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
}
.bottom-footer .social a:hover {
    opacity: .6;
}
.bottom-footer li a:hover,.bottom-footer li a.active {
    color: #FF9F39;
}
.bottom-footer li a.active{background: transparent;}
.map {
    background-color: #102747;
    float: left;
    padding: 40px 0;
    width: 100%;
}
.contact {
    color: #fff;
    float: left;
    padding: 0 44px;
    text-transform: uppercase;
    width: 43%;
}
.contact.office-contact {
    padding: 0;
    width: 28%;
}
.map-area {
    float: right;
    margin: 0 12px 0 0;
    width: 28%;
}
.map-area iframe {
    height: 213px;
    width: 100%;
}
.contact p {
    color: #fff;
    font-size: 18px;
    line-height: 41px;
    margin: 40px 0 0;
}
.social {
    float: right;
    margin: 38px 0;
}
.social ul {
    width: 100%;
}
.bottom-footer .social ul li {
    float: left;
    padding: 0;
}
.bottom-footer .social a {
    border: 0 none;
}
.toggle-menu {
    cursor: pointer;
    float: right;
    margin: 12px 0 0;
    position: relative;
}
.fixed-header .toggle-menu{margin: 15px 0 0;}
.toggle-menu {
    display: none;
}
.toggle-menu img {
    width: 45px;
}
.fixed-header {
    animation: 0.7s ease 0s normal none 1 running slide-down;
    -webkit-animation:0.7s ease 0s normal none 1 running slide-down;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    opacity: 1;
    padding: 0;
    position: fixed;
    top: 0;
    padding: 2px 22px;
    transition: all 0.5s ease 0s;
    -webkit-transition:  all 0.5s ease 0s;
    width: 100%;
    z-index: 99999;
}
.fixed-header .logo img {
    margin: 5px 0;
    width: 100px;
}
.go-top {
    bottom: 93px;
    cursor: pointer;
    position: fixed;
    right: 10px;
}
.go-top:hover {
    bottom: 95px;
}
.go-top img {
    width: 40px;
}
.bill-area h3.heading.bill a {
  color: #102747;
  cursor: auto;
  pointer-events: none;
}


/* 3-march-17 */

.addrs_bar {
    background-color: #102747;
    border-bottom: 4px solid #fe9f38;
    padding: 30px;
	text-align:center;
}

.addrs_bar h1{
	color:#fff;
	font-size: 1.8em;
    font-weight: 500;	
}

.addrs_bar h1 span{
	color: #fe9f38;
}
/************ footer css ends ****************/

@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    } 
    100% {
        opacity: 1;
        transform: translateY(0);
    } 
}
@-webkit-keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    } 
    100% {
        opacity: 1;
        transform: translateY(0);
    } 
}

/******* media screens *************/
@media screen and (max-width:1300px){
    .top-content { width: auto;}
    .tab-area li a { padding: 42px 25px;}
}
@media screen and (max-width:1280px){
    .tab-area li a {padding: 39px 25px;}
    .tab-area li a p {font-size: 22px;}
    .plan-content li {padding: 10px 3px;}
    .contact { width: 40%;}
    .contact.office-contact { width: 30%;}
    .map-area { width: 28%;}
    .detail span { font-size: 18px;}

    .contact-page {
        height: auto;
        left: 0;
        margin: 1%;
        position: static;
        width: 98%;top: 0;
    }
    .contact-main .bottom-footer {position: static;}
}
@media screen and (max-width:1200px){
    .tab-area li a { padding: 34px 25px;}
}
@media screen and (max-width:1199px){
    .tab-area li a {
        padding: 30px 25px;
    }
    .tab-area li a p {
        font-size: 15px;
        margin: 20px 0 0;
    }
    .tab-area li a span {
        height: 75px;
        margin: 7px 4px;
        width: 75px;
    }
    .self-serve {
        background-position: -5px 4px;
    }
    .active-sim {
        background-position: -104px 5px;
    }
    .pay-bill {
        background-position: -202px 6px;
    }
    .location {
        background-position: -290px 9px;
    }

}
@media screen and (max-width:1099px){
    .tab-area li a {
        padding: 27px 18px;
    }
    .tab-area li a p {
        font-size: 15px;
        margin: 28px 0 0;
    }    
}
@media screen and (max-width:1024px){
    nav ul li a { font-size: 16px; padding: 10px 14px;}
    .baner-content h2 { font-size: 24px;}
    .baner-content { margin: 0 37px; width: 350px;}
    .baner-content p { font-size: 15px;  line-height: 30px;}
    .plan-content li {padding: 10px 10px;}
    .plan { margin: 0 1.3% 20px 0; width: 49%; }
    .lte-plans .plan:nth-child(2n) { float: right; margin-right: 0; }
    .plan-info { width: 100%;}
    /*.page-content-wrapper { padding: 15px;}*/
    .lte-plans { margin: 34px 0 0;}
    .detail span { width: 79%;}
	.addrs_bar h1 {
		font-size: 1.6em;
	}
}
@media screen and (max-width:980px){
    .banner-area { width: 100%;}
    .tab-area { width: 100%; float: left;margin: 10px 0 0;width: 99%;}
    .tab-area li a p { font-size: 20px; margin: 28px 20px 0;}
    .contact p { font-size: 15px; line-height: 33px; margin: 24px 0 0;}
    .head-contact { font-size: 22px;}
    .bottom-footer li a { font-size: 14px; padding: 0 8px;}
    .bottom-footer li { padding: 20px 0;}
    .social {margin: 15px 0;}
    .pmnt-method { width: 80%;}
    .tab-area { position: static;}
	.addrs_bar h1 {
		font-size: 1.5em;
	}
}
@media screen and (max-width:940px){
    .bill-area { margin: 1% 5%; width: 90%;}
    .item-dtl td { font-size: 18px;}
    .thank-you .headings { font-size: 22px;}
    .services-buttons { font-size: 22px;}
    .icons-line { line-height: 25px;}
	.addrs_bar h1 {
		font-size: 1.5em;
	}
}
@media screen and (max-width:872px){
    .card-option.pay-int { width: 514px;}
	.addrs_bar h1 {
		font-size: 1.4em;
	}
}
@media screen and (max-width:800px){
    .pmnt-method {
        width: 100%;
    }
	.addrs_bar h1 {
		font-size: 1.3em;
	}
}
@media screen and (max-width:767px){
    .banner-area li .baner-content { top: 21%;}
    .services li {  width: 50%;}
    .baner-content p { font-size: 16px;line-height: 22px;}
    .baner-content h2 { font-size: 20px;  margin: 6px 0;}
    .contact,.contact.office-contact { width: 50%;}
    .contact { padding: 0 25px;}
    .map-area { width: 97%;margin-top: 40px;}
    .map-area iframe { height: 225px;}
    .services { margin: 30px 0;}
    .bottom-footer li a { font-size: 14px; padding: 0 10px;}
    nav { display: none;}
    .toggle-menu {
        display: block;
    }
    .toggle-menu > #responsive {
        background-color: #1d3454;
        border-radius: 4px;
        box-shadow: 0 4px 9px #000;
        padding: 0 15px;
        position: absolute;
        right: 12px;
        top: 43px;
        width: 300px;
        z-index: 99;
    }
    #responsive {
        padding: 0!important;
    }
    #responsive li {
        float: left;
        line-height: 0;
        margin: 0;
        width: 100%;
    }
    #responsive ul li a {
        float: left;
        font-size: 16px;
        padding: 21px 14px;
        width: 100%;
    }
    .top-content{width:100%;}
    .top-content li { font-size: 14px; width: auto;}
    .go-top { bottom: 24px!important;}
    .country input[type="radio"] + label.label-txt, .select-card input[type="radio"] + label.label-txt { margin: 0 15px;}
    .dtl-table { float: left; overflow-x: auto; width: 100%;}
    .item-dtl { margin: 8px 0 15px; min-width: 545px; width: 100%;}
    .item-dtl td { font-size: 15px;}
    .icons-line { font-size: 15px; line-height: 25px;}
    .contact-page { margin: 3%; width: 94%;}
    .page-content-wrapper { padding: 0 15px 15px;width: 100%;}
    .contact-page .map-area { float: right;  margin: 0;  width: 100%;}
    .terms .term-con span { margin: -6px 0 0;}
	.addrs_bar h1 {
		font-size: 1.2em;
	}
}
@media screen and (max-width:658px){
    .detail span { width: 72%;}
	.addrs_bar h1 {
		font-size: 1em;
	}
}
@media screen and (max-width:640px){
    .bottom-footer ul { width: 75%;}
    .bottom-footer li { padding: 10px 0;}
    .social { width: 110px;}
    .country h2 { font-size: 24px;}
	.addrs_bar h1 {
		font-size: 1.2em;
	}
}
@media screen and (max-width:575px){
    .tab-area li a p {
        font-size: 20px;
        margin: 20px 20px 0;
    }
    .tab-area li {
        height: 49%;
        width: 100%;
        height: auto;
    }
    .tab-area li a span {
        margin: 7px 20px;
    }
    .top-content li { font-size: 14px;}
    .bottom-footer li { padding:  0;}
    .bottom-footer ul {
        margin: 15px 0 0;
    }
    .social { margin: 0px 0 15px;}
    .plan-area {
        margin: 0 10%;
        width: 80%;
    }
    .plan {
        margin: 0 7% 4%;
        width: 85%;
    }
    .all-plan h3, .btn.term-con { width: 100%;}
    .lte-plans .plan:nth-child(2n) {float: left;}
    .services-buttons {
        font-size: 16px;
    }
    .services-buttons { min-width: 100px;}
    .card-option.pay-int {
  width: 477px;
  margin: 15px 15px 10px;
}
.addrs_bar h1 {
		font-size: 1em;
	}
}
@media screen and (max-width:499px){
    .top-content li { padding: 4px;}
    .top-header { padding: 5px;}
    .banner-area li  .baner-content {
        position: absolute;
        top: 0;
        background-color: rgba(16, 39, 71, 0.66);
        bottom: 0;
        margin: 0;
        padding: 30px 38px;
        width: 100%;
    }
    .baner-content h2 {
        font-size: 24px;
        line-height: 35px;
        margin: 15px 0 10px;
    }
    .btn-more { font-size: 15px; padding: 10px;}
    .baner-content p {font-size: 15px;line-height: 30px; width: 95%;}
    .toggle-menu > #responsive {
        width: 230px;
    }
    .bottom-footer ul {
        width: 100%;
    }
    .bottom-footer {
        padding: 5px 15px;
    }
    .contact {
        padding: 0 25px;
        width: 100%;
    }
    .contact, .contact.office-contact {
        padding: 0 25px;
        width: 98%;
    }
    .social {
        margin: 0 auto;
        width: 270px;
    }
    .logo > img {
        width: 100px;
    }
    .bottom-footer li a {
        border-right: 0;
    }
    .bottom-footer li {
        padding: 8px;
        width: 50%;
    }
    .bottom-footer .social ul li {
        width: 38px;
    }
    .social {
        float: left;
        margin: 0 38%;
        width: 100px;
    }
    .top-content li {
        width: 100%;
    }
    .top-content li:nth-child(2) {
        display: none;
    }
    .bottom-footer .social ul li:last-child {
        margin: 3px 0 0;
    }
    .plan {
        margin: 0 0 4%;
        width: 100%;
    }
    .terms { width: 100%;}
    .btn.term-con {
        font-size: 16px;
        padding: 9px 15px 3px;
    }
    .term-con span { margin: -9px 0 0;}
    .plan-info li { font-size: 16px;}
    .term-condition h5 { font-size: 14px;  line-height: 22px;}
    .all-plan  h3 {
        font-size: 18px;
    }
    .card-option img {
        margin: 22px 0 0;
    }
    .card-option.pay-int img {
        margin: 0;
    }
    .currucy .select-card .card-option label.pay-cr {
        line-height: 24px;
    }
    .card-option.pay-int {
        width: 91%;
    }
    .currucy .select-card .card-option.pay-int label {
        margin: 0 15px 0 0;
    } 
   .ac-number input { width: 90%;}
    .ac-number .headings, .card-num .headings, .select-dob .headings, .currucy .headings { font-size: 20px;}
    .select-dob select { font-size: 15px; padding: 7px 5px; width: 100px;margin: 0; width: 94px;}
    .dob { background-position: -299px -74px;}
    .bill-area {
        margin: 1% 3%;
        width: 94%;
    }
    .country h2 {
        font-size: 22px;
    }
    .card-num input {margin: 0 0px;}
    .trans-detail table b { text-align: left; width: 100%;}
    .pmnt-method span { margin: 0;}
    .page-content-wrapper h3 {font-size: 25px;}
    .terms .term-con span { margin: -9px 0 1px;}
    .country h2 { padding: 0 7px;}
    .term-condition p { text-align: justify;}

    input.text-disable {
        background-color: #d5d5ce;
        color: #9c9c9c;
    }
	.addrs_bar h1 {
		font-size: 1.2em;
	}
}
@media screen and (max-width:399px){
    .services li { width: 100%;}
    .services > ul { margin: 46px 0 0;}
    .map { padding: 25px 0;}
    .map-area { width: 94%;}
    .contact p { font-size: 14px; line-height: 30px;}
    .contact, .contact.office-contact {padding: 6px 18px;}
    .baner-content h2 {font-size: 20px; line-height: 30px;}
    .baner-content p { line-height: 22px;  width: 100%;}
    .banner-area li .baner-content { padding: 18px 25px;}
    .heading { font-size: 26px;}
    .plan-area span { font-size: 16px;}
    .plan-area { margin: 0 6%; width: 88%;}
    .card-option img { margin: 45px 0 0;}
    .term-condition b { margin: 0 10px 0 0;}
	.addrs_bar h1 {
		font-size: 1em;
	}
}
@media screen and (max-width:360px){
    .toggle-menu > #responsive {
        right: 4px;
    }
    .banner-area li .baner-content {
        padding: 8px 16px;
    }
    .baner-content p { font-size: 14px;}
    .logo > img { width: 88px;}
.addrs_bar h1 {
		font-size: 1em;
	}
}
@media screen and (max-width:320px){
    .baner-content h2 { margin: 5px 0 10px;}
	.addrs_bar h1 {
		font-size: 1em;
	}
}
