@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');
*{box-sizing: border-box;padding: 0;margin: 0;font-family: 'League Spartan', sans-serif;}
.container{max-width: 1170px;margin: 0 auto;}
 span a, a:hover
  {
    text-decoration: none;
    color: #42a0be;
  }
  h2{font-size: 40px;}
  h3{ color:#1b68a3; }


section.banner {position: relative;padding: 30px 0 30px;background-size: cover;background-repeat: no-repeat;}

.bannertext 
  {
    width: 100%;
    padding: 0;
    text-align: center;
  }
.bannertext h1 
{
    color: #fff;
    font-size: 45px;
    letter-spacing: 1px;
    
}
.flexp{
    margin-top: 20px;
    justify-content: center;
}
.flexp span
 {
    padding-left: 7px;
    font-size: 18px;
}
.accordion {
  background-color: #1b68a3;
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}

.active, .accordion:hover 
{
  background-color: #42a0be;
}

.accordion:after {
  content: '\002B';
  color: white;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
}

.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}



