@import "animate.css";
input, textarea, button {
  outline: none;
}

@font-face {
  font-family: OpenSansBold;
  src: url("../fonts/OpenSans/OpenSans-Bold.eot");
  src: url("../fonts/OpenSans/OpenSans-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/OpenSans/OpenSans-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: OpenSansRegular;
  src: url("../fonts/OpenSans/OpenSans-Regular.eot");
  src: url("../fonts/OpenSans/OpenSans-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/OpenSans/OpenSans-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: OpenSansLight;
  src: url("../fonts/OpenSans/OpenSans-Light.eot");
  src: url("../fonts/OpenSans/OpenSans-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/OpenSans/OpenSans-Light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
.loader {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #FFF;
  z-index: 10;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.loader .spinner {
  width: auto;
  text-align: center;
}
.loader .spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
  background-color: #89dc65;
}
.loader .spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
  background-color: #e95ebe;
}
.loader .spinner .bounce3 {
  -webkit-animation-delay: -0.08s;
  animation-delay: -0.08s;
  background-color: #65b2e8;
}
.loader .spinner .bounce4 {
  background-color: #2d2a26;
}
.loader .spinner > div {
  width: 16px;
  height: 16px;
  margin: 0 2px;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bounce 1.4s infinite ease-in-out both;
  animation: sk-bounce 1.4s infinite ease-in-out both;
}
.loader .loader-image {
  width: 60px;
  height: 60px;
  position: relative;
  margin: 100px auto;
}

@keyframes sk-bounce {
  0%, 100% {
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.not-found-page {
  height: 100vh;
  width: 100%;
  background: #FFFFFF;
  padding-top: 100px;
  box-sizing: border-box;
}
.not-found-page .container {
  width: 100%;
}
.not-found-page .container .text-holder {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding-right: 25px;
}
.not-found-page .container .text-holder h1 {
  width: 100%;
  text-align: right;
  font-family: "acumin-pro", OpenSansRegular;
  font-weight: 400;
  color: #2d2a26;
  font-size: 106px;
  margin: 0;
}
.not-found-page .container .text-holder .description {
  width: 100%;
  font-family: "acumin-pro", OpenSansLight;
  font-weight: 300;
  font-size: 20px;
}
.not-found-page .container .text-holder .description p {
  margin: 0;
  text-align: right;
}
.not-found-page .container .text-holder .description p a {
  color: #2d2a26;
  text-decoration: none;
  font-family: "acumin-pro", OpenSansRegular;
  font-weight: 400;
  font-size: 20px;
}
.not-found-page .container .text-holder .description p a:before {
  content: "";
  background-image: url(../images/SETA4.svg);
  background-position: center;
  background-size: 30px;
  background-repeat: no-repeat;
  background-size: contain;
  padding-left: 13px;
  width: 0;
  height: 11px;
  display: inline-block;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.not-found-page .container .text-holder .description p a:hover {
  opacity: 0.6;
}
.not-found-page .container .img-hoder {
  display: flex;
  justify-content: center;
  width: 100%;
}
.not-found-page .container .img-hoder img {
  margin-top: 50px;
  width: 100%;
  max-width: 700px;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    bottom: 0;
    height: 0;
  }
  100% {
    opacity: 1;
    height: 80%;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    bottom: 0;
    height: 0;
  }
  100% {
    opacity: 1;
    height: 100%;
  }
}
@-webkit-keyframes bounce {
  0% {
    top: 5px;
  }
  25%, 75% {
    top: 10px;
  }
  50% {
    top: 15px;
  }
  100% {
    top: 0;
  }
}
@keyframes bounce {
  0% {
    top: 5px;
  }
  25%, 75% {
    top: 10px;
  }
  50% {
    top: 15px;
  }
  100% {
    top: 0;
  }
}
@keyframes slideUpParagraphs {
  from {
    -moz-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    -o-transform: translate3d(0, 100%, 0);
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    opacity: 0;
  }
  100% {
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes text-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes text-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes bounceRight {
  0% {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translateX(0) scaleX(1);
  }
  10% {
    -webkit-transform: translateX(8px) scaleX(0.85);
    transform: translateX(8px) scaleX(0.85);
  }
  20% {
    -webkit-transform: translateX(-16px) scaleX(1);
    transform: translateX(-16px) scaleX(1);
  }
  30% {
    -webkit-transform: translateX(8px) scaleX(1);
    transform: translateX(8px) scaleX(1);
  }
  40% {
    -webkit-transform: translateX(-12px) scaleX(0.9);
    transform: translateX(-12px) scaleX(0.9);
  }
  50% {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translateX(0) scaleX(1);
  }
}
@keyframes bounceRight {
  0% {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translateX(0) scaleX(1);
  }
  10% {
    -webkit-transform: translateX(8px) scaleX(0.85);
    transform: translateX(8px) scaleX(0.85);
  }
  20% {
    -webkit-transform: translateX(-12px) scaleX(1);
    transform: translateX(-12px) scaleX(1);
  }
  30% {
    -webkit-transform: translateX(8px) scaleX(1);
    transform: translateX(8px) scaleX(1);
  }
  40% {
    -webkit-transform: translateX(-12px) scaleX(0.9);
    transform: translateX(-12px) scaleX(0.9);
  }
  50% {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translateX(0) scaleX(1);
  }
}
@-webkit-keyframes BounceUp {
  0% {
    -webkit-transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(25px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
@keyframes BounceUp {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(25px);
  }
  100% {
    transform: translateY(0);
  }
}
@-webkit-keyframes BounceUpArrow {
  0% {
    -webkit-transform: translateY(0) rotate(90deg);
  }
  50% {
    -webkit-transform: translateY(25px) rotate(90deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(90deg);
  }
}
@keyframes BounceUpArrow {
  0% {
    transform: translateY(0) rotate(90deg);
  }
  50% {
    transform: translateY(25px) rotate(90deg);
  }
  100% {
    transform: translateY(0) rotate(90deg);
  }
}
@keyframes fadeTeamIn {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeCoorIn {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeTeamOut {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes fadeCoorOut {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes tradeTeamMember {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes teamOpacityOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes teamOpacityIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes closeForm {
  from {
    max-height: 1000px;
    background-color: #2d2a26;
  }
  to {
    max-height: 0;
    overflow: hidden;
    background-color: #2d2a26;
  }
}
@keyframes openForm {
  from {
    max-height: 0;
  }
  to {
    max-height: 1000px;
    overflow: unset;
    background-color: #2d2a26;
    animation-fill-mode: both;
  }
}
@keyframes paragraphs1By1 {
  from {
    transform: translateY(200%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.container-form .loader {
  background-color: rgba(45, 42, 38, 0.9);
}
.container-form .col {
  position: relative;
}
.container-form .col .loader {
  position: absolute;
}
.container-form .col.form {
  overflow: hidden;
}
.container-form .col.form-active {
  animation: openForm 0.5s;
}
.container-form .col.form-close {
  animation: closeForm 0.5s;
}
.container-form .col.animated {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.container-form.top-form {
  margin-top: -42px;
  transition: max-height 1s ease;
}
.container-form.bottom-form {
  position: absolute;
  width: 100%;
  bottom: 0;
  z-index: 1;
  transition: max-height 1s ease;
}
.container-form .col-grid-6 {
  box-sizing: border-box;
}
@media screen and (max-width: 1128px) {
  .container-form .col-grid-6 {
    width: 100%;
  }
}
.container-form .contact-us {
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  justify-content: center;
  flex-wrap: wrap;
  color: #FFFFFF;
  font-family: "acumin-pro", OpenSansRegular;
  font-weight: 400;
  padding: 60px;
  min-height: 514px;
  align-content: baseline;
}
@media screen and (max-width: 852px) {
  .container-form .contact-us {
    min-height: 625px;
  }
}
@media screen and (max-width: 680px) {
  .container-form .contact-us {
    padding: 25px;
    min-height: 550px;
  }
}
.container-form .contact-us .btn-close {
  width: 100%;
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  justify-content: flex-end;
}
.container-form .contact-us .btn-close .icon-close:hover {
  color: #FFFFFF;
  opacity: 0.5;
}
.container-form .contact-us ul {
  list-style: none;
  padding: 0;
}
.container-form .contact-us ul .item {
  margin: 5px 0;
}
.container-form .contact-us .form-types {
  width: 35%;
  min-width: 250px;
  padding: 0;
}
.container-form .contact-us .form-types .item {
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
@media screen and (min-width: 1000px) {
  .container-form .contact-us .form-types .item {
    font-size: 30.67px;
  }
}
@media screen and (max-width: 1000px) {
  .container-form .contact-us .form-types .item {
    font-size: 28px;
  }
}
@media screen and (max-width: 680px) {
  .container-form .contact-us .form-types .item {
    font-size: 25.333px;
  }
}
@media screen and (max-width: 425px) {
  .container-form .contact-us .form-types .item {
    font-size: 22.67px;
  }
}
.container-form .contact-us .form-types .item div {
  cursor: pointer;
}
.container-form .contact-us .form-types .item .arrow {
  width: 30px;
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  justify-content: center;
  align-items: center;
  margin-right: 20px;
}
.container-form .contact-us .form-types .item:hover {
  color: #FFFFFF;
  opacity: 0.5;
}
.container-form .contact-us .form-types .item:hover .icon-arrow-left {
  -webkit-animation: bounceRight;
  animation: bounceRight;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
@media screen and (max-width: 850px) {
  .container-form .contact-us .form-types {
    width: 100%;
  }
}
.container-form .contact-us .talk-with-us {
  width: 65%;
}
@media screen and (max-width: 850px) {
  .container-form .contact-us .talk-with-us {
    width: 100%;
  }
}
.container-form .contact-us .default-form.ng-submitted .ng-empty,
.container-form .contact-us .default-form.ng-submitted .ng-invalid {
  border: 1px solid #e95ebe;
}
.container-form .contact-us .default-form ul {
  padding: 0;
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-wrap: wrap;
  justify-content: center;
}
.container-form .contact-us .default-form .item {
  width: 100%;
  max-width: 540px;
  height: 40px;
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
@media screen and (max-width: 850px) {
  .container-form .contact-us .default-form .item {
    max-width: 100%;
  }
}
.container-form .contact-us .default-form .item label {
  min-width: 100px;
}
.container-form .contact-us .default-form .item .ng-touched.ng-empty {
  border: 2px solid #e95ebe;
}
.container-form .contact-us .default-form .item input, .container-form .contact-us .default-form .item textarea {
  resize: none;
  width: 100%;
  min-width: 250px;
  padding: 5px;
  height: 40px;
  box-sizing: border-box;
  color: #2d2a26;
  border: 0;
  padding: 5px 10px;
  font-size: 14px;
  font-family: "acumin-pro", OpenSansRegular;
  font-weight: 400;
}
.container-form .contact-us .default-form .item textarea {
  height: 100px;
  color: #2d2a26;
}
.container-form .contact-us .default-form .item .select-div {
  min-width: 30%;
  position: relative;
}
.container-form .contact-us .default-form .item .select-div:after {
  content: "";
  background-image: url(../images/SETA4.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  font-size: 20pt;
  position: absolute;
  right: 15px;
  top: 11px;
  width: 10px;
  height: 9px;
  pointer-events: none;
}
.container-form .contact-us .default-form .item select {
  min-width: 125px;
  width: 100%;
  background-color: #FFFFFF;
  padding: 5px 10px;
  color: #2d2a26;
  background-color: #FFFFFF;
  border: 0;
  height: 30px;
  position: relative;
  -moz-appearance: none; /* Firefox */
  -webkit-appearance: none; /* Safari and Chrome */
  appearance: none;
}
.container-form .contact-us .default-form .item button.upload-file {
  background: #FFFFFF;
  min-width: 182px;
  width: 35%;
  height: 40px;
  padding: 10px 10px;
  border: none;
  font-family: "acumin-pro", OpenSansRegular;
  font-weight: 400;
  text-align: left;
  position: relative;
  color: #2d2a26;
  font-size: 14px;
  cursor: pointer;
}
.container-form .contact-us .default-form .item button.upload-file:hover::after {
  opacity: 0.6;
}
.container-form .contact-us .default-form .item button.upload-file::after {
  content: "";
  background-image: url(../images/upload-icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 130px;
  position: absolute;
  right: 15px;
  top: 8px;
  width: 26px;
  height: 26px;
}
.container-form .contact-us .default-form .item input.upload-file {
  display: none;
}
.container-form .contact-us .default-form .item p.upload-file {
  margin-left: 20px;
}
.container-form .contact-us .default-form .submit-container {
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  justify-content: flex-end;
}
.container-form .contact-us .default-form .submit-container .submit:hover .icon-arrow-left {
  -webkit-animation: bounceRight;
  animation: bounceRight;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.container-form .contact-us .default-form .submit-container .submit:hover {
  color: #FFFFFF;
  opacity: 0.5;
}
.container-form .contact-us .default-form .submit-container .submit .btn-submit {
  font-size: 12pt;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
  color: #FFFFFF;
}
.container-form .contact-us .default-form .submit-container .submit .icon-arrow-left:hover {
  color: #FFFFFF;
  opacity: 0.5;
}
.container-form .contact-us .default-form .item-textarea {
  height: unset;
}
.container-form .contact-us .default-form .align-center {
  align-items: center;
}
.container-form .alert-message-form {
  width: 100%;
  background-color: #e95ebe;
}
.container-form .alert-message-form.disableAlert {
  display: none;
}
.container-form .alert-message-form .container {
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  color: #FFFFFF;
  font-family: "acumin-pro", OpenSansRegular;
  font-weight: 400;
  margin: 0 auto;
}
.container-form .alert-message-form .container .box-messages {
  width: 80%;
  min-height: 0;
  padding: 0 60px;
}
.container-form .alert-message-form .container .box-messages p {
  width: 100%;
  padding: 5px 0;
}
.container-form .alert-message-form .container .box-messages p:first-child {
  padding-top: 20px;
}
.container-form .alert-message-form .container .box-messages p:last-child {
  padding-bottom: 20px;
}
@media screen and (max-width: 680px) {
  .container-form .alert-message-form .container .box-messages {
    padding: 0 25px;
    max-width: none !important;
    margin: 0 !important;
  }
}
.container-form .alert-message-form .container .btn {
  cursor: pointer;
  font-family: "acumin-pro", OpenSansBold;
  font-weight: 700;
  font-size: 16pt;
}
.container-form .alert-message-form .container p {
  margin: 0;
}

.talk-with-us-holder {
  z-index: 2;
  /*temporary untill fixing the emails not working */
  display: none;
}
.talk-with-us-holder .icon-talk-with-us {
  color: #FFFFFF;
  font-family: "acumin-pro", OpenSansRegular;
  font-weight: 400;
  cursor: pointer;
  background-color: #2d2a26;
  padding: 10px 20px;
  z-index: 0;
  text-align: center;
  width: 215px;
  box-sizing: border-box;
}
.talk-with-us-holder .icon-talk-with-us:hover span {
  color: #FFFFFF;
  opacity: 0.5;
}
.talk-with-us-holder .icon-talk-with-us img {
  margin-left: 15px;
}
@media screen and (max-width: 1480px) {
  .talk-with-us-holder .icon-talk-with-us {
    margin-left: 25px;
  }
}
@media screen and (max-width: 680px) {
  .talk-with-us-holder .icon-talk-with-us {
    position: unset;
    width: 100%;
    margin: 0;
  }
}
.talk-with-us-holder .icon-talk-with-us:hover .icon-arrow-left {
  -webkit-animation: bounceRight;
  animation: bounceRight;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: 0.5;
}
@media screen and (max-width: 1480px) {
  .talk-with-us-holder {
    margin: 0px !important;
  }
}
@media screen and (max-width: 680px) {
  .talk-with-us-holder {
    position: relative;
  }
}

.grecaptcha-badge {
  display: none !important;
}

body {
  position: relative;
  margin: 0;
  padding: 0;
}

.show {
  visibility: visible !important;
}

.hide {
  visibility: hidden;
}

.col {
  margin: 0 auto;
}

.col-grid-12 {
  width: 100%;
}

.col-grid-8 {
  width: calc(100% - 120px);
}

.col-grid-6 {
  width: calc(75% - 120px);
}

.col-grid-4 {
  width: calc(60% - 120px);
}

.col-grid-2 {
  width: calc(25% - 120px);
}

@media screen and (max-width: 1024px) {
  .col-grid-4 {
    width: calc(100% - 320px);
  }
}
.head-content-holder {
  position: relative;
}
.head-content-holder .menu-holder {
  background-color: #2d2a26;
  overflow: hidden;
  z-index: 4;
  top: 0;
  width: 0;
  height: 100vh;
  position: fixed;
  left: 0;
  transition: width 0.3s ease-in;
}
.head-content-holder .menu-holder.active {
  width: 50%;
}
@media screen and (max-width: 680px) {
  .head-content-holder .menu-holder.active {
    width: 100%;
  }
}
.head-content-holder .menu-holder .menu-list {
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-wrap: wrap;
  flex-direction: row;
  margin: 110px 0 0 0;
  font-family: "acumin-pro", OpenSansRegular;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 60px;
  opacity: 0;
  transition: opacity 0.3s 0.5s;
  width: 100%;
  float: right;
  height: calc(100% - 110px);
  max-width: 700px;
  padding: 0 60px 0 0;
  box-sizing: border-box;
}
.head-content-holder .menu-holder .menu-list-left {
  width: 100%;
  align-self: flex-end;
  font-size: 18px;
}
.head-content-holder .menu-holder .menu-list-left .languages-holder {
  display: none;
  color: #FFFFFF;
}
.head-content-holder .menu-holder .menu-list-left .languages-holder > div {
  position: relative;
}
.head-content-holder .menu-holder .menu-list-left .languages-holder > div:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 2px;
  bottom: 0;
  height: 18px;
  width: 1px;
  background-color: #FFFFFF;
  margin: auto 0;
}
.head-content-holder .menu-holder .menu-list-left .languages-holder > div:not(:last-child) a {
  padding-right: 10px;
}
.head-content-holder .menu-holder .menu-list-left .languages-holder > div:not(:first-child) a {
  padding-left: 10px;
}
.head-content-holder .menu-holder .menu-list-left .languages-holder a {
  text-decoration: none;
  color: #FFFFFF;
}
.head-content-holder .menu-holder .menu-list-left .languages-holder a.active {
  font-family: "acumin-pro", OpenSansBold;
  font-weight: 700;
}
.head-content-holder .menu-holder .menu-list-left .languages-holder a:hover {
  font-family: "acumin-pro", OpenSansBold;
  font-weight: 700;
}
.head-content-holder .menu-holder .menu-list-left .languages-holder :first-child {
  margin: 0 2px 0 0;
  padding-right: 2px;
}
.head-content-holder .menu-holder .menu-list-left .languages-holder :last-child {
  padding-left: 2px;
}
.head-content-holder .menu-holder .menu-list-left .languages-holder .bold {
  font-family: "acumin-pro", OpenSansBold;
  font-weight: 700;
  margin: 0 3px 0 0;
}
@media screen and (max-width: 680px) {
  .head-content-holder .menu-holder .menu-list-left .languages-holder {
    display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Chrome */
    display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  }
}
.head-content-holder .menu-holder .menu-list-right {
  width: 100%;
  align-self: flex-start;
  text-align: end;
  font-size: 32px;
}
.head-content-holder .menu-holder .menu-list .menu-list-item span, .head-content-holder .menu-holder .menu-list .menu-list-item a {
  display: inline-flex;
  cursor: pointer;
  color: white;
  text-decoration: none;
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  -ms-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  transition: 0.2s linear;
}
.head-content-holder .menu-holder .menu-list .menu-list-item span:hover, .head-content-holder .menu-holder .menu-list .menu-list-item a:hover {
  color: #717171;
}
.head-content-holder .menu-holder .menu-list .menu-list-item span:focus, .head-content-holder .menu-holder .menu-list .menu-list-item a:focus {
  color: #717171;
}
.head-content-holder .menu-holder .menu-list .menu-list-item .menu-list-item-paragraph-holder {
  cursor: default;
  display: none;
  text-align: end;
  opacity: 1 !important;
}
.head-content-holder .menu-holder .menu-list .menu-list-item .menu-list-item-paragraph-holder .menu-list-item-paragraph {
  display: block;
  font-family: "acumin-pro", OpenSansRegular;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  cursor: pointer;
}
@media screen and (max-width: 1480px) {
  .head-content-holder .menu-holder .menu-list {
    padding-left: 25px;
  }
}
.head-content-holder .menu-holder .text-anim-in {
  opacity: 1;
}
.head-content-holder .menu-holder .text-anim-out {
  opacity: 0;
  transition-delay: 0s;
}
.head-content-holder .animated {
  -webkit-animation-duration: 0.3s !important;
  animation-duration: 0.3s !important;
}
.head-content-holder .mask-menu-main {
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;
  height: 10000px;
  z-index: 9999;
  display: none;
}
@media screen and (max-width: 680px) {
  .head-content-holder .mask-menu-main {
    display: none !important;
  }
}
.head-content-holder .mask-menu-main.active {
  display: block;
}
.head-content-holder .menu-animated-config {
  z-index: 4;
  top: 0;
  width: 50%;
  height: 100vh;
  position: fixed;
  left: 0;
}
@media screen and (max-width: 680px) {
  .head-content-holder .menu-animated-config {
    width: 100%;
  }
}

.header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  height: 150px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: white;
  transition: all 0.3s;
  z-index: 4;
}
.header .col {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.header .col .arrow-sticky {
  display: none;
}
.header.sticky {
  height: 100px;
  flex-wrap: nowrap;
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  z-index: 10;
}
.header.sticky .logo img {
  display: none;
}
.header.sticky .logo img.logo-small {
  display: initial !important;
  height: 65px;
}
.header.sticky .languages {
  display: none;
}
.header.sticky .arrow-sticky {
  display: initial;
  cursor: pointer;
  width: 30px;
  height: 30px;
}
.header.sticky .arrow-sticky img {
  width: 30px;
  height: 30px;
}
@media screen and (max-width: 680px) {
  .header {
    height: 90px;
  }
}

.header .nav-icon, .fixed-menu .nav-icon {
  display: flex;
  flex-wrap: wrap;
  cursor: pointer;
  position: relative;
  width: 32px;
}
.header .nav-icon div, .fixed-menu .nav-icon div {
  height: 3px;
  margin: 6px 0;
  background-color: #2d2a26;
  width: 32px;
  transition: all 0.1s ease-in-out;
  border-radius: 10px;
}
.header .nav-icon:before, .header .nav-icon:after, .fixed-menu .nav-icon:before, .fixed-menu .nav-icon:after {
  background-color: #2d2a26;
  content: "";
  display: block;
  height: 3px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 32px;
  border-radius: 10px;
}
.header .nav-icon.active:before, .fixed-menu .nav-icon.active:before {
  -webkit-transform: translateY(10px) rotate(135deg);
  transform: translateY(10px) rotate(135deg);
  background-color: #FFFFFF !important;
  position: relative;
  z-index: 101;
}
.header .nav-icon.active:after, .fixed-menu .nav-icon.active:after {
  -webkit-transform: translateY(-8px) rotate(-135deg);
  transform: translateY(-8px) rotate(-135deg);
  background-color: #FFFFFF !important;
  position: relative;
  z-index: 101;
}
.header .nav-icon.active:hover:before, .header .nav-icon.active:hover:after, .fixed-menu .nav-icon.active:hover:before, .fixed-menu .nav-icon.active:hover:after {
  background-color: #717171 !important;
}
.header .nav-icon.active div, .fixed-menu .nav-icon.active div {
  -webkit-transform: scale(0);
  transform: scale(0);
  background-color: #FFFFFF;
}
.header .header-icon-holder-active, .fixed-menu .header-icon-holder-active {
  transform: scale(1.2);
  z-index: 5;
}
.header .header-icon-holder-active .icons .icon-hover, .fixed-menu .header-icon-holder-active .icons .icon-hover {
  transform: rotate(0deg) scale(1);
  color: #FFFFFF;
  opacity: 1;
}
.header .header-icon-holder-active .icons .icon-default, .fixed-menu .header-icon-holder-active .icons .icon-default {
  transform: rotate(180deg) scale(0.5);
  opacity: 0;
}
.header .header-icon-holder-inactive, .fixed-menu .header-icon-holder-inactive {
  transform: scale(1.2);
  z-index: 2;
}
.header .header-icon-holder-inactive .icons .icon-hover, .fixed-menu .header-icon-holder-inactive .icons .icon-hover {
  transform: rotate(180deg) scale(0.5);
  opacity: 0;
}
.header .header-icon-holder-inactive .icons .icon-default, .fixed-menu .header-icon-holder-inactive .icons .icon-default {
  transform: rotate(0deg) scale(1);
  color: #2d2a26;
  opacity: 1;
}

.header .header-text-holder {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: #2d2a26;
  font-family: "acumin-pro", OpenSansRegular;
  font-weight: 400;
  font-size: 16px;
  box-sizing: content-box;
}
.header .header-text-holder > div {
  position: relative;
}
.header .header-text-holder > div:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 2px;
  bottom: 0;
  height: 18px;
  width: 1px;
  background-color: #2d2a26;
  margin: auto 0;
}
.header .header-text-holder > div:not(:last-child) a {
  padding-right: 10px;
}
.header .header-text-holder > div:not(:first-child) a {
  padding-left: 10px;
}
.header .header-text-holder a {
  text-decoration: none;
  color: #2d2a26;
  padding-right: 2px;
  height: 22px;
}
.header .header-text-holder a.active, .header .header-text-holder a:hover {
  font-family: "acumin-pro", OpenSansBold;
  font-weight: 700;
}
.header .header-text-holder .bold {
  font-family: "acumin-pro", OpenSansBold;
  font-weight: 700;
  margin: 0 3px 0 0;
}
@media screen and (max-width: 680px) {
  .header .header-text-holder {
    display: none;
  }
}
.header .header-logo-holder {
  width: 190px;
  text-align: center;
  position: absolute;
  left: calc(50% - 95px);
}
.header .header-logo-holder .logo img {
  height: 135px;
}
.header .header-logo-holder .logo img.logo-small {
  display: none;
}
@media screen and (max-width: 680px) {
  .header .header-logo-holder .logo img {
    height: 95px;
  }
  .header .header-logo-holder .logo img.logo-small {
    height: 55px;
  }
}
.header .header-icon-holder-active {
  position: relative;
}

.slides-holder {
  width: 100%;
  position: relative;
  margin: auto;
}
.slides-holder .slide-viewer {
  overflow: hidden;
  position: relative;
  height: 750px;
}
@media only screen and (max-height: 1080px) {
  .slides-holder .slide-viewer {
    height: 500px;
  }
}
.slides-holder .slide-viewer .slide-group {
  height: 100%;
  position: relative;
  width: 100%;
}
.slides-holder .slide-viewer .slide {
  height: 100%;
  position: absolute;
  width: 100%;
}
.slides-holder .slide-viewer .slide:first-child {
  z-index: 1;
}
.slides-holder .slide-viewer .slide img {
  vertical-align: middle;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slides-holder .slide-viewer .slide .text {
  font-family: "acumin-pro", OpenSansLight;
  font-weight: 300;
  color: #f2f2f2;
  font-size: 35pt;
  position: absolute;
  top: 30%;
  max-height: 60%;
  overflow: hidden;
  left: 0;
  right: 0;
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-direction: column;
}
.slides-holder .slide-viewer .slide .text-dark {
  color: #000;
}
.slides-holder .slide-viewer .slide .text p {
  margin: 0;
  line-height: 50px;
}
.slides-holder .slide-viewer .slide .text-dark {
  color: black;
}
.slides-holder .slide-viewer .slide:first-child {
  display: block;
}

.slider-buttons-holder {
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  bottom: 15px;
  width: 30%;
  margin: auto;
  z-index: 3;
}
.slider-buttons-holder .dot-btn {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 10px;
  background-color: #FFFFFF;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
@media (hover: hover) {
  .slider-buttons-holder .dot-btn:hover {
    background-color: #65b2e8;
  }
}
.slider-buttons-holder .active {
  background-color: #65b2e8;
  cursor: default;
}

@media screen and (max-width: 1480px) {
  .header, .fixed-menu {
    padding: 0 25px;
    max-width: none !important;
    margin: 0 !important;
    box-sizing: border-box;
  }
  .slides-holder .slide-viewer {
    height: 450px;
  }
  .slides-holder .slide-viewer .slide-group .slide .text {
    font-size: 32pt;
    top: 30%;
    margin-left: 25px;
  }
  .slides-holder .slide-viewer .slide-group .slide .text p {
    line-height: 45px;
  }
}
@media screen and (max-width: 680px) {
  .slides-holder .slide-viewer {
    height: 290px;
  }
  .slides-holder .slide-viewer .slide-group .slide .text {
    font-size: 30px;
  }
  .slides-holder .slide-viewer .slide-group .slide .text p {
    line-height: 35px;
  }
  .slides-holder .slider-buttons-holder {
    bottom: 55px;
  }
}
@media screen and (max-width: 400px) {
  .slides-holder .slide-viewer {
    height: 250px;
  }
  .slides-holder .slide-viewer .slide-group .slide .text {
    font-size: 15pt;
  }
  .slides-holder .slide-viewer .slide-group .slide .text p {
    line-height: 25px;
  }
}
.slideOutLeft {
  animation-delay: 0.3s;
}

.light-grey {
  background-color: #EAEBED;
}

html {
  scroll-behavior: smooth;
}
html.non-overflow {
  overflow: hidden;
}

body > .container {
  padding-top: 150px;
}
@media screen and (max-width: 680px) {
  body > .container {
    padding-top: 90px;
  }
}

.slideUpParagraphs {
  -webkit-animation: fadeInUp;
  animation: fadeInUp;
  -webkit-animation-duration: 3s !important;
  animation-duration: 3s !important;
}

.svg {
  filter: invert(0.5);
  height: 25px;
  width: 25px;
  height: 10px;
}

.activeLink {
  font-family: "acumin-pro", OpenSansBold;
  font-weight: 700;
}

.portfolio-holder .links-holder {
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  margin: 40px 0 40px 0;
  font-family: "acumin-pro", OpenSansRegular;
  font-weight: 400;
  font-size: 14px;
  color: #2d2a26;
}
.portfolio-holder .items-holder {
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-wrap: wrap;
  animation: fadeInUp 0.5s;
}
.portfolio-holder .items-holder .item {
  border: unset;
  overflow: hidden;
  position: relative;
}
.portfolio-holder .items-holder .item .img-portfolio {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.portfolio-holder .items-holder .item .item-active {
  position: absolute;
  padding: 12.5%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  color: #FFFFFF;
  text-align: center;
  -moz-transition: top 0.3s, right 0.3s, bottom 0.3s, left 0.3s;
  -webkit-transition: top 0.3s, right 0.3s, bottom 0.3s, left 0.3s;
  transition: top 0.3s, right 0.3s, bottom 0.3s, left 0.3s;
  font-size: 12px;
  font-family: "acumin-pro", OpenSansRegular;
  font-weight: 400;
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-wrap: wrap;
  align-items: center;
}
.portfolio-holder .items-holder .item .item-active .title {
  width: 100%;
  font-size: 28px;
  margin: 0;
  line-height: 1;
  padding-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .portfolio-holder .items-holder .item .item-active .title {
    font-size: 18px;
  }
}
@media screen and (max-width: 375px) {
  .portfolio-holder .items-holder .item .item-active .title {
    font-size: 16px;
  }
}
.portfolio-holder .items-holder .item .item-active .subtitle {
  width: 100%;
  font-family: "acumin-pro", OpenSansRegular;
  font-weight: 400;
  margin: 0;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .portfolio-holder .items-holder .item .item-active .subtitle {
    font-size: 13px;
  }
}
.portfolio-holder .items-holder .item .item-active .details {
  width: 100%;
  font-family: "acumin-pro", OpenSansBold;
  font-weight: 700;
  margin: 5px 0 0 0;
  cursor: pointer;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .portfolio-holder .items-holder .item .item-active .details {
    font-size: 13px;
  }
}
.portfolio-holder .items-holder .item .item-active .details a {
  text-decoration: none;
}
.portfolio-holder .items-holder .item .item-active .details a:hover {
  color: #EAEBED;
}
.portfolio-holder .items-holder .item .item-active .arrow {
  width: 100%;
  animation: BounceUp 1s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  -webkit-animation: BounceUp 1s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
}
.portfolio-holder .items-holder .item .item-active .arrow .icon-arrow-left {
  transform: rotate(90deg);
  cursor: unset;
  width: 35px;
  height: 45px;
}
.portfolio-holder .items-holder .item .item-active.top {
  top: 100%;
}
.portfolio-holder .items-holder .item .container-item:hover .item-active.top {
  top: 0;
}
.portfolio-holder .items-holder .item .item-active.animation {
  top: 0 !important;
}

.portfolio-holder .items-holder > div {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-wrap: wrap;
  width: 100%;
}

@keyframes showOpacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes hideOpacity {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.team-holder .items-holder {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.team-holder .items-holder .row {
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-wrap: wrap;
}
.team-holder .items-holder .row.flex-end {
  justify-content: flex-end;
}
.team-holder .items-holder .row.align-flex-end {
  align-items: flex-end;
}
.team-holder .items-holder .item-text {
  width: 100%;
}
.team-holder .items-holder .item-text .item-text-paragraph {
  cursor: pointer;
  opacity: 1;
  margin: 5px 0 10px 0;
}
@media screen and (min-width: 1000px) {
  .team-holder .items-holder .item-team {
    padding-bottom: 50% !important;
  }
}
@media screen and (max-width: 1000px) {
  .team-holder .items-holder .item-team {
    padding-bottom: 66.6% !important;
  }
}
@media screen and (max-width: 680px) {
  .team-holder .items-holder .item-team {
    padding-bottom: 100% !important;
  }
}
@media screen and (max-width: 768px) {
  .team-holder .items-holder .item-team {
    padding-bottom: 100% !important;
  }
}
.team-holder .items-holder .item-team .container-item {
  align-items: flex-start !important;
}
@media screen and (max-width: 768px) {
  .team-holder .items-holder .item-team .container-item {
    padding: 0 55px;
    align-items: center !important;
  }
}
.team-holder .items-holder .title-holder {
  font-family: "acumin-pro", OpenSansBold;
  font-weight: 700;
  margin-top: 10px;
}
@media screen and (min-width: 1000px) {
  .team-holder .items-holder .title-holder {
    font-size: 22px;
  }
}
@media screen and (max-width: 1000px) {
  .team-holder .items-holder .title-holder {
    font-size: 12pt;
  }
}
@media screen and (max-width: 680px) {
  .team-holder .items-holder .title-holder {
    font-size: 11pt;
  }
}
@media screen and (max-width: 425px) {
  .team-holder .items-holder .title-holder {
    font-size: 9pt;
  }
}
.team-holder .items-holder .item-team-info {
  background: #EAEBED;
  opacity: 0;
  overflow: hidden;
}
.team-holder .items-holder .item-team-info .content-holder {
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-wrap: wrap;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.7s;
  margin: auto 0;
}
.team-holder .items-holder .item-team-info .content-holder .picture-holder {
  text-align: center;
}
.team-holder .items-holder .item-team-info .content-holder .picture-holder img {
  border-radius: 50%;
  height: 120px;
}
@media screen and (max-width: 680px) {
  .team-holder .items-holder .item-team-info .content-holder .picture-holder img {
    height: 80px;
  }
}
.team-holder .items-holder .item-team-info .content-holder .subtitle-holder {
  font-family: "acumin-pro", OpenSansRegular;
  font-weight: 400;
}
@media screen and (min-width: 1000px) {
  .team-holder .items-holder .item-team-info .content-holder .subtitle-holder {
    font-size: 18px;
  }
}
@media screen and (max-width: 1000px) {
  .team-holder .items-holder .item-team-info .content-holder .subtitle-holder {
    font-size: 11pt;
  }
}
@media screen and (max-width: 680px) {
  .team-holder .items-holder .item-team-info .content-holder .subtitle-holder {
    font-size: 10pt;
  }
}
@media screen and (max-width: 425px) {
  .team-holder .items-holder .item-team-info .content-holder .subtitle-holder {
    font-size: 8.5pt;
  }
}
.team-holder .items-holder .item-team-coordinators-info {
  margin-top: -25%;
}
@media screen and (min-width: 1000px) {
  .team-holder .items-holder .item-team-coordinators-info {
    width: 50% !important;
  }
}
@media screen and (max-width: 1000px) {
  .team-holder .items-holder .item-team-coordinators-info {
    width: 66.6% !important;
  }
}
@media screen and (max-width: 680px) {
  .team-holder .items-holder .item-team-coordinators-info {
    width: 50% !important;
  }
}
@media screen and (max-width: 425px) {
  .team-holder .items-holder .item-team-coordinators-info {
    width: 100% !important;
  }
}
@media screen and (min-width: 1000px) {
  .team-holder .items-holder .item-team-coordinators-info {
    padding-bottom: 50% !important;
  }
}
@media screen and (max-width: 1000px) {
  .team-holder .items-holder .item-team-coordinators-info {
    padding-bottom: 66.6% !important;
  }
}
@media screen and (max-width: 680px) {
  .team-holder .items-holder .item-team-coordinators-info {
    padding-bottom: 100% !important;
  }
}
.team-holder .items-holder .item-team-coordinators-info .btn-close {
  display: none;
}
@media screen and (max-width: 1000px) {
  .team-holder .items-holder .item-team-coordinators-info {
    position: absolute !important;
    top: 25%;
    width: 100% !important;
    padding-bottom: 100% !important;
  }
  .team-holder .items-holder .item-team-coordinators-info .btn-close {
    display: block;
    position: absolute;
    top: 25px;
    right: 25px;
  }
}
@media screen and (max-width: 768px) {
  .team-holder .items-holder .item-team-coordinators-info {
    margin-top: 0;
  }
}
.team-holder .items-holder .item-team-coordinators-info .content-holder .picture-holder {
  text-align: left;
}
@media screen and (min-width: 1000px) {
  .team-holder .items-holder .item-team-coordinators-info .content-holder .title-holder {
    font-size: 22px;
  }
}
@media screen and (max-width: 1000px) {
  .team-holder .items-holder .item-team-coordinators-info .content-holder .title-holder {
    font-size: 12pt;
  }
}
@media screen and (max-width: 680px) {
  .team-holder .items-holder .item-team-coordinators-info .content-holder .title-holder {
    font-size: 11pt;
  }
}
@media screen and (max-width: 425px) {
  .team-holder .items-holder .item-team-coordinators-info .content-holder .title-holder {
    font-size: 9pt;
  }
}
.team-holder .items-holder .item-team-coordinators-info .content-holder .description-holder {
  font-family: "acumin-pro", OpenSansRegular;
  font-weight: 400;
  margin: 10px 0 0 0;
}
@media screen and (min-width: 1000px) {
  .team-holder .items-holder .item-team-coordinators-info .content-holder .description-holder {
    font-size: 18px;
  }
}
@media screen and (max-width: 1000px) {
  .team-holder .items-holder .item-team-coordinators-info .content-holder .description-holder {
    font-size: 11pt;
  }
}
@media screen and (max-width: 680px) {
  .team-holder .items-holder .item-team-coordinators-info .content-holder .description-holder {
    font-size: 10pt;
  }
}
@media screen and (max-width: 425px) {
  .team-holder .items-holder .item-team-coordinators-info .content-holder .description-holder {
    font-size: 8.5pt;
  }
}
.team-holder .items-holder .item-team-coordinators {
  height: 0;
}
@media screen and (min-width: 1000px) {
  .team-holder .items-holder .item-team-coordinators {
    padding-bottom: 50% !important;
  }
}
@media screen and (max-width: 1000px) {
  .team-holder .items-holder .item-team-coordinators {
    padding-bottom: 66.6% !important;
  }
}
@media screen and (max-width: 680px) {
  .team-holder .items-holder .item-team-coordinators {
    padding-bottom: 100% !important;
  }
}
.team-holder .items-holder .item-team-coordinators .item-text .item-text-paragraph {
  cursor: pointer;
}
.team-holder .item-team-info-down {
  animation: slideInDown 0.5s;
  animation-fill-mode: forwards;
  opacity: 1 !important;
}
.team-holder .item-team-info-up {
  transition: all 0.5s 0.5s;
  padding-bottom: 0 !important;
}
.team-holder .item-team-info-show {
  opacity: 1 !important;
  transition-delay: 0.6s !important;
}
.team-holder .item-team-info-hide {
  opacity: 0 !important;
  transition-delay: 0s !important;
}
.team-holder .item-team-info-left {
  animation: slideInLeft 0.5s;
  animation-fill-mode: forwards;
  opacity: 1 !important;
}
.team-holder .item-team-info-right {
  animation: slideInRight 0.5s 0.5s;
  animation-fill-mode: forwards;
  opacity: 1 !important;
}

.clients-holder .items-holder {
  background: #EAEBED;
}
.clients-holder .items-holder .item {
  cursor: pointer;
  position: relative;
}
.clients-holder .items-holder .item .fixed {
  cursor: default;
}
.clients-holder .items-holder .item img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 1;
  transition: opacity 0.3s ease-in;
}
.clients-holder .items-holder .item .second-image {
  opacity: 0;
}
.clients-holder .items-holder .item p {
  margin: 0;
}
.clients-holder .items-holder .item .container-item {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  justify-content: center;
  box-sizing: border-box;
}
.clients-holder .items-holder .light-grey {
  background-color: #EAEBED;
}
.clients-holder .items-holder .item:hover .first-image {
  opacity: 0;
}
.clients-holder .items-holder .item:hover .second-image {
  opacity: 1;
}
.clients-holder .items-holder > div {
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-wrap: wrap;
  width: 100%;
}

.landing-page {
  width: 100%;
  height: 100vh;
  justify-content: center;
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #FFFFFF;
  z-index: 4;
}
.landing-page img {
  max-width: 400px;
  width: 100%;
  animation-duration: 5s;
}
.landing-page svg {
  width: 30%;
}
@media screen and (max-width: 1600px) {
  .landing-page svg {
    width: 40%;
  }
}
@media screen and (max-width: 1300px) {
  .landing-page svg {
    width: 50%;
  }
}
@media screen and (max-width: 1100px) {
  .landing-page svg {
    width: 60%;
  }
}
@media screen and (max-width: 900px) {
  .landing-page svg {
    width: 70%;
  }
}
@media screen and (max-width: 600px) {
  .landing-page svg {
    width: 100%;
  }
}
.landing-page.active {
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.remove {
  -webkit-animation: backgroundResize 1.5s 3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  animation: backgroundResize 1.5s 3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  animation-fill-mode: forwards;
}

@keyframes backgroundResize {
  0% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 0;
    height: 0;
    top: 5%;
    left: 50%;
    display: none;
  }
}
.bottom-message {
  visibility: hidden;
  width: 100%;
  background: #2d2a26;
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  justify-content: center;
  bottom: 0;
  position: fixed;
  z-index: 5;
}
.bottom-message .container {
  width: 100%;
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  align-items: center;
  align-content: center;
  justify-content: space-between;
}
.bottom-message .container .text-box {
  width: 80%;
  color: #FFFFFF;
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  align-items: center;
  font-family: "acumin-pro", OpenSansRegular;
  font-weight: 400;
  font-size: 13pt;
  flex-wrap: wrap;
  align-content: center;
  padding: 20px 5%;
}
.bottom-message .container .text-box p {
  margin: 0;
}
.bottom-message .container .text-box p a {
  cursor: pointer;
  color: #FFFFFF;
  appearance: none;
  text-decoration: none;
  font-family: "acumin-pro", OpenSansBold;
  font-weight: 700;
}
.bottom-message .container .btn-accept {
  width: 14%;
  height: 100%;
  color: #FFFFFF;
  background-color: #e95ebe;
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  align-items: center;
  justify-content: center;
  font-family: "acumin-pro", OpenSansBold;
  font-weight: 700;
  font-size: 13pt;
  cursor: pointer;
}
.bottom-message.active {
  visibility: visible;
}

@media screen and (max-width: 1280px) {
  .bottom-message .container .btn-accept {
    width: 20%;
  }
}
@media screen and (max-width: 770px) {
  .bottom-message .container {
    flex-direction: column;
    padding: 20px 25px;
    height: 100%;
  }
  .bottom-message .container .text-box {
    width: 100%;
    padding: 0;
    margin-bottom: 10px;
  }
  .bottom-message .container .btn-accept {
    width: 100%;
    padding: 12px 0;
  }
}
@media screen and (max-width: 400px) {
  .bottom-message .container {
    flex-direction: column;
    padding: 15px;
  }
  .bottom-message .container .text-box {
    font-size: 10pt;
    margin-bottom: 10px;
  }
  .bottom-message .container .btn-accept {
    width: 100%;
    padding: 12px 0;
  }
}
.white {
  background-color: #FFFFFF;
}

.dark-grey {
  background-color: #2d2a26;
}

.pink {
  background-color: #e95ebe;
}

.green {
  background-color: #89dc65;
}

.blue {
  background-color: #65b2e8;
}

.text-white {
  color: #FFFFFF;
}

.text-dark-grey {
  color: #2d2a26;
}

.text-pink {
  color: #e95ebe;
}

.text-green {
  color: #89dc65;
}

.text-blue {
  color: #65b2e8;
}

.col-grid-4 {
  width: 100%;
  box-sizing: border-box;
  min-width: 250px;
  max-width: 1400px;
}

.icon-arrow-left {
  width: 25px;
  cursor: pointer;
}

.icon-close {
  width: 25px;
  cursor: pointer;
}
.icon-close:hover {
  color: #FFFFFF;
  opacity: 0.5;
}

.default-holder {
  min-width: 250px;
  margin-bottom: 120px;
}
.default-holder .top-links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 1450px) {
  .default-holder .top-links {
    padding: 0 25px;
  }
}
.default-holder .top-links .links-holder {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  margin: 10px 0 40px 0;
  font-family: "acumin-pro", OpenSansRegular;
  font-weight: 400;
  color: #2d2a26;
}
@media screen and (min-width: 1000px) {
  .default-holder .top-links .links-holder {
    font-size: 22px;
  }
}
@media screen and (max-width: 1000px) {
  .default-holder .top-links .links-holder {
    font-size: 12pt;
  }
}
@media screen and (max-width: 680px) {
  .default-holder .top-links .links-holder {
    font-size: 11pt;
  }
}
@media screen and (max-width: 425px) {
  .default-holder .top-links .links-holder {
    font-size: 9pt;
  }
}
.default-holder .top-links .links-holder :active,
.default-holder .top-links .links-holder .active {
  font-family: "acumin-pro", OpenSansBold;
  font-weight: 700;
  background-color: transparent;
}
.default-holder .top-links .links-holder .link {
  margin: 0 30px 0 0;
  cursor: pointer;
}
.default-holder .top-links .title {
  color: #2d2a26;
  font-family: "acumin-pro", OpenSansBold;
  font-weight: 700;
  width: 100%;
  text-align: right;
  margin-bottom: 20px;
}
@media screen and (min-width: 1000px) {
  .default-holder .top-links .title {
    font-size: 30.67px;
  }
}
@media screen and (max-width: 1000px) {
  .default-holder .top-links .title {
    font-size: 28px;
  }
}
@media screen and (max-width: 680px) {
  .default-holder .top-links .title {
    font-size: 25.333px;
  }
}
@media screen and (max-width: 425px) {
  .default-holder .top-links .title {
    font-size: 22.67px;
  }
}
.default-holder .items-holder {
  width: 100%;
}
.default-holder .items-holder .item {
  height: 0;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media screen and (min-width: 1000px) {
  .default-holder .items-holder .item {
    width: 25%;
    padding-bottom: 25%;
  }
}
@media screen and (max-width: 1000px) {
  .default-holder .items-holder .item {
    width: 50%;
    padding-bottom: 50%;
  }
}
.default-holder .items-holder .item .content-holder {
  transition: opacity 0.5s linear;
}
.default-holder .items-holder .item .content-holder.trade {
  transition: opacity 0.5s linear;
}
.default-holder .items-holder .item.team-in {
  animation: fadeTeamIn 0.4s linear forwards;
}
.default-holder .items-holder .item.team-in .content-holder {
  animation: teamOpacityIn 0.5s linear forwards;
  animation-delay: 0.4s;
}
.default-holder .items-holder .item.team-in .content-holder.trade {
  animation: tradeTeamMember 1s linear forwards;
}
.default-holder .items-holder .item.coor-in {
  display: flex;
  animation: fadeCoorIn 0.4s linear forwards;
}
.default-holder .items-holder .item.coor-in .content-holder {
  animation: teamOpacityIn 0.5s linear forwards;
  animation-delay: 0.4s;
}
.default-holder .items-holder .item.coor-in .content-holder.trade {
  animation: tradeTeamMember 1s linear forwards;
}
.default-holder .items-holder .item.team-out {
  opacity: 1;
  animation: fadeTeamOut 0.4s linear forwards;
  animation-delay: 0.5s;
}
.default-holder .items-holder .item.team-out .content-holder {
  animation: teamOpacityOut 0.5s linear forwards;
}
.default-holder .items-holder .item.coor-out {
  opacity: 1;
  animation: fadeCoorOut 0.4s linear forwards;
  animation-delay: 0.5s;
}
.default-holder .items-holder .item.coor-out .content-holder {
  animation: teamOpacityOut 0.5s linear forwards;
}
.default-holder .items-holder .item .container-item {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 12.5%;
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  justify-content: center;
  box-sizing: border-box;
  background-size: cover;
  background-position: center;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  line-height: 2;
}
@media screen and (max-width: 680px) {
  .default-holder .items-holder .item .container-item {
    padding: 20px 15px;
  }
}
.default-holder .item-text {
  font-family: "acumin-pro", OpenSansRegular;
  font-weight: 400;
}
@media screen and (min-width: 1000px) {
  .default-holder .item-text {
    font-size: 18px;
  }
}
@media screen and (max-width: 1000px) {
  .default-holder .item-text {
    font-size: 11pt;
  }
}
@media screen and (max-width: 680px) {
  .default-holder .item-text {
    font-size: 10pt;
  }
}
@media screen and (max-width: 425px) {
  .default-holder .item-text {
    font-size: 8.5pt;
  }
}
.default-holder .item-text p {
  margin: 0;
}
.default-holder .item-title {
  color: #FFFFFF;
  font-family: "acumin-pro", OpenSansRegular;
  font-weight: 400;
  margin: auto;
}
@media screen and (min-width: 1000px) {
  .default-holder .item-title {
    font-size: 22px;
  }
}
@media screen and (max-width: 1000px) {
  .default-holder .item-title {
    font-size: 12pt;
  }
}
@media screen and (max-width: 680px) {
  .default-holder .item-title {
    font-size: 11pt;
  }
}
@media screen and (max-width: 425px) {
  .default-holder .item-title {
    font-size: 9pt;
  }
}

.service-container {
  display: contents;
  position: relative;
}
.service-container .circles-holder {
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  justify-content: space-evenly;
}
.service-container .circles-holder .items-holder {
  width: 100%;
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-wrap: wrap;
  justify-content: center;
}
.service-container .circles-holder .items-holder .item {
  height: 440px;
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 !important;
}
@media screen and (min-width: 1000px) {
  .service-container .circles-holder .items-holder .item {
    width: 25%;
    padding-bottom: 25%;
  }
}
@media screen and (max-width: 1000px) {
  .service-container .circles-holder .items-holder .item {
    width: 50%;
    padding-bottom: 50%;
  }
}
.service-container .circles-holder .items-holder .item p {
  font-family: "acumin-pro", OpenSansBold;
  font-weight: 700;
  width: 100%;
  font-size: 14pt;
  text-align: center;
  cursor: pointer;
}
.service-container .circles-holder .item-info {
  width: 100%;
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  padding: 40px 20% 40px 20%;
  flex-direction: column;
  color: #ffffff;
  font-family: "acumin-pro", OpenSansRegular;
  font-weight: 400;
  justify-content: center;
}
.service-container .circles-holder .item-info .title {
  font-size: 33px;
  margin-top: 0;
}
.service-container .circles-holder .item-info .btn-close {
  width: 100%;
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  justify-content: flex-end;
}
.service-container .circles-holder .item-info .btn-close .icon-close:hover {
  color: #FFFFFF;
  opacity: 0.5;
}
.service-container .circles-holder .item-info .info-holder {
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-direction: column;
}
.service-container .circles-holder .item-info .info-holder .description-holder {
  width: 75%;
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-direction: row;
  justify-content: space-between;
}
.service-container .circles-holder .item-info .info-holder .description-holder-column {
  width: 42%;
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-direction: column;
}
.service-container .circles-holder .item-info .info-holder .description-holder-column p {
  font-size: 13.5px;
  line-height: 27px;
  letter-spacing: 0.2px;
}
.service-container .circles-holder .item-info .portfolio-btn-container {
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  justify-content: flex-end;
}
.service-container .circles-holder .item-info .portfolio-btn-container .portfolio-btn {
  font-size: 13.5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
  color: #FFFFFF;
  font-family: "acumin-pro", OpenSansBold;
  font-weight: 700;
}
.service-container .circles-holder .item-info .portfolio-btn-container .portfolio-btn:hover {
  color: #FFFFFF;
  opacity: 0.5;
}
.service-container .circles-holder .item-info .portfolio-btn-container .portfolio-btn .icon-arrow-left {
  margin-left: 10px;
}
.service-container .circles-holder .item-info .portfolio-btn-container .portfolio-btn .icon-arrow-left:hover {
  color: #FFFFFF;
  opacity: 0.5;
}

.about-holder .items-holder .row {
  width: 100%;
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-wrap: wrap;
}
.about-holder .items-holder .row-align-right {
  justify-content: flex-end;
}
.about-holder .items-holder.philosophy {
  background-image: url(./../images/balao.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.about-holder .items-holder.vision .item {
  width: 100%;
  min-height: 750px;
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  justify-content: center;
}
.about-holder .items-holder.vision .item img {
  width: 100%;
  height: inherit;
}
.about-holder .items-holder.vision .item img.img-desktop {
  display: block;
}
@media screen and (max-width: 680px) {
  .about-holder .items-holder.vision .item img.img-desktop {
    display: none;
  }
}
.about-holder .items-holder.vision .item img.img-mobile {
  display: none;
  width: 80%;
}
@media screen and (max-width: 680px) {
  .about-holder .items-holder.vision .item img.img-mobile {
    display: block;
  }
}
.about-holder .items-holder.values {
  background-image: url(/images/group.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.about-holder .items-holder.hide {
  display: none;
}

.project-view .info-project {
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  justify-content: center;
  width: 100%;
  min-height: 450px;
  padding: 40px 80px;
  box-sizing: border-box;
  overflow: hidden;
}
@media screen and (max-width: 680px) {
  .project-view .info-project {
    padding: 40px 20px;
  }
}
.project-view .info-project .container-info {
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-wrap: wrap;
  color: #FFFFFF;
  font-family: "acumin-pro", OpenSansRegular;
  font-weight: 400;
}
@media screen and (max-width: 680px) {
  .project-view .info-project .container-info {
    width: 100%;
  }
}
.project-view .info-project .container-info .btn-close,
.project-view .info-project .container-info .back-container {
  width: 100%;
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  justify-content: flex-end;
  opacity: 0;
  animation: paragraphs1By1 1s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
}
.project-view .info-project .container-info .btn-close a,
.project-view .info-project .container-info .back-container a {
  text-decoration: none;
}
.project-view .info-project .container-info .btn-close i.icon-arrow-left,
.project-view .info-project .container-info .back-container i.icon-arrow-left {
  width: 25px;
  height: 25px;
  background-image: url("../images/arrow_left.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.project-view .info-project .container-info .btn-close:hover .icon-arrow-left,
.project-view .info-project .container-info .back-container:hover .icon-arrow-left {
  -webkit-animation: bounceRight;
  animation: bounceRight;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
@media screen and (max-width: 840px) {
  .project-view .info-project .container-info .btn-close,
  .project-view .info-project .container-info .back-container {
    margin-top: 20px;
  }
}
.project-view .info-project .container-info .btn-back input {
  background: none;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  font-size: 16px;
}
.project-view .info-project .container-info .btn-back:hover {
  color: #FFFFFF;
  opacity: 0.5;
}
.project-view .info-project .container-info h1 {
  margin: 0;
  height: 30px;
  font-family: "acumin-pro", OpenSansRegular;
  font-weight: 400;
  font-size: 20pt;
  margin-bottom: 20px;
  opacity: 0;
  animation: paragraphs1By1 1s;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
}
.project-view .info-project .container-info .container-description {
  width: 100%;
  column-count: 2;
  animation: paragraphs1By1 1s;
  animation-delay: 0.5s;
  opacity: 0;
  animation-fill-mode: forwards;
}
.project-view .info-project .container-info .container-description p {
  font-size: 10pt;
  width: 80%;
  min-width: 300px;
  margin: 0 30px 15px 0;
  font-size: 18px;
}
.project-view .info-project .container-info .container-description p a {
  color: #FFFFFF;
}
@media screen and (max-width: 840px) {
  .project-view .info-project .container-info .container-description p {
    width: 100%;
  }
}
@media screen and (max-width: 840px) {
  .project-view .info-project .container-info .container-description {
    column-count: 1;
  }
}
.project-view .gallery {
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-wrap: wrap;
}
.project-view .gallery .img-12 {
  width: 100%;
  object-fit: contain;
  height: 100%;
}
.project-view .gallery .img-6 {
  width: 50%;
  object-fit: contain;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .project-view .gallery .img-6 {
    width: 100%;
  }
}

@media screen and (max-width: 680px) {
  .default-holder {
    margin-bottom: 40px;
  }
  .default-holder .top-links .links-holder {
    margin-bottom: 15px;
  }
  .service-container .circles-holder .item-info {
    padding: 30px;
  }
  .service-container .circles-holder .item-info .info-holder {
    text-align: center;
  }
  .service-container .circles-holder .item-info .info-holder .title {
    font-size: 20px;
  }
  .service-container .circles-holder .item-info .info-holder .description-holder {
    width: 100%;
  }
  .service-container .circles-holder .item-info .info-holder .description-holder-column {
    justify-content: center;
  }
  .service-container .circles-holder .item-info .info-holder .description-holder-column p {
    font-size: 10px;
    line-height: 18px;
  }
  .service-container .circles-holder .item-info .portfolio-btn-container .portfolio-btn {
    font-size: 10px;
  }
}
.contact-holder .items-holder {
  overflow: hidden;
  position: relative;
  z-index: 0;
  height: 0;
  padding-bottom: 75%;
}
@media screen and (max-width: 1000px) {
  .contact-holder .items-holder {
    padding-bottom: 150%;
  }
}
@media screen and (max-width: 768px) {
  .contact-holder .items-holder {
    padding-bottom: 150%;
  }
}
.contact-holder .items-holder .map {
  height: 0;
  padding-bottom: 100%;
}
.contact-holder .items-holder .container-map .item {
  height: 0;
}
.contact-holder .items-holder .container-map .item .item-text p {
  margin: 0;
  line-height: 160%;
}
.contact-holder .items-holder .container-map .item-blue {
  background: #2d2a26;
  left: 0;
  top: 0;
  position: absolute !important;
}
.contact-holder .items-holder .container-map .item-blue .item-text {
  color: #FFFFFF;
}
.contact-holder .items-holder .container-map .item-blue .item-text .morada {
  margin-bottom: 20px;
  line-height: 1.3;
}
.contact-holder .items-holder .container-map .item-blue .item-text h4 {
  margin: 0 0 20px 0;
}
.contact-holder .items-holder .container-map .item-blue .item-text p a {
  color: #FFFFFF;
  text-decoration: none;
  cursor: pointer;
}
.contact-holder .items-holder .container-map .text-top {
  right: 0;
  top: 0;
  position: absolute !important;
  background: #FFFFFF;
}
@media screen and (max-width: 1000px) {
  .contact-holder .items-holder .container-map .text-top {
    display: none;
  }
}
.contact-holder .items-holder .container-map .text-bottom {
  background: #FFFFFF;
  bottom: 0;
  left: 50%;
  position: absolute !important;
}
.contact-holder .items-holder .container-map .text-bottom .item-text {
  font-family: "acumin-pro", OpenSansLight;
  font-weight: 300;
}
@media screen and (min-width: 1000px) {
  .contact-holder .items-holder .container-map .text-bottom .item-text {
    font-size: 30.67px;
  }
}
@media screen and (max-width: 1000px) {
  .contact-holder .items-holder .container-map .text-bottom .item-text {
    font-size: 28px;
  }
}
@media screen and (max-width: 680px) {
  .contact-holder .items-holder .container-map .text-bottom .item-text {
    font-size: 25.333px;
  }
}
@media screen and (max-width: 425px) {
  .contact-holder .items-holder .container-map .text-bottom .item-text {
    font-size: 22.67px;
  }
}

.bold {
  font-family: "acumin-pro", OpenSansBold;
  font-weight: 700;
}

.grid-footer {
  background-color: #EAEBED;
}

.footer {
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  bottom: 0;
  min-height: 240px;
  background-color: #EAEBED;
  color: #2d2a26;
}
.footer .icon-talk-with-us {
  left: 0;
  bottom: 0;
  position: absolute;
  top: unset;
}
.footer .footer-left-holder {
  height: 100%;
  width: 25%;
  position: relative;
}
.footer .footer-left-holder .link-talk {
  text-align: center;
  background-color: #65b2e8;
  position: absolute;
  height: 30px;
  bottom: 0;
  width: 45%;
  right: 0;
  font-family: "acumin-pro", OpenSansBold;
  font-weight: 700;
  font-size: 12px;
  color: white;
}
.footer .footer-left-holder .link-talk .link-talk-text {
  margin: 5px auto;
}
.footer .footer-center-holder {
  height: 100%;
  width: 65%;
  display: flex;
  font-family: "acumin-pro", OpenSansRegular;
  font-weight: 400;
  font-size: 13px;
  flex-direction: row;
  justify-content: flex-end;
}
@media screen and (max-width: 680px) {
  .footer .footer-center-holder {
    width: 100%;
    justify-content: center;
  }
}
.footer .footer-center-holder .footer-item-tab {
  padding: 0 30px 0 30px;
  margin-top: 50px;
  box-sizing: content-box;
}
.footer .footer-center-holder .footer-item-tab div .item {
  margin-top: 5px;
}
.footer .footer-center-holder .footer-item-tab a {
  cursor: pointer;
  text-decoration: none;
  color: #2d2a26;
}
.footer .footer-center-holder .footer-item-tab a:hover {
  opacity: 0.6;
}
.footer .footer-right-holder {
  width: 35%;
  min-width: 180px;
  height: auto;
  padding: 50px 30px 0 30px;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: baseline;
}
@media screen and (max-width: 680px) {
  .footer .footer-right-holder {
    width: 100%;
    padding: 0;
    margin: 20px 0 60px 0;
    justify-content: center;
  }
}
.footer .footer-right-holder .social-media {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media screen and (max-width: 680px) {
  .footer .footer-right-holder .social-media {
    justify-content: center;
    padding: 20px 0;
  }
}
.footer .footer-right-holder .social-media a {
  margin: 0 0 0 15px;
}
.footer .footer-right-holder .social-media a img {
  height: 25px;
  width: 25px;
}
.footer .footer-right-holder .register {
  font-family: "acumin-pro", OpenSansRegular;
  font-weight: 400;
  font-size: 13px;
  width: 100%;
  text-align: end;
}
@media screen and (max-width: 680px) {
  .footer .footer-right-holder .register {
    justify-content: center;
    text-align: center;
    padding: 15px;
  }
}

.content-container {
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-wrap: wrap;
  width: 53%;
  margin: 0 auto;
  justify-content: space-between;
}
.content-container .notice-container {
  width: 48%;
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-direction: column;
  margin-bottom: 60px;
}
.content-container .notice-container img {
  height: 250px;
}
.content-container .notice-container .svg {
  filter: invert(0.5);
  height: 25px;
  width: 25px;
  height: 10px;
}
.content-container .notice-container .info-container {
  font-family: "acumin-pro", OpenSansRegular;
  font-weight: 400;
  color: #2d2a26;
  margin: 35px;
}
.content-container .notice-container .info-container .title {
  font-size: 23px;
}
.content-container .notice-container .info-container .date {
  font-size: 9px;
  margin: 20px 0 10px 0;
}
.content-container .notice-container .info-container .content {
  font-size: 13px;
  text-overflow: ellipsis;
  position: relative;
  /* use this value to count block height */
  line-height: 1.2em;
  /* max-height = line-height (1.2) * lines max number (3) */
  max-height: 3.6em;
  /* fix problem when last visible word doesn't adjoin right side  */
  text-align: justify;
  /* place for '...' */
  margin-right: -1em;
  padding-right: 1em;
}

.service-container {
  position: relative;
}
.service-container .circles-holder {
  display: flex;
  justify-content: space-evenly;
  min-height: 470px;
  margin: 0 auto;
}
.service-container .circles-holder .items-holder {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.service-container .circles-holder .items-holder .item {
  height: auto;
  width: 20%;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 0 !important;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 1000px) {
  .service-container .circles-holder .items-holder .item {
    width: 25%;
    padding-bottom: 25%;
  }
}
@media screen and (max-width: 1000px) {
  .service-container .circles-holder .items-holder .item {
    width: 50%;
    padding-bottom: 50%;
  }
}
.service-container .circles-holder .items-holder .item .item-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  cursor: pointer;
}
.service-container .circles-holder .items-holder .item .item-container:hover {
  transform: scale(1.1);
}
.service-container .circles-holder .items-holder .item .item-container:hover img {
  transform: rotate(360deg);
}
.service-container .circles-holder .items-holder .item div {
  width: 100%;
  display: flex;
  justify-content: center;
}
.service-container .circles-holder .items-holder .item img {
  transition: all 0.5s cubic-bezier(0, 0, 0, 0.85);
  width: 190px;
  object-fit: contain;
}
.service-container .circles-holder .items-holder .item p {
  font-family: "acumin-pro", OpenSansBold;
  font-weight: 700;
  width: 52%;
  text-transform: uppercase;
  text-align: center;
  font-size: 18px;
}
@media only screen and (max-width: 1322px) {
  .service-container .circles-holder .items-holder .item p {
    width: 58%;
  }
}
@media only screen and (max-width: 1230px) {
  .service-container .circles-holder .items-holder .item p {
    width: 61%;
  }
}
@media only screen and (max-width: 1130px) {
  .service-container .circles-holder .items-holder .item p {
    width: 65%;
  }
}
@media only screen and (max-width: 1068px) {
  .service-container .circles-holder .items-holder .item p {
    width: 70%;
  }
}
@media only screen and (max-width: 1000px) {
  .service-container .circles-holder .items-holder .item p {
    width: 38%;
  }
}
@media only screen and (max-width: 910px) {
  .service-container .circles-holder .items-holder .item p {
    width: 41%;
  }
}
@media only screen and (max-width: 845px) {
  .service-container .circles-holder .items-holder .item p {
    width: 44%;
  }
}
@media only screen and (max-width: 788px) {
  .service-container .circles-holder .items-holder .item p {
    width: 48%;
  }
}
@media only screen and (max-width: 732px) {
  .service-container .circles-holder .items-holder .item p {
    width: 52%;
  }
}
@media only screen and (max-width: 670px) {
  .service-container .circles-holder .items-holder .item p {
    width: 56%;
  }
}
@media only screen and (max-width: 626px) {
  .service-container .circles-holder .items-holder .item p {
    width: 64%;
  }
}
@media only screen and (max-width: 544px) {
  .service-container .circles-holder .items-holder .item p {
    width: 70%;
  }
}
@media only screen and (max-width: 515px) {
  .service-container .circles-holder .items-holder .item p {
    width: 77%;
  }
}
@media only screen and (max-width: 450px) {
  .service-container .circles-holder .items-holder .item p {
    width: 85%;
  }
}
@media only screen and (max-width: 375px) {
  .service-container .circles-holder .items-holder .item p {
    width: 100%;
  }
}
.service-container .service-info-holder {
  display: flex;
  justify-content: center;
  height: auto;
  min-height: 290px;
  padding: 50px 30px;
  margin-bottom: 80px;
}
.service-container .service-info-holder .item-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  color: #ffffff;
  font-family: "acumin-pro", OpenSansRegular;
  font-weight: 400;
  font-weight: 400;
}
.service-container .service-info-holder .item-info .title {
  margin-top: 0;
}
@media screen and (min-width: 1000px) {
  .service-container .service-info-holder .item-info .title {
    font-size: 30.67px;
  }
}
@media screen and (max-width: 1000px) {
  .service-container .service-info-holder .item-info .title {
    font-size: 28px;
  }
}
@media screen and (max-width: 680px) {
  .service-container .service-info-holder .item-info .title {
    font-size: 25.333px;
  }
}
@media screen and (max-width: 425px) {
  .service-container .service-info-holder .item-info .title {
    font-size: 22.67px;
  }
}
.service-container .service-info-holder .item-info .btn-close {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.service-container .service-info-holder .item-info .btn-close .icon-close:hover {
  color: #FFFFFF;
  opacity: 0.5;
}
.service-container .service-info-holder .item-info .info-holder {
  display: flex;
  flex-direction: column;
}
.service-container .service-info-holder .item-info .info-holder .description-holder {
  width: 80%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}
.service-container .service-info-holder .item-info .info-holder .description-holder-column {
  width: 45%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .service-container .service-info-holder .item-info .info-holder .description-holder-column {
    width: 100%;
  }
}
.service-container .service-info-holder .item-info .info-holder .description-holder-column p {
  line-height: 27px;
  letter-spacing: 0.2px;
}
@media screen and (min-width: 1000px) {
  .service-container .service-info-holder .item-info .info-holder .description-holder-column p {
    font-size: 18px;
  }
}
@media screen and (max-width: 1000px) {
  .service-container .service-info-holder .item-info .info-holder .description-holder-column p {
    font-size: 11pt;
  }
}
@media screen and (max-width: 680px) {
  .service-container .service-info-holder .item-info .info-holder .description-holder-column p {
    font-size: 10pt;
  }
}
@media screen and (max-width: 425px) {
  .service-container .service-info-holder .item-info .info-holder .description-holder-column p {
    font-size: 8.5pt;
  }
}
@media screen and (max-width: 768px) {
  .service-container .service-info-holder .item-info .info-holder .description-holder-column p {
    width: 100%;
    text-align: left;
  }
}
.service-container .service-info-holder .item-info .portfolio-btn-container {
  display: flex;
  justify-content: flex-end;
}
.service-container .service-info-holder .item-info .portfolio-btn-container .portfolio-btn {
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
  color: #FFFFFF;
  font-family: "acumin-pro", OpenSansBold;
  font-weight: 700;
  font-weight: 700;
}
@media screen and (min-width: 1000px) {
  .service-container .service-info-holder .item-info .portfolio-btn-container .portfolio-btn {
    font-size: 18px;
  }
}
@media screen and (max-width: 1000px) {
  .service-container .service-info-holder .item-info .portfolio-btn-container .portfolio-btn {
    font-size: 11pt;
  }
}
@media screen and (max-width: 680px) {
  .service-container .service-info-holder .item-info .portfolio-btn-container .portfolio-btn {
    font-size: 10pt;
  }
}
@media screen and (max-width: 425px) {
  .service-container .service-info-holder .item-info .portfolio-btn-container .portfolio-btn {
    font-size: 8.5pt;
  }
}
.service-container .service-info-holder .item-info .portfolio-btn-container .portfolio-btn a {
  text-decoration: none;
}
.service-container .service-info-holder .item-info .portfolio-btn-container .portfolio-btn:hover {
  color: #FFFFFF;
  opacity: 0.5;
}
.service-container .service-info-holder .item-info .portfolio-btn-container .portfolio-btn:hover .icon-arrow-left {
  color: #FFFFFF;
  opacity: 0.5;
}
.service-container .service-info-holder .item-info .portfolio-btn-container .portfolio-btn:hover .icon-arrow-left {
  -webkit-animation: bounceRight;
  animation: bounceRight;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: 0.5;
}
.service-container .service-info-holder .item-info .portfolio-btn-container .portfolio-btn .icon-arrow-left {
  margin-left: 10px;
}

@media screen and (max-width: 1000px) {
  .service-container .circles-holder {
    margin: 60px auto;
  }
  .service-container .service-info-holder {
    height: 450px;
    padding: 40px 25px;
    margin-bottom: 60px;
  }
  .service-container .service-info-holder .item-info {
    justify-content: space-between;
  }
}
@media screen and (max-width: 680px) {
  .item-info .info-holder {
    text-align: center;
  }
  .item-info .info-holder .description-holder {
    width: 100% !important;
  }
  .item-info .info-holder .description-holder-column {
    justify-content: center;
  }
  .item-info .info-holder .description-holder-column p {
    line-height: 18px;
  }
}
.privacy-container {
  max-width: 1400px;
  margin: 0 auto 50px;
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-direction: column;
  color: #2d2a26;
  padding: 0 30px;
}
.privacy-container h1, .privacy-container h2, .privacy-container h3, .privacy-container h4 {
  font-family: "acumin-pro", OpenSansBold;
  font-weight: 700;
  font-size: 25pt;
}
.privacy-container span {
  font-family: "acumin-pro", OpenSansRegular;
  font-weight: 400;
  font-size: 10pt;
  margin: 0 0 60px 0;
}

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