
/* -- */


.card
{
  position: relative;

  width: 90%;
  height: auto;
  margin: 0 auto;

  box-sizing: border-box;
  padding: 8% 10%;

  background-color: var(--white-color);
  background-image: url('../img/bg_lines.jpg');
  background-size: cover;

  box-shadow:
     8px 12px 10px rgba(0,0,0, 0.1),
    14px 20px 30px rgba(0,0,0, 0.2),
    24px 36px 60px rgba(0,0,0, 0.3);

  text-align: left;

  opacity: 0;
  transition: opacity 2s ease;

}


/* -- */


.card::before
{
  position: absolute;
  content: "";

  width: 100%;
  height: 16px;

  top: -16px;
  left: 8px;

  background: #E8EBED;
  border-right: 1px solid #B0B0B0;
  border-bottom: 1px solid #D0D0D0;

  transform: skewX(-45deg);
}

.card::after
{
  position: absolute;
  content: "";

  width: 16px;
  height: calc(100% - 1px);

  top: -8px;
  right: -16px;

  background: #AFB3B9;
  border-top: 1px solid #B0B0B0;
  border-left: 1px solid #D0D0D0;

  box-shadow:
     8px 12px 10px rgba(0,0,0, 0.1),
    14px 20px 30px rgba(0,0,0, 0.25),
    24px 36px 60px rgba(0,0,0, 0.4);

  transform: skewY(-45deg);
}


/* -- */


.card_head
{
  width: calc(100% - 1px);
  line-height: 180%;
  margin-bottom: 60px;
  border-bottom: 2px solid var(--accent-color);

  font-family: "Raleway";
  font-size: 190%;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;

  color: var(--accent-color);
}


/* -- */
