.home_content {
  min-height: 800px;
  max-width: 100%;
  background-image: url(./assets/home_content_bg_image.png);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  margin: 0 !important;
}

.home_content_items {
  margin: 10px;
  border: 1px solid black;
  height: 500px;
  width: 300px;
}

/* ------- card area ---------*/

.img_in_home {
  height: 25%;
  width: 65%;
  margin: auto;
  margin-bottom: 5%;
  -webkit-box-shadow: 0px 1px 40px -12px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 1px 40px -12px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 1px 40px -12px rgba(0, 0, 0, 0.75);
  border-width: 1px;
  border-style: solid;
  border-color: #202e3d;
}

.card_container {
  margin-top: auto;
  margin-bottom: auto;
  margin-right: 20px;
  margin-left: 20px;
}

.card {
  border-width: 0 2px 0 0;
  border-style: solid;
  border-color: transparent #202e3d transparent transparent;
  border-radius: 0;
  margin: auto;
  background-color: transparent;
  min-width: 18em;
  height: 500px;
  margin: 0px;
}

.tri {
  margin-left: auto;
  margin-top: 10%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 50px 50px 0;
  border-color: transparent #202e3d transparent transparent;
  line-height: 0px;
  _border-color: #000000 #202e3d #000000 #000000;
  _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
}

.card-title {
  margin-top: 5%;
  font-family: roboto;
  font-size: 2.3em;
}

.card-text {
  margin-top: 15%;
  font-family: roboto;
  font-weight: 300;
}

.card:hover {
  background-color: #202e3d;
  border: 2px solid #BFAC7C;
  -webkit-box-shadow: 0px 4px 15px -1px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 4px 15px -1px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 4px 15px -1px rgba(0, 0, 0, 0.75);
}

.card:hover .card-text {
  color: white;
}

.card:hover .card-title {
  color: white;
}

.card:hover .tri {
  border-style: solid;
  border-width: 0 50px 50px 0;
  border-color: transparent #fff transparent transparent;
  line-height: 0px;
  _border-color: #000000 #fff #000000 #000000;
  _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
}

.hover_transitions {
  transition-duration: 350ms;
  transition-timing-function: ease-in;
}

@media (max-width: 768px) {
  .card {
    margin: 15px 0 15px 0;
  }
}

@media (max-width: 576px) {
  .home_video {
    display: none;
  }

  .home_content {
    background-image: url(none);
  }
}

@media (min-width: 576px) {
  .home_bg {
    display: none;
  }
}