/* reset */
*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
img { max-width: 100%; }

/* global */
body { margin: 0; font-family:'Montserrat',system-ui,sans-serif; }
img { -webkit-user-drag: none; user-drag: none; user-select: none; }


.container { 
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
}

#header {
    padding: 20px 0;   
}

#header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: visible;
}

#header a img {
    width: 132px;
    height: 29px;
    vertical-align: middle;
}

.langs {
    position:relative;
}
.langs summary{
    cursor:pointer;
    list-style:none;
    color: #333;
}
.langs summary::-webkit-details-marker{
    display:none
}
.langs div {
  position:absolute;
  right:0;
  top:100%;
  border: solid 1px #CCC;
  border-radius: 6px;
  background:#FFF;
  padding:6px;
}
.langs div a {
  display:block;
  padding:6px 10px;
  text-decoration:none;
  color: #333;
}

#footer {
    background: #13161f;
    padding: 20px 0;
    color: #FFF;
    text-align: center;
}

#footer a {
    color: #FFF;
    text-decoration: none;
}

#footer a img {
    vertical-align: middle;
}

/* slider */
#main {
background: #F7931A url('/inc/img/bg.jpg?') center center no-repeat;
background-size: cover;
    padding: 150px 0 100px;
    color: #FFF;
    text-align: center;

}

h1 {
  font-size:24px;
  margin-bottom: 30px;
}
#desc {
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  overflow:hidden;
}


.hero-title{margin:30px 0 0;text-align:center; font-size:36px; color:#fff}

.carousel{position:relative; /* max-width:1000px; */margin:0 auto;padding:0 52px}
.viewport{overflow:hidden;border-radius:18px}
.track{display:flex;transition:transform .45s ease;will-change:transform}
.slide{
  min-width:100%;
  padding:0 26px 56px;
  color:#fff;
  /* background: rgba(0,0,0,.12);
  border: 1px solid rgba(255,255,255,.18); */
  text-align: center;
}
.slide h3{margin:0 0 28px;font-size:36px}
.slide p{
  margin:0 auto;
  font-size:18px;
  line-height:1.45;   
  max-width: 33ch;
  text-wrap: balance;
  font-size:24px
}

.nav{
  position:absolute;top:10%;transform:translateY(-10%);
  width:42px;height:82px;border-radius:999px;
  /*  border:1px solid rgba(255,255,255,.25); */
  /* background:rgba(0,0,0,.22); */ color:#fff;
  cursor:pointer;font-size:42px;font-weight:700;
  border: 0;
  background: transparent;
}
.prev{left:10px} 
.next{right:10px}

.dots{display:flex;gap:10px;justify-content:center;margin-top:12px}
.dots button{
  width:10px;height:14px;border-radius:50%;
  border:1px solid rgba(255,255,255,.35);
  background:rgba(255,255,255,.18);
  cursor:pointer;
}
.dots button.active{background:#fff}

@media (max-width:700px){
  #main{
    padding: 45px 0 75px;
  }
  .carousel{
    padding: 0;
  }
  .slide{
    padding: 0;
  }
  .slide p{
    max-width: 100%;
  }
  .nav{
    width: auto;
  }
  .prev{left:-10px} 
  .next{right:-10px}

  .dots {
    margin-top:39px
  }
}



.info{
  margin:70px auto;
  display:grid;
  grid-template-columns: 1fr auto;
  gap:60px;
}

.info h4{
  margin-bottom:12px;
  font-weight:700;
}

.links a{
  display:block;
  margin-bottom:6px;
  text-decoration:none;
  color: #333;
}

.donate {
  overflow-wrap: anywhere;
  word-break: break-word;
}
.qr {
  width: 120px;
  height: 120px;
}


@media (max-width:700px){
  .info{
    margin:30px auto 45px;
    grid-template-columns:1fr;
    gap:5px;
  }
}
