body {
  font-family: "Montserrat";
}

body.lock {
  overflow: hidden;
}

._container {
  max-width: 1180px;
  margin: 0px auto;
  padding-left: 20px;
  padding-right: 20px;
}

.title {
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  text-transform: uppercase;
  color: #555555;
  text-align: center;
}

.title::after {
  content: "";
  display: block;
  margin: 30px auto 28px auto;
  width: 50px;
  height: 2px;
  background-color: #555;
}

.subtitle {
  text-align: center;
  font-family: RobotoSlab;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #555555;
  margin: 0px 0px 70px 0px;
}

/*-----------------------------------------------------*/
.header {
  width: 100%;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
}

.header__rec {
  -webkit-transition-duration: 1s;
       -o-transition-duration: 1s;
          transition-duration: 1s;
  position: fixed;
  z-index: -1;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #c02f1caf;
}

@media (max-width: 768px) {
  .header__rec {
    height: 60px;
  }
}

.header__rec.show {
  top: 0;
}

.header__container {
  padding-top: 40px;
}

@media (max-width: 768px) {
  .header__container {
    padding-top: 20px;
  }
}

@media (max-width: 768px) {
  .header__logo {
    position: relative;
    z-index: 100;
  }
}

.header__logo a {
  font-family: Montserrat;
  font-size: 24px;
  line-height: 20px;
  font-weight: 700;
  color: #ffffff;
}

.menu {
  max-width: 100%;
  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;
}

.menu__body {
  -webkit-transition-duration: 0.4s;
       -o-transition-duration: 0.4s;
          transition-duration: 0.4s;
  margin: 0 -36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 768px) {
  .menu__body {
    overflow: auto;
    background-color: #c0301c;
    width: 100%;
    height: 100%;
    margin: 0;
    padding-top: 70px;
    position: fixed;
    top: -5%;
    left: -100%;
    z-index: 99;
  }
  .menu__body::before {
    content: "";
    position: fixed;
    top: 0;
    background-color: #c0301c;
    width: 100%;
    height: 60px;
  }
}

@media (max-width: 768px) {
  .menu__body.active {
    top: 0;
    left: 0;
  }
}

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

@media (max-width: 768px) {
  .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.menu__list li {
  padding: 0 18px;
  background-color: #c02f1c00;
  -webkit-transition-duration: 0.3s;
       -o-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.menu__list li:hover {
  background-color: #c02f1c5e;
  border-radius: 30px;
}

@media (max-width: 768px) {
  .menu__list li {
    margin: 0px 0px 30px 0px;
  }
  .menu__list li:last-child {
    margin: 0;
  }
}

.menu__link {
  font-family: Montserrat;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 0.025em;
  color: #ffffff;
}

@media (max-width: 768px) {
  .menu__link {
    font-size: 30px;
  }
}

.icon-menu {
  width: 40px;
  height: 20px;
  position: relative;
  z-index: 100;
  display: none;
}

@media (max-width: 768px) {
  .icon-menu {
    display: block;
  }
}

.icon-menu span {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
  top: 0;
}

.icon-menu span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.icon-menu span:last-child {
  top: auto;
  bottom: 0;
}

.icon-menu.active span:first-child {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
      -ms-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.icon-menu.active span:nth-child(2) {
  opacity: 0;
}

.icon-menu.active span:last-child {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
      -ms-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

/*-------------------------------------------------------------*/
.welcome {
  width: 100%;
  height: 100vh;
  background: url("../img/header/header_bg.jpg") center/cover no-repeat;
}

@media (max-width: 811px) {
  .welcome {
    background: url("../img/header/header_bg.jpg") -200px 0 no-repeat;
  }
}

.welcome__container {
  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;
  height: 100%;
}

.welcome__text {
  text-align: center;
}

.welcome__title {
  font-family: Montserrat;
  font-size: 48px;
  font-weight: 400;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0px 0px 30px 0px;
}

.welcome__subtitle {
  font-family: RobotoSlab;
  font-size: 20px;
  color: #ffffff;
  text-transform: capitalize;
  margin: 0px 0px 50px 0px;
}

.welcome__link {
  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;
  max-width: 180px;
  min-height: 50px;
  margin: 0px auto;
  border: 2px solid #ffffff;
  border-radius: 2px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-transform: uppercase;
  color: #ffffff;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.welcome__link::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #c02f1c83;
  position: absolute;
  z-index: -1;
  top: 0;
  left: -100%;
  -webkit-transition-duration: 0.4s;
       -o-transition-duration: 0.4s;
          transition-duration: 0.4s;
}

.welcome__link::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #c02f1c83;
  position: absolute;
  z-index: -1;
  top: 0;
  right: -100%;
  -webkit-transition-duration: 0.4s;
       -o-transition-duration: 0.4s;
          transition-duration: 0.4s;
}

.welcome__link:hover::before {
  -webkit-transform: skew(-45deg);
      -ms-transform: skew(-45deg);
          transform: skew(-45deg);
  left: -50%;
}

.welcome__link:hover::after {
  -webkit-transform: skew(-45deg);
      -ms-transform: skew(-45deg);
          transform: skew(-45deg);
  right: -50%;
}

/*-----------------------------------------------------------------------------------*/
.services__container {
  padding: 100px 20px 50px 20px;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 -45px;
}

@media (max-width: 1220px) {
  .row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.row__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 33.333%;
          flex: 1 1 33.333%;
  padding: 0 22.5px;
}

.item-row__card {
  width: 366px;
  margin: 0px auto;
}

@media (max-width: 1200px) {
  .item-row__card {
    margin-bottom: 50px;
  }
}

@media (max-width: 400px) {
  .item-row__card {
    width: 320px;
  }
}

.item-row__icon {
  margin: 0px auto 30px auto;
  width: 90px;
  height: 90px;
  border: 0.5px solid #dddddd;
  border-radius: 50%;
  position: relative;
  -webkit-transition-duration: 0.4s;
       -o-transition-duration: 0.4s;
          transition-duration: 0.4s;
  overflow: hidden;
}

.item-row__icon_a {
  background: url("../img/icons/A.svg") center center no-repeat;
}

.item-row__icon_a:hover {
  background: url("../img/icons/A_hover.svg") center center no-repeat;
}

.item-row__icon_code {
  background: url("../img/icons/code.svg") center center no-repeat;
}

.item-row__icon_code:hover {
  background: url("../img/icons/code_hover.svg") center center no-repeat;
}

.item-row__icon_circle {
  background: url("../img/icons/circle.svg") center center no-repeat;
}

.item-row__icon_circle:hover {
  background: url("../img/icons/circle_hover.svg") center center no-repeat;
}

.item-row__icon:hover::before {
  left: -49%;
}

.item-row__icon:hover::after {
  right: -49%;
}

.item-row__icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 110%;
  left: -115%;
  top: -2px;
  background-color: #c0301c;
  z-index: -1;
  -webkit-transition-duration: 0.4s;
       -o-transition-duration: 0.4s;
          transition-duration: 0.4s;
}

.item-row__icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 110%;
  right: -115%;
  top: -2px;
  background-color: #c0301c;
  z-index: -1;
  -webkit-transition-duration: 0.4s;
       -o-transition-duration: 0.4s;
          transition-duration: 0.4s;
}

.item-row__title {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  text-transform: uppercase;
  color: #555555;
  text-align: center;
  margin: 0px 0px 25px 0px;
}

.item-row__text {
  text-align: center;
  font-family: RobotoSlab;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  color: #555555;
}

@media (max-width: 400px) {
  .item-row__text {
    font-size: 10px;
    line-height: 20px;
  }
}

/*------------------------------------------------------------------------*/
.about {
  background-color: #f8f8f8;
}

.about__container {
  padding-top: 100px;
  padding-bottom: 100px;
}

.text-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 20px;
  margin: 0 -32px 70px -32px;
}

@media (max-width: 768px) {
  .text-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.text-row__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  padding: 0 16px;
}

@media (max-width: 768px) {
  .text-row__item {
    margin-bottom: 50px;
  }
  .text-row__item:last-child {
    margin: 0;
  }
}

.text-row__item p {
  font-family: RobotoSlab;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  color: #555555;
}

.photo-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 20px;
  margin: 0 -30px;
}

@media (max-width: 1200px) {
  .photo-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.photo-row__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 25%;
          flex: 1 0 25%;
  padding: 0 15px;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 1200px) {
  .photo-row__item {
    margin-bottom: 30px;
  }
  .photo-row__item:nth-child(3) {
    margin: 0;
  }
  .photo-row__item:last-child {
    margin: 0;
  }
}

@media (max-width: 605px) {
  .photo-row__item {
    margin-bottom: 30px;
  }
}

.photo-row__picture {
  width: 263px;
  height: 250px;
  margin: 0px 0px 20px 0px;
  position: relative;
  overflow: hidden;
}

.photo-row__picture::before {
  content: "";
  width: 200%;
  height: 100%;
  background-color: #55555580;
  position: absolute;
  top: 0;
  left: -200%;
  -webkit-transition-duration: 0.4s;
       -o-transition-duration: 0.4s;
          transition-duration: 0.4s;
}

.photo-row__picture:hover::before {
  -webkit-transform: skew(-45deg);
      -ms-transform: skew(-45deg);
          transform: skew(-45deg);
  left: -50%;
}

.photo-row__picture_uddin {
  background: url("../img/main/about/Md_Khalil_Uddin.jpg") center/cover no-repeat;
}

.photo-row__picture_miah {
  background: url("../img/main/about/Rubel_Miah.jpg") center/cover no-repeat;
}

.photo-row__picture_mia {
  background: url("../img/main/about/Shamim_Mia.jpg") center/cover no-repeat;
}

.photo-row__picture_doe {
  background: url("../img/main/about/John_Doe.jpg") center/cover no-repeat;
}

.photo-row__title {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  text-transform: uppercase;
  color: #555555;
}

.photo-row__subtitle {
  font-family: RobotoSlab;
  font-size: 13px;
  line-height: 24px;
  font-weight: 400;
  color: #555555;
}

.social-box {
  width: 112px;
  height: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: -28px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition-duration: 0.4s;
       -o-transition-duration: 0.4s;
          transition-duration: 0.4s;
}

.social-box__icon {
  display: block;
  width: 28px;
  height: 28px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

.social-box__icon::before {
  content: "";
  width: 200%;
  height: 100%;
  position: absolute;
  background: #c0301c;
  top: 0;
  left: -200%;
  z-index: -1;
  -webkit-transition-duration: 0.5s;
       -o-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

.social-box__icon:hover {
  background-color: #c0301c;
}

.social-box__icon:hover::before {
  -webkit-transform: skew(-45deg);
      -ms-transform: skew(-45deg);
          transform: skew(-45deg);
  left: -50%;
}

.social-box__icon_facebook {
  background: url("../img/icons/facebook.svg") center no-repeat;
}

.social-box__icon_twitter {
  background: url("../img/icons/twitter.svg") center no-repeat;
}

.social-box__icon_google {
  background: url("../img/icons/google.svg") center no-repeat;
}

.social-box__icon_linkedin {
  background: url("../img/icons/linkedin.svg") center no-repeat;
}

.photo-row__picture:hover .social-box {
  bottom: 32px;
}

/*------------------------------------------------------------------------*/
.works__container {
  padding-top: 100px;
  padding-bottom: 100px;
}

.tabs {
  font-family: "RobotoSlab";
}

.tabs__items {
  text-align: center;
  margin: 0px 0px 60px 0px;
}

.tabs__item {
  color: #555555;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  display: inline-block;
  margin: 0px 0px 10px 0px;
  padding: 0 12.5px;
}

@media (max-width: 550px) {
  .tabs__item {
    padding: 0 40px;
  }
}

.tabs__item.active {
  color: #c0301c;
}

.tabs__pane {
  display: none;
}

.tabs__pane.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pane {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 600px) {
  .pane {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow: auto;
  }
}

.pane__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 33.333%;
          flex: 1 1 33.333%;
  padding: 15px;
  max-width: 555px;
  margin: 0px auto;
}

@media (max-width: 600px) {
  .pane__item {
    width: 300px;
    padding: 5px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.pane__img {
  width: 100%;
  height: 100%;
}

.pane__picture {
  position: relative;
  overflow: hidden;
}

.pane__picture::before {
  content: "";
  width: 200%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -200%;
  background-color: #c02e1bb3;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.pane__picture:hover::before {
  -webkit-transform: skew(-45deg);
      -ms-transform: skew(-45deg);
          transform: skew(-45deg);
  left: -50%;
}

.baner {
  width: 100%;
  height: 100%;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.baner__title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.baner__subtitle {
  color: #ffffff;
  font-family: "Roboto Slab";
  font-size: 12px;
  font-weight: 400;
  line-height: 24px;
}

.baner__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100px;
  height: 38px;
  background-color: #ffffff;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #c0301c;
  font-family: "RobotoSlab";
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-transform: uppercase;
}

.baner__btn span {
  padding-right: 18px;
  background: url("../img/icons/angle_left.svg") right center no-repeat;
}

.pane__picture:hover .baner {
  top: 0;
}

/*------------------------------------------------------------------------*/
.ask {
  background: url("../img/main/ask/ask__bg.jpg") center/cover no-repeat;
  position: relative;
}

.ask::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.6;
  background-color: #c0301c;
  z-index: 0;
}

.ask__container {
  padding-top: 100px;
  padding-bottom: 100px;
}

.ask__fl {
  position: relative;
  z-index: 0;
  font-family: RobotoSlab;
  font-size: 30px;
  line-height: 44px;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
}

.ask__fl span {
  text-transform: uppercase;
}

.ask__sl {
  position: relative;
  z-index: 0;
  font-family: RobotoSlab;
  font-size: 30px;
  line-height: 44px;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  margin: 0px 0px 53px 0px;
}

.ask__sl span {
  text-transform: uppercase;
}

.ask__link {
  -webkit-transition-duration: 0.4s;
       -o-transition-duration: 0.4s;
          transition-duration: 0.4s;
  -webkit-transition-timing-function: linear;
       -o-transition-timing-function: linear;
          transition-timing-function: linear;
  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;
  max-width: 180px;
  min-height: 50px;
  margin: 0px auto;
  border: 2px solid #ffffff;
  border-radius: 2px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-transform: uppercase;
  color: #ffffff;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.ask__link::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #c02f1c83;
  position: absolute;
  z-index: -1;
  top: 0;
  left: -100%;
  -webkit-transition-duration: 0.4s;
       -o-transition-duration: 0.4s;
          transition-duration: 0.4s;
}

.ask__link::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #c02f1c83;
  position: absolute;
  z-index: -1;
  top: 0;
  right: -100%;
  -webkit-transition-duration: 0.4s;
       -o-transition-duration: 0.4s;
          transition-duration: 0.4s;
}

.ask__link:hover {
  max-width: 200px;
}

.ask__link:hover::before {
  -webkit-transform: skew(-45deg);
      -ms-transform: skew(-45deg);
          transform: skew(-45deg);
  left: -50%;
}

.ask__link:hover::after {
  -webkit-transform: skew(-45deg);
      -ms-transform: skew(-45deg);
          transform: skew(-45deg);
  right: -50%;
}

/*-------------------------------------------------------------------------*/
.blog__container {
  padding-top: 100px;
  padding-bottom: 100px;
}

.blog__post-wraper::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #dddddd;
  margin: 40px 0px 40px 0px;
}

.blog__post-wraper:last-child::after {
  display: none;
}

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

@media (max-width: 948px) {
  .post {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 460px;
    margin: 0px auto;
  }
}

.post__item {
  padding: 0 20px;
}

@media (max-width: 948px) {
  .post__item {
    padding: 0;
  }
}

.post__picture {
  width: 460px;
  height: 322px;
  overflow: hidden;
  position: relative;
}

@media (max-width: 948px) {
  .post__picture {
    margin: 0px auto 30px auto;
  }
}

@media (max-width: 520px) {
  .post__picture {
    max-width: 100%;
    height: auto;
    padding-bottom: 80%;
  }
}

.post__picture img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition-duration: 0.4s;
       -o-transition-duration: 0.4s;
          transition-duration: 0.4s;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.post__picture img:hover {
  width: 110%;
  height: 110%;
}

.post__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0px 0px 20px 0px;
}

.post__date {
  min-width: 76px;
  height: 76px;
  border: 2px solid #555555;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #777777;
  margin: 0px 30px 0px 0px;
}

.post__date span {
  font-size: 24px;
}

.post__title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-transform: uppercase;
  color: #555555;
  -webkit-transition-duration: 0.4s;
       -o-transition-duration: 0.4s;
          transition-duration: 0.4s;
}

@media (max-width: 360px) {
  .post__title {
    font-size: 14px;
    line-height: 20px;
  }
}

.post__title:hover {
  color: #c0301c;
}

.post__author {
  font-family: RobotoSlab;
  font-size: 13px;
  line-height: 24px;
  font-weight: 400;
  color: #777777;
  font-style: oblique;
}

.post__author a {
  -webkit-transition-duration: 0.4s;
       -o-transition-duration: 0.4s;
          transition-duration: 0.4s;
}

.post__author a:hover {
  color: #c0301c;
}

.post__text {
  font-family: RobotoSlab;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  color: #555555;
  margin: 0px 0px 34px 0px;
}

.post__link {
  font-family: RobotoSlab;
  font-size: 13px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #777777;
  -webkit-transition-duration: 0.4s;
       -o-transition-duration: 0.4s;
          transition-duration: 0.4s;
}

.post__link:hover {
  color: #c0301c;
}

/*--------------------------------------------------------------------------*/
.partners {
  background-color: #f8f8f8;
}

.partners__container {
  padding-top: 100px;
  padding-bottom: 100px;
}

.partners__text-block {
  max-width: 732px;
  margin: 0px auto;
}

.partners__text {
  max-width: 732px;
  margin: 0px auto;
  font-family: "RobotoSlab";
  font-size: 18px;
  font-weight: 400;
  font-style: oblique;
  letter-spacing: normal;
  line-height: 30px;
  text-align: center;
  margin-bottom: 35px;
}

.partners__author {
  font-family: "RobotoSlab";
  font-size: 20px;
  font-style: normal;
  letter-spacing: normal;
  line-height: normal;
  text-align: center;
}

.row-partners {
  max-width: 900px;
  margin: 0px auto 70px auto;
  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;
}

.row-partners__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 19%;
          flex: 1 1 19%;
  padding: 0 20px;
  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;
}

@media (max-width: 890px) {
  .row-partners__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 33.333%;
            flex: 1 1 33.333%;
    margin: 0px 0px 30px 0px;
  }
}

/*-----------------------------------------------------------------------------*/
.contact__container {
  padding-top: 100px;
  padding-bottom: 100px;
}

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

@media (max-width: 600px) {
  .contact__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.text-blok {
  max-width: 232px;
}

@media (max-width: 600px) {
  .text-blok {
    max-width: 100%;
    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;
  }
}

@media (max-width: 600px) {
  .text-blok__item {
    margin: 0px 0px 20px 0px;
    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;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 33.333%;
            flex: 1 1 33.333%;
  }
}

@media (max-width: 440px) {
  .text-blok__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.text-blok__heading {
  font-size: 14px;
  font-weight: 400;
  line-height: 30px;
  color: #555555;
  text-transform: uppercase;
}

.text-blok__heading_location span {
  background: url("../img/icons/location.svg") 0 center no-repeat;
  padding-left: 26px;
}

.text-blok__heading_phone span {
  background: url("../img/icons/phone.svg") 0 center no-repeat;
  padding-left: 26px;
}

.text-blok__heading_mail span {
  background: url("../img/icons/mail.svg") 0 center no-repeat;
  padding-left: 26px;
}

.text-blok__text {
  padding-left: 26px;
}

.text-blok__text p,
.text-blok__text a {
  color: #555555;
  font-family: "RobotoSlab";
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  -webkit-transition-duration: 0.4s;
       -o-transition-duration: 0.4s;
          transition-duration: 0.4s;
}

.text-blok__text a:hover {
  color: #c0301c;
}

.text-blok__text:nth-child(2) {
  max-width: 187px;
}

.form {
  max-width: 730px;
}

@media (max-width: 980px) {
  .form {
    max-width: 50%;
  }
}

@media (max-width: 600px) {
  .form {
    max-width: 100%;
    margin: 0px 0px 20px 0px;
  }
}

.form__inputs {
  max-width: 100%;
  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;
}

.form__input {
  width: 350px;
  height: 44px;
  border: 1px solid #555555;
  padding: 0 17px;
  outline: none;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  margin: 0px 0px 20px 0px;
}

@media (max-width: 980px) {
  .form__input {
    width: 100%;
  }
}

.form__input::-webkit-input-placeholder {
  color: #555555;
  font-family: "RobotoSlab";
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  text-transform: uppercase;
  text-indent: 0px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  -webkit-transition: text-indent 0.7s;
  -o-transition: text-indent 0.7s;
  transition: text-indent 0.7s;
  opacity: 1;
}

.form__input:-ms-input-placeholder {
  color: #555555;
  font-family: "RobotoSlab";
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  text-transform: uppercase;
  text-indent: 0px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  -webkit-transition: text-indent 0.7s;
  -o-transition: text-indent 0.7s;
  transition: text-indent 0.7s;
  opacity: 1;
}

.form__input::-ms-input-placeholder {
  color: #555555;
  font-family: "RobotoSlab";
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  text-transform: uppercase;
  text-indent: 0px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  -webkit-transition: text-indent 0.7s;
  -o-transition: text-indent 0.7s;
  transition: text-indent 0.7s;
  opacity: 1;
}

.form__input::placeholder {
  color: #555555;
  font-family: "RobotoSlab";
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  text-transform: uppercase;
  text-indent: 0px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  -webkit-transition: text-indent 0.7s;
  -o-transition: text-indent 0.7s;
  transition: text-indent 0.7s;
  opacity: 1;
}

.form__input:focus {
  border: 1px solid #c0301c;
}

.form__input:focus::-webkit-input-placeholder {
  text-indent: 100%;
  opacity: 0.4;
}

.form__input:focus:-ms-input-placeholder {
  text-indent: 100%;
  opacity: 0.4;
}

.form__input:focus::-ms-input-placeholder {
  text-indent: 100%;
  opacity: 0.4;
}

.form__input:focus::placeholder {
  text-indent: 100%;
  opacity: 0.4;
}

.form__textarea {
  padding: 17px;
  outline: none;
  overflow: hidden;
  border: 1px solid #555555;
  width: 100%;
  height: 140px;
  resize: none;
  margin: 0px 0px 20px 0px;
}

.form__textarea::-webkit-input-placeholder {
  color: #555555;
  font-family: "RobotoSlab";
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  text-transform: uppercase;
  -webkit-transition: text-indent 0.7s;
  -o-transition: text-indent 0.7s;
  transition: text-indent 0.7s;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  opacity: 1;
}

.form__textarea:-ms-input-placeholder {
  color: #555555;
  font-family: "RobotoSlab";
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  text-transform: uppercase;
  -webkit-transition: text-indent 0.7s;
  -o-transition: text-indent 0.7s;
  transition: text-indent 0.7s;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  opacity: 1;
}

.form__textarea::-ms-input-placeholder {
  color: #555555;
  font-family: "RobotoSlab";
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  text-transform: uppercase;
  -webkit-transition: text-indent 0.7s;
  -o-transition: text-indent 0.7s;
  transition: text-indent 0.7s;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  opacity: 1;
}

.form__textarea::placeholder {
  color: #555555;
  font-family: "RobotoSlab";
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  text-transform: uppercase;
  -webkit-transition: text-indent 0.7s;
  -o-transition: text-indent 0.7s;
  transition: text-indent 0.7s;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  opacity: 1;
}

.form__textarea:focus {
  border: 1px solid #c0301c;
}

.form__textarea:focus::-webkit-input-placeholder {
  opacity: 0;
}

.form__textarea:focus:-ms-input-placeholder {
  opacity: 0;
}

.form__textarea:focus::-ms-input-placeholder {
  opacity: 0;
}

.form__textarea:focus::placeholder {
  opacity: 0;
}

.form__submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form__btn {
  width: 170px;
  height: 44px;
  background-color: transparent;
  border: 1px solid #555555;
  outline: none;
  font-family: "RobotoSlab";
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  text-transform: uppercase;
  color: #555555;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  margin: 0px 38px 0px 0px;
}

.form__btn:hover {
  border: 1px solid #c0301c;
  color: #c0301c;
}

.form__btn:active {
  background-color: #c0301c;
}

.form__warning {
  font-family: "RobotoSlab";
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
}

.form__warning span {
  color: #c0301c;
}

/*-----------------------------------------------------------------------------*/
.footer {
  background-color: #c0301c;
}

.footer__container {
  padding-top: 100px;
  padding-bottom: 100px;
}

.footer__social-wraper::after {
  content: "";
  display: block;
  margin: 30px auto 30px auto;
  width: 50px;
  height: 2px;
  background-color: #fff;
}

.footer__social-box {
  width: 200px;
  margin: 0px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.footer__icon {
  width: 35px;
  height: 35px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  -webkit-transition-duration: 0.4s;
       -o-transition-duration: 0.4s;
          transition-duration: 0.4s;
}

.footer__icon_f {
  background: url("../img/icons/facebook.svg") center no-repeat;
}

.footer__icon_f:hover {
  background: #fff url("../img/icons/facebook_hover.svg") center no-repeat;
}

.footer__icon_t {
  background: url("../img/icons/twitter.svg") center no-repeat;
}

.footer__icon_t:hover {
  background: #fff url("../img/icons/twitter_hover.svg") center no-repeat;
}

.footer__icon_g {
  background: url("../img/icons/google.svg") center no-repeat;
}

.footer__icon_g:hover {
  background: #fff url("../img/icons/google_hover.svg") center no-repeat;
}

.footer__icon_l {
  background: url("../img/icons/linkedin.svg") center no-repeat;
}

.footer__icon_l:hover {
  background: #fff url("../img/icons/linkedin_hover.svg") center no-repeat;
}

.footer__copyright {
  font-family: "RobotoSlab";
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
}
