.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #d6eef8;
  z-index: 501;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  opacity: 1;
  visibility: visible; }
  .preloader .loader {
    width: 75px;
    height: 75px;
    border: 10px solid #ffffff;
    border-radius: 50%;
    border-top-color: #110DFF;
    border-bottom-color: #ff1d2c;
    position: absolute;
    left: 50%;
    top: 50%;
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    animation: 2s spin infinite linear; }
  .preloader.done {
    opacity: 0;
    visibility: hidden; }

@keyframes spin {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    -moz-transform: translate(-50%, -50%) rotate(0deg);
    -ms-transform: translate(-50%, -50%) rotate(0deg);
    -o-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg); }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    -moz-transform: translate(-50%, -50%) rotate(360deg);
    -ms-transform: translate(-50%, -50%) rotate(360deg);
    -o-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg); } }

*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0; }

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: #333;
  line-height: 1.6; }

.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto; }

.d-flex {
  display: flex; }

.flex-direction-column {
  flex-direction: column; }

.flex-end {
  justify-content: flex-end; }

hr {
  display: block;
  width: 100%;
  height: 1px;
  margin: 45px 0;
  border: 0;
  background-color: #e5e5e5; }

.margin-top--120 {
  margin-top: -120px; }

.header {
  padding-top: 30px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500; }
  .header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center; }
  .header__logo {
    font-size: 30px;
    font-weight: 700;
    color: #fff; }

.nav {
  padding-top: 5px;
  font-size: 14px;
  text-transform: uppercase; }
  .nav__link {
    display: inline-block;
    vertical-align: top;
    margin-right: 55px;
    color: #fff;
    text-decoration: none;
    position: relative;
    transition: color .2s linear; }
    .nav__link:after {
      content: '';
      opacity: 0;
      width: 100%;
      height: 3px;
      margin-top: 6px;
      background-color: #fce38a;
      position: absolute;
      top: 100%;
      left: 0;
      z-index: 1;
      transition: opacity .2s linear; }
    .nav__link:hover {
      color: #fce38a; }
      .nav__link:hover:after {
        opacity: 1; }

.intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background: url("../img/intro.jpg") center no-repeat;
  background-size: cover; }
  .intro__inner {
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
    text-align: center; }
  .intro__suptitle {
    font-family: 'Kaushan Script', cursive;
    font-size: 72px;
    color: #fff;
    margin-bottom: 20px; }
  .intro__title {
    font-size: 150px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    color: #fff; }
    .intro__title:after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background-color: #fff;
      margin: 60px auto 50px; }

.btn {
  cursor: pointer;
  display: inline-block;
  vertical-align: top;
  border: 3px solid #fff;
  padding: 8px 36px;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  text-decoration: none;
  font-weight: 700;
  transition: all .2s linear; }
  .btn:hover {
    background-color: #fff;
    color: #333; }

.slider {
  display: flex;
  justify-content: space-between;
  margin-top: 150px;
  margin-bottom: 15px; }
  .slider__item {
    flex-basis: 24%;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
    opacity: .7;
    position: relative;
    cursor: pointer; }
    .slider__item span {
      font-weight: 700;
      font-size: 24px; }
    .slider__item:before {
      content: '';
      display: block;
      width: 100%;
      height: 3px;
      background-color: #fff;
      margin-bottom: 15px; }
    .slider__item.active {
      opacity: 1; }
      .slider__item.active:before {
        content: '';
        display: block;
        width: 100%;
        height: 3px;
        background-color: #f38181; }

.section {
  padding: 80px 0;
  width: 100%;
  position: relative; }
  .section__header {
    width: 100%;
    max-width: 950px;
    margin: 50px auto 40px;
    text-align: center; }
  .section__suptitle {
    font-family: 'Kaushan Script', cursive;
    color: #333;
    font-size: 24px;
    font-weight: 400; }
  .section__title {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase; }
    .section__title:after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background-color: #f38181;
      margin: 30px auto; }
  .section__text {
    color: #999;
    font-size: 15px; }

.cards {
  margin-top: 80px;
  display: flex;
  justify-content: space-between; }
  .cards__item {
    flex-basis: 30%;
    position: relative; }
  .cards__inner {
    background-color: #95e1d3; }
    .cards__inner:hover .cards__img {
      transform: translate3d(-10px, -10px, 0); }
      .cards__inner:hover .cards__img img {
        opacity: .1; }
    .cards__inner:hover .cards__text {
      opacity: 1; }
  .cards__img {
    background: linear-gradient(to bottom, #f38181, #fce38a);
    transition: transform .3s linear; }
    .cards__img img {
      display: block;
      transition: opacity .1s linear; }
  .cards__text {
    width: 100%;
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    position: absolute;
    opacity: 0;
    top: 50%;
    left: 0;
    z-index: 2;
    transition: opacity .3s linear; }

.statistics {
  margin-top: 110px;
  width: 100vw;
  background-color: #95e1d3;
  padding: 80px 0; }

.stat {
  font-family: 'Montserrat', sans-serif; }
  .stat__item {
    border-left: 1px solid #b5eae0;
    flex: 1 1 0;
    text-align: center;
    color: #fff; }
    .stat__item:last-child {
      border-right: 1px solid #b5eae0; }
  .stat__count {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1; }
  .stat__text {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase; }

.services {
  margin-top: 40px; }
  .services__item {
    flex: 1 1 0;
    padding-left: 90px;
    position: relative; }
  .services__icon {
    position: absolute;
    top: 0;
    left: 30px;
    z-index: 1; }
  .services__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: left;
    color: #333; }
  .services__text {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: #999;
    text-align: left; }

.section--services {
  height: 650px; }

.section--devices {
  height: 86vh;
  position: relative;
  padding-bottom: 0;
  margin-bottom: 40px;
  background: url("../img/design/devices-bg.jpg") center no-repeat;
  background-size: cover; }

.align-bot {
  position: absolute;
  display: block;
  bottom: -7px;
  left: 0;
  width: 100vw;
  padding: 0;
  margin: 0; }

.devices {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
  position: relative; }

.iphone {
  display: block;
  position: absolute;
  right: 0;
  bottom: -90px;
  z-index: 1; }

.wedo {
  display: flex;
  justify-content: space-around; }
  .wedo__item {
    flex-basis: 50%; }

.accordion__item {
  border: 1px solid #e5e5e5;
  cursor: pointer;
  margin-bottom: 10px; }

.accordion__header {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
  padding: 15px;
  position: relative; }

.accordion__title {
  font-size: 14px;
  color: #333;
  text-transform: uppercase;
  margin-left: 15px; }

.accordion__arrow {
  position: absolute;
  top: 40%;
  right: 15px;
  transition: all .5s linear;
  transform: rotate(180deg); }

.accordion__content {
  padding: 15px 20px;
  font-size: 15px;
  color: #999;
  font-style: italic;
  font-weight: 300;
  display: none;
  transition: all .5s linear; }

.section--gray {
  background-color: #f8f8f8;
  height: max-content; }

.reviews__item {
  display: flex;
  align-items: center;
  justify-content: space-between; }

.reviews__content {
  width: 750px; }

.reviews__photo {
  border: 3px solid #95e1d3;
  padding: 40px; }

.reviews__arrowleft {
  transform: rotate(270deg);
  cursor: pointer; }

.reviews__arrowright {
  transform: rotate(90deg);
  cursor: pointer; }

.reviews__text {
  font-size: 24px;
  font-style: italic;
  font-weight: 300;
  color: #999; }

.reviews__author {
  font-family: 'Kaushan Script', cursive;
  font-size: 24px;
  color: #333; }
  .reviews__author:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 60px;
    height: 3px;
    background-color: #f38181;
    margin-right: 10px; }

.social {
  display: flex;
  justify-content: center; }
  .social__item {
    text-decoration: none;
    background-color: #fce38a;
    border: 1px solid #f38181;
    color: #f38181;
    font-size: 30px;
    padding: 15px;
    line-height: 1;
    transition: all .3s linear; }
    .social__item:last-child {
      border-right: 0; }
    .social__item:hover {
      color: #fff;
      background-color: #f38181; }

.cards__info {
  margin-top: 20px;
  text-align: center; }

.cards__name {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: #333;
  text-transform: uppercase; }

.cards__prof {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  color: #999;
  font-style: italic; }

.logos {
  display: flex;
  justify-content: space-between;
  align-items: center; }

.works {
  display: grid;
  grid-template-areas: "img1 img2 img3 img4" "img5 img6 img3 img7";
  margin-top: 104px; }
  .works__item {
    position: relative;
    background: linear-gradient(to bottom, #f38181, #fce38a); }
    .works__item:hover .works__image {
      opacity: .1; }
    .works__item:hover .works__info {
      opacity: 1; }
  .works__image {
    display: block;
    max-width: 100%;
    height: auto;
    transition: opacity .1s linear; }
  .works__info {
    width: 100%;
    padding: 0 15px;
    text-align: center;
    color: #fff;
    position: absolute;
    top: 50%;
    opacity: 0;
    transform: translate3d(0, -50%, 0);
    transition: opacity .2s linear; }
  .works__title {
    font-size: 14px;
    text-transform: uppercase; }
  .works__text {
    font-size: 15px;
    font-weight: 300;
    font-style: italic; }

#img1 {
  grid-area: img1; }

#img2 {
  grid-area: img2; }

#img3 {
  grid-area: img3; }

#img4 {
  grid-area: img4; }

#img5 {
  grid-area: img5; }

#img6 {
  grid-area: img6; }

#img7 {
  grid-area: img7; }

.section--clients {
  height: 830px;
  background: url("../img/clients/bg-mounts.jpg") center no-repeat;
  background-size: cover; }

.clients {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap; }
  .clients__item {
    height: 250px;
    flex-basis: 50%;
    display: flex;
    align-items: flex-start; }
    .clients__item img {
      margin-left: 40px; }
  .clients__content {
    margin-left: 28px;
    margin-right: 28px;
    display: flex;
    flex-direction: column; }
  .clients__name {
    color: #333;
    margin-top: 5px;
    font-weight: 700;
    text-transform: uppercase; }
  .clients__prof {
    font-size: 15px;
    margin-top: 5px;
    font-family: Roboto, sans-serif;
    font-style: italic;
    font-weight: 300; }
    .clients__prof:after {
      content: '';
      display: block;
      height: 3px;
      width: 60px;
      margin-top: 10px;
      margin-bottom: 15px;
      background: #f38181; }
  .clients__text {
    font-family: Roboto, sans-serif;
    font-size: 15px;
    color: #999; }

.blog {
  display: flex;
  flex-direction: row;
  justify-content: space-between; }
  .blog__item {
    flex-basis: 380px;
    display: flex;
    flex-direction: column; }
  .blog__header {
    position: relative; }
  .blog__photo {
    display: block; }
  .blog__date {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 60px;
    height: 70px;
    position: absolute;
    bottom: 10px;
    left: -10px;
    background: #95e1d3;
    color: #fff;
    z-index: 1;
    text-align: center;
    line-height: 1; }
  .blog__day {
    display: inline;
    font-size: 30px;
    font-weight: 700; }
  .blog__month {
    display: inline;
    font-family: Roboto, sans-serif;
    font-size: 15px;
    font-style: italic; }
  .blog__content {
    margin-top: 10px; }
  .blog__title {
    color: inherit;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700; }
    .blog__title:hover {
      text-decoration: underline; }
  .blog__text {
    margin: 10px 0;
    font-family: Roboto, sans-serif;
    color: #999; }
  .blog__footer {
    border-top: 1px solid #e5e5e5;
    margin-top: 8px;
    padding-top: 14px;
    font-size: 15px;
    font-style: italic;
    font-weight: 300;
    color: #999; }
    .blog__footer i {
      margin-right: 6px;
      color: #95e1d3;
      font-weight: 700; }
    .blog__footer span {
      margin-right: 12px; }

.section--map {
  height: 200px;
  background: url("../img/map/bg-map.jpg") center no-repeat;
  background-size: cover; }

.map {
  text-align: center;
  margin-top: -20px; }
  .map__title {
    color: #f38181;
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase; }
    .map__title:after {
      content: '';
      display: block;
      height: 3px;
      width: 60px;
      margin: 13px auto 0;
      background: #f38181; }
    .map__title a {
      display: block;
      text-decoration: none;
      color: inherit; }
      .map__title a:hover {
        text-decoration: underline; }

.footer {
  background: #f8f8f8;
  background-size: cover;
  height: 100%;
  padding-top: 80px; }

.elem {
  display: flex;
  justify-content: space-between;
  height: 100%;
  max-height: 360px; }
  .elem__mogo {
    width: 40%;
    padding-right: 20px; }
  .elem__logo {
    display: inline;
    font-size: 46px;
    font-weight: 700;
    line-height: 1;
    color: #999; }
  .elem__text {
    margin-top: 20px;
    color: #999; }
  .elem__followers {
    margin-top: 40px;
    font-weight: 700;
    font-size: 18px; }
    .elem__followers span {
      font-size: 14px;
      font-weight: 300;
      margin-left: 4px; }
  .elem__follow_us {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e5e5e5; }
    .elem__follow_us span {
      font-family: Roboto, sans-serif;
      font-size: 15px;
      font-style: italic;
      color: #999;
      margin-right: 20px; }
    .elem__follow_us i {
      color: #95e1d3;
      margin-right: 15px;
      font-size: 18px;
      font-weight: 700; }
  .elem .subscribe {
    box-sizing: border-box;
    display: flex;
    margin-top: 30px;
    width: 100%;
    max-width: 380px; }
    .elem .subscribe__input {
      width: 60%;
      border-right: 0;
      height: 40px;
      padding: 12px;
      background: #fff;
      font-family: Roboto, sans-serif;
      font-size: 15px;
      font-style: italic;
      color: black;
      font-weight: 300;
      line-height: 1.1; }
      .elem .subscribe__input::placeholder {
        color: #ccc; }
      .elem .subscribe__input:focus {
        outline: 0;
        border-color: #95e1d3; }
    .elem .subscribe__btn {
      width: 40%;
      padding: 0 20px;
      height: 40px;
      background: #95e1d3;
      text-align: center;
      color: #fff;
      font-family: Montserrat, sans-serif;
      text-decoration: none;
      font-weight: 700;
      text-transform: uppercase;
      cursor: pointer;
      border: 0;
      line-height: 1.1;
      transition: background .2s linear; }
      .elem .subscribe__btn:hover {
        background: #8baeff; }
      .elem .subscribe__btn:focus {
        outline: 0; }
  .elem__blogs {
    width: 34%; }
  .elem__instagram {
    width: 26%; }

.elem__blogs {
  height: 100%; }
  .elem__blogs .blogs__title {
    font-size: 14px;
    text-transform: uppercase; }
  .elem__blogs .blogs__inner {
    margin-top: 25px;
    height: 100%;
    display: flex;
    flex-direction: column; }
  .elem__blogs .blogs__item {
    display: flex;
    align-items: center;
    margin-bottom: 30px; }
  .elem__blogs .blogs__text {
    margin-left: 20px; }
    .elem__blogs .blogs__text a {
      text-decoration: none;
      color: inherit; }
      .elem__blogs .blogs__text a:hover {
        text-decoration: underline; }
    .elem__blogs .blogs__text__let {
      font-family: Montserrat, sans-serif;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase; }
    .elem__blogs .blogs__text__date {
      font-family: Roboto, sans-serif;
      font-size: 13px;
      font-style: italic;
      color: #999; }

.elem__instagram {
  height: 100%;
  width: 268px; }
  .elem__instagram .instagram__title {
    font-size: 14px;
    text-transform: uppercase; }
  .elem__instagram .instagram__inner {
    margin-top: 25px;
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 2px; }
    .elem__instagram .instagram__inner div {
      display: inline;
      width: 88px; }
    .elem__instagram .instagram__inner .instagram__img {
      display: block; }
  .elem__instagram a {
    text-decoration: none;
    color: inherit; }
    .elem__instagram a:hover {
      text-decoration: underline; }
  .elem__instagram .instagram__more {
    font-family: Roboto, sans-serif;
    font-size: 13px;
    font-style: italic;
    font-weight: 300;
    color: #999;
    margin-top: 18px; }

.copyright {
  height: 60px;
  margin-top: 70px;
  border-top: 1px solid #999;
  position: relative; }
  .copyright__text {
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #999;
    position: absolute;
    margin: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); }
