#slider{
    /*position: relative;*/
    height: 400px;
    margin-bottom: 0 !important;
}

.slide {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100%;
  height: inherit;
  font-family: 'Source Sans Pro', sans-serif;
  background-color: #D4DAD9;
  color: #252525;
  overflow: hidden;
  /*position: absolute;*/
}

.card {
  width: 100%;
  height: 100vh;
  display: flex;
  box-shadow: 0 30px 40px -15px rgba(0, 0, 0, 0.35);
  background-color: #fff;
}

.card__img {
  background-position: center;
  width: 70%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

#img01 {
  background-image: url("../images/main-prev.jpg");
}

#img02 {
  background-image: url("../images/main-prev.jpg");
}

#img03 {
  background-image: url("../images/main-prev.jpg");
}

.card__content {
  padding: 9.5% 1%;
  box-sizing: border-box;
  width: 30%;
}

.card__content-theme {
  font-weight: 900;
  font-size: 1.7vmin;
}

.card__content-header {
  font-weight: 900;
  font-size: 54px;
  font-size: 7vmin;
  text-transform: capitalize;
  letter-spacing: 0.01em;
  line-height: 0.91;
  margin: 1vmin 0 1.5vmin;
}

.card__content-paragraph {
  font-size: 1.0em;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 2.5vmin;
}

.card__content-link {
  color: #BA3428;
  font-size: 1.0em;
  display: block;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.card__content-link:hover {
  opacity: 1;
}
.card__content-link:after {
  content: "\2192";
}

.prevnext {
  position: absolute;
  width: 4vmin;
  height: 8vmin;
  right: 2%;
  bottom: 0;
  top: 0;
  margin: auto 0;
}

.prevnext-button {
  width: 100%;
  height: 50%;
  border: 0;
  background-color: transparent;
  font-size: 20px;
}

#prev, #next {
  position: relative;
  cursor: pointer;
}
#prev:hover:after, #prev:hover:after, #next:hover:after, #next:hover:after {
  opacity: 1;
}

/*#prev:after, #next:after {*/
/*  position: absolute;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  left: 0;*/
/*  right: 0;*/
/*  top: 0;*/
/*  bottom: 0;*/
/*  margin: auto;*/
/*  opacity: 0.6;*/
/*  transition: opacity 0.3s ease;*/
/*}*/

/*#prev:after {*/
/*  content: '\2191';*/
/*  font-size: 2em;*/
/*  margin-bottom: 1em;*/
/*}*/

/*#next:after {*/
/*  content: '\2193';*/
/*  font-size: 2em;*/
/*}*/