.header {
  background: transparent url("../img/header_bg.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
  height: 100vh;
}

.header .menu__top {
  background: rgba(16, 22, 54, 0.4);
  padding: 15px 0;
}

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

.header .menu__top .menu__nav .menu__logo {
  color: white;
  font-size: 20px;
  font-weight: 900;
}

.header .menu__top .menu__nav .menu__logo-span {
  color: #4c76ff;
}

.header .menu__top .menu__nav .menu__logo:hover {
  color: red;
}

.header .menu__top .menu__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.header .menu__top .menu__items.active_menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  position: fixed;
  width: 40%;
  background: rgba(16, 22, 54);
  border-radius: 20px;
  height: 50vh;
  top: 30%;
  right: 0%;
  z-index: 100;
  -webkit-transition: 500ms;
  -o-transition: 500ms;
  transition: 500ms;
}

.header .menu__top .menu__items .menu__item {
  margin: 0 15px;
  position: relative;
}

.header .menu__top .menu__items .menu__item.menu__close {
  display: none;
}

.header .menu__top .menu__items .menu__item.menu__close:hover::before {
  display: none;
}

.header .menu__top .menu__items .menu__item.menu__close:hover {
  color: red;
}

.header .menu__top .menu__items .menu__item:hover::before {
  opacity: 1;
}

.header .menu__top .menu__items .menu__item::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #4c76ff;
  position: absolute;
  top: -14px;
  left: 0;
  opacity: 0;
  -webkit-transition: 500ms;
  -o-transition: 500ms;
  transition: 500ms;
}

.header .menu__top .menu__items .menu__item .menu__links {
  font-size: 14px;
  font-weight: 400;
  color: white;
}

.header .menu__top .menu__btn {
  display: none;
}

.header .menu__top .menu__btn .fas {
  font-size: 30px;
  color: red;
}

.header .menu__top .menu__btn .fas:hover {
  color: blue;
}

.header__text {
  position: absolute;
  width: 100%;
  top: 40%;
  text-align: center;
}

.header__title {
  font-weight: 900;
  color: white;
  font-size: 62px;
}

.header__title-span {
  color: #4c76ff;
}

.header__page {
  font-weight: 100;
  font-size: 48px;
  color: white;
}

.header__page-span {
  color: #4c76ff;
}

.header__team {
  color: white;
  font-size: 18px;
  font-weight: 100;
  margin-top: 27px;
}

.header__team::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: #4c76ff;
  -webkit-transform: translate(40px, -5px);
  -ms-transform: translate(40px, -5px);
  transform: translate(40px, -5px);
}

.header__team::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: #4c76ff;
  -webkit-transform: translate(-40px, -5px);
  -ms-transform: translate(-40px, -5px);
  transform: translate(-40px, -5px);
}

.header .icons {
  margin-top: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.header .icons__items {
  margin: 0 12px;
}

.header .icons__links {
  color: white;
  opacity: 0.5;
  font-size: 30px;
  -webkit-transition: 500ms;
  -o-transition: 500ms;
  transition: 500ms;
}

.header .icons__links:hover {
  opacity: 1;
}

.features {
  background: #2980B9;
  /* fallback for old browsers */
  /* Chrome 10-25, Safari 5.1-6 */
  background: -webkit-gradient(linear, left top, right top, from(#FFFFFF), color-stop(#6DD5FA), to(#2980B9));
  background: -o-linear-gradient(left, #FFFFFF, #6DD5FA, #2980B9);
  background: linear-gradient(to right, #FFFFFF, #6DD5FA, #2980B9);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  padding: 80px 0px;
}

.features__heart {
  margin-bottom: 80px;
}

.branding {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-family: 'Open Sans';
}

.branding__images {
  margin-right: 15px;
}

.branding__title {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 20px;
}

.branding__info {
  line-height: 22px;
  font-size: 16px;
  font-weight: 400;
  color: #062033;
}

.mobile {
  padding: 80px 0;
  font-family: 'Open Sans';
  background: #2980B9;
  /* fallback for old browsers */
  /* Chrome 10-25, Safari 5.1-6 */
  background: -webkit-gradient(linear, left top, right top, from(#FFFFFF), color-stop(#6DD5FA), to(#2980B9));
  background: -o-linear-gradient(left, #FFFFFF, #6DD5FA, #2980B9);
  background: linear-gradient(to right, #FFFFFF, #6DD5FA, #2980B9);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.mobile__topTitle {
  text-align: center;
  font-size: 18px;
  color: #062033;
  font-weight: 400;
  margin-bottom: 70px;
  line-height: 25px;
}

.mobile__img {
  max-width: 100%;
}

.action {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 10px;
  margin-bottom: 55px;
  cursor: pointer;
}

.action:hover {
  background: rgba(247, 227, 39, 0.5);
}

.action__icons {
  margin-right: 15px;
}

.action__title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 18px;
  color: #062033;
}

.action__info {
  font-size: 16px;
  font-weight: 400;
  color: #062033;
  line-height: 22px;
}

.works {
  padding-top: 100px;
}

.works__heart {
  margin-bottom: 40px;
}

.works__topTitle {
  text-align: center;
  line-height: 24px;
  font-size: 20px;
  color: #062033;
  margin-bottom: 70px;
}

.Works-navs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 70px;
}

.Works-navs__items {
  /* ul li */
  margin: 0 10px;
}

.Works-navs__items-active {
  /* ul li.active */
  background: #4c76ff;
  border-radius: 6px;
}

.Works-navs__items-active .Works-navs__links {
  /* ul li.active .Works-navs__links */
  color: white;
  padding: 10px 18px;
}

.Works-navs__links {
  display: inline-block;
  font-size: 14px;
  font-weight: 900;
  color: #062033;
  padding: 10px 18px;
}

.worsBox {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.worsBox:hover .worsBox__links {
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

.worsBox__image {
  /* BLOCKLI - MATINLI */
  width: 100%;
}

.worsBox__links {
  position: absolute;
  background: rgba(94, 131, 255, 0.6);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translateY(-800px);
  -ms-transform: translateY(-800px);
  transform: translateY(-800px);
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
}

.worsBox__links .fas {
  color: white;
  font-size: 55px;
}

.team {
  padding: 100px 0;
}

.team__heart {
  margin-bottom: 50px;
}

.team__text {
  text-align: center;
  font-size: 18px;
  color: #062033;
  font-weight: 400;
  line-height: 25px;
  margin-bottom: 100px;
}

.team__member {
  position: relative;
}

.team__member:hover .overlay {
  opacity: 1;
  cursor: pointer;
}

.overlay {
  opacity: 0;
  -webkit-transition: 500ms;
  -o-transition: 500ms;
  transition: 500ms;
  font-family: 'Open Sans';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(85, 125, 255, 0.5);
  padding: 20px;
  color: white;
}

.overlay__title {
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  margin-bottom: 15px;
}

.overlay__text {
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  line-height: 20px;
}

.social {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 50px;
}

.social__item {
  margin: 0 5px;
  background: rgba(178, 178, 178, 0.3);
  padding: 10px;
}

.social__item:hover {
  background: yellow;
  border-radius: 6px;
}

.social__item:hover .fab {
  color: blue;
}

.social .fab {
  color: white;
  font-size: 25px;
}

.facts {
  padding: 100px 0;
  background: transparent url("../img/f_bg.jpg") no-repeat center center;
  background-size: cover;
  font-family: 'Open Sans';
}

.facts__heart {
  margin-bottom: 50px;
}

.clock {
  color: white;
  text-align: center;
}

.clock__counter {
  font-size: 45px;
  font-weight: 600;
}

.clock__img {
  margin-bottom: 30px;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
}

body {
  font-family: 'Lato';
  min-width: 320px;
}

h2 {
  font-size: 28px;
  text-transform: uppercase;
  color: #4c76ff;
  font-weight: 900;
}

.heart {
  text-align: center;
}

.heart__icons {
  color: #ff00aa;
  font-size: 30px;
}

.heart__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 25px;
}

.heart__span {
  display: inline-block;
  width: 91px;
  height: 2px;
  background: red;
}

.heart__span:nth-child(1) {
  -webkit-transform: translateX(-15px);
  -ms-transform: translateX(-15px);
  transform: translateX(-15px);
}

.heart__span:nth-child(3) {
  -webkit-transform: translateX(15px);
  -ms-transform: translateX(15px);
  transform: translateX(15px);
}

@media (max-width: 992px) {
  .features__branding-three {
    margin-top: 30px;
  }
}

@media (max-width: 991px) {
  .clock {
    margin-bottom: 50px;
  }

  .clock__img {
    margin-bottom: 0px;
  }
}

@media (max-width: 768px) {
  .header .menu__top .menu__items {
    display: none;
  }

  .header .menu__top .menu__items .menu__item.menu__close {
    display: block;
    color: white;
    font-size: 20px;
    position: fixed;
    top: 30%;
    right: 5%;
    cursor: pointer;
  }

  .header .menu__top .menu__items .menu__item {
    margin: 10px 0;
  }

  .header .menu__top .menu__btn {
    display: block;
  }

  .header__page {
    font-size: 43px;
  }

  .features__branding {
    margin-top: 30px;
  }
}

@media (max-width: 576px) {
  .header .icons {
    margin-top: 35px;
  }

  .features__heart {
    margin-bottom: 0px;
  }

  .branding {
    text-align: center;
  }

  .branding__images {
    display: none;
  }

  .action {
    text-align: center;
  }

  .action__icons {
    display: none;
  }
}

@media (max-width: 528px) {
  .header__page {
    font-size: 40px;
  }
}

@media (max-width: 493px) {
  .header__title {
    font-size: 45px;
  }

  .header__page {
    font-size: 32px;
  }
}

@media (max-width: 388px) {
  .header__team::after {
    display: none;
  }

  .header__team::before {
    display: none;
  }
}

@media (max-width: 320px) {
  .works {
    padding-top: 50px;
  }
}