/* 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 {
  font-family: "Questrial", sans-serif;
  z-index:3;
  position: relative;
}

header a:hover,
header a:focus,
header a:active {
  text-decoration: none;
}

header * {
  margin: 0;
}

header .header-container {
  display: block;
}

header .expansion-button-column,
header .submenu-container {
  display: none;
}

header .main-row {
  background: #1f1e57;
  padding: 0 5%;
}

header .logo-column img {
  max-width: 140px;
  width: 100%;
}

header .inner-main-row {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 10px 0;
  display: flex;
  column-gap: 12px;
  align-items: center;
  min-height: 128px;
}

header .header-button-link-column a {
  display: block;
  padding: 11px 20px;
  color: black;
  font-size: 15px;
  line-height: 1.375;
  border-radius: 20px;
  text-transform: uppercase;
  border-width: 1px;
  border-style: solid;
  text-wrap: nowrap;
  transition: 0.3s linear;
}

header .header-button-link-column.white-background a {
  background: white;
  border-color: white;
  font-size: 14px;
}

header .header-button-link-column.blue-background a {
  background: rgb(78, 193, 239);
  border-color: rgb(78, 193, 239);
}

header .header-button-link-column.white-background a:hover,
header .header-button-link-column.blue-background a:hover {
  color: white;
  background: #1f1e57;
  border-color: #1f1e57;
}

@media only screen and (max-width:1200px){
  header .header-button-link-column{
    display: none;
  }
}


@media only screen and (min-width:1025px) {
  header .nav-column {
    margin-left: auto;
  }

  header .mobile-li {
    display: none;
  }

  header .nav-list {
    display: flex;
    column-gap: 8px;
  }

  header .nav-list>li>a {
    color: white;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    padding: 6px 8px;
    line-height: 1.375;
    text-wrap: nowrap;
    transition:0.3s linear;
  }

  header .nav-list>li>a:hover{
    color:#4FC1EF;
  }

  header .nav-list>li>a i{
    width:24px;
    display:flex;
    justify-content: end;
    align-items: center;
    font-size:15px;
    transform:translate(-2px, -2px);
  }

  header .nav-list>li .submenu-container{
    position: absolute;
    display:block;
    visibility: hidden;
    transition: visibility 0.3s ease-in-out;
  }

  header .nav-list li .submenu-container>div{
    position: relative;
    top:10px;
  }

  header .nav-list .submenu-list{
    padding:10px;
    background:rgba(255, 255, 255, 0.9);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }

  header .nav-list .submenu-list a{
    display:block;
    padding:6px 12px;
    line-height:20px;
    text-transform: uppercase;
    color:black;
    transition:0.3s linear;
  }

  header .nav-list .submenu-list a:hover{
    color:#4FC1EF
  }

  header .nav-list>li:hover .submenu-container{
    visibility: visible;
  }
}

/* mobile header styles */
@media only screen and (max-width:1024px){
  header .expansion-button-column{
    display:block;
  }
  header .nav-column,
  header .expansion-button .fa-close{
    display:none;
  }
  header .inner-main-row{
    justify-content: space-between;
  }
  header .expansion-button{
    display:flex;
    justify-content: center;
    align-items: center;
    width:36px;
    height:36px;
    background:none;
    color:white;
    font-size:22px;
  }

  header .nav-column{
    display:block;
    position: absolute;
    left:0;
    width:calc(100% - 109px);
    background:rgba(255, 255, 255, 0.9);
    left:109px;
    top:132px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }

  header .nav-column{
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.2s ease-in-out;
    max-height:0;
  }

  header.skin-nav-menu-open .nav-column{
    transform: scale(1);
    max-height: 100vh;
  }
  
  header .nav-column>div{
    padding:10px;
  }
  header .nav-column .nav-list>li>a{
    display:flex;
    padding:6px 12px;
    line-height:1.375;
    color:black;
    text-transform:uppercase;
  }
  header .nav-column .nav-list>li>a i{
   display:flex;
   width:14px;
   justify-content: center;
   margin-left:10px;
  }

  /*  */
  header .submenu-opened .submenu-container{
    display:block;
  }

  header .submenu-list{
    margin-left:13px;
    border-left:1px solid rgb(78, 193, 239);
  }

  header .submenu-list a{
    display:flex;
    padding:6px 12px;
    line-height:20px;
    text-transform: uppercase;
    color:black;
  }

  header.skin-nav-menu-open .expansion-button .fa-bars{
    display:none;
  }
  header.skin-nav-menu-open .expansion-button .fa-close{
    display:block;
  }
}

/* footer styles */

footer {
  font-family: "Questrial", sans-serif;
}

footer a:hover,
footer a:focus,
footer a:active {
  text-decoration: none;
} 

footer .footer-container {
  display: block;
}

footer ul{
  list-style:none;
}

footer * {
  margin: 0;
}

footer .logo-column{
  max-width:343px;
  width:100%;
}

footer .logo-column img{
  max-width:343px;
  width:100%;
}

footer .main-row{
  background:#1f1e57;
  padding:100px 5%;
}

footer .inner-main-row{
  max-width:953px;
  width:100%;
  margin:0 auto;
  display:flex;
  justify-content: space-between;
}

footer .social-list{
  margin-top:20px;
  display:flex;
  justify-content: center;
  column-gap:5px;
}

footer .social-list a{
  display:flex;
  align-items: center;
  justify-content: center;
  width:30px;
  height:30px;
  border-radius:100%;
  background:white;
}

footer .social-list a.facebook-a span{
  display:flex;
  justify-content: center;
  align-items: center;
  width:20px;
  height:20px;
  background:#1F1E57;
  border-radius:100%;
}

footer .social-list a.facebook-a i{
  color:white;
  font-size:16px;
  transform:translateY(2px);
}

footer .social-list a.instagram-a{
  font-size:22px;
  color:#1F1E57;
}

footer .quick-links-column{
  width:17%;
}

footer h2{
  border:none;
  margin:0;
  padding:0;
  font-size:15px;
  font-weight:400;
  color:white;
  text-transform: uppercase;
  line-height:1.375;
  margin-bottom:20px;
}

footer .quick-links-list li a{
  display:block;
  margin-bottom:10px;
  line-height:1.375;
  color:white;
  font-size:15px;
  text-transform: uppercase;
  transition:0.3s linear;
}

footer .quick-links-list li a:hover{
  color:#4FC1EF;
}

footer .lower-row{
  padding:10px 0;
  text-align: center;
}

footer .lower-row p{
  line-height:1.375;
  font-size:16px;
  color:black;
}

footer .lower-row p a{
  color:black;
  text-decoration: underline;
  font-size:24px;
  display:inline-block;
  margin-top:5px;
  transition:0.3s linear;
}

footer .lower-row p a:hover{
  color:#4FC1EF;
}

@media only screen and (max-width:1024px){
  footer .inner-main-row{
    flex-direction: column;
    align-items: center;
    text-align: center;
    row-gap:40px;
  }
  footer .quick-links-column{
    width:100%;
  }
}