@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
.swiper-button-prev:after {
  color: white;
}

.swiper-button-next:after {
  color: white;
}

.swiper-pagination-bullet {
  color: white;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  text-decoration: none;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #2d5493;
}

.w100 {
  width: 100%;
}

.w80 {
  width: 100%;
}

.w50 {
  width: 100%;
}

.f16 {
  font-size: 16px;
}

.f18 {
  font-size: 18px;
}

.f20 {
  font-size: 20px;
}

.f22 {
  font-size: 22px;
}

.f24 {
  font-size: 24px;
}

.f28 {
  font-size: 28px;
}

.f30 {
  font-size: 30px;
}

.f40 {
  font-size: 40px;
}

.bg-blue {
  background-color: #2d5493;
}

.bg-white {
  background-color: white;
}

.blue {
  color: #2d5493;
}

.gold {
  color: #a48c23;
}

.white {
  color: #eee;
}

.pdg-rect {
  padding: 5px 10px;
}

.pdg-small {
  padding: 3px;
}

.pdg-medium {
  padding: 5px;
}

.pdg-large {
  padding: 10px;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.space-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.block-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.grid4 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
}

.grid3 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
}

.grid2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
}

.center {
  text-align: center;
}

.upper {
  text-transform: uppercase;
}

.no-wrap {
  white-space: nowrap;
}

.title-1 {
  font-size: 20px;
  color: #a48c23;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
}

.prgf {
  text-align: justify;
}

.overflow-x {
  scrollbar-width: none;
  overflow-x: scroll;
}

.overflow-x::-webkit-scrollbar {
  display: none;
}

.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  z-index: 100;
}

#alert {
  background-color: #fff159;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#alert .txt {
  display: inline-block;
  width: 100%;
  text-align: center;
  color: #2d5493;
  vertical-align: middle;
  padding: 5px;
}

#alert .noalert {
  display: inline-block;
  padding: 3px 8px;
  margin: 2px 5px 2px 2px;
  border-radius: 3px;
  font-size: 18px;
  background-color: #2d5493;
  color: #fff159;
}

#menuandlogo {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  z-index: 101;
  background-color: #eee;
}

#menuandlogo .logo {
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  position: relative;
}

#menuandlogo .logo div a {
  display: inline-block;
  height: 100%;
}

#menuandlogo .logo div a img {
  height: inherit;
}

#menuandlogo .logo #menutoggle {
  position: absolute;
  top: 7px;
  right: 10px;
}

#menuandlogo #navigation_container {
  display: none;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  height: calc( 100vh - 70px);
}

#menuandlogo #navigation_container nav {
  width: 100%;
}

#menuandlogo #navigation_container .navigation {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
  width: 100%;
  height: 100%;
}

#menuandlogo #navigation_container .navigation > li {
  display: block;
  width: 100%;
  padding: 10px 15px;
  margin: 2px;
  position: relative;
}

#menuandlogo #navigation_container .navigation > li a {
  color: #2d5493;
  text-transform: uppercase;
}

#menuandlogo #navigation_container .navigation > li .submenu {
  height: 0px;
  overflow: hidden;
  background-color: green;
  padding: 0px;
  left: 10%;
  border-radius: 5px;
}

#menuandlogo #navigation_container .navigation > li .submenu > li {
  padding: 5px 15px;
  margin: 0px;
  height: 0px;
  overflow: hidden;
  background-color: #eee;
  -webkit-transition: height 500ms ease;
  transition: height 500ms ease;
}

#menuandlogo #navigation_container .navigation > li .submenu > li a {
  color: #a48c23;
  text-transform: uppercase;
}

#menuandlogo #navigation_container .navigation > li .submenu > li a:visited {
  color: #a48c23;
}

#menuandlogo #navigation_container .navigation > li .submenu > li:hover {
  background-color: #ffffff;
}

#menuandlogo #navigation_container .navigation > li .submenu > li:hover a {
  color: #2d5493;
}

#menuandlogo #navigation_container .navigation > li:hover .submenu {
  height: auto;
}

#menuandlogo #navigation_container .navigation > li:hover .submenu > li {
  height: calc( 1em + 10px);
}

#menuandlogo #navigation_container .navigation > li:hover a {
  color: #a48c23;
}

.fast-item {
  width: 100%;
  border: 2px solid #a48c23;
  padding: 5px;
  border-radius: 5px;
  position: relative;
}

.fast-item img {
  width: 100%;
  border-radius: 5px;
}

.fast-item .container {
  position: absolute;
  width: calc( 100% - 10px);
  height: calc( 100% - 10px);
  margin: 5px;
  padding: 5px;
  bottom: 0px;
  left: 0px;
  color: white;
  font-size: 15px;
  border-radius: 0px 0px 5px 5px;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(44%, #2d5493), color-stop(96%, rgba(9, 9, 121, 0)));
  background: linear-gradient(0deg, #2d5493 44%, rgba(9, 9, 121, 0) 96%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.fast-item .container p {
  overflow: hidden;
}

.fast-item:hover .container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  background: #2d5493;
}

#footer {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  color: white;
}

#footer .left {
  text-align: left;
  color: white;
}

#footer .left a {
  color: white;
}

#footer .center {
  text-align: center;
  color: white;
}

#footer .center a {
  color: white;
}

#footer .right {
  text-align: left;
  color: white;
}

#footer .right a {
  color: white;
}

@media screen and (min-width: 480px) {
  .w100 {
    width: 100%;
  }
  .w80 {
    width: 80%;
  }
  .w50 {
    width: 50%;
  }
  .pdg-rect {
    padding: 3px 8px;
  }
  .pdg-small {
    padding: 5px;
  }
  .pdg-medium {
    padding: 10px;
  }
  .pdg-large {
    padding: 20px;
  }
  .grid4 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .grid3 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
  }
  .grid2 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
  #menuandlogo {
    all: unset;
    position: relative;
    z-index: 101;
    background-color: white;
    height: auto;
  }
  #menuandlogo .logo {
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    position: static;
  }
  #menuandlogo .logo div a {
    display: inline-block;
    height: 100%;
  }
  #menuandlogo .logo div a img {
    height: inherit;
  }
  #menuandlogo .logo #menutoggle {
    position: absolute;
    top: 5px;
    right: 10px;
    display: none;
  }
  #menuandlogo #navigation_container {
    position: -webkit-sticky;
    position: sticky;
    top: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    height: auto;
    background-color: white;
    z-index: 1000;
  }
  #menuandlogo #navigation_container nav {
    width: auto;
  }
  #menuandlogo #navigation_container .navigation {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    width: auto;
    height: auto;
  }
  #menuandlogo #navigation_container .navigation > li {
    display: inline-block;
    padding: 10px 15px;
    margin: 2px;
    position: relative;
    width: auto;
  }
  #menuandlogo #navigation_container .navigation > li a {
    color: #2d5493;
    text-transform: uppercase;
  }
  #menuandlogo #navigation_container .navigation > li .submenu {
    height: 0px;
    overflow: hidden;
    position: absolute;
    top: calc( 1em + 20px);
    left: 10%;
    border-radius: 5px;
    background-color: green;
    padding: 0px;
  }
  #menuandlogo #navigation_container .navigation > li .submenu > li {
    padding: 5px 15px;
    margin: 0px;
    height: 0px;
    overflow: hidden;
    background-color: #eee;
    -webkit-transition: height 500ms ease;
    transition: height 500ms ease;
  }
  #menuandlogo #navigation_container .navigation > li .submenu > li a {
    color: #a48c23;
    text-transform: uppercase;
  }
  #menuandlogo #navigation_container .navigation > li .submenu > li a:visited {
    color: #a48c23;
  }
  #menuandlogo #navigation_container .navigation > li .submenu > li:hover {
    background-color: #ffffff;
  }
  #menuandlogo #navigation_container .navigation > li .submenu > li:hover a {
    color: #2d5493;
  }
  #menuandlogo #navigation_container .navigation > li:hover .submenu {
    height: auto;
  }
  #menuandlogo #navigation_container .navigation > li:hover .submenu > li {
    height: calc( 1em + 10px);
  }
  #menuandlogo #navigation_container .navigation > li:hover a {
    color: #a48c23;
  }
  #footer {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    color: white;
  }
  #footer .left {
    text-align: left;
    color: white;
  }
  #footer .left a {
    color: white;
  }
  #footer .center {
    text-align: center;
    color: white;
  }
  #footer .center a {
    color: white;
  }
  #footer .right {
    text-align: right;
    color: white;
  }
  #footer .right a {
    color: white;
  }
  .fast-item .container {
    font-size: 20px;
  }
}
/*# sourceMappingURL=style.css.map */