/* Stellar Colors */

.filters .input-group-addon,
.search .input-group-addon {
  background-color: #0f3880;
}

.panel-primary > .panel-heading {
  color: #fff;
  background-color: #0f3880;
  border-color: #0f3880;
}

.panel-primary {
  border-color: #0f3880;
}

.btn-primary {
  background-color: #0f3880;
  border-color: #0f3880;
}

.text-primary,
a.list-group-item-info,
button.list-group-item-info,
.btn-link,
.panel-info > .panel-heading {
  color: #0f3880;
}
.main-home {
  background-color: white;
}
#content {
  background-color: #f5f8fa;
}

.badge {
  display: none;
}

/* end Stellar Colors */

/* Skin Styles */

/* header styles */
header ul{
  list-style:none;
}

header a:hover,
header a:focus,
header a:active{
  text-decoration:none;
}

header {
  font-family: Arial, Helvetica, sans-serif;
  z-index:3;
  position: relative;
}

header * {
  margin: 0;
}

header .header-container {
  display: block;
}

header .mobile-container,
header .mobile-background,
header .expansion-button-column,
header .search-form-wrapper,
header .submenu-container{
  display: none;
}

header .main-row{
  background:#004391;
}

header .inner-main-row{
  max-width:1170px;
  margin:0 auto;
  display:flex;
  align-items: center;
}

header .logo-column{
  padding:18px 15px;
}

header .logo-column img{
  max-width:84px;
  width:100%;
}

header .nav-column{
  padding:0 15px;
}

header .nav-list{
  display:flex;
  column-gap:28px;
}

header .nav-list>li{
  margin:0 4px;
}

header .nav-list>li>a{
  font-size:16px;
  font-weight:500;
  color:white;
  display:flex;
  align-items: center;
  line-height:25.6px;
}

header .nav-list>li>a:hover{
  color:rgb(54, 167, 167);
}

header .nav-list>li>a::after {
  content: "";
  display: block;
  position: absolute;
  width: 0%;
  left: 50%;
  height: 2px;
  background: #37A7A7;
  bottom: 0;
  transition: width 0.3s ease, left 0.3s ease;
}

header .nav-list>li>a:hover::after {
  width: 100%;
  left: 0;
}

header .nav-list>li {
  position: relative;
}

header .nav-list>li>a>i{
  display:flex;
  align-items: center;
  justify-content: center;
  height:100%;
  width:8px;
  margin-left:5px;
  font-size:9px;
}
header .search-column{
  display:flex;
  justify-content: end;
  flex-grow:1;
}
header .search-column>div:first-child button{
  display:flex;
  align-items: center;
  justify-content: center;
  width:65px;
  height:15px;
  background:none;
  color:white;
  font-size:15px;
}
header .submenu-container{
  position: absolute;
  right:0;
}

header .submenu-container>div{
  position:relative;
  right:-4px;
}

header .nav-list>li{
  position:relative;
}

header .submenu-list{
  background:rgb(0, 67,   145);
  padding:0 20px;
  width:150px;
}

header .submenu-list a{
  display:flex;
  line-height:45.59px;
  font-size:16px;
  font-weight:500;
  color:white;
}

header .submenu-list a:hover{
  color:rgb(54, 167, 167);
}

header .nav-list>li:hover .submenu-container{
  display:block;
}
header .search-column{
  position: relative;
}

header .search-form-wrapper{
  display:block;
  position:absolute;
  opacity:0;
  visibility: hidden;
  bottom:-60px;
  right:40px;
  transition:0.1s linear;
}

header.search-form-open .search-form-wrapper{
  opacity:1;
  visibility: visible;
}

header .search-form-wrapper>div{
  padding:10px;
  background:white;
}

header .search-form-wrapper input{
  padding-left:12px;
  flex-grow:1;
}

header .search-form-wrapper input::placeholder{
  color:#9C9C9C;
}

header .search-form-wrapper input:focus{
  outline:none;
}


header .search-form-wrapper form{
  border:2px solid #E96657;
  width:245px;
  height:40px;
  display:flex;
  align-items: center;
}

header .search-form-wrapper .submit-search-button{
  display:flex;
  align-items: center;
  justify-content: center;
  width:45px;
  height:40px;
  border-left:1px solid #9C9C9C;
  background:none;
}

header .clear-search-form{
  display:flex;
  justify-content: center;
  align-items: center;
  width:36px;
  height:40px;
  background:none;
}

/* mobile header styles */
@media only screen and (max-width:959px){
  header .nav-column,
  header .search-column{
    display:none;
  }
  header .logo-column img{
    max-width:120px;
  }
  header .logo-column{
    padding-top:14px;
    padding-bottom:14px;
  }
  header .expansion-button-column{
    display:flex;
    justify-content: end;
    flex-grow:1;
  }
  header .expansion-button{
    display:flex;
    justify-content: center;
    align-items: center;
    width:47px;
    height:34px;
    margin-right:15px;
    background:none;
    border:1px solid black;
    color:black;
    font-size:17px;
  }

  header .mobile-background,
  header .mobile-container{
    display:block;
    position:fixed;
    transition:0.3s linear;
  }

  header .mobile-background{
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.65);
    opacity:0;
    visibility: hidden;
  }

  header .mobile-container{
    left:0;
    top:0;
    max-width:360px;
    width:100%;
    height:100%;
    background:rgb(0, 67, 145);
    transform:translateX(-100%);
  }

  html.skin-nav-menu-opened header .mobile-container{
    transform:translateX(0);
  }

  html.skin-nav-menu-opened header .mobile-background{
    opacity:1;
    visibility: visible;
  }
  header .mobile-expansion-button{
    display:flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width:47px;
    height:34px;
    top:8px;
    right:10px;
    background:none;
    border:1px solid black;
    color:black;
    font-size:17px;
  }

  header .mobile-submenu-container{
    display:none;
  }

  header .mobile-nav-list{
    margin:0 15px;
    padding-top:74px;
    overflow:auto;
    height:100vh;
  }

  header .mobile-nav-list>li>a,
  header .mobile-nav-list>li>div.submenu-header{
    padding:0 4px;
  }

  header .mobile-nav-list>li>div.submenu-header{
    display:flex;
    justify-content: space-between;
  }

  header .mobile-nav-list>li>div.submenu-header button{
    display:flex;
    justify-content: center;
    align-items: center;
    width:48px;
    font-size:14px;
    background:none;
    color:black;
  }
  

  header .mobile-nav-list>li>a,
  header .mobile-nav-list>li>div>a{
    line-height:55.59px;
    color:white;
    font-size:16px;
    font-weight:500;
    display:flex;
  }

  header .mobile-nav-list>li.submenu-open .mobile-submenu-container{
    display:block;
  }

  header .mobile-submenu-list{
    margin-left:10px;
  }

  header .mobile-submenu-list a{
    display:flex;
    line-height:55.59px;
    color:white;
    font-size:16px;
    padding-left:4px;
  }

  header .mobile-nav-list>li>div.submenu-header{
    position: relative;
  }

  header .mobile-nav-list>li.submenu-open .submenu-header-button{
    transform:rotate(180deg);
    border:1px solid black;
  }

  header .mobile-nav-list>li>div.submenu-header::after {
    content: "";
    display: block;
    position: absolute;
    width: 0%;
    left: 50%;
    height: 2px;
    background: #37A7A7;
    bottom: 0;
    transition: width 0.3s ease, left 0.3s ease;
  }

  header .mobile-nav-list>li.submenu-open>div.submenu-header::after {
    width: 100%;
    left: 0;
  }
}

@media only screen and (max-width:575px){
  header .mobile-nav-list>li>a, header .mobile-nav-list>li>div>a{
    font-size:15px;
    line-height:54px;
  }
  header .mobile-submenu-list a{
    line-height:54px;
    font-size:15px;
  }
}

/* footer styles */

footer a:hover,
footer a:focus,
footer a:active{
  text-decoration:none;
}

footer ul{
  list-style:none;
}

footer {
  font-family: "Roboto", sans-serif;
}

footer .footer-container {
  display: block;
  background:#004391;
}

footer .inner-footer-container{
  max-width:1140px;
  padding:0 10px;
  margin:0 auto;
}

footer .top-row{
  padding-top:75px;
  padding-bottom:60px;
  border-bottom:1px solid white;
}

footer * {
  margin: 0;
}

footer h2{
  border:none;
  margin:0;
  padding:0;
  font-size:16px;
  font-weight:500;
  color:white;
  letter-spacing:1.5px;
  margin-bottom:18px;
  line-height:24px;
}

footer .inner-top-row{
  display:flex;
}

footer .inner-top-row>div{
  width:33.3333333%;
}

footer .inner-top-row>div:not(:first-child){
  padding:0 30px;
}

footer .column-1 p{
  color:white;
  margin-bottom:50px;
  line-height:24px;
}

footer .social-list{
  display:flex;
  justify-content: center;
  column-gap:5px;
}

footer .social-list a{
  display:flex;
  justify-content: center;
  align-items: center;
  width:42px;
  height:42px;
  background:white;
  border-radius:10%;
  color:white;
  font-size:18px;
}

footer .social-list a.facebook-a{
  font-size:26px;
}

footer .facebook-a>span,
footer .spotify-a>span{
  width:30px;
  height:30px;
  display:flex;
  align-items: center;
  justify-content: center;
  border-radius:100%;
  background:#004391;
}

footer .facebook-a i{
  transform:translateY(4px);
}

footer .social-list a.instagram-a{
  color:#004391;
  font-size:33px;
}

footer .social-list a.spotify-a{
  font-size:35px;
} 

footer .social-list a.map-marker-a{
  font-size:35px;
  color:#004391;
}

footer .lower-row{
  padding-top:17px;
  padding-bottom:17px;
}

footer .copyright-stellar-column p{
  line-height:27.2px;
  font-size:16px;
  font-weight:500;
  font-family: Arial, Helvetica, sans-serif;
  color:white;
  text-align: center;
}

footer .quick-links-list a{
  display:inline-block;
  line-height:27px;
  color:white;
}

footer .quick-links-list li{
  position:relative;
}

footer .quick-links-list li:not(:last-child)::after{
  content:'';
  position: absolute;
  background:white;
  width: 100%;
  height: 1px;
  display: block;
}

footer .address-list p{
  line-height:20px;
  color:white;
}

footer .address-list p a{
  font-size:13px;
  color:white;
}

footer .skin-foot-ims{
  color:white;
  font-weight:bold;
  font-size:18px;
}

@media only screen and (max-width:1024px){
  footer .inner-top-row{
    flex-wrap: wrap;
  }
  footer .inner-top-row>div{
    width:50%;
  }
  footer .inner-top-row>div:nth-child(2){
    padding:0;
    padding-top:50px;
  }
}

@media only screen and (max-width:767px){
  footer .inner-top-row{
    row-gap:50px;
  }
  footer .inner-top-row>div{
    width:100%;
  }
  footer .inner-top-row>div:not(:first-child){
    padding:0;
  }
}