img {
  border-style: none;
  max-width: 100%;
  height: auto;
}
iframe {
    width: 100%;
    height: 100%;
    display: block;
    max-width: 100%;
}
.dj-projects-card-wrapper {}

.dj-projects-card-wrapper .dj-projects-card-container {
  vertical-align: top;
  margin-bottom: 40px;
  padding: 10px 10px;
}


.image-container img {
  width: 100%;
}

.dj-projects-info {
  padding-top: 50px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
}

.dj-projects-card {
  position: relative;
  border: 1px solid rgb(84 144 177 / 10%);
  border-radius: 10px;
  transition: 0.5s;
  background-color: #fff;
  box-shadow: 0 0 30px rgb(84 144 177 / 10%);
}

.dj-projects-card:hover {
  border: 1px solid rgb(0 164 189 / 17%);
  box-shadow: 0 0 30px rgb(0 164 189 / 17%);
  transform: scale(1.05);
  transition: 0.5s;
}

.dj-projects-card h3 {
  font-size: 18px;
  display: inline-block;
  margin-bottom: 0;
}

.dj-projects-card h4 {
  float: right;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 0;
}
/* Black monitor outline */
.image-container {
  height: 350px;
  -webkit-transition: width 0.4s ease, height 0.4s ease;
  -moz-transition: width 0.4s ease, height 0.4s ease;
  -o-transition: width 0.4s ease, height 0.4s ease;
  transition: width 0.4s ease, height 0.4s ease;
}

.monitor {
  padding: 4%;
  position:relative;
  background: #051514;
  border-radius: 10px;
  height: 100%;
}

/* Camera on top of the monitor */
.monitor:before {
  content: "";
  display: block;
  background: #eee;
  position: absolute;
  padding: 0.8%;
  margin-right: -0.4%;
  border-radius: 50%;
  right: 50%;
  top: 1.8%;
}

/* Power button on the bottom of monitor */
.monitor:after {
  content: "";
  display: block;
  background: #AAB2BD;
  position: absolute;
  padding: 1%;
  border-radius: 10%;
  right: 4%;
  bottom: 1.5%;
}

/* The container of the content */
.screen {
  height: 100%;
  /*overflow: hidden; /* so that scroll bar is hidden */
}

/* Scrollable section inside the screen */
.content {
  height: 100%;
  width: calc(100% + 17px); /* 17px for scroll bar */
  overflow-y: scroll;
  position: relative;
}
.content.no_scroll{
}

.screen:after {
  content:'';
  display: block;
  height: 88%;
  background: #000;
  position: absolute;
  right: 0;
  top: 6%;
  width: 4%;
}

/* Image on the screen */
.content img {
  display: block;
  width: 100%;
}

/* Stand */
.monitor-stand {
  position: relative;
  margin: 0 auto;
  height: 10%;
  width: 20%;
  background: #F3F3F4;
}

/* Shadow on stand - have to set manually since border-top doesn't support % :( */
.monitor-stand {
  border-top: 24px solid #D1D3D6;
}

/* Bottom of stand */
.monitor-stand:after {
  /* content: '';
  position: absolute;
  background: #E7E8E9;
  height: 20%;
  width: 200%;
  margin-left: -50%;
  margin-top: 29%;
  border-radius: 5px;*/
}

/* Shadow */
.monitor-stand:before {
  /*content: '';
  position: absolute;
  width: 250%;
  height: 50%;
  margin-left: -75%;
  margin-top: 60%;
  opacity: 0.3;
  background: #000;
  border-radius: 50%;*/
}

.pagination-wrapper ul {
    text-align: center;
    padding: 0;
    margin: 0;
    list-style: none;
}
.pagination-wrapper ul li {
    margin: 0 10px;
    display: inline-block;
}
.pagination-wrapper ul li.disabled-pagination-link {
    opacity: 0.5;
    pointer-events: none;
}

/* 1200px and less ------------------------------ */
@media (max-width: 1200px) {


  .monitor-stand {
    border-top: 20px solid #D1D3D6;
  }
}

/* 992px and less ------------------------------ */
@media (max-width: 992px) {


  .monitor-stand {
    border-top: 15px solid #D1D3D6;
  }
}

/* 768px and less ------------------------------ */
@media (max-width: 768px) {
  .monitor-stand {
    border-top: 12px solid #D1D3D6;
  }
}

/* 480px and less ------------------------------ */
@media (max-width: 480px) {
  .monitor-stand {
    border-top: 8px solid #D1D3D6;
  }
}

/* 320px and less ------------------------------ */
@media (max-width: 320px) {

  .oops {
    display: block;
  }
}

.image-container {
  position: relative;
}

.scroll-downs {
  position: absolute;
  /* top: 0; */
  right: 30px;
  bottom: 30px;
  margin: auto;
  width: 34px;
  height: 55px;
  opacity: 0.5;
}
.mousey {
  width: 3px;
  padding: 10px 15px;
  height: 35px;
  border: 2px solid #fff;
  border-radius: 25px;
  opacity: 0.75;
  box-sizing: content-box;
}
.scroller {
  width: 3px;
  height: 10px;
  border-radius: 25%;
  background-color: #fff;
  animation-name: scroll;
  animation-duration: 2.2s;
  animation-timing-function: cubic-bezier(.15,.41,.69,.94);
  animation-iteration-count: infinite;
}
@keyframes scroll {
  0% { opacity: 0; }
  10% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(15px); opacity: 0;}
}
nav.row.dj_db_pagination a {
    margin-right: 10px;
}