/*
Regular - 400
Medium - 500
Semi-bold - 600
Bold - 700
*/

#page-wrapper.blog-posts {
    min-height: calc(100vh - 349px);
}

#blog {
    padding: 40px 0;
}

/*
#blog .blog-title {
    position: relative;
    margin: 0 auto 50px auto;
    width: 580px;
    height: 116px;
}
*/

#blog .blog-title {
    position: relative;
    margin: 0 auto 50px auto;
    width: 40%;
    max-width: 400px;
    height: auto;
}

#blog .blog-title img {
    width: 100%;
}

#blog .blog-title .text {
    width: 320px;
    padding-left: 6px;
    position: absolute;
    top: 61%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    text-transform: uppercase;
    z-index: 2;
}

#blog .blog-title .text .tm {
    font-size: 2.7rem;
    line-height: 2.7rem;
    letter-spacing: 5px;
    font-weight: 500;
}

#blog .blog-title .text .r {
    font-size: 4.6rem;
    line-height: 4.6rem;
}

#blog .blog-title .rule {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 1px;
    width: 100%;
    background: #000;
    z-index: 1;
}

#blog #blog-description {
    max-width: 67%;
    margin: 0 auto;
    letter-spacing: 2px;
    line-height: 1.5rem;
    text-align: center;
}

#blog .post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 0;
}

#blog .post .col1 {
    width: auto;
    margin-right: 50px;
}

#blog .post .col2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 600px;
    color: #000;
}

#blog .post .col1 img {
    max-width: 400px;
}

#blog .post .col2 .pretitle {
    width: 100%;
    margin-bottom: 10px;
    font-size: 1.25rem;
    line-height: 1.25rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
}

#blog .post .col2 .title {
    width: 100%;
    margin-bottom: 10px;
    font-size: 2rem;
    line-height: 2.5rem;
    font-weight: 600;
    text-align: left;
}

#blog .post .col2 .summary {
    font-size: 1rem;
    line-height: 1.5rem;
}

#blog .post .col2 a {
    display: block;
    margin-top: 13px;
    margin-right: auto;
    color: #fff;
    font-size: 1rem;
    line-height: 1rem;
    font-weight: 300;
    text-transform: uppercase;
    background: #454c58;
    padding: 12px 20px;
    text-decoration: none;
}

#blog .blog-post-rule {
    font-size: 0;
    height: 1px;
    margin: 45px auto 50px auto;
    width: 66%;
    background: #929190;
}

@media only screen and (max-width: 1100px) {
    #blog .post .col2 {
        width: 48%;
    }
}

@media only screen and (max-width: 1000px) {

}

@media only screen and (max-width: 930px) {
    #blog .post .col2 {
        width: 40%;
    }
}

@media only screen and (max-width: 900px) {

}

@media only screen and (max-width: 830px) {
    #blog .post {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    
    #blog .post .col1 {
        width: 100%;
        margin-bottom: 30px;
    }
    
    #blog .post .col1 img {
        display: block;
        margin: 0 auto;
    }
    
    #blog .post .col2 {
        width: 80%;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 800px) {
    #blog #blog-description {
        max-width: 80%;
    }
}

@media only screen and (max-width: 650px) {
    #blog .blog-title {
        width: 50%;
    }
}

/* ----------- iPhone X ----------- */
/* Portrait and Landscape */
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 812px) 
  and (-webkit-min-device-pixel-ratio: 3) {
      #blog .blog-title .text {
          width: 274px;
      }
      #blog .blog-title .text .tm {
          font-size: 2.2rem;
          line-height: 2.2rem;
      }
      
      #blog .blog-title .text .r {
          font-size: 3.85rem;
          line-height: 3.85rem;
      }
      
      #blog #blog-description {
          max-width: 90%;
      }
}