@font-face {
  font-family: Gotham;
  src: url(../fonts/GothaProReg.otf);
  font-weight: 400;
}

@font-face {
  font-family: Gotham;
  src: url(../fonts/GothaProBol.otf);
  font-weight: 700;
}

@font-face {
  font-family: Warnock;
  src: url(../fonts/WarnockPro-Regular.otf);
  font-weight: 400;
}

@font-face {
  font-family: Warnock;
  src: url(../fonts/WarnockPro-Capt.otf);
  font-weight: 500;
}

@font-face {
  font-family: Warnock;
  src: url(../fonts/WarnockPro-Bold.otf);
  font-weight: 700;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: Gotham, Arial sans-serif;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 140px;
}

.header-nav {
  width: 100%;
  -webkit-transition: all, .5s;
  transition: all, .5s;
  padding-top: 20px;
  padding-bottom: 20px;
  top: 0;
}

.header-nav .toggler-icon {
  display: none;
}

.header-nav .nav-bar {
  margin: 0;
  padding: 0;
  width: inherit;
  height: inherit;
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-nav .nav-bar > li {
  position: relative;
  list-style: none;
}

.header-nav .nav-bar > li > a {
  padding: 0;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  text-decoration: none;
}

.header-nav .nav-bar > li > a::after {
  margin: 0 auto;
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #000;
  -webkit-transition: width .3s;
  transition: width .3s;
}
.header-nav .nav-bar > li.neretina__logo-item > a::after {
  display: none;
}

.header-nav .nav-bar > li > a:hover::after {
  width: 100%;
}
.header-nav .nav-bar > li.neretina__logo-item > a .menu-image-title {
  display: none;
}

@media only screen and (max-width: 991px) {
  .header-nav {
    display: -ms-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .header-nav .toggler-icon {
    margin-left: 0;
    margin-right: 20px;
    display: inline-block;
    width: 35px;
    cursor: pointer;
  }
  .header-nav .nav-bar {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    height: auto;
    z-index: 10;
    background: #efeded;
  }
  .header-nav .nav-bar > li {
    position: relative;
    margin-left: 0;
    padding-top: 20px;
    margin-bottom: 0;
    border-top: none;
    padding-bottom: 20px;
  }
  .header-nav .nav-bar > li:hover {
    background: #e3e0e0;
  }
  .header-nav .nav-bar > li > a {
    color: #000;
    text-align: center;
  }
  .header-nav .nav-bar > li > a::after {
    -webkit-transition: width .5s;
    transition: width .5s;
  }
  .header-nav .nav-bar #neretina__logo-item {
    display: none;
  }
}

@media only screen and (max-width: 567px) {
  .header-nav .toggler-icon {
    width: 30px;
  }
  .header-nav .nav-bar .nav-item {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

header {
  width: 100%;
  -webkit-box-shadow: 15px 0 175px -15px #cccccc;;
  box-shadow: 15px 0 175px -15px #cccccc;;
  position: fixed;
  background: #fff;
  z-index: 100;
  top: 0;
}
body.admin-bar header {
  top: 32px;
}

header .header-block {
  width: inherit;
}

header .header-block .neretina__logo {
  display: none;
}

.header-nav_fixed {
  padding-bottom: 10px;
  padding-top: 10px;
}

@media only screen and (max-width: 991px) {
  header .header-block .neretina__logo {
    display: inline-block;
    margin-left: 20px;
  }
}

@media only screen and (max-width: 575px) {
  header .header-block .neretina__logo {
    width: 125px;
  }
}

.article-heading {
  margin-bottom: 45px;
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.article-heading__image img {
  margin-left: -15px;
  width: 100%;
}

.article-heading__info {
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-left: -100px;
  padding: 0;
}

.img-responsive {
  max-width: 100%;
  height: auto;
  display: block;
}

.article-heading__info-block {
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.article-heading__info-block span {
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
}
@media only screen and (max-width: 575px) {
  .article-heading__info-block span {
    text-indent: -999px;
  }
  .article-heading__info-block .social-likes__button {
    padding-right: 15px;
    padding-left: 2px;
  }
  .article-heading__info-block .social-likes__icon {
    text-indent: 0px;
  }
}

.article-heading__info-block h1 {
  margin: 0;
  font-family: Warnock;
  font-size: 44px;
  font-weight: 400;
  margin-bottom: 19px;
}
.other-article .social-likes {
  text-align: justify;
}
.other-article .social-likes:after {
  content: '';
  display: inline-block;
  width: 100%;
  height: 0;
  visibility: hidden;
}


.article-heading__info-block .divider {
  width: 160px;
  height: 1px;
  background: #000;
}

.article-heading__info-block p {
  margin: 0;
  margin-top: 30px;
  margin-left: 100px;
  font-size: 24px;
  font-weight: 400;
}

.article-socials {
  margin-top: 25px;
  margin-left: auto;
  width: 85%;
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.article-socials .social {
  cursor: pointer;
  border-radius: 3px;
  height: 30px;
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  padding-left: 15px;
  padding-right: 30px;
  -webkit-transition: all, .5s;
  transition: all, .5s;
}

.article-socials .social:hover {
  opacity: 0.85;
}

.article-socials .social span {
  margin-bottom: 0;
  font-size: 10px;
  margin-left: 5px;
}

.article-socials .social__like {
  padding: 0 29px;
  background: #8596c8;
}

.article-socials .social__like .like {
  height: 17px;
  padding: 0 5px;
  border-radius: 2px;
  background: #4080ff;
  display: -ms-flex;
  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;
}

.article-socials .social__like .like i {
  font-size: 14px;
}

.article-socials .social__like .like span {
  text-transform: none;
  font-size: 12px;
  margin-bottom: 0;
}

.article-socials .social__fb {
  background: #4b68b3;
}

.article-socials .social__vk {
  background: #426b99;
}

.article-socials .social__twit {
  background: #04acec;
}

@media only screen and (max-width: 1199px) {
  .article-heading__info-block h1 {
    font-size: 36px;
  }
  .article-heading__info-block p {
    font-size: 20px;
  }
  .article-socials {
    width: 82%;
  }
  .article-socials .social {
    padding-left: 10px;
    padding-right: 10px;
  }
  .article-socials .social span {
    margin-bottom: 0;
    font-size: 10px;
    margin-left: 5px;
  }
  .article-socials .social__like {
    padding: 0 10px;
  }
  .other-article .social-likes {
    font-size: 12px;
  }
}

@media only screen and (max-width: 991px) {
  .article-heading {
    margin-bottom: 30px;
    display: -ms-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .article-heading__image {
    margin-bottom: 30px;
  }
  .article-heading__image img {
    margin-left: 0;
  }
  .article-heading__info {
    margin-left: 0px;
  }

  .article-heading__info-block h1 {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .article-heading__info-block p {
    margin-left: 0;
    margin-top: 30px;
    font-size: 18px;
  }
  .article-socials {
    margin-top: 20px;
    margin-left: 0;
    width: 100%;
  }
  .article-socials .social {
    padding-left: 15px;
    padding-right: 30px;
  }
  .article-socials .social span {
    margin-bottom: 0;
    font-size: 10px;
    margin-left: 5px;
  }
  .article-socials .social__like {
    padding: 0 29px;
  }
  .article-heading__info-block {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .article-heading {
    margin-bottom: 25px;
  }
  .article-heading__info-block h1 {
    font-size: 30px;
  }
  .article-heading__info-block p {
    font-size: 16px;
  }
}

@media only screen and (max-width: 575px) {
  .article-heading__info {
    padding: 0 15px;
  }
  .article-heading__info-block h1 {
    font-size: 28px;
  }
  .article-heading__info-block p {
    font-size: 16px;
  }
  .article-socials {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    margin-top: 10px;
    margin-left: 0;
    width: 100%;
  }
  .article-socials .social {
    padding-left: 15px;
    padding-right: 30px;
    margin-top: 10px;
  }
  .article-socials .social span {
    margin-bottom: 0;
    font-size: 10px;
    margin-left: 5px;
  }
  .article-socials .social__like {
    padding: 0 29px;
  }
}

.articles {
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.articles .article {
  width: 370px;
  margin-top: 40px;
	margin-right: 30px;
}

.articles .article:nth-child(3n) {
	margin-right: 0px;
}

.articles .article__image {
  width: 100%;
  position: relative;
}

.articles .article__image img {
  width: inherit;
}

.articles .article__image .article__category {
  position: absolute;
  left: 10px;
  bottom: 20px;
}
.articles .article__image .article__category__item {
  padding: 5px 10px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 9px;
  font-weight: 400;
  text-transform: uppercase;
  display: inline-block;
}

.articles .article__info a {
  font-family: Warnock;
  font-size: 26px;
  line-height: 30px;
  font-weight: 500;
  color: #000;
  margin-top: 20px;
  margin-bottom: 15px;
  display: block;
  text-decoration: none;
}
.article:hover .article__info a {
  text-decoration: underline;
}

.articles .article__info p {
  font-size: 14px;
  font-weight: 400;
  color: #959595;
}

.articles .article:hover .article__info h1 {
  text-decoration: underline;
}

@media only screen and (max-width: 1199px) {
  .articles .article {
    width: 310px;
    margin-top: 30px;
	  margin-right: 15px;
  }
	.articles .article:nth-child(3n) {
		margin-right: 0px;
	}
}

@media only screen and (max-width: 991px) {
  .articles .article {
    width: 350px;
	  margin-right: 10px;
  }
	.articles .article:nth-child(3n) {
		margin-right: 10px;
	}

	.articles .article:nth-child(2n) {
		margin-right: 0px;
	}
}

@media only screen and (max-width: 767px) {
  .articles .article {
    width: 265px;
    margin-top: 20px;
	margin-right: 10px;
  }



}

@media only screen and (max-width: 575px) {
  .articles {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .articles .article {
    width: 90%;
  }
}

.neretina-form {
  padding: 50px 0;
  border: 1px solid #000;
  margin-bottom: 50px;
}

.neretina-form .row {
  margin-left: 0;
  margin-right: 0;
}

.neretina-form h1 {
  margin: 0;
  margin-bottom: 20px;
  font-family: Warnock;
  font-size: 30px;
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
}

.neretina-form__mailing input {
  width: 100%;
  height: 60px;
  border: 1px solid #e3e3e3;
  padding-left: 20px;
  font-size: 14px;
  font-weight: 400;
  color: #959595;
  outline-color: #000;
  outline: none !important;
}

.neretina-form__mailing input.sbm {
  height: 60px;
  display: -ms-flex;
  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;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  background: #000;
  border: 1px solid #000;
  -webkit-transition: all, .5s;
  transition: all, .5s;
  cursor: pointer;
}

.neretina-form__mailing a:hover {
  color: #000;
  background: #fff;
}

@media only screen and (max-width: 991px) {
  .neretina-form {
    padding: 40px 0;
    margin-bottom: 40px;
  }
  .neretina-form h1 {
    margin-bottom: 20px;
    font-size: 24px;
  }
  .neretina-form__mailing input {
    height: 40px !important;
  }
  .neretina-form__mailing a {
    height: 40px;
  }
  .header-nav .nav-bar > li {
    padding-left: 15px;
  }
  .header-nav .nav-bar > li.neretina__logo-item > a {
    text-align: left;
  }
  .header-nav .nav-bar > li.neretina__logo-item > a .menu-image {
    display: none;
  }
  .header-nav .nav-bar > li.neretina__logo-item > a .menu-image-title {
    display: block;
  }
}

@media only screen and (max-width: 767px) {
  .neretina-form {
    padding: 35px 0;
    margin-bottom: 35px;
  }
  .neretina-form h1 {
    text-align: center;
  }
  .neretina-form__mailing input {
    height: 40px;
  }
  .neretina-form__mailing a {
    height: 40px;
    margin-right: 20px;
  }
}

@media only screen and (max-width: 576px) {
  .neretina-form {
    width: 90%;
    padding: 35px 0;
    margin-bottom: 35px;
  }
  .neretina-form .neretina-form-title {
    padding: 0;
  }
  .neretina-form h1 {
    font-size: 17px;
  }
  .neretina-form__mailing {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .neretina-form__mailing input {
    height: 40px;
    margin-left: 0px;
    margin-bottom: 15px;
  }
  .neretina-form__mailing a {
    height: 40px;
    margin-right: 0px;
    margin-top: 15px;
  }
  .article-heading__info-block {
    padding-left: 0px;
    padding-right: 0px;
  }
}

footer {
  width: 100%;
  -webkit-box-shadow: 0 -7px 20px 0px #efeded;
  box-shadow: 0 -7px 20px 0px #efeded;
}

footer .footer-block {
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 40px 0;
}

footer .footer-block span {
  font-size: 12px;
  font-weight: 400;
  color: #000;
}

footer .footer-block span a {
  text-decoration: none;
  color: #000;
  border-bottom: 1px solid #d4d4d4;
  -webkit-transition: all, .3s;
  transition: all, .3s;
}

footer .footer-block span a:hover {
  border-bottom: 1px solid #000;
}

@media only screen and (max-width: 991px) {
  footer .footer-block {
    padding: 30px 0;
  }
}

@media only screen and (max-width: 767px) {
  footer .footer-block {
    display: -ms-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 0;
  }
  footer .footer-block span {
    margin-top: 10px;
    text-align: center;
    width: 90%;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 1170px;
    max-width: 100%;
  }
}

.article-heading {

}

.article-heading__info-block h1 {
  font-size: 80px;
}

.article-heading__info-block p {
  width: 70%;
}

.article-heading__info-block .more-about-me {
  margin-left: 100px;
  margin-top: 40px;
  width: 270px;
  height: 60px;
  display: -ms-flex;
  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;
  cursor: pointer;
  color: #000;
  background: #fff;
  border: 1px solid #000;
  -webkit-transition: all, .5s;
  transition: all, .5s;
  text-decoration: none;
}

.article-heading__info-block .more-about-me:hover {
  background: #000;
  color: #fff;
}

.article-heading__info .neretina-socials {
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.article-heading__info .neretina-socials a {
  margin-bottom: 35px;
  color: #000;
}

.article-heading__info .neretina-socials a:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 1199px) {
  .article-heading__info-block h1 {
    font-size: 65px;
  }
}

@media only screen and (max-width: 991px) {
  .article-heading {

  }
  .article-heading__info-block h1 {
    font-size: 60px;
  }
  .article-heading__info-block p {
    width: 80%;
  }
  .article-heading__info-block .more-about-me {
    margin-left: 0px;
    margin-top: 30px;
    width: 210px;
    height: 50px;
  }
  .article-heading__info .neretina-socials a {
    margin-bottom: 25px;
  }
}

@media only screen and (max-width: 767px) {
  .article-heading__info-block h1 {
    font-size: 46px;
  }
  .article-heading__info-block p {
    width: 77%;
  }
  .article-heading__info-block .more-about-me {
    margin-top: 25px;
  }
}

@media only screen and (max-width: 575px) {
  .article-heading__info-block h1 {
    font-size: 36px;
  }
  .article-heading__info-block p {
    width: 90%;
  }
}

.new-on-site {
  margin: 0;
  font-family: Warnock;
  font-size: 30px;
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
  text-align: center;
}

.more-articles__block {
  padding-bottom: 45px;
}
.more-articles__block-in {

}
.article {
  padding-bottom: 40px;
}

.more-articles__block a {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid #d4d4d4;
  -webkit-transition: all, .5s;
  transition: all, .5s;
  cursor: pointer;
  padding-bottom: 2px;
}


.more-articles__block a:hover {
  border-bottom: 1px solid #000;
}

.more-articles__block img {
  margin-left: 25px;
  margin-bottom: 7px;
  margin-top: 2px;
}

@media only screen and (max-width: 991px) {
  .new-on-site {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .new-on-site {
    font-size: 26px;
    margin-left: 50px;
  }
}

@media only screen and (max-width: 575px) {
  .new-on-site {
    font-size: 24px;
    margin-left: 15px;
  }
}

.section-title {
  margin: 0;
  margin-bottom: 10px;
  font-family: Warnock;
  font-size: 30px;
  line-height: 30px;
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
  text-align: center;
}

.post-categories {
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.post-categories .post-category {
  padding: 6px 9px 5px;
  border: 1px solid #000;
  font-size: 9px;
  font-weight: 400;
  color: #000;
  text-transform: uppercase;
  margin-left: 5px;
  margin-right: 5px;
  margin-top: 10px;
  cursor: pointer;
  -webkit-transition: all, .5s;
  transition: all, .5s;
  text-decoration: none;
}

.post-categories .post-category:hover {
  background: #c8c8c8;
}

.post-category_active {
  background: #000;
  color: #fff !important;
}

.post_hidden {
  display: none;
}

.hidden {
  display: none;
}

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

}

@media only screen and (max-width: 767px) {
  .section-title {
    font-size: 26px;
  }
  .neretina-form__mailing input.sbm {
    margin-left: 0 !important;
    padding: 0;
    height: 41px;
  }
  body {
    padding-top: 100px;
  }
  .post-categories {
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 575px) {
  .section-title__block {
    display: -ms-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: center !important;
  }
  .section-title {
    font-size: 24px;
    margin: 0 auto 10px;
  }
  .posts-categories {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 0 15px;
    margin-bottom: 30px;
  }

}

.article-title {
  margin: 0;
  margin-bottom: 40px;
  font-family: Warnock;
  font-size: 30px;
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
  text-align: center;
}

.sz48 {
  font-size: 48px !important;
}
@media only screen and (max-width: 575px) {
  .sz48 {
    font-size: 30px !important;
  }
}




.main-content {
  position: relative;
}
.main-content:after {
  content: '';
  display: block;
  width: 100%;
  border-bottom: 1px solid #e3e3e3;
}

.main-content p {
  margin: 0;
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: 400;
  color: #000;
}

.main-content ol {
  padding: 0;
  margin-top: 15px;
  font-family: Warnock;
  font-size: 26px;
  font-weight: 500;
  color: #000;
  list-style-type: none;
}

.main-content ol li {
  padding-left: 60px;
  font-family: Gotham;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  margin-bottom: 50px;
  counter-increment: step-counter;
  position: relative;
}

.main-content ol li:first-child {
  margin-top: 43px;
}

.main-content ol li:last-child {
  margin-bottom: 45px;
}

.main-content ol li::before {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  content: counter(step-counter);
  font-family: Warnock;
  font-weight: 500;
  font-size: 26px;
  background-color: #000;
  color: #fff;
  font-weight: bold;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  display: -ms-flex;
  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;
  padding-top: 5px;
}

.other-article {
  margin-top: 40px;
  margin-bottom: 40px;
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.other-article .back-to-list a {
  margin-top: 40px;
  margin-bottom: 45px;
  font-size: 14px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid #d4d4d4;
  -webkit-transition: all, .5s;
  transition: all, .5s;
}

.other-article .back-to-list a:hover {
  border-bottom: 1px solid #000;
}

.other-article .back-to-list img {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  margin-right: 10px;
  margin-bottom: 2px;
}

.other-article .article-socials {
  width: 65%;
  margin-top: 0;
}

.article-socials .social-likes__widget {
  transform: translateY(8px)
}

.single .article {
  padding-bottom: 0;
}

@media only screen and (max-width: 1199px) {
  .main-content ol li {
    margin-bottom: 50px;
  }
  .other-article {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .other-article .article-socials {
    width: 65%;
  }
  .other-article .article-socials .social {
    padding-left: 15px;
    padding-right: 30px;
  }
  .other-article .article-socials .social span {
    margin-bottom: 0;
    font-size: 10px;
    margin-left: 5px;
  }
  .other-article .article-socials .social__like {
    padding: 0 29px;
  }
}

@media only screen and (max-width: 991px) {
  .main-content p {
    margin-bottom: 20px;
  }
  .main-content ol li {
    margin-bottom: 30px;
    counter-increment: step-counter;
  }
  .main-content ol li:first-child {
    margin-top: 25px;
  }
  .main-content ol li:last-child {
    margin-bottom: 20px;
  }
  .other-article {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .other-article .article-socials {
    width: 65%;
  }
  .other-article .article-socials .social {
    padding-left: 15px;
    padding-right: 15px;
  }
  .other-article .article-socials .social span {
    margin-bottom: 0;
    font-size: 10px;
    margin-left: 5px;
  }
  .other-article .article-socials .social__like {
    padding: 0 15px;
  }
}

@media only screen and (max-width: 767px) {
  .other-article {
    margin-top: 20px;
    margin-bottom: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .other-article .article-socials {
    width: 100%;
    margin-top: 15px;
  }
  .other-article .article-socials .social {
    padding-left: 15px;
    padding-right: 30px;
  }
  .other-article .article-socials .social span {
    margin-bottom: 0;
    font-size: 10px;
    margin-left: 5px;
  }
  .other-article .article-socials .social__like {
    padding: 0 29px;
  }
}

.page-template-default.page .section-title {
  margin-bottom: 40px;
}

/*.proj-logos{
  margin-top: 20px;
  display: table-cell;
  vertical-align: middle;
  padding-left: 23%;
}

.proj-logos > a{
  margin-right: 65px;
}

@media only screen and (max-width: 567px) {
  .proj-logos{
    display: flex;
  flex-direction: row;
  justify-content: center;

    padding-left: 23px;
  }
.proj-logos{
  margin-top: 20px;
  display: table-cell;
  vertical-align: middle;
  padding-left: 23%;
}

.proj-logos > a{
  margin-right: 65px;
}
}*/


.proj-logos{
  margin-top: 20px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-left: 23%;
  padding-right: 23%;
}

@media only screen and (max-width: 567px) {
  .proj-logos{
    flex-direction: column;
    align-items: center;
    height: 185px;
  }
}

.page-template-services-page-tpl.page .section-title {
  margin-bottom: 40px;
}

.services {
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;

  margin-bottom: 30px;
}
.services .service {
  background-size: auto 100%;
  background-position: center;
  position: relative;
  margin-bottom: 30px;
  display: block;
  width: 100%;
  height: 335px;
}
@media only screen and (max-width: 991px) {
  .services .service {
    background-size: 100% auto;
  }
}
@media only screen and (max-width: 767px) {
  .services .service {
    background-size: auto 100%;
  }
}
.services .service > img {
  display: block;
  max-width: 100%;
  height: auto;
}
.services .service .service-in {
  position: absolute;
  bottom: 30px;
  overflow: hidden;
  color: #fff;
  padding-left: 40px;
  padding-right: 40px;
}
.services .service .service-in-w {
  transform: translateY(38px);
  transition: all 0.5s;
}
.services .service:hover .service-in-w {
  transform: translateY(0px);
}
.services .service .service-in h2 {
  margin-bottom: 15px;
  font-family: Warnock;
  font-size: 40px;
}
@media only screen and (max-width: 767px) {
  .services .service .service-in h2 {
    margin-bottom: 15px;
    font-family: Warnock;
    font-size: 34px;
  }
}
.services .service .service-in .description {
  font-size: 14px;
  color: #959595;
}
.services .service .service-in .detail {
  text-transform: uppercase;
  font-size: 14px;
  margin-top: 15px;
  color: #fff;
  position: relative;
  display: inline-block;
  margin-bottom: -20px;
  opacity: 0;
  transition: all 0.2s;
  text-decoration: none;
}
.services .service:hover .service-in .detail {
  opacity: 1;
}
.services .service .service-in .detail:before {
  content: '';
  position: absolute;
  width: 100%;
  bottom: 5px;
  border-bottom: 1px solid #fff;
  opacity: 0.3;
}
.services .service .service-in .detail:after {
  content: '';
  position: absolute;
  background: url('../img/gr.png') center no-repeat;
  width: 20px;
  height: 9px;
  right: -30px;
  top: 4px;
}
.services .service:nth-child(3n) {
  margin-right: 0px;
}
.description-border {
  position: relative;
  //padding-bottom: 45px;
  margin-bottom: 50px;
  overflow: hidden;
  width: 100%;
  box-sizing: padding-box;
}
.description-border--:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  border-bottom: 1px solid #e3e3e3;
  width: 100%;
}

.phone-ropl {
  background-color: #f3f3f3;
  padding-top: 45px;
  padding-bottom: 35px;
}
.phone-ropl-content {
  text-align: center;
}
.phone-ropl-content .description {
  text-align: center;
  display: block;
  color: #959595;
  font-size: 14px;
  text-transform: uppercase;
}
.phone-ropl-content .phone-descr {
  font-size: 46px;
  font-family: Warnock;
}
.phone-ropl-content .phone-descr br {
  display: none;
}
@media only screen and (max-width: 767px) {
  .phone-ropl-content .description {
    margin-bottom: 15px;
  }
  .phone-ropl-content .phone-descr {
    font-size: 30px;
    line-height: 35px;
  }
  .phone-ropl-content .phone-descr br {
    display: block;
  }
}
.phone-ropl-content .phone-descr a {
  color: #000;
  text-decoration: none;
  position: relative;
}
.phone-ropl-content .phone-descr a:after {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  border-bottom: 2px solid #000;
  bottom: -3px;
  left: 0;
}
@media only screen and (max-width: 1199px) {

}
@media only screen and (max-width: 991px) {
  .description-border {
    padding-bottom: 40px;
    margin-bottom: 0px;
  }
  .description-border:after {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .services .service > img {
    min-height: 350px;
  }
  .services .service .service-in-w {
    transform: translateY(0);
  }
  .services .service .service-in .detail {
    opacity: 1;
  }
  .description-border br {
    display: none;
  }

}

.modal-services {
  max-width: 682px;
}
.modal {
  padding: 0;
  display: none;
}
.modal-content {
  padding: 40px 55px;
}
@media only screen and (max-width: 767px) {
  .modal-content {
    padding: 40px 25px;
  }
}

.modal .image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 70px;
  padding-bottom: 70px;
  text-align: center;
  color: #fff;
}
.modal .image h2 {
  font-family: Warnock;
  font-size: 40px;
  margin-bottom: 12px;
  font-weight: normal;
}
.modal .image .description {
  font-size: 14px;
  margin-bottom: 15px;
}
.modal .image .ntn-link {
  background-color: #000000;
  line-height: 60px;
  font-size: 14px;
  color: #FFFFFF;
  display: inline-block;
  text-decoration: none;
  width: 180px;
}

.modal .modal-content .description {
  padding-bottom: 45px;
  margin-bottom: 45px;
  border-bottom: 1px solid #e3e3e3;
}
@media only screen and (max-width: 767px) {
  .modal .modal-content .description {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}
.modal .modal-content .description h3 {
  font-size: 24px;
  margin-bottom: 15px;
}
.modal .modal-content .description span {
  font-size: 14px;
}
.modal .modal-content .price > .price-item {
  margin-bottom: 35px;
}
@media only screen and (max-width: 767px) {
  .modal .modal-content .price > .price-item {
    margin-bottom: 30px;
  }
}
.modal .modal-content .price > .price-item > .title {
  font-size: 14px;
  color: #959595;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .modal .modal-content .price > .price-item > .title {
    margin-bottom: 30px;
  }
}
.modal .modal-content .price > .price-item > ul {
  margin-left: 0;
  padding-left: 0;
  list-style: none;
}
.modal .modal-content .price > .price-item > ul > li {
  font-size: 24px;
  font-weight: 500;
  position: relative;
  margin-bottom: 10px;
}
.modal .modal-content .price > .price-item > ul > li:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  bottom: 11px;
  border-bottom: 1px dotted #000;
}
.modal .modal-content .price > .price-item > ul > li > span {
  display: inline-block;
  background-color: #fff;
  position: relative;
}
.modal .modal-content .price > .price-item > ul > li > span.right {
  float: right;
}
@media only screen and (max-width: 767px) {
  .modal .modal-content .price > .price-item > ul > li > span {
    display: block;
    float: none;
  }
  .modal .modal-content .price > .price-item > ul > li > span.right {
    float: none;
  }
}
.form-services {
  border: 1px solid #000;
  padding: 40px;
}
@media only screen and (max-width: 767px) {
  .form-services {
    padding: 20px;
  }
}
.form-services .title {
  text-align: center;
  font-family: Warnock;
  font-size: 30px;
  margin-bottom: 35px;
}
@media only screen and (max-width: 767px) {
  .form-services .title {
    margin-bottom: 15px;
  }
}
.form-services .form-group + .form-group {
  margin-top: 20px;
}
.form-services .form-group input {
  width: 100%;
  border: 1px solid #e3e3e3;
  line-height: 60px;
  padding: 0 20px;
  color: #000;
  font-family: Gotham;
}
.form-services .form-group input.submit {
  background: #000;
  color: #fff;
  border: 0;
  font-family: Gotham;
}
.form-services .form-group .left, .form-services .form-group .right {
  width: 50%;
  display: inline-block;
  box-sizing: border-box;
  font-family: Gotham;
}
@media only screen and (max-width: 767px) {
  .form-services .form-group .left, .form-services .form-group .right {
    width: 100%;
    display: block;
  }
}
.form-services .form-group .left {
  padding-right: 10px;
  font-size: 14px;
  color: #aaaaaa;
  float: left;
}
.form-services .form-group .left > a {
  color: #000;
  text-decoration: underline;
}
@media only screen and (max-width: 767px) {
  .form-services .form-group .right {
    margin-bottom: 15px;
  }
  .form-services .form-group .left {
    text-align: center;
  }
}
:active, :hover, :focus {
  outline: 0;
  outline-offset: 0;
}
.modal-services .fancybox-close-small {
  color: #fff !important;
  z-index: 9999;
}

.wpcf7-response-output, span.wpcf7-not-valid-tip {
  display: none !important;
}

.wpcf7-not-valid {
  border: 1px solid #d2606c !important;
}
.clearbr > br {
  display: none !important;
}

div.wpcf7 .ajax-loader {
  position: absolute;
  margin-top: 20px;
}

div.wpcf7 p:empty {
  display: none !important;
}

@media screen and (max-width:991px) {
  div.wpcf7 .ajax-loader {
    margin: 17px 0 0px -25px;
  }
}

div.wpcf7 .ajax-loader {
  position: absolute;
  margin-top: 0px !important;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
}
.form-group {
  position: relative;
}

#fancybox-wrap {
  position:fixed;
  top: 0;
  left: 0;
  padding: 20px;
  z-index: 1101;
  outline: none;
  display: none;
}




