@charset "UTF-8";
/*
Theme Name: GraphCAT · The Graphene Community of Catalonia
Author: Bogart y Bacall
Author URI: https://wordpress.org/
Description: QuantumCAT Theme is a customized version of Twenty Sixteen template.
Version: 2020
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/
/******************************MIXINS******************************/
/******************************WOW******************************/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}

@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    -ms-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    -ms-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    -ms-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    -ms-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    -ms-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    -ms-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    -ms-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
}

@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

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

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

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

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    -ms-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    -ms-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    -ms-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    -ms-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    -ms-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    -ms-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    -ms-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate(80deg);
    -ms-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40% {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    -ms-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translateY(700px);
    -ms-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    -ms-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    -ms-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@keyframes fondoLeftIn {
  0% {
    opacity: 0;
    width: 0%;
  }
  100% {
    width: 150%;
  }
}

.fondoLeftIn {
  -webkit-animation-name: fondoLeftIn;
  animation-name: fondoLeftIn;
}

@keyframes fondoRightIn {
  0% {
    opacity: 0;
    width: 0%;
  }
  100% {
    width: 150%;
  }
}

.fondoRightIn {
  -webkit-animation-name: fondoRightIn;
  animation-name: fondoRightIn;
}

/*Variables*/
[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@font-face {
  font-family: 'icomoon';
  src: url("/wp-content/themes/graphcat/fonts/icomoon.eot?ql7yuo");
  src: url("/wp-content/themes/graphcat/fonts/icomoon.eot?ql7yuo#iefix") format("embedded-opentype"), url("/wp-content/themes/graphcat/fonts/icomoon.ttf?ql7yuo") format("truetype"), url("/wp-content/themes/graphcat/fonts/icomoon.woff?ql7yuo") format("woff"), url("/wp-content/themes/graphcat/fonts/icomoon.svg?ql7yuo#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

.icon-ico-logo:before {
  content: "\e900";
}

.icon-ico-up:before {
  content: "\e901";
}

.icon-ico-down:before {
  content: "\e902";
}

.icon-ico-right:before {
  content: "\e903";
}

.icon-ico-left:before {
  content: "\e904";
}

.icon-ico-close:before {
  content: "\e905";
}

.icon-ico-phone:before {
  content: "\e906";
}

.icon-facebook:before {
  content: "\e907";
}

.icon-twitter:before {
  content: "\e908";
}

.icon-instagram:before {
  content: "\e909";
}

.icon-linkedin:before {
  content: "\e90a";
}

.icon-ico-user:before {
  content: "\e90b";
}

.icon-ico-mas:before {
  content: "\e90c";
}

.icon-ico-menos:before {
  content: "\e90d";
}

.icon-ico-search:before {
  content: "\e90e";
}

/*General*/
* {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}

@media only screen and (max-width: 1360px) {
  * {
    text-rendering: auto;
  }
}

*, *::after, *::before {
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
}

body {
  background: white;
  font-family: "Mulish", sans-serif;
  font-weight: 500;
  color: #11184a;
  font-size: 16px;
  line-height: 24px;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  position: relative;
  overflow-x: hidden;
}

@media only screen and (max-width: 991px) {
  body {
    padding-top: 50px;
  }
}

body:before {
  content: "";
  display: block;
  background: #171f56;
  width: 100%;
  height: 100vh;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transform: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  filter: alpha(opacity=0);
}

@media only screen and (max-width: 991px) {
  body {
    font-size: 15px;
    line-height: 22px;
  }
}

@media only screen and (max-width: 767px) {
  body {
    font-size: 14px;
    line-height: 20px;
  }
}

div {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5 {
  color: #26b5f3;
  font-family: "Mulish", sans-serif;
  font-weight: 800;
  margin: 0 0 20px 0;
  padding: 0;
}

h1 {
  font-size: 50px;
  line-height: 55px;
}

@media only screen and (max-width: 1360px) {
  h1 {
    font-size: 45px;
    line-height: 50px;
  }
}

@media only screen and (max-width: 1199px) {
  h1 {
    font-size: 40px;
    line-height: 45px;
  }
}

@media only screen and (max-width: 991px) {
  h1 {
    font-size: 35px;
    line-height: 40px;
  }
}

@media only screen and (max-width: 600px) {
  h1 {
    font-size: 30px;
    line-height: 35px;
  }
}

h2 {
  font-size: 40px;
  line-height: 45px;
}

@media only screen and (max-width: 1360px) {
  h2 {
    font-size: 36px;
    line-height: 42px;
  }
}

@media only screen and (max-width: 1199px) {
  h2 {
    font-size: 32px;
    line-height: 38px;
  }
}

@media only screen and (max-width: 991px) {
  h2 {
    font-size: 28px;
    line-height: 34px;
  }
}

@media only screen and (max-width: 600px) {
  h2 {
    font-size: 24px;
    line-height: 30px;
  }
}

h3 {
  font-size: 30px;
  line-height: 35px;
}

@media only screen and (max-width: 1360px) {
  h3 {
    font-size: 28px;
    line-height: 32px;
  }
}

@media only screen and (max-width: 1199px) {
  h3 {
    font-size: 26px;
    line-height: 30px;
  }
}

@media only screen and (max-width: 991px) {
  h3 {
    font-size: 24px;
    line-height: 28px;
  }
}

@media only screen and (max-width: 600px) {
  h3 {
    font-size: 22px;
    line-height: 26px;
  }
}

h4, h5 {
  font-size: 25px;
  line-height: 30px;
}

@media only screen and (max-width: 1360px) {
  h4, h5 {
    font-size: 24px;
    line-height: 28px;
  }
}

@media only screen and (max-width: 1199px) {
  h4, h5 {
    font-size: 22px;
    line-height: 26px;
  }
}

@media only screen and (max-width: 991px) {
  h4, h5 {
    font-size: 21px;
    line-height: 25px;
  }
}

@media only screen and (max-width: 600px) {
  h4, h5 {
    font-size: 20px;
    line-height: 24px;
  }
}

ul {
  margin: 0;
  padding: 0;
}

ul li {
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

@media only screen and (max-width: 991px) {
  ul li {
    font-size: 15px;
    line-height: 22px;
  }
}

@media only screen and (max-width: 767px) {
  ul li {
    font-size: 14px;
    line-height: 20px;
  }
}

ul li strong {
  font-weight: 700;
}

p {
  margin: 0 0 20px 0;
  padding: 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

@media only screen and (max-width: 991px) {
  p {
    font-size: 15px;
    line-height: 22px;
  }
}

@media only screen and (max-width: 767px) {
  p {
    font-size: 14px;
    line-height: 20px;
  }
}

p strong {
  font-weight: 700;
}

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

a {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transform: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  outline: none;
  text-decoration: none;
  position: relative;
}

@media only screen and (max-width: 767px) {
  a {
    -webkit-transition: all 0s ease;
    -moz-transition: all 0s ease;
    -ms-transform: all 0s ease;
    -o-transition: all 0s ease;
    transition: all 0s ease;
  }
}

:active, :focus {
  border: 0;
  outline: none;
}

.simple-button {
  color: #26b5f3;
  font-weight: 700;
  position: relative;
}

.simple-button:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  background-color: #26b5f3;
  -webkit-transition: transform 0.2s;
  -moz-transition: transform 0.2s;
  -ms-transform: transform 0.2s;
  -o-transition: transform 0.2s;
  transition: transform 0.2s;
}

.simple-button:hover {
  color: #26b5f3;
}

@media only screen and (max-width: 991px) {
  .simple-button:hover {
    color: white;
  }
}

.simple-button:hover:after {
  transform: scaleX(1);
  background: #26b5f3;
}

@media only screen and (max-width: 991px) {
  .simple-button:hover:after {
    transform: scaleX(0);
  }
}

.button {
  font-size: 16px;
  line-height: 36px;
  color: white;
  font-weight: 700;
  position: relative;
  display: table;
  background: #26b5f3;
  height: 36px;
  padding: 0 30px;
  border-radius: 18px;
}

.button:hover {
  background: #85daff;
}

@media only screen and (max-width: 991px) {
  .button:hover {
    background: #26b5f3;
  }
}

.results-button {
  font-size: 15px;
  color: #26b5f3;
  font-weight: 700;
  padding: 0 0 0 30px;
  position: relative;
}

.results-button:before {
  font-family: "icomoon";
  content: "\e903";
  font-size: 9px;
  color: #171f56;
  background: #26b5f3;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  display: block;
  line-height: 21px;
  position: absolute;
  left: 0;
  top: 0;
  text-align: center;
}

select, textarea, input {
  -webkit-appearance: none;
  border-radius: 0;
}

input[type="checkbox"] {
  -webkit-appearance: checkbox;
}

section, footer {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: auto;
  padding: 120px 0;
}

@media only screen and (max-width: 1199px) {
  section, footer {
    padding: 80px 0;
  }
}

@media only screen and (max-width: 991px) {
  section, footer {
    padding: 60px 0;
  }
}

@media only screen and (max-width: 767px) {
  section, footer {
    padding: 40px 0;
  }
}

@media only screen and (max-width: 600px) {
  section, footer {
    padding: 30px 0;
  }
}

section .container, section .container-mini, footer .container, footer .container-mini {
  max-width: 1290px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

@media only screen and (max-width: 1360px) {
  section .container, section .container-mini, footer .container, footer .container-mini {
    max-width: 1160px;
  }
}

@media only screen and (max-width: 991px) {
  section .container, section .container-mini, footer .container, footer .container-mini {
    padding: 0 20px;
  }
}

section .container .row, section .container-mini .row, footer .container .row, footer .container-mini .row {
  margin-left: -20px;
  margin-right: -20px;
  max-width: none;
  display: flex;
  flex-wrap: wrap;
}

@media only screen and (max-width: 1199px) {
  section .container .row, section .container-mini .row, footer .container .row, footer .container-mini .row {
    margin-left: -10px;
    margin-right: -10px;
  }
}

section .container .row .col, section .container-mini .row .col, footer .container .row .col, footer .container-mini .row .col {
  position: relative;
  padding: 0 20px;
}

@media only screen and (max-width: 1199px) {
  section .container .row .col, section .container-mini .row .col, footer .container .row .col, footer .container-mini .row .col {
    padding: 0 10px;
  }
}

@media only screen and (max-width: 600px) {
  section .container .row .col, section .container-mini .row .col, footer .container .row .col, footer .container-mini .row .col {
    margin-top: 20px;
  }
}

section .container .row .col.col12, section .container-mini .row .col.col12, footer .container .row .col.col12, footer .container-mini .row .col.col12 {
  width: 12.5%;
}

@media only screen and (max-width: 767px) {
  section .container .row .col.col12, section .container-mini .row .col.col12, footer .container .row .col.col12, footer .container-mini .row .col.col12 {
    margin-top: 20px;
    width: 50%;
  }
}

@media only screen and (max-width: 600px) {
  section .container .row .col.col12, section .container-mini .row .col.col12, footer .container .row .col.col12, footer .container-mini .row .col.col12 {
    width: 100%;
  }
}

section .container .row .col.col20, section .container-mini .row .col.col20, footer .container .row .col.col20, footer .container-mini .row .col.col20 {
  width: 20%;
}

@media only screen and (max-width: 767px) {
  section .container .row .col.col20, section .container-mini .row .col.col20, footer .container .row .col.col20, footer .container-mini .row .col.col20 {
    margin-top: 20px;
    width: 50%;
  }
}

@media only screen and (max-width: 600px) {
  section .container .row .col.col20, section .container-mini .row .col.col20, footer .container .row .col.col20, footer .container-mini .row .col.col20 {
    width: 100%;
  }
}

section .container .row .col.col25, section .container-mini .row .col.col25, footer .container .row .col.col25, footer .container-mini .row .col.col25 {
  width: 25%;
}

@media only screen and (max-width: 767px) {
  section .container .row .col.col25, section .container-mini .row .col.col25, footer .container .row .col.col25, footer .container-mini .row .col.col25 {
    margin-top: 20px;
    width: 50%;
  }
}

@media only screen and (max-width: 600px) {
  section .container .row .col.col25, section .container-mini .row .col.col25, footer .container .row .col.col25, footer .container-mini .row .col.col25 {
    width: 100%;
  }
}

section .container .row .col.col33, section .container-mini .row .col.col33, footer .container .row .col.col33, footer .container-mini .row .col.col33 {
  width: 33.3333%;
}

@media only screen and (max-width: 767px) {
  section .container .row .col.col33, section .container-mini .row .col.col33, footer .container .row .col.col33, footer .container-mini .row .col.col33 {
    width: 50%;
  }
}

@media only screen and (max-width: 600px) {
  section .container .row .col.col33, section .container-mini .row .col.col33, footer .container .row .col.col33, footer .container-mini .row .col.col33 {
    width: 100%;
  }
}

section .container .row .col.col40, section .container-mini .row .col.col40, footer .container .row .col.col40, footer .container-mini .row .col.col40 {
  width: 40%;
}

@media only screen and (max-width: 767px) {
  section .container .row .col.col40, section .container-mini .row .col.col40, footer .container .row .col.col40, footer .container-mini .row .col.col40 {
    width: 50%;
  }
}

@media only screen and (max-width: 600px) {
  section .container .row .col.col40, section .container-mini .row .col.col40, footer .container .row .col.col40, footer .container-mini .row .col.col40 {
    width: 100%;
  }
}

section .container .row .col.col50, section .container-mini .row .col.col50, footer .container .row .col.col50, footer .container-mini .row .col.col50 {
  width: 50%;
}

@media only screen and (max-width: 767px) {
  section .container .row .col.col50, section .container-mini .row .col.col50, footer .container .row .col.col50, footer .container-mini .row .col.col50 {
    width: 50%;
  }
}

@media only screen and (max-width: 600px) {
  section .container .row .col.col50, section .container-mini .row .col.col50, footer .container .row .col.col50, footer .container-mini .row .col.col50 {
    width: 100%;
  }
}

section .container .row .col.col60, section .container-mini .row .col.col60, footer .container .row .col.col60, footer .container-mini .row .col.col60 {
  width: 60%;
}

@media only screen and (max-width: 767px) {
  section .container .row .col.col60, section .container-mini .row .col.col60, footer .container .row .col.col60, footer .container-mini .row .col.col60 {
    width: 50%;
  }
}

@media only screen and (max-width: 600px) {
  section .container .row .col.col60, section .container-mini .row .col.col60, footer .container .row .col.col60, footer .container-mini .row .col.col60 {
    width: 100%;
  }
}

section .container .row .col.col66, section .container-mini .row .col.col66, footer .container .row .col.col66, footer .container-mini .row .col.col66 {
  width: 66.6666%;
}

@media only screen and (max-width: 767px) {
  section .container .row .col.col66, section .container-mini .row .col.col66, footer .container .row .col.col66, footer .container-mini .row .col.col66 {
    width: 50%;
  }
}

@media only screen and (max-width: 600px) {
  section .container .row .col.col66, section .container-mini .row .col.col66, footer .container .row .col.col66, footer .container-mini .row .col.col66 {
    width: 100%;
  }
}

section .container-mini, footer .container-mini {
  max-width: 750px;
}

.marks {
  height: 100vh;
  width: 1px;
  background: #63a8e3;
  opacity: 0.25;
  filter: alpha(opacity=25);
  display: block;
  position: fixed;
  top: 0;
  left: calc(50% - 645px);
  z-index: 23;
}

@media only screen and (max-width: 1360px) {
  .marks {
    left: calc(50% - 580px);
  }
}

@media only screen and (max-width: 991px) {
  .marks {
    display: none;
  }
}

@media only screen and (max-width: 1199px) {
  .marks.mark1 {
    display: none;
  }
}

.marks.mark2 {
  left: calc(50% - 215px);
}

@media only screen and (max-width: 1360px) {
  .marks.mark2 {
    left: calc(50% - 195px);
  }
}

@media only screen and (max-width: 1199px) {
  .marks.mark2 {
    left: calc(33.3% - 1px);
  }
}

.marks.mark3 {
  left: calc(50% + 215px);
}

@media only screen and (max-width: 1360px) {
  .marks.mark3 {
    left: calc(50% + 195px);
  }
}

@media only screen and (max-width: 1199px) {
  .marks.mark3 {
    left: calc(66.6% - 3px);
  }
}

.marks.mark4 {
  left: calc(50% + 645px);
}

@media only screen and (max-width: 1360px) {
  .marks.mark4 {
    left: calc(50% + 580px);
  }
}

@media only screen and (max-width: 1199px) {
  .marks.mark4 {
    display: none;
  }
}

.toggle .toggle-title {
  cursor: pointer;
  height: 36px;
}

.toggle .toggle-title p {
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
  margin: 0;
  color: #26b5f3;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transform: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.toggle .toggle-title p span {
  display: inline-block;
  width: 24px;
  height: 24px;
  text-align: center;
  border-radius: 50%;
  background: #26b5f3;
  position: relative;
  top: 0;
  left: 10px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transform: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.toggle .toggle-title p span:before {
  font-family: "icomoon";
  content: "\e90c";
  font-size: 12px;
  line-height: 24px;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transform: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.toggle .toggle-title:hover p {
  color: #85daff;
}

@media only screen and (max-width: 991px) {
  .toggle .toggle-title:hover p {
    color: #26b5f3;
  }
}

.toggle .toggle-title.active p span:before {
  content: "\e90d";
}

.toggle .toggle-inner {
  display: none;
  margin: 0;
}

/*Header*/
.header {
  width: 100%;
  height: 100px;
  position: absolute;
  background-color: transparent;
  top: 0;
  left: 0;
  z-index: 22;
}

@media only screen and (max-width: 1199px) {
  .header {
    height: 90px;
  }
}

@media only screen and (max-width: 991px) {
  .header {
    background: #11184a;
    position: fixed;
    height: 60px;
  }
}

.header .navbar {
  max-width: 1250px;
  height: 100px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  overflow: visible;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

@media only screen and (max-width: 1360px) {
  .header .navbar {
    max-width: 1130px;
  }
}

@media only screen and (max-width: 1199px) {
  .header .navbar {
    padding: 0 20px;
    height: 90px;
  }
}

@media only screen and (max-width: 991px) {
  .header .navbar {
    height: 60px;
    width: 100%;
    margin: 0;
    padding: 0 20px;
  }
}

.header .navbar .logo {
  height: 60px;
  width: 100px;
  display: block;
  margin: 20px 0;
}

@media only screen and (max-width: 1199px) {
  .header .navbar .logo {
    margin: 15px 0;
  }
}

@media only screen and (max-width: 991px) {
  .header .navbar .logo {
    height: 30px;
    width: 125px;
  }
}

.header .navbar .logo a {
  display: block;
  height: 60px;
  width: 100px;
}

@media only screen and (max-width: 991px) {
  .header .navbar .logo a {
    height: 30px;
    width: 125px;
  }
}

.header .navbar .logo a span {
  background-image: url("/wp-content/themes/graphcat/img/logo-white.svg");
  display: block;
  background-size: 100px 60px;
  height: 60px;
  width: 100px;
}

@media only screen and (max-width: 991px) {
  .header .navbar .logo a span {
    background-image: url("/wp-content/themes/graphcat/img/logo-mobile.svg");
    background-size: 125px 30px;
    height: 30px;
    width: 125px;
  }
}

.header .navbar .header-icon {
  display: none;
}

@media only screen and (max-width: 991px) {
  .header .navbar .header-icon {
    display: block;
  }
}

.header .navbar .nav {
  width: calc(100% - 100px);
  margin: 0;
  position: relative;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transform: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (max-width: 991px) {
  .header .navbar .nav {
    position: fixed;
    top: 60px;
    display: block;
    height: calc(100vh - 60px);
    margin: 0;
    right: -400px;
    width: 300px;
    -webkit-transition: right 0.3s ease;
    -moz-transition: right 0.3s ease;
    -ms-transform: right 0.3s ease;
    -o-transition: right 0.3s ease;
    transition: right 0.3s ease;
    background: #1e3885;
  }
}

.header .navbar .nav .menu-menu-en-container, .header .navbar .nav .menu-menu-es-container, .header .navbar .nav .menu-menu-ca-container {
  display: inline-block;
}

@media only screen and (max-width: 991px) {
  .header .navbar .nav .menu-menu-en-container, .header .navbar .nav .menu-menu-es-container, .header .navbar .nav .menu-menu-ca-container {
    display: block;
  }
}

@media only screen and (max-width: 1199px) {
  .header .navbar .nav .menu-menu-en-container ul, .header .navbar .nav .menu-menu-es-container ul, .header .navbar .nav .menu-menu-ca-container ul {
    margin: 0;
  }
}

.header .navbar .nav .menu-menu-en-container ul li, .header .navbar .nav .menu-menu-es-container ul li, .header .navbar .nav .menu-menu-ca-container ul li {
  display: inline-block;
  padding: 10px 0 0 50px;
}

@media only screen and (max-width: 1199px) {
  .header .navbar .nav .menu-menu-en-container ul li, .header .navbar .nav .menu-menu-es-container ul li, .header .navbar .nav .menu-menu-ca-container ul li {
    padding: 12px 0 0 30px;
  }
}

@media only screen and (max-width: 991px) {
  .header .navbar .nav .menu-menu-en-container ul li, .header .navbar .nav .menu-menu-es-container ul li, .header .navbar .nav .menu-menu-ca-container ul li {
    padding: 0;
    display: block;
    border-bottom: 1px solid #171f56;
  }
}

.header .navbar .nav .menu-menu-en-container ul li a, .header .navbar .nav .menu-menu-es-container ul li a, .header .navbar .nav .menu-menu-ca-container ul li a {
  font-size: 15px;
  line-height: 15px;
  font-weight: 700;
  color: white;
  display: block;
  padding: 0 0 10px 0;
}

@media only screen and (max-width: 991px) {
  .header .navbar .nav .menu-menu-en-container ul li a, .header .navbar .nav .menu-menu-es-container ul li a, .header .navbar .nav .menu-menu-ca-container ul li a {
    text-align: left;
    color: white;
    padding: 15px 20px;
  }
}

.header .navbar .nav .menu-menu-en-container ul li a:before, .header .navbar .nav .menu-menu-es-container ul li a:before, .header .navbar .nav .menu-menu-ca-container ul li a:before {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  background-color: #26b5f3;
  -webkit-transition: transform 0.2s;
  -moz-transition: transform 0.2s;
  -ms-transform: transform 0.2s;
  -o-transition: transform 0.2s;
  transition: transform 0.2s;
}

.header .navbar .nav .menu-menu-en-container ul li a:hover, .header .navbar .nav .menu-menu-es-container ul li a:hover, .header .navbar .nav .menu-menu-ca-container ul li a:hover {
  color: #26b5f3;
}

@media only screen and (max-width: 991px) {
  .header .navbar .nav .menu-menu-en-container ul li a:hover, .header .navbar .nav .menu-menu-es-container ul li a:hover, .header .navbar .nav .menu-menu-ca-container ul li a:hover {
    color: white;
  }
}

.header .navbar .nav .menu-menu-en-container ul li a:hover:before, .header .navbar .nav .menu-menu-es-container ul li a:hover:before, .header .navbar .nav .menu-menu-ca-container ul li a:hover:before {
  transform: scaleX(1);
  background: #26b5f3;
}

@media only screen and (max-width: 991px) {
  .header .navbar .nav .menu-menu-en-container ul li a:hover:before, .header .navbar .nav .menu-menu-es-container ul li a:hover:before, .header .navbar .nav .menu-menu-ca-container ul li a:hover:before {
    transform: scaleX(0);
  }
}

@media only screen and (max-width: 991px) {
  .header .navbar .nav .menu-menu-en-container ul li.current-menu-item, .header .navbar .nav .menu-menu-es-container ul li.current-menu-item, .header .navbar .nav .menu-menu-ca-container ul li.current-menu-item {
    background: #26b5f3;
  }
}

.header .navbar .nav .menu-menu-en-container ul li.current-menu-item a, .header .navbar .nav .menu-menu-es-container ul li.current-menu-item a, .header .navbar .nav .menu-menu-ca-container ul li.current-menu-item a {
  color: #26b5f3;
}

@media only screen and (max-width: 991px) {
  .header .navbar .nav .menu-menu-en-container ul li.current-menu-item a, .header .navbar .nav .menu-menu-es-container ul li.current-menu-item a, .header .navbar .nav .menu-menu-ca-container ul li.current-menu-item a {
    color: #11184a;
  }
}

.header .navbar .nav .menu-menu-en-container ul li.current-menu-item a:before, .header .navbar .nav .menu-menu-es-container ul li.current-menu-item a:before, .header .navbar .nav .menu-menu-ca-container ul li.current-menu-item a:before {
  transform: scaleX(1);
  background: #26b5f3;
}

@media only screen and (max-width: 991px) {
  .header .navbar .nav .menu-menu-en-container ul li.current-menu-item a:before, .header .navbar .nav .menu-menu-es-container ul li.current-menu-item a:before, .header .navbar .nav .menu-menu-ca-container ul li.current-menu-item a:before {
    transform: scaleX(0);
  }
}

.header .navbar .nav .menu-menu-en-container ul li.menu-item-has-children, .header .navbar .nav .menu-menu-es-container ul li.menu-item-has-children, .header .navbar .nav .menu-menu-ca-container ul li.menu-item-has-children {
  position: relative;
}

.header .navbar .nav .menu-menu-en-container ul li.menu-item-has-children a, .header .navbar .nav .menu-menu-es-container ul li.menu-item-has-children a, .header .navbar .nav .menu-menu-ca-container ul li.menu-item-has-children a {
  padding-right: 20px;
}

.header .navbar .nav .menu-menu-en-container ul li.menu-item-has-children a:after, .header .navbar .nav .menu-menu-es-container ul li.menu-item-has-children a:after, .header .navbar .nav .menu-menu-ca-container ul li.menu-item-has-children a:after {
  font-family: "icomoon";
  font-size: 12px;
  content: "\e902";
  position: absolute;
  right: 0px;
  top: 2px;
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transform: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (max-width: 991px) {
  .header .navbar .nav .menu-menu-en-container ul li.menu-item-has-children a:after, .header .navbar .nav .menu-menu-es-container ul li.menu-item-has-children a:after, .header .navbar .nav .menu-menu-ca-container ul li.menu-item-has-children a:after {
    display: none;
  }
}

.header .navbar .nav .menu-menu-en-container ul li.menu-item-has-children .dropdown-toggle, .header .navbar .nav .menu-menu-es-container ul li.menu-item-has-children .dropdown-toggle, .header .navbar .nav .menu-menu-ca-container ul li.menu-item-has-children .dropdown-toggle {
  display: none;
}

.header .navbar .nav .menu-menu-en-container ul li.menu-item-has-children .sub-menu, .header .navbar .nav .menu-menu-es-container ul li.menu-item-has-children .sub-menu, .header .navbar .nav .menu-menu-ca-container ul li.menu-item-has-children .sub-menu {
  position: absolute;
  width: auto;
  right: -30px;
  top: -1127px;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transform: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  text-align: center;
}

@media only screen and (max-width: 991px) {
  .header .navbar .nav .menu-menu-en-container ul li.menu-item-has-children .sub-menu, .header .navbar .nav .menu-menu-es-container ul li.menu-item-has-children .sub-menu, .header .navbar .nav .menu-menu-ca-container ul li.menu-item-has-children .sub-menu {
    display: block;
    position: initial;
    top: initial;
    right: initial;
    opacity: 1;
    filter: alpha(opacity=100);
    border-top: 1px solid #171f56;
  }
}

.header .navbar .nav .menu-menu-en-container ul li.menu-item-has-children .sub-menu li, .header .navbar .nav .menu-menu-es-container ul li.menu-item-has-children .sub-menu li, .header .navbar .nav .menu-menu-ca-container ul li.menu-item-has-children .sub-menu li {
  position: relative;
  width: 100%;
  padding: 0;
}

.header .navbar .nav .menu-menu-en-container ul li.menu-item-has-children .sub-menu li:last-child, .header .navbar .nav .menu-menu-es-container ul li.menu-item-has-children .sub-menu li:last-child, .header .navbar .nav .menu-menu-ca-container ul li.menu-item-has-children .sub-menu li:last-child {
  border-bottom: 0;
}

.header .navbar .nav .menu-menu-en-container ul li.menu-item-has-children .sub-menu li a, .header .navbar .nav .menu-menu-es-container ul li.menu-item-has-children .sub-menu li a, .header .navbar .nav .menu-menu-ca-container ul li.menu-item-has-children .sub-menu li a {
  text-transform: inherit;
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 0;
  padding: 10px;
  width: 100%;
  display: block;
  color: white !important;
  background: #11184a;
}

@media only screen and (max-width: 991px) {
  .header .navbar .nav .menu-menu-en-container ul li.menu-item-has-children .sub-menu li a, .header .navbar .nav .menu-menu-es-container ul li.menu-item-has-children .sub-menu li a, .header .navbar .nav .menu-menu-ca-container ul li.menu-item-has-children .sub-menu li a {
    background: #27459e;
    color: white;
    padding: 10px 20px 10px 40px;
  }
}

.header .navbar .nav .menu-menu-en-container ul li.menu-item-has-children .sub-menu li a:after, .header .navbar .nav .menu-menu-en-container ul li.menu-item-has-children .sub-menu li a:before, .header .navbar .nav .menu-menu-es-container ul li.menu-item-has-children .sub-menu li a:after, .header .navbar .nav .menu-menu-es-container ul li.menu-item-has-children .sub-menu li a:before, .header .navbar .nav .menu-menu-ca-container ul li.menu-item-has-children .sub-menu li a:after, .header .navbar .nav .menu-menu-ca-container ul li.menu-item-has-children .sub-menu li a:before {
  content: none !important;
}

.header .navbar .nav .menu-menu-en-container ul li.menu-item-has-children .sub-menu li.current-menu-item a, .header .navbar .nav .menu-menu-es-container ul li.menu-item-has-children .sub-menu li.current-menu-item a, .header .navbar .nav .menu-menu-ca-container ul li.menu-item-has-children .sub-menu li.current-menu-item a {
  background: #1e3885;
}

@media only screen and (max-width: 991px) {
  .header .navbar .nav .menu-menu-en-container ul li.menu-item-has-children .sub-menu li.current-menu-item a, .header .navbar .nav .menu-menu-es-container ul li.menu-item-has-children .sub-menu li.current-menu-item a, .header .navbar .nav .menu-menu-ca-container ul li.menu-item-has-children .sub-menu li.current-menu-item a {
    background: #26b5f3;
    color: #171f56 !important;
  }
}

.header .navbar .nav .menu-menu-en-container ul li.menu-item-has-children:hover a:after, .header .navbar .nav .menu-menu-es-container ul li.menu-item-has-children:hover a:after, .header .navbar .nav .menu-menu-ca-container ul li.menu-item-has-children:hover a:after {
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.header .navbar .nav .menu-menu-en-container ul li.menu-item-has-children:hover .sub-menu, .header .navbar .nav .menu-menu-es-container ul li.menu-item-has-children:hover .sub-menu, .header .navbar .nav .menu-menu-ca-container ul li.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  filter: alpha(opacity=100);
  top: 35px;
}

@media only screen and (max-width: 991px) {
  .header .navbar .nav .menu-menu-en-container ul li.menu-item-has-children:hover .sub-menu, .header .navbar .nav .menu-menu-es-container ul li.menu-item-has-children:hover .sub-menu, .header .navbar .nav .menu-menu-ca-container ul li.menu-item-has-children:hover .sub-menu {
    top: inherit;
  }
}

.header .navbar .nav .menu-menu-en-container ul li.menu-item-has-children:hover .sub-menu li a:hover, .header .navbar .nav .menu-menu-es-container ul li.menu-item-has-children:hover .sub-menu li a:hover, .header .navbar .nav .menu-menu-ca-container ul li.menu-item-has-children:hover .sub-menu li a:hover {
  background: #26b5f3;
  color: #171f56 !important;
}

@media only screen and (max-width: 991px) {
  .header .navbar .nav .menu-menu-en-container ul li.menu-item-has-children:hover .sub-menu li a:hover, .header .navbar .nav .menu-menu-es-container ul li.menu-item-has-children:hover .sub-menu li a:hover, .header .navbar .nav .menu-menu-ca-container ul li.menu-item-has-children:hover .sub-menu li a:hover {
    background: #27459e;
    color: white !important;
  }
}

.header .navbar .nav .menu-menu-en-container ul li.menu-item-has-children:hover .sub-menu li.current-menu-item a, .header .navbar .nav .menu-menu-es-container ul li.menu-item-has-children:hover .sub-menu li.current-menu-item a, .header .navbar .nav .menu-menu-ca-container ul li.menu-item-has-children:hover .sub-menu li.current-menu-item a {
  background: #26b5f3;
  color: #171f56 !important;
}

@media only screen and (max-width: 991px) {
  .header .navbar .nav .menu-menu-en-container ul li.menu-item-has-children:hover .sub-menu li.current-menu-item a, .header .navbar .nav .menu-menu-es-container ul li.menu-item-has-children:hover .sub-menu li.current-menu-item a, .header .navbar .nav .menu-menu-ca-container ul li.menu-item-has-children:hover .sub-menu li.current-menu-item a {
    background: #26b5f3;
    color: #171f56 !important;
  }
}

.header .navbar .nav .language-menu {
  position: absolute;
  right: 60px;
  top: 5px;
}

@media only screen and (max-width: 991px) {
  .header .navbar .nav .language-menu {
    position: initial;
    top: initial;
    right: initial;
    text-align: left;
    border-bottom: 1px solid #171f56;
  }
}

@media only screen and (max-width: 991px) {
  .header .navbar .nav .language-menu ul {
    display: flex;
  }
}

.header .navbar .nav .language-menu ul li {
  display: inline-block;
  margin: 0 0 0 20px;
}

@media only screen and (max-width: 991px) {
  .header .navbar .nav .language-menu ul li {
    margin: 0;
    width: 33.333%;
    border-right: 1px solid #171f56;
    text-align: center;
  }
}

.header .navbar .nav .language-menu ul li a {
  color: white;
  font-size: 15px;
  line-height: 15px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0 0 5px 0;
}

@media only screen and (max-width: 991px) {
  .header .navbar .nav .language-menu ul li a {
    padding: 10px 20px;
    display: block;
    color: white;
  }
}

.header .navbar .nav .language-menu ul li a:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  background-color: #26b5f3;
  -webkit-transition: transform 0.2s;
  -moz-transition: transform 0.2s;
  -ms-transform: transform 0.2s;
  -o-transition: transform 0.2s;
  transition: transform 0.2s;
}

.header .navbar .nav .language-menu ul li a:hover {
  color: #26b5f3;
}

@media only screen and (max-width: 991px) {
  .header .navbar .nav .language-menu ul li a:hover {
    color: white;
  }
}

.header .navbar .nav .language-menu ul li a:hover:before {
  transform: scaleX(1);
  background: #26b5f3;
}

@media only screen and (max-width: 991px) {
  .header .navbar .nav .language-menu ul li a:hover:before {
    transform: scaleX(0);
  }
}

.header .navbar .nav .language-menu ul li.current-lang a {
  color: #26b5f3;
}

@media only screen and (max-width: 991px) {
  .header .navbar .nav .language-menu ul li.current-lang a {
    background: #26b5f3;
    color: #171f56;
  }
}

.header .navbar .nav .language-menu ul li.current-lang a:before {
  transform: scaleX(1);
}

@media only screen and (max-width: 991px) {
  .header .navbar .nav .language-menu ul li.current-lang a:before {
    transform: scaleX(0);
  }
}

@media only screen and (max-width: 991px) {
  .header .navbar .nav .language-menu ul li:last-child {
    border-right: 0 solid #1e3885;
  }
}

.header .navbar .nav .is-search-form {
  width: 350px;
  position: absolute;
  right: 40px;
  top: -250px;
  padding: 0 15px;
  height: 32px;
  border-radius: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: -1;
  padding: 0;
  background: #171f56;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transform: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

@media only screen and (max-width: 991px) {
  .header .navbar .nav .is-search-form {
    position: initial;
    top: initial;
    right: initial;
    opacity: 1;
    filter: alpha(opacity=100);
    width: 100%;
    background: #1e3885;
    border-bottom: 1px solid #171f56;
    height: auto;
    padding: 0;
  }
}

@media only screen and (max-width: 991px) {
  .header .navbar .nav .is-search-form label {
    width: calc(100% - 100px) !important;
  }
}

.header .navbar .nav .is-search-form label .screen-reader-text {
  display: none;
}

.header .navbar .nav .is-search-form label .is-search-input {
  -webkit-appearance: none;
  font-family: "Mulish", sans-serif;
  font-size: 14px;
  line-height: 14px;
  background: none !important;
  color: white;
  border: 2px solid #26b5f3 !important;
  width: 100%;
  display: inline-block;
  height: 30px;
  padding: 0 10px;
  border-radius: 15px;
}

@media only screen and (max-width: 991px) {
  .header .navbar .nav .is-search-form label .is-search-input {
    border: none !important;
  }
}

.header .navbar .nav .is-search-form label .is-search-input:focus, .header .navbar .nav .is-search-form label .is-search-input:active, .header .navbar .nav .is-search-form label .is-search-input:hover {
  background: none !important;
  background-image: none !important;
}

.header .navbar .nav .is-search-form label ::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #26b5f3;
  opacity: 1;
  /* Firefox */
}

.header .navbar .nav .is-search-form label :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #26b5f3;
}

.header .navbar .nav .is-search-form label ::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #26b5f3;
}

.header .navbar .nav .is-search-form .is-search-submit {
  cursor: pointer;
}

.header .navbar .nav .is-search-form .is-search-submit .icon-ico-search {
  color: #26b5f3;
  font-size: 18px;
}

@media only screen and (max-width: 991px) {
  .header .navbar .nav .is-search-form .is-search-submit {
    width: 100px;
    height: 42px;
    text-align: center;
    color: white;
  }
}

.open-menu {
  overflow: hidden;
}

.open-menu:before {
  z-index: 11;
  opacity: 0.9;
  filter: alpha(opacity=90);
}

@media only screen and (max-width: 991px) {
  .open-menu .header .navbar .nav {
    right: 0;
  }
}

.open-searchform .header .navbar .nav .is-search-form {
  border-radius: 25px;
  z-index: 2;
  top: 0;
  right: 40px;
  opacity: 1;
  filter: alpha(opacity=100);
}

@media only screen and (max-width: 1199px) {
  .open-searchform .header .navbar .nav .is-search-form {
    top: 17px;
  }
}

#header-icon {
  width: 30px;
  height: 24px;
  position: absolute;
  right: 20px;
  top: 20px;
  margin: 0;
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transform: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

#header-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: white;
  left: 0;
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transform: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

#header-icon span:nth-child(1) {
  top: 0px;
}

#header-icon span:nth-child(2), #header-icon span:nth-child(3) {
  top: 10px;
}

#header-icon span:nth-child(4) {
  top: 20px;
}

#header-icon.open span:nth-child(1) {
  top: 10px;
  width: 0%;
  left: 50%;
}

#header-icon.open span:nth-child(2) {
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#header-icon.open span:nth-child(3) {
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#header-icon.open span:nth-child(4) {
  top: 14px;
  width: 0%;
  left: 50%;
}

.search-button {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transform: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  display: inline-block;
}

@media only screen and (max-width: 991px) {
  .search-button {
    display: none !important;
  }
}

.search-button.center-position {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
}

.search-button .search-icon {
  background: #1e3885;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: block;
}

.search-button .search-icon:before {
  font-family: "icomoon";
  content: "\e90e";
  width: 35px;
  font-size: 15px;
  line-height: 35px;
  text-align: center;
  display: block;
  color: white;
}

.search-button.active .search-icon:before {
  font-family: "icomoon";
  content: "\e905";
}

@media only screen and (max-width: 991px) {
  .page-template-template-biomedical .menu-item-100, .page-template-template-biomedical .menu-item-998, .page-template-template-biomedical .menu-item-1059, .page-template-template-integration .menu-item-100, .page-template-template-integration .menu-item-998, .page-template-template-integration .menu-item-1059, .page-template-template-membranes .menu-item-100, .page-template-template-membranes .menu-item-998, .page-template-template-membranes .menu-item-1059, .page-template-template-energy .menu-item-100, .page-template-template-energy .menu-item-998, .page-template-template-energy .menu-item-1059, .single-biomedical-devices .menu-item-100, .single-biomedical-devices .menu-item-998, .single-biomedical-devices .menu-item-1059, .single-si-cmos-integration .menu-item-100, .single-si-cmos-integration .menu-item-998, .single-si-cmos-integration .menu-item-1059, .single-materials-membranes .menu-item-100, .single-materials-membranes .menu-item-998, .single-materials-membranes .menu-item-1059, .single-energy .menu-item-100, .single-energy .menu-item-998, .single-energy .menu-item-1059 {
    background: #26b5f3;
  }
}

.page-template-template-biomedical .menu-item-100 a, .page-template-template-biomedical .menu-item-998 a, .page-template-template-biomedical .menu-item-1059 a, .page-template-template-integration .menu-item-100 a, .page-template-template-integration .menu-item-998 a, .page-template-template-integration .menu-item-1059 a, .page-template-template-membranes .menu-item-100 a, .page-template-template-membranes .menu-item-998 a, .page-template-template-membranes .menu-item-1059 a, .page-template-template-energy .menu-item-100 a, .page-template-template-energy .menu-item-998 a, .page-template-template-energy .menu-item-1059 a, .single-biomedical-devices .menu-item-100 a, .single-biomedical-devices .menu-item-998 a, .single-biomedical-devices .menu-item-1059 a, .single-si-cmos-integration .menu-item-100 a, .single-si-cmos-integration .menu-item-998 a, .single-si-cmos-integration .menu-item-1059 a, .single-materials-membranes .menu-item-100 a, .single-materials-membranes .menu-item-998 a, .single-materials-membranes .menu-item-1059 a, .single-energy .menu-item-100 a, .single-energy .menu-item-998 a, .single-energy .menu-item-1059 a {
  color: #26b5f3 !important;
}

@media only screen and (max-width: 991px) {
  .page-template-template-biomedical .menu-item-100 a, .page-template-template-biomedical .menu-item-998 a, .page-template-template-biomedical .menu-item-1059 a, .page-template-template-integration .menu-item-100 a, .page-template-template-integration .menu-item-998 a, .page-template-template-integration .menu-item-1059 a, .page-template-template-membranes .menu-item-100 a, .page-template-template-membranes .menu-item-998 a, .page-template-template-membranes .menu-item-1059 a, .page-template-template-energy .menu-item-100 a, .page-template-template-energy .menu-item-998 a, .page-template-template-energy .menu-item-1059 a, .single-biomedical-devices .menu-item-100 a, .single-biomedical-devices .menu-item-998 a, .single-biomedical-devices .menu-item-1059 a, .single-si-cmos-integration .menu-item-100 a, .single-si-cmos-integration .menu-item-998 a, .single-si-cmos-integration .menu-item-1059 a, .single-materials-membranes .menu-item-100 a, .single-materials-membranes .menu-item-998 a, .single-materials-membranes .menu-item-1059 a, .single-energy .menu-item-100 a, .single-energy .menu-item-998 a, .single-energy .menu-item-1059 a {
    color: #171f56 !important;
  }
}

.page-template-template-biomedical .menu-item-100 a:before, .page-template-template-biomedical .menu-item-998 a:before, .page-template-template-biomedical .menu-item-1059 a:before, .page-template-template-integration .menu-item-100 a:before, .page-template-template-integration .menu-item-998 a:before, .page-template-template-integration .menu-item-1059 a:before, .page-template-template-membranes .menu-item-100 a:before, .page-template-template-membranes .menu-item-998 a:before, .page-template-template-membranes .menu-item-1059 a:before, .page-template-template-energy .menu-item-100 a:before, .page-template-template-energy .menu-item-998 a:before, .page-template-template-energy .menu-item-1059 a:before, .single-biomedical-devices .menu-item-100 a:before, .single-biomedical-devices .menu-item-998 a:before, .single-biomedical-devices .menu-item-1059 a:before, .single-si-cmos-integration .menu-item-100 a:before, .single-si-cmos-integration .menu-item-998 a:before, .single-si-cmos-integration .menu-item-1059 a:before, .single-materials-membranes .menu-item-100 a:before, .single-materials-membranes .menu-item-998 a:before, .single-materials-membranes .menu-item-1059 a:before, .single-energy .menu-item-100 a:before, .single-energy .menu-item-998 a:before, .single-energy .menu-item-1059 a:before {
  transform: scaleX(1) !important;
}

@media only screen and (max-width: 991px) {
  .page-template-template-biomedical .menu-item-100 a:before, .page-template-template-biomedical .menu-item-998 a:before, .page-template-template-biomedical .menu-item-1059 a:before, .page-template-template-integration .menu-item-100 a:before, .page-template-template-integration .menu-item-998 a:before, .page-template-template-integration .menu-item-1059 a:before, .page-template-template-membranes .menu-item-100 a:before, .page-template-template-membranes .menu-item-998 a:before, .page-template-template-membranes .menu-item-1059 a:before, .page-template-template-energy .menu-item-100 a:before, .page-template-template-energy .menu-item-998 a:before, .page-template-template-energy .menu-item-1059 a:before, .single-biomedical-devices .menu-item-100 a:before, .single-biomedical-devices .menu-item-998 a:before, .single-biomedical-devices .menu-item-1059 a:before, .single-si-cmos-integration .menu-item-100 a:before, .single-si-cmos-integration .menu-item-998 a:before, .single-si-cmos-integration .menu-item-1059 a:before, .single-materials-membranes .menu-item-100 a:before, .single-materials-membranes .menu-item-998 a:before, .single-materials-membranes .menu-item-1059 a:before, .single-energy .menu-item-100 a:before, .single-energy .menu-item-998 a:before, .single-energy .menu-item-1059 a:before {
    display: none;
  }
}

@media only screen and (max-width: 991px) {
  .single-post .menu-item-889 {
    background: #11184a;
  }
}

.single-post .menu-item-889 a {
  color: #26b5f3 !important;
}

.single-post .menu-item-889 a:before {
  transform: scaleX(1) !important;
}

@media only screen and (max-width: 991px) {
  .single-post .menu-item-889 a:before {
    display: none;
  }
}

/*Home*/
.intro-home {
  padding: 0;
  background: #171f56;
}

@media only screen and (max-width: 991px) {
  .intro-home {
    min-height: auto;
    overflow: hidden;
  }
}

.intro-home .container {
  min-height: 680px;
}

@media only screen and (max-width: 1360px) {
  .intro-home .container {
    min-height: 600px;
  }
}

@media only screen and (max-width: 1199px) {
  .intro-home .container {
    min-height: 550px;
  }
}

@media only screen and (max-width: 991px) {
  .intro-home .container {
    min-height: auto;
    overflow: hidden;
  }
}

.intro-home .container .claim-home {
  position: relative;
  z-index: 6;
  margin: 0;
  padding: 220px 0 0 0;
  max-width: calc(33.333% - 20px);
}

@media only screen and (max-width: 1360px) {
  .intro-home .container .claim-home {
    padding: 200px 0 0 0;
  }
}

@media only screen and (max-width: 1199px) {
  .intro-home .container .claim-home {
    padding: 180px 0 0 0;
  }
}

@media only screen and (max-width: 991px) {
  .intro-home .container .claim-home {
    padding: 140px 0 0 0;
    max-width: 50%;
  }
}

@media only screen and (max-width: 767px) {
  .intro-home .container .claim-home {
    padding: 120px 0 0 0;
    max-width: initial;
  }
}

.intro-home .container .claim-home h1 {
  font-size: 60px;
  line-height: 65px;
  color: white;
}

@media only screen and (max-width: 1600px) {
  .intro-home .container .claim-home h1 {
    font-size: 55px;
    line-height: 60px;
  }
}

@media only screen and (max-width: 1360px) {
  .intro-home .container .claim-home h1 {
    font-size: 50px;
    line-height: 55px;
  }
}

@media only screen and (max-width: 1199px) {
  .intro-home .container .claim-home h1 {
    font-size: 45px;
    line-height: 50px;
  }
}

@media only screen and (max-width: 991px) {
  .intro-home .container .claim-home h1 {
    font-size: 40px;
    line-height: 45px;
  }
}

@media only screen and (max-width: 600px) {
  .intro-home .container .claim-home h1 {
    font-size: 35px;
    line-height: 40px;
  }
}

.intro-home .container .claim-home p {
  font-weight: 300;
  color: white;
  font-size: 25px;
  line-height: 35px;
}

@media only screen and (max-width: 1199px) {
  .intro-home .container .claim-home p {
    font-size: 22px;
    line-height: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .intro-home .container .claim-home p br {
    display: none;
  }
}

.intro-home .container .claim-home .button {
  margin: 20px 0 40px 0;
  color: #171f56;
}

.intro-home .container .claim-home .button:before {
  border: 1px solid #26b5f3;
}

.intro-home .container .claim-home .button:hover:before {
  background: #26b5f3;
  color: #171f56;
}

@media only screen and (max-width: 991px) {
  .intro-home .container .claim-home .button:hover:before {
    background: transparent;
    color: white;
  }
}

.intro-home .container .read-more {
  position: relative;
  z-index: 6;
  max-width: calc(33.333% - 20px);
}

@media only screen and (max-width: 991px) {
  .intro-home .container .read-more {
    max-width: 50%;
  }
}

@media only screen and (max-width: 600px) {
  .intro-home .container .read-more {
    max-width: initial;
  }
}

.intro-home .container .read-more p {
  color: white;
  margin: 0 0 10px 0;
}

.intro-home .container .read-more .toggle .toggle-title p {
  color: #26b5f3;
}

.intro-home .container .read-more .toggle .toggle-title p span {
  color: #171f56;
}

.intro-home .container .read-more .toggle .toggle-title:hover p {
  color: #85daff;
}

@media only screen and (max-width: 991px) {
  .intro-home .container .read-more .toggle .toggle-title:hover p {
    color: #26b5f3;
  }
}

.intro-home .container .read-more .toggle .toggle-title:hover p span {
  background: #85daff;
}

@media only screen and (max-width: 991px) {
  .intro-home .container .read-more .toggle .toggle-title:hover p span {
    background: #26b5f3;
  }
}

.intro-home .container .videobackground {
  position: absolute;
  top: 0;
  left: calc(50% - 520px);
  width: 100%;
  max-width: 1200px;
  height: 680px;
  overflow: hidden;
}

@media only screen and (max-width: 1360px) {
  .intro-home .container .videobackground {
    max-width: 1058px;
    height: 600px;
    left: calc(50% - 480px);
  }
}

@media only screen and (max-width: 1199px) {
  .intro-home .container .videobackground {
    max-width: 968px;
    height: 550px;
  }
}

@media only screen and (max-width: 991px) {
  .intro-home .container .videobackground {
    max-width: inherit;
    width: calc(100% - 20px);
    height: auto;
    left: 20px;
  }
}

@media only screen and (max-width: 600px) {
  .intro-home .container .videobackground {
    width: 120%;
    height: auto;
    left: -10%;
    top: -10%;
  }
}

@media only screen and (max-width: 480px) {
  .intro-home .container .videobackground {
    width: 140%;
    left: -20%;
  }
}

.intro-home .container .videobackground img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  z-index: 2;
}

@media only screen and (max-width: 1360px) {
  .intro-home .container .videobackground img {
    max-width: 1058px;
  }
}

@media only screen and (max-width: 1199px) {
  .intro-home .container .videobackground img {
    max-width: 968px;
  }
}

@media only screen and (max-width: 991px) {
  .intro-home .container .videobackground img {
    max-width: inherit;
    width: 100%;
    height: auto;
    left: 0;
  }
}

@media only screen and (max-width: 600px) {
  .intro-home .container .videobackground img {
    width: 120%;
    height: auto;
    left: -10%;
  }
}

@media only screen and (max-width: 480px) {
  .intro-home .container .videobackground img {
    width: 140%;
    left: -20%;
  }
}

.intro-home .container .videobackground video {
  opacity: 0.75;
  mix-blend-mode: color-dodge;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 600px) {
  .intro-home .container .videobackground video {
    width: 120%;
    height: auto;
    left: -10%;
  }
}

@media only screen and (max-width: 480px) {
  .intro-home .container .videobackground video {
    width: 140%;
    left: -20%;
  }
}

.technologies-home {
  padding: 60px 0 20px 0;
  background-color: #1a2969;
  background-image: -moz-linear-gradient(top, #171f56, #1e3885);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#171f56), to(#1e3885));
  background-image: -webkit-linear-gradient(top, #171f56, #1e3885);
  background-image: -o-linear-gradient(top, #171f56, #1e3885);
  background-image: linear-gradient(to bottom, #171f56, #1e3885);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF171F56', endColorstr='#FF1E3885', GradientType=0);
}

@media only screen and (max-width: 991px) {
  .technologies-home {
    padding: 40px 0 20px 0;
  }
}

@media only screen and (max-width: 991px) {
  .technologies-home .container .row {
    display: block;
  }
}

@media only screen and (max-width: 991px) {
  .technologies-home .container .row .title-section {
    width: 100% !important;
  }
}

.technologies-home .container .row .title-section h2, .technologies-home .container .row .title-section h3 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 300;
  color: white;
  margin: 0 0 10px 0;
}

@media only screen and (max-width: 991px) {
  .technologies-home .container .row .title-section h2, .technologies-home .container .row .title-section h3 {
    margin: 0;
  }
}

@media only screen and (max-width: 767px) {
  .technologies-home .container .row .title-section h2, .technologies-home .container .row .title-section h3 {
    font-size: 26px;
    line-height: 36px;
  }
}

@media only screen and (max-width: 600px) {
  .technologies-home .container .row .title-section h2, .technologies-home .container .row .title-section h3 {
    font-size: 23px;
    line-height: 30px;
  }
}

.technologies-home .container .row .title-section h3 {
  color: #7358e3;
  font-weight: 600;
}

.technologies-home .container .row .list-section {
  margin: 0;
  padding: 0;
}

@media only screen and (max-width: 991px) {
  .technologies-home .container .row .list-section {
    width: 100% !important;
    display: flex;
    margin: 30px 0 0 0;
  }
}

@media only screen and (max-width: 767px) {
  .technologies-home .container .row .list-section {
    margin: 20px 0 0 0;
  }
}

@media only screen and (max-width: 600px) {
  .technologies-home .container .row .list-section {
    margin: 10px 0 0 0;
  }
}

.technologies-home .container .row .list-section li {
  margin: 0 0 30px 0;
}

@media only screen and (max-width: 1199px) {
  .technologies-home .container .row .list-section li {
    margin: 20px 0 0 0;
  }
}

.technologies-home .container .row .list-section li .inner-section {
  padding: 35px 40px 15px 40px;
  background: #1d2f73;
  border-radius: 20px;
  height: 100%;
}

@media only screen and (max-width: 767px) {
  .technologies-home .container .row .list-section li .inner-section {
    padding: 25px 30px 5px 30px;
  }
}

.technologies-home .container .row .list-section li .inner-section img {
  width: 100px;
}

.technologies-home .container .row .list-section li .inner-section h3 {
  font-size: 25px;
  line-height: 30px;
  color: white;
  margin: 0 0 10px 0;
}

@media only screen and (max-width: 1199px) {
  .technologies-home .container .row .list-section li .inner-section h3 {
    margin: 0 0 10px 0;
  }
}

@media only screen and (max-width: 991px) {
  .technologies-home .container .row .list-section li .inner-section h3 {
    font-size: 22px;
    line-height: 26px;
  }
}

.technologies-home .container .row .list-section li .inner-section p {
  color: white;
}

.technologies-home .container .row .list-section li .inner-section .button {
  margin: 20px 0 0 0;
  background: #7358e3;
}

.technologies-home .container .row .list-section li .inner-section .button:hover {
  background: #4c2fc1;
}

@media only screen and (max-width: 991px) {
  .technologies-home .container .row .list-section li .inner-section .button:hover {
    background: #7358e3;
  }
}

@media only screen and (max-width: 991px) {
  .menu-list {
    width: calc(100% + 40px) !important;
    margin: 40px -20px -60px -20px !important;
  }
}

@media only screen and (max-width: 767px) {
  .menu-list {
    margin: 30px -20px -40px -20px !important;
  }
}

@media only screen and (max-width: 600px) {
  .menu-list {
    margin: 30px -20px -30px -20px !important;
  }
}

.menu-list .list-box {
  background: #171f56;
  padding: 35px 40px 25px 40px;
  border-radius: 20px;
}

@media only screen and (max-width: 991px) {
  .menu-list .list-box {
    border-radius: 0;
    padding: 30px 20px;
  }
}

.menu-list .list-box p {
  margin: 0;
  font-size: 14px;
}

.menu-list .list-box ul {
  margin: 60px 0 0 0;
}

@media only screen and (max-width: 1199px) {
  .menu-list .list-box ul {
    margin: 50px 0 0 0;
  }
}

@media only screen and (max-width: 991px) {
  .menu-list .list-box ul {
    margin: 40px 0 0 0;
  }
}

.menu-list .list-box ul li {
  margin: 0 0 40px 0;
  position: relative;
  padding: 0 0 0 70px;
}

@media only screen and (max-width: 1199px) {
  .menu-list .list-box ul li {
    margin: 30px 0 0 0;
  }
}

.menu-list .list-box ul li span {
  position: absolute;
  left: 0;
  top: 6px;
  font-size: 45px;
  line-height: 45px;
  color: #7358e3;
}

.menu-list .list-box ul li h2 {
  font-size: 22px;
  line-height: 28px;
  margin: 0 0 5px 0;
  font-family: "Mulish", sans-serif;
  color: #7358e3;
}

@media only screen and (max-width: 1199px) {
  .menu-list .list-box ul li h2 {
    font-size: 20px;
    line-height: 25px;
  }
}

.menu-list .list-box ul li .button {
  color: #171f56;
}

@media only screen and (max-width: 991px) {
  .menu-list .list-box ul li .button:hover:before {
    color: #171f56;
  }
}

.menu-list .list-box ul li a {
  font-size: 15px;
  color: #7358e3;
  font-weight: 700;
  padding: 0 0 0 30px;
  position: relative;
}

.menu-list .list-box ul li a:before {
  font-family: "icomoon";
  content: "\e903";
  font-size: 9px;
  color: white;
  background: #7358e3;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  display: block;
  line-height: 21px;
  position: absolute;
  left: 0;
  top: 0;
  text-align: center;
}

@media only screen and (max-width: 991px) {
  .menu-list.primary-list {
    display: none;
  }
}

.intro-box {
  background: #171f56;
  padding: 0;
}

.intro-box .container {
  background-size: 1240px 520px;
  background-position: right bottom;
  background-repeat: no-repeat;
  min-height: 520px;
}

@media only screen and (max-width: 1600px) {
  .intro-box .container {
    min-height: 460px;
  }
}

@media only screen and (max-width: 1360px) {
  .intro-box .container {
    min-height: 400px;
    background-size: 923px 400px;
  }
}

@media only screen and (max-width: 1199px) {
  .intro-box .container {
    min-height: 360px;
  }
}

@media only screen and (max-width: 991px) {
  .intro-box .container {
    min-height: 320px;
    background-position: center bottom;
  }
}

@media only screen and (max-width: 767px) {
  .intro-box .container {
    min-height: 280px;
  }
}

.intro-box .container .intro-text {
  padding: 220px 0 60px 0;
  max-width: 400px;
  color: white;
}

@media only screen and (max-width: 1600px) {
  .intro-box .container .intro-text {
    padding: 200px 0 50px 0;
  }
}

@media only screen and (max-width: 1360px) {
  .intro-box .container .intro-text {
    padding: 180px 0 40px 0;
  }
}

@media only screen and (max-width: 1199px) {
  .intro-box .container .intro-text {
    padding: 160px 0 40px  0;
  }
}

@media only screen and (max-width: 991px) {
  .intro-box .container .intro-text {
    padding: 130px 0 40px 0;
  }
}

@media only screen and (max-width: 767px) {
  .intro-box .container .intro-text {
    padding: 100px 0 40px 0;
  }
}

.intro-box .container .intro-text h1, .intro-box .container .intro-text h2, .intro-box .container .intro-text h3 {
  color: white;
  margin: 0 0 20px 0;
}

@media only screen and (max-width: 1600px) {
  .intro-box .container .intro-text h1, .intro-box .container .intro-text h2, .intro-box .container .intro-text h3 {
    margin: 0 0 10px 0;
  }
}

.intro-blank {
  background: #171f56;
}

.intro-blank .container {
  min-height: 300px;
}

@media only screen and (max-width: 1600px) {
  .intro-blank .container {
    min-height: 280px;
  }
}

@media only screen and (max-width: 1360px) {
  .intro-blank .container {
    min-height: 260px;
  }
}

@media only screen and (max-width: 1199px) {
  .intro-blank .container {
    min-height: 240px;
  }
}

@media only screen and (max-width: 991px) {
  .intro-blank .container {
    min-height: 220px;
  }
}

@media only screen and (max-width: 767px) {
  .intro-blank .container {
    min-height: 200px;
  }
}

@media only screen and (max-width: 600px) {
  .intro-blank .container {
    min-height: 180px;
  }
}

.intro-gradient {
  background-color: #1a2969;
  background-image: -moz-linear-gradient(top, #171f56, #1e3885);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#171f56), to(#1e3885));
  background-image: -webkit-linear-gradient(top, #171f56, #1e3885);
  background-image: -o-linear-gradient(top, #171f56, #1e3885);
  background-image: linear-gradient(to bottom, #171f56, #1e3885);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF171F56', endColorstr='#FF1E3885', GradientType=0);
}

/*Footer*/
.footer {
  min-height: 560px;
  background-color: #1e3885;
  background-image: url("/wp-content/themes/graphcat/img/background-footer.jpg");
  background-size: 1200px 560px;
  background-position: center top;
  background-repeat: no-repeat;
  padding-bottom: 30px;
}

.footer .container .contact-title {
  margin: 0 auto 120px auto;
  text-align: center;
}

@media only screen and (max-width: 1199px) {
  .footer .container .contact-title {
    margin: 0 auto 80px auto;
    padding-bottom: 100px;
  }
}

@media only screen and (max-width: 991px) {
  .footer .container .contact-title {
    margin: 0 auto 50px auto;
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .footer .container .contact-title {
    margin: 0 auto 30px auto;
    padding-bottom: 60px;
  }
}

@media only screen and (max-width: 600px) {
  .footer .container .contact-title {
    margin: 0 auto 20px auto;
    padding-bottom: 40px;
  }
}

.footer .container .contact-title p {
  color: white;
  font-size: 45px;
  line-height: 50px;
  font-weight: 800;
}

@media only screen and (max-width: 1360px) {
  .footer .container .contact-title p {
    font-size: 40px;
    line-height: 45px;
  }
}

@media only screen and (max-width: 1199px) {
  .footer .container .contact-title p {
    font-size: 35px;
    line-height: 40px;
  }
}

@media only screen and (max-width: 991px) {
  .footer .container .contact-title p {
    font-size: 30px;
    line-height: 35px;
  }
}

@media only screen and (max-width: 600px) {
  .footer .container .contact-title p {
    font-size: 25px;
    line-height: 30px;
  }
}

.footer .container .contact-title a {
  font-weight: 700;
  color: #26b5f3;
  height: 50px;
  margin: 40px auto 0 auto;
  line-height: 50px;
  padding: 0 50px;
  border-radius: 25px;
  display: table;
  background: rgba(23, 31, 86, 0.35);
}

.footer .container .contact-title a:hover {
  background: rgba(23, 31, 86, 0.65);
}

@media only screen and (max-width: 991px) {
  .footer .container .contact-title a:hover {
    background: rgba(23, 31, 86, 0.35);
  }
}

.footer .container .row {
  overflow: auto;
}

@media only screen and (max-width: 767px) {
  .footer .container .row .col.footer-logo {
    width: 100%;
  }
}

.footer .container .row .col.footer-logo img {
  max-width: 100px;
  height: auto;
  margin: 0 0 20px 0;
}

@media only screen and (max-width: 991px) {
  .footer .container .row .col.footer-logo img {
    max-width: 125px;
  }
}

.footer .container .row .col.footer-logo p {
  color: white;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
}

.footer .container .row .col.footer-logo.riscat {
  margin: 40px auto  20px auto;
}

@media only screen and (max-width: 767px) {
  .footer .container .row .col.footer-logo.riscat {
    margin: 40px auto  0 auto;
  }
}

.footer .container .row .col.footer-logo.riscat img {
  height: 36px;
  width: auto;
  margin: 0 0 20px 0;
  max-width: none;
}

.footer .container .row .col.footer-logo.riscat p {
  padding: 0 40px 0 0;
}

@media only screen and (max-width: 600px) {
  .footer .container .row .col.footer-menu {
    width: 50% !important;
  }
}

@media only screen and (max-width: 480px) {
  .footer .container .row .col.footer-menu {
    width: 100% !important;
  }
}

.footer .container .row .col.footer-menu p {
  color: #26b5f3;
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 15px 0;
}

.footer .container .row .col.footer-menu ul li a {
  color: white;
  font-size: 14px;
  margin: 0 0 5px 0;
  display: table;
  font-weight: 500;
}

.footer .container .feder {
  margin: 40px auto 20px auto;
}

@media only screen and (max-width: 767px) {
  .footer .container .feder {
    width: 100% !important;
    margin: 20px auto 0 auto;
  }
}

.footer .container .feder img {
  height: 42px;
  width: auto;
  margin: 0 60px 10px 0;
  margin-right: 170px;
  display: inline-block;
}

@media only screen and (max-width: 1360px) {
  .footer .container .feder img {
    margin-right: calc(50% - 245px);
  }
}

@media only screen and (max-width: 1199px) {
  .footer .container .feder img {
    margin-right: calc(50% - 250px);
  }
}

@media only screen and (max-width: 991px) {
  .footer .container .feder img {
    display: block;
    margin: 0 0 20px 0;
  }
}

@media only screen and (max-width: 767px) {
  .footer .container .feder img {
    height: 40px;
    width: auto;
    margin: 0 30px 10px 0;
    display: inline-block;
  }
}

@media only screen and (max-width: 600px) {
  .footer .container .feder img {
    height: 42px;
    display: block;
    margin: 0 0 20px 0;
  }
}

.footer .container .feder img:nth-child(2) {
  margin-right: 0;
}

.footer .container .feder p {
  font-size: 12px;
  line-height: 15px;
  color: white;
  margin: 0;
}

.footer .container .copyright {
  border-top: 1px solid #1e3885;
  padding-top: 30px;
  margin: 0 auto;
  display: flex;
}

@media only screen and (max-width: 600px) {
  .footer .container .copyright {
    display: block;
  }
}

.footer .container .copyright p {
  margin: 0;
  width: 33.333%;
  font-size: 14px;
  line-height: 14px;
  color: white;
}

@media only screen and (max-width: 1199px) {
  .footer .container .copyright p {
    width: calc(33.333% - 5px);
  }
}

@media only screen and (max-width: 767px) {
  .footer .container .copyright p {
    width: 50%;
  }
}

@media only screen and (max-width: 600px) {
  .footer .container .copyright p {
    width: 100%;
    margin: 0 0 20px 0;
  }
}

.footer .container .copyright p.legal {
  width: calc(100% - 33.333%);
}

@media only screen and (max-width: 600px) {
  .footer .container .copyright p.legal {
    text-align: left;
    margin: 0;
    width: 100%;
  }
}

.footer .container .copyright p.legal a {
  color: white;
  margin: 0 15px;
  color: #26b5f3;
}

@media only screen and (max-width: 600px) {
  .footer .container .copyright p.legal a {
    margin: 0 20px 0 0;
  }
}

/*Projects*/
.intro-projects .container {
  background-image: url("/wp-content/themes/graphcat/img/background-projects.jpg");
}

.intro-projects.intro-biomedical .container {
  background-image: url("/wp-content/themes/graphcat/img/background-biomedical.jpg");
}

.intro-projects.intro-integration .container {
  background-image: url("/wp-content/themes/graphcat/img/background-integration.jpg");
}

.intro-projects.intro-membranes .container {
  background-image: url("/wp-content/themes/graphcat/img/background-membranes.jpg");
}

.intro-projects.intro-energy .container {
  background-image: url("/wp-content/themes/graphcat/img/background-energy.jpg");
}

.technologies-projects {
  background: white;
  padding: 120px 0 90px 0;
}

@media only screen and (max-width: 1199px) {
  .technologies-projects {
    padding: 80px 0;
  }
}

@media only screen and (max-width: 991px) {
  .technologies-projects {
    padding: 60px 0;
  }
}

@media only screen and (max-width: 767px) {
  .technologies-projects {
    padding: 40px 0;
  }
}

@media only screen and (max-width: 600px) {
  .technologies-projects {
    padding: 30px 0;
  }
}

.technologies-projects .container .row .title-section h2 {
  color: #171f56;
}

@media only screen and (max-width: 991px) {
  .content-project {
    overflow: hidden;
  }
}

@media only screen and (max-width: 767px) {
  .content-project .container .row {
    display: flex;
    flex-direction: column;
  }
}

.content-project .container .row .content-box {
  padding-right: 50px;
}

@media only screen and (max-width: 1360px) {
  .content-project .container .row .content-box {
    padding-right: 40px;
  }
}

@media only screen and (max-width: 991px) {
  .content-project .container .row .content-box {
    padding-right: 10px;
    width: 100% !important;
  }
}

.content-project .container .row .content-box .title-project {
  font-size: 30px;
  line-height: 35px;
  font-weight: 800;
  color: #7358e3;
  font-family: "Mulish", sans-serif;
}

@media only screen and (max-width: 991px) {
  .content-project .container .row .content-box .title-project {
    font-size: 26px;
    line-height: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .content-project .container .row .content-box .title-project {
    font-size: 24px;
    line-height: 28px;
  }
}

@media only screen and (max-width: 600px) {
  .content-project .container .row .content-box .title-project {
    font-size: 22px;
    line-height: 24px;
  }
}

.content-project .container .row .content-box .block-title p {
  font-size: 15px;
  line-height: 16px;
  color: #7358e3;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.content-project .container .row .content-box .block-title a {
  font-weight: 500;
  color: #7358e3;
}

.content-project .container .row .content-box .block-title a:after {
  content: "\e903";
  font-family: "icomoon";
  font-size: 10px;
  font-weight: 700;
  padding: 0 3px;
  color: #7358e3;
}

.content-project .container .row .content-box .block-title a:hover {
  color: #171f56;
}

@media only screen and (max-width: 991px) {
  .content-project .container .row .content-box .block-title a:hover {
    color: #26b5f3;
  }
}

.content-project .container .row .content-box .block-title a:hover:before {
  color: #26b5f3;
}

@media only screen and (max-width: 991px) {
  .content-project .container .row .content-box .block-title a:hover:before {
    color: #26b5f3;
  }
}

.content-project .container .row .content-box .block-title h2 {
  color: #171f56;
  font-size: 50px;
  line-height: 55px;
  margin: 0 0 10px 0;
}

@media only screen and (max-width: 1360px) {
  .content-project .container .row .content-box .block-title h2 {
    font-size: 45px;
    line-height: 50px;
  }
}

@media only screen and (max-width: 1199px) {
  .content-project .container .row .content-box .block-title h2 {
    font-size: 40px;
    line-height: 45px;
  }
}

@media only screen and (max-width: 991px) {
  .content-project .container .row .content-box .block-title h2 {
    font-size: 35px;
    line-height: 40px;
  }
}

@media only screen and (max-width: 600px) {
  .content-project .container .row .content-box .block-title h2 {
    font-size: 30px;
    line-height: 35px;
  }
}

.content-project .container .row .content-box .block-title h3 {
  color: #171f56;
  font-size: 25px;
  line-height: 30px;
  font-weight: 400;
}

@media only screen and (max-width: 1199px) {
  .content-project .container .row .content-box .block-title h3 {
    font-size: 22px;
    line-height: 26px;
  }
}

@media only screen and (max-width: 991px) {
  .content-project .container .row .content-box .block-title h3 {
    font-size: 20px;
    line-height: 24px;
  }
}

@media only screen and (max-width: 600px) {
  .content-project .container .row .content-box .block-title h3 {
    font-size: 18px;
    line-height: 22px;
  }
}

.content-project .container .row .content-box .block-description img {
  border-radius: 20px;
  max-width: 100%;
  height: auto;
  width: auto;
}

.content-project .container .row .content-box .block-objectives {
  padding: 40px 0 0 0;
}

@media only screen and (max-width: 1199px) {
  .content-project .container .row .content-box .block-objectives {
    padding: 30px 0 0 0;
  }
}

@media only screen and (max-width: 767px) {
  .content-project .container .row .content-box .block-objectives {
    padding: 25px 0 0 0;
  }
}

@media only screen and (max-width: 600px) {
  .content-project .container .row .content-box .block-objectives {
    padding: 20px 0 0 0;
  }
}

.content-project .container .row .content-box .block-objectives ul, .content-project .container .row .content-box .block-objectives ol {
  margin: 0 0 10px 40px;
  padding: 0;
}

@media only screen and (max-width: 480px) {
  .content-project .container .row .content-box .block-objectives ul, .content-project .container .row .content-box .block-objectives ol {
    margin: 0 0 10px 30px;
  }
}

.content-project .container .row .content-box .block-objectives ul li, .content-project .container .row .content-box .block-objectives ol li {
  margin: 0 0 10px 0;
}

.content-project .container .row .content-box .block-objectives ul li {
  list-style: disc;
}

.content-project .container .row .content-box .block-coordinator {
  padding: 50px 0 0 0;
}

@media only screen and (max-width: 1199px) {
  .content-project .container .row .content-box .block-coordinator {
    padding: 40px 0 0 0;
  }
}

@media only screen and (max-width: 767px) {
  .content-project .container .row .content-box .block-coordinator {
    padding: 30px 0 0 0;
  }
}

@media only screen and (max-width: 600px) {
  .content-project .container .row .content-box .block-coordinator {
    padding: 20px 0 0 0;
  }
}

.content-project .container .row .content-box .block-coordinator .container-coordinator {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 40px 0;
}

@media only screen and (max-width: 767px) {
  .content-project .container .row .content-box .block-coordinator .container-coordinator {
    margin: 0 0 30px 0;
  }
}

@media only screen and (max-width: 600px) {
  .content-project .container .row .content-box .block-coordinator .container-coordinator {
    flex-direction: column;
  }
}

.content-project .container .row .content-box .block-coordinator .container-coordinator .personal-info {
  width: 260px;
  padding: 0 40px 0 0;
}

@media only screen and (max-width: 600px) {
  .content-project .container .row .content-box .block-coordinator .container-coordinator .personal-info {
    width: 100%;
    padding: 0;
  }
}

.content-project .container .row .content-box .block-coordinator .container-coordinator .personal-info p {
  margin: 0;
  font-size: 14px;
  line-height: 18px;
}

.content-project .container .row .content-box .block-coordinator .container-coordinator .personal-info p.institution {
  color: #7358e3;
  font-weight: 500;
}

.content-project .container .row .content-box .block-coordinator .container-coordinator .personal-info p.name {
  font-size: 20px;
  line-height: 25px;
  margin: 0 0 10px 0;
  font-weight: 700;
}

.content-project .container .row .content-box .block-coordinator .container-coordinator .personal-info p.email {
  margin: 0 0 10px 0;
}

.content-project .container .row .content-box .block-coordinator .container-coordinator .personal-info p.email a {
  color: #171f56;
  text-decoration: underline;
}

.content-project .container .row .content-box .block-coordinator .container-coordinator .personal-info p.email a:hover {
  color: #26b5f3;
}

@media only screen and (max-width: 991px) {
  .content-project .container .row .content-box .block-coordinator .container-coordinator .personal-info p.email a:hover {
    color: #171f56;
  }
}

.content-project .container .row .content-box .block-coordinator .container-coordinator .personal-info .social {
  margin: 0 10px 0 0;
}

.content-project .container .row .content-box .block-coordinator .container-coordinator .personal-info .social span {
  font-size: 20px;
  line-height: 20px;
  color: #171f56;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transform: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.content-project .container .row .content-box .block-coordinator .container-coordinator .personal-info .social:hover span {
  color: #26b5f3;
}

@media only screen and (max-width: 991px) {
  .content-project .container .row .content-box .block-coordinator .container-coordinator .personal-info .social:hover span {
    color: #171f56;
  }
}

.content-project .container .row .content-box .block-coordinator .container-coordinator .personal-info img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  margin: 30px 0;
}

@media only screen and (max-width: 600px) {
  .content-project .container .row .content-box .block-coordinator .container-coordinator .personal-info img {
    width: 160px;
    height: 160px;
  }
}

.content-project .container .row .content-box .block-coordinator .container-coordinator:last-child {
  margin: 0;
}

.content-project .container .row .content-box .block-coordinator .container-coordinator.container-contributor {
  margin: 30px 0 0 0;
}

.content-project .container .row .content-box .block-coordinator .container-coordinator.container-contributor .personal-info img {
  border-radius: 0;
  height: auto;
  margin: 10px 0 20px 0;
}

.content-project .container .row .content-box .block-coordinator .container-coordinator.container-contributor .personal-bio p {
  margin: 0 0 5px 0;
}

.content-project .container .row .content-box .block-coordinator .container-coordinator.container-contributor .personal-bio p.institution {
  font-size: 20px;
  line-height: 25px;
  font-weight: 700;
}

.content-project .container .row .content-box .block-coordinator .container-coordinator.container-contributor .personal-bio p.name {
  color: #7358e3;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.content-project .container .row .content-box .block-coordinator .personal-bio {
  width: calc(100% - 260px);
}

@media only screen and (max-width: 600px) {
  .content-project .container .row .content-box .block-coordinator .personal-bio {
    width: 100%;
  }
}

.content-project .container .row .content-box .block-coordinator .personal-bio p, .content-project .container .row .content-box .block-coordinator .personal-bio li {
  font-size: 14px;
  line-height: 20px;
  margin: 0 0 10px 0;
}

.content-project .container .row .content-box .block-coordinator .personal-bio p a, .content-project .container .row .content-box .block-coordinator .personal-bio li a {
  color: #171f56;
  text-decoration: underline;
}

.content-project .container .row .content-box .block-coordinator .personal-bio p a:hover, .content-project .container .row .content-box .block-coordinator .personal-bio li a:hover {
  color: #26b5f3;
}

@media only screen and (max-width: 991px) {
  .content-project .container .row .content-box .block-coordinator .personal-bio p a:hover, .content-project .container .row .content-box .block-coordinator .personal-bio li a:hover {
    color: #171f56;
  }
}

@media only screen and (max-width: 991px) {
  .content-project .container .row .menu-list {
    order: 2;
  }
}

.content-project .container .row .menu-list .list-box img {
  margin: 0 0 20px 0;
  max-width: 100px;
  height: auto;
}

@media only screen and (max-width: 991px) {
  .content-project .container .row .menu-list .list-box img {
    display: none;
  }
}

.content-project .container .row .menu-list .list-box p {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: white;
}

@media only screen and (max-width: 991px) {
  .content-project .container .row .menu-list .list-box p {
    display: none;
  }
}

.content-project .container .row .menu-list .list-box ul {
  margin: 20px 0 0 0;
}

@media only screen and (max-width: 991px) {
  .content-project .container .row .menu-list .list-box ul {
    display: none;
  }
}

.content-project .container .row .menu-list .list-box ul li {
  padding: 0;
  margin: 0 0 10px 0;
}

@media only screen and (max-width: 767px) {
  .content-project .container .row .menu-list .list-box ul li {
    display: inline-block;
    margin: 0 10px 15px 0;
  }
}

.content-project .container .row .menu-list .list-box ul li a {
  text-decoration: none;
}

.content-project .container .row .menu-list .list-box ul li a:before {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transform: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.content-project .container .row .menu-list .list-box ul li a:hover {
  color: #4c2fc1;
}

@media only screen and (max-width: 991px) {
  .content-project .container .row .menu-list .list-box ul li a:hover {
    color: #7358e3;
  }
}

.content-project .container .row .menu-list .list-box ul li a:hover:before {
  background: #4c2fc1;
}

@media only screen and (max-width: 991px) {
  .content-project .container .row .menu-list .list-box ul li a:hover:before {
    background: #7358e3;
  }
}

.content-project .container .row .menu-list .list-box .keywords p {
  margin: 30px 0 10px 0;
}

@media only screen and (max-width: 991px) {
  .content-project .container .row .menu-list .list-box .keywords p {
    display: block;
    margin: 0;
  }
}

.content-project .container .row .menu-list .list-box .keywords ul {
  display: flex;
  flex-wrap: wrap;
}

@media only screen and (max-width: 991px) {
  .content-project .container .row .menu-list .list-box .keywords ul {
    margin: 10px 0 0 0;
  }
}

@media only screen and (max-width: 991px) {
  .content-project .container .row .menu-list .list-box .keywords ul li {
    margin: 10px 0 0 0;
  }
}

.content-project .container .row .menu-list .list-box .keywords ul li p {
  margin: 0 10px 0 0;
  font-size: 15px;
  color: #7358e3;
  background: none;
  line-height: 20px;
  min-height: 30px;
  padding: 3px 10px;
  border-radius: 25px;
  border: 2px solid #7358e3;
}

.menu-project {
  background: #11184a;
}

.menu-project ul {
  width: 100%;
  max-width: 1300px;
  padding: 20px 30px;
  margin: 0 auto;
}

@media only screen and (max-width: 991px) {
  .menu-project ul {
    padding: 20px;
  }
}

@media only screen and (max-width: 600px) {
  .menu-project ul {
    padding: 0;
  }
}

.menu-project ul li {
  display: inline-block;
  margin: 0 20px 0 0;
}

@media only screen and (max-width: 600px) {
  .menu-project ul li {
    display: block;
    border-top: 1px solid #1e3885;
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .menu-project ul li:first-child {
    display: none;
  }
}

.menu-project ul li p {
  color: #171f56;
  background: #26b5f3;
  height: 40px;
  padding: 0 30px;
  border-radius: 20px;
  margin: 0;
  font-weight: 700;
  font-size: 14px;
  line-height: 40px;
}

.menu-project ul li p a {
  background: #171f56;
  padding: 0 30px;
  margin: 0 -31px;
  color: white;
}

@media only screen and (max-width: 991px) {
  .menu-project ul li p a:hover {
    color: white;
  }
}

.menu-project ul li p a:hover:after {
  display: none;
}

.menu-project ul li a {
  color: white;
  background: #171f56;
  display: block;
  height: 40px;
  padding: 0 30px;
  border-radius: 20px;
  margin: 0;
  font-weight: 700;
  font-size: 14px;
  line-height: 40px;
}

@media only screen and (max-width: 600px) {
  .menu-project ul li a {
    border-radius: 0;
    padding: 0 20px;
  }
}

.menu-project ul li a:hover {
  background: #1e3885;
}

@media only screen and (max-width: 991px) {
  .menu-project ul li a:hover {
    color: white;
    background: #171f56;
  }
}

.menu-project ul li a.current {
  background: #26b5f3;
  color: #171f56;
}

@media only screen and (max-width: 600px) {
  .menu-project ul li a.current {
    background: #26b5f3;
    color: #171f56;
  }
}

/*Partners*/
.intro-partners .container {
  background-image: url("/wp-content/themes/graphcat/img/background-partners.jpg");
}

.content-partners .container .intro-partner {
  margin: 60px 0 0 0;
}

@media only screen and (max-width: 1199px) {
  .content-partners .container .intro-partner {
    margin: 50px 0 0 0;
  }
}

@media only screen and (max-width: 991px) {
  .content-partners .container .intro-partner {
    margin: 40px 0;
  }
}

@media only screen and (max-width: 600px) {
  .content-partners .container .intro-partner {
    margin: 0;
  }
}

.content-partners .container .intro-partner:first-child {
  margin: 0;
}

.content-partners .container .intro-partner p a {
  font-weight: 600;
  color: #26b5f3;
  text-decoration: underline;
}

.content-partners .container ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0 !important;
  margin: 60px 0 0 0;
}

@media only screen and (max-width: 1199px) {
  .content-partners .container ul {
    margin: 50px 0 0 0;
  }
}

@media only screen and (max-width: 991px) {
  .content-partners .container ul {
    margin: 30px 0;
  }
}

@media only screen and (max-width: 600px) {
  .content-partners .container ul {
    margin: 0 !important;
  }
}

.content-partners .container ul li {
  width: 25%;
  padding: 0 20px 30px 20px;
}

@media only screen and (max-width: 991px) {
  .content-partners .container ul li {
    width: 33.333%;
  }
}

@media only screen and (max-width: 767px) {
  .content-partners .container ul li {
    width: 50%;
  }
}

.content-partners .container ul li img {
  width: 160px;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .content-partners .container ul li img {
    width: 180px;
  }
}

/*****Cookies*****/
#cookie-law-info-bar {
  padding: 10px 40px 10px 20px;
}

#cookie-law-info-bar span {
  font-size: 12px;
  line-height: 14px;
}

#cookie-law-info-bar span .cli-plugin-main-link {
  margin-left: 5px;
}

#cookie-law-info-bar span a {
  color: grey;
  font-weight: 600;
}

#cookie-law-info-bar span .cookie_action_close_header {
  font-size: 0;
  position: absolute;
  right: 5px;
  top: 6px;
  height: 30px;
  width: 30px;
  text-align: center;
  cursor: pointer;
}

#cookie-law-info-bar span .cookie_action_close_header:after {
  font-size: 10px;
  line-height: 30px;
  font-family: 'icomoon';
  content: "\e905";
  color: #ffffff;
}

#search .is-search-form {
  padding: 0 15px;
  height: 32px;
  border-radius: 0;
  border-bottom: 1px solid #f1f1f1;
  padding: 0;
}

#search .is-search-form label .screen-reader-text {
  display: none;
}

#search .is-search-form label .is-search-input {
  font-family: "Mulish", sans-serif;
  font-size: 14px;
  line-height: 14px;
  background: none !important;
  color: white;
  border: none;
  width: 100%;
  display: inline-block;
  height: 30px;
  padding: 0 10px 0 0;
  border-radius: 15px;
}

#search .is-search-form label .is-search-input:focus, #search .is-search-form label .is-search-input:active, #search .is-search-form label .is-search-input:hover {
  background: none !important;
  background-image: none !important;
}

#search .is-search-form .is-search-submit {
  cursor: pointer;
}

#search .is-search-form .is-search-submit .is-search-icon {
  background: none !important;
  box-shadow: none !important;
  outline: 0 !important;
  margin: 0 !important;
  font-size: 14px !important;
  border: none !important;
}

#search .is-search-form .is-search-submit .is-search-icon path {
  fill: #26b5f3 !important;
}

#search .search-result {
  margin: 20px 0 0 0;
}

#search .search-result li {
  margin: 0 0 10px 0;
}

#search .search-result li:last-child {
  margin: 0;
}

/*Blog*/
.intro-newsroom {
  background: #171f56;
  padding: 0;
}

.intro-newsroom .container {
  min-height: 200px;
}

@media only screen and (max-width: 1600px) {
  .intro-newsroom .container {
    min-height: 180px;
  }
}

@media only screen and (max-width: 1360px) {
  .intro-newsroom .container {
    min-height: 160px;
  }
}

@media only screen and (max-width: 1199px) {
  .intro-newsroom .container {
    min-height: 140px;
  }
}

@media only screen and (max-width: 991px) {
  .intro-newsroom .container {
    min-height: 120px;
  }
}

@media only screen and (max-width: 767px) {
  .intro-newsroom .container {
    min-height: 100px;
  }
}

@media only screen and (max-width: 600px) {
  .intro-newsroom .container {
    min-height: 80px;
  }
}

.intro-newsroom .container .intro-text {
  padding: 250px 0 80px 0;
  color: white;
  max-width: 820px;
}

@media only screen and (max-width: 1600px) {
  .intro-newsroom .container .intro-text {
    padding: 220px 0 70px 0;
  }
}

@media only screen and (max-width: 1360px) {
  .intro-newsroom .container .intro-text {
    padding: 200px 0 60px 0;
  }
}

@media only screen and (max-width: 1199px) {
  .intro-newsroom .container .intro-text {
    padding: 180px 0 40px  0;
  }
}

@media only screen and (max-width: 991px) {
  .intro-newsroom .container .intro-text {
    padding: 140px 0 20px 0;
  }
}

@media only screen and (max-width: 767px) {
  .intro-newsroom .container .intro-text {
    padding: 120px 0 20px 0;
    max-width: 80%;
  }
}

@media only screen and (max-width: 480px) {
  .intro-newsroom .container .intro-text {
    max-width: 100%;
  }
}

.intro-newsroom .container .intro-text span {
  color: #26b5f3;
  margin: 0 0 5px 0;
  display: block;
}

.lista-posts {
  padding-top: 0;
  background-color: #1a2969;
  background-image: -moz-linear-gradient(top, #171f56, #1e3885);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#171f56), to(#1e3885));
  background-image: -webkit-linear-gradient(top, #171f56, #1e3885);
  background-image: -o-linear-gradient(top, #171f56, #1e3885);
  background-image: linear-gradient(to bottom, #171f56, #1e3885);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF171F56', endColorstr='#FF1E3885', GradientType=0);
}

.lista-posts .container .row {
  margin-left: -15px;
  margin-right: -15px;
}

@media only screen and (max-width: 991px) {
  .lista-posts .container .row {
    margin-left: -10px;
    margin-right: -10px;
  }
}

.lista-posts .container .row article {
  padding: 0 15px;
  margin: 30px 0 0 0;
  height: auto;
}

@media only screen and (max-width: 991px) {
  .lista-posts .container .row article {
    width: 50% !important;
    padding: 0 10px;
    margin: 20px 0 0 0;
  }
}

@media only screen and (max-width: 600px) {
  .lista-posts .container .row article {
    width: 100% !important;
  }
}

.lista-posts .container .row article a {
  display: block;
  height: 100%;
  background: white;
  border-radius: 20px;
}

.lista-posts .container .row article a .img-article {
  height: 240px;
  width: 100%;
  overflow: hidden;
  background: #26b5f3;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

@media only screen and (max-width: 767px) {
  .lista-posts .container .row article a .img-article {
    height: 200px;
  }
}

.lista-posts .container .row article a .img-article img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  -moz-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transform: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.lista-posts .container .row article a .box-article {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 30px;
}

@media only screen and (max-width: 1199px) {
  .lista-posts .container .row article a .box-article {
    padding: 20px 25px;
  }
}

@media only screen and (max-width: 991px) {
  .lista-posts .container .row article a .box-article {
    padding: 20px;
  }
}

@media only screen and (max-width: 600px) {
  .lista-posts .container .row article a .box-article {
    padding: 20px;
  }
}

.lista-posts .container .row article a .box-article .date {
  font-size: 14px;
  line-height: 14px;
  color: #26b5f3;
  font-weight: 700;
  margin: 0 0 10px 0;
  display: block;
}

.lista-posts .container .row article a .box-article h4 {
  color: #171f56;
  margin: 0 0 10px 0;
}

.lista-posts .container .row article a .box-article p {
  color: #171f56;
  margin: 0;
}

.lista-posts .container .row article a .box-article .button {
  margin: 20px 0 0 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transform: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.lista-posts .container .row article a:hover .img-article img {
  -moz-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
  opacity: 0.25;
  filter: alpha(opacity=25);
}

@media only screen and (max-width: 991px) {
  .lista-posts .container .row article a:hover .img-article img {
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

.lista-posts .container .row article a:hover .button {
  background: #1e3885;
}

@media only screen and (max-width: 991px) {
  .lista-posts .container .row article a:hover .button {
    background: #26b5f3;
  }
}

.lista-posts .container .row .navigation {
  clear: both;
  padding: 0 15px;
  text-align: center;
}

.lista-posts .container .row .navigation h2 {
  display: none;
}

.lista-posts .container .row .navigation .nav-links {
  padding: 40px 0 0 0;
}

.lista-posts .container .row .navigation .nav-links .page-numbers {
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  padding: 0 10px;
}

@media only screen and (max-width: 600px) {
  .lista-posts .container .row .navigation .nav-links .page-numbers {
    padding: 0 6px;
  }
}

.lista-posts .container .row .navigation .nav-links .next span, .lista-posts .container .row .navigation .nav-links .prev span {
  font-size: 12px;
  color: #1e3885;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transform: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.lista-posts .container .row .navigation .nav-links .next:hover span, .lista-posts .container .row .navigation .nav-links .prev:hover span {
  color: #26b5f3;
}

@media only screen and (max-width: 991px) {
  .lista-posts .container .row .navigation .nav-links .next:hover span, .lista-posts .container .row .navigation .nav-links .prev:hover span {
    color: #1e3885;
  }
}

.lista-posts .container .row .navigation .nav-links span {
  color: white;
}

.lista-posts .container .row .navigation .nav-links a {
  color: #1e3885;
}

.lista-posts .container .row .navigation .nav-links a:hover {
  color: #26b5f3;
}

@media only screen and (max-width: 991px) {
  .lista-posts .container .row .navigation .nav-links a:hover {
    color: #1e3885;
  }
}

@media only screen and (max-width: 991px) {
  .contenido-post {
    overflow: hidden;
  }
}

.contenido-post .container blockquote {
  margin: 0 60px;
  padding: 0;
  position: relative;
}

.contenido-post .container blockquote p {
  font-size: 24px;
  line-height: 32px;
  font-weight: 300;
  font-style: italic;
}

@media only screen and (max-width: 767px) {
  .contenido-post .container blockquote p {
    font-size: 18px;
    line-height: 26px;
  }
}

.contenido-post .container blockquote:before {
  content: "“";
  position: absolute;
  top: 15px;
  left: -40px;
  color: #26b5f3;
  font-size: 80px;
}

.contenido-post .container strong {
  font-weight: 700;
}

.contenido-post .container a {
  font-weight: 600;
  color: #26b5f3;
  text-decoration: underline;
}

.contenido-post .container a:hover {
  color: #171f56;
}

@media only screen and (max-width: 991px) {
  .contenido-post .container a:hover {
    color: #26b5f3;
  }
}

.contenido-post .container ul {
  margin: 0 0 20px 30px;
}

.contenido-post .container ul li {
  list-style: disc;
  margin: 0 0 10px 0;
}

.contenido-post .container h1, .contenido-post .container h2, .contenido-post .container h3, .contenido-post .container h4, .contenido-post .container h5 {
  padding-top: 20px;
  color: #171f56;
}

@media only screen and (max-width: 600px) {
  .contenido-post .container h1, .contenido-post .container h2, .contenido-post .container h3, .contenido-post .container h4, .contenido-post .container h5 {
    padding-top: 10px;
  }
}

.contenido-post .container h6 {
  font-size: 13px;
  line-height: 18px;
  font-weight: 300;
  margin-top: -10px;
}

.contenido-post .container h6 strong {
  font-weight: 500;
}

.contenido-post .container img {
  border-radius: 20px;
  max-width: 100%;
  height: auto;
  width: auto;
}

@media only screen and (max-width: 991px) {
  .contenido-post .container .row {
    display: block;
  }
}

.contenido-post .container .row .newsroom-content {
  padding-right: 50px;
}

@media only screen and (max-width: 1360px) {
  .contenido-post .container .row .newsroom-content {
    padding-right: 40px;
  }
}

@media only screen and (max-width: 991px) {
  .contenido-post .container .row .newsroom-content {
    padding-right: 10px;
    width: 100% !important;
  }
}

.contenido-post .container .row .menu-list .list-box {
  background: #f1f1f1;
}

.contenido-post .container .row .menu-list .list-box .button {
  position: relative;
  font-size: 14px;
  color: white;
  text-decoration: none;
  font-weight: 700;
}

.contenido-post .container .row .menu-list .list-box .button:before {
  font-family: "icomoon";
  content: "\e904";
  font-size: 10px;
  color: white;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  display: block;
  line-height: 21px;
  position: absolute;
  left: 8px;
  top: 9px;
  text-align: center;
}

.contenido-post .container .row .menu-list .list-box .button:hover {
  background: #1e3885;
}

@media only screen and (max-width: 991px) {
  .contenido-post .container .row .menu-list .list-box .button:hover {
    background: #26b5f3;
  }
}

.contenido-post .container .row .menu-list .list-box p {
  margin: 30px 0 20px 0;
  font-size: 18px;
  font-weight: 800;
  color: #11184a;
}

.contenido-post .container .row .menu-list .list-box .list-item {
  font-size: 15px;
  color: #11184a;
  text-decoration: none;
  font-weight: 700;
  margin: 0 0 15px 0;
  padding: 0 0 0 30px;
  position: relative;
  display: block;
  line-height: 18px;
}

.contenido-post .container .row .menu-list .list-box .list-item:before {
  font-family: "icomoon";
  content: "\e90c";
  font-size: 9px;
  color: white;
  background: #26b5f3;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  display: block;
  line-height: 21px;
  position: absolute;
  left: 0;
  top: 0;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transform: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contenido-post .container .row .menu-list .list-box .list-item:hover:before {
  background: #1e3885;
}

@media only screen and (max-width: 991px) {
  .contenido-post .container .row .menu-list .list-box .list-item:hover:before {
    background: #26b5f3;
  }
}

/*Contact*/
.intro-contact .container {
  background-image: url("/wp-content/themes/graphcat/img/background-contact.jpg");
}

.content-coordinators {
  margin-bottom: -40px;
}

.content-coordinators .container .container-coordinator {
  margin-bottom: 40px;
}

.content-coordinators .container .container-coordinator .personal-info {
  margin: 20px 0 0 0;
}

.content-coordinators .container .container-coordinator .personal-info .name {
  font-size: 25px;
  line-height: 30px;
  margin: 0 0 10px 0;
  color: #171f56;
}

@media only screen and (max-width: 600px) {
  .content-coordinators .container .container-coordinator .personal-info .name {
    font-size: 22px;
    line-height: 28px;
  }
}

@media only screen and (max-width: 480px) {
  .content-coordinators .container .container-coordinator .personal-info .name {
    font-size: 18px;
    line-height: 22px;
    margin: 0 0 5px 0;
  }
}

.content-coordinators .container .container-coordinator .personal-info .institution {
  color: #26b5f3;
  font-weight: 700;
  margin: 0 0 10px 0;
}

@media only screen and (max-width: 480px) {
  .content-coordinators .container .container-coordinator .personal-info .institution {
    margin: 0 0 10px 0;
  }
}

.content-coordinators .container .container-coordinator .personal-info .email {
  margin: 0 0 5px 0;
}

@media only screen and (max-width: 480px) {
  .content-coordinators .container .container-coordinator .personal-info .email {
    margin: 0;
  }
}

.content-coordinators .container .container-coordinator .personal-info .email a {
  text-decoration: underline;
  color: #171f56;
}

.content-coordinators .container .container-coordinator .personal-info .email a:hover {
  color: #26b5f3;
}

@media only screen and (max-width: 991px) {
  .content-coordinators .container .container-coordinator .personal-info .email a:hover {
    color: #171f56;
  }
}

.content-coordinators .container .container-coordinator .personal-img img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
}

@media only screen and (max-width: 767px) {
  .content-coordinators .container .container-coordinator .personal-img img {
    width: 150px;
    height: 150px;
  }
}

@media only screen and (max-width: 600px) {
  .content-coordinators .container .container-coordinator .personal-img img {
    width: 130px;
    height: 130px;
  }
}

@media only screen and (max-width: 480px) {
  .content-coordinators .container .container-coordinator .personal-img img {
    width: 80px;
    height: 80px;
  }
}

/*About*/
.intro-about .container {
  background-image: url("/wp-content/themes/graphcat/img/background-about.jpg");
}

.content-about .container .row .newsroom-content ul.pillars {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -50px 20px -20px;
  padding: 0;
}

@media only screen and (max-width: 1360px) {
  .content-about .container .row .newsroom-content ul.pillars {
    margin: 0 -40px 20px -20px;
  }
}

@media only screen and (max-width: 991px) {
  .content-about .container .row .newsroom-content ul.pillars {
    margin: 0 -10px 20px -10px;
  }
}

.content-about .container .row .newsroom-content ul.pillars li {
  list-style: none;
  width: calc(50% - 40px);
  background: #f1f1f1;
  margin: 15px 20px;
  padding: 30px;
  border-radius: 20px;
}

@media only screen and (max-width: 991px) {
  .content-about .container .row .newsroom-content ul.pillars li {
    width: calc(50% - 20px);
    margin: 10px;
  }
}

@media only screen and (max-width: 600px) {
  .content-about .container .row .newsroom-content ul.pillars li {
    width: 100%;
  }
}

@media only screen and (max-width: 480px) {
  .content-about .container .row .newsroom-content ul.pillars li {
    padding: 20px;
  }
}

.content-about .container .row .newsroom-content ul.pillars li i {
  text-transform: uppercase;
  background: #26b5f3;
  height: 30px;
  display: table;
  line-height: 30px;
  font-size: 14px;
  font-weight: 700;
  color: white;
  font-style: normal;
  padding: 0 20px;
  border-radius: 15px;
}

.content-about .container .row .newsroom-content ul.pillars li h3, .content-about .container .row .newsroom-content ul.pillars li h4 {
  margin: 0 0 10px 0;
  padding: 0;
}

.content-about .container .row .newsroom-content ul.pillars li p {
  font-size: 14px;
  line-height: 18px;
  margin: 0;
}

.content-about .container .row .newsroom-content .toggle .toggle-title p span {
  color: white;
  left: 0;
  margin: 0 10px 0 0;
}

.content-about .container .row .newsroom-content .toggle .toggle-title:hover p {
  color: #1e3885;
}

@media only screen and (max-width: 991px) {
  .content-about .container .row .newsroom-content .toggle .toggle-title:hover p {
    color: #26b5f3;
  }
}

.content-about .container .row .newsroom-content .toggle .toggle-title:hover p span {
  background: #1e3885;
}

@media only screen and (max-width: 991px) {
  .content-about .container .row .newsroom-content .toggle .toggle-title:hover p span {
    background: #26b5f3;
  }
}

.content-about .container .row .menu-list .list-box {
  background: #171f56;
}

.content-about .container .row .menu-list .list-box p {
  color: white;
  margin: 0;
}

.content-about .container .row .menu-list .list-box ul {
  margin: 0;
}

@media only screen and (max-width: 991px) {
  .content-about .container .row .menu-list .list-box ul {
    display: flex;
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 600px) {
  .content-about .container .row .menu-list .list-box ul {
    display: block;
  }
}

.content-about .container .row .menu-list .list-box ul li {
  margin: 20px 0 10px 0;
  position: relative;
  padding: 0 0 0 70px;
  display: block;
  min-height: 50px;
}

@media only screen and (max-width: 991px) {
  .content-about .container .row .menu-list .list-box ul li {
    width: 50%;
  }
}

@media only screen and (max-width: 600px) {
  .content-about .container .row .menu-list .list-box ul li {
    width: 100%;
  }
}

.content-about .container .row .menu-list .list-box ul li img {
  padding: 0;
  width: 50px;
  display: block;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}

.content-about .container .row .menu-list .list-box ul li p {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  margin: 0 0 5px 0;
}

.content-about .container .row .menu-list .list-box ul li a {
  text-decoration: none;
}

.content-about .container .row .menu-list .list-box ul li a:before {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transform: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.content-about .container .row .menu-list .list-box ul li a:hover {
  color: #4c2fc1;
}

@media only screen and (max-width: 991px) {
  .content-about .container .row .menu-list .list-box ul li a:hover {
    color: #7358e3;
  }
}

.content-about .container .row .menu-list .list-box ul li a:hover:before {
  background: #4c2fc1;
}

@media only screen and (max-width: 991px) {
  .content-about .container .row .menu-list .list-box ul li a:hover:before {
    background: #7358e3;
  }
}
