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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-size: 1.5rem;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  color: #999;
}

a {
  text-decoration: none;
}

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

.wrapper {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
}

.container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.box {
  margin: 0 auto;
  max-width: 96rem;
  text-align: center;
  color: black;
}
.box__title {
  font-family: "Kaushan Script", cursive;
  font-size: 2.4rem;
}
.box__caption {
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 2.5rem;
  padding-bottom: 3.5rem;
  position: relative;
}
.box__caption::after {
  position: absolute;
  content: "";
  bottom: -3px;
  left: 0;
  width: 6rem;
  height: 3px;
  background-color: #e98383;
  left: 50%;
  transform: translateX(-50%);
}
.box__desc {
  font-family: "Roboto", sans-serif;
  color: #999;
  line-height: 1.6;
  margin-top: 4.5rem;
  padding-bottom: 9.5rem;
}

.header {
  background: linear-gradient(to bottom, rgba(233, 131, 131, 0.8), rgba(237, 214, 136, 0.8)), url("../images/header-bg.jpg") no-repeat center/cover;
  width: 100%;
  padding: 2.5rem 0;
  color: #fff;
}
.header__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  flex-direction: row;
  line-height: 1;
}
.header__logo {
  color: #fff;
  font-weight: bold;
  font-size: 3rem;
}
.header__content {
  margin-top: 15rem;
  text-align: center;
}
.header__title {
  font-size: 7.2rem;
  font-family: "Kaushan Script", cursive;
}
.header__caption {
  margin-top: 4rem;
  max-width: 85rem;
  text-transform: uppercase;
  font-size: 15rem;
  font-weight: bold;
  margin-left: auto;
  margin-right: auto;
  line-height: 0.95;
  margin-bottom: 5.5rem;
  position: relative;
}
.header__caption::after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: -5rem;
  width: 7rem;
  height: 3px;
  background-color: #fff;
  transform: translateX(-50%);
}
.header__more {
  margin-top: 5rem;
  display: inline-block;
  padding: 1.2rem 3rem;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: bold;
  border: 3px solid #fff;
  opacity: 0.8;
  transition: 0.25s ease-out;
}
.header__more:hover {
  background-color: #fff;
  color: #e98383;
  transform: translateY(-3px);
}
.header-pagination {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  flex-direction: row;
}
.header-pagination__item {
  width: calc(25% - 2.5rem);
  padding-top: 2.5rem;
  border-top: 3px solid #fff;
}
.header-pagination__item span:first-child {
  font-size: 2.4rem;
  font-weight: bold;
}
.header-pagination__item span:last-child {
  font-size: 1.8rem;
  text-transform: uppercase;
}
.header-pagination__item.active {
  position: relative;
}
.header-pagination__item.active::before {
  position: absolute;
  content: "";
  top: -3px;
  left: 0;
  width: 7rem;
  height: 3px;
  background-color: #e98383;
}
.header__container {
  display: flex;
  flex-direction: column;
  min-height: 100rem;
}

.menu__bar {
  display: none;
  cursor: pointer;
}
.menu__list {
  display: flex;
  align-items: baseline;
  flex-wrap: nowrap;
  flex-direction: row;
}
.menu__item {
  margin-left: 5.5rem;
  list-style-type: none;
}
.menu__link {
  color: white;
  text-transform: uppercase;
  font-size: 1.4rem;
  transition: all 0.25s ease;
  font-weight: 400;
  padding-bottom: 2rem;
}
.menu__link--text {
  position: relative;
}
.menu__link--text::after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  transform: translateX(-50%);
  background-color: #edd688;
  transition: all 0.25s ease-out;
}
.menu__link--text:hover::after {
  width: 100%;
}
.menu__link:hover {
  color: #edd688;
}
.menu__link--icon i {
  font-size: 1.8rem;
  transition: transform 0.25s ease;
}
.menu__link--icon i:hover {
  transform: translateY(-3px);
}

@media screen and (max-width: 1023px) {
  .header__caption {
    font-size: 12rem;
  }

  .menu__item {
    margin-left: 3.5rem;
  }
}
@media screen and (max-width: 767px) {
  .header__container {
    min-height: unset;
  }
  .header__content {
    margin: 5rem 0;
  }
  .header__caption {
    font-size: 5rem;
  }
  .header-pagination {
    margin-top: unset;
  }
  .header-pagination__item {
    width: calc(25% - 1.25rem);
  }
  .header-pagination__item span:first-child {
    width: 100%;
    display: inline-block;
    font-size: 2.2rem;
  }
  .header-pagination__item span:last-child {
    font-size: 1.3rem;
  }
  .header-pagination__item.active::before {
    width: 3rem;
  }

  .menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 50%;
    z-index: 10;
    background-color: #4c4c4c;
    transform: translateX(100%);
    transition: 0.25s ease-out;
  }
  .menu__bar {
    display: block;
  }
  .menu__list {
    flex-direction: column;
  }
  .menu__item {
    margin-left: 0;
    width: 100%;
  }
  .menu__link {
    display: block;
    padding: 2rem 2.4rem;
  }
  .menu__link--icon {
    position: relative;
  }
  .menu__link--icon::after {
    position: absolute;
    content: "";
    left: 50%;
    bottom: 0;
    width: 0;
    height: 3px;
    transform: translateX(-50%);
    background-color: #edd688;
    transition: all 0.25s ease;
  }
  .menu__link--icon:hover::after {
    width: 100%;
  }
  .menu__link--icon i:hover {
    transform: unset;
  }
  .menu__bar {
    font-size: 2rem;
  }

  .is-open {
    transform: translateX(0%);
  }
}
@media screen and (max-width: 374px) {
  .header-pagination__item span:last-child {
    font-size: 1rem;
  }
}
.about {
  padding: 9rem 0 11rem;
}
.about__list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  flex-direction: row;
}
.about__item {
  width: calc(33.3333333333% - 2rem);
  position: relative;
  cursor: pointer;
  transition: 0.25s ease;
}
.about__item::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #95e1d3;
  transition: 0.25s ease;
  z-index: -1;
}
.about__item:hover {
  transform: translate(-1rem, -1rem);
}
.about__item:hover::after {
  transform: translate(1rem, 1rem);
}
.about__item:hover .about-overlay {
  visibility: visible;
  opacity: 1;
}
.about__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-overlay {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(233, 131, 131, 0.8), rgba(237, 214, 136, 0.8));
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  visibility: hidden;
  opacity: 0;
  transition: 0.25s ease;
}
.about-overlay__icon {
  font-size: 2.5rem;
}
.about-overlay__name {
  margin-top: 1rem;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.8rem;
}
@media screen and (max-width: 1023px) {
  .about {
    padding: 6rem 0;
  }
}
@media screen and (max-width: 767px) {
  .about {
    padding: 6rem 0;
  }
  .about__item {
    width: 100%;
  }
  .about__item:not(:last-child) {
    margin-bottom: 2rem;
  }
}

.overview {
  background-color: #95e1d3;
  color: #fff;
}
.overview__item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2rem 0;
  text-align: center;
}
.overview__item:not(:last-child) {
  border-bottom: 1px solid #b5eae0;
}
.overview__item span:first-child {
  font-size: 4.2rem;
  font-weight: bold;
  transition: 0.25s ease-in-out;
}
.overview__item span:last-child {
  font-size: 1.4rem;
  text-transform: uppercase;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .overview__container {
    display: flex;
  }
  .overview__item {
    padding-top: 8rem;
    padding-bottom: 8rem;
    width: 20%;
    border-left: 2px solid #b5eae0;
  }
  .overview__item span:first-child {
    font-size: 7.2rem;
    cursor: pointer;
  }
  .overview__item span:first-child:hover {
    color: #edd688;
  }
  .overview__item:last-child {
    border-right: 2px solid #b5eae0;
  }
}
@media screen and (max-width: 767px) {
  .overview__item {
    margin-left: -2rem;
    margin-right: -2rem;
  }
}

.services {
  padding: 11rem 0 7rem;
}
.services__list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  flex-direction: row;
  padding-top: 2rem;
}
.services__item {
  width: calc(33.3333333333% - 2.5rem);
  padding: 5rem 0;
  display: flex;
  position: relative;
}
.services__item:nth-child(3)::before {
  position: absolute;
  content: "";
  height: 1px;
  left: calc(-200% - 7.5rem);
  right: 0;
  bottom: 0;
  background-color: #e5e5e5;
}
.services__icon {
  width: 3rem;
  height: 3rem;
  margin-right: 2.5rem;
}
.services__name {
  font-size: 1.4rem;
  color: #333;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 0.8;
}
.services__desc {
  margin-top: 2rem;
  color: #999;
  line-height: 1.6;
}
@media screen and (max-width: 1023px) {
  .services {
    padding: 6rem 0 1rem;
  }
}
@media screen and (max-width: 767px) {
  .services__item {
    width: 100%;
    padding: 2rem 0;
  }
  .services__item:nth-child(3) {
    padding-bottom: 5rem;
  }
  .services__item:nth-child(3)::after {
    left: 0;
    right: 0;
  }
  .services__item:nth-child(4) {
    padding-top: 5rem;
  }
  .services__desc {
    margin-top: 1rem;
  }
}

.device {
  padding-top: 11rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/bg-device.jpg") center/cover no-repeat;
  width: 100%;
  height: 85rem;
  position: relative;
}
.device__tablet {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.device__mobile {
  position: absolute;
  content: "";
  left: 64%;
  bottom: -11%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1366px) {
  .device__mobile {
    left: 71%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .device__mobile {
    left: 77%;
  }
}
@media screen and (max-width: 767px) {
  .device__tablet {
    width: 60%;
  }
  .device__mobile {
    width: 30%;
    left: 82%;
    bottom: -5%;
  }
}

.service {
  padding: 11rem 0;
}
.service__main {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  flex-direction: row;
}
.service__left, .service__right {
  width: calc(50% - 1.5rem);
  height: 38rem;
}
.service__right {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.service__item {
  height: 6rem;
}
.service__item--active {
  height: auto;
}
.service__item--active .service-content {
  opacity: 1;
  visibility: visible;
}
.service__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service__row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row;
  padding: 1.5rem;
  border: 1px solid #e5e5e5;
}
.service__title {
  margin-left: 1.5rem;
  text-transform: uppercase;
  font-weight: 600;
  color: #333;
  font-size: 1.4rem;
}
.service__icondown {
  margin-left: auto;
  font-size: 2rem;
  cursor: pointer;
}
.service-content {
  padding: 1.4rem;
  border: 1px solid #e5e5e5;
  border-top: none;
  opacity: 0;
  visibility: hidden;
}
.service-content__main {
  margin: 0;
  padding-right: 2rem;
  max-height: 14rem;
  font-size: 1.4rem;
  line-height: 1.6;
  font-style: italic;
  font-family: "Roboto", sans-serif;
  overflow-y: scroll;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.service-content__main::-webkit-scrollbar {
  width: 8px;
  background-color: #f5f5f5;
}
.service-content__main::-webkit-scrollbar-track {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
.service-content__main::-webkit-scrollbar-thumb {
  background: #95e1d3;
  border-radius: 10px;
  background-image: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 0.5) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.5) 75%, transparent 75%, transparent);
  border-radius: 10px;
}
@media screen and (max-width: 1023px) {
  .service {
    padding: 8rem 0 6rem;
  }
  .service__left, .service__right {
    width: 100%;
    height: 100%;
  }
  .service__right {
    margin-top: 3rem;
  }
  .service__item {
    margin-top: 1rem;
  }
}

.message {
  padding: 5rem 0;
  background-color: #f8f8f8;
  --marginInsideIcon: 5.5rem;
  --marginOutsideIcon: 2.5rem;
}
.message__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row;
}
.message__item {
  padding: 0 2rem;
}
.message__icon {
  font-size: 3rem;
  cursor: pointer;
}
.message__icon--left {
  margin-left: var(--marginOutsideIcon);
  margin-right: var(--marginInsideIcon);
}
.message__icon--right {
  margin-left: var(--marginInsideIcon);
  margin-right: var(--marginOutsideIcon);
}
.message__iconmessage {
  font-size: 6.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row;
  width: 14.5rem;
  height: 14.5rem;
  color: #95e1d3;
  border: 3px solid #95e1d3;
  padding: 4rem;
}
.message__content {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  flex-direction: column;
  flex-grow: 1;
  margin-left: 6rem;
}
.message__text {
  font-size: 2.2rem;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  line-height: 1.5;
  margin: 0;
  margin-bottom: 2rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
.message__author {
  padding-left: 7rem;
  font-family: "Kaushan Script", cursive;
  color: black;
  font-size: 2.4rem;
  margin: 0;
  position: relative;
}
.message__author::after {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6rem;
  height: 3px;
  background-color: #e98383;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .message {
    --marginInsideIcon: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .message {
    --marginInsideIcon: 0.5rem;
    --marginOutsideIcon: 2rem;
  }
  .message__item {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .message__iconmessage {
    width: 10rem;
    height: 10rem;
    font-size: 5.5rem;
  }
  .message__content {
    margin-left: 0;
    margin-top: 2rem;
  }
  .message__text {
    font-size: 1.6rem;
  }
  .message__author {
    padding-left: 5rem;
    font-size: 1.8rem;
  }
  .message__author::after {
    width: 4rem;
  }
}

.slick-initialized .slick-slide {
  display: flex;
  align-items: center;
}

.slick-disabled {
  cursor: not-allowed;
}

.team {
  padding: 10rem 0;
}
.team__list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  flex-direction: row;
}
.team__item {
  width: calc(33.3333333333% - 2rem);
}
.team__avatar {
  width: calc(33.3333333333% - 2rem);
  position: relative;
  cursor: pointer;
  transition: 0.25s ease;
  width: unset;
}
.team__avatar::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #95e1d3;
  transition: 0.25s ease;
  z-index: -1;
}
.team__avatar:hover {
  transform: translate(-1rem, -1rem);
}
.team__avatar:hover::after {
  transform: translate(1rem, 1rem);
}
.team__avatar:hover .team__content {
  visibility: visible;
  opacity: 1;
}
.team__image {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 0;
  transition: 0.25s ease;
}
.team__content {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(233, 131, 131, 0.9), rgba(237, 214, 136, 0.9));
  transition: 0.25s ease;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.1);
  visibility: hidden;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row;
}
.team-info {
  margin-top: 3rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.team-info__name {
  text-transform: uppercase;
  color: #333;
  font-size: 1.4rem;
  font-weight: bold;
  margin: unset;
}
.team-info__job {
  margin: unset;
  margin-top: 1rem;
  font-family: "Roboto", sans-serif;
  font-style: italic;
}
.team-social {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row;
}
.team-social__item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row;
  width: 6rem;
  height: 6rem;
  background-color: #edd688;
  cursor: pointer;
  transition: 0.25s ease;
}
.team-social__item:not(:first-child) {
  border-left: 1px solid #e98383;
}
.team-social__item:hover {
  color: #fff;
  background-color: #e98383;
}
.team-social__item:hover .team-social__icon {
  color: #fff;
}
.team-social__icon {
  color: #e98383;
  font-size: 2.5rem;
  transition: 0.25s ease;
}
@media screen and (max-width: 1023px) {
  .team-social__item {
    width: 5rem;
    height: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .team {
    padding: 6rem 0;
  }
  .team__item {
    width: 100%;
  }
  .team__item:not(:first-child) {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 319px) {
  .team-social__item {
    width: 2rem;
    height: 2rem;
  }
  .team-social__icon {
    font-size: 1.5rem;
  }
}

.logo {
  padding: 5rem 0;
  background-color: #f8f8f8;
}
.logo__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row;
}
.logo__item {
  width: 15rem;
  height: 15rem;
}
.logo__image {
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .logo__item {
    width: 12rem;
    height: 12rem;
  }
}
@media screen and (max-width: 319px) {
  .logo__list {
    justify-content: center;
  }
}

.work {
  padding-top: 9rem;
  --column: 4;
}
.work__list {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  flex-direction: row;
}
.work__column {
  width: calc(100% / var(--column));
  height: 78rem;
}
.work__item {
  height: 50%;
  cursor: pointer;
  position: relative;
}
.work__item--full {
  height: 100%;
}
.work__item:hover .work-content {
  visibility: visible;
  opacity: 1;
}
.work img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.work-content {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(233, 131, 131, 0.9), rgba(237, 214, 136, 0.9));
  color: #fff;
  transition: 0.25s ease-out;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  visibility: hidden;
  opacity: 0;
}
.work-content__icon {
  font-size: 3.5rem;
}
.work-content__title {
  font-size: 1.4rem;
  text-transform: uppercase;
  margin-top: 2rem;
}
.work-content__desc {
  font-style: italic;
  opacity: 0.7;
}
@media screen and (max-width: 1279px) {
  .work__column {
    height: 62rem;
  }
}
@media screen and (max-width: 1023px) {
  .work {
    padding-top: 6rem;
  }
  .work__column {
    height: 78rem;
  }
  .work__column {
    --column: 2;
  }
}
@media screen and (max-width: 767px) {
  .work__column {
    width: 100%;
  }
}

.quote {
  padding: 10rem 0 13rem;
  background-color: #f8f8f8;
  --marginInsideIcon: 5.5rem;
  --marginOutsideIcon: 2.5rem;
}
.quote__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row;
}
.quote__item {
  padding: 0 2rem;
}
.quote__icon {
  font-size: 3rem;
  cursor: pointer;
}
.quote__icon--left {
  margin-left: var(--marginOutsideIcon);
  margin-right: var(--marginInsideIcon);
}
.quote__icon--right {
  margin-left: var(--marginInsideIcon);
  margin-right: var(--marginOutsideIcon);
}
.quote__iconImage {
  width: 21rem;
  height: 21rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.quote__iconImage > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.quote__content {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: column;
  flex-grow: 1;
  margin-left: 6rem;
}
.quote__text {
  font-size: 2.2rem;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  line-height: 1.5;
  margin: 0;
  margin-bottom: 2rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
.quote__author {
  padding-left: 7rem;
  font-family: "Kaushan Script", cursive;
  color: black;
  font-size: 2.4rem;
  margin: 0;
  position: relative;
}
.quote__author::after {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6rem;
  height: 3px;
  background-color: #e98383;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .quote {
    --marginInsideIcon: 3rem;
    padding: 8rem 0;
  }
}
@media screen and (max-width: 767px) {
  .quote {
    --marginInsideIcon: 0.5rem;
    --marginOutsideIcon: 2rem;
    padding: 6rem 0;
  }
  .quote__item {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .quote__iconImage {
    width: 10rem;
    height: 10rem;
    font-size: 5.5rem;
  }
  .quote__content {
    margin-left: 0;
    margin-top: 2rem;
  }
  .quote__text {
    font-size: 1.6rem;
  }
  .quote__author {
    padding-left: 5rem;
    font-size: 1.8rem;
  }
  .quote__author::after {
    width: 4rem;
  }
}

.client {
  padding: 11rem 0 7rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(241, 239, 239, 0.9)), url("../images/bg-client.jpeg") no-repeat center/cover;
}
.client__list {
  margin-top: 9.5rem;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  flex-direction: row;
}
.client__item {
  width: calc(50% - 4rem);
  display: flex;
  margin-bottom: 6rem;
}
.client__avatar {
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.client-info {
  margin-left: 3rem;
}
.client-info__name {
  color: #333;
  font-size: 1.4rem;
  text-transform: uppercase;
}
.client-info__job {
  margin-top: 1.5rem;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  display: inline-block;
  padding-bottom: 2rem;
  position: relative;
}
.client-info__job::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -3px;
  width: 6rem;
  height: 3px;
  background-color: #e98383;
}
.client-info__desc {
  margin-top: 2.5rem;
  color: #999;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .client__item {
    width: 100%;
  }
}

.stories {
  padding: 11rem 0;
}
.stories__list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  flex-direction: row;
  margin-top: 5rem;
}
.stories__item {
  width: calc(33.3333333333% - 2rem);
  margin-bottom: 1rem;
}
.stories__feature {
  position: relative;
}
.stories__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stories-times {
  position: absolute;
  content: "";
  left: -1rem;
  bottom: 1rem;
  background-color: #95e1d3;
  width: 6rem;
  height: 7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.stories-times__date, .stories-times__month {
  display: block;
  color: white;
}
.stories-times__date {
  font-size: 3rem;
  font-weight: bold;
}
.stories-times__month {
  font-style: italic;
}
.stories__title {
  margin-top: 2rem;
  font-size: 1.4rem;
  color: #333;
  text-transform: uppercase;
}
.stories__desc {
  font-family: "Roboto", sans-serif;
  margin-top: 1.4rem;
  color: #999;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.stories-analytic {
  border-top: 1px solid #ccc;
  padding-top: 2rem;
}
.stories-analytic__icon {
  font-size: 1.7rem;
  color: #95e1d3;
  margin-right: 0.5rem;
}
.stories-analytic span {
  margin-right: 2rem;
  color: #999;
  font-style: italic;
}
@media screen and (max-width: 1279px) {
  .stories__desc {
    height: 7.7rem;
  }
}
@media screen and (max-width: 1023px) {
  .stories__title {
    height: 4rem;
    line-height: 1.5;
  }
  .stories__desc {
    height: unset;
  }
}
@media screen and (max-width: 767px) {
  .stories {
    padding: 6rem 0;
  }
  .stories__item {
    width: 100%;
  }
  .stories__item:not(:first-child) {
    margin-top: 3rem;
  }
  .stories__title {
    height: unset;
    line-height: unset;
  }
}

.map {
  padding: 5.5rem 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/bg-map.jpeg") no-repeat center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row;
  text-align: center;
  color: #e98383;
}
.map__icon {
  font-size: 2.7rem;
}
.map__title {
  font-size: 2.4rem;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 2rem;
  padding-bottom: 2rem;
  position: relative;
}
.map__title::after {
  position: absolute;
  content: "";
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 6rem;
  height: 3px;
  background-color: #e98383;
}

.footer {
  padding-top: 7rem;
}
.footer__list {
  display: grid;
  grid-template-columns: 1.8fr 1.4fr 1fr;
  grid-template-rows: auto;
  grid-column-gap: 5rem;
}
.footer-mogo__logo {
  font-size: 4.6rem;
  color: #ccc;
  text-transform: uppercase;
  font-weight: bold;
}
.footer-mogo__text {
  margin-top: 3.5rem;
  font-family: "Roboto", sans-serif;
  line-height: 1.53;
}
.footer-mogo__followers {
  margin-top: 4rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #ccc;
  color: #999;
}
.footer-mogo__followers span:first-child {
  font-size: 1.8rem;
}
.footer-mogo__followers span:last-child {
  font-size: 1.4rem;
}
.footer-mogo__socials {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
}
.footer-mogo__title {
  font-style: italic;
}
.footer-mogo__link {
  margin-left: 1.5rem;
  color: #95e1d3;
  cursor: pointer;
}
.footer-mogo__link:hover {
  opacity: 0.8;
}
.footer-mogo__icon {
  font-size: 2rem;
}
.footer-mogo__search {
  margin-top: 4rem;
}
.footer__title {
  font-size: 1.4rem;
  color: #999;
  text-transform: uppercase;
  margin-bottom: 4rem;
}
.footer-blogs__item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: 2fr 1fr;
  grid-gap: 1rem 2rem;
}
.footer-blogs__item:not(:first-child) {
  margin-top: 3rem;
}
.footer-blogs__image {
  width: 12rem;
  height: 8rem;
  grid-row: 1/-1;
  grid-column: 1/2;
}
.footer-blogs__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer-blogs__text {
  grid-column: 2/-1;
  grid-row: 1/2;
  margin-top: auto;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #999;
  line-height: 1.5;
}
.footer-blogs__date {
  grid-column: 2/-1;
  grid-row: 2/-1;
  font-style: "Kaushan Script", cursive;
  font-size: 1.3rem;
  font-style: italic;
}
.footer-instagram__list {
  --gap: 2px;
  display: grid;
  grid-template-columns: repeat(3, calc(9rem - var(--gap)));
  grid-template-rows: repeat(3, calc(9rem - var(--gap)));
  grid-gap: var(--gap);
}
.footer-instagram__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer-instagram__viewmore {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-size: 1.3rem;
  color: #999;
  margin-top: 2rem;
  transition: 0.25s ease-out;
}
.footer-instagram__viewmore:hover {
  opacity: 0.8;
}
.footer-copyright {
  margin-top: 7rem;
  padding: 2.2rem 0;
  font-size: 1.4rem;
  color: #333;
  border-top: 1px solid #ccc;
  text-align: center;
}
.footer-copyright span {
  color: #f38181;
}
@media screen and (max-width: 1111px) {
  .footer-mogo__followers {
    margin-top: 2.5rem;
  }
  .footer__list {
    grid-column-gap: 3rem;
  }
  .footer-blogs__item {
    grid-column-gap: 1rem;
  }
  .footer-blogs__item:not(:first-child) {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 1023px) {
  .footer__list {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto, auto;
    grid-gap: 6rem;
  }
  .footer-mogo {
    grid-column: 1/-1;
    grid-row: 1/2;
  }
  .footer-blogs {
    grid-column: 1/2;
    grid-row: 2/-1;
  }
  .footer-instagram {
    grid-column: 2/-1;
    grid-row: 2/-1;
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .footer__list {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .footer-instagram {
    grid-column: unset;
    grid-row: unset;
    margin-left: unset;
  }
  .footer-instagram__list {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
  }
  .footer-blogs__item {
    grid-template-columns: auto 1fr;
    grid-column-gap: 2rem;
  }
}
@media screen and (max-width: 413px) {
  .footer-mogo__link {
    margin-left: 1.3rem;
  }
}
@media screen and (max-width: 374px) {
  .footer {
    padding-top: 5rem;
  }
  .footer__list {
    grid-gap: 4rem;
  }
  .footer-mogo__text, .footer__title {
    margin-top: 3rem;
  }
  .footer-mogo__link {
    margin-left: 0.7rem;
  }
  .footer-blogs__text {
    font-size: 1.1rem;
  }
  .footer-copyright {
    margin-top: 5rem;
  }
}

.form-subscribe {
  margin-top: 3.5rem;
  display: flex;
  max-width: 38rem;
  width: 100%;
}
.form-subscribe__mail {
  padding: 1.4rem;
  width: 100%;
  border: 1px solid #ccc;
  outline: none;
  color: #333;
  letter-spacing: 0.8px;
}
.form-subscribe__mail::placeholder {
  font-style: italic;
  color: #ccc;
}
.form-subscribe__submit {
  padding: 1.4rem 3.2rem;
  font-size: 1.4rem;
  color: #fff;
  border: 0;
  background-color: #95e1d3;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
  transition: 0.25s ease-out;
}
.form-subscribe__submit:hover {
  opacity: 0.8;
}
@media screen and (max-width: 1023px) {
  .form-subscribe {
    max-width: 56rem;
  }
}
@media screen and (max-width: 374px) {
  .form-subscribe__mail {
    max-width: 15rem;
  }
  .form-subscribe__submit {
    padding: 1.2rem 2.4rem;
  }
}

/*# sourceMappingURL=style.css.map */
