@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

html {
  box-sizing: border-box;
  height: 100%;
}

*,
*::after,
*::before {
  box-sizing: inherit;
}

body {
  display: flex;
  margin: 0;
  flex-direction: column;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.2;
  height: 100%;
}

.container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  height: 100%;
  padding: 0 15px;
}

.navbar {
  left: 0;
  top: 0;
  width: 100%;
  height: 75px;
  background: #ffffff;
}

.navbar__wrap {
  display: flex;
  justify-content: space-between;
  height: 100%;
}

.hamb {
  display: none;
}

.popup {
  display: none;
}

.logo {
  text-decoration: none;
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.solnco{
  font-weight: 500;
  font-size: 25px;
  justify-content: right;
  color: #c96830;
}


.menu > li > a {
  text-decoration: none;
}

.navbar__wrap .menu {
  display: flex;
}

.navbar__wrap .menu > li {
  display: flex;
  align-items: stretch;
}

.navbar__wrap .menu > li > a {
  display: flex;
  align-items: center;
  padding: 0 20px;
  color: rgba(0, 0, 0, 0.7);
}

.navbar__wrap .menu > li > a:hover {
  color: rgb(184, 98, 0);
}

main{
  background-image: url(/img/pattern.jpg);
}

.main__box__programa__cel , .main__black__box__zadaci{ 
    margin-left: 3ch;
    margin-right: 3ch;
    margin-bottom: 8ch;
}

.main__box__img , .main__black__box__img , .main__red__box_img{
    width: 90%;
    border-radius: 35px;
    margin-left: 5%;
}

.main__container__programa , .main__container__obrazovanie , .main__txt{
    font-size: 20px;
    font-weight: 500;
    margin-left: 1ch;
    margin-top: 0;
    margin-bottom: 0;
    
}
.main__container__programa{
    margin-top: 10%;
}



/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

.img-pit{
  border-radius: 20px;
  max-width: 90%;
  margin-left:5% ;
}

/* Hide the images by default */
.mySlides {
    display: none;
    height: 10%;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: rgb(0, 0, 0);
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev, .next{
  background-color: rgba(0, 0, 0, 0.199);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #000000;
  font-size: 12px;
  margin-left: 10px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@media (max-width: 1000px) {
    .navbar__wrap .menu {
      display: none;
    }
  
    .hamb {
      display: flex;
      align-items: center;
    }
  
    .hamb__field {
      padding: 10px 20px;
      cursor: pointer;
    }
  
    .bar {
      display: block;
      width: 30px;
      height: 3px;
      margin: 6px auto;
      background-color: #c96830;
      transition: 0.2s;
    }
  
    .popup {
      position: fixed;
      top: 75px;
      left: -100%;
      width: 100%;
      height: 100%;
      background-color: #ffffff;
      z-index: 100;
      display: flex;
      transition: 0.3s;
    }
  
    .popup.open {
      left: 0;
    }
  
    .popup .menu {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: start;
      padding: 50px 0;
      overflow: auto;
    }
  
    .popup .menu > li {
      width: 100%;
    }
  
    .popup .menu > li > a {
      width: 100%;
      display: flex;
      justify-content: center;
      padding: 20px 0;
      font-size: 20px;
      font-weight: bold;
      color: #3f3f3f;
    }
  
    .popup .menu > li > a:hover {
      background-color: rgba(122, 82, 179, 0.1);
    }
  
    .hamb__field.active .bar:nth-child(2) {
      opacity: 0;
    }
  
    .hamb__field.active .bar:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }
  
    .hamb__field.active .bar:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }
  
    body.noscroll {
      overflow: hidden;
    }
  }

  @media (min-width: 1201px){
    .main__container__programa{
        margin-top: 10%;
    }
    .main__box__programa , .main__black__box , .main__red__box{
        display: flex;
        margin-left: 10%;
        margin-right: 10%;
    }
    .main__box__img , .main__black__box__img , .main__red__box_img{
        width: 20%;
        height: 30%;
        border-radius: 35px;
        margin-left: 5%;
    }
    .main__container__programa , .main__container__obrazovanie , .main__txt{
        margin-left: 10%;
        margin-top: 0;
        margin-bottom: 0;
    }
    .main__box__programa__cel , .main__black__box__zadaci , .main__red__box__vsiacina{ 
        margin-left: 3ch;
        margin-right: 3ch;
        margin-bottom: 8ch;
        font-size: 20px;
        font-weight: 500;
    }
    .main__box__programa__cel{
        background-color: #c96830;
        color: #ffffff;
        padding: 1ch;
        height: 50%;
        border-radius: 25px;
        opacity: 0.9;
    }
    .main__black__box__zadaci{
        background-color: #c96830;
        color: #ffffff;
        padding: 1ch;
        height: 50%;
        border-radius: 25px;
        opacity: 0.9;
    }
    .main__red__box__vsiacina{
        background-color: #c96830;
        color: #ffffff;
        padding: 2ch;
        height: 50%;
        border-radius: 25px;
        opacity: 0.9;
    }
  }
   