/**-----------------------------------------------------------------
  ----------------------------------------------------------------
  [Table of contents]

  1. Body and general styles
  2. Buttons styles
  3. preloader
  4. titels
  5. section HEADER
  6. jarallax style 
  7. section BANNER
  8. section WE homepage.html
  9. section WORKS homepage.html
  10. section OFFER homepage.html
  11. section CHOOSE homepage.html
  12. section PARTNER homepage.html
  13. section MAP homepage.html
  14. section MESSAGE homepage.html
  15. FOOTER
  16. section PHOTO-PROJECT project.html
  17. SLIDER project-scool.html
  18. section PRSCOOL
  19. services.html
  20. about.html
  21. blog.html
  22. contacts.html
  ----------------------------------------------------------------
  -------------------------------------------------------------**/

/* 1. Body and general styles */

@import url("https://fonts.googleapis.com/css?family=Ubuntu");

body {
  font-family: Ubuntu, sans-serif;
  font-size: 14px;
  margin: 0;
  position: relative;
  width: 100%;
  min-width: 320px;
}

* {
  box-sizing: border-box;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
  font-family: Ubuntu, serif;
}

button {
  outline-style: none;
}

/*
2. Buttons styles
*/

.btn__main {
  border-radius: 28px;
  padding: 13px 0;
  min-width: 220px;
  background-color: transparent;
  border: 2px solid #fffffe;
  color: #fffffe;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

.btn__main-active {
  border: 2px solid #e6ae01;
  background-color: #e6ae01;
}

.btn__main-active:hover {
  border: 2px solid #888;
  background-color: #888;
}

.btn__main-right {
  float: right !important;
  min-width: 200px;
}

.btn__main-icon {
  color: #ababab;
  border: 1px solid #ababab;
}

.btn__main:hover {
  border: 2px solid #888;
  background-color: #888;
}

/*
3. preloader
*/

.preloader {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  z-index: 600;
}

.preloader__wrapper {
  background-color: #fffffe;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 500;
  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;
  transition: 0.5s cubic-bezier(0.79, 0.14, 0.15, 0.86);
  transition-delay: 1s;
}

.preloader__wrapper-loaded {
  background-color: #fffffe;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  visibility: hidden;
}

.preloader__square {
  display: inline-block;
  width: 25px;
  height: 25px;
  background-color: #e6ae01;
  opacity: 0.5;
  -webkit-animation: movein 2s infinite;
  animation: movein 2s infinite;
}

.preloader__square:nth-child(1) {
  -webkit-transform: translate(0, -25px);
  transform: translate(0, -25px);
}

.preloader__square:nth-child(2) {
  -webkit-transform: translate(25px, 0);
  transform: translate(25px, 0);
}

.preloader__square:nth-child(3) {
  -webkit-transform: translate(-25px, 0);
  transform: translate(-25px, 0);
}

.preloader__square:nth-child(4) {
  -webkit-transform: translate(0, 25px);
  transform: translate(0, 25px);
}

/*
4. titels
*/

.decor-item {
  display: inline-block;
  width: 50px;
  height: 6px;
  border-radius: 3px;
  background-color: #e6ae01;
}

.section-title {
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 8px 0;
  margin-bottom: 31px;
}

/*
5. section HEADER
*/

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 120;
}

.header__wrapper {
  background-color: #fff;
}

.header__navigation {
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__menu {
  display: block;
}

.header__menu-list {
  font-size: 16px;
  text-transform: uppercase;
  line-height: 1;
}

.header__menu-item {
  display: inline-block;
  text-align: center;
}

.header__menu-item >a {
  display: inline-block;
  color: #211d1b;
  padding: 32px 26px;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

.header__menu-item >a:hover,
.header__menu-item a.active {
  text-decoration: none;
  color: #fff;
  background-color: #e6ae01;
}

.header__button {
  display: none;
  margin: 19px 0 19px 20px;
  text-align: right;
}

.header__button-toggle {
  padding: 10px;
  background-color: transparent;
  border: none;
}

.header__button-rule {
  display: block;
  height: 1px;
  margin-bottom: 4px;
  border-bottom: 3px solid #211d1b;
  width: 20px;
}

.header__phone {
  margin: 0;
}

.header__phone-title {
  text-align: right;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 1px;
  word-spacing: 0.5px;
  color: rgba(33,28,27,0.8);
  padding: 1px 0;
}

.header__phone-title >i {
  color: #e6ae01;
  padding: 0 7px 0 0;
}

.header__phone-title >i >span {
  font-size: 14px;
  color: #211d1b;
  letter-spacing: normal;
}

@media only screen and (max-width: 991px) {
  .header__navigation {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .header__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border: 1px solid #ebebeb;
    width: auto;
  }

  .header__button {
    display: block;
  }

  .header__menu-item {
    display: block;
  }
}

@media only screen and (max-width: 480px) {
  .header__navigation {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .header__logo {
    margin-right: 15px;
  }
}

/* 6. jarallax style  */

.jarallax {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

/* 7. section BANNER */

.banner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15,30,41,0.7);
}

.banner {
  background-image: url("../img/banner_base.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  color: #fffffe;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.banner__content {
  min-height: calc(100vh - 80px);
  padding: 260px 0;
}

.banner__title {
  font-size: 53px;
  font-weight: 700;
  text-align: center;
}

.banner__desk {
  text-align: center;
  line-height: 45px;
}

.banner__desk-item {
  display: inline-block;
  padding: 12px 0;
  font-size: 24px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 4.5px;
}

.banner__desk-item:after {
  content: '';
  display: inline-block;
  width: 9px;
  height: 9px;
  background-color: #e6ae01;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin: 4px 25px;
}

.banner__desk-item:last-child:after {
  display: none;
}

.banner__btn-group {
  text-align: center;
  padding: 34px;
}

.banner__btn-group >button {
  margin: 16px;
}

.banner-section {
  background-image: url("../img/project/base_banner.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  color: #fffffe;
  height: 396px;
  text-align: center;
  padding: 175px 0 110px 0;
}

.banner-section__title {
  font-size: 53px;
  font-weight: 700;
}

.banner-section__crumb {
  margin: 11px 0;
}

.banner-section__crumb-item {
  display: inline-block;
  font-size: 18px;
  font-weight: 300;
  color: #dadada;
}

.banner-section__crumb-item >a {
  color: #e6ae01;
  text-decoration: none;
  cursor: pointer;
}

.banner-section__crumb-item:after {
  content: '\f101';
  padding: 0 5px;
  font-family: FontAwesome;
  color: #e6ae01;
}

.banner-section__crumb-item:last-child:after {
  display: none;
}

.banner-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15,30,41,0.7);
}

/* 8. section WE homepage.html */

.we {
  padding: 90px 0;
  text-align: left;
  background-color: #fafafa;
}

.we__image {
  width: 100%;
  background-color: #6c757c;
  box-shadow: 39px 39px #eaeef1;
}

.we__image >img {
  width: 100%;
}

.we__title {
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 8px 0;
}

.we__desk {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 0;
}

.we__content {
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}

.we__link {
  color: #211d1b;
  font-size: 17px;
  font-weight: 300;
  line-height: 43px;
  text-decoration: none;
  border-bottom: 2px solid #211d1b;
  padding-bottom: 1px;
  transition: all 0.3s ease-in-out;
}

.we__link:hover {
  color: #e6ae01;
  border-bottom-color: #e6ae01;
  text-decoration: none;
}

/* 9. section WORKS homepage.html */

.works {
  padding: 113px 0 0;
  text-align: center;
}

.works__title {
  text-align: center;
  padding: 5px 0;
}

.works__title >h3 {
  display: inline-block;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0 0 35px 0;
  margin: 5px 0;
}

.works__gallery {
  display: inline-block;
  text-align: justify;
}

.works__gallery-item {
  display: inline-block;
  float: left;
  width: 25%;
  background-color: #6c757c;
}

.works__gallery-item >img {
  width: 100%;
}

@media only screen and (max-width: 1200px) {
  .works__gallery-item {
    width: 50%;
  }
}

@media only screen and (max-width: 480px) {
  .works__gallery-item {
    width: 100%;
  }
}

.hidden-item {
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
  position: absolute;
  width: 90%;
  height: 90%;
  top: 5%;
  left: 5%;
  background-color: rgba(0,0,0,0.5);
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.hidden-item__title {
  color: #fffffe;
  font-size: 2.3rem;
  font-weight: 400;
}

.hidden-item__btn-group {
  text-align: center;
}

.hidden-item__btn-group >button,
.hidden-item__btn-group a {
  display: inline-block;
  color: #fffffe;
  width: 7rem;
  height: 7rem;
  font-size: 3rem;
  border-radius: 50%;
  margin: 30PX 10px;
  transition: all 0.3s ease-in-out;
}

.hidden-item__btn-group >button >i,
.hidden-item__btn-group a >i {
  line-height: 7rem;
}

.hidden-item__btn-look {
  background-color: #e6ae01;
  border: none;
}

.hidden-item__btn-look:hover {
  background-color: #444;
}

.hidden-item__btn-expand {
  background-color: transparent;
  border: 1px solid #e6ae01;
}

.hidden-item__btn-expand:hover {
  background-color: #444;
  border: 1px solid #444;
}

.hidden-item:hover {
  opacity: 1;
}

/* 10. section OFFER homepage.html */

.offer {
  padding: 85px 0 65px;
  text-align: center;
}

.offer__title {
  display: inline-block;
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 10px 0px 0 0;
}

.offer__desk {
  padding: 0;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.offer__item:before {
  content: '';
  display: block;
  left: 40px;
  width: 142px;
  height: 142px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #e6ae01;
}

.offer__item {
  display: inline-block;
  margin: 75px 0 25px;
}

.offer__item >img {
  width: 70px;
  height: 80px;
  margin-top: -160px;
}

.offer__item-desk {
  color: #211d1b;
  font-size: 18px;
  font-weight: 300;
  opacity: 0.7;
}

.offer__delimiter {
  border: 1px solid #d7dde3;
  width: 100%;
  margin-top: 145px;
}

@media only screen and (max-width: 991px) {
  .offer__delimiter {
    margin-top: 45px;
  }
}

/* 11. section CHOOSE homepage.html */

.choose:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15,30,41,0.7);
}

.choose {
  text-align: center;
  color: #fffffe;
  background-image: url("../img/base_section.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0;
}

.choose__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 10px;
  padding: 12px 0;
  text-transform: uppercase;
}

.choose__wrapper {
  display: inline-block;
  text-align: center;
  max-width: 270px;
  max-height: 265px;
  border-bottom: 1px solid #e6ae01;
  margin: 43px 0 0;
}

.choose__wrapper:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 27%;
  height: 220px;
  border-left: 1px solid #e6ae01;
  border-top: 1px solid #e6ae01;
}

.choose__wrapper:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 27%;
  height: 220px;
  border-right: 1px solid #e6ae01;
  border-top: 1px solid #e6ae01;
}

.choose__item {
  display: inline-block;
  height: 50px;
  width: 65px;
  border-bottom: 1px solid #e6ae01;
}

.choose__img {
  display: inline-block;
  padding: 0;
}

.choose__img >img {
  width: 100px;
  height: 84px;
}

.choose__desk {
  min-height: 180px;
  padding: 50px 30px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}

/* 12. section PARTNER homepage.html */

.bx-wrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.bx-wrapper img {
  width: 100%;
  max-width: 100%;
  display: block;
}

.bx-prev,
.bx-next {
  display: inline-block;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background-color: #c2c3c3;
  text-align: center;
  position: absolute;
  z-index: 3;
  top: -100px;
  text-decoration: none;
  outline: none;
  transition: all 0.3s ease-in-out;
}

.bx-prev:hover,
.bx-next:hover {
  background-color: #e6ae01;
  text-decoration: none;
}

.bx-next {
  right: -70px;
}

.bx-prev {
  left: -70px;
}

.bx-prev:before,
.bx-next:before {
  font-size: 38px;
  color: #fffffe;
  font-family: "FontAwesome";
  text-decoration: none;
}

.bx-prev:before {
  content: "\f104";
}

.bx-next:before {
  content: "\f105";
}

@media only screen and (max-width: 1024px) {
  .bx-prev,
  .bx-next {
    display: none;
  }
}

.partner {
  padding: 100px 0;
  text-align: center;
}

.partner__title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 27px;
  text-transform: uppercase;
}

.partner__item {
  display: inline-block;
  padding: 10px;
}

/** 13. section MAP homepage.html **/

.map {
  width: 100%;
  height: 510px;
  border-top: 5px solid #e6ae01;
}

/** 14. section MESSAGE homepage.html **/

.message {
  padding: 90px 0 60px;
  text-align: center;
  background-image: url("../img/base_section_1.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

.message__title {
  padding: 5px 0;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
}

.message__col {
  margin: 15px 0;
}

.message__col >label {
  position: absolute;
  top: 13px;
  left: 45px;
  color: #6c757c;
  font-size: 16px;
  z-index: 3;
}

.message__form {
  padding: 25px 0;
}

.message__input {
  height: 50px;
  border-radius: 25px;
  padding: 0px 55px;
  font-size: 16px;
}

.message__area {
  border-radius: 25px;
  padding: 12px 55px;
  margin-bottom: 40px;
  font-size: 16px;
}

.message:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15,30,41,0.7);
}

/** 15. FOOTER **/

.footer {
  padding: 35px 0 58px 0;
  color: #fffffe;
  background-color: #0f1e29;
}

.footer__title {
  padding: 15px 0 17px;
  font-size: 20px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
}

.footer__desk {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  padding-right: 20px;
  line-height: 1.25;
}

.footer__logo {
  padding: 25px 0;
}

.footer__nav {
  list-style: none;
  display: inline-block;
}

.footer__nav li a {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.73;
  text-decoration: none;
  color: rgba(255,255,255,0.2);
  transition: all 0.3s ease-in-out;
}

.footer__nav li a:hover {
  color: rgba(254,254,254,0.6);
}

.footer__nav:last-child {
  margin-left: 26px;
}

.footer__adr {
  max-width: 320px;
  padding: 0;
}

.footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 9px;
}

.footer__row >* {
  display: inline-block;
  color: rgba(255,255,255,0.6);
}

.footer__row >i {
  padding: 5px 11px 0 0;
  color: #e6ae01;
}

.footer__row >a {
  width: 25px;
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  background-color: rgba(121,121,121,0.5);
  text-align: center;
  margin-top: 13px;
  margin-right: 18px;
  transition: all 0.3s ease-in-out;
}

.footer__row >a:hover {
  color: #e6ae01;
}

.copyright {
  height: 38px;
  background-color: #26343d;
  color: rgba(255,255,255,0.3);
  text-align: center;
  font-size: 12px;
  font-weight: 300;
  padding: 12px 0;
}

.copyright__desk {
  display: inline-block;
}

/* 16. section PHOTO-PROJECT project.html */

.photo-project__filter {
  display: block;
}

.photo-project__filter-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.photo-project__filter-list-item {
  display: inline-block;
}

.photo-project__filter-list-item >a {
  display: inline-block;
  padding: 36px 0px;
  margin: 0 30px;
  color: #ababab;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.photo-project__filter-list-item >a:hover {
  color: #e6ae01;
}

.photo-project__filter-list-item >a:after {
  content: '';
  opacity: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background-color: #e6ae01;
  transition: all 0.3s ease-in-out;
}

.photo-project__filter-list-item >a:hover:after {
  opacity: 1;
}

.photo-project__gallery-item {
  margin: 15px 0px;
}

.photo-project__gallery-item >img {
  width: 100%;
}

.photo-project__pager {
  padding: 22px 0 90px 0;
}

.photo-project__pager-item:first-child {
  margin-right: 30px;
}

.photo-project__pager-item:last-child {
  margin-left: 30px;
}

.photo-project__pager-item {
  display: inline-block;
}

.photo-project__pager-item >a {
  color: #ababab;
  font-size: 28px;
  transition: all 0.3s ease-in-out;
}

.photo-project__pager-item >a:hover {
  color: #e6ae01;
}

.photo-project__pagination-item {
  display: inline-block;
  margin: 0 7px;
}

.photo-project__pagination-item >a {
  color: #ababab;
  font-size: 26px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.photo-project__pagination-item >a:hover {
  color: #e6ae01;
}

@media only screen and (max-width: 991px) {
  .photo-project__filter-list-item >a {
    padding: 18px 0px;
    margin: 0 15px;
  }
}

/* project-scool.html */

/*  17. SLIDER project-scool.html */

.hide-bullets {
  list-style: none;
  margin-top: 20px;
}

.thumbnail {
  padding: 0;
}

.carousel-inner>.item>img,
.carousel-inner>.item>a>img {
  width: 100%;
}

.col-sm-4 a {
  border: 1px solid transparent;
  border-radius: 0;
  transition: all 3s ease;
}

/* 18. section PRSCOOL */

.prscool {
  padding: 90px 0;
  text-align: center;
}

.prscool__item {
  text-align: left;
}

.prscool__title {
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  line-height: 16px;
  color: #211d1b;
}

.prscool__desk {
  margin: 20px 0 6px 0;
}

.prscool__desk-row {
  padding: 9px 0;
  color: #211d1b;
}

.prscool__desk-row >i {
  width: 28px;
  text-align: left;
  font-size: 18px;
  color: #e6ae01;
}

.prscool__desk-row >img {
  margin-right: 15px;
}

.prscool__desk-name {
  font-size: 18px;
  font-weight: 300;
  min-width: 80px;
  margin-right: 27px;
}

.prscool__desk-value {
  display: inline-block;
  font-size: 16px;
  font-weight: 300;
}

.prscool__content {
  color: #211d1b;
  font-size: 18px;
  font-weight: 400;
  max-height: 130px;
  overflow: hidden;
  padding-right: 60px;
  margin-bottom: 52px;
  line-height: 1.52;
}

.prscool__btn-group {
  padding-right: 60px;
  margin: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.prscool__btn-group >button {
  margin: 20px 0;
}

.prscool__btn-group >button >i {
  margin-right: 10px;
  font-size: 18px;
}

.prscool__main-img {
  height: 420px;
  overflow-y: hidden;
}

.prscool__main-img >img {
  width: 100%;
  overflow-y: hidden;
}

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

.prscool__rank-img {
  margin-top: 30px;
}

/*   19. services.html */

.services__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin-left: -30px;
  margin-right: -30px;
}

.services__item {
  width: 16%;
  padding: 120px 0 105px 0;
  text-align: center;
}

.services__item-title {
  padding: 40px 0 20px 0;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
}

.services__item-content:hover {
  opacity: 1;
}

.services__item-content {
  color: #211d1b;
  opacity: 0.4;
  transition: all 0.3s ease-in-out;
}

.services__item-desk {
  height: 160px;
  line-height: 1.7;
}

.services__item >img {
  margin-top: -125px;
  width: 70px;
}

.services__item:before {
  margin: 0 auto;
  content: '';
  display: block;
  width: 106px;
  height: 106px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #e6ae01;
}

.services__delimiter {
  margin-top: 172px;
  width: 12%;
  height: 1px;
  border: 1px solid #d7dde3;
}

@media only screen and (max-width: 991px) {
  .services__content {
    margin-left: 0;
    margin-right: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .services__item {
    width: 35%;
    padding: 60px 0;
  }

  .services__delimiter {
    width: 30%;
    margin-top: 112px;
  }

  .services__delimiter-hidden {
    display: none;
  }
}

@media only screen and (max-width: 480px) {
  .services__item {
    width: 100%;
  }

  .services__delimiter {
    width: 90%;
    margin: 0 auto;
  }

  .services__delimiter-hidden {
    display: block;
  }
}

.testimonials {
  text-align: center;
  color: #fffffe;
  background-image: url("../img/services/base_testmonials.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  padding: 91px 0 55px;
}

.testimonials__wrapp {
  max-width: 630px;
  margin: 25px auto;
}

.testimonials__desk {
  margin: 0 15px;
  text-align: left;
  font-size: 18px;
  line-height: 30px;
  opacity: 0.9;
  z-index: 15;
}

.testimonials__desk-quoteleft,
.testimonials__desk-quoteright {
  font-size: 105px;
  color: #211d1b;
  opacity: 0.4;
  z-index: 1;
  position: absolute;
  top: 11px;
}

.testimonials__desk-quoteright {
  right: 15px;
}

.testimonials__desk-quoteleft {
  left: 15px;
}

.testimonials__slider {
  margin-top: 35px;
  max-width: 502px;
  min-height: 120px;
}

.testimonials__slider-slide {
  z-index: 50;
  width: 130px;
  -webkit-transform: scale(0.72);
  transform: scale(0.72);
  transition: all 0.3s ease-in-out;
}

.testimonials__slider-img {
  display: block;
  border-radius: 16px;
  width: 100%;
  height: auto;
}

.testimonials__slider-controls {
  position: absolute;
  bottom: 70px;
  width: 100%;
  height: 120px;
}

.testimonials__slider-title {
  width: 300px;
  white-space: nowrap;
  -webkit-transform: translateX(-90px);
  transform: translateX(-90px);
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 15px;
}

.testimonials__slider-comment {
  color: #a3b2bf;
  font-size: 18px;
  white-space: nowrap;
  width: 300px;
  -webkit-transform: translateX(-90px);
  transform: translateX(-90px);
}

.testimonials__slider-caption {
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.testimonials__slider-slide.swiper-slide-active {
  z-index: 100;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.testimonials__slider-slide.swiper-slide-active >figure >.testimonials__slider-caption {
  opacity: 1;
}

.testimonials__slider-controls .swiper-button-prev,
.testimonials__slider-controls .swiper-button-next {
  background-image: none;
  display: inline-block;
  font-size: 60px;
  font-weight: 400;
  line-height: 1;
  transition: all 0.3s ease-in-out;
}

.testimonials__slider-controls .swiper-button-prev:hover,
.testimonials__slider-controls .swiper-button-next:hover {
  color: #e6ae01;
}

.testimonials:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15,30,41,0.7);
}

/* 20. about.html */

.history {
  min-height: 713px;
  background-image: url("../img/about/base_history.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.history__head {
  text-align: center;
  margin-top: 90px;
  margin-bottom: 50px;
}

.history__title {
  margin-top: 15px;
  margin-bottom: 45px;
  color: #211d1b;
  font-size: 26px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.history__content {
  max-height: 360px;
  max-width: 815px;
  overflow: hidden;
  color: #211d1b;
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
  text-align: center;
  margin: 0 auto;
}

.history__img {
  background-color: #797979;
}

.history__img >img {
  width: 100%;
}

.steps:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15,30,41,0.7);
}

.steps {
  color: #fffffe;
  background-image: url("../img/base_section.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-bottom: 55px;
}

.steps__title {
  margin-top: 15px;
  margin-bottom: 45px;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.steps__head {
  text-align: center;
  margin-top: 90px;
  margin-bottom: 50px;
}

.steps__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.steps__item {
  display: inline-block;
  text-align: center;
  width: 221px;
  border-bottom: 1px solid #e6ae01;
}

.steps__item:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 20%;
  height: 126px;
  border-left: 1px solid #e6ae01;
  border-top: 1px solid #e6ae01;
}

.steps__item:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 20%;
  height: 126px;
  border-right: 1px solid #e6ae01;
  border-top: 1px solid #e6ae01;
}

.steps__img {
  display: inline-block;
  padding: 0;
  height: 100px;
}

.steps__img >img {
  width: 100px;
}

.steps__desk {
  padding: 25px 30px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  text-transform: uppercase;
}

.steps__btn {
  min-width: 240px;
}

@media only screen and (max-width: 991px) {
  .steps__row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .steps__item {
    width: 35%;
    margin: 15px 0;
  }
}

@media only screen and (max-width: 480px) {
  .steps__row {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .steps__item {
    width: 90%;
  }
}

.team {
  padding: 90px 0;
}

.team__head {
  text-align: center;
}

.team__head-title {
  margin-top: 15px;
  margin-bottom: 50px;
  color: #211d1b;
  font-size: 26px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.team__item {
  text-align: center;
}

.team__item-hidden:hover {
  opacity: 0.8;
}

.team__item-hidden {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #e6ae01;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.team__item-hidden-list {
  margin: auto;
}

.team__item-hidden-list >li {
  display: inline-block;
  padding: 15px;
}

.team__item-hidden-list >li >a {
  font-size: 20px;
  color: #211d1b;
  transition: all 0.3s ease-in-out;
}

.team__item-hidden-list >li >a:hover {
  color: #fffffe;
}

.team__img {
  max-width: 270px;
  margin: 0 auto;
}

.team__img >img {
  width: 100%;
}

.team__title {
  margin-top: 20px;
  color: #211d1b;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.team__desk {
  color: #6c757c;
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
}

/*  21. blog.html */

.blog {
  padding: 100px 0 10px 0;
}

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

.blog__item {
  max-width: 47%;
  background-color: #ebeff3;
  margin-bottom: 30px;
}

.blog__item-img a {
  cursor: pointer;
}

.blog__item-img a >img {
  width: 100%;
}

.blog__item-img:before {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  content: '';
  width: 70px;
  height: 50px;
  border-bottom-left-radius: 15px;
  background-color: #e6ae01;
  z-index: 5;
}

.blog__item-date {
  position: absolute;
  top: 6px;
  right: 19px;
  z-index: 6;
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  line-height: 18px;
}

.blog__item-title {
  margin: 34px 0 18px 0;
  font-size: 26px;
  font-weight: 500;
  line-height: 26px;
  text-align: center;
}

.blog__item-title >a {
  color: #211d1b;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.blog__item-title >a:hover {
  color: #e6ae01;
}

.blog__item-desk {
  padding: 0 35px;
  margin-bottom: 32px;
  max-height: 205px;
  overflow: hidden;
  color: #6c757c;
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
}

.blog__info-item {
  margin-bottom: 55px;
}

.blog__info-item-search {
  height: 50px;
  border-width: 0;
  border-radius: 25px;
  padding: 0px 55px 0 25px;
  font-size: 16px;
  background-color: #ebeff3;
}

.blog__info-item-label {
  color: #6c757c;
  font-size: 18px;
  position: absolute;
  top: 12px;
  right: 25px;
  z-index: 3;
}

.blog__info-item-title {
  margin-bottom: 25px;
  color: #211d1b;
  font-size: 26px;
  font-weight: 700;
  line-height: 30px;
}

.blog__info-item-link {
  display: block;
  color: #6c757c;
  font-size: 16px;
  font-weight: 300;
  line-height: 48px;
  letter-spacing: 1px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.blog__info-item-link:hover {
  color: #e6ae01;
  text-decoration: none;
}

.blog__info-item-link:before {
  content: '\f101';
  font-family: FontAwesome;
  display: block;
  position: absolute;
  right: 0;
}

.blog__info-item-delimiter {
  margin: 12px 0;
  width: 100%;
  height: 1px;
  background-color: #6c757c;
  opacity: 0.5;
}

.blog__info-item-post {
  display: block;
  margin: 15px 0;
  cursor: pointer;
}

.blog__info-item-post:hover {
  text-decoration: none;
}

.blog__info-item-post:after {
  content: '';
  display: table;
  clear: both;
}

.blog__info-item-img {
  display: inline-block;
  float: left;
  margin-right: 16px;
  width: 130px;
  height: 114px;
}

.blog__info-item-img >img {
  width: 100%;
}

.blog__info-item-desk {
  text-decoration: none;
  max-height: 100px;
  overflow: hidden;
  color: #6c757c;
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
  transition: all 0.3s ease-in-out;
}

.blog__info-item-desk:hover {
  color: #e6ae01;
}

.blog-single {
  padding: 100px 0 60px;
}

.blog__single,
.blog .a {
  color: #6c757c;
  font-size: 16px;
  line-height: 24px;
}

.blog__single-img,
.blog .a-img {
  margin-bottom: 20px;
}

.blog__single-img >img,
.blog .a-img >img {
  width: 100%;
}

.blog__single-description,
.blog .a-description {
  opacity: 0.5;
}

.blog__single-description >i,
.blog .a-description >i {
  margin-right: 10px;
}

.blog__single-description >span,
.blog .a-description >span {
  margin-right: 22px;
}

.blog__single-title,
.blog .a-title {
  margin: 49px 0 25px 0;
  color: #211d1b;
  font-size: 26px;
  font-weight: 500;
}

.blog__single-subtitle,
.blog .a-subtitle {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 2.5px;
  color: #211d1b;
  text-transform: uppercase;
  margin: 20px 0 10px 0;
}

.blog__single-list,
.blog .a-list {
  padding: 15px 0;
  line-height: 30px;
}

.blog__single-list >li:before,
.blog .a-list >li:before {
  content: '\f0da';
  display: inline-block;
  color: #e6ae01;
  font-family: FontAwesome;
  margin-right: 12px;
}

.blog__single-quote,
.blog .a-quote {
  font-style: italic;
  padding: 20px 0 35px 0;
  margin-bottom: 15px;
}

.blog__single-quote >span,
.blog .a-quote >span {
  opacity: 0.5;
  position: absolute;
  bottom: 0;
  right: 0;
}

.blog__single-quote:before,
.blog .a-quote:before {
  content: '\f10d';
  display: inline-block;
  font-family: FontAwesome;
  font-size: 36px;
  font-style: normal;
  padding: 10px 30px 30px 30px;
  float: left;
}

.blog__single-tags,
.blog .a-tags {
  padding: 50px 0;
  margin-bottom: 17px;
}

.blog__single-tags li,
.blog .a-tags li {
  display: inline-block;
}

.blog__single-tags li >span,
.blog .a-tags li >span {
  color: #211d1b;
  font-size: 22px;
  font-weight: 500;
  margin-right: 40px;
}

.blog__single-tags li >a,
.blog .a-tags li >a {
  color: #6c757c;
  margin-right: 30px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.blog__single-tags li >a:hover,
.blog .a-tags li >a:hover {
  color: #e6ae01;
  text-decoration: none;
}

.blog__comment {
  color: #6c757c;
  font-size: 16px;
  line-height: 24px;
}

.blog__comment-title {
  margin: 69px 0 45px 0;
  color: #211d1b;
  font-size: 26px;
  font-weight: 500;
}

.blog__comment-tree {
  max-width: 100%;
  margin-bottom: 45px;
}

.blog__comment-tree .blog__comment-tree {
  margin-left: 145px;
}

.blog__comment-post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 15px 0;
}

.blog__comment-post-img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 25px;
  width: 120px;
}

.blog__comment-post-img >img {
  width: 100%;
}

.blog__comment-post-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.blog__comment-post-title {
  color: #211d1b;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 7px;
}

.blog__comment-post-desk {
  max-height: 90px;
  overflow: hidden;
}

.blog__comment-post-time {
  line-height: 46px;
  padding: 3px 15px 3px 0;
  border-right: 1px solid #6c757c;
}

.blog__comment-post-description {
  opacity: 0.5;
}

.blog__comment-post-description >a {
  color: #211d1b;
  opacity: 0.7;
  padding: 3px 0 3px 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.blog__comment-post-description >a:hover {
  color: #e6ae01;
  opacity: 1;
  text-decoration: none;
}

.blog__leave-title {
  margin: 69px 0 5px 0;
  color: #211d1b;
  font-size: 26px;
  font-weight: 500;
}

.blog__form {
  background-color: #ebeff3;
  border: none;
}

.blog__form-area {
  margin-bottom: 33px;
}

.blog__btn {
  padding: 11px 0;
}

@media only screen and (max-width: 610px) {
  .blog__item {
    max-width: 100%;
  }

  .blog__comment-post-time {
    display: block;
    padding: 0;
    line-height: 26px;
  }

  .blog__comment-post-description >a {
    padding: 0;
  }

  .blog__comment-post-img {
    -ms-flex-negative: 1;
    flex-shrink: 1;
    width: 60px;
  }

  .blog__comment-post-content {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
  }

  .blog__comment-tree .blog__comment-tree {
    margin-left: 30px;
  }
}

/* 22. contacts.html */

.contacts__info {
  padding: 100px 0;
}

.contacts__info-item:before {
  margin: 0 auto;
  content: '';
  display: block;
  width: 120px;
  height: 120px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #e6ae01;
}

.contacts__info-item {
  text-align: center;
  padding-top: 25px;
  padding-bottom: 3px;
}

.contacts__info-item >img {
  margin-top: -140px;
  width: 80px;
}

.contacts__info-item-title {
  color: #211d1b;
  font-size: 26px;
  font-weight: 500;
  margin-top: 27px;
  margin-left: -15px;
  margin-right: -15px;
}

.contacts__info-item-desk {
  color: #a3b2bf;
}

.contacts__delimiter {
  height: 1px;
  width: 100%;
  background-color: #d7dde3;
  margin-top: 85px;
  margin-bottom: 30px;
}

.contacts__message {
  text-align: center;
  padding: 90px 0 60px 0;
}

.contacts__message-title {
  color: #211d1b;
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
}

.contacts__message-input {
  background-color: #ebeff3;
}

@-webkit-keyframes movein {
  33% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 0.7;
  }

  66% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 0.7;
  }
}

@keyframes movein {
  33% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 0.7;
  }

  66% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 0.7;
  }
}