@charset "UTF-8";

.three-col-grid {
    width: 100%;
    padding: 20px 0 20px;
}

.three-col-grid .col {
    width: 100%;
    max-width: 500px;
}

.three-col-grid .col a:link, .three-col-grid .col a:visited, .three-col-grid .col a:link:hover,  .three-col-grid .col a:active {
    text-decoration: none;
    color: #2e2e2e;
}

.three-col-grid img {
    width: 100%;
    height: auto;
}

.three-col-image {
    width: 100%;
    margin: 0;
    height: auto;
    border: 1px solid black;
}

.three-col-caption {
    font-family: "DIN W01 Regular";
    font-weight: 700;
    font-size: 14px;
    line-height: 1.8;
    color: #2e2e2e;
    background-color: #FFCC33;
    text-align: center;
    white-space: nowrap;
    padding: 3px 0;
}

.three-col-grid:after {
    content: "";
    display: table;
    clear: both;
}

@media screen and (min-width: 1024px) {
    .three-col-grid {
        width: 900px
    }

    .three-col-grid .col:not(:first-child) {
        margin-left: 30px;
    }

    .three-col-grid .col {
        float: left;
        width: 280px;
    }
}

.two-col-grid {
    width: 100%;
    padding: 30px 0 20px;
}

.two-col-grid .col {
    width: 100%;
}

.two-col-grid h2 {
    color: #2e2e2e;
    font-size: 24px;
}

.two-col-btn .model-button {
    width: 100%;
}

@media screen and (min-width: 1024px) {
    .two-col-grid {
        width: 900px;
    }

    .two-col-grid .col {
        float: left;
        width: 50%;
    }

    .two-col-grid .col:first-child {
        padding-right: 30px;
    }

    .two-col-grid .col:not(:first-child) {
        padding-left: 30px;
    }
}

.two-col-grid:after {
    content: "";
    display: table;
    clear: both;
}

.media-show-container {
    font-family: "DIN W01 Regular";
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4rem;
    width: 100%;
    padding: 30px 0 30px;
}

.media-show-container .media-logo-image {
    float: left;
    margin-right: 30px;
}

.media-show-container .media-logo-image img {
    border: 0;
}

.model-button {
    display: inline-block;
    padding: 12px 12px;
    width: 200px;
    min-width: 180px;
    max-width: 100%;
    color: #000;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.2;
    font-family: "Rhode Med Cond", "Arial Narrow", sans-serif;
    font-weight: normal;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #ffcc31;
    background: rgba(255, 204, 49, 0.27);
  }
  
  .model-button:active, .model-button:hover, .model-button:focus {
    color: #000;
  }
  
  @media screen and (max-width: 479px) {
    .model-button {
      width: 100%;
    }
  }
  
  .model-button:active, .model-button:hover, .model-button:focus {
    border: 1px solid #555;
    background: rgba(255, 204, 49, 0.54);
  }

  .model-image {
    width: 200px;
    height: auto;
    border: 0;
  }