.text {
  text-decoration: none;
  font-family: 'Poppins', sans-serif; }
  .text a {
    cursor: pointer; }
  .text button {
    margin: 0;
    padding: 0;
    background: none;
    outline: none;
    border: none;
    cursor: pointer; }

.text-light {
  font-weight: 400; }

.text-normal {
  font-weight: normal; }

.text-dark {
  font-weight: 600; }

.button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: poppins,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,sans-serif;
  font-weight: 500;
  font-size: 1rem;
  border: none;
  outline: none;
  cursor: pointer;
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.14), 0 3px 3px -2px rgba(0, 0, 0, 0.2), 0 1px 8px 0 rgba(0, 0, 0, 0.12); }
  .button:before {
    content: '';
    display: block;
    position: absolute;
    left: 51%;
    right: 51%;
    bottom: 0;
    height: 4px;
    background-color: white;
    transition-property: left, right;
    transition-duration: .3s;
    transition-timing-function: ease-out; }
  .button:hover:before {
    left: 0;
    right: 0; }

.button-small {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: .9rem; }
  .button-small:before {
    height: 2px; }

.button-medium {
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 1rem; }

.button-outline {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: poppins,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,sans-serif;
  font-weight: 500;
  font-size: 1rem;
  border-style: solid;
  outline: none;
  background: none;
  cursor: pointer; }
  .button-outline__icon {
    margin-right: 0.75rem;
    transition: .1s transform ease-in; }
  .button-outline:focus {
    outline: none;
    box-shadow: none; }
  .button-outline:hover .button-outline__icon {
    transform: rotateZ(-30deg); }

.button-outline-small {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: .9rem;
  border-width: 1px; }
  .button-outline-small .button-outline__icon {
    font-size: 1.3rem; }

.button-outline-medium {
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 1rem;
  border-width: 3px; }
  .button-outline-medium .button-outline__icon {
    font-size: 1.7rem; }

.button-round {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: none;
  outline: none;
  background-image: none;
  box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
  cursor: pointer; }

.chips {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.75rem; }
  .chips__item {
    display: inline-flex;
    margin-left: 0.75rem;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-size: .7rem;
    color: black;
    cursor: pointer;
    transition: .4s color; }
    .chips__item__icon {
      font-size: .7rem;
      margin-right: 0.5rem; }

.chips__item-primary {
  color: #ef6c57; }
  .chips__item-primary:hover {
    color: #eb4328; }

.chips__item-secondary {
  color: #7ed3b2; }
  .chips__item-secondary:hover {
    color: #58c69b; }

.chips__item-success {
  color: #54d98c; }
  .chips__item-success:hover {
    color: #2dcd70; }

.chips__item-warning {
  color: #ff9800; }
  .chips__item-warning:hover {
    color: #cc7a00; }

.chips__item-muted {
  color: #9e9e9e; }
  .chips__item-muted:hover {
    color: #858585; }

@media (min-width: 768px) {
  .chips__item + .chips__item {
    margin-left: 0.75rem; }
  .chips__item {
    font-size: 1rem; }
    .chips__item__icon {
      font-size: 1rem; } }

.input {
  position: relative; }
  .input__label, .input__field {
    font-family: 'Poppins', sans-serif; }
  .input__label {
    color: #9e9e9e;
    transition-property: transform, color;
    transition-duration: .5s; }
  .input__field {
    display: flex;
    margin-top: 0.75rem;
    padding: 0 0.75rem 0.5rem 0.75rem;
    width: 100%;
    border: none;
    border-bottom: 1.5px solid rgba(27, 25, 41, 0.4);
    box-sizing: border-box;
    outline: none;
    transition: .5s border-color; }
    .input__field:focus {
      border-color: #ef6c57; }
  .input__icon {
    position: absolute;
    right: 0;
    top: 0;
    color: #9e9e9e;
    transition-property: transform, color;
    transition-duration: .5s; }
  .input textarea {
    height: 5rem;
    resize: none;
    text-align: justify; }
  .input:focus-within .input__label {
    color: #ef6c57; }
  .input:focus-within .input__label, .input:focus-within .input__field {
    border-color: #ef6c57; }
  .input:focus-within .input__icon {
    color: #1b1929;
    transform: translateX(30%); }

.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: 0;
  overflow: hidden;
  background-color: rgba(158, 158, 158, 0.7);
  opacity: 0;
  transition: .5s opacity, .1s max-height .7s; }
  .modal__inner {
    position: absolute;
    top: -50%;
    left: 0;
    right: 0;
    margin: auto;
    width: 40rem;
    min-height: 20rem;
    background-color: white;
    box-shadow: 0 0 13px -4px rgba(0, 0, 0, 0.17);
    transition: .5s top; }
    .modal__inner__close {
      position: absolute;
      top: -1.5rem;
      right: -1.5rem;
      margin: 0;
      padding: 0;
      width: 3rem;
      height: 3rem;
      border: none;
      background: none;
      outline: none;
      cursor: pointer; }
      .modal__inner__close__icon {
        font-size: 2.5rem;
        color: rgba(239, 108, 87, 0.7); }
  .modal--show {
    max-height: 100vh;
    opacity: 1;
    z-index: 100;
    transition: .5s opacity; }
    .modal--show .modal__inner {
      top: calc(5rem + 10%);
      transition: .5s top .2s; }

.gallery-dots {
  display: flex;
  align-items: center;
  justify-content: space-around; }
  .gallery-dots__item {
    padding: 3px;
    border: 1px solid white;
    border-radius: 50%;
    box-sizing: border-box; }
    .gallery-dots__item:before {
      content: '';
      display: block;
      width: 100%;
      height: 100%;
      background-color: white;
      border-radius: 50%;
      opacity: 0;
      transition: .5s opacity; }
    .gallery-dots__item--active:before {
      opacity: 1; }

.gallery-images {
  position: relative; }
  .gallery-images__list {
    position: relative;
    height: calc(100% - 2.5rem*1.5); }
    .gallery-images__list__item {
      position: absolute;
      top: 0;
      right: 0;
      left: 0;
      height: 100%;
      background-position: center;
      background-size: contain;
      background-repeat: no-repeat; }
  .gallery-images__action {
    position: absolute;
    bottom: 1.25rem;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    color: #1b1929;
    background-color: white;
    border-radius: 50%;
    cursor: pointer;
    user-select: none; }
    .gallery-images__action.material-icons {
      display: flex;
      font-size: 2rem; }
  .gallery-images__prev {
    left: 1.25rem; }
  .gallery-images__next {
    right: 1.25rem; }
  .gallery-images__dots {
    position: absolute;
    left: 5rem;
    right: 5rem;
    bottom: 1.875rem;
    height: 1.25rem; }

@media (min-width: 768px) {
  .gallery-images__list {
    height: 100%; }
  .gallery-images__action {
    top: calc(50% - 1.75rem);
    width: 3.5rem;
    height: 3.5rem; }
    .gallery-images__action.material-icons {
      display: flex;
      font-size: 3rem; } }

.gallery-images__list__item {
  opacity: 0;
  transform: rotateZ(180deg);
  transform-origin: bottom left; }
  .gallery-images__list__item--active {
    opacity: 1;
    transform: rotateZ(0); }

.gallery-images__action {
  opacity: .2;
  transition: 0.5s opacity; }

.gallery-images--prev .gallery-images__list__item {
  transition: 0.5s opacity, 0.1s transform 0.5s; }
  .gallery-images--prev .gallery-images__list__item--active {
    transition: 0.5s transform; }

.gallery-images--next .gallery-images__list__item {
  transition: 1s transform, 0.2s opacity 0.5s; }
  .gallery-images--next .gallery-images__list__item--active {
    transition: 0.5s opacity; }

.gallery-images:hover .gallery-images__action {
  opacity: .5; }
  .gallery-images:hover .gallery-images__action:hover {
    opacity: 1; }

.gallery-sidebar {
  position: relative;
  padding: 1.5rem;
  max-width: 30rem;
  box-sizing: border-box;
  overflow: auto; }
  .gallery-sidebar__toggle-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    cursor: pointer; }

.gallery-thumbnails {
  display: flex;
  justify-content: center;
  height: 7.5rem; }
  .gallery-thumbnails__inner {
    width: 44.5rem;
    height: 7.5rem;
    overflow: hidden; }
  .gallery-thumbnails__list {
    display: flex;
    align-items: center;
    height: 100%;
    transition: .7s transform ease-out; }
    .gallery-thumbnails__list__item {
      flex: 1 0 10rem;
      height: 6rem;
      border-bottom: 4px solid transparent;
      background-size: cover;
      background-position: top;
      cursor: pointer;
      transition-duration: .5s;
      transition-property: border-color, transform; }
      .gallery-thumbnails__list__item--active {
        border-color: #ef6c57; }
      .gallery-thumbnails__list__item:hover {
        transform: scale(0.8) rotateZ(10deg); }
    .gallery-thumbnails__list__item + .gallery-thumbnails__list__item {
      margin-left: 1.5rem; }
  .gallery-thumbnails__prev, .gallery-thumbnails__next {
    justify-content: center;
    align-items: center;
    flex: 0 1 7.5rem;
    height: 7.5rem;
    color: white;
    opacity: .2;
    transition: .5s opacity;
    user-select: none; }
    .gallery-thumbnails__prev.material-icons, .gallery-thumbnails__next.material-icons {
      display: flex;
      cursor: pointer;
      font-size: 3rem; }
    .gallery-thumbnails__prev[disabled], .gallery-thumbnails__next[disabled] {
      cursor: not-allowed; }
      .gallery-thumbnails__prev[disabled]:hover, .gallery-thumbnails__next[disabled]:hover {
        opacity: .2; }
    .gallery-thumbnails__prev:hover, .gallery-thumbnails__next:hover {
      opacity: 1; }

.gallery {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  background-color: rgba(27, 25, 41, 0.7); }
  .gallery__close-btn {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0;
    background: none;
    border: none;
    outline: none;
    z-index: 10; }
    .gallery__close-btn .material-icons {
      color: white; }
  .gallery__left, .gallery__right {
    flex: 1 0 100%;
    background-color: #1b1929; }
  .gallery__right {
    background-color: white; }
  .gallery__toggle-btn {
    position: absolute;
    bottom: -1.2rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 3rem;
    width: 3rem;
    color: white;
    text-align: center;
    cursor: pointer;
    transform: rotate(-90deg); }
    .gallery__toggle-btn.material-icons {
      font-size: 3rem;
      color: rgba(255, 255, 255, 0.2); }

@media (min-width: 768px) {
  .gallery {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: center;
    overflow: hidden; }
    .gallery__left, .gallery__right {
      height: 35rem; }
    .gallery__right {
      height: 35rem;
      flex: 0 1 25%; }
    .gallery__bottom {
      position: absolute;
      left: 0;
      bottom: 0;
      right: 0;
      background-color: #1b1929; }
    .gallery__toggle-btn {
      position: absolute;
      top: calc( (100% - 35rem)/2 - 1.5rem);
      left: auto;
      right: 1.5rem;
      margin: 0;
      transform: none; } }

.gallery {
  max-height: 0;
  opacity: 0;
  z-index: 600;
  overflow-y: auto;
  overflow-x: hidden;
  transition: 0.5s opacity, 0.1s max-height 0.7s; }
  .gallery__toggle-btn {
    opacity: 0;
    z-index: -1;
    transition: 0.5s opacity; }
  .gallery__left {
    height: 75%;
    transition: 0.5s height; }
  .gallery--show {
    max-height: 100vh;
    opacity: 1;
    transition: 0.5s opacity; }
  .gallery--sidebar-collapsed {
    overflow: hidden; }
    .gallery--sidebar-collapsed .gallery__left {
      height: 100%; }
    .gallery--sidebar-collapsed .gallery__toggle-btn {
      opacity: 1;
      z-index: 100; }

@media (min-width: 768px) {
  .gallery__left, .gallery__right {
    height: 35rem; }
  .gallery__left {
    flex: 0 1 60%;
    transition: 0.5s flex-basis 0.1s; }
  .gallery__right {
    opacity: 1;
    transition: .3s all, .3s opacity .3s; }
  .gallery--show {
    overflow: hidden;
    padding-bottom: 7rem; }
  .gallery--sidebar-collapsed .gallery__left, .gallery--sidebar-collapsed .gallery__right {
    height: 35rem; }
  .gallery--sidebar-collapsed .gallery__left {
    flex-basis: 100%; }
  .gallery--sidebar-collapsed .gallery__right {
    flex-basis: 0;
    padding: 0;
    opacity: 0;
    transition: .3s opacity, .3s flex-basis .1s, .2s padding .3s; } }

.skill-progress {
  position: relative;
  height: 1rem;
  background-color: #eeeeee; }
  .skill-progress__number {
    position: absolute;
    top: -2rem;
    right: auto;
    left: 0;
    padding: 5px;
    font-size: .75rem;
    border-radius: 4px;
    background-color: #1b1929;
    transition: 0.5s left ease-out; }
  .skill-progress__fill {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    opacity: .7;
    transition: 0.5s min-width ease-out; }

@media (min-width: 768px) {
  .skill-progress {
    height: 1.3rem; } }

.skills__item__progress {
  margin-top: 0.5rem; }

.skills__item + .skills__item {
  margin-top: 0.75rem; }

.spinner {
  position: absolute;
  display: block;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 5px solid white;
  border-color: white transparent white transparent;
  opacity: 0;
  transition: .4s opacity;
  animation: dual-ring 1.2s linear infinite; }
  .spinner--active {
    opacity: 1; }

@keyframes dual-ring {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

.animate-svg svg .path {
  transition: 1s stroke; }

.animate-svg--active svg .path {
  animation-name: dash;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  animation-duration: 5s; }

@keyframes dash {
  to {
    stroke-dashoffset: 0; } }

html {
  font-size: 16px;
  scroll-behavior: smooth; }
  html ::selection {
    background-color: #ef6c57;
    color: white; }

body {
  overflow: hidden; }

.layout {
  transition: .5s background-color; }
  .layout__header {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 3rem;
    z-index: 50; }
  .layout__body {
    min-height: 100vh; }
  .layout__footer__copyright {
    text-align: center;
    margin-bottom: 0.75rem; }

@media (min-width: 768px) {
  .layout__header {
    top: 0;
    height: 4rem; }
  .layout__body {
    padding-top: 4rem; } }

.scroll-progress {
  border-bottom-width: 4px;
  border-bottom-style: solid;
  transition: .1s max-width; }

.contact-cta {
  position: absolute;
  bottom: -4.21053rem;
  right: -4rem;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
  z-index: 5;
  cursor: pointer;
  border: 2px solid white;
  -webkit-tap-highlight-color: transparent; }
  .contact-cta__icon {
    position: absolute;
    top: 1.375rem;
    left: 1.46429rem;
    width: 2rem;
    height: 2rem;
    transition: .5s opacity; }
  .contact-cta__cross-icon {
    opacity: 0; }
  .contact-cta--active .contact-cta__cross-icon {
    opacity: 1; }
  .contact-cta--active .contact-cta__envelope-icon {
    opacity: 0; }

.contact-cta-desktop {
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  left: 0;
  right: -3.75rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center; }

.header {
  position: relative;
  display: flex;
  justify-content: center;
  height: 3rem;
  background-color: white;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  transition: .7s height; }
  .header__scroll-progress {
    position: absolute;
    height: 0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0; }

@media (min-width: 768px) {
  .header {
    padding: 0 3rem;
    height: 4rem; }
    .header__logo {
      display: flex;
      align-items: center;
      cursor: pointer; }
      .header__logo__text {
        display: none; }
    .header__scroll-progress {
      top: 100%; } }

@media (min-width: 992px) {
  .header {
    padding: 0 4.5rem;
    justify-content: space-evenly;
    align-items: center; }
    .header__logo {
      flex: 0 1 15rem; }
      .header__logo__text {
        display: block; }
      .header__logo__svg {
        transition: .5s fill; }
      .header__logo__text {
        margin-left: 0.75rem;
        transition: .5s color; } }

@media (min-width: 1024px) {
  .header {
    padding: 0 4.5rem;
    justify-content: center;
    align-items: center; } }

@media (min-width: 1600px) {
  .header {
    padding: 0 6rem; } }

.header__nav {
  position: relative;
  width: 100%; }
  .header__nav__list {
    display: flex;
    justify-content: space-around;
    height: 100%; }
  .header__nav__item {
    flex: 0 1 3rem;
    align-self: center;
    padding-top: 0.75rem;
    padding-bottom: 0.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    box-sizing: border-box;
    cursor: pointer;
    user-select: none; }
    .header__nav__item__text {
      transition: .5s color; }
    .header__nav__item__icon {
      transition: .5s fill; }

@media (max-width: 767px) {
  .header__nav__item:nth-child(1) {
    padding-bottom: 0.75rem; }
  .header__nav__item:nth-child(2) {
    padding-left: 0.25rem;
    padding-right: 0.25rem; } }

@media (min-width: 768px) {
  .header {
    padding: 0; }
    .header__nav {
      justify-content: flex-start;
      width: auto; }
      .header__nav__item {
        position: relative;
        flex: auto;
        padding: 1.5rem; } }

@media (min-width: 1200px) {
  .header {
    padding: 0 3rem; }
    .header__nav__item {
      padding: 1.5rem 3rem; } }

.profile {
  padding-top: 0.75rem; }
  .profile__header {
    height: 3rem;
    display: flex;
    align-items: flex-end; }
    .profile__header__logo {
      margin-left: -0.75rem;
      flex: 0 1 5rem; }
    .profile__header__name {
      margin-left: 0.5rem; }
  .profile__summary {
    margin-top: 1.5rem;
    text-align: justify; }
  .profile__body {
    margin-top: 1.5rem; }
    .profile__body__item {
      display: flex;
      justify-content: space-between;
      padding: 1.5rem 0;
      border-bottom: 1px solid rgba(238, 238, 238, 0.5);
      list-style: none; }
      .profile__body__item__name {
        text-transform: uppercase; }
      .profile__body__item__text {
        flex: 0 1 80%;
        transition: .3s color; }
        .profile__body__item__text:hover {
          color: #63c9cf; }

.contact-form {
  position: absolute;
  top: -3rem;
  bottom: 1.5rem;
  right: 0;
  left: 0;
  background-color: white;
  box-shadow: 0 0 13px -4px rgba(0, 0, 0, 0.17); }
  .contact-form__form {
    position: relative;
    padding: 1.5rem;
    height: 100%;
    box-sizing: border-box;
    overflow: hidden; }
    .contact-form__form__inner {
      display: flex;
      flex-direction: column;
      height: 100%; }
    .contact-form__form__email {
      margin-top: 1.5rem; }
    .contact-form__form__message {
      margin-top: 1.5rem; }
    .contact-form__form__feedback {
      margin-top: 1.5rem; }

@media (min-width: 768px) {
  .contact-form {
    top: -10.5rem;
    bottom: -1.5rem; }
    .contact-form__form {
      padding: 3rem; }
      .contact-form__form__email {
        margin-top: 2.25rem; }
      .contact-form__form__message {
        margin-top: 1.5rem; }
      .contact-form__form__feedback {
        margin-top: 3rem; } }

.contact-form__form__submit-btn {
  align-self: center;
  margin-top: auto;
  width: 100%;
  height: 3rem;
  transition-property: opacity;
  transition-duration: .2s;
  transition-timing-function: ease-out; }

.contact-form__form__load-zone {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  right: 3rem;
  height: 3rem;
  background-color: rgba(239, 108, 87, 0.6); }

.contact-form__form__spinner {
  position: absolute;
  top: calc(50% - 1.5rem);
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 3.5rem;
  height: 3.5rem;
  border: 5px solid white;
  border-radius: 50%;
  border-left-color: transparent; }

.contact-form__form__success-icon {
  position: absolute;
  top: calc(100% - 5.75rem);
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 3.5rem;
  height: 3.5rem;
  border: 5px solid white;
  border-radius: 50%;
  overflow: hidden; }
  .contact-form__form__success-icon:before, .contact-form__form__success-icon:after {
    content: '';
    position: absolute;
    display: block;
    height: 5px;
    background-color: white; }
  .contact-form__form__success-icon:before {
    top: 56%;
    left: 23%;
    width: 35%;
    transform: rotateZ(35deg); }
  .contact-form__form__success-icon:after {
    top: 50%;
    right: 8%;
    width: 50%;
    transform: rotateZ(-50deg); }

@media (min-width: 768px) {
  .contact-form__form__submit-btn {
    height: 3rem; }
  .contact-form__form__load-zone {
    height: 3rem; }
  .contact-form__form__spinner {
    top: calc(50% - 3rem);
    width: 4.5rem;
    height: 4.5rem; }
  .contact-form__form__success-icon {
    top: calc(100% - 7.5rem);
    width: 4.5rem;
    height: 4.5rem;
    border: 5px solid white; }
    .contact-form__form__success-icon:before, .contact-form__form__success-icon:after {
      height: 5px;
      background-color: white; }
    .contact-form__form__success-icon:before {
      left: 20%; } }

.contact-form__form__inner {
  transition-property: opacity;
  transition-duration: .2s; }

.contact-form__form__load-zone {
  opacity: 0;
  visibility: hidden;
  transition-property: opacity, right, bottom, left, height, border-radius;
  transition-delay: 0s, 0.1s, 0.1s, 0.1s, 0.1s, 0.1s, 0.1s;
  transition-duration: 0.1s, 0.5s, 0.5s, 0.5s, 0.5s, 0.5s, 0.5s;
  transition-timing-function: ease-out; }

.contact-form__form__spinner {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s opacity 0.5s;
  animation-name: spinner-rotate;
  animation-duration: .8s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.25, 0.49, 0.79, 0.46); }

.contact-form--loading .contact-form__form__inner {
  opacity: .2;
  transition-delay: .3s; }

.contact-form--loading .contact-form__form__submit-btn {
  opacity: 0;
  visibility: 0; }

.contact-form--loading .contact-form__form__load-zone {
  left: -20%;
  right: -20%;
  bottom: -40%;
  height: 200%;
  border-radius: 50%;
  opacity: 1;
  visibility: visible; }

.contact-form--loading .contact-form__form__spinner {
  visibility: visible;
  opacity: 1; }

@keyframes spinner-rotate {
  from {
    transform: rotateZ(0deg); }
  to {
    transform: rotateZ(360deg); } }

.contact-form__form__success-icon {
  opacity: 0;
  visibility: hidden;
  transition-property: opacity;
  transition-duration: 0.5s;
  transition-delay: 1s; }
  .contact-form__form__success-icon:before, .contact-form__form__success-icon:after {
    opacity: 0;
    transition-property: opacity;
    transition-duration: 0.5s; }
  .contact-form__form__success-icon:before {
    transition-delay: 1.2s; }
  .contact-form__form__success-icon:after {
    transition-delay: 1.4s; }

.contact-form--success .contact-form__form__submit-btn {
  opacity: 0;
  visibility: 0; }

.contact-form--success .contact-form__form__spinner {
  top: calc(100% - 5.75rem);
  transition-property: top;
  transition-duration: 0.5s; }

.contact-form--success .contact-form__form__success-icon {
  opacity: 1;
  visibility: visible; }
  .contact-form--success .contact-form__form__success-icon:after, .contact-form--success .contact-form__form__success-icon:before {
    opacity: 1; }

.contact-form--exit .contact-form__form__success-icon {
  border-color: #54d98c;
  transition-property: border-color;
  transition-duration: 0.2s;
  transition-delay: 0s; }
  .contact-form--exit .contact-form__form__success-icon:after, .contact-form--exit .contact-form__form__success-icon:before {
    transition-property: background-color;
    transition-duration: 0.2s;
    transition-delay: 0s;
    background-color: #54d98c; }

@media (min-width: 768px) {
  .contact-form--success .contact-form__form__spinner {
    top: calc(100% - 7.5rem); } }

.offers__title {
  text-align: right; }

.offers__list {
  margin-top: 1.5rem; }
  .offers__list__item {
    padding: 1.5rem 0;
    border-bottom: 1px solid #9e9e9e;
    transition: .4s border-color; }
    .offers__list__item__title {
      text-align: right;
      transition: .4s color; }
    .offers__list__item:hover .offers__list__item {
      border-bottom-color: #ef6c57; }
      .offers__list__item:hover .offers__list__item__title {
        color: #ef6c57; }

.offers__copyright {
  padding-top: 3rem;
  text-align: right; }

.footer {
  display: flex;
  flex-direction: column;
  margin-top: 4.5rem;
  background-color: #1b1929; }
  .footer__item {
    position: relative;
    flex: 0 1 33%;
    padding: 0 1.5rem;
    box-sizing: border-box; }
  .footer__contact-form {
    flex: 1 0 25rem; }

@media (min-width: 768px) {
  .footer {
    flex-direction: row;
    padding: 3rem 1.5rem; }
    .footer__contact-form {
      order: 1;
      flex: 0 1 40%; }
    .footer__profile {
      order: 0;
      flex: 0 1 30%; }
    .footer__offers {
      order: 2;
      flex: 0 1 30%; } }

@media (min-width: 1600px) {
  .footer {
    padding: 3rem 10.5rem; }
    .footer__contact-form {
      flex: 0 1 30%; }
    .footer__profile {
      flex: 0 1 35%; }
    .footer__offers {
      flex: 0 1 35%; } }

@media (min-width: 768px) {
  .footer__contact-form {
    transition-property: transform;
    transition-duration: .5s;
    transform: translateY(0); }
  .footer--hidden .footer__contact-form {
    transform: translateY(140%); } }

.contact-widget {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 18rem;
  background-color: white;
  box-shadow: 0 0 20px -5px rgba(0, 0, 0, 0.7);
  z-index: 20;
  transform: translateY(100%);
  transition: .4s transform; }
  .contact-widget__form {
    padding: 1.5rem;
    height: 100%; }
    .contact-widget__form__message {
      margin-top: 0.75rem; }
      .contact-widget__form__message .input__field {
        height: 3rem; }
    .contact-widget__form__footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 0.75rem; }
    .contact-widget__form__submit-btn {
      position: relative;
      flex: 0 1 50%;
      padding-left: 1rem;
      padding-right: 1rem; }
    .contact-widget__form__feedback {
      flex: 0 1 50%;
      font-size: .9rem;
      text-align: center; }
  .contact-widget--active {
    transform: translateY(0); }

@media (min-width: 768px) {
  .contact-widget {
    position: absolute;
    top: 4.1rem;
    left: auto;
    right: -4rem;
    width: 25rem;
    height: 25rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(0);
    transition-property: opacity, max-height;
    transition-duration: .4s;
    transition-delay: .1s, 0s; }
    .contact-widget__form__message {
      margin-top: 3rem; }
      .contact-widget__form__message .input__field {
        height: 6rem; }
    .contact-widget__form__footer {
      margin-top: 3rem; }
    .contact-widget--active {
      opacity: 1;
      max-height: 25rem;
      transition-delay: 0s, .2s; } }

.config-panel__panel {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 0;
  background-color: red;
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
  background-color: white;
  box-sizing: border-box; }
  .config-panel__panel__title {
    padding: 0 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #bdbdbd;
    text-align: center; }
  .config-panel__panel__section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 1.5rem; }
    .config-panel__panel__section__title {
      flex: 1 0 100%;
      margin-bottom: 1.5rem; }
    .config-panel__panel__section__input {
      width: 100%;
      margin-bottom: 0.75rem; }
  .config-panel__panel__section + .config-panel__panel__section {
    border-top: 1px solid #bdbdbd; }

.config-panel {
  position: fixed;
  left: 2rem;
  bottom: 4rem;
  width: 4rem;
  height: 4rem; }
  .config-panel__panel {
    position: absolute;
    bottom: 5.2rem;
    left: -16.2rem;
    width: 20rem;
    height: 30rem;
    transform: rotateX(90deg);
    transform-origin: bottom;
    transition-property: transform;
    transition-duration: .2s;
    transition-timing-function: ease-out;
    overflow: hidden; }
  .config-panel--active .config-panel__panel {
    transform: rotateX(0);
    transition-duration: .5s; }

.cookie-popup {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 3rem;
  padding: 1.5rem;
  width: 100%;
  background-color: white;
  box-shadow: 0 0 1em rgba(136, 136, 136, 0.5);
  box-sizing: border-box;
  z-index: 30;
  transform: translateX(200%);
  transition: 0.5s transform ease-out; }
  .cookie-popup__title {
    color: #ef6c57;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase; }
  .cookie-popup__text {
    margin-top: 0.75rem;
    font-size: 0.9rem; }
  .cookie-popup__btn {
    margin-top: 0.75rem;
    width: 100%;
    font-size: 0.8rem; }
  .cookie-popup--show {
    transform: translate(0); }

@media (min-width: 768px) {
  .cookie-popup {
    left: auto;
    right: 6rem;
    bottom: 1.5rem;
    width: 23rem; } }

.offline-panel {
  padding: 1.5rem;
  width: 100vw;
  background-color: white;
  box-shadow: 0 0 1em rgba(136, 136, 136, 0.5);
  box-sizing: border-box;
  transform: translateX(-150%);
  transition: 0.5s transform ease-out; }
  .offline-panel__title {
    color: #9e9e9e;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase; }
  .offline-panel__text {
    margin-top: 0.75rem;
    font-size: 0.9rem; }
  .offline-panel__btn {
    margin-top: 0.75rem;
    width: 100%;
    font-size: 0.8rem; }
  .offline-panel--show {
    transform: translateX(0); }

@media (min-width: 768px) {
  .offline-panel {
    width: 23rem; } }

.offline-popup {
  position: fixed;
  left: 0;
  bottom: 3rem;
  display: flex;
  flex-direction: column;
  width: 0;
  overflow: visible;
  z-index: 100; }
  .offline-popup__btn {
    position: fixed;
    left: 0;
    bottom: 3rem;
    z-index: 20;
    opacity: 0;
    transition: 0.5s opacity ease-out;
    pointer-events: none; }
    .offline-popup__btn--show {
      opacity: 1;
      pointer-events: all; }

@media (min-width: 768px) {
  .offline-popup {
    top: 0;
    bottom: 0;
    left: 0.75rem; }
    .offline-popup__btn {
      position: static; }
    .offline-popup__panel {
      margin-top: 0.75rem; } }

/* mobile sizes */
/* tablet sizes */
/* desktop sizes */
/* big desktop sizes */
.banner-carousel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }
  .banner-carousel__wrapper {
    width: 15rem;
    height: 10rem;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat; }
  .banner-carousel__list {
    position: relative;
    width: 14rem;
    height: 9.5rem;
    align-self: center;
    display: flex;
    transform: translate(0rem, -0.3rem) rotateX(13deg) rotateY(-26deg) rotateZ(3.3deg);
    transform-origin: bottom center; }
  .banner-carousel__footer {
    width: 10rem;
    height: 3rem;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat; }
  .banner-carousel__item {
    position: absolute;
    padding: 6px;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-sizing: border-box;
    z-index: 1; }
    .banner-carousel__item:last-child {
      z-index: 0; }
    .banner-carousel__item__background {
      width: 100%;
      height: 100%;
      border-radius: 5px;
      background-color: rgba(27, 25, 41, 0.5);
      background-size: cover;
      background-position: top left;
      background-repeat: no-repeat; }

@media (min-width: 768px) {
  .banner-carousel__wrapper {
    width: 20rem;
    height: 15rem; }
  .banner-carousel__list {
    width: 20rem;
    height: 14rem;
    transform: translate(-1rem, 0) rotateX(13deg) rotateY(-26deg) rotateZ(2.5deg); }
  .banner-carousel__footer {
    width: 20rem;
    height: 4rem; } }

@media (min-width: 1200px) {
  .banner-carousel__wrapper {
    width: 28rem;
    height: 17rem; }
  .banner-carousel__list {
    width: 23.2rem;
    height: 15.5rem;
    transform: translate(1.4rem, 0.1rem) rotateX(13deg) rotateY(-26deg) rotateZ(2.5deg); }
  .banner-carousel__footer {
    width: 20rem;
    height: 4rem; } }

@media (min-width: 1600px) {
  .banner-carousel {
    padding-top: 3rem; }
    .banner-carousel__wrapper {
      width: 30rem;
      height: 18rem; }
    .banner-carousel__list {
      width: 25rem;
      height: 17rem;
      transform: translate(1.4rem, 0.1rem) rotateX(13deg) rotateY(-26deg) rotateZ(2.5deg); }
    .banner-carousel__footer {
      width: 20rem;
      height: 5rem; } }

.banner-carousel {
  perspective: 1000px; }
  .banner-carousel__wrapper {
    transform-origin: 80% 50%;
    perspective: 1200px;
    transition: .2s transform ease-out;
    transform: translateY(10px); }
  .banner-carousel--animating .banner-carousel__wrapper {
    transform: translateY(10px) rotateX(15deg); }

.banner-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 1.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem; }
  .banner-intro__title {
    font-size: 2rem;
    text-align: center; }
  .banner-intro__hashtag {
    align-self: center;
    display: flex;
    margin-top: 0.75rem;
    margin-left: 5px; }
    .banner-intro__hashtag__item {
      font-size: .8rem; }
    .banner-intro__hashtag__item + .banner-intro__hashtag__item {
      margin-left: 0.75rem; }
  .banner-intro__carousel {
    margin-top: 1.5rem;
    padding-left: 3rem; }
  .banner-intro__text {
    margin-top: 2.25rem; }
  .banner-intro__list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 0.75rem; }
    .banner-intro__list__item {
      list-style: none;
      flex: 0 1 50%; }
      .banner-intro__list__item__icon {
        margin-right: 5px;
        font-size: 1rem;
        vertical-align: bottom; }
  .banner-intro__actions {
    display: flex;
    margin-top: 1.5rem;
    font-size: 1rem; }
    .banner-intro__actions__btn {
      flex: 1 0 100%; }

@media (min-width: 768px) {
  .banner-intro {
    padding-top: 0;
    padding-left: 3rem;
    padding-right: 3rem; }
    .banner-intro__title {
      margin-top: 3rem;
      font-size: 3rem;
      text-align: left;
      white-space: nowrap; }
    .banner-intro__carousel {
      display: none; }
    .banner-intro__hashtag {
      align-self: flex-start;
      margin-top: 1.8rem; }
      .banner-intro__hashtag__item {
        font-size: 1rem; }
      .banner-intro__hashtag__item + .banner-intro__hashtag__item {
        margin-left: 1.5rem; }
    .banner-intro__text {
      margin-top: 3rem; }
    .banner-intro__list {
      margin-top: 1.5rem;
      flex-direction: column;
      flex-wrap: nowrap; }
      .banner-intro__list__item {
        flex: 1; }
        .banner-intro__list__item__icon {
          font-size: 1.5rem;
          vertical-align: text-top; }
      .banner-intro__list__item + .banner-intro__list__item {
        margin-top: 0.5rem; }
    .banner-intro__actions {
      margin-top: 3rem;
      justify-content: space-between; }
      .banner-intro__actions__btn {
        flex: 0 1 45%;
        font-size: 1.2rem; } }

@media (min-width: 1200px) {
  .banner-intro {
    padding-left: 6rem;
    padding-right: 4.5rem; }
    .banner-intro__title {
      margin-top: 0;
      font-size: 3.8rem; }
    .banner-intro__hashtag__item {
      font-size: 1.2rem; }
    .banner-intro__hashtag__item + .banner-intro__hashtag__item {
      margin-left: 3rem; } }

@media (min-width: 1600px) {
  .banner-intro__title {
    font-size: 5rem; }
  .banner-intro__hashtag__item {
    font-size: 1.5rem; } }

.banner-intro__list__item {
  transition-property: transform, color;
  transition-duration: .5s; }
  .banner-intro__list__item__icon {
    transition-property: transform;
    transition-duration: .3s; }

.banner-intro--hidden .banner-intro__list__item {
  color: #9e9e9e;
  transform: translateX(-1.5rem); }
  .banner-intro--hidden .banner-intro__list__item__icon {
    transform: rotateY(90deg); }

.banner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  padding-left: calc((100% - 110rem)/2);
  padding-right: calc((100% - 110rem)/2);
  padding-bottom: 5rem;
  height: 85vh;
  overflow: hidden; }
  .banner__left {
    flex: 1; }
  .banner__right {
    flex: 1;
    z-index: 10; }

@media (min-width: 768px) {
  .banner {
    flex-wrap: nowrap;
    height: 50vh; }
    .banner__left {
      flex: 0 1 45%; }
    .banner__right {
      flex: 1; }
    .banner:before, .banner:after {
      content: '';
      position: absolute;
      right: 0;
      bottom: 0;
      transform-origin: left; }
    .banner:before {
      top: -80%;
      left: 75%;
      background-color: #ef6c57;
      width: 70%;
      height: 90%;
      box-shadow: 0 0 13px -4px black;
      z-index: 1;
      transform: rotateZ(45deg); }
    .banner:after {
      top: 100%;
      left: 75%;
      width: 50%;
      height: 60%;
      background-color: #7ed3b2;
      box-shadow: 0 0 13px -4px black;
      z-index: 0;
      transform: rotateZ(-45deg); } }

@media screen and (min-width: 1024px) and (orientation: landscape), (min-width: 1200px) {
  .banner {
    height: calc(100vh - 5.5rem); } }

.our-services {
  display: flex;
  justify-content: center;
  padding-left: calc((100% - 100rem)/2);
  padding-right: calc((100% - 100rem)/2); }
  .our-services__list {
    width: 100%;
    display: flex;
    flex-wrap: wrap; }
    .our-services__list__item {
      position: relative;
      flex: 0 1 calc(100% - 3rem);
      margin: 1.5rem;
      background-color: white;
      box-shadow: 0 0 13px -4px rgba(0, 0, 0, 0.17); }
      .our-services__list__item:before {
        content: '';
        display: block;
        padding-top: 95%; }
      .our-services__list__item__inner {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100%;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        padding: 1.5rem;
        box-sizing: border-box; }
      .our-services__list__item__title {
        flex: 0 1 3rem;
        text-transform: uppercase;
        text-align: center; }
      .our-services__list__item__text {
        flex: 0 1 3.5rem;
        text-align: center; }
      .our-services__list__item__test {
        text-align: center;
        transition: 0.3s transform;
        cursor: pointer; }
      .our-services__list__item__btn {
        text-transform: uppercase; }
      .our-services__list__item:hover .our-services__list__item__test {
        transform: scale(1.1); }

@media (min-width: 768px) {
  .our-services__list__item {
    flex: 0 1 calc(50% - 3rem); }
    .our-services__list__item:before {
      padding-top: 100%; } }

@media (min-width: 1024px) {
  .our-services__list__item {
    flex: 0 1 calc(33% - 3rem); } }

@media (min-width: 1200px) {
  .our-services__list__item {
    flex: 0 1 calc(25% - 3rem); } }

.our-services__list__item__header {
  position: relative;
  flex: 0 1 5rem; }
  .our-services__list__item__header__icon.material-icons {
    font-size: 3rem; }
  .our-services__list__item__header:after {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 34.5px 60px;
    border-color: transparent transparent #eaeaea transparent;
    transform: translateX(-50%) rotate(15deg);
    transform-origin: 50% 80%;
    transition: all 0.3s ease;
    z-index: -1; }

.our-services__list__item:hover .our-services__list__item__header:after {
  transform: translateX(-50%) rotate(0); }

.our-services__list__item__divider {
  margin: 1.5rem 0;
  width: auto;
  min-width: 30%;
  height: 3px;
  background-color: #7ed3b2;
  transition-property: min-width, background-color;
  transition-duration: 0.3s; }

.our-services__list__item:hover .our-services__list__item__divider {
  min-width: 50%;
  background-color: #7ed3b2; }

.our-service__modal {
  padding: 1.5rem;
  width: 100%;
  height: 25rem;
  box-sizing: border-box; }
  .our-service__modal__img {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center; }

.our-services__list__item {
  opacity: 1;
  transform: translate(0, 0);
  transition-property: opacity, transform;
  transition-duration: .6s;
  transition-timing-function: ease-out;
  transition-delay: .5s; }

.our-services--hidden .our-services__list__item {
  opacity: 0; }
  .our-services--hidden .our-services__list__item:nth-child(4n + 1) {
    transform: translateX(-50%); }
  .our-services--hidden .our-services__list__item:nth-child(4n + 2) {
    transform: translateY(-50%); }
  .our-services--hidden .our-services__list__item:nth-child(4n + 3) {
    transform: translateY(50%); }
  .our-services--hidden .our-services__list__item:nth-child(4n + 4) {
    transform: translateX(50%); }

.project-info__title {
  padding-right: 1.5rem;
  text-transform: uppercase; }

.project-info__href, .project-info__tags {
  margin-top: 1.5rem; }

.project-info__skills {
  margin-top: 2.25rem; }

.project-info__article {
  margin-top: 2.25rem; }
  .project-info__article__text {
    margin-top: 0.5rem; }

.our-projects {
  padding-left: calc((100% - 90rem)/2);
  padding-right: calc((100% - 90rem)/2); }
  .our-projects__list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 0.75rem; }
    .our-projects__list__item {
      flex: 0 1 100%; }

@media (min-width: 768px) {
  .our-projects__list {
    margin-top: 1.5rem; }
    .our-projects__list__item {
      flex: 0 1 calc(50% - 3rem); } }

@media (min-width: 1200px) {
  .our-projects__list__item {
    flex: 0 1 calc(33% - 3rem); } }

@media (min-width: 2000px) {
  .our-projects__list__item {
    flex: 0 1 calc(25% - 3rem); } }

.our-projects__list__item {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  margin: 0.75rem;
  height: 16rem;
  box-shadow: 0 0 13px -4px rgba(0, 0, 0, 0.17);
  background-color: white;
  overflow: hidden; }
  .our-projects__list__item__cover {
    width: 100%;
    flex: 0 1 11rem;
    height: 11rem;
    cursor: pointer;
    overflow: hidden; }
    .our-projects__list__item__cover__inner {
      height: 100%;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: top; }
  .our-projects__list__item__info {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.75rem; }
    .our-projects__list__item__info__title {
      cursor: pointer; }
    .our-projects__list__item__info__type {
      margin-top: 0.75rem; }
    .our-projects__list__item__info__btn {
      position: absolute;
      top: 1.5rem;
      right: 0.75rem;
      cursor: pointer; }

@media (min-width: 768px) {
  .our-projects__list__item {
    margin: 1.5rem;
    height: 25rem; }
    .our-projects__list__item__overlay {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding-top: 1.5rem;
      width: 100%;
      height: 100%;
      height: 17rem;
      text-align: center;
      box-sizing: border-box;
      background-color: rgba(255, 255, 255, 0.6);
      z-index: 10; }
      .our-projects__list__item__overlay__btn {
        padding-left: 1.5rem;
        padding-right: 1.5rem; }
    .our-projects__list__item__cover {
      position: relative;
      flex: 0 1 17rem;
      height: 17rem;
      overflow: hidden; }
    .our-projects__list__item__info {
      padding: 1.5rem;
      flex-direction: column-reverse; }
      .our-projects__list__item__info__title {
        margin-top: 0.75rem; } }

.our-projects__list__item {
  opacity: 1;
  transform: translate(0, 0);
  transition-property: opacity, transform;
  transition-duration: .6s;
  transition-timing-function: ease-out;
  transition-delay: .2s; }

.our-projects--hidden .our-projects__list__item {
  opacity: 0; }
  .our-projects--hidden .our-projects__list__item:nth-child(3n + 1) {
    transform: translateX(-50%); }
  .our-projects--hidden .our-projects__list__item:nth-child(3n + 2) {
    transform: translateY(50%); }
  .our-projects--hidden .our-projects__list__item:nth-child(3n + 3) {
    transform: translateX(50%); }

@media (min-width: 768px) {
  .our-projects__list__item__overlay {
    transform: translateY(100%);
    transition: 0.3s transform ease-out; }
  .our-projects__list__item__cover__inner {
    transition: 0.3s transform; }
  .our-projects__list__item:hover .our-projects__list__item__overlay {
    transform: translateY(0); }
  .our-projects__list__item:hover .our-projects__list__item__cover__inner {
    transform: scale(1.1); } }

.our-skills__list__item {
  display: flex;
  align-items: center;
  cursor: pointer; }
  .our-skills__list__item__main {
    display: flex;
    flex-direction: column;
    justify-content: center; }
    .our-skills__list__item__main__title {
      text-transform: uppercase; }
    .our-skills__list__item__main__text {
      margin-top: 0.5rem; }
  .our-skills__list__item--left .our-skills__list__item__main {
    margin-left: 0.75rem; }
  .our-skills__list__item--right {
    flex-direction: row-reverse; }
    .our-skills__list__item--right .our-skills__list__item__main {
      margin-right: 0.75rem; }
      .our-skills__list__item--right .our-skills__list__item__main__title, .our-skills__list__item--right .our-skills__list__item__main__text {
        text-align: right; }

.our-skills__list__item__icon {
  transition: .5s transform; }

.our-skills__list__item__main__title {
  transition: .5s transform; }

.our-skills__list__item__main__text {
  transition: .5s color, .5s transform; }

.our-skills__list__item:hover .our-skills__list__item__main__text {
  color: #ef6c57; }

.our-skills__list__item--left:hover .our-skills__list__item__icon {
  transform: translateX(-50%); }

.our-skills__list__item--left:hover .our-skills__list__item__main__title {
  transform: translateX(-0.5rem); }

.our-skills__list__item--left:hover .our-skills__list__item__main__text {
  transform: translateX(-0.75rem); }

.our-skills__list__item--right:hover .our-skills__list__item__icon {
  transform: translateX(50%); }

.our-skills__list__item--right:hover .our-skills__list__item__main__title {
  transform: translateX(0.5rem); }

.our-skills__list__item--right:hover .our-skills__list__item__main__text {
  transform: translateX(0.75rem); }

.our-skills {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 1.5rem;
  padding-left: calc((100% - 80rem)/2);
  padding-right: calc((100% - 80rem)/2);
  overflow: hidden; }
  .our-skills__list {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 0.75rem; }
    .our-skills__list__item {
      flex: 0 1 45%; }
    .our-skills__list__item + .our-skills__list__item {
      margin-top: 1rem; }
  .our-skills__cover {
    flex: 0 1 40%;
    margin: 0 1.5rem 0 2.25rem;
    height: 25rem;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat; }

@media (min-width: 768px) {
  .our-skills {
    flex-direction: row;
    align-items: center; }
    .our-skills__list {
      flex: 0 1 25%; }
      .our-skills__list__item {
        flex: 0 1 100%; } }

.our-skills__cover {
  transition: 1.2s transform ease-in; }

.our-skills__list__item__main {
  transition: .7s opacity .5s; }

.our-skills--hidden .our-skills__cover {
  transform: translateY(130%); }

.our-skills--hidden .our-skills__list__item__main {
  opacity: 0; }

.step-item__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 2.5rem;
  background-color: white;
  box-shadow: 0 0 13px -4px rgba(0, 0, 0, 0.17);
  border-radius: 5px; }
  .step-item__card__icon {
    align-self: center;
    padding: 0.75rem 0;
    width: 40%; }
    .step-item__card__icon .material-icons {
      display: flex;
      justify-content: center;
      align-items: center;
      padding-top: 0.75rem;
      padding-bottom: 0.75rem;
      padding-left: 1rem;
      padding-right: 1rem;
      font-size: 4.5rem; }
  .step-item__card__divider {
    margin-left: 1.66667rem;
    margin-right: 1.66667rem;
    height: 2px;
    box-sizing: border-box;
    border-top: 2px #1b1929 solid; }
  .step-item__card__text {
    flex: 1;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    margin-left: 1.66667rem;
    margin-right: 1.66667rem;
    text-align: center; }
  .step-item__card__title {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    font-size: 1.3rem;
    text-transform: uppercase;
    font-weight: 600;
    color: white;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px; }

@media (min-width: 768px) {
  .step-item__card__title {
    border-bottom-left-radius: 0px; }
  .step-item__card:before {
    content: '';
    position: absolute;
    bottom: -2.5rem;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 2.5rem 2.5rem 0; } }

.step-item__connector {
  position: absolute;
  top: 0.75rem;
  left: 1.5rem;
  display: flex;
  align-items: center; }
  .step-item__connector__order {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    font-size: 2rem;
    color: white;
    border: 0.5rem solid white;
    border-radius: 50%;
    box-sizing: border-box;
    box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
    background-color: #ef6c57; }
  .step-item__connector__line {
    display: none; }

@media (min-width: 768px) {
  .step-item__connector {
    position: static; }
    .step-item__connector__order {
      width: 5rem;
      height: 5rem;
      border: 0.7rem solid white; }
    .step-item__connector__line {
      position: relative;
      display: block;
      flex: 1;
      height: 0.6rem; }
      .step-item__connector__line:before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100%; } }

.step-item {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0 0.75rem;
  border-radius: 5px;
  box-sizing: border-box; }
  .step-item__card {
    flex: 0 1 18rem; }

@media (min-width: 768px) {
  .step-item {
    padding: 0; }
    .step-item__card {
      width: 85%; } }

.steps {
  display: flex;
  flex-direction: column;
  margin-top: 3rem;
  padding-left: calc((100% - 80rem)/2);
  padding-right: calc((100% - 80rem)/2); }
  .steps__item {
    flex: 0 1 calc((100%-5rem)/4);
    list-style: none; }
  .steps__check {
    display: none; }

@media (min-width: 768px) {
  .steps {
    display: flex;
    flex-direction: row; }
    .steps__check {
      position: relative;
      flex: 1 0 5rem;
      display: flex;
      align-self: flex-end;
      height: 5rem;
      font-size: 2rem;
      color: white;
      border: 0.7rem solid white;
      border-radius: 50%;
      box-sizing: border-box;
      box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0), 0 1px 18px 0 rgba(0, 0, 0, 0.12); }
      .steps__check:before, .steps__check:after {
        content: '';
        position: absolute;
        display: block;
        width: 0.4rem;
        border-radius: 10px;
        background-color: #eeeeee;
        transition-property: background-color;
        transition-duration: .5s; }
      .steps__check:before {
        top: 45%;
        left: 31%;
        height: 1.3rem;
        transform: rotateZ(-54deg);
        transition-delay: 3.2s; }
      .steps__check:after {
        top: 20%;
        right: 29%;
        height: 2rem;
        transform: rotateZ(36deg);
        transition-delay: 3.3s; }
  .steps--active .steps__check:before, .steps--active .steps__check:after {
    background-color: #54d98c; } }

.our-stats {
  display: flex;
  flex-wrap: wrap;
  padding-left: calc((100% - 70rem)/2);
  padding-right: calc((100% - 70rem)/2); }
  .our-stats__left {
    flex: 0 1 50%; }
  .our-stats__mid {
    flex: 0 1 50%; }
  .our-stats__right {
    flex: 1;
    display: inline-flex;
    margin-top: 1.5rem; }

@media (min-width: 992px) {
  .our-stats__left {
    align-self: flex-start;
    flex: 1 0 25%;
    width: 25%; }
  .our-stats__mid {
    margin-left: 3rem; }
  .our-stats__right {
    margin-top: 0;
    margin-left: 3rem; }
  .our-stats__mid, .our-stats__right {
    vertical-align: top;
    flex: 0 1 calc(35% - 3rem); } }

@media (min-width: 1200px) {
  .our-stats__left {
    align-self: flex-start;
    flex: 1 0 30%;
    width: 30%; }
  .our-stats__mid, .our-stats__right {
    vertical-align: top;
    flex: 0 1 calc(30% - 3rem); } }

.our-stats__left {
  display: inline-flex;
  justify-content: center;
  vertical-align: top; }
  .our-stats__left__number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600; }

.our-stats__mid {
  flex-direction: column;
  padding-top: 4rem; }
  .our-stats__mid__title {
    flex: 0 1 5rem;
    padding-left: 1.5rem;
    border-left: 5px solid #e0e0e0; }
  .our-stats__mid__text {
    margin-top: 0.75rem; }
  .our-stats__mid__btn {
    margin-top: 0.75rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem; }

@media (min-width: 768px) {
  .our-stats__mid {
    padding-top: 3rem; } }

.our-stats__right {
  position: relative;
  flex-wrap: wrap; }
  .our-stats__right__block {
    flex: 1 0 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 10rem; }
    .our-stats__right__block__text {
      margin-top: 0.75rem;
      text-transform: uppercase; }
  .our-stats__right:before, .our-stats__right:after {
    content: '';
    position: absolute;
    border-left: 2px solid #e0e0e0; }
  .our-stats__right:before {
    left: 50%;
    top: 0;
    bottom: 0; }
  .our-stats__right:after {
    top: 50%;
    left: 0;
    right: 0;
    border-top: 2px solid #e0e0e0; }

.our-partners {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  padding-left: calc((100% - 70rem)/2);
  padding-right: calc((100% - 70rem)/2); }
  .our-partners__item {
    position: relative;
    flex: 0 1 calc(50% - 1.5rem);
    margin: 0.75rem 0;
    height: 6rem;
    overflow: hidden; }
    .our-partners__item__inner {
      display: block;
      padding: 0.75rem;
      height: 100%;
      box-sizing: border-box; }
    .our-partners__item__logo {
      display: block;
      height: 100%;
      background-position: center;
      background-size: contain;
      background-repeat: no-repeat; }

@media (min-width: 768px) {
  .our-partners {
    margin-top: 3rem; }
    .our-partners__item {
      flex: 0 1 calc(25% - 4.5rem); } }

.our-partners__item {
  border: 1px solid #e0e0e0;
  transition: .3s border-color; }
  .our-partners__item__inner {
    border: 1px solid #e0e0e0;
    transition-property: border-color, transform;
    transition-duration: .5s; }
  .our-partners__item__logo {
    filter: grayscale(100%);
    transform: .5s filter; }
  .our-partners__item:hover {
    border-color: black; }
    .our-partners__item:hover .our-partners__item__inner {
      border-color: black;
      transform: scale(0.9); }
    .our-partners__item:hover .our-partners__item__logo {
      filter: grayscale(0); }

.our-partners__item {
  overflow: hidden; }
  .our-partners__item__logo {
    transform: translateY(0);
    transition-delay: .4s;
    transition-property: transform;
    transition-duration: .6s;
    transition-timing-function: ease-out; }

.our-partners--hidden .our-partners__item__logo {
  transform: translateY(150%); }

.quotes {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 3rem;
  padding-left: calc((100% - 100rem)/2);
  padding-right: calc((100% - 100rem)/2); }
  .quotes__item {
    position: relative;
    flex: 0 1 32%;
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.15));
    background: white;
    box-sizing: border-box; }
    .quotes__item:before {
      content: '';
      position: absolute;
      bottom: -2rem;
      left: 4.5rem;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 2rem 2rem 0 0;
      border-color: white transparent transparent transparent; }
    .quotes__item__inner {
      padding: 0.75rem;
      overflow: hidden; }
    .quotes__item__header {
      display: flex;
      height: 5rem; }
      .quotes__item__header__logo {
        flex: 0 1 5rem;
        border-radius: 50%;
        background-size: cover;
        background-position: center; }
      .quotes__item__header__main {
        display: flex;
        flex-direction: column;
        padding-left: 1.5rem;
        justify-content: center; }
        .quotes__item__header__main__title {
          margin-top: 0.75rem; }
    .quotes__item__text {
      margin-top: 1rem; }

@media (min-width: 768px) {
  .quotes {
    flex-direction: row;
    margin-top: 3rem;
    padding-bottom: 1.5rem; }
    .quotes__item__inner {
      padding: 2.25rem; } }

.quotes__item__header__logo {
  transition: .7s filter; }

.quotes__item__text {
  transition-property: transform;
  transition-duration: .7s;
  transition-timing-function: ease-out; }

.quotes__item:nth-child(n+2) .quotes__item__header__logo {
  transition-delay: .5s; }

.quotes__item:nth-child(n+2) .quotes__item__text {
  transition-delay: .5s; }

.quotes__item:nth-child(n+3) .quotes__item__logo {
  transition-delay: .9s; }

.quotes__item:nth-child(n+3) .quotes__item__text {
  transition-delay: .9s; }

.quotes--hidden .quotes__item__header__logo {
  filter: grayscale(100%); }

.quotes--hidden .quotes__item__text {
  transform: translateY(200%); }

.home__section__article {
  margin: 0 auto;
  text-align: center; }
  .home__section__article__title {
    margin-bottom: 0.75rem; }
  .home__section__article__text {
    padding: 0 0.75rem; }

.home__section:nth-child(2), .home__section:nth-child(5) {
  background-color: #F5F5F5; }

.home__section + .home__section {
  padding-top: 2.25rem;
  padding-bottom: 2.25rem; }
  .home__section + .home__section:last-child {
    padding-bottom: 0; }

@media (min-width: 768px) {
  .home__section__article {
    width: 40%; }
    .home__section__article__title {
      margin-bottom: 1.5rem; }
  .home__section:last-child {
    padding-bottom: 0; }
  .home__section + .home__section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem; }
    .home__section + .home__section:last-child {
      padding-bottom: 0; } }

.home__section__article__title, .home__section__article__text {
  opacity: 1;
  transform: translateX(0);
  transition-property: opacity, transform;
  transition-duration: .8s; }

.home__section__article--hidden .home__section__article__title, .home__section__article--hidden .home__section__article__text {
  opacity: 0; }

.home__section__article--hidden .home__section__article__title {
  transform: translateX(25%); }

.home__section__article--hidden .home__section__article__text {
  transform: translateX(-25%); }


