/* media queries */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
  color: #333;
  font-size: 14px; }
  @media (min-width: 600px) {
    * {
      font-size: 16px; } }

html {
  scroll-behavior: smooth; }

button {
  border: none;
  background: none;
  font-size: inherit;
  cursor: pointer; }

a, a:hover, a:active, a:visited {
  color: inherit;
  text-decoration: none; }

input {
  font-size: inherit; }

ul {
  list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-size: 1rem; }

.fs-karla {
  font-family: 'Karla', sans-serif; }

.fs-montserrat {
  font-family: 'Montserrat', sans-serif; }

.fs-zero {
  font-size: 0; }

.fs-huge {
  font-size: 1.7rem; }

.fs-extra-large {
  font-size: 1.5rem; }

.fs-large {
  font-size: 1.2rem; }

.fs-regular {
  font-size: 1rem; }

.fs-small {
  font-size: 0.8rem; }

.fs-extra-small {
  font-size: 0.7rem; }

/* FLEX */
.flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }

.flex-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.flex-one {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1; }

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

.justify-center {
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center; }

.justify-between {
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between; }

.justify-around {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around; }

.align-center {
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center; }

.flex-center {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center; }

.flex-between {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center; }

.flex-around {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center; }

.container {
  max-width: 1200px;
  margin: 0 auto; }

.overlay {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.38); }

.sr-only {
  font-size: 0; }

.text-center {
  text-align: center; }

.text-right {
  text-align: right; }

.no-shadow {
  box-shadow: none !important; }

.uppercase {
  text-transform: uppercase; }

.hidden {
  display: none !important; }

.ec-input, .ec-textarea {
  padding: 10px;
  border: 1px solid #3b5b7b;
  border-radius: 2px;
  width: 100%;
  margin-bottom: 15px;
  background-color: #fff; }

.ec-textarea {
  resize: none; }

.ec-input::-webkit-input-placeholder,
.ec-textarea::-webkit-input-placeholder {
  font-size: 10px;
  color: #3b5b7b; }

.ec-input:-ms-input-placeholder,
.ec-textarea:-ms-input-placeholder {
  font-size: 10px;
  color: #3b5b7b; }

.ec-input::placeholder,
.ec-textarea::placeholder {
  font-size: 10px;
  color: #3b5b7b; }

.ec-logo {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 980;
  height: 50px;
  width: 140px;
  background-image: url("../assets/logo.svg");
  background-repeat: no-repeat; }

.ec-logo-menu {
  top: 50px !important; }

.ec-menu-icon__wrapper {
  position: fixed;
  top: 15px;
  right: 15px;
  height: 50px;
  width: 50px;
  padding: 25px 15px;
  z-index: 999;
  background-color: #fff;
  box-shadow: 0px 0px 15px 2px rgba(0, 0, 0, 0.05);
  cursor: pointer; }

.ec-menu-icon__wrapper:hover .ec-menu-icon {
  width: 20px; }
  .ec-menu-icon__wrapper:hover .ec-menu-icon:after, .ec-menu-icon__wrapper:hover .ec-menu-icon:before {
    width: 20px; }

.ec-menu-icon__wrapper.is-open {
  box-shadow: none; }

.ec-menu-icon__wrapper.is-open .ec-menu-icon {
  width: 0; }
  .ec-menu-icon__wrapper.is-open .ec-menu-icon:before {
    width: 20px;
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg); }
  .ec-menu-icon__wrapper.is-open .ec-menu-icon:after {
    width: 20px;
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg); }

.ec-menu-icon {
  height: 3px;
  width: 12px;
  background-color: #3B5B7B;
  position: relative;
  transition: .2s ease-out; }
  .ec-menu-icon:before, .ec-menu-icon:after {
    content: '';
    position: absolute;
    background-color: #3B5B7B;
    height: 3px;
    transition: .2s ease-out; }
  .ec-menu-icon:before {
    width: 16px;
    top: -7px; }
  .ec-menu-icon:after {
    width: 20px;
    bottom: -7px; }

.ec-menu-content {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 100px 15px 20px 15px;
  position: fixed;
  top: -350px;
  overflow: hidden;
  width: 100%;
  height: 350px;
  z-index: 998;
  background-color: #fff; }

.ec-menu-content.is-open {
  top: 0;
  height: 400px; }

.ec-menu-item {
  -webkit-transform: translate(0%, -100%);
  -ms-transform: translate(0%, -100%);
  transform: translate(0%, -100%);
  opacity: 0;
  padding-bottom: 10px;
  padding-right: 10px;
  text-align: right; }
  .ec-menu-item a {
    font-size: 1.2rem;
    width: 160px;
    display: inline-block;
    padding: 5px 10px;
    position: relative; }
    .ec-menu-item a:before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      height: 100%;
      width: 0;
      background: rgba(0, 0, 0, 0.05);
      transition: .2s ease; }
  .ec-menu-item a:hover:before {
    width: 100%; }

.ec-menu-social-wrapper {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

.ec-menu-social {
  -webkit-transform: translate(0%, -100%);
  -ms-transform: translate(0%, -100%);
  transform: translate(0%, -100%);
  opacity: 0;
  margin: 10px;
  padding: 5px; }

.ec-overlay {
  position: fixed;
  z-index: 800;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  display: none;
  transition: opacity .3s ease; }

.ec-overlay.is-shown {
  top: 100px;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1; }

@media (min-width: 600px) {
  .ec-logo {
    height: 70px;
    width: 180px;
    top: 25px;
    left: 30px; }
  .ec-menu-icon__wrapper {
    top: 25px;
    right: 40px; }
  .ec-menu-content {
    padding: 100px 80px 20px 15px; }
  .ec-menu-item a {
    font-size: 1.5rem; }
  .ec-menu-social-wrapper {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row; } }

@media (min-width: 900px) {
  .ec-logo {
    height: 90px;
    width: 220px; } }

.first-section {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  min-height: 480px; }

.header-text {
  position: absolute;
  left: -15%;
  top: 100px;
  z-index: 1;
  max-width: 400px;
  text-align: center;
  margin-right: 50px;
  margin-bottom: 30px;
  background-color: rgba(255, 255, 255, 0.6); }

.header-big-text span {
  font-size: 2.2rem;
  font-weight: 600; }

.header-small-text {
  margin-top: 20px; }

.header-small-text a {
  font-size: 1.4rem; }

.header-image {
  width: 80vw;
  height: 300px;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  background: url("../assets/images/home.jpg") no-repeat;
  background-size: cover; }

.header-social-container {
  position: absolute;
  top: 260px;
  left: 20px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }
  .header-social-container:before {
    content: '';
    height: 40px;
    width: 2px;
    margin-left: 15px;
    margin-bottom: 10px;
    background: #333; }
  .header-social-container:after {
    content: '';
    height: 15px;
    width: 2px;
    margin-left: 15px;
    margin-top: 10px;
    background: #333; }

.header-social {
  width: 35px;
  height: 30px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0;
  margin: 5px 0; }
  .header-social:hover .header-social-text {
    -webkit-transform: rotate3d(1, 0, 0, 0deg);
    transform: rotate3d(1, 0, 0, 0deg); }

.header-social-text {
  position: absolute;
  left: 40px;
  transition: .3s ease;
  -webkit-transform: rotate3d(1, 0, 0, 90deg);
  transform: rotate3d(1, 0, 0, 90deg); }

.header-services-anchor {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 445px;
  right: 15px; }
  .header-services-anchor:before {
    content: '';
    height: 2px;
    width: 15px;
    margin-right: 10px;
    margin-top: 10px;
    background: #333; }
  .header-services-anchor:after {
    content: '';
    height: 2px;
    width: 40px;
    margin-left: 10px;
    margin-top: 10px;
    background: #333; }

@media (min-width: 600px) {
  .first-section {
    height: 100vh; }
  .header-text {
    left: -20%;
    top: 140px;
    max-width: 500px; }
  .header-big-text span {
    font-size: 4rem; }
  .header-small-text {
    margin-top: 20px; }
  .header-small-text a {
    font-size: 2rem; }
  .header-image {
    width: 70vw;
    height: 80vh; }
  .header-social-container {
    top: initial;
    bottom: 40px; }
    .header-social-container:before {
      height: 80px; }
    .header-social-container:after {
      height: 30px; }
  .header-social {
    width: 35px;
    height: 35px; }
  .header-services-anchor {
    top: initial;
    bottom: 35px;
    right: 35px; }
    .header-services-anchor:before {
      width: 30px; }
    .header-services-anchor:after {
      width: 80px; } }

.second-section {
  padding: 15px; }

.ec-services-message {
  font-size: 2.2rem;
  padding: 70px 15px;
  text-align: center;
  position: relative; }
  .ec-services-message:before {
    content: '';
    background: url("../assets/images/bg-circular.svg") no-repeat center center;
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.3;
    -webkit-animation: glob 75s;
    animation: glob 75s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear; }

@-webkit-keyframes glob {
  0% {
    -webkit-transform: scale(0.3) rotate(90deg) skewY(5deg) skewX(-5deg);
    transform: scale(0.3) rotate(90deg) skewY(5deg) skewX(-5deg); }
  20% {
    -webkit-transform: scale(0.5) rotate(180deg) skewY(10deg) skewX(-10deg);
    transform: scale(0.5) rotate(180deg) skewY(10deg) skewX(-10deg); }
  40% {
    -webkit-transform: scale(0.7) rotate(270deg) skewY(15deg) skewX(-5deg);
    transform: scale(0.7) rotate(270deg) skewY(15deg) skewX(-5deg); }
  60% {
    -webkit-transform: scale(0.9) rotate(360deg) skewY(10deg) skewX(0deg);
    transform: scale(0.9) rotate(360deg) skewY(10deg) skewX(0deg); }
  80% {
    -webkit-transform: scale(0.6) rotate(270deg) skewY(5deg) skewX(5deg);
    transform: scale(0.6) rotate(270deg) skewY(5deg) skewX(5deg); }
  100% {
    -webkit-transform: scale(0.4) rotate(180deg) skewY(0deg) skewX(10deg);
    transform: scale(0.4) rotate(180deg) skewY(0deg) skewX(10deg); } }

@keyframes glob {
  0% {
    -webkit-transform: scale(0.3) rotate(90deg) skewY(5deg) skewX(-5deg);
    transform: scale(0.3) rotate(90deg) skewY(5deg) skewX(-5deg); }
  20% {
    -webkit-transform: scale(0.5) rotate(180deg) skewY(10deg) skewX(-10deg);
    transform: scale(0.5) rotate(180deg) skewY(10deg) skewX(-10deg); }
  40% {
    -webkit-transform: scale(0.7) rotate(270deg) skewY(15deg) skewX(-5deg);
    transform: scale(0.7) rotate(270deg) skewY(15deg) skewX(-5deg); }
  60% {
    -webkit-transform: scale(0.9) rotate(360deg) skewY(10deg) skewX(0deg);
    transform: scale(0.9) rotate(360deg) skewY(10deg) skewX(0deg); }
  80% {
    -webkit-transform: scale(0.6) rotate(270deg) skewY(5deg) skewX(5deg);
    transform: scale(0.6) rotate(270deg) skewY(5deg) skewX(5deg); }
  100% {
    -webkit-transform: scale(0.4) rotate(180deg) skewY(0deg) skewX(10deg);
    transform: scale(0.4) rotate(180deg) skewY(0deg) skewX(10deg); } }

.services-wrapper {
  margin-top: 50px; }

.service-card {
  width: 240px;
  height: 200px;
  margin: 0 auto 40px;
  position: relative; }

.reduce-service-btn {
  bottom: 15px;
  right: 15px;
  width: 90px;
  height: 25px;
  position: absolute;
  cursor: pointer;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center; }
  .reduce-service-btn:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 690; }

.service-close-text {
  padding-right: 10px;
  display: none; }

.service-toggle-icon {
  height: 20px;
  width: 20px;
  position: relative;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  transition: .3s ease;
  z-index: 600; }
  .service-toggle-icon:before {
    content: '';
    width: 2px;
    height: 20px;
    background: #3b5b7b;
    position: absolute;
    left: 10px;
    margin-left: -1px; }
  .service-toggle-icon:after {
    content: '';
    width: 20px;
    height: 2px;
    background: #3b5b7b;
    position: absolute;
    top: 10px;
    margin-top: -1px; }

.service-card-content {
  width: 235px;
  height: 200px;
  padding: 15px;
  background: #fff;
  transition: .3s ease-in-out;
  z-index: 700;
  box-shadow: 0px 0px 15px 2px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden; }
  .service-card-content:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 700; }

.service-card__image {
  height: 60px;
  width: 60px; }

.service-card__title {
  font-family: 'Karla', sans-serif;
  font-size: 1.3rem;
  margin: 15px 0; }

.service-card__description {
  opacity: 0; }

.service-card__top-asset {
  display: none;
  position: absolute;
  top: -90px;
  right: -90px;
  background: #3b5b7b;
  height: 40px;
  width: 100px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: center right;
  -ms-transform-origin: center right;
  transform-origin: center right; }
  .service-card__top-asset:before {
    content: '';
    height: 30px;
    width: 130px;
    background: #e7ad4a;
    position: absolute;
    top: -30px;
    left: 10px; }
  .service-card__top-asset:after {
    content: '';
    height: 30px;
    width: 130px;
    background: #cb9141;
    position: absolute;
    left: 40px;
    bottom: -30px; }

.service-card__bottom-asset {
  display: none;
  position: absolute;
  bottom: -120px;
  left: -90px;
  background: #3b5b7b;
  height: 40px;
  width: 100px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: center left;
  -ms-transform-origin: center left;
  transform-origin: center left; }
  .service-card__bottom-asset:before {
    content: '';
    height: 30px;
    width: 130px;
    background: #e7ad4a;
    position: absolute;
    top: -30px;
    left: -10px; }
  .service-card__bottom-asset:after {
    content: '';
    height: 30px;
    width: 130px;
    background: #cb9141;
    position: absolute;
    left: 15px;
    bottom: -30px; }

@media (min-width: 600px) {
  .services-line {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; } }

@media (min-width: 900px) {
  .second-section {
    width: 100vw;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }
  .ec-services-message {
    width: 40%;
    padding: 200px 25px 100px; }
  .services-wrapper {
    margin-top: 100px;
    width: 60%; }
  .services-line {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap; }
  .service-card {
    margin-right: 15px;
    margin-bottom: 0; }
    .service-card:nth-child(1) {
      margin-top: 15px; }
    .service-card:nth-child(2) {
      margin-top: -45px; }
    .service-card:nth-child(3) {
      margin-top: -100px; }
    .service-card:last-child {
      margin-right: none; } }

.ec-message {
  background: #3b5b7b;
  width: 80%;
  max-width: 900px;
  margin: 50px auto;
  color: #fff;
  padding: 40px 20px;
  font-size: 1.5rem;
  text-align: center;
  position: relative; }

.ec-message--top-asset {
  position: absolute;
  border: 10px solid #e7ad4a;
  border-left-color: transparent;
  border-bottom-color: transparent;
  height: 75px;
  width: 200px;
  top: -20px;
  right: -20px; }

.ec-message--bottom-asset {
  position: absolute;
  border: 10px solid #cb9141;
  border-top-color: transparent;
  border-right-color: transparent;
  height: 75px;
  width: 200px;
  bottom: -20px;
  left: -20px; }

.third-section {
  min-height: 100vh;
  min-width: 100vw;
  padding: 20px 30px 50px; }

.contact-wrapper {
  margin: 0 auto;
  background-image: radial-gradient(#ccc 7%, transparent 0), radial-gradient(#ccc 7%, transparent 0);
  background-size: 20px 20px;
  background-position: 0 0, 20px 20px;
  padding-top: 30px; }

.contact-form-text {
  font-size: 1.7rem;
  margin-bottom: 15px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }
  .contact-form-text:after {
    content: '';
    height: 2px;
    width: 140px;
    background: #3b5b7b;
    margin-top: 35px;
    margin-left: 10px; }

.ec-contact-button {
  background-color: #e7ad4a;
  padding: 10px 20px;
  width: 250px;
  margin: 0 auto 30px;
  display: block; }

.contact-info-wrapper {
  width: 290px;
  height: 370px;
  margin: 0 auto;
  position: relative; }

.contact-info {
  padding: 25px;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 11;
  text-align: center;
  background: url("../assets/images/betim.png") no-repeat;
  background-size: cover;
  box-shadow: -5px 5px 25px 0px rgba(0, 0, 0, 0.12); }
  .contact-info:before {
    content: '';
    background: rgba(250, 250, 250, 0.8);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1; }

.contact-info-icon {
  width: 60px;
  margin: 0 auto 20px;
  display: block; }

.contact-info-title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px; }

.contact-info-text {
  margin-bottom: 15px; }

.contact-info-social {
  display: inline-block;
  width: 40px;
  margin-top: 45px; }

@media (min-width: 900px) {
  .third-section {
    padding: 50px 30px; }
  .contact-wrapper {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 1000px;
    height: 350px;
    padding-top: 100px; }
  .contact-form {
    width: calc(100% - 340px);
    padding-right: 50px; }
  .contact-form-text:after {
    width: 80px;
    margin-top: 17px; }
  .contact-info-wrapper {
    width: 340px;
    margin: 0 30px 0 0; }
  .contact-info-bg {
    background: #3b5b7b;
    width: 200px;
    height: 90%;
    position: absolute;
    top: -50px;
    right: -70px;
    z-index: 10;
    transition: .1s ease; } }

.ec-logo--talents {
  background-image: url("../assets/logo-talents.svg"); }

.ec-return-to-site {
  position: absolute;
  top: 25px;
  right: 30px;
  z-index: 980;
  color: #e7ad4a !important;
  border-bottom: 1px solid transparent;
  transition: .3s ease; }
  .ec-return-to-site:hover {
    color: #fff !important;
    cursor: pointer;
    border-bottom-color: #fff; }

.ec-talents-header {
  height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../../assets/images/talent.jpg");
  position: relative; }
  .ec-talents-header:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 91, 123, 0.6) 0%, rgba(231, 173, 74, 0.6) 100%); }

.ec-talents-header__text {
  padding: 120px 20px 10px;
  font-size: 1.8rem;
  color: #fff;
  position: relative;
  font-family: 'Karla'; }

.ec-talents-header__text--mark {
  font-size: 1.8rem;
  color: #fff;
  font-weight: 600; }

.ec-talent-box {
  width: 80%;
  margin: 60px auto;
  max-width: 1200px;
  box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.02); }

.ec-talent-box__title {
  font-family: 'Karla', sans-serif;
  font-size: 1.8rem;
  padding: 25px 20px; }

.ec-talent-box__text-title {
  display: none; }

.ec-talent-box__text {
  padding: 30px 20px; }

.ec-talent-box__image {
  min-height: 200px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }

.ec-talent-form-wrapper {
  margin: 0 auto;
  background-image: radial-gradient(#ccc 7%, transparent 0), radial-gradient(#ccc 7%, transparent 0);
  background-size: 20px 20px;
  background-position: 0 0, 20px 20px;
  padding-top: 30px;
  max-width: 1000px; }

.ec-talent-form-message {
  font-size: 1.3rem;
  margin: 0 auto 30px;
  padding: 0 25px;
  max-width: 600px;
  text-align: center; }

.ec-talent-form {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 25px; }

.card-success-message {
  background-color: honeydew;
  display: none; }

@media (min-width: 900px) {
  .ec-logo--talents {
    height: 60px;
    width: 200px; }
  .ec-talents-header {
    height: 450px; }
  .ec-talents-header__text {
    max-width: 900px;
    padding: 160px 40px 20px;
    font-size: 3rem; }
  .ec-talents-header__text--mark {
    font-size: 3rem; }
  .ec-talent-box {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }
  .ec-talent-box__title {
    display: none; }
  .ec-talent-box__text-title {
    display: block;
    font-family: 'Karla', sans-serif;
    font-size: 2rem;
    padding-bottom: 25px; }
  .ec-talent-box__text {
    width: 45%; }
  .ec-talent-box__image {
    width: 55%;
    min-height: 320px;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1; }
  .ec-talent-box__image--culture {
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1; } }

.footer {
  position: relative; }

.footer-info {
  position: absolute;
  width: 100%;
  height: 130px;
  padding: 5px 30px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  background: #3b5b7b;
  overflow: hidden; }
  .footer-info:before {
    content: '';
    position: absolute;
    background: #e7ad4a;
    height: 350px;
    width: 120px;
    top: 0;
    right: 0;
    -webkit-transform: skew(-35deg);
    -ms-transform: skew(-35deg);
    transform: skew(-35deg);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center; }
  .footer-info:after {
    content: '';
    position: absolute;
    background: #cb9141;
    height: 350px;
    width: 80px;
    top: 0;
    right: -10px;
    -webkit-transform: skew(-35deg);
    -ms-transform: skew(-35deg);
    transform: skew(-35deg);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center; }

.ec-logo-footer {
  height: 30px;
  width: 140px;
  background-image: url("../assets/logo-white.svg");
  background-repeat: no-repeat; }

.ec-footer-address {
  color: #fff; }

.ec-footer-social-item {
  display: inline-block;
  width: 35px; }

@media (min-width: 900px) {
  .footer-info {
    height: 100%;
    margin-top: 190px;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    height: auto;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 5px 50px; }
    .footer-info:before {
      display: none; }
    .footer-info:after {
      display: none; }
  .footer-bg-image {
    margin-bottom: -10px;
    margin-top: 80px; } }
