@media screen and (min-width: 768px) {
  #blog-entries {
    display: flex;
    flex-wrap: wrap;
    margin: 0 20px;
  }
}

@media screen and (min-width: 960px) {
  #blog-entries {
    margin: 0 20px;
  }
}

@media screen and (min-width: 768px) {
  #blog-entries .blog-entry {
    width: 50%;
    padding: 0 20px;
  }
}

@media screen and (min-width: 960px) {
  #blog-entries .blog-entry {
    width: 33.3%;
  }
}

#blog-entries .blog-entry .blog-entry-inner .blog-entry-media {
  max-width: 400px;
  margin: 0 auto 20px;
}

@media screen and (min-width: 960px) {
  #blog-entries .blog-entry .blog-entry-inner .blog-entry-media a:hover {
    opacity: 0.6;
    transition: all 0.2s ease;
  }
}

@media screen and (min-width: 960px) {
  #blog-entries .blog-entry .blog-entry-inner .blog-entry-readmore a:hover {
    background: #ef6348;
    transition: all 0.2s ease;
  }
}

#single-blocks .single-post-title {
  border-bottom: 2px solid #000;
  padding-bottom: 5px;
}

@media screen and (min-width: 768px) {
  #single-blocks .single-post-title {
    padding-bottom: 10px;
  }
}

@media screen and (min-width: 960px) {
  #single-blocks .single-post-title {
    padding-bottom: 15px;
  }
}

.member .single-blog-article h2, .service .single-blog-article h2, .share-service .single-blog-article h2, .case .single-blog-article h2 {
  background: #eee;
  padding: 10px 15px;
  border-radius: 5px;
}

@media screen and (min-width: 960px) {
  .member .single-blog-article h2, .service .single-blog-article h2, .share-service .single-blog-article h2, .case .single-blog-article h2 {
    padding: 20px 15px;
  }
}

.member .single-blog-article h3, .service .single-blog-article h3, .share-service .single-blog-article h3, .case .single-blog-article h3 {
  border-left: 3px solid #000;
  padding: 5px 10px;
}

@media screen and (min-width: 960px) {
  .member .single-blog-article h3, .service .single-blog-article h3, .share-service .single-blog-article h3, .case .single-blog-article h3 {
    padding: 5px 15px;
  }
}

.member .single-blog-article ul li, .service .single-blog-article ul li, .share-service .single-blog-article ul li, .case .single-blog-article ul li {
  list-style: none;
  position: relative;
  padding-left: 15px;
}

.member .single-blog-article ul li::before, .service .single-blog-article ul li::before, .share-service .single-blog-article ul li::before, .case .single-blog-article ul li::before {
  content: "";
  width: 3px;
  height: 3px;
  background: #000;
  display: block;
  position: absolute;
  top: 0.8em;
  left: 0;
}

@media screen and (min-width: 960px) {
  .member .single-blog-article p, .service .single-blog-article p, .share-service .single-blog-article p, .case .single-blog-article p {
    padding: 0 20px;
  }
}

.member .single-blog-article .meta li:before, .service .single-blog-article .meta li:before, .share-service .single-blog-article .meta li:before, .case .single-blog-article .meta li:before {
  content: "";
  display: none !important;
}

.logos {
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
  }
}

.logos .logo_item-vertical {
  max-width: 400px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .logos .logo_item-vertical {
    width: 40%;
    margin: 0;
    max-width: none;
  }
}

.logos .logo_item-vertical img {
  max-width: 270px;
  margin: 0 auto;
  display: block;
}

.logos .logo_item-horizontal {
  max-width: 400px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .logos .logo_item-horizontal {
    width: 60%;
    margin: 0;
    max-width: none;
  }
}

.logos .logo_item-horizontal img {
  max-width: 400px;
  margin: 0 auto;
  display: block;
}

@media screen and (min-width: 768px) {
  .logos .logo_item-horizontal img {
    margin: 80px auto 0;
  }
}

.btn.btn-red {
  margin-top: 25px;
  background-color: #ef6348;
  color: #fff;
  max-width: 400px;
  text-align: center;
  position: relative;
  border-radius: 5px;
  padding: 10px;
  display: block;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .btn.btn-red {
    margin-top: 50px;
  }
}

.btn.btn-red::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}

.btn.btn-red:hover {
  text-decoration: none;
  opacity: 0.6;
  transition: all 0.2s ease;
}

.btn.btn-black {
  margin-top: 25px;
  background-color: #000;
  color: #fff;
  max-width: 400px;
  text-align: center;
  position: relative;
  border-radius: 5px;
  padding: 10px;
  display: block;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .btn.btn-black {
    margin-top: 50px;
  }
}

.btn.btn-black::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}

.btn.btn-black:hover {
  text-decoration: none;
  opacity: 0.6;
  transition: all 0.2s ease;
}

.form-table th {
  border: none;
  display: block;
  width: 100%;
  padding: 10px 0 5px 0 !important;
}

@media screen and (min-width: 768px) {
  .form-table th {
    display: table-cell;
    width: 30%;
    padding: 25px 10px !important;
    vertical-align: middle;
    border-bottom: 1px solid #ccc;
  }
}

.form-table th .must {
  font-size: 12px;
  color: #ef6348;
  margin-left: 10px;
}

.form-table td {
  border: none;
  display: block;
  width: 100%;
  padding: 5px 0 10px 0 !important;
}

@media screen and (min-width: 768px) {
  .form-table td {
    display: table-cell;
    width: 70%;
    padding: 25px 10px !important;
    vertical-align: middle;
    border-bottom: 1px solid #ccc;
  }
}

.form-table td input {
  width: 100%;
}

.submit {
  text-align: center;
}

.cpt-entry.span_1_of_1 .cpt-entry-inner {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
}

.cpt-entry-title {
  font-size: 18px !important;
}

@media screen and (min-width: 768px) {
  .cpt-entry-title {
    font-size: 22px !important;
  }
}

.cpt-entry-title a {
  background: #eee;
  padding: 10px 15px;
  border-radius: 5px;
  display: block;
  transition: all 0.2s ease;
}

@media screen and (min-width: 768px) {
  .cpt-entry-title a {
    padding: 20px 15px;
  }
}

@media screen and (min-width: 768px) {
  .cpt-entry-title a:hover {
    background: #ccc;
    transition: all 0.2s ease;
  }
}

.post-tags {
  padding-top: 40px;
}

@media screen and (min-width: 768px) {
  .post-tags {
    padding-top: 80px;
  }
}

.post-pagination-wrap {
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .post-pagination-wrap {
    margin-top: 80px;
  }
}

.single-blog-article h2 {
  background: #eee;
  padding: 10px 15px;
  border-radius: 5px;
}

@media screen and (min-width: 960px) {
  .single-blog-article h2 {
    padding: 20px 15px;
  }
}

.single-blog-article h3 {
  border-left: 3px solid #000;
  padding: 5px 10px;
}

@media screen and (min-width: 960px) {
  .single-blog-article h3 {
    padding: 5px 15px;
  }
}

.single-blog-article blockquote {
  background: none !important;
  padding: 20px !important;
  margin: 30px 0 !important;
  font-size: 14px !important;
  color: #000 !important;
  border: 5px solid #eee !important;
}

.single-blog-article a {
  text-decoration: underline;
}

.single-blog-article a:hover {
  text-decoration: none;
}

.single-blog-header {
  margin-top: 20px;
}

@media screen and (min-width: 960px) {
  .single-blog-header {
    margin-top: 40px;
  }
}

.mediakit-pass .mediakit-pass__title {
  text-align: center;
}

.mediakit-pass .mediakit-pass__text {
  text-align: center;
  margin: 20px 0;
}

@media screen and (min-width: 960px) {
  .mediakit-pass .mediakit-pass__text {
    margin: 40px 0;
  }
}

.mediakit-pass .mediakit-pass__body {
  max-width: 600px;
}

@media screen and (min-width: 520px) {
  .mediakit-pass .mediakit-pass__body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 auto;
  }
}

@media screen and (min-width: 520px) {
  .mediakit-pass .mediakit-pass__body .mediakit-pass__ttl {
    width: 20%;
  }
}

@media screen and (min-width: 520px) {
  .mediakit-pass .mediakit-pass__body .mediakit-pass__form {
    width: 80%;
  }
}

.mediakit-pass .mediakit-pass__submit {
  margin: 30px auto;
  width: 160px;
}

.mediakit-pass .mediakit-pass__submit input {
  border: 2px solid #000;
  background: #fff !important;
  text-align: center;
  color: #000 !important;
  border-radius: 3em;
  width: 100%;
}
