@import url('https://fonts.googleapis.com/css2?family=Palanquin:wght@100;200;300;400;500;600;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Palanquin', sans-serif;
    font-weight: lighter;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent;
}

header{
    width: 100%;
    height: 70px;
    padding: 15px 30px;
    background: #023960;
    color: #fff;
    position: sticky;
    z-index: 100;
    top: 0;
}
b{
  font-weight: 500;
}
.logo{
    height: 100%;
}
.nava{
    height: 100%;
    display: flex;
    align-items: center;
    position: absolute;
    right: 0;
    padding: 20px 30px;
    top: 0;

}
.nava a{
    margin-left: 10px;
    text-decoration: none;
    font-weight: lighter;
    color: #fff;
    padding: 5px 14px;
    font-size: 1.1em;
    background: #fff0;
    text-transform: uppercase;
    border-radius: 5px;
    transition: .3s ease;
    border: 1px solid #fff0;
}
.nava a:hover{
  border: 1px solid #fff;
}
.hero{
    width: 100%;
    height: calc(100vh - 70px);
    overflow: hidden;
    background: #000;
    position: relative;
}
.banner{
    width: 100%;
    height: calc(100vh - 70px);
    object-fit: cover;
    animation: fadein 2s;
}

.logob{
    height: 150px;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
    transform: translate(-50%, -50%);
    animation: fadein 3.5s;
}
.section{
  background: #456;
  color: #fff;
  display: flex;
  justify-content: center;
  gap: 3em;
  align-items: center;
  padding: 100px 40px;
}
.txh{
  width: 100%;
  max-width: 500px;
  flex: 1;
}
.imh{
  max-width: 300px;
}
.imh img{
  width: 100%;
}
.wrap{
  max-width: 600px;
  margin: 0 auto;
}
h2{
  text-align: left;
  font-weight: 700;
  font-size: 2em;
}
h3{
  text-align: left;
  font-weight: 700;
  font-size: 2em;
}

.page h2{
  font-size: 1.3em;
  color: #234;
}
hr{
  border-bottom: 1px solid #fff;
  margin-bottom: 30px;
}

.side{
  font-size: 1.3em;
  color: #fff;
  text-decoration-color: #fff0;
  text-underline-offset: 4px;
  text-decoration-style: dotted;
  transition: .3s ease;
  display: block;
  margin-bottom: 10px;
}
.side:hover{
  text-decoration-color: #fffa;
}
i{
  padding-right: 10px;
}
@keyframes fadein{
    0% { opacity:0; }
    50% { opacity:0; }
    100% { opacity:1; }
}

footer{
  background: #000;
  color: #fff;
  text-align: center;
  padding: 20px
}
footer a{
  color: #fffb;
  padding: 0 5px;
}

.page{
  width: 100%;
  min-height: 100vh;
  background: #ddd;
  padding: 30px 15px;
}
.tabs{
  max-width: 700px;
  margin:0 auto;
  color: #234;
}
.tab{
  font-weight: 500;
  display: inline-block;
  background: #fff;
  padding: 7px 20px;
}
.paper{
  max-width: 700px;
  text-align: justify;
  padding: 20px 25px;
  background: #fff;
  margin:0 auto;
}

.txtlogo{
  margin: 0 auto;
  display: block;
  padding: 20px;
}
.splide__slide{
  height: 100%;
}

@media screen and (max-width: 768px){
  .hero{
    height: 250px;
  }
  .splide__arrow{opacity: .3}
  .banner{
    height: 250px;
  }
    .nava, .imh{
        display: none;
    }
    .logo{
      margin: 0 auto;
      display: block;
    }


}
