* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "MontserratRegular";
  line-height:1.4;
  -webkit-font-smoothing: antialiased;
}
html {
  font-family: "MontserratRegular";
  font-size: 14px;
  scroll-behavior: smooth;
}
body{
  overflow-x:hidden;
}
.main-menu{
    display: inline-block;
}
.main-menu::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #2c3a96;
    transition: width .3s;
}

.main-menu:hover::after {
    width: 100%;
}
.color-blue{
    color: #2c3a96 !important;
}
.color-green{
    color: #93c301 !important;
}
.gbns-logo{
    width:150px !important
}
.gbns-header{
    padding: 25px 5%;
    border-bottom: 0; /*2px solid rgba(0, 0, 0, 0.1)*/
}
.gbns-nav-menu {
  padding: 10px 0;
  float: right;
}
.gbns-nav-menu a {
    color: black;
    padding: 0 50px 0 0;
    text-decoration: none;
    font-size: 14px;
    font-family: "MontserratRegular";
}
.gbns-nav-menu a:last-child {
    padding:0;
}
.gbns-nav-menu a:hover {
    color: black;
}
@media only screen and (max-width: 992px) {
    .gbns-nav-menu a {
      padding: 0 20px;
      font-size: 14px;
    }
}
.gbns-header-container{
    position:relative;
}
.gbns-sub-header{
    position: absolute;
    width: 100%;
    z-index: 999;
    background: whitesmoke;
    display:none;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
    opacity:0;
}
.gbns-sub-header-level-2{
    top:100px;
    background: #eee;
}
.gbns-sub-nav-menu {
  padding: 10px 0;
  float: right;
}
.gbns-sub-nav-menu a {
    color: black;
    padding: 0 27px;
    text-decoration: none;
    font-size: 12px;
    font-family: "MontserratRegular";
}
.gbns-sub-header.gbns-sub-header-active{
    display:block;
    opacity:1;
}
.gbns-mobile-menu{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.gbns-mobile-menu img{
    width: 30px;
}
@media only screen and (max-width: 768px) {
    .gbns-logo{
        width: 120px !important;
    }
}

.footer-sm-links a{
    display: inline-block;
    text-decoration: none;
    color: #444;
}
.gbns-footer{
    padding: 50px 5%;
    background: #2c3a96; 
}
.gbns-footer .footer-title, .gbns-footer .footer-title a{
    font-size: 18px;
    font-family: "MontserratMedium";
    color: white;
    margin-bottom: 20px;
    text-decoration: none;
}
.footer-sm-img{
    margin-bottom: 20px;
  width: 25px;
  height: auto;
  margin-right: 10px;
}
.gbns-footer .footer-link{
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
     margin-bottom: 30px;
}
.gbns-footer .footer-copyright{
    font-size: 10px;
    color: rgba(255, 255, 255, 0.75);
     margin-bottom: 0;
}
@media only screen and (max-width:1440px) {
    .gbns-footer .footer-title, .gbns-footer .footer-title a{
        font-size: 16px;
    }
    .gbns-footer .footer-link {
        font-size: 14px;
    }
}
@media only screen and (max-width:1200px) {
    .gbns-footer .footer-title, .gbns-footer .footer-title a{
        font-size: 16px;
    }
    .gbns-footer .footer-link {
        font-size: 14px;
    }
}
@media only screen and (max-width:1024px) {
    .gbns-footer .footer-title, .gbns-footer .footer-title a{
        font-size: 16px;
    }
    .gbns-footer .footer-link {
        font-size: 14px;
    }
}
@media only screen and (max-width:992px) {
    .gbns-footer .footer-title, .gbns-footer .footer-title a{
        font-size: 16px;
    }
    .gbns-footer .footer-link {
        font-size: 14px;
    }
}
@media only screen and (max-width:768px) {
    .gbns-footer .footer-title, .gbns-footer .footer-title a{
        font-size: 16px;
    }
    .gbns-footer .footer-link {
        font-size: 14px;
    }
}
@media only screen and (max-width:575px) {
    .gbns-footer .footer-title, .gbns-footer .footer-title a{
        font-size: 16px;
    }
    .gbns-footer .footer-link {
        font-size: 14px;
    }
}


/* mobile menu css starts */
/* Menu Icon */
#menuToggle {
  font-size: 26px;
  cursor: pointer;
}

/* Overlay */
#menuOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 998;
}

/* Side Menu */
#mobileMenu {
  position: fixed;
  top: 0;
  right: -220px; /* hidden */
  width: 220px;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
  transition: 0.3s ease;
  z-index: 999;
  padding: 20px;
}

#mobileMenu ul {
  list-style: none;
  padding: 0;
}

#mobileMenu ul li {
  margin: 0 0 15px 0;
}

#mobileMenu ul li a {
  text-decoration: none;
  color: #444;
  font-size: 16px;
}

/* Active State */
#mobileMenu.active {
  right: 0;
}

#menuOverlay.active {
  opacity: 1;
  visibility: visible;
}
/* mobile menu css ends */