@import url("https://fonts.googleapis.com/css?family=Lato:700,900|Open+Sans:400,400i,700,800&display=swap");
@font-face {
  font-family: "Lemon Milk";
  src: url("../fonts/lemonmilk.otf") format("opentype");
}

@font-face {
  font-family: "Peace Sans";
  src: url("../fonts/peace_sans.otf") format("opentype");
}

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

html {
  scroll-behavior: smooth;
}

ul, ol {
  list-style-type: none;
}

/* Buttons */
.btn {
  display: block;
  color: #ffffff;
  background-color: #bc2e3a;
  font-family: 'Lato', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 25px;
  border-radius: 30px;
  -webkit-box-shadow: -2px 2px 20px rgba(0, 0, 0, 0.3);
          box-shadow: -2px 2px 20px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  -webkit-transition: color .3s, background-color .3s;
  transition: color .3s, background-color .3s;
}

.btn--secondary {
  color: #000000;
  background-color: #ffffff;
}

@media (min-width: 1024px) {
  .btn {
    font-size: 1rem;
    padding: 12px 30px;
  }
  .btn:hover {
    color: #ffffff;
    background-color: #000000;
  }
}

/* Text */
.heading {
  font-family: 'Peace Sans', sans-serif;
  font-size: 2.3rem;
  color: #494949;
  margin-bottom: 25px;
}

.subheading {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: #6f6f6e;
}

.text {
  font-size: 0.85rem;
  line-height: 150%;
  font-family: 'Open Sans', sans-serif;
  color: #6a6a6a;
}

@media (min-width: 1024px) {
  .heading {
    font-size: 3rem;
  }
  .subheading {
    font-size: 1.6rem;
  }
  .text {
    font-size: 0.9rem;
  }
}

@media (min-width: 1260px) {
  .heading {
    font-size: 3.5rem;
    margin-bottom: 40px;
  }
  .subheading {
    font-size: 1.7rem;
  }
  .text {
    font-size: 1rem;
  }
}

@media (min-width: 1600px) {
  .heading {
    font-size: 3.7rem;
  }
  .subheading {
    font-size: 1.8rem;
  }
  .text {
    font-size: 1.1rem;
  }
}

/* Other elements */
.square {
  background-color: #bc2e3a;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.square--secondary {
  background-color: #000000;
}

.wrapper {
  max-width: 1600px;
  margin: 0 auto;
  overflow: hidden;
}

.nav {
  position: fixed;
  top: 0;
  left: auto;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 1600px;
  padding: 10px 30px;
  z-index: 90;
  -webkit-transition: .4s;
  transition: .4s;
}

.nav.scrolled {
  background-color: rgba(0, 0, 0, 0.8);
}

.nav__logo {
  font-family: 'Lato', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  text-decoration: none;
  color: #ffffff;
}

.nav__burger {
  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;
  width: 32px;
  height: 24px;
  background-color: transparent;
  border: none;
  z-index: 99;
}

.nav__burger-line {
  width: 32px;
  height: 4px;
  background-color: #ffffff;
  border-radius: 3px;
  -webkit-transition: -webkit-transform .4s;
  transition: -webkit-transform .4s;
  transition: transform .4s;
  transition: transform .4s, -webkit-transform .4s;
}

.nav__burger.active .nav__burger-line:first-child {
  -webkit-transform: translateY(10px) rotate(225deg);
          transform: translateY(10px) rotate(225deg);
}

.nav__burger.active .nav__burger-line:nth-child(2) {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

.nav__burger.active .nav__burger-line:last-child {
  -webkit-transform: translateY(-10px) rotate(-225deg);
          transform: translateY(-10px) rotate(-225deg);
}

.nav__list {
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  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;
  width: 200px;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: -webkit-transform .4s;
  transition: -webkit-transform .4s;
  transition: transform .4s;
  transition: transform .4s, -webkit-transform .4s;
}

.nav__list.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.nav__overlay {
  position: fixed;
  top: 0;
  right: 0;
  -webkit-transform: translate(100%);
          transform: translate(100%);
  width: calc(100% - 200px);
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: -webkit-transform .4s;
  transition: -webkit-transform .4s;
  transition: transform .4s;
  transition: transform .4s, -webkit-transform .4s;
}

.nav__overlay.active {
  -webkit-transform: translate(0);
          transform: translate(0);
}

.nav__item {
  width: 100%;
}

.nav__item--logo {
  width: 100%;
  padding: 10px 0;
  text-align: center;
  color: #bc2e3a;
}

.nav__link {
  display: block;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 2.5em;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
}

.nav__icons {
  display: none;
}

@media (min-width: 768px) and (orientation: portrait) {
  .nav {
    padding: 18px 30px;
  }
  .nav__item--logo {
    padding: 18px 0;
  }
  .nav__logo {
    font-size: 2rem;
  }
  .nav__burger {
    width: 38px;
    height: 28px;
  }
  .nav__burger-line {
    width: 38px;
    height: 4px;
  }
  .nav__burger.active .nav__burger-line:first-child {
    -webkit-transform: translateY(12px) rotate(225deg);
            transform: translateY(12px) rotate(225deg);
  }
  .nav__burger.active .nav__burger-line:last-child {
    -webkit-transform: translateY(-12px) rotate(-225deg);
            transform: translateY(-12px) rotate(-225deg);
  }
  .nav__list {
    width: 300px;
  }
  .nav__overlay {
    width: calc(100% - 300px);
  }
  .nav__link {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) and (orientation: landscape) {
  .nav {
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    width: 100%;
    padding: 20px 30px;
  }
  .nav.scrolled {
    padding: 10px 30px;
  }
  .nav.scrolled .nav__logo {
    font-size: 1.8rem;
  }
  .nav.scrolled .nav__link {
    font-size: .9rem;
  }
  .nav.scrolled .nav__link::after {
    background-color: #bc2e3a;
  }
  .nav.scrolled .nav__icon {
    font-size: 1rem;
  }
  .nav__logo {
    font-size: 2.1rem;
    -webkit-transition: font-size .4s;
    transition: font-size .4s;
    padding-left: 20px;
  }
  .nav__item--logo, .nav__burger, .nav__overlay {
    display: none;
  }
  .nav__list {
    position: static;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 80%;
    height: auto;
    background-color: transparent;
    overflow: hidden;
    -webkit-overflow-scrolling: auto;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition: -webkit-transform 0s;
    transition: -webkit-transform 0s;
    transition: transform 0s;
    transition: transform 0s, -webkit-transform 0s;
  }
  .nav__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .nav__link {
    position: relative;
    line-height: normal;
    font-size: 1rem;
    -webkit-transition: font-size .4s;
    transition: font-size .4s;
    padding-bottom: 4px;
    overflow: hidden;
  }
  .nav__link::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
    border-radius: 50px;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
  }
  .nav__link:hover::after {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .nav__link.current::after {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .nav__icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .nav__icon {
    font-size: 1.1rem;
    margin-right: 15px;
    border: none;
    color: #ffffff;
    background-color: transparent;
    cursor: pointer;
    -webkit-transition: font-size .4s;
    transition: font-size .4s;
  }
}

@media (min-width: 1200px) {
  .nav__list {
    width: 60%;
  }
  .nav__logo {
    padding-left: 40px;
  }
}

.home {
  position: relative;
  height: 100vh;
  background-image: url(../images/home_mobile_red.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.home__heading-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url(../images/home_mobile_gray.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.home__heading {
  margin-top: 20%;
  margin-left: 10%;
  width: 80%;
  font-family: 'Lemon Milk', sans-serif;
  font-size: 3.2rem;
  text-align: center;
  text-transform: uppercase;
  line-height: .9;
}

.home__heading--small {
  display: block;
  font-size: .7em;
}

.home__img {
  position: absolute;
  top: 35%;
  left: 8%;
  max-width: 95%;
  background-image: radial-gradient(circle closest-side, rgba(255, 102, 115, 0.5), transparent);
  z-index: 1;
}

.home__btn {
  position: absolute;
  bottom: 8%;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  z-index: 2;
}

@media (min-width: 360px) and (orientation: portrait) {
  .home__heading {
    font-size: 4rem;
  }
}

@media (min-width: 768px) and (orientation: portrait) {
  .home {
    background-image: url(../images/home_tab_red.jpg);
  }
  .home__heading-wrapper {
    background-image: url(../images/home_tab_gray.jpg);
  }
  .home__heading {
    font-size: 7.5rem;
    margin-top: 12%;
  }
  .home__img {
    top: 32%;
    left: 10%;
    max-width: 85%;
  }
}

@media (min-width: 530px) and (orientation: landscape) {
  .home {
    background-image: url(../images/home_mobile_land_red.jpg);
  }
  .home__heading-wrapper {
    background-image: url(../images/home_mobile_land_gray.jpg);
  }
  .home__heading {
    margin-top: 16%;
    margin-left: 10%;
    width: 50%;
    font-size: 3.4rem;
  }
  .home__img {
    max-height: 100vh;
    top: 10%;
    left: auto;
    right: -4%;
  }
  .home__btn {
    bottom: 10%;
    left: 23%;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

@media (min-width: 640px) and (orientation: landscape) {
  .home__heading {
    margin-top: 14%;
    margin-left: 8%;
    font-size: 4.2rem;
  }
  .home__img {
    right: 0%;
  }
}

@media (min-width: 800px) and (orientation: landscape) {
  .home__heading {
    margin-top: 11%;
    margin-left: 6%;
    font-size: 5rem;
  }
  .home__img {
    top: 9%;
  }
}

@media (min-width: 1024px) and (orientation: landscape) {
  .home {
    background-image: url(../images/home_desktop_red.jpg);
  }
  .home__heading-wrapper {
    background-image: url(../images/home_desktop_gray.jpg);
  }
  .home__heading {
    margin-top: 20%;
    font-size: 7rem;
  }
  .home__img {
    right: -13%;
  }
  .home__btn {
    bottom: 10%;
  }
}

@media (min-width: 1250px) {
  .home__heading {
    margin-top: 15%;
    font-size: 8.5rem;
  }
  .home__img {
    top: 13%;
    right: -10%;
  }
  .home__btn {
    left: 25%;
  }
}

@media (min-width: 1250px) and (max-height: 800px) {
  .home__heading {
    margin-top: 13%;
  }
  .home__img {
    right: 0%;
  }
}

@media (min-width: 1440px) and (max-height: 800px) {
  .home__img {
    right: 7%;
  }
}

@media (min-width: 1600px) {
  .home {
    max-height: 900px;
  }
  .home__heading-wrapper {
    max-height: 900px;
  }
  .home__img {
    top: 10%;
    right: 8%;
  }
  .home__btn {
    left: 26%;
  }
}

.about {
  position: relative;
  overflow: hidden;
  padding: 50px 7%;
}

.about__wrapper {
  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;
}

.about__text {
  text-align: center;
  margin-bottom: 35px;
}

.about__square {
  position: absolute;
  width: 80vw;
  height: 80vw;
  top: 0;
  left: 130%;
  z-index: -1;
}

.about__img {
  display: none;
}

@media (min-width: 640px) {
  .about {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .about__wrapper {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    max-width: 50%;
  }
  .about__text {
    text-align: left;
    margin-left: 10px;
    margin-right: 10px;
  }
  .about__img {
    display: block;
    max-width: 50%;
  }
  .about__square {
    left: 100%;
  }
}

@media (min-width: 1024px) {
  .about {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 70px 7% 30px;
  }
  .about__img {
    max-width: 60%;
  }
  .about__square {
    width: 70vw;
    height: 70vw;
    left: 85%;
  }
}

@media (min-width: 1260px) {
  .about {
    padding: 100px 12% 60px;
  }
  .about__text {
    margin-right: 50px;
    margin-bottom: 60px;
  }
  .about__square {
    width: 65vw;
    height: 65vw;
    left: 80%;
  }
}

@media (min-width: 1600px) {
  .about__square {
    width: 60vw;
    max-width: 1000px;
    height: 60vw;
    max-height: 1000px;
  }
}

.services {
  position: relative;
  background-color: #f5f5f5;
  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;
  padding: 50px 7% 20px;
}

.service {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 30px;
}

.service__img-wrapper {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #bc2e3a;
  margin-right: 15px;
}

.service__img {
  position: absolute;
  display: block;
  width: 45%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.service__title {
  line-height: 50px;
}

.services__square {
  display: none;
}

@media (min-width: 640px) {
  .services__wrapper {
    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;
  }
  .service {
    -ms-flex-preferred-size: 47%;
        flex-basis: 47%;
  }
}

@media (min-width: 1024px) {
  .services {
    padding: 70px 7% 20px;
  }
  .services__heading {
    margin-bottom: 40px;
  }
  .service {
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
    margin-bottom: 80px;
  }
  .services__square {
    display: block;
    position: absolute;
    width: 8vw;
    height: 8vw;
    top: 50%;
    left: -2%;
  }
}

@media (min-width: 1260px) {
  .services {
    padding: 100px 12% 40px;
  }
  .services__heading {
    margin-bottom: 60px;
  }
  .service__img-wrapper {
    width: 65px;
    height: 65px;
  }
  .service__title {
    line-height: 60px;
  }
  .services__square {
    left: 0%;
    max-width: 150px;
    max-height: 150px;
  }
}

.process {
  position: relative;
  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;
  padding: 50px 7%;
}

.process__text {
  text-align: center;
}

.process__images-wrapper {
  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;
  width: 100%;
  margin: 30px 0;
}

.process__image-wrapper {
  position: relative;
  width: 80%;
  height: 150px;
  -webkit-box-shadow: 2px 5px 20px rgba(0, 0, 0, 0.4);
          box-shadow: 2px 5px 20px rgba(0, 0, 0, 0.4);
  -webkit-transform: skewX(-20deg);
          transform: skewX(-20deg);
  overflow: hidden;
  margin-bottom: 15px;
  z-index: 2;
}

.process__image-wrapper::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.process__image {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 200%;
  -webkit-transform: translate(-50%, -50%) skewX(20deg);
          transform: translate(-50%, -50%) skewX(20deg);
}

.process__text-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: left;
  color: #ffffff;
  z-index: 1;
}

.process__name, .process__number {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 180%;
  text-transform: uppercase;
  letter-spacing: 1px;
  -webkit-transform: skewX(20deg);
          transform: skewX(20deg);
  margin-left: 17%;
}

.process__number {
  position: absolute;
  top: 0;
  right: 5%;
  font-size: 1.8rem;
  color: #ffffff;
  z-index: 1;
}

.process__desc {
  -webkit-transform: skewX(20deg);
          transform: skewX(20deg);
  color: #ffffff;
  display: none;
}

@media (min-width: 530px) {
  .process__images-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .process__image-wrapper {
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
  }
}

@media (min-width: 1024px) {
  .process {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 70px 7% 170px;
  }
  .process__text {
    width: 27%;
    text-align: left;
    margin-top: 20px;
    margin-bottom: 40px;
  }
  .process__images-wrapper {
    position: absolute;
    top: 32%;
    left: 35%;
    width: 70%;
    margin: 0;
  }
  .process__image-wrapper {
    height: 220px;
    margin-bottom: 0;
  }
  .process__image-wrapper:hover::after {
    background-color: rgba(66, 66, 64, 0.7);
  }
  .process__image-wrapper:hover .process__text-wrapper {
    -webkit-transform: translateY(-80%);
            transform: translateY(-80%);
  }
  .process__image-wrapper::after {
    -webkit-transition: background-color .4s;
    transition: background-color .4s;
  }
  .process__text-wrapper {
    top: calc(100% - 50px);
    left: 0;
    bottom: auto;
    -webkit-transition: -webkit-transform .4s;
    transition: -webkit-transform .4s;
    transition: transform .4s;
    transition: transform .4s, -webkit-transform .4s;
  }
  .process__name {
    font-size: 1.8rem;
    margin-left: 10%;
  }
  .process__number {
    font-size: 2rem;
  }
  .process__desc {
    display: block;
    margin-left: 20%;
    padding-right: 30px;
  }
  .process__square-left {
    position: absolute;
    top: 100%;
    left: 0%;
    width: 15vw;
    height: 15vw;
    z-index: 1;
  }
  .process__square-right {
    position: absolute;
    top: 50%;
    left: 105%;
    width: 60vw;
    height: 60vw;
    z-index: 1;
  }
}

@media (min-width: 1260px) {
  .process {
    padding: 100px 12% 200px;
  }
  .process__images-wrapper {
    top: 36%;
  }
  .process__desc {
    margin-left: 16%;
  }
  .process__square-right {
    width: 55vw;
    height: 55vw;
  }
}

@media (min-width: 1800px) {
  .process__square-right {
    left: 115%;
  }
}

@media (min-width: 2500px) {
  .process__square-left {
    width: 12vw;
    height: 12vw;
  }
  .process__square-right {
    width: 48vw;
    height: 48vw;
    left: 120%;
  }
}

.team {
  --img-wrapper-size: 60vw;
  background-color: #f5f5f5;
  padding-bottom: 30px;
}

.team__heading {
  text-align: center;
  padding: 50px 20px 0;
}

.team__carousel-wrapper {
  position: relative;
  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;
  height: calc(var(--img-wrapper-size)*1.6);
  max-height: 730px;
}

.team__carousel-item {
  position: absolute;
  -webkit-transition: opacity .6s, -webkit-transform .6s;
  transition: opacity .6s, -webkit-transform .6s;
  transition: transform .6s, opacity .6s;
  transition: transform .6s, opacity .6s, -webkit-transform .6s;
}

.item--middle {
  -webkit-transform: translateX(0) scale(1);
          transform: translateX(0) scale(1);
  opacity: 1;
  z-index: 1;
}

.item--middle .team__person-job-wrapper {
  opacity: 1;
}

.item--left {
  -webkit-transform: translateX(-90%) scale(0.7);
          transform: translateX(-90%) scale(0.7);
  opacity: .7;
}

.item--left .team__person-job-wrapper {
  opacity: 0;
}

.item--right {
  -webkit-transform: translateX(90%) scale(0.7);
          transform: translateX(90%) scale(0.7);
  opacity: .7;
}

.item--right .team__person-job-wrapper {
  opacity: 0;
}

.item--hidden {
  -webkit-transform: translateX(0) scale(0);
          transform: translateX(0) scale(0);
  opacity: 0;
}

.team__img-wrapper {
  position: relative;
  width: var(--img-wrapper-size);
  height: var(--img-wrapper-size);
  max-width: 400px;
  max-height: 400px;
  border: 12px solid #ffffff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  overflow: hidden;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.team__img {
  width: 145%;
  position: absolute;
  top: -25%;
  left: -25%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.team__desc-wrapper {
  position: relative;
  left: 10%;
  text-align: center;
  color: #ffffff;
}

.team__person-name-wrapper {
  width: 80%;
  background-color: #252525;
  -webkit-transform: skew(35deg);
          transform: skew(35deg);
}

.team__person-name {
  font-family: 'Open Sans';
  font-weight: 700;
  font-size: 1rem;
  line-height: 2em;
  -webkit-transform: skew(-35deg);
          transform: skew(-35deg);
}

.team__person-job-wrapper {
  position: absolute;
  top: 90%;
  left: 42%;
  padding: 0 10%;
  background-color: #bc2e3a;
  -webkit-transform: skew(35deg) translateX(-50%);
          transform: skew(35deg) translateX(-50%);
  -webkit-transition: opacity .6s;
  transition: opacity .6s;
}

.team__person-job {
  display: block;
  font-family: 'Open Sans';
  font-style: italic;
  font-size: .9rem;
  line-height: 1.5em;
  -webkit-transform: skew(-35deg);
          transform: skew(-35deg);
}

.team__prev-arrow, .team__next-arrow {
  display: none;
}

@media (min-width: 530px) {
  .team {
    --img-wrapper-size: 32vw;
  }
}

@media (min-width: 1024px) {
  .team__heading {
    padding: 70px 20px 0;
  }
  .team {
    --img-wrapper-size: 25vw;
  }
  .team__prev-arrow, .team__next-arrow {
    display: block;
    position: absolute;
    top: 50%;
    left: 7%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: none;
    border-top: 40px solid transparent;
    border-bottom: 40px solid transparent;
    border-right: 40px solid #424240;
    background-color: transparent;
    cursor: pointer;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
  }
  .team__prev-arrow:hover, .team__next-arrow:hover {
    opacity: .8;
  }
  .team__next-arrow {
    top: 50%;
    right: 7%;
    left: auto;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    border-right: none;
    border-left: 40px solid #424240;
  }
}

@media (min-width: 1260px) {
  .team__heading {
    padding: 100px 20px 0;
  }
  .team {
    --img-wrapper-size: 23vw;
  }
  .team__img-wrapper {
    border: 15px solid #ffffff;
  }
  .team__person-name {
    font-size: 1.5rem;
  }
  .team__person-job {
    font-size: 1.3rem;
    line-height: 1.5em;
  }
  .team__prev-arrow, .team__next-arrow {
    border-width: 60px;
  }
}

.clients {
  position: relative;
  padding: 50px 7% 70px;
}

.clients__heading {
  text-align: center;
  margin-bottom: 50px;
}

.clients__content-wrapper {
  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;
  margin: 0 auto;
}

.clients__main-img-wrapper {
  position: relative;
  width: 40vw;
  height: 40vw;
  border: 8px solid #ffffff;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #ffffff;
  z-index: 2;
}

.clients__main-img {
  position: absolute;
  width: 150%;
  top: -25%;
  left: -25%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.clients__main-img.active {
  -webkit-animation: switch .4s;
          animation: switch .4s;
}

@-webkit-keyframes switch {
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes switch {
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.clients__quotes-wrapper {
  position: relative;
  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;
}

.clients__quote {
  position: relative;
  font-style: italic;
  text-align: center;
  margin: 40px 0;
  height: 150px;
}

.clients__quote.active {
  -webkit-animation: switch .4s;
          animation: switch .4s;
}

.clients__quote::before {
  position: absolute;
  top: -2em;
  left: -0.5em;
  width: 28px;
  height: 28px;
  content: '';
  background: url("../images/quote.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.clients__quote-author {
  display: block;
  font-style: normal;
  font-weight: 700;
  margin-top: 10px;
}

.clients__thumbnails {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 80%;
}

.clients__img-wrapper {
  position: relative;
  width: 50px;
  height: 50px;
  border: 4px solid #ffffff;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  cursor: pointer;
}

.clients__img-wrapper.active {
  border-color: #bc2e3a;
}

.clients__small-img {
  position: absolute;
  width: 150%;
  top: -25%;
  left: -25%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.clients__square-right, .clients__square-left {
  display: none;
}

@media (min-width: 530px) {
  .clients__heading {
    text-align: left;
    margin-bottom: 20px;
    text-indent: 10%;
  }
  .clients__content-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 90%;
  }
  .clients__main-img-wrapper {
    width: 25vw;
    height: 25vw;
  }
  .clients__quotes-wrapper {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .clients__quote {
    text-align: left;
  }
  .clients__quote::before {
    top: -0.7em;
    left: -3em;
  }
  .clients__thumbnails {
    width: 100%;
  }
  .clients__square-right {
    display: block;
    position: absolute;
    top: 0;
    left: 100%;
    width: 30vw;
    height: 30vw;
    z-index: -1;
  }
  .clients__square-left {
    display: block;
    position: absolute;
    top: 55%;
    left: 0;
    width: 40vw;
    height: 40vw;
    z-index: 1;
  }
}

@media (min-width: 768px) {
  .clients__main-img-wrapper {
    width: 20vw;
    height: 20vw;
  }
  .clients__quotes-wrapper {
    -ms-flex-preferred-size: 60%;
        flex-basis: 60%;
  }
  .clients__thumbnails {
    width: 65%;
  }
}

@media (min-width: 1024px) {
  .clients {
    padding: 70px 7%;
  }
  .clients__content-wrapper {
    width: 85%;
    margin: 50px auto;
  }
  .clients__main-img-wrapper {
    border-width: 12px;
    width: 22vw;
    height: 22vw;
    margin-left: -5%;
  }
  .clients__quotes-wrapper {
    -ms-flex-preferred-size: 60%;
        flex-basis: 60%;
  }
  .clients__quote {
    margin: 70px 0;
  }
  .clients__quote::before {
    top: -1em;
    left: -3.5em;
    width: 40px;
    height: 40px;
  }
  .clients__quote-author {
    margin-top: 20px;
  }
  .clients__thumbnails {
    width: 65%;
  }
  .clients__square-left {
    width: 45vw;
    height: 45vw;
  }
}

@media (min-width: 1260px) {
  .clients {
    padding: 100px 7%;
  }
  .clients__heading {
    margin-bottom: 100px;
    text-indent: 15%;
  }
  .clients__content-wrapper {
    width: 75%;
  }
  .clients__quote::before {
    top: -1.6em;
    left: -4.5em;
    width: 60px;
    height: 60px;
  }
  .clients__square-left {
    left: -2%;
  }
  .clients__main-img-wrapper {
    border-width: 15px;
    width: 18vw;
    height: 18vw;
  }
  .clients__thumbnails {
    width: 50%;
  }
}

@media (min-width: 1600px) {
  .clients__heading {
    margin-bottom: 130px;
  }
  .clients__quotes-wrapper {
    -ms-flex-preferred-size: 55%;
        flex-basis: 55%;
  }
  .clients__main-img-wrapper {
    max-width: 370px;
    max-height: 370px;
  }
  .clients__square-left {
    max-width: 720px;
    max-height: 720px;
  }
  .clients__square-right {
    max-width: 460px;
    max-height: 460px;
  }
}

.contact {
  position: relative;
  background-image: url("../images/contact_bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 7%;
  overflow: hidden;
}

.contact__heading {
  color: #9f9f9f;
  text-align: center;
}

.contact__items-wrapper {
  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;
}

.contact__item {
  width: 65%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}

.contact__icon {
  margin: 0 20px;
}

.contact__info {
  font-family: 'Open Sans';
  color: #ffffff;
  font-style: normal;
}

.contact__name {
  display: block;
  font-weight: 700;
  font-size: 1em;
  margin-bottom: 3%;
}

.contact__text {
  display: block;
  font-size: 0.85em;
}

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

.contact__social-link {
  font-size: 1.2rem;
  color: #ffffff;
  margin-right: 5%;
}

.contact__social-link:last-child {
  margin-right: 0;
}

.contact__footer {
  position: relative;
  color: #ffffff;
  font-family: 'Open Sans';
  font-size: 0.85em;
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
}

.contact__footer::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 1px;
  top: 0;
  left: 0;
  background-color: #9f9f9f;
}

.contact__square {
  display: none;
}

@media (min-width: 530px) {
  .contact__item {
    width: 40%;
  }
}

@media (min-width: 730px) {
  .contact__items-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .contact__item {
    width: auto;
  }
  .contact__footer::before {
    width: 65%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@media (min-width: 1024px) {
  .contact {
    padding: 70px 7% 50px;
  }
  .contact__square {
    display: block;
    position: absolute;
    width: 20vw;
    height: 20vw;
    top: 105%;
    left: 93%;
    max-width: 205px;
    max-height: 205px;
  }
  .contact__item {
    margin: 30px 0 80px;
  }
  .contact__social-link {
    font-size: 1.5rem;
    margin-right: 3%;
    -webkit-transition: color .3s;
    transition: color .3s;
  }
  .contact__social-link:hover {
    color: #bc2e3a;
  }
  .contact__footer::before {
    width: 50%;
  }
}

@media (min-width: 1260px) {
  .contact {
    padding: 100px 12% 60px;
  }
  .contact__icon {
    margin: 0 40px;
  }
  .contact__icon--bigger {
    width: 50px;
  }
  .contact__info {
    font-size: 1.2rem;
  }
}
/*# sourceMappingURL=style.css.map */