html {
  font-size: 62.5%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.text--style {
  font-family: "Roboto", sans-serif;
  font-size: 15px; }

.text--light {
  font-weight: 300;
  font-style: italic; }

a {
  text-decoration: none; }

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

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

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

.container {
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 15px; }

.block-box {
  text-align: center;
  max-width: 96rem;
  margin: 0 auto; }
  .block-box-caption {
    font-family: "Kaushan Script", cursive;
    font-size: 24px;
    color: #333;
    text-transform: capitalize;
    margin-bottom: 2rem; }
  .block-box-title {
    font-size: 30px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    padding-bottom: 4rem;
    margin-bottom: 4.5rem;
    position: relative; }
    .block-box-title::before {
      content: '';
      width: 6rem;
      height: 0.3rem;
      background-color: #f38181;
      position: absolute;
      bottom: -0.3rem;
      left: 50%;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%); }
  .block-box-description {
    line-height: 1.5;
    color: #999;
    margin-bottom: 10rem; }
  @media screen and (max-width: 767px) {
    .block-box-title {
      padding-bottom: 3rem;
      margin-bottom: 3.5rem; }
    .block-box-description {
      margin-bottom: 5rem; } }

.header {
  min-height: 100rem;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(243, 129, 129, 0.8)), to(rgba(252, 227, 138, 0.8))), url("../images/img-header-bg.jpg") no-repeat center/cover;
  background: linear-gradient(to bottom, rgba(243, 129, 129, 0.8), rgba(252, 227, 138, 0.8)), url("../images/img-header-bg.jpg") no-repeat center/cover; }
  .header-top {
    padding-top: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    margin-bottom: 17rem; }
  .header-logo {
    font-size: 3rem;
    font-weight: bold;
    color: #fff; }
  .header-toggle {
    display: none; }
  .header-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .header-menu-item:not(:first-child) {
      margin-left: 5.6rem; }
    .header-menu-link {
      display: inline-block;
      padding-bottom: 1.2rem;
      border-bottom: 0.3rem solid transparent;
      text-transform: uppercase;
      color: #fff;
      -webkit-transition: all 0.3s linear;
      transition: all 0.3s linear; }
      .header-menu-link:hover {
        border-bottom-color: #fce38a;
        color: #fce38a; }
    .header-menu-icon i {
      color: #fff;
      font-weight: 400; }
  .header-content {
    text-align: center;
    max-width: 90rem;
    margin: 0 auto 15.5rem; }
    .header-content-caption {
      font-size: 7.2rem;
      font-family: "Kaushan Script", cursive;
      color: #fff;
      text-transform: capitalize;
      margin-bottom: 4.5rem; }
    .header-content-main {
      font-size: 15rem;
      font-weight: bold;
      color: #fff;
      text-transform: uppercase;
      position: relative;
      padding-bottom: 6.5rem;
      margin-bottom: 5rem; }
      .header-content-main::before {
        content: '';
        width: 6rem;
        height: 0.3rem;
        background-color: #fff;
        position: absolute;
        bottom: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%); }
    .header-content-more {
      display: inline-block;
      font-weight: bold;
      text-transform: uppercase;
      color: #fff;
      padding: 1.2rem 3rem;
      border: 3px solid #fff; }
  .header-bottom {
    padding-bottom: 2.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: -3rem; }
    .header-bottom-item {
      color: #fff;
      padding-top: 2.5rem;
      margin-left: 3rem;
      border-top: 0.3rem solid #fff;
      opacity: 0.7;
      width: calc(25% - 3rem);
      position: relative;
      cursor: pointer;
      -webkit-transition: all 0.3s linear;
      transition: all 0.3s linear; }
      .header-bottom-item::before {
        content: '';
        position: absolute;
        width: 7rem;
        height: 0.3rem;
        background-color: #f38181;
        top: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        opacity: 0;
        -webkit-transition: all 0.3s linear;
        transition: all 0.3s linear; }
      .header-bottom-item.is-active {
        opacity: 1; }
        .header-bottom-item.is-active::before {
          opacity: 1; }
    .header-bottom-number {
      font-size: 24px;
      font-weight: bold;
      margin-right: 1rem; }
    .header-bottom-text {
      font-size: 18px;
      text-transform: uppercase; }

@media screen and (max-width: 1023px) {
  .header {
    min-height: unset; }
    .header-menu-item:not(:first-child) {
      margin-left: 4.2rem; }
    .header-top {
      margin-bottom: 12rem; }
    .header-content {
      margin: 0 auto 10.5rem;
      max-width: 80rem; }
    .header-content-main {
      font-size: 11rem; } }

@media screen and (max-width: 767px) {
  .header-top {
    margin-bottom: 9rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
  .header-toggle {
    display: inline-block;
    font-size: 24px;
    color: #fff;
    cursor: pointer; }
  .header-menu {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: 25rem;
    background-color: #fff;
    z-index: 2;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 2rem 1.5rem;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.3s ease-in;
    transition: -webkit-transform 0.3s ease-in;
    transition: transform 0.3s ease-in;
    transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in; }
    .header-menu.is-expand {
      -webkit-transform: translateX(0);
      transform: translateX(0); }
    .header-menu-item {
      margin-bottom: 1rem; }
    .header-menu-item:not(:last-child) {
      -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
      order: 2; }
    .header-menu-item:nth-last-child(2) {
      -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
      order: 1; }
    .header-menu-item:not(:first-child) {
      margin-left: 0; }
    .header-menu-link {
      color: #999;
      width: 100%;
      padding: 1.5rem;
      border-radius: 4px;
      border-bottom: none; }
      .header-menu-link:hover {
        color: #fff;
        background-color: #f38181; }
    .header-menu-icon {
      display: block;
      text-align: center;
      padding: 1.5rem; }
      .header-menu-icon:hover i {
        color: #f38181; }
    .header-menu-icon i {
      color: #999; }
  .header-content {
    max-width: 46rem; }
  .header-content-caption {
    font-size: 4.8rem;
    margin-bottom: 3rem; }
  .header-content-main {
    font-size: 6.4rem;
    padding-bottom: 3rem;
    margin-bottom: 3rem; }
  .header-bottom-item {
    padding-top: 1.5rem; }
    .header-bottom-item::before {
      width: 35%; }
  .header-bottom-number {
    display: none; }
  .header-bottom-text {
    font-size: 14px; } }

@media screen and (max-width: 424px) {
  .header-top {
    margin-bottom: 6rem; }
  .header-content {
    margin: 0 auto 7.5rem; }
    .header-content-caption {
      font-size: 42px; }
    .header-content-main {
      font-size: 56px; }
    .header-content-more {
      font-size: 12px;
      padding: 1.2rem 2.4rem; }
  .header-bottom {
    margin-left: -2rem; }
    .header-bottom-item {
      padding-top: 1rem;
      margin-left: 2rem;
      width: calc(25% - 2rem); }
    .header-bottom-text {
      font-size: 11px; } }

@media screen and (max-width: 374px) {
  .header-top {
    padding-top: 2rem;
    margin-bottom: 4rem; }
  .header-content {
    max-width: 30rem;
    margin: 0 auto 5.5rem; }
    .header-content-caption {
      font-size: 36px; }
    .header-content-main {
      font-size: 42px; }
  .header-bottom {
    padding-bottom: 2rem; }
    .header-bottom-item {
      padding-top: 0.7rem; }
    .header-bottom-text {
      font-size: 10px; } }

.about {
  padding: 9.2rem 0 11rem; }
  .about-list {
    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; }
  .about-item {
    width: calc(100% / 3 - 2rem);
    position: relative; }
    .about-item:hover .about-image {
      -webkit-transform: translate(-1rem, -1rem);
      transform: translate(-1rem, -1rem); }
    .about-item:hover .about-content {
      opacity: 1;
      visibility: visible;
      -webkit-transform: translate(-1rem, -1rem);
      transform: translate(-1rem, -1rem); }
    .about-item::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #95e1d3;
      z-index: -1; }
  .about-image {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear; }
  .about-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(243, 129, 129, 0.8)), to(rgba(252, 227, 138, 0.8)));
    background: linear-gradient(to bottom, rgba(243, 129, 129, 0.8), rgba(252, 227, 138, 0.8));
    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;
    color: #fff;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    opacity: 0;
    visibility: hidden; }
  .about-icon {
    font-size: 20px;
    margin-bottom: 1.3rem; }
  .about-title {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase; }
  @media screen and (max-width: 767px) {
    .about {
      padding: 6.5rem 0 6.5rem; }
      .about-list {
        display: -ms-grid;
        display: grid;
        grid-column-gap: 3rem;
        grid-auto-columns: 60%;
        grid-auto-flow: column;
        -ms-grid-columns: unset;
        grid-template-columns: unset;
        overflow-x: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
        padding: 1rem;
        margin: -1rem;
        -ms-scroll-snap-type: x mandatory;
        scroll-snap-type: x mandatory;
        scroll-snap-stop: always; }
        .about-list::-webkit-scrollbar {
          display: none; }
      .about-item {
        width: 100%;
        scroll-snap-align: center; }
        .about-item:hover .about-image {
          -webkit-transform: translate(-0.7rem, -0.7rem);
          transform: translate(-0.7rem, -0.7rem); }
        .about-item:hover .about-content {
          -webkit-transform: translate(-0.7rem, -0.7rem);
          transform: translate(-0.7rem, -0.7rem); } }
  @media screen and (max-width: 424px) {
    .about-list {
      grid-column-gap: 1.5rem; }
    .about-item {
      grid-auto-columns: 70%; }
      .about-item:hover .about-image {
        -webkit-transform: translate(-0.5rem, -0.5rem);
        transform: translate(-0.5rem, -0.5rem); }
      .about-item:hover .about-content {
        -webkit-transform: translate(-0.5rem, -0.5rem);
        transform: translate(-0.5rem, -0.5rem); } }

.number {
  background-color: #95e1d3;
  color: #fff; }
  .number-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .number-item {
    padding: 8rem 3rem;
    width: 20%;
    text-align: center;
    border-left: 1px solid #b5eae0;
    border-right: 1px solid #b5eae0; }
    .number-item-count {
      font-size: 72px;
      font-weight: bold;
      margin-bottom: 2rem; }
    .number-item-text {
      text-transform: uppercase;
      line-height: 1.4; }
  @media screen and (max-width: 1023px) {
    .number-item {
      padding: 4rem 1.5rem; }
      .number-item-count {
        font-size: 56px;
        margin-bottom: 1rem; }
      .number-item-text {
        font-size: 11px; } }
  @media screen and (max-width: 767px) {
    .number-item {
      padding: 2rem 1rem; }
      .number-item-count {
        font-size: 32px;
        margin-bottom: 0.5rem; }
      .number-item-text {
        font-size: 8px;
        line-height: 1; } }
  @media screen and (max-width: 424px) {
    .number-item {
      padding: 1rem 0; }
      .number-item-count {
        font-size: 24px;
        margin-bottom: 0.3rem; } }

.services {
  padding: 11rem 0 12rem; }
  .services-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 6.5rem; }
    .services-list:last-child {
      border-top: 1px solid #e5e5e5;
      margin-top: 5rem;
      padding-top: 5rem; }
  .services-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: calc(100% / 3 - 5rem / 3); }
    .services-item-icon {
      margin: 0 2.5rem; }
    .services-item-info {
      width: calc(100% - 8.2rem); }
    .services-item-title {
      text-transform: uppercase;
      margin-bottom: 1.5rem; }
    .services-item-description {
      color: #999;
      line-height: 24px; }

@media screen and (max-width: 1023px) {
  .services {
    padding: 5rem 0 5rem; }
    .services-list {
      display: block; }
      .services-list:last-child {
        border-top: none;
        margin-top: 0;
        padding-top: 0; }
    .services-item {
      width: 100%;
      margin-bottom: 2.5rem;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
      .services-item-title {
        margin-bottom: 0.5rem; } }

@media screen and (max-width: 424px) {
  .services-list {
    margin-top: 0; }
  .services-item-icon {
    margin: 0 1rem 0 0; }
  .services-item-info {
    width: 100%; }
  .services-item-title {
    font-size: 12px; }
  .services-item-description {
    font-size: 12px; } }

.devices {
  padding-top: 10.5rem;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.85)), to(rgba(255, 255, 255, 0.85))), url(../images/img-device-bg.png) no-repeat center/cover;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url(../images/img-device-bg.png) no-repeat center/cover; }
  .devices-image {
    text-align: center;
    position: relative; }
    .devices-image-ipad {
      display: inline-block;
      width: 45.6rem; }
    .devices-image-iphone {
      position: absolute;
      bottom: -6rem;
      left: 50%;
      margin-left: 140px;
      width: 20rem; }

@media screen and (max-width: 1023px) {
  .devices {
    padding-top: 5rem; }
    .devices-image-ipad {
      margin-left: -30px;
      width: 23rem; }
    .devices-image-iphone {
      margin-left: 35px;
      width: 100.877193px;
      bottom: -28px; } }

.wedo {
  padding: 11rem 0 12rem; }
  .wedo-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
  .wedo-image, .wedo-accordion {
    width: calc(50% - 1.5rem); }
  .wedo-image {
    -o-object-fit: cover;
    object-fit: cover; }
  .wedo-item:not(:last-child) {
    margin-bottom: 1rem; }
  .wedo-item.is-active .wedo-item-text {
    display: block; }
  .wedo-item-header {
    padding: 1.5rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #e5e5e5;
    cursor: pointer; }
    .wedo-item-header > * {
      margin-right: 1.5rem; }
  .wedo-item-icon {
    margin-left: 1.5rem; }
  .wedo-item-title {
    font-weight: 500;
    text-transform: uppercase;
    color: #333; }
  .wedo-item-arrow {
    margin-left: auto;
    margin-right: 2rem;
    color: #ccc;
    font-size: 28px; }
  .wedo-item-text {
    padding: 2rem;
    color: #999;
    border: 1px solid #e5e5e5;
    border-top: 0;
    display: none; }
  .wedo-item-inner {
    height: 14rem;
    overflow-y: auto;
    padding-right: 2rem;
    line-height: 1.4; }
    .wedo-item-inner::-webkit-scrollbar {
      width: 0.5em; }
    .wedo-item-inner::-webkit-scrollbar-track {
      -webkit-box-shadow: inset 0 0 5px rgba(149, 225, 211, 0.4);
      box-shadow: inset 0 0 5px rgba(149, 225, 211, 0.4);
      border-radius: 1rem; }
    .wedo-item-inner::-webkit-scrollbar-thumb {
      background-color: #95e1d3;
      border-radius: 1rem; }

@media screen and (max-width: 1023px) {
  .wedo {
    padding: 5rem 0 5.5rem; }
    .wedo-content {
      display: block; }
    .wedo-image, .wedo-accordion {
      width: 100%; }
    .wedo-image {
      width: 85%;
      margin: 0 auto 1rem; }
    .wedo-item-text {
      padding: 1rem; }
    .wedo-item-inner {
      padding-right: 1rem; } }

.quote {
  background-color: #f8f8f8;
  padding: 6.5rem 0; }
  .quote-arrow-left, .quote-arrow-right {
    font-size: 30px;
    color: #ccc;
    cursor: pointer;
    padding: 1rem 2.5rem; }
  .quote-main {
    padding: 0 6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
  .quote-image {
    width: 15rem;
    height: 15rem;
    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;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border: 3px solid #95e1d3;
    margin-right: 6rem; }
  .quote-content-text {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: italic;
    font-size: 24px;
    line-height: 1.4;
    color: #999;
    margin-bottom: 2rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis; }
    .quote-content-text::before {
      content: open-quote; }
    .quote-content-text::after {
      content: close-quote; }
  .quote-content-author {
    font-family: "Kaushan Script", cursive;
    font-size: 24px;
    color: #333;
    position: relative;
    padding-left: 7rem; }
    .quote-content-author::before {
      content: '';
      background-color: #f38181;
      height: 3px;
      width: 6rem;
      position: absolute;
      left: 0;
      top: 50%;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%); }
  .quote .slick-initialized .slick-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .quote .slick-arrow {
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 30px;
    color: #ccc;
    cursor: pointer;
    padding: 1rem 2rem;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%); }
  .quote .slick-prev {
    left: 0;
    z-index: 99; }
  .quote .slick-next {
    right: 0; }

@media screen and (max-width: 1023px) {
  .quote-arrow-left, .quote-arrow-right {
    display: none; }
  .quote-main {
    padding: 0 5rem; }
  .quote-image {
    width: 9rem;
    height: 9rem;
    margin-right: 3rem; }
    .quote-image img {
      max-width: 55%; }
  .quote-content-text {
    font-size: 20px;
    margin-bottom: 1.5rem; }
  .quote-content-author {
    font-size: 20px; } }

@media screen and (max-width: 767px) {
  .quote {
    padding: 4rem 0; }
    .quote-main {
      padding: 0;
      margin: 0 1rem;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column; }
    .quote-image {
      margin-right: 0rem;
      margin-bottom: 2rem; }
    .quote-content-author {
      font-size: 16px;
      padding-left: 3rem; }
      .quote-content-author::before {
        height: 2px;
        width: 2.5rem; }
    .quote-content-text {
      font-size: 16px;
      text-align: justify;
      margin-bottom: 1rem;
      display: block; } }

.team {
  padding: 10rem 0 12rem;
  --image-height: 47rem;
  --icon-height: 5.6rem;
  --translate-image: -1rem; }
  .team-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
  .team-item {
    width: calc(100% / 3 - 2rem); }
  .team-main {
    position: relative; }
    .team-main::before {
      content: '';
      background-color: #95e1d3;
      position: absolute;
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      z-index: -1; }
    .team-main:hover .team-social {
      opacity: 1;
      visibility: visible;
      -webkit-transform: translate(var(--translate-image), var(--translate-image));
      transform: translate(var(--translate-image), var(--translate-image)); }
    .team-main:hover .team-image {
      -webkit-transform: translate(var(--translate-image), var(--translate-image));
      transform: translate(var(--translate-image), var(--translate-image)); }
  .team-image {
    width: 100%;
    height: var(--image-height);
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear; }
  .team-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(243, 129, 129, 0.8)), to(rgba(252, 227, 138, 0.8)));
    background: linear-gradient(to bottom, rgba(243, 129, 129, 0.8), rgba(252, 227, 138, 0.8));
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear; }
    .team-social-item {
      background-color: #fce38a; }
      .team-social-item:not(:last-child) {
        margin-right: 1px; }
      .team-social-item:hover .team-social-link {
        color: #fff;
        background-color: #f38181; }
    .team-social-link {
      width: var(--icon-height);
      height: var(--icon-height);
      color: #f38181;
      font-size: 28px;
      display: inline-block;
      -webkit-transition: all 0.3s linear;
      transition: all 0.3s 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; }
  .team-info {
    margin-top: 3.1rem;
    padding: 0 1rem;
    text-align: center;
    height: calc(100% - var(--image-height) - 3.1rem);
    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: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    .team-info-name {
      margin-bottom: 1.5rem;
      font-weight: 500;
      text-transform: uppercase;
      line-height: 1.4;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis; }
    .team-info-position {
      color: #999; }

@media screen and (max-width: 1023px) {
  .team {
    --translate-image: -0.6rem; }
    .team-list {
      display: -ms-grid;
      display: grid;
      grid-auto-columns: 60%;
      grid-auto-flow: column;
      grid-gap: 0 2rem;
      overflow-x: auto;
      -ms-overflow-style: none;
      scrollbar-width: none;
      padding: 1rem;
      margin: -1rem;
      -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
      scroll-snap-stop: always; }
      .team-list::-webkit-scrollbar {
        display: none; }
    .team-item {
      width: 100%;
      scroll-snap-align: center; }
    .team-main:hover .team-social {
      -webkit-transform: translate(var(--translate-image), var(--translate-image));
      transform: translate(var(--translate-image), var(--translate-image)); }
    .team-main:hover .team-image {
      -webkit-transform: translate(var(--translate-image), var(--translate-image));
      transform: translate(var(--translate-image), var(--translate-image)); }
    .team-image {
      height: var(--image-height); }
    .team-info {
      margin-top: 2.1rem;
      height: calc(100% - var(--image-height) - 2.1rem); } }

@media screen and (max-width: 767px) {
  .team {
    --translate-image: -0.4rem;
    --image-height: 37rem;
    padding: 5rem 0 6rem; }
    .team-list {
      grid-auto-columns: 70%; }
    .team-main:hover .team-social {
      -webkit-transform: translate(var(--translate-image), var(--translate-image));
      transform: translate(var(--translate-image), var(--translate-image)); }
    .team-main:hover .team-image {
      -webkit-transform: translate(var(--translate-image), var(--translate-image));
      transform: translate(var(--translate-image), var(--translate-image)); }
    .team-image {
      height: var(--image-height); }
    .team-social-link {
      width: 4rem;
      height: 4rem;
      font-size: 20px; }
    .team-info {
      margin-top: 1.1rem;
      height: calc(100% - var(--image-height) - 1.1rem); }
      .team-info-name {
        margin-bottom: 1rem; } }

.brand {
  padding: 5rem 0;
  background-color: #f8f8f8; }
  .brand-list {
    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;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .brand-item {
    width: calc(100% / 6);
    text-align: center; }
    .brand-item-link {
      display: inline-block; }
    .brand-item-logo {
      -webkit-transition: all .3s linear;
      transition: all .3s linear; }
    .brand-item:hover .brand-item-logo {
      -webkit-transform: scale(1.1);
      transform: scale(1.1); }
  @media screen and (max-width: 767px) {
    .brand {
      padding: 3rem 0; }
      .brand-item {
        width: calc(100% / 3); } }

.work {
  padding-top: 11rem; }
  .work-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .work-column {
    width: calc(100% / 4);
    height: 78rem; }
  .work-item {
    position: relative;
    cursor: pointer;
    height: 50%; }
    .work-item.work--full {
      height: 100%; }
    .work-item:hover .work-content {
      opacity: 1;
      visibility: visible; }
  .work-image {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover; }
  .work-content {
    padding: 1rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(243, 129, 129, 0.8)), to(rgba(252, 227, 138, 0.8)));
    background: linear-gradient(to bottom, rgba(243, 129, 129, 0.8), rgba(252, 227, 138, 0.8));
    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-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #FFF;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s linear;
    transition: all .3s linear; }
    .work-content-title {
      text-transform: uppercase;
      font-weight: 500;
      margin-top: 2rem; }
    .work-content-description {
      margin-top: 1.5rem; }

@media screen and (max-width: 1023px) {
  .work-column {
    height: 60rem; } }

@media screen and (max-width: 767px) {
  .work {
    padding-top: 6rem; }
    .work-list {
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
    .work-column {
      height: 45rem;
      width: calc(100% / 2); } }

@media screen and (max-width: 424px) {
  .work-column {
    width: 100%;
    height: auto; } }

.review {
  background-color: #f8f8f8;
  padding: 10rem 0 13rem; }
  .review-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 6rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
  .review-image {
    width: 21rem;
    height: 21rem;
    overflow: hidden;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top center;
    object-position: top center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 3rem; }
  .review-content-text {
    font-size: 24px;
    color: #999;
    margin-bottom: 2rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis; }
    .review-content-text::before {
      content: open-quote; }
    .review-content-text::after {
      content: close-quote; }
  .review-content-author {
    font-family: "Kaushan Script", cursive;
    font-size: 24px;
    text-transform: capitalize;
    padding: 7rem;
    position: relative; }
    .review-content-author::before {
      content: '';
      height: 3px;
      width: 6rem;
      background-color: #f38181;
      position: absolute;
      left: 0;
      top: 50%;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%); }
  .review-arrow {
    color: #ccc;
    font-size: 30px;
    padding: 1rem 2.5rem;
    cursor: pointer; }
  .review .slick-initialized .slick-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .review .slick-arrow {
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 30px;
    color: #ccc;
    cursor: pointer;
    padding: 1rem 2rem;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%); }
  .review .slick-prev {
    left: 0;
    z-index: 99; }
  .review .slick-next {
    right: 0; }

@media screen and (max-width: 1023px) {
  .review-arrow-left, .review-arrow-right {
    display: none; }
  .review-main {
    padding: 0 5rem; }
  .review-image {
    width: 12rem;
    height: 12rem;
    margin-right: 3rem; }
  .review-content-text {
    font-size: 20px;
    margin-bottom: 1.5rem; }
  .review-content-author {
    font-size: 20px; } }

@media screen and (max-width: 767px) {
  .review {
    padding: 4rem 0; }
    .review-main {
      padding: 0 1rem;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column; }
    .review-image {
      margin-right: 0rem;
      margin-bottom: 2rem; }
    .review-content-author {
      font-size: 16px;
      padding-left: 3rem; }
      .review-content-author::before {
        height: 2px;
        width: 2.5rem; }
    .review-content-text {
      font-size: 16px;
      text-align: justify;
      margin-bottom: 1rem;
      display: block; } }

.people {
  padding: 11rem 0 6rem;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.85)), to(rgba(255, 255, 255, 0.85))), url(../images/img-people-bg.png) no-repeat center/cover;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url(../images/img-people-bg.png) no-repeat center/cover; }
  .people-list {
    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;
    padding: 0 4rem;
    margin-top: 9rem; }
  .people-item {
    width: calc(100% / 2 - 4.25rem);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 7rem; }
  .people-image {
    border-radius: 50%;
    width: 11.5rem;
    height: 11.5rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -o-object-fit: cover;
    object-fit: cover; }
  .people-content {
    margin-top: 1.2rem;
    margin-left: 3rem; }
    .people-content-name {
      text-transform: uppercase;
      font-weight: 500;
      margin-bottom: 1.5rem; }
    .people-content-position {
      color: #999;
      display: inline-block;
      padding-bottom: 2rem;
      margin-bottom: 2rem;
      position: relative; }
      .people-content-position::before {
        content: '';
        position: absolute;
        height: 3px;
        width: 6rem;
        background-color: #f38181;
        left: 0;
        bottom: 0; }
    .people-content-description {
      font-family: "Roboto", sans-serif;
      font-size: 15px;
      line-height: 1.4;
      color: #999;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 3;
      overflow: hidden;
      text-overflow: ellipsis; }

@media screen and (max-width: 1023px) {
  .people {
    padding: 5rem 0 2rem; }
    .people-list {
      margin-top: 0;
      padding: 0; }
    .people-item {
      width: calc(100% / 2 - 1.5rem);
      margin-bottom: 4rem; }
    .people-content {
      margin-top: 0.7rem;
      margin-left: 1.5rem; }
      .people-content-name {
        margin-bottom: 1rem; }
      .people-content-position {
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem; }
    .people-image {
      width: 10rem;
      height: 10rem; } }

@media screen and (max-width: 767px) {
  .people-item {
    width: 100%;
    margin-bottom: 3rem; }
  .people-image {
    width: 8rem;
    height: 8rem; } }

.blog {
  padding: 10rem 0 11rem; }
  .blog-list {
    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; }
  .blog-item {
    width: calc(100% / 3 - 2rem);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
  .blog-media {
    position: relative; }
  .blog-image {
    width: 100%;
    height: 24rem;
    -o-object-fit: cover;
    object-fit: cover; }
  .blog-date {
    position: absolute;
    bottom: 1rem;
    left: -1rem;
    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;
    width: 6rem;
    height: 7rem;
    background-color: #95e1d3;
    color: #fff; }
    .blog-date-number {
      font-size: 30px;
      font-weight: bold; }
  .blog-content {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
  .blog-title {
    text-transform: uppercase;
    margin: 2rem 0 1.3rem;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: pre-wrap;
    word-break: break-word; }
    .blog-title a {
      color: #333;
      -webkit-transition: all 0.3s linear;
      transition: all 0.3s linear; }
      .blog-title a:hover {
        color: #95e1d3; }
  .blog-description {
    color: #999;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: pre-wrap;
    word-break: break-word;
    margin-bottom: 2rem; }
  .blog-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5; }
    .blog-meta-item {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
      .blog-meta-item:not(:first-child) {
        margin-left: 1rem; }
    .blog-meta-icon {
      color: #95e1d3;
      font-size: 15px;
      margin-right: 5px; }
    .blog-meta-number {
      color: #999; }

@media screen and (max-width: 1023px) {
  .blog {
    padding: 5rem 0 6rem; }
    .blog-item {
      width: calc(100% / 3 - 1rem); }
    .blog-image {
      height: 16rem; }
    .blog-date {
      width: 5rem;
      height: 6rem;
      bottom: 0.5rem;
      left: -0.7rem; }
      .blog-date-number {
        font-size: 24px; } }

@media screen and (max-width: 767px) {
  .blog-item {
    width: 100%; }
    .blog-item:not(:last-child) {
      margin-bottom: 3rem; }
  .blog-image {
    height: 24rem; }
  .blog-date {
    width: 6rem;
    height: 7rem;
    bottom: 0.5rem;
    left: -0.7rem; }
    .blog-date-number {
      font-size: 30px; }
  .blog-description {
    margin-bottom: 1.5rem; }
  .blog-meta {
    padding-top: 1.5rem; } }

.map {
  padding: 5.5rem 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.85)), to(rgba(255, 255, 255, 0.85))), url("../images/img-map.png");
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url("../images/img-map.png"); }
  .map-container {
    text-align: center; }
  .map-icon {
    margin-bottom: 2rem;
    color: #f38181;
    font-size: 25px; }
  .map-heading {
    font-size: 24px;
    font-weight: bold;
    color: #f38181;
    text-transform: uppercase;
    padding-bottom: 2.5rem;
    position: relative; }
    .map-heading::before {
      content: '';
      height: 3px;
      width: 6rem;
      background-color: #f38181;
      position: absolute;
      bottom: 0;
      left: 50%;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%); }

.footer {
  background-color: #f8f8f8; }
  .footer-inner {
    padding: 7.5rem 0 7rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-bottom: 1px solid #e5e5e5; }
  .footer-contact {
    width: calc(42.5% - 3rem);
    margin-right: 3rem; }
    .footer-contact-brand {
      font-size: 46px;
      font-weight: bold;
      color: #ccc;
      margin-bottom: 4rem;
      display: block; }
    .footer-contact-description {
      color: #999;
      line-height: 1.4;
      margin-bottom: 4.5rem; }
    .footer-contact-followers {
      padding-bottom: 2rem;
      margin-bottom: 1.5rem;
      border-bottom: 1px solid #e5e5e5; }
      .footer-contact-followers strong {
        font-weight: bold;
        font-size: 18px; }
    .footer-contact-social {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin-bottom: 4rem; }
      .footer-contact-social span {
        text-transform: capitalize;
        color: #999; }
    .footer-contact-list {
      margin-left: 0.5rem; }
    .footer-contact-link {
      font-size: 16px;
      color: #95e1d3;
      margin-left: 1rem;
      padding: 0.25rem; }
    .footer-contact-form {
      width: 100%;
      max-width: 38rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
    .footer-contact-input {
      padding: 1.3rem;
      border: 1px solid #e7e7e7;
      border-right: none;
      background-color: #fff;
      outline: none;
      -webkit-box-flex: 1;
      -ms-flex-positive: 1;
      flex-grow: 1;
      color: #999; }
    .footer-contact-btn {
      cursor: pointer;
      padding: 1.5rem 3.4rem;
      text-transform: uppercase;
      color: #fff;
      font-weight: bold;
      background-color: #95e1d3;
      outline: none;
      border: none; }
  .footer-heading {
    font-weight: 500;
    text-transform: uppercase;
    margin: 1rem 0 4rem; }
  .footer-blog {
    width: calc(35% - 8rem);
    margin-right: 8rem; }
    .footer-blog-item {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
      .footer-blog-item:not(:last-child) {
        margin-bottom: 3.1rem; }
    .footer-blog-link {
      -ms-flex-negative: 0;
      flex-shrink: 0; }
    .footer-blog-image {
      width: 12rem;
      height: 8rem;
      -o-object-fit: cover;
      object-fit: cover; }
    .footer-blog-title {
      display: inline-block;
      padding-left: 2rem;
      margin-bottom: 1.5rem;
      font-size: 12px;
      font-weight: 500;
      text-transform: uppercase;
      line-height: 1.4;
      color: #333;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      width: 100%;
      max-width: 100%;
      white-space: pre-wrap;
      word-break: break-word; }
    .footer-blog-date {
      display: inline-block;
      padding-left: 2rem;
      font-size: 13px;
      color: #999; }
  .footer-instagram {
    width: calc(22.5%); }
    .footer-instagram-list {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      gap: 2px; }
    .footer-instagram-item {
      width: calc(100% / 3 - 4px / 3);
      padding-bottom: calc(100% / 3);
      height: 0;
      position: relative; }
    .footer-instagram-image {
      -o-object-fit: cover;
      object-fit: cover;
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0; }
    .footer-instagram-more {
      display: block;
      margin-top: 2rem;
      color: #999;
      font-size: 13px; }
  .footer-copyright {
    padding: 2.4rem 0 2.2rem;
    text-align: center;
    font-weight: 500; }
    .footer-copyright a {
      color: #f38181; }

@media screen and (max-width: 1023px) {
  .footer-inner {
    padding: 4.5rem 0 4rem; }
  .footer-contact, .footer-blog, .footer-instagram {
    width: 100%; }
  .footer-contact, .footer-blog {
    padding-bottom: 3rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e5e5e5; }
  .footer-contact {
    margin-right: 0; }
    .footer-contact-brand {
      text-align: center;
      margin-bottom: 2rem; }
    .footer-contact-description {
      margin-bottom: 2.5rem; }
    .footer-contact-followers {
      text-align: center;
      padding-bottom: 0;
      margin-bottom: 1.5rem;
      border-bottom: none; }
    .footer-contact-social {
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
    .footer-contact-form {
      margin: 0 auto; }
  .footer-heading {
    text-align: center;
    font-size: 24px;
    margin: 1rem 0 2rem; }
  .footer-blog {
    margin-right: 0; }
    .footer-blog-image {
      width: 18rem;
      height: 12rem; }
    .footer-blog-content {
      width: 100%; }
  .footer-instagram-more {
    text-align: center; } }

@media screen and (max-width: 767px) {
  .footer-contact-social {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
  .footer-contact-list {
    margin-top: 1rem; }
  .footer-contact-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
  .footer-contact-input {
    border-right: 1px solid #e7e7e7;
    margin-bottom: 1rem; }
  .footer-blog {
    margin-right: 0; }
    .footer-blog-image {
      width: 9rem;
      height: 6rem; }
    .footer-blog-title, .footer-blog-date {
      padding-left: 1rem; } }
