::-webkit-input-placeholder {
  color: #231f20;
  opacity: 1;
}
:-moz-placeholder {
  color: #231f20;
  opacity: 1;
}
::-moz-placeholder {
  color: #231f20;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #231f20;
  opacity: 1;
}
.text_pole ::-webkit-input-placeholder {
  color: #737373;
  opacity: 1;
}
.text_pole :-moz-placeholder {
  color: #737373;
  opacity: 1;
}
.text_pole ::-moz-placeholder {
  color: #737373;
  opacity: 1;
}
.text_pole :-ms-input-placeholder {
  color: #737373;
  opacity: 1;
}
/*
 Flexbox grid @mixin
 EXAMPLE
 .flexbox {
 @include boxGrid(5, 4%);
 }
 */
header {
  background: #333;
}
header .logo-header {
  width: 217px;
  margin-right: 130px;
}
@media (max-width: 1024px) {
  header .logo-header {
    width: 150px;
    margin-right: 0;
  }
}
@media (max-width: 576px) {
  header .logo-header {
    padding: 10px 0;
  }
}
@media (max-width: 576px) {
  header .flex {
    justify-content: center;
  }
}
header nav ul li a {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #fff;
  display: block;
  padding: 45px 20px 50px;
  background: transparent;
  text-transform: capitalize;
}
header nav ul li a:hover {
  color: #fff;
  background: #ff6961;
}
@media (max-width: 576px) {
  header .search-btn-all {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}
header .search-btn-all .btn-wrap {
  display: block;
  position: relative;
  display: flex;
  align-items: center;
  grid-gap: 10px;
}
header .search-btn-all .btn-wrap .account_btns {
  position: relative;
}
@media (max-width: 1024px) {
  header .search-btn-all .btn-wrap .account_btns {
    display: flex;
    align-items: center;
    grid-gap: 10px;
  }
}
header .search-btn-all .btn-wrap .account_btns:hover .logout {
  opacity: 1;
  visibility: visible;
}
header .search-btn-all .btn-wrap .account_btns .logout {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -khtml-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -115%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -khtml-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 0;
}
@media (max-width: 1024px) {
  header .search-btn-all .btn-wrap .account_btns .logout {
    position: relative;
    visibility: visible;
    opacity: 1;
    width: auto;
    left: auto;
    bottom: auto;
    -webkit-transform: translateX(0);
    -khtml-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
@media (max-width: 1024px) {
  header .search-btn-all .btn-wrap .button {
    padding: 10px 10px 10px 10px;
  }
}
header .search-btn-all .btn-wrap .button.border {
  margin: 0;
}
header .search-box {
  position: relative;
  height: 50px;
  margin-right: 33px;
}
@media (max-width: 1024px) {
  header .search-box {
    display: none;
  }
}
header .search-box .search-field {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0;
  border: 1px solid transparent;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -khtml-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .search-box .search-btn-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  border: 1px solid #b1b1b1;
  border-radius: 50%;
}
header .search-box .search-btn-wrap .search-btn {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 50%;
  background: transparent;
  z-index: 1;
  padding: 0;
}
header .search-box .search-btn-wrap svg {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
header .search-box:hover .search-field {
  width: 170px;
  opacity: 1;
  visibility: visible;
}
header .search-box:hover .search-btn-wrap {
  background: #ff6961;
  border: 1px solid #fff;
}
footer {
  background: #333;
  padding: 54px 0 40px;
}
@media (max-width: 1024px) {
  footer {
    padding: 30px 0 30px;
    text-align: center;
  }
}
footer * {
  color: #fff;
}
footer .row {
  align-items: flex-end;
}
footer .logo-wrap {
  flex-basis: 53%;
}
@media (max-width: 1024px) {
  footer .logo-wrap {
    flex-basis: 100%;
  }
}
footer .form-wrap {
  flex-basis: 45%;
}
@media (max-width: 1024px) {
  footer .form-wrap {
    flex-basis: 100%;
  }
}
footer .logo-footer-wr {
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  footer .logo-footer-wr {
    text-align: center;
  }
  footer .logo-footer-wr .logo-footer {
    display: inline-block;
  }
}
footer .text_foot {
  width: 50%;
  margin-bottom: 20px;
}
footer .text_foot p:last-child {
  padding-bottom: 0;
}
@media (max-width: 1024px) {
  footer .text_foot {
    width: 100%;
    margin-bottom: 10px;
  }
}
footer .text_foot p {
  font-family: 'Roboto Condensed', sans-serif;
}
footer .copyright-wrap {
  align-items: flex-end;
}
footer .copyright-wrap span {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 14px;
}
@media (max-width: 1024px) {
  footer .copyright-wrap span {
    display: block;
    margin: 0 auto 20px;
  }
}
@media (max-width: 1024px) {
  footer .copyright-wrap .buttons-wrap {
    flex-basis: 100%;
    justify-content: center;
    margin-bottom: 20px;
  }
}
footer .copyright-wrap .buttons-wrap a {
  display: inline-block;
  background: rgba(70, 70, 70, 1);
  padding: 11px 17px;
  width: 173px;
  max-width: 100%;
  height: 46px;
  margin-left: 5px;
  border-radius: 3px;
}
@media (max-width: 1024px) {
  footer .copyright-wrap .buttons-wrap a {
    padding: 5px 10px;
    width: 110px;
  }
}
@media (max-width: 767px) {
  footer .copyright-wrap .buttons-wrap a {
    width: 95px;
  }
}
footer .copyright-wrap .buttons-wrap a:hover {
  background: rgba(70, 70, 70, 0.5);
}
footer .copyright-wrap .buttons-wrap a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
footer nav {
  border-bottom: 1px solid #a9b2c2;
  margin-bottom: 35px;
}
footer nav ul {
  justify-content: flex-end !important;
}
@media (max-width: 1024px) {
  footer nav ul {
    justify-content: center !important;
  }
}
@media (max-width: 768px) {
  footer nav ul li {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}
footer nav ul li a {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #fff;
  display: block;
  padding: 40px 18px 40px;
  background: transparent;
  text-transform: capitalize;
}
@media (max-width: 768px) {
  footer nav ul li a {
    padding: 20px 15px;
  }
}
footer nav ul li a:hover {
  color: #fff;
  background: #ff6961;
}
.wpcf7-form h2 {
  font-family: 'Roboto Condensed', sans-serif;
  padding-bottom: 23px;
}
.wpcf7-form span[data-name='email']:before {
  content: '';
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moztransform: translate(0, -50%);
  transform: translate(0, -50%);
  left: 15px;
  background-image: url('../img/icon _mail_.svg');
  background-size: 100%;
  background-repeat: no-repeat;
  width: 23px;
  height: 19px;
}
.wpcf7-form input[type='email'] {
  padding: 0 166px 0 49px;
}
.wpcf7-form .form-all {
  position: relative;
}
.wpcf7-form .form-all .btn-wrap {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moztransform: translate(0, -50%);
  transform: translate(0, -50%);
  right: 5px;
}
.wpcf7-form .form-all .btn-wrap .button {
  padding: 10px 40px 10px 40px;
}
.wpcf7-form .form-all .btn-wrap .button:hover {
  color: #000;
}
.post-has-aside {
  margin: 50px 0 0;
}
.post-has-aside article {
  flex: 1;
}
.post-has-aside aside {
  flex-basis: 337px;
  margin-left: 30px;
}
@media (max-width: 1024px) {
  .post-has-aside aside {
    flex-basis: 100%;
    margin: 0;
  }
}
.post-has-aside.reverse aside {
  margin-left: 0;
  margin-right: 30px;
}
@media (max-width: 1024px) {
  .post-has-aside.reverse aside {
    margin: 0;
  }
}
.author {
  margin-bottom: 40px;
}
.author .author-photo {
  width: 245px;
  height: 246px;
  margin-right: 50px;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .author .author-photo {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.author .author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author .author-info {
  flex: 1;
}
.thumb {
  position: relative;
}
.thumb .vip-badge {
  position: absolute;
  top: 23px;
  right: 25px;
  color: #fff;
}
aside .posts .thumb .vip-badge {
  top: 5px;
  right: 8px;
}
aside .posts .thumb .vip-badge svg {
  max-width: 40px;
}
.posts .post {
  position: relative;
  margin-bottom: 30px;
}
.posts .post .thumb {
  height: 450px;
  position: relative;
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  display: block;
}
.posts .post .thumb:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 0;
  -webkit-transition: all 0.3s ease;
  -khtml-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.posts .post .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.posts .post .thumb .category-date {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 35px 28px;
  z-index: 1;
  justify-content: flex-start;
}
.posts .post .thumb .category-date > span {
  display: inline-block;
  font-family: 'Roboto Condensed', sans-serif;
  color: #fff;
}
.posts .post .thumb .category-date .cat-p {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 1px;
  background: #3da48b;
  padding: 6px 5px;
  text-transform: uppercase;
  margin-right: 10px;
}
.posts .post .thumb .category-date .date-p {
  font-size: 12px;
  text-transform: capitalize;
  margin-right: 10px;
}
.posts .post .thumb .category-date .line {
  margin-right: 10px;
}
.posts .post .thumb .category-date .author-p {
  font-size: 12px;
  text-transform: capitalize;
  margin-right: 10px;
}
.posts .post .thumb .category-date .vipAdmEmail:hover {
  color: #fff;
}
.posts .post:hover .thumb:before {
  background: rgba(0, 0, 0, 0.5);
}
.posts .post_most {
  margin-bottom: 30px;
}
.posts .post_most .thumb {
  width: 114px;
  height: 110px;
  border-radius: 10px;
  margin-right: 20px;
  overflow: hidden;
  position: relative;
  display: block;
}
.posts .post_most .thumb:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 0;
  -webkit-transition: all 0.3s ease;
  -khtml-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.posts .post_most .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.posts .post_most .info {
  flex: 1;
}
.posts .post_most .info h2 {
  font-size: 17px;
  padding-bottom: 0;
}
.posts .post_most .info .category-date {
  justify-content: flex-start;
}
.posts .post_most .info .category-date > span {
  display: inline-block;
  font-family: 'Roboto Condensed', sans-serif;
  color: #94959c;
}
.posts .post_most .info .category-date .cat-p {
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 1px;
  background: #717171;
  padding: 6px 5px;
  text-transform: uppercase;
  margin-right: 10px;
  margin-bottom: 10px;
}
.posts .post_most .info .category-date .date-p {
  font-size: 12px;
  text-transform: capitalize;
  margin-right: 10px;
  margin-bottom: 10px;
}
.posts .post_most .info .category-date .line {
  margin-right: 10px;
  margin-bottom: 10px;
}
.posts .post_most .info .category-date .author-p {
  font-size: 12px;
  text-transform: capitalize;
  margin-right: 10px;
  margin-bottom: 10px;
  color: #94959c;
  text-decoration: none;
}
.posts .post_most .info .category-date .author-p:hover {
  text-decoration: underline;
}
.posts .post_most:hover .thumb:before {
  background: rgba(0, 0, 0, 0.5);
}
.posts .post_most:nth-child(even) .info .category-date .cat-p {
  background: #ff6961;
}
.posts .post_most:nth-child(3n) .info .category-date .cat-p {
  background: #3da48b;
}
.posts .post_square {
  margin-bottom: 30px;
  position: relative;
}
.posts .post_square .thumb {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
  display: block;
}
.posts .post_square .thumb:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 0;
  -webkit-transition: all 0.3s ease;
  -khtml-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.posts .post_square .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.posts .post_square .info h2 {
  font-size: 20px;
  padding-bottom: 10px;
}
.posts .post_square .info p {
  font-size: 14px;
  line-height: 1.3;
}
.posts .post_square .info .category-date {
  justify-content: flex-start;
}
.posts .post_square .info .category-date > span {
  display: inline-block;
  font-family: 'Roboto Condensed', sans-serif;
  color: #94959c;
  font-size: 12px;
}
.posts .post_square .info .category-date .cat-p {
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 1px;
  background: #ff6961;
  padding: 6px 5px;
  text-transform: uppercase;
  margin-right: 10px;
  margin-bottom: 10px;
}
.posts .post_square .info .category-date .date-p {
  font-size: 12px;
  text-transform: capitalize;
  margin-right: 10px;
  margin-bottom: 10px;
}
.posts .post_square .info .category-date .line {
  margin-right: 10px;
  margin-bottom: 10px;
}
.posts .post_square .info .category-date .author-p {
  display: inline-block;
  font-size: 12px;
  text-transform: capitalize;
  margin-right: 10px;
  margin-bottom: 10px;
  text-decoration: none;
  color: #94959c;
}
.posts .post_square .info .category-date .author-p:hover {
  text-decoration: underline;
}
.posts .post_square:hover .thumb:before {
  background: rgba(0, 0, 0, 0.5);
}
.posts .post_square_two {
  margin-bottom: 30px;
  flex-basis: 49%;
}
@media (max-width: 1024px) {
  .posts .post_square_two {
    margin-bottom: 20px;
    flex-basis: 100%;
  }
}
.posts .post_square_two .thumb {
  width: 100%;
  height: 460px;
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
  display: block;
}
.posts .post_square_two .thumb:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 0;
  -webkit-transition: all 0.3s ease;
  -khtml-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.posts .post_square_two .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.posts .post_square_two .info h2 {
  font-size: 20px;
  padding-bottom: 10px;
}
.posts .post_square_two .info p {
  font-size: 14px;
  line-height: 1.3;
}
.posts .post_square_two .info .category-date {
  justify-content: flex-start;
}
.posts .post_square_two .info .category-date > span {
  display: inline-block;
  font-family: 'Roboto Condensed', sans-serif;
  color: #94959c;
  font-size: 12px;
}
.posts .post_square_two .info .category-date .cat-p {
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 1px;
  background: #ff6961;
  padding: 6px 5px;
  text-transform: uppercase;
  margin-right: 10px;
  margin-bottom: 10px;
}
.posts .post_square_two .info .category-date .date-p {
  font-size: 12px;
  text-transform: capitalize;
  margin-right: 10px;
  margin-bottom: 10px;
}
.posts .post_square_two .info .category-date .line {
  margin-right: 10px;
  margin-bottom: 10px;
}
.posts .post_square_two .info .category-date .author-p {
  display: inline-block;
  font-size: 12px;
  text-transform: capitalize;
  margin-right: 10px;
  margin-bottom: 10px;
  text-decoration: none;
  color: #94959c;
}
.posts .post_square_two .info .category-date .author-p:hover {
  text-decoration: underline;
}
.posts .post_square_two:hover .thumb:before {
  background: rgba(0, 0, 0, 0.5);
}
.posts .post-bg-text {
  margin-bottom: 30px;
}
.posts .post-bg-text .thumb {
  height: 450px;
  position: relative;
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  display: block;
}
.posts .post-bg-text .thumb:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 0;
  -webkit-transition: all 0.3s ease;
  -khtml-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.posts .post-bg-text .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.posts .post-bg-text .thumb .category-date {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 35px 28px;
  z-index: 1;
  justify-content: flex-start;
}
.posts .post-bg-text .thumb .category-date > span {
  display: inline-block;
  font-family: 'Roboto Condensed', sans-serif;
  color: #fff;
}
.posts .post-bg-text .thumb .category-date .cat-p {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 1px;
  background: #3da48b;
  padding: 6px 5px;
  text-transform: uppercase;
  margin-right: 10px;
}
.posts .post-bg-text .thumb .category-date .date-p {
  font-size: 12px;
  text-transform: capitalize;
  margin-right: 10px;
}
.posts .post-bg-text .thumb .category-date .line {
  margin-right: 10px;
}
.posts .post-bg-text .thumb .category-date .author-p {
  font-size: 12px;
  text-transform: capitalize;
  margin-right: 10px;
}
.posts .post-bg-text .thumb .category-date h2 {
  color: #fff;
  padding-bottom: 0;
  font-size: 30px;
  line-height: 40px;
}
.posts .post-bg-text:hover .thumb:before {
  background: rgba(0, 0, 0, 0.5);
}
.post-has-four .posts {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-flow: wrap;
  -moz-flex-flow: wrap;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  -webkit-transition: all 0.3s ease;
  -khtml-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -0.5%;
  width: 101%;
}
.post-has-four .posts > * {
  width: 24%;
  margin: 0 0.5% 0.625em;
}
@media (max-width: 1024px) {
  .post-has-four .posts {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-flow: wrap;
    -moz-flex-flow: wrap;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    -webkit-transition: all 0.3s ease;
    -khtml-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -0.5%;
    width: 101%;
  }
  .post-has-four .posts > * {
    width: 49%;
    margin: 0 0.5% 0.75em;
  }
}
@media (max-width: 768px) {
  .post-has-four .posts {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-flow: wrap;
    -moz-flex-flow: wrap;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    -webkit-transition: all 0.3s ease;
    -khtml-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -0.5%;
    width: 101%;
  }
  .post-has-four .posts > * {
    width: 99%;
    margin: 0 0.5% 1em;
  }
}
.post-has-four-form {
  position: relative;
  padding: 30px 0 100px;
}
.post-has-four-form:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: #f7f7f7;
  height: 950px;
  z-index: -1;
}
@media (max-width: 1024px) {
  .post-has-four-form {
    padding: 0 0 30px;
    padding: 0;
  }
}
.post-has-four-form .post_square {
  flex: 1;
}
.post-has-four-form .post-form {
  width: 704px;
  max-width: 100%;
  min-height: 424px;
  margin: 0 30px;
  background-image: url('../img/R2.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  padding: 20px 100px;
  border-radius: 10px;
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .post-has-four-form .post-form {
    width: 100%;
    margin: 30px 0;
    padding: 20px 10px;
    min-height: 282px;
  }
}
.post-has-four-form .post-form * {
  color: #fff;
}
.post-has-four-form .post-form .wpcf7-form input[type='email'] {
  background: #335987;
}
.home .post-has-four-form {
  margin-bottom: 100px;
}
@media (max-width: 1024px) {
  .home .post-has-four-form {
    margin-bottom: 30px;
  }
}
.post-big-square .post-big {
  flex-basis: 46%;
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .post-big-square .post-big {
    flex-basis: 100%;
  }
}
.post-big-square .post-big .post-bg-text .thumb {
  height: 882px;
}
@media (max-width: 1024px) {
  .post-big-square .post-big .post-bg-text .thumb {
    height: 250px;
  }
}
.post-big-square .post-two {
  flex-basis: 53%;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-flow: wrap;
  -moz-flex-flow: wrap;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  -webkit-transition: all 0.3s ease;
  -khtml-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -1%;
  width: 102%;
}
.post-big-square .post-two > * {
  width: 48%;
  margin: 0 1% 1.5em;
}
@media (max-width: 1024px) {
  .post-big-square .post-two {
    flex-basis: 100%;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-flow: wrap;
    -moz-flex-flow: wrap;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    -webkit-transition: all 0.3s ease;
    -khtml-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -0.5%;
    width: 101%;
  }
  .post-big-square .post-two > * {
    width: 99%;
    margin: 0 0.5% 1em;
  }
}
.bn-block {
  margin: 60px 0;
}
@media (max-width: 1024px) {
  .bn-block {
    margin: 30px 0;
  }
}
.bn-block img {
  margin: 0 auto;
  display: block;
}
.share-icons-wrap {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 50px;
}
.share-icons-wrap span {
  font-weight: 700;
  font-size: 20px;
  font-family: 'Roboto Condensed', sans-serif;
  margin-right: 15px;
  display: inline-block;
}
.share-icons-wrap .share-icons a {
  width: 28px;
  height: 28px;
  border-radius: 5px;
  background: #ff6961;
  margin-right: 5px;
  position: relative;
}
.share-icons-wrap .share-icons a i {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  -webkit-transition: all 0.3s ease;
  -khtml-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.share-icons-wrap .share-icons a:hover i {
  color: #fff;
}
.share {
  position: absolute;
  cursor: pointer;
  top: 20px;
  right: 20px;
  z-index: 10;
  width: 42px;
  height: 42px;
  border-radius: 3px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  background-color: #000;
}
@media (max-width: 576px) {
  .share {
    top: 10px;
    right: 10px;
  }
}
.share a, .share i {
  font-size: 20px;
  color: #fff;
  text-decoration: none;
}
.share a {
  display: inline-flex;
}
.author .share-icons {
  position: absolute;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10px, auto));
  align-items: center;
  justify-content: center;
  grid-gap: 20px;
  background-color: #333;
  padding: 10px;
  right: -20px;
  top: -65px;
  box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.2);
  opacity: 0;
  z-index: -1;
  visibility: hidden;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease;
  -khtml-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 120px;
}
.author .share-icons.active {
  visibility: visible;
  opacity: 1;
  z-index: 10;
}
.author .share-icons:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  bottom: -10px;
  right: 30px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #333;
}
.single-post .post .title-wrap h2 {
  font-size: 38px;
}
@media (max-width: 1024px) {
  .single-post .post .title-wrap h2 {
    font-size: 34px;
  }
}
@media (max-width: 768px) {
  .single-post .post .title-wrap h2 {
    font-size: 30px;
  }
}
@media (max-width: 576px) {
  .single-post .post .title-wrap h2 {
    font-size: 28px;
  }
}
.single-post .post .excerptVip {
  position: relative;
}
.single-post .post .excerptVip:after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.99) 85%, #fff);
  content: '';
  display: block;
  height: 100px;
  position: relative;
  width: 100%;
  position: absolute;
  bottom: 20px;
  left: 0;
}
.single-post .post .subscribe-login {
  text-align: center;
}
.single-post .post .subscribe-login .button:hover {
  background-color: #ff9994;
  color: #fff;
}
#popup-form .title {
  margin-bottom: 20px;
}
#popup-form .form input:not(.button) {
  margin-bottom: 20px;
  padding: 0 20px !important;
}
#popup-form .form textarea {
  padding: 20px;
}
.fancybox__content {
  max-width: 700px !important;
}
::-webkit-input-placeholder {
  color: #231f20;
  opacity: 1;
}
:-moz-placeholder {
  color: #231f20;
  opacity: 1;
}
::-moz-placeholder {
  color: #231f20;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #231f20;
  opacity: 1;
}
.text_pole ::-webkit-input-placeholder {
  color: #737373;
  opacity: 1;
}
.text_pole :-moz-placeholder {
  color: #737373;
  opacity: 1;
}
.text_pole ::-moz-placeholder {
  color: #737373;
  opacity: 1;
}
.text_pole :-ms-input-placeholder {
  color: #737373;
  opacity: 1;
}
/*
 Flexbox grid @mixin
 EXAMPLE
 .flexbox {
 @include boxGrid(5, 4%);
 }
 */
.top-block-p .news-items-top-text-date {
  color: #757575;
  text-transform: uppercase;
  display: block;
  margin-bottom: 35px;
  font-family: 'Roboto';
  font-weight: 400;
}
.single-post-content {
  padding: 85px 0;
}
.single-post-content .flex {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
.single-post-content .content-text {
  flex-basis: 70%;
  max-width: 70%;
}
@media (max-width: 1024px) {
  .single-post-content .content-text {
    flex-basis: 100%;
    max-width: 100%;
  }
}
.single-post-content .content-text .post-bottom {
  border-top: 1px solid #ddd;
  padding: 25px 0;
}
.single-post-content .content-text .post-bottom .post-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: repeat(3, auto);
  grid-gap: 25px;
}
.single-post-content .content-text .post-bottom .post-info img {
  margin-right: 10px;
}
.single-post-content .content-text .post-bottom .post-info span, .single-post-content .content-text .post-bottom .post-info a {
  color: #000;
  font-size: 14px;
  text-transform: capitalize;
}
.single-post-content .content-text .post-bottom .post-info .post_tags {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
.single-post-content .content-text .post-bottom .post-info .post_category span {
  margin-right: 5px;
}
.single-post-content .content-text .post-bottom .post-info .clipboard {
  cursor: pointer;
}
.single-post-content .content-text .post-bottom .navigate-btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
.single-post-content .content-text .post-bottom .navigate-btns > div {
  -webkit-flex-basis: 49%;
  -moz-flex-basis: 49%;
  -ms-flex-preferred-size: 49%;
  flex-basis: 49%;
  max-width: 49%;
}
.single-post-content .content-text .post-bottom .navigate-btns > div a {
  color: #000;
  font-weight: 700;
}
.single-post-content .content-text .post-bottom .navigate-btns > div.prev-btn {
  text-align: left;
}
.single-post-content .content-text .post-bottom .navigate-btns > div.next-btn {
  text-align: right;
}
.single-post-content .sidebar {
  flex-basis: 25%;
  max-width: 25%;
}
@media (max-width: 1024px) {
  .single-post-content .sidebar {
    flex-basis: 100%;
    max-width: 100%;
  }
}
.single-post-content .sidebar aside .top-aside {
  margin-bottom: 40px;
}
.single-post-content .sidebar aside .top-aside .subscribe-block {
  margin-bottom: 10px;
}
.single-post-content .sidebar aside .top-aside .subscribe-block > .btn {
  cursor: pointer;
  width: 100%;
}
@media (max-width: 1024px) {
  .single-post-content .sidebar aside .top-aside .subscribe-block > .btn {
    width: auto;
  }
}
.single-post-content .sidebar aside .top-aside .subscribe-block > .btn:hover {
  border: 1px solid #fcbf00;
  color: #fcbf00;
}
.single-post-content .sidebar aside .top-aside .subscribe-block .subscribe-form form input[type='email'] {
  color: #000;
  height: 40px;
  border: 1px solid #e2e2e2;
  padding: 10px 0 10px 10px;
}
.single-post-content .sidebar aside .top-aside .subscribe-block .subscribe-form form input[type='submit'] {
  margin: 5px 0;
  padding: 15px 30px;
  background: #fcbf00;
}
.single-post-content .sidebar aside .top-aside .subscribe-block .subscribe-form form input[type='submit']:hover {
  color: #fcbf00;
  background: #fff;
  border-color: #fcbf00;
}
.single-post-content .sidebar aside .top-aside .searchform input[type='text'] {
  background: #e4e4e4;
  color: #000;
  height: 40px;
}
.single-post-content .sidebar aside .top-aside .searchform .searchsubmit {
  background: #3370de;
  height: 40px;
}
.single-post-content .sidebar aside .top-aside .searchform .searchsubmit:before {
  color: #fff;
}
.single-post-content .sidebar aside .aside-box > h4 {
  text-transform: uppercase;
}
.single-post-content .sidebar aside .aside-box .posts li, .single-post-content .sidebar aside .aside-box .cats li {
  border-bottom: 1px solid #f0f0f0;
  padding: 10px 20px;
  margin-bottom: 0;
}
.single-post-content .sidebar aside .aside-box .posts li:before, .single-post-content .sidebar aside .aside-box .cats li:before {
  top: 15px;
}
.single-post-content .sidebar aside .aside-box .posts li a, .single-post-content .sidebar aside .aside-box .cats li a {
  color: #ff6961;
}
.single-post-content .sidebar aside .aside-box .tags {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
.single-post-content .sidebar aside .aside-box .tags li {
  border: 1px solid #7e8286;
  padding: 7px;
  margin-right: 10px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
.single-post-content .sidebar aside .aside-box .tags li a {
  display: inline-block;
  color: #7e8286;
  text-transform: uppercase;
  font-size: 11px;
}
.single-post-content .recent-posts-wrapper {
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
  padding: 60px 0;
}
.single-post-content .recent-posts-wrapper > h4 {
  margin-bottom: 30px;
}
.single-post-content .recent-posts-wrapper .posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
@media (max-width: 768px) {
  .single-post-content .recent-posts-wrapper .posts {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .single-post-content .recent-posts-wrapper .posts {
    grid-template-columns: repeat(1, 1fr);
  }
}
.single-post-content .recent-posts-wrapper .posts .post .thumbnail {
  height: 285px;
  margin-bottom: 25px;
}
.single-post-content .recent-posts-wrapper .posts .post .thumbnail img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.single-post-content .recent-posts-wrapper .posts .post .date {
  margin-bottom: 25px;
}
.single-post-content .recent-posts-wrapper .posts .post .date span {
  font-size: 16px;
  color: #757575;
}
.single-post-content .recent-posts-wrapper .posts .post .title {
  color: #000;
  font-weight: 700;
  font-size: 20px;
}
.single-post .posts .comment_wrap {
  padding: 60px 0;
  min-height: 250px;
  position: relative;
  border-top: 1px solid #e0e0e0;
}
.single-post .posts .comment_wrap .comment-form {
  background-color: #fafafa;
  padding: 50px 30px 1px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 25px;
  row-gap: 20px;
}
@media (max-width: 576px) {
  .single-post .posts .comment_wrap .comment-form {
    padding: 50px 15px 1px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.single-post .posts .comment_wrap .comment-form .logged-in-as {
  display: none;
}
.single-post .posts .comment_wrap .comment-form > div {
  grid-column-start: 1;
  grid-column-end: -1;
}
.single-post .posts .comment_wrap .comment-form .comment-form-cookies-consent {
  grid-column-start: 1;
  grid-column-end: -1;
  padding-bottom: 5px;
}
.single-post .posts .comment_wrap .comment-form .comment-form-author, .single-post .posts .comment_wrap .comment-form .comment-form-email {
  grid-column-start: auto;
  grid-column-end: auto;
  position: relative;
}
.single-post .posts .comment_wrap .comment-form .comment-form-author input, .single-post .posts .comment_wrap .comment-form .comment-form-email input {
  background: #fff;
  border: 1px solid #c1c1c1;
  border-radius: 10px;
  padding: 10px;
  color: #999;
  font-size: 15px;
  font-weight: 400;
}
.single-post .posts .comment_wrap .comment-form .comment-form-author input::placeholder, .single-post .posts .comment_wrap .comment-form .comment-form-email input::placeholder {
  color: #999;
  font-size: 15px;
  font-weight: 400;
}
.single-post .posts .comment_wrap .comment-form .comment-form-author .required, .single-post .posts .comment_wrap .comment-form .comment-form-email .required {
  position: absolute;
  top: 5px;
  right: 10px;
  color: red;
}
.single-post .posts .comment_wrap .comment-form .comment-form-comment textarea {
  background: #fff;
  border: 1px solid #c1c1c1;
  border-radius: 10px;
  padding: 27px;
  color: #999;
  font-size: 15px;
  font-weight: 400;
}
.single-post .posts .comment_wrap .comment-form .comment-form-comment textarea::placeholder {
  color: #999;
  font-size: 15px;
  font-weight: 400;
}
.single-post .posts .comment_wrap .comment-form .form-submit {
  text-align: center;
  padding-bottom: 0;
  position: relative;
}
.single-post .posts .comment_wrap .comment-form .form-submit .button:hover {
  color: #fff;
  background-color: #ff392e;
}
.single-post .posts .comment_wrap .join-to-comments {
  text-align: center;
  position: absolute;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 10;
}
.single-post .posts .comment_wrap .join-to-comments h2 {
  margin-bottom: 25px;
  padding-bottom: 0;
}
.single-post .posts .comment_wrap .join-to-comments .button {
  margin: 0;
}
.single-post .posts .comment_wrap .join-to-comments .button:hover {
  color: #fff;
  background-color: #ff392e;
}
.single-post .posts .comment_wrap .comments-block.not-logged-in .commentlist {
  filter: blur(5px);
}
.single-post .posts .comment_wrap .commentlist .comment {
  margin: 20px 0;
}
.single-post .posts .comment_wrap .commentlist .comment:last-child {
  border-bottom: none;
}
.single-post .posts .comment_wrap .commentlist .comment .top-comment {
  display: grid;
  grid-template-columns: 93px 1fr;
  align-items: flex-start;
  grid-gap: 30px;
}
@media (max-width: 576px) {
  .single-post .posts .comment_wrap .commentlist .comment .top-comment {
    grid-gap: 15px;
    margin-bottom: 30px;
  }
}
.single-post .posts .comment_wrap .commentlist .comment .top-comment .avatar-wrap .avatar {
  max-width: 93px;
  height: 93px;
  background-color: #ff6961;
  border-radius: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
.single-post .posts .comment_wrap .commentlist .comment .top-comment .avatar-wrap .avatar span {
  color: #fff;
  font-size: 36px;
  font-weight: 500;
}
.single-post .posts .comment_wrap .commentlist .comment .top-comment .right .comment-by .author-name {
  font-size: 20px;
  font-weight: 500;
  color: #333;
  line-height: 1.2;
  padding-bottom: 5px;
}
.single-post .posts .comment_wrap .commentlist .comment .top-comment .right .comment-by .date {
  font-size: 16px;
  color: #b6b6b6;
  font-weight: 500;
}
.single-post .posts .comment_wrap .commentlist .comment .comment-text > * {
  color: #777;
}
.page-template-tpl-contact .default-page, .page-template-default .default-page {
  margin: 40px 0;
}
.page-template-tpl-contact .default-page form input:not(.button), .page-template-default .default-page form input:not(.button) {
  margin-bottom: 20px;
  padding: 0 20px !important;
}
.page-template-tpl-contact .default-page form textarea, .page-template-default .default-page form textarea {
  padding: 20px;
}
