* {
  margin:0;
  padding:0;
}
body {
  width: 100%;
  height: 100%;
  font-family:"Lato", Helvetica, Arial, sans-serif;
  margin:0 auto;
  font-weight:400;
  color:#01141F;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  text-rendering:optimizeLegibility;
  background: #FFF;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  direction: ltr;
}
html {
  width: 100%;
  height: 100%;
}
a {
  text-decoration:none;
  outline:none;
  color: #5c727d;
}
a:hover {
  text-decoration: none;
}
a img {
  border: 0px none;
}
a:hover {
  outline: none;
}
a:active {
  outline: none;
  text-decoration: none;
}
a:focus {
  outline: none;
  outline-offset: 0px;
  text-decoration: none;
/*  color:#fff;*/
}
.clear {
  clear:both;
  overflow:hidden;
  height:0px;
  font-size:0px;
}
.clear_l {
  clear:both;
}
ul, ol {
  padding:0px;
  margin:0px;
  list-style:none;
}
input:focus, select:focus, textarea:focus, button:focus {
  outline:none;
  box-shadow:none;
}
h1, h2, h3, h4, h5, h6, p {
  margin:0px;
  padding:0px;
}
article, section, footer, header, figure, aside, hgroup, nav {
  display:block;
}
header, nav, article, footer, section, aside, figure, figcaption {
  display:block
}
.btn,
.btn:focus,
button {
  outline: none;
  border: none;
  box-shadow: none;
}
a:hover, .btn:hover{
  -moz-transition: 0.4s all;
  -o-transition: 0.4s all;
  -webkit-transition: 0.4s all;
  transition: 0.4s all; 
}
select,
select:focus,
input:focus,
.btn:focus,
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {   
  border-color: rgba(0, 0, 0, 0.8);
  box-shadow:none;
  outline:none;
  border-top-color: none;
  border-right-color: none;
  border-left-color: none;
}
.noPadding{
  padding:0;
}
.page-item.active .page-link {
    background-color: #567c32;
    border-color: #567c32;
}
/* :: 6.0 Buttons CSS */
.btn:focus {
  box-shadow: none;
}
img{
  height: auto;
  max-width: 100%;
}
embed, iframe, object {
    max-width: 100%;
}
input:focus, textarea:focus, .form-control:focus {
    outline: none;
    box-shadow: 0 5px 20px rgb(95 99 242 / 10%);
}
.btn:focus, 
.btn:active:focus, 
.btn.active:focus{
    outline:none;
    box-shadow:none;
}

/*Accordion*/
.accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
}
.accordion .accordion-item button[aria-expanded=true] {
  border-bottom: 1px solid #03b5d2;
}
.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #7288a2;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}
.accordion button:hover, .accordion button:focus {
  cursor: pointer;
  color: #03b5d2;
}
.accordion button:hover::after, .accordion button:focus::after {
  cursor: pointer;
  color: #03b5d2;
  border: 1px solid #03b5d2;
}
.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}
.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}
.accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}
.accordion button[aria-expanded=true] {
  color: #03b5d2;
}
.accordion button[aria-expanded=true] .icon::after {
  width: 0;
}
.accordion button[aria-expanded=true] + .accordion-content {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  margin: 2em 0;
}



.btn-main{
    font-size: 16px;
    font-weight: 600;
    color: #fff !important;
    cursor: pointer;
    text-align:center;
    border: none;
    background-size: 300% 100%;
    text-shadow: none !important;

    border-radius:30px;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    background-image: linear-gradient(to right, #0092a0, #005158, #0092a0, #005158);
    box-shadow: 0 4px 15px 0 rgba(116, 79, 168, 0.75);
    padding:10px 25px;
    width:auto !important;
}
.btn-main:hover {
    background-position: 100% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    color:#FFF;
}
.btn-main:focus {
    outline: none;
}
.mobile-btn{display:none!important;}
.web-btn{display:inline-block!important;}
/*.mainheader{
  padding: 15px 0;
}*/
.headercontainer{
  padding:15px;
  background: #F0F9FA;
}
.logo img {
    height: 55px;
}
.toplink a{
  color:#0033a1;
  font-weight:700;
  font-size:14px;
  position:relative;
  padding: 0 45px;
}
.toplink a:hover{
  color:#0033a1;
}

.contentblock h4
 {
    font-size: 16px;
    margin: 0 0 15px;
    font-weight: 800;
}

.toplink a:after {
  position: absolute;
  left:0;
  right:0;
  height:0;
  bottom:-5px;
  content: "";
  background-color: #0033a1;
  transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform: translate3d(0, 0, 0);
}
.toplink a:hover:after{
  bottom:-5px;
  height:2px;
}
.bannercontent {
    width:78%;
}
.bannercontent h1 {
    font-size:38px;
    font-weight:900;
    color: #0033a1;
    padding-right: 30px;
}
.bannercontent h1 span{
  font-weight:300;
}
.bannerslide {
    background: #facfcc;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position:center !important;
}
.bannerslide .row{
    height:60vh;
}
@media screen and ( max-height:450px ){
.bannerslide .row{
    height:400px;
}
}
.text-light.bannercontent h1{
  color:#FFF !important;
}

.saretabs.nav-tabs {
    border-bottom: none;
    text-align: center;
    justify-content: center;
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.15);
    border-radius: 60px;
    width: 60%;
    margin: 0 auto 0;
    z-index: 1;
    background: #FFF;
    position: relative;
    top: -3rem;
    padding: 7px 0;
}
.saretabs.nav-tabs .nav-link {
    background: transparent;
    color:rgba(0, 0, 0, 0.2);
    padding:5px 60px 15px;
    display: block;
    text-align: center;
    border-radius: 0;
    font-weight: 600;
    font-size: 21px;
    border: none;
    margin: 10px 0;
    position: relative;
}
.saretabs.nav-tabs .nav-link:hover, 
.saretabs.nav-tabs .nav-link.active {
    color:rgba(0, 0, 0, 1);
    background-color: #FFF;
/*    border-bottom: 4px solid #faaf40;*/
}
.saretabs.nav-tabs .nav-link:after {
  position: absolute;
  left:0;
  right:0;
  height:1px;
  bottom:1.5px;
  content: "";
  background-color: #faaf40;
  transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform: translate3d(0, 0, 0);
}
.saretabs.nav-tabs .nav-link.active:after{
  height:4px;
  bottom:0;
}
.saretabs.nav-tabs .nav-link:hover:after {
  width:100%;
}
.saretabs.nav-tabs .nav-item {
    padding: 0;
    text-align: center;
}
.maincontainer {
    background: #fffbfb;
    min-height: 50vh;
    padding: 10px 0 120px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.account-block .nav-tabs {
    border-bottom: none;
    text-align: center;
    justify-content: center;
}
.account-block .nav-tabs .nav-link {
    background: transparent;
    color:#FFF;
    display: block;
    text-align: center;
    border-radius: 0;
    border:none;
    background-size: 300% 100%;
    border-radius:30px;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    background-image: linear-gradient(to right, #0092a0, #005158, #0092a0, #005158);
    box-shadow: 0 4px 15px 0 rgba(116, 79, 168, 0.75);
    padding:10px 25px;
    position: relative;
    opacity: 0.2;
}
.account-block .nav-tabs .nav-link:hover, 
.account-block .nav-tabs .nav-item.show .nav-link, 
.account-block .nav-tabs .nav-link.active {
    color:#FFF;
    background-color: #FFF;
    /*    border-bottom: 4px solid #faaf40;*/
    background-position: 100% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    opacity: 1;
}
.account-block .nav-tabs .nav-item {
    padding:0;
    text-align: center;
    margin:0 10px;
}
.tabsection{
  margin-top:30px;
  padding:0 60px;
}
.tabsection .contentblock{
  padding-right:5rem;
}
.tabsection .contentblock h2{
  color:#faaf40;
  font-size:24px;
  font-weight:900;
}
.tabsection .contentblock p{
  padding:15px 0;
  font-weight:300;
  font-size:18px;
}
.list-2{
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
}
.list-2{
  padding:15px 0;
  text-align: left;
}
.list-2 li {
    margin-bottom: 25px;
    list-style: none;
    padding-left: 40px;
    position: relative;
    font-weight: 400;
    font-size: 16px;
    padding-right: 20px;
}
.list-2 li:before {
    content: "\eed8";
    font-family: 'Icofont';
    font-size: 16px;
    position: absolute;
    left: 0;
    top: 0;
    background-image: linear-gradient(to bottom, #ffb637, #fd6026);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    text-align: center;
    color: #FFF;
    line-height: 28px;
        overflow: hidden;
}
.btnarea {
    display: inline-block;
    margin: 25px 0;
    width: 100%;
}
.web-btns-wrap {
    display: flex;
    justify-content: inherit;
}
.web-btn-main {
    width: auto;
    margin-right: 30px;
}
.viemore {
    margin-bottom: 30px;
    color: #008C9A;
    text-decoration: underline;
    text-transform: capitalize;
    font-weight: 300;
    font-style: italic;
    display: inline-block;
    font-size: 18px;
}
.viemore:hover{
  color:#faaf40;
  text-decoration: none;
}
.cardaccounts {
    background: #fff0f0;
    box-shadow: 0 4px 5px 0 rgba(116, 79, 168, 0.25);
    border-radius: 20px;
    padding-bottom: 20px;
}
.cardaccounts h3 {
    font-size: 19px;
    font-weight: 900;
    margin-bottom: 10px;
}
.cardaccounts img {
    border-radius: 50%;
    height:50px;
}
.cardaccounts p{
  font-weight:300;
  font-size: 16px;
  margin-top:10px;
}
.cardaccounts .btn-main {
    font-size: 14px;
    padding: 8px 20px;
}
.contentinfo{
  padding:0 12rem;
}
.contentinfo h2 {
    color: #0033a1;
    font-size:28px;
    margin:0 0 15px;
    font-weight:800;
}
.contentinfo p {
    padding: 15px 0;
    font-weight: 300;
    font-size:18px;
}
.contentinfo .viemore{
  font-size:22px;
}
.appdownlaod ul li{
  display: inline-block;
  margin:0 10px;
}
.appdownlaod ul li a{
    color: #0033a1;
    font-size:18px;
    font-weight: 800;
}
.appdownlaod ul li a:hover{
    color: #008e9c;
}
.appdownlaod ul li span{
  display:block;
  margin-bottom:5px;
}
.appdownlaod ul li img {
    height: 45px;
}
.contentblock h3{
    color: #0033a1;
    font-size:18px;
    margin:0 0 15px;
    font-weight:800;
}
.btnarea button + button{
  margin-left:20px;
}
.submit-btnarea .btn-main{
  border-radius:15px;
  font-size:18px;
}
.formarea .form-label{
  font-size:15px;
  font-weight:700;
  color: #000;
}
.formarea .form-control,
.formarea .form-select{
  height:45px;
  font-size:15px;
}
.contentblock .btnarea .btn-main {
    font-size: 20px;
    display: inline-block;
}
.calculator-block{
  padding:0 7rem;
}
.calculator-block h2{
  color:#3f4043;
  font-size:3rem;
  font-weight:900;
  margin-bottom:20px;
}
.calculator-block h4{
  font-size:16px;
  font-weight:600;
  margin-bottom:10px;
}
.calculator-block h5{
  color: rgba(0, 0, 0, 0.3);
  font-size:15px;
  margin-bottom:15px;
}
.calculator-block h3{
  font-size:18px;
}
.calculator-block h3 strong{
    font-weight:800;
}
.congratsblock {
    width: 100%;
    justify-content: center;
    margin-top: 30px;
}
.congratsblock img{
  height:50px;
  margin-right:15px;
}
.btnarea.back-btn {  
}
.btnarea.back-btn .btn-main {
    padding: 10px 40px;
    font-size: 18px;
    margin-right:3rem;
}
.rangearea{
    position: relative !important;
    left: auto !important;
    top: auto !important;
    min-height: auto !important;
    background: none !important;
}
.ui-overlay-a, 
.ui-page-theme-a, 
.ui-page-theme-a 
.ui-panel-wrapper {
    background-color: transparent;
    border-color:none;
}
.rangearea input.ui-slider-input {
    float: right;
    z-index: 9;
    position: relative;
    background: none;
    box-shadow: none;
    border: none;
    width: auto;
    left: 14px;
    font-size: 15px;
    font-weight: 800;
    top: -3px;
}
.ui-slider-track:after {
    content: "Kes";
    position: absolute;
    right: -2.4rem;
    font-weight: 800;
    font-size: 14px;
    top: -5px;
}
/*.pricebefore {
    position: absolute;
    right: 2.2rem;
    font-weight: 800;
    font-size: 14px;
    top:8px;
}*/
.rangearea .ui-slider-track {
    margin: 0 68px 0 15px;
}
.sliderblock {
    width: 100%;
    align-items: center;
    display:flex;
    position: relative;
    margin: 5px 0;
}
.rangearea .ui-slider-track {
    height: 4px;
    background-color: #606060;
    top:8px;
}
.rangearea .ui-slider-track .ui-btn.ui-slider-handle {
    width: 15px;
    height: 15px;
    margin: -7px 0 0 -10px;
    background: #606060;
    border: none;
    border-radius: 50%;
}
.rangearea div.ui-slider {
    height: auto;
    width: 75%;
    margin: 5px 0;
}
.ui-mobile .rangearea label {
    min-width: 170px;
    text-align: right;
    font-size: 14px;
    font-weight:600;
}
.ui-page-theme-a a:visited, html .ui-bar-a a:visited, html .ui-body-a a:visited, html body .ui-group-theme-a a:visited {
/*    color: #FFF !important;*/
    text-shadow: none !important;
}

.modalcalculator .modal-content{
    background: #FACFCC;
    box-shadow: 0 4px 5px 0 rgba(116, 79, 168, 0.25);
    border-radius:40px;
}
.modalcalculator .modal-content h2 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 5px;
    display: block;
}
.modalcalculator .modal-content h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 10px;
}
.modalcalculator .modal-content img {
    border-radius: 50%;
    height: 70px;
    margin-bottom: 30px;
    width: 70px;
}
.modalcalculator .modal-content .appdownlaod img {
    height: 45px;
    width: auto;
    border-radius: 0;
    background-color: transparent;
}
.modalcalculator .modal-content .btn-main {
    font-size: 14px;
    padding: 8px 20px;
}
.modalcalculator button.btn-close {
    position: absolute;
    right: -15px;
    background-color: #facfcc;
    border-radius: 50%;
    opacity: 1;
    top: -5px;
}

.contentblock ul li:nth-child(n + 7) {
  display: none;
}
.contentblock ul li.showList:nth-child(n + 7) {
  display: list-item;
}
.contentblock .viemore {
  color: #f86843;
  font-weight: 600;
  font-style: oblique;
  /*display: none;*/
}
.contentblock .viemore.showMe {
  display: block;
}
.contentblock .viemore {
  cursor: pointer;
}
.form-column-cont{
    background: #051f4d;
    display: inline-block;
    margin: 0 auto;
    padding: 15px;
    min-width:700px;
    border-radius:10px;
}
.form-field-type-2-input {
    padding: 0.8rem;
    border: 1px solid rgba(255,255,255,0.5);
    background: 0 0;
    border-radius: 0.25rem;
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    font-weight: 700;
    display: block;
    width: 100%;
}
.form-field-type-2-input:focus{
    border: 1px solid rgba(255,255,255,0.8) !important;
}
.form-column label {
    color: #fff;
    font-size: 14px;
}
.carloan{
    display:flex;
    width:100%;
    margin-top:30px;
}
.form-field-type-2 {
    padding: 0 10px;
    margin: 10px 0;
    width: 100%;
}
.border-input-none .form-field-type-2-input {
    border: none;
    font-size: 15px;
    font-weight: 400;
    padding: 1.4rem 0 0.8rem;
}
.border-input-none .form-field-type-2-input:focus{
    border: none !important;
}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}
.form-column-row.form-column-row-fields {
    width: 50%;
    float: left;
}

/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */
@media screen and (max-width:1360px){
.cardaccounts .btn-main {
    font-size: 12px;
    padding: 8px 15px;
}
}
@media screen and (max-width:1280px){
.contentinfo {
    padding: 0 6rem;
}
.cardaccounts .btn-main {
    font-size: 13px;
    padding: 8px 10px;
}
.calculator-block {
    padding: 0 3rem;
}
}
@media screen and (max-width:1200px){
.tabsection .contentblock{
  padding-right:0;
}
.contentinfo{
  padding:0 5rem;
}
.calculator-block h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.calculator-block h4 {
    font-size: 14px;
}
.calculator-block h5 {
    font-size: 13px;
}
.calculator-block h3 {
    font-size: 16px;
}
}
@media screen and (max-width:1999px){
.cardaccounts .btn-main {
    font-size: 14px;
    padding: 10px 20px;
}
.bannercontent h1 {
    font-size: 32px;
    padding-right: 20px;
}
}
@media screen and (max-width:1150px){
.bannerslide .row {
    height: 52vh;
}
}
@media screen and (max-width:1100px){
.tabsection .contentblock p {
    font-size: 16px;
}
.saretabs.nav-tabs .nav-link {
    padding: 5px 40px 15px;
    font-size: 18px;
}
.list-2 li {
    font-size: 15px;
    padding-right: 0;
}
.bannercontent h3 {
    font-size: 22px;
}
.bannercontent h1 {
    font-size: 26px;
}
}
@media screen and (max-width:1024px){
.container{
    max-width:98%;
}
.tabsection .contentblock h2 {
    font-size: 21px;
}
}
@media screen and (max-width:991px){
.bannercontent h1 {
    font-size: 26px;
    padding-right: 10rem;
}
.pricebefore {
    right: 3.7rem;
}
.cardaccounts {
    margin-bottom: 30px;
}
}
@media screen and (max-width:900px){
}
@media screen and (max-width:810px){
.bannercontent h1 {
    font-size: 21px;
}
.btn-main {
    font-size: 14px;
}
}
@media screen and (max-width:767px){
.list-2 {
    columns:1;
    -webkit-columns:1;
    -moz-columns:1;
}
.bannerslide .row {
    height: auto;
    padding: 100px 0;
}
.bannercontent {
    padding-left: 2rem;
    width: 80%;
}
.bannercontent .btn-main {
    padding: 8px 15px;
}
.cardaccounts .btn-main {
    font-size: 15px;
    padding: 8px 20px;
}
.btnarea.back-btn {
    margin-left: 0;
    text-align: center;
}
.ui-mobile .rangearea label {
    min-width: 150px;
    font-size: 13px;
}
.form-column-row.form-column-row-fields {
    width: 100%;
}
}
@media screen and (max-width:715px){
.form-column-cont{
    min-width:100%;
}
}
@media screen and (max-width:630px){
.contentinfo h2 {
    font-size: 21px;
    margin: 0 0 5px;
}
.contentinfo {
    padding: 0 2rem;
}
.appdownlaod ul li img {
    height: 35px;
}
.appdownlaod ul li span {
    font-size: 14px;
}
.formarea .form-control, .formarea .form-select {
    height: 36px;
    font-size: 14px;
}
.contentblock h3 {
    font-size: 16px;
    margin: 0 0 15px;
}
.saretabs.nav-tabs .nav-link {
    padding: 2px 40px 10px;
    font-size: 16px;
}
.bannercontent h1 {
    font-size: 19px;
}
.contentblock .btnarea .btn-main {
    font-size: 16px;
}
.bannerslide .row {
    padding: 80px 0;
}
.btn-main {
    font-size: 12px;
}
.contentinfo .viemore {
    font-size: 16px;
}
.form-column-cont{
    min-width: 90%;
}
.form-field-type-2 {
    width: 100%;
}
}
@media screen and (max-width:600px){
.sliderblock {
    display: block;
    margin: 5px 0;
}
.ui-mobile .rangearea label {
    min-width: 100%;
    text-align: left;
    font-size: 14px;
}
.rangearea div.ui-slider {
    width: 100%;
    margin: 5px 0;
}
.rangearea .ui-slider-track {
    margin: 0 68px 0 0;
}
.form-column-row.form-column-row-fields.d-flex {
    display: block !important;
    text-align: left;
}
.saretabs.nav-tabs{
    border-radius:30px !important;
    width: 90% !important;
    top: 0 !important;
}
}
@media screen and (max-width:575px){
.saretabs.nav-tabs {
    width: 90%;
    padding: 2px 0;
}
.bannercontent h1 {
    font-size: 16px;
}
.bannercontent h3 {
    font-size: 18px;
}
.bannercontent .btn-main {
    font-size: 12px;
    padding: 8px 10px;
}
.tabsection {
    padding: 0 30px;
}
.saretabs.nav-tabs .nav-link {
    padding: 2px 30px 10px;
    font-size: 15px;
}
.appdownlaod ul li {
    width: 100%;
    margin-bottom:10px;
}
.contentinfo p {
    font-size: 16px;
}
.calculator-block h2 {
    font-size: 2.1rem;
    margin-bottom: 10px;
}
.calculator-block {
    padding: 0 1rem;
}
.congratsblock img{
  height:40px;
  margin-right:5px;
}

.bannercontent .btn-main.web-btn{
    display:none!important;
}
.bannercontent .btn-main.mobile-btn{
    display: inline-block !important;
}
}
@media screen and (max-width:480px){
.bannercontent {
    padding-left: 2%;
    width: 98%;
}
.bannercontent h1 {
    padding-right: 5rem;
}
.calculator-block h2 {
    font-size: 1.8rem;
}
.contentblock .viemore.showMe {
    font-size: 14px;
}
.bannerslide {
    background-position: 65% center;
}
.contentinfo h2 {
    font-size: 18px;
}
}
@media screen and (max-width:390px){
.toplink a {
    font-size: 12px;
}
.logo img {
    height: 34px;
}
.ui-mobile .rangearea label {
    font-size: 13px;
}
.account-block .nav-tabs .nav-link {
    padding: 8px 20px;
    font-size: 14px;
}
.bannercontent h1 {
    padding-right:8rem;
    font-size: 18px;
}
.tabsection .contentblock h2 {
    font-size: 18px;
}
.tabsection .contentblock p {
    font-size: 15px;
}
}
@media screen and (max-width:320px){
}