*{
    margin: 0;
    padding: 0;
}

body {
  display: flex;
  justify-content: center;
  font-family: calibri;
}


.dark {
  flex-direction: column;
}


.rslides {
  margin: 0 auto 40px;
}

.callbacks_container {
  position: relative;
  width: 100%;
}

.callbacks_nav {
  position: absolute;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  top: 52%;
  left: 0;
  opacity: 0.7;
  z-index: 3;
  text-indent: -9999px;
  overflow: hidden;
  text-decoration: none;
  height: 61px;
  width: 38px;
  background: transparent url("themes/themes.gif") no-repeat left top;
  margin-top: -45px;
}

.callbacks_nav:active {
  opacity: 1.0;
}

.callbacks_nav.next {
  left: auto;
  background-position: right top;
  right: 0;
}


.images {
  display: flex; 
  gap: 20px;
  width: 100%;
}

.tekstmobile {
  width: 100%;
}

.tekst {
  height: 100%;
}


@media (max-width: 1340px) {
  .tekst {
    display: none;
  }

  .images { 
    flex-direction: column;
  }

  .tekstmobile {
    display: block;
  }
}

@media (min-width: 1340px) {
	.tekst {
    display: block;
  }

  .images { 
    flex-direction: row;
  }

  .tekstmobile {
    display: none;
  }
}