@charset "UTF-8";
.aos-transparent {
  opacity: 0;
}

.aos-not-transparent {
  opacity: 1;
}

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT
Copyright (c) 2015 Daniel Eden
*/
.animated {
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.infinite {
  animation-iteration-count: infinite;
}
.animated.hinge {
  -webkit-animation-duration: 2s;
  -moz-animation-duration: 2s;
  -o-animation-duration: 2s;
  animation-duration: 2s;
}
.animated.bounceIn, .animated.bounceOut {
  -webkit-animation-duration: 0.75s;
  -moz-animation-duration: 0.75s;
  -o-animation-duration: 0.75s;
  animation-duration: 0.75s;
}
.animated.flipOutX, .animated.flipOutY {
  -webkit-animation-duration: 0.75s;
  -moz-animation-duration: 0.75s;
  -o-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  -moz-animation-name: fadeIn;
  -o-animation-name: fadeIn;
  animation-name: fadeIn;
}

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

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-o-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  -moz-animation-name: fadeOut;
  -o-animation-name: fadeOut;
  animation-name: fadeOut;
}

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

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@-moz-keyframes flipInX {
  0% {
    -moz-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -moz-transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -moz-transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -moz-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@-o-keyframes flipInX {
  0% {
    -o-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -o-transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -o-transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -o-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
  -o-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  -moz-animation-name: flipInX;
  -o-animation-name: flipInX;
  animation-name: flipInX;
}

/**
* Default CSS theme for jQuery-Form-Validator.
* @version 2.2.35
* @author Victor Jonsson <victorjonsson.se>
*/
/* Input element having an invalid value */
select.error,
input.error {
  border-color: #b94a48;
  background-image: url("data:image/png;base64,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YWRvYmUueG1wAAAAAAA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/Pgo8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA1LjYtYzAxNCA3OS4xNTY3OTcsIDIwMTQvMDgvMjAtMDk6NTM6MDIgICAgICAgICI+CiAgIDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+CiAgICAgIDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiCiAgICAgICAgICAgIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIKICAgICAgICAgICAgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iCiAgICAgICAgICAgIHhtbG5zOnN0RXZ0PSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VFdmVudCMiCiAgICAgICAgICAgIHhtbG5zOnBob3Rvc2hvcD0iaHR0cDovL25zLmFkb2JlLmNvbS9waG90b3Nob3AvMS4wLyIKICAgICAgICAgICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICAgICAgICAgICB4bWxuczp0aWZmPSJodHRwOi8vbnMuYWRvYmUuY29tL3RpZmYvMS4wLyIKICAgICAgICAgICAgeG1sbnM6ZXhpZj0iaHR0cDovL25zLmFkb2JlLmNvbS9leGlmLzEuMC8iPgogICAgICAgICA8eG1wOkNyZWF0b3JUb29sPkFkb2JlIFBob3Rvc2hvcCBDQyAyMDE0IChNYWNpbnRvc2gpPC94bXA6Q3JlYXRvclRvb2w+CiAgICAgICAgIDx4bXA6Q3JlYXRlRGF0ZT4yMDE1LTA1LTE1VDEwOjM4OjU1KzAyOjAwPC94bXA6Q3JlYXRlRGF0ZT4KICAgICAgICAgPHhtcDpNZXRhZGF0YURhdGU+MjAxNS0wNS0xNVQxMDozODo1NSswMjowMDwveG1wOk1ldGFkYXRhRGF0ZT4KICAgICAgICAgPHhtcDpNb2RpZnlEYXRlPjIwMTUtMDUtMTVUMTA6Mzg6NTUrMDI6MDA8L3htcDpNb2RpZnlEYXRlPgogICAgICAgICA8eG1wTU06SW5zdGFuY2VJRD54bXAuaWlkOjU4ZmM5Yzg4LWFiYWUtNGEzMC1iNGUxLTUyMTQyZWYzMzM4NDwveG1wTU06SW5zdGFuY2VJRD4KICAgICAgICAgPHhtcE1NOkRvY3VtZW50SUQ+YWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOjM4YmMxOTAwLTNiNmMtMTE3OC05ZDQ5LWY0MzVhZTM4NTFiMTwveG1wTU06RG9jdW1lbnRJRD4KICAgICAgICAgPHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD54bXAuZGlkOmQ1ZjJhY2QyLTQ2ZDUtNGVlZS05NDllLThkMDI0MTljZjA3ODwveG1wTU06T3JpZ2luYWxEb2N1bWVudElEPgogICAgICAgICA8eG1wTU06SGlzdG9yeT4KICAgICAgICAgICAgPHJkZjpTZXE+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6YWN0aW9uPmNyZWF0ZWQ8L3N0RXZ0OmFjdGlvbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0Omluc3RhbmNlSUQ+eG1wLmlpZDpkNWYyYWNkMi00NmQ1LTRlZWUtOTQ5ZS04ZDAyNDE5Y2YwNzg8L3N0RXZ0Omluc3RhbmNlSUQ+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDp3aGVuPjIwMTUtMDUtMTVUMTA6Mzg6NTUrMDI6MDA8L3N0RXZ0OndoZW4+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDpzb2Z0d2FyZUFnZW50PkFkb2JlIFBob3Rvc2hvcCBDQyAyMDE0IChNYWNpbnRvc2gpPC9zdEV2dDpzb2Z0d2FyZUFnZW50PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDphY3Rpb24+c2F2ZWQ8L3N0RXZ0OmFjdGlvbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0Omluc3RhbmNlSUQ+eG1wLmlpZDo1OGZjOWM4OC1hYmFlLTRhMzAtYjRlMS01MjE0MmVmMzMzODQ8L3N0RXZ0Omluc3RhbmNlSUQ+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDp3aGVuPjIwMTUtMDUtMTVUMTA6Mzg6NTUrMDI6MDA8L3N0RXZ0OndoZW4+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDpzb2Z0d2FyZUFnZW50PkFkb2JlIFBob3Rvc2hvcCBDQyAyMDE0IChNYWNpbnRvc2gpPC9zdEV2dDpzb2Z0d2FyZUFnZW50PgogICAgICAgICAgICAgICAgICA8c3RFdnQ6Y2hhbmdlZD4vPC9zdEV2dDpjaGFuZ2VkPgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgPC9yZGY6U2VxPgogICAgICAgICA8L3htcE1NOkhpc3Rvcnk+CiAgICAgICAgIDxwaG90b3Nob3A6VGV4dExheWVycz4KICAgICAgICAgICAgPHJkZjpCYWc+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT7DlzwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+w5c8L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+YTwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+YTwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgIDwvcmRmOkJhZz4KICAgICAgICAgPC9waG90b3Nob3A6VGV4dExheWVycz4KICAgICAgICAgPHBob3Rvc2hvcDpDb2xvck1vZGU+MzwvcGhvdG9zaG9wOkNvbG9yTW9kZT4KICAgICAgICAgPHBob3Rvc2hvcDpJQ0NQcm9maWxlPkRpc3BsYXk8L3Bob3Rvc2hvcDpJQ0NQcm9maWxlPgogICAgICAgICA8ZGM6Zm9ybWF0PmltYWdlL3BuZzwvZGM6Zm9ybWF0PgogICAgICAgICA8dGlmZjpPcmllbnRhdGlvbj4xPC90aWZmOk9yaWVudGF0aW9uPgogICAgICAgICA8dGlmZjpYUmVzb2x1dGlvbj43MjAwMDAvMTAwMDA8L3RpZmY6WFJlc29sdXRpb24+CiAgICAgICAgIDx0aWZmOllSZXNvbHV0aW9uPjcyMDAwMC8xMDAwMDwvdGlmZjpZUmVzb2x1dGlvbj4KICAgICAgICAgPHRpZmY6UmVzb2x1dGlvblVuaXQ+MjwvdGlmZjpSZXNvbHV0aW9uVW5pdD4KICAgICAgICAgPGV4aWY6Q29sb3JTcGFjZT42NTUzNTwvZXhpZjpDb2xvclNwYWNlPgogICAgICAgICA8ZXhpZjpQaXhlbFhEaW1lbnNpb24+MTk8L2V4aWY6UGl4ZWxYRGltZW5zaW9uPgogICAgICAgICA8ZXhpZjpQaXhlbFlEaW1lbnNpb24+MTc8L2V4aWY6UGl4ZWxZRGltZW5zaW9uPgogICAgICA8L3JkZjpEZXNjcmlwdGlvbj4KICAgPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAKPD94cGFja2V0IGVuZD0idyI/Pmkb7KYAAAAgY0hSTQAAbZgAAHOOAAD6zAAAhPoAAHmBAAD9EwAAMG0AABIpDR4mTgAAAOZJREFUeNrMlL0NwyAQhZ+jLJAVkE4M4BVMR50RvIIzAivYI6S+zh4hHgAhZYWM4DTnCCFsoshFnkQBB9/9impZFhylEw5UFsaaatbUbj1iTR1ruhRhrKkGMALoWVOXsY8AHIAHa1KlyO4AVq+ONbkE1MhWAejjh+cMbBDPqzqJQAGoM3c/qnLdlPRcod7G+jAVYQJs0zT2QKXRmADMufMcaC9NJR1VW46sD6YI2wC9og7HkV+tD6/SaKQgIytWk9Y0B5tTkPVhljqZnbubNevFs7E+PBNbI9HfrA/DV6Pxn7/Gr3oPAAwLXEdIhTGuAAAAAElFTkSuQmCC");
  background-position: right 5px center;
  background-repeat: no-repeat;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

/* Input element having a valid value */
select.valid,
input.valid {
  border-color: #468847;
  background-image: url("data:image/png;base64,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YWRvYmUueG1wAAAAAAA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/Pgo8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA1LjYtYzAxNCA3OS4xNTY3OTcsIDIwMTQvMDgvMjAtMDk6NTM6MDIgICAgICAgICI+CiAgIDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+CiAgICAgIDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiCiAgICAgICAgICAgIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIKICAgICAgICAgICAgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iCiAgICAgICAgICAgIHhtbG5zOnN0RXZ0PSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VFdmVudCMiCiAgICAgICAgICAgIHhtbG5zOnBob3Rvc2hvcD0iaHR0cDovL25zLmFkb2JlLmNvbS9waG90b3Nob3AvMS4wLyIKICAgICAgICAgICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICAgICAgICAgICB4bWxuczp0aWZmPSJodHRwOi8vbnMuYWRvYmUuY29tL3RpZmYvMS4wLyIKICAgICAgICAgICAgeG1sbnM6ZXhpZj0iaHR0cDovL25zLmFkb2JlLmNvbS9leGlmLzEuMC8iPgogICAgICAgICA8eG1wOkNyZWF0b3JUb29sPkFkb2JlIFBob3Rvc2hvcCBDQyAyMDE0IChNYWNpbnRvc2gpPC94bXA6Q3JlYXRvclRvb2w+CiAgICAgICAgIDx4bXA6Q3JlYXRlRGF0ZT4yMDE1LTA1LTE1VDEwOjM5OjExKzAyOjAwPC94bXA6Q3JlYXRlRGF0ZT4KICAgICAgICAgPHhtcDpNZXRhZGF0YURhdGU+MjAxNS0wNS0xNVQxMDozOToxMSswMjowMDwveG1wOk1ldGFkYXRhRGF0ZT4KICAgICAgICAgPHhtcDpNb2RpZnlEYXRlPjIwMTUtMDUtMTVUMTA6Mzk6MTErMDI6MDA8L3htcDpNb2RpZnlEYXRlPgogICAgICAgICA8eG1wTU06SW5zdGFuY2VJRD54bXAuaWlkOmU3ODMyNmIwLTQ5NmItNGMyMy05ZGI1LTI4OTRkMWQxZWZmYzwveG1wTU06SW5zdGFuY2VJRD4KICAgICAgICAgPHhtcE1NOkRvY3VtZW50SUQ+YWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOjQxZDQzYTcwLTNiNmMtMTE3OC05ZDQ5LWY0MzVhZTM4NTFiMTwveG1wTU06RG9jdW1lbnRJRD4KICAgICAgICAgPHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD54bXAuZGlkOjVkM2FkZDhiLTljMmUtNDU0ZC1iMjFhLTk5ZTliZDY2ODg1MDwveG1wTU06T3JpZ2luYWxEb2N1bWVudElEPgogICAgICAgICA8eG1wTU06SGlzdG9yeT4KICAgICAgICAgICAgPHJkZjpTZXE+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6YWN0aW9uPmNyZWF0ZWQ8L3N0RXZ0OmFjdGlvbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0Omluc3RhbmNlSUQ+eG1wLmlpZDo1ZDNhZGQ4Yi05YzJlLTQ1NGQtYjIxYS05OWU5YmQ2Njg4NTA8L3N0RXZ0Omluc3RhbmNlSUQ+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDp3aGVuPjIwMTUtMDUtMTVUMTA6Mzk6MTErMDI6MDA8L3N0RXZ0OndoZW4+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDpzb2Z0d2FyZUFnZW50PkFkb2JlIFBob3Rvc2hvcCBDQyAyMDE0IChNYWNpbnRvc2gpPC9zdEV2dDpzb2Z0d2FyZUFnZW50PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDphY3Rpb24+c2F2ZWQ8L3N0RXZ0OmFjdGlvbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0Omluc3RhbmNlSUQ+eG1wLmlpZDplNzgzMjZiMC00OTZiLTRjMjMtOWRiNS0yODk0ZDFkMWVmZmM8L3N0RXZ0Omluc3RhbmNlSUQ+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDp3aGVuPjIwMTUtMDUtMTVUMTA6Mzk6MTErMDI6MDA8L3N0RXZ0OndoZW4+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDpzb2Z0d2FyZUFnZW50PkFkb2JlIFBob3Rvc2hvcCBDQyAyMDE0IChNYWNpbnRvc2gpPC9zdEV2dDpzb2Z0d2FyZUFnZW50PgogICAgICAgICAgICAgICAgICA8c3RFdnQ6Y2hhbmdlZD4vPC9zdEV2dDpjaGFuZ2VkPgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgPC9yZGY6U2VxPgogICAgICAgICA8L3htcE1NOkhpc3Rvcnk+CiAgICAgICAgIDxwaG90b3Nob3A6VGV4dExheWVycz4KICAgICAgICAgICAgPHJkZjpCYWc+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT7DlzwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+w5c8L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+YTwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+YTwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgIDwvcmRmOkJhZz4KICAgICAgICAgPC9waG90b3Nob3A6VGV4dExheWVycz4KICAgICAgICAgPHBob3Rvc2hvcDpDb2xvck1vZGU+MzwvcGhvdG9zaG9wOkNvbG9yTW9kZT4KICAgICAgICAgPHBob3Rvc2hvcDpJQ0NQcm9maWxlPkRpc3BsYXk8L3Bob3Rvc2hvcDpJQ0NQcm9maWxlPgogICAgICAgICA8ZGM6Zm9ybWF0PmltYWdlL3BuZzwvZGM6Zm9ybWF0PgogICAgICAgICA8dGlmZjpPcmllbnRhdGlvbj4xPC90aWZmOk9yaWVudGF0aW9uPgogICAgICAgICA8dGlmZjpYUmVzb2x1dGlvbj43MjAwMDAvMTAwMDA8L3RpZmY6WFJlc29sdXRpb24+CiAgICAgICAgIDx0aWZmOllSZXNvbHV0aW9uPjcyMDAwMC8xMDAwMDwvdGlmZjpZUmVzb2x1dGlvbj4KICAgICAgICAgPHRpZmY6UmVzb2x1dGlvblVuaXQ+MjwvdGlmZjpSZXNvbHV0aW9uVW5pdD4KICAgICAgICAgPGV4aWY6Q29sb3JTcGFjZT42NTUzNTwvZXhpZjpDb2xvclNwYWNlPgogICAgICAgICA8ZXhpZjpQaXhlbFhEaW1lbnNpb24+MTk8L2V4aWY6UGl4ZWxYRGltZW5zaW9uPgogICAgICAgICA8ZXhpZjpQaXhlbFlEaW1lbnNpb24+MTc8L2V4aWY6UGl4ZWxZRGltZW5zaW9uPgogICAgICA8L3JkZjpEZXNjcmlwdGlvbj4KICAgPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAKPD94cGFja2V0IGVuZD0idyI/Pn/qNPoAAAAgY0hSTQAAbZgAAHOOAAD6zAAAhPoAAHmBAAD9EwAAMG0AABIpDR4mTgAAAMBJREFUeNrE1L0NwyAURtHrKAu4pPUKXsGs4AIGyGRQ2CM4K3gFt3TJCE5DgSL+7FgKEg0SB77HE82+71w1blw47mc3ais6YAGkUW47fbMA6n6Kqa1ogekbSmLaipe2ok9AC9AfeYAWmHycKqgUswOWAIxBbz8BaGJ9pq0IF1e/YYhA0ii3HmmNVKwxhHIxt8IB0ij3rK2ZDGtRAyUx39ExcExB2df09ZDB0sMoN+eyN6VfQ1sxAG0JqsL+9gV9BgBw6UeG/cRoQwAAAABJRU5ErkJggg==");
  background-position: right 5px center;
  background-repeat: no-repeat;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

/* File inputs with invalid value */
input[type=file].error {
  color: #b94a48;
  background: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* File inputs with valid value */
input[type=file].valid {
  color: #468847;
  background: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* Element showing an inline error message */
.form-error {
  display: inline-block;
  color: #b94a48;
  margin-top: 5px;
  margin-bottom: 10px;
  line-height: 140%;
}

/* Element showing the help text declared in data-validation-help */
span.help {
  color: #999;
  font-size: 90%;
}

/* Here you can style the look of the input while server being
  requested when using data-validation="server" */
select.validating-server-side,
input.validating-server-side {
  opacity: 0.5;
  background-image: url("data:image/gif;base64,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");
  background-position: right 5px center;
  background-repeat: no-repeat;
  background-color: #FFF;
}

/* Here you can style the entire form while server being
  requested when using data-validation="server" */
/* Container for error messages when having configuration
   parameter "errorMessagePosition" set to "top" */
div.form-error {
  background-color: #f2dede;
  padding: 15px;
  margin: 0 -15px 20px -15px;
  border: #b94a48 1px solid;
  border-radius: 4px;
}

/* Title in top of the error message container */
div.form-error strong {
  font-weight: bold;
  display: block;
  margin: 0;
  padding: 0 0 10px;
}

/* Typography styling in the error message container */
div.form-error strong,
div.form-error ul li {
  line-height: 140%;
  color: #b94a48;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
}

div.form-error ul,
div.form-error ul li {
  background: none;
}

.selectric-wrapper {
  position: relative;
  cursor: pointer;
}

.selectric-responsive {
  width: 100%;
}

.selectric {
  border: 1px solid #DDD;
  background: #FFF;
  position: relative;
}
.selectric .label {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12px;
  color: #333;
  margin: 0;
  padding: 0;
  text-align: left;
}
.selectric .button {
  display: block;
  position: absolute;
  right: 15px;
  top: 0;
  width: 15px;
  height: 100%;
  color: #BBB;
  text-align: center;
  font: 0/0 a;
}
@media (min-width: 768px) {
  .selectric .button {
    right: 10px;
  }
}
.selectric .button:after {
  content: "";
  font-family: "Ionicons";
  color: #333;
  font-size: 20px;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  /*html.ie-9 &{
    line-height: 100%;
  }*/
}

.selectric-hover .selectric {
  border-color: #c4c4c4;
}
.selectric-hover .selectric .button {
  color: #a2a2a2;
}
.selectric-hover .selectric .button:after {
  border-top-color: #a2a2a2;
}

.selectric-open {
  z-index: 17;
}
.selectric-open .selectric {
  border-color: #c4c4c4;
}
.selectric-open .selectric-items {
  display: block;
}

.selectric-disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default;
  user-select: none;
}

.selectric-hide-select {
  position: relative;
  overflow: hidden;
  width: 0;
  height: 0;
}
.selectric-hide-select select {
  position: absolute;
  left: -100%;
  display: none;
}

.selectric-input {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 1px !important;
  height: 1px !important;
  outline: none !important;
  border: none !important;
  *font: 0/0 a !important;
  background: none !important;
}

.selectric-temp-show {
  position: absolute !important;
  visibility: hidden !important;
  display: block !important;
}

/* Items box */
.selectric-items {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #FFF;
  border: 1px solid #c4c4c4;
  z-index: -1;
}
.selectric-items .selectric-scroll {
  height: 100%;
  overflow: auto;
}
.selectric-above .selectric-items {
  top: auto;
  bottom: 100%;
}
.selectric-items ul, .selectric-items li {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  line-height: 20px;
  min-height: 20px;
}
.selectric-items li {
  display: block;
  padding: 8px;
  border-top: 1px solid #FFF;
  border-bottom: 1px solid #EEE;
  color: #666;
  cursor: pointer;
}
.selectric-items li.selected {
  background: #EFEFEF;
  color: #444;
}
.selectric-items li:hover {
  background: #F0F0F0;
  color: #444;
}
.selectric-items .disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default !important;
  background: none !important;
  color: #666 !important;
  user-select: none;
}
.selectric-items .selectric-group .selectric-group-label {
  font-weight: bold;
  padding-left: 10px;
  cursor: default;
  user-select: none;
  background: none;
  color: #444;
}
.selectric-items .selectric-group.disabled li {
  filter: alpha(opacity=100);
  opacity: 1;
}
.selectric-items .selectric-group li {
  padding-left: 25px;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

/* Dots */
.slick-slider.dots {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: 2%;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  right: 25%;
  left: 25%;
  left: auto;
  right: auto;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0;
  font-size: 0;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover {
  outline: none;
}

.slick-dots li button:hover:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 30px;
  line-height: 20px;
  text-align: center;
  color: #FFF;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: #FFF;
  opacity: 1;
}

/*
  Usage:
  @include placeholder {
    font-style: italic;
    color: black;
  }
*/
/*
  Returns a media queries which scales the units relative to the xs and lg values
  Remember, dont be lazy when using this. If you've got other things that need be
  in media queries for the same element, dont use this.

  Usage: @include scale-pixels('margin-top', 25px, 125px);

  Returns:

  padding:25px

  @media (min-width:768px){
    padding:50px;
  }

  @media (min-width:992px){
    padding:80px;
  }

  @media (min-width:1200px){
    padding:115px;
  }

  @media (min-width:1500px){
    padding:125px;
  }
*/
/*
  Pass in a colour and it gives you a button, BOOM.
*/
/*
  Pass in 2 colours and it gives you a button width a gradient, BOOM.
*/
/*
  Bootstrap size mixins
*/
/*
 Viewport sized typography with minimum and maximum values

 @param {Number}   $min         - Minimum font size (px)
 @param {Number}   $max         - Maximum font size (px)

  Example scss - 2.79vw font size (with 53px fallback),
  @include responsive-font(20px, 53px);
*/
/*
  Icon Container sizing
*/
@font-face {
  font-family: "PxGrotesk";
  src: url("../fonts/px-grotesk/px-grotesk-bold-italix/PxGrotesk-Bold-Ita.woff") format("woff");
  font-weight: 700;
  font-style: "italic";
  font-display: auto;
}
@font-face {
  font-family: "PxGrotesk";
  src: url("../fonts/px-grotesk/px-grotesk-bold/PxGrotesk-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: "PxGrotesk";
  src: url("../fonts/px-grotesk/px-grotesk-light-italic/PxGrotesk-LightIta.woff") format("woff");
  font-weight: 300;
  font-style: "italic";
  font-display: auto;
}
@font-face {
  font-family: "PxGrotesk";
  src: url("../fonts/px-grotesk/px-grotesk-light/PxGrotesk-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: "PxGrotesk";
  src: url("../fonts/px-grotesk-regular-italic/PxGrotesk-RegularIta.woff") format("woff");
  font-style: "italic";
  font-display: auto;
}
@font-face {
  font-family: "PxGrotesk";
  src: url("../fonts/px-grotesk/px-grotesk-regular/PxGrotesk-Regular.woff") format("woff");
  font-style: normal;
  font-display: auto;
}
* {
  outline: 0 !important;
}

html {
  height: auto;
}

body {
  height: 100%;
  color: #3C2869;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  font-family: "PxGrotesk", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.45em;
  letter-spacing: -0.5px;
}
@media (min-width: 768px) {
  body {
    font-size: 15px;
  }
}
@media (min-width: 992px) {
  body {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  body {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  body {
    font-size: 22px;
  }
}
body.-video-lightbox-in {
  overflow: hidden;
}

a, a:hover, a:visited, a:focus {
  text-decoration: none;
}

ul {
  margin: 0;
}

a {
  color: #3C2869;
}

hr {
  border-color: #D4CCDD;
  transition: width 1s;
  transition-delay: 0.5s;
  width: 100vw;
}
@media (max-width: 767px) {
  hr {
    position: absolute;
    left: 30px;
    right: 30px;
    width: auto;
  }
}
@media (min-width: 1200px) {
  hr {
    width: 81vw;
  }
}
@media (max-width: 767px) {
  hr.top {
    top: 0;
    margin: 0;
  }
}
@media (min-width: 768px) {
  hr.top {
    margin-top: 5%;
    margin-bottom: 0;
  }
}
hr.bottom {
  margin-top: 0;
}
@media (max-width: 767px) {
  hr.bottom {
    bottom: 0;
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  [data-pnp-animate] hr {
    width: 0;
  }
  [data-pnp-animate].animated hr, html.touch hr {
    width: 100%;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  [data-pnp-animate].animated hr, html.touch hr {
    width: 750px;
  }
}
@media (min-width: 768px) and (min-width: 992px) {
  [data-pnp-animate].animated hr, html.touch hr {
    width: 750px;
  }
}
@media (min-width: 768px) and (min-width: 1200px) {
  [data-pnp-animate].animated hr, html.touch hr {
    width: 81vw;
  }
}

#content {
  overflow-x: hidden;
}

#wrapper {
  padding: 0;
  position: relative;
  z-index: 5;
  background: #fff;
}
@media (min-width: 768px) {
  #wrapper {
    background: #FAF5FA;
  }
}
#wrapper > .row {
  margin: 0;
}

.arrow-link {
  margin-top: 10px;
  display: block;
}
.arrow-link:after {
  font-family: "ionicons";
  content: "";
  font-size: 50px;
}

.cta-arrow-link:after {
  font-family: "ionicons";
  content: "";
  position: absolute;
  top: -15px;
  right: 0;
}
@media (min-width: 992px) {
  .cta-arrow-link:after {
    font-size: 75px;
  }
}

.-text_colour_light {
  color: #FFF;
}
.-text_colour_light a {
  color: #FFF;
}

.-text_colour_dark {
  color: #3C2869;
}
.-text_colour_dark a {
  color: #3C2869;
}

.-text_colour_muscadine {
  color: #3C2869;
}
.-text_colour_muscadine a {
  color: #3C2869;
}

.round-icon {
  position: relative;
  height: 50px;
  width: 50px;
  display: inline-block;
  font-size: 1.5em;
  border-radius: 100%;
}
.round-icon:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.bg-parallax {
  background-attachment: fixed;
}

.single-job-page .component-banner, .single-job-page .the-content {
  background-image: none !important;
  background-color: #14CDC8;
}

.layout.padding-bottom {
  padding-bottom: 50px;
  background-size: 100%;
  background-position: bottom right !important;
}
@media (min-width: 768px) {
  .layout.padding-bottom {
    background-size: cover;
    background-position: right !important;
    padding-bottom: 100px;
  }
}

.container-404 {
  height: calc(100vh);
}
.container-404 .text-container {
  position: relative;
  top: 40%;
  transform: translateY(-50%);
  text-align: center;
}

.f14 {
  font-size: 13.56px;
  font-size: 0.70625vw;
}
@media (max-width: 2548.6725663717px) {
  .f14 {
    font-size: 18px;
  }
}
@media (min-width: 1920px) {
  .f14 {
    font-size: 13.56px;
  }
}

.f16, .component-post-content .date, .nav-container .links .site-nav > li > a, .component-cards.-cards_person .content .sub-title, .component-cards.-cards_cards .item article a .meta,
.component-cards.-cards_cards .item article a:visited .meta, .component-cards.-cards_person .item article a .meta,
.component-cards.-cards_person .item article a:visited .meta, .component-cards.-cards_location .item article a .meta,
.component-cards.-cards_location .item article a:visited .meta {
  font-size: 16px;
  font-size: 0.8333333333vw;
}
@media (max-width: 1440px) {
  .f16, .component-post-content .date, .nav-container .links .site-nav > li > a, .component-cards.-cards_person .content .sub-title, .component-cards.-cards_cards .item article a .meta,
.component-cards.-cards_cards .item article a:visited .meta, .component-cards.-cards_person .item article a .meta,
.component-cards.-cards_person .item article a:visited .meta, .component-cards.-cards_location .item article a .meta,
.component-cards.-cards_location .item article a:visited .meta {
    font-size: 12px;
  }
}
@media (min-width: 1920px) {
  .f16, .component-post-content .date, .nav-container .links .site-nav > li > a, .component-cards.-cards_person .content .sub-title, .component-cards.-cards_cards .item article a .meta,
.component-cards.-cards_cards .item article a:visited .meta, .component-cards.-cards_person .item article a .meta,
.component-cards.-cards_person .item article a:visited .meta, .component-cards.-cards_location .item article a .meta,
.component-cards.-cards_location .item article a:visited .meta {
    font-size: 16px;
  }
}

.f18, .component-slider.-testimonial .slider-container .slide-container .slide-centre .job-title, .component-slider.-article .slider-container .slide-container .slide-centre .job-title, .component-cards.-cards_location .content .sub-title, .component-call-to-action.-standard_post .link-inner .content {
  font-size: 17.78px;
  font-size: 0.9260416667vw;
}
@media (max-width: 1943.7570303712px) {
  .f18, .component-slider.-testimonial .slider-container .slide-container .slide-centre .job-title, .component-slider.-article .slider-container .slide-container .slide-centre .job-title, .component-cards.-cards_location .content .sub-title, .component-call-to-action.-standard_post .link-inner .content {
    font-size: 18px;
  }
}
@media (min-width: 1920px) {
  .f18, .component-slider.-testimonial .slider-container .slide-container .slide-centre .job-title, .component-slider.-article .slider-container .slide-container .slide-centre .job-title, .component-cards.-cards_location .content .sub-title, .component-call-to-action.-standard_post .link-inner .content {
    font-size: 17.78px;
  }
}

.f20, .component-post-content, .component-cards.-cards_person .content .title, .component-cards.-cards_person .bg .rollover-text .inner p, .component-cards.-cards_cards .item article a .title,
.component-cards.-cards_cards .item article a:visited .title, .component-cards.-cards_person .item article a .title,
.component-cards.-cards_person .item article a:visited .title, .component-cards.-cards_location .item article a .title,
.component-cards.-cards_location .item article a:visited .title {
  font-size: 20px;
  font-size: 1.0416666667vw;
}
@media (max-width: 1728px) {
  .f20, .component-post-content, .component-cards.-cards_person .content .title, .component-cards.-cards_person .bg .rollover-text .inner p, .component-cards.-cards_cards .item article a .title,
.component-cards.-cards_cards .item article a:visited .title, .component-cards.-cards_person .item article a .title,
.component-cards.-cards_person .item article a:visited .title, .component-cards.-cards_location .item article a .title,
.component-cards.-cards_location .item article a:visited .title {
    font-size: 18px;
  }
}
@media (min-width: 1920px) {
  .f20, .component-post-content, .component-cards.-cards_person .content .title, .component-cards.-cards_person .bg .rollover-text .inner p, .component-cards.-cards_cards .item article a .title,
.component-cards.-cards_cards .item article a:visited .title, .component-cards.-cards_person .item article a .title,
.component-cards.-cards_person .item article a:visited .title, .component-cards.-cards_location .item article a .title,
.component-cards.-cards_location .item article a:visited .title {
    font-size: 20px;
  }
}

.f22, .component-banner.-small .sub-heading, .heading5, .component-text.-text_content h5 {
  font-size: 22.22px;
  font-size: 1.1572916667vw;
}
@media (max-width: 1555.3555355536px) {
  .f22, .component-banner.-small .sub-heading, .heading5, .component-text.-text_content h5 {
    font-size: 18px;
  }
}
@media (min-width: 1920px) {
  .f22, .component-banner.-small .sub-heading, .heading5, .component-text.-text_content h5 {
    font-size: 22.22px;
  }
}

.f25, .component-slider.-testimonial .slider-container .slide-container .slide-centre .author, .component-slider.-article .slider-container .slide-container .slide-centre .author {
  font-size: 25px;
  font-size: 1.3020833333vw;
}
@media (max-width: 1382.4px) {
  .f25, .component-slider.-testimonial .slider-container .slide-container .slide-centre .author, .component-slider.-article .slider-container .slide-container .slide-centre .author {
    font-size: 18px;
  }
}
@media (min-width: 1920px) {
  .f25, .component-slider.-testimonial .slider-container .slide-container .slide-centre .author, .component-slider.-article .slider-container .slide-container .slide-centre .author {
    font-size: 25px;
  }
}

.f27, .content1, .sub-heading1 {
  font-size: 26.67px;
  font-size: 1.3890625vw;
}
@media (max-width: 1295.8380202475px) {
  .f27, .content1, .sub-heading1 {
    font-size: 18px;
  }
}
@media (min-width: 1920px) {
  .f27, .content1, .sub-heading1 {
    font-size: 26.67px;
  }
}

.f31 {
  font-size: 31.11px;
  font-size: 1.6203125vw;
}
@media (max-width: 1234.3297974928px) {
  .f31 {
    font-size: 20px;
  }
}
@media (min-width: 1920px) {
  .f31 {
    font-size: 31.11px;
  }
}

.f31-s {
  font-size: 31.11px;
  font-size: 1.6203125vw;
}
@media (max-width: 925.7473481196px) {
  .f31-s {
    font-size: 15px;
  }
}
@media (min-width: 1920px) {
  .f31-s {
    font-size: 31.11px;
  }
}

.f35, .component-cards.-cards_location .content .title, .component-banner.-parallax .banner-panel .inner .sub-heading p, .heading4, .grid-layout .component-text .heading1, .grid-layout .component-text .heading2, .grid-layout .component-text.-text_content h2, .grid-layout .component-text .heading3, .grid-layout .component-text.-text_content h3, .grid-layout .component-text .heading4, .grid-layout .component-text.-text_content h4, .grid-layout .component-text .heading5, .grid-layout .component-text.-text_content h5, .grid-layout .component-text .heading6, .component-text.-text_content h4 {
  font-size: 35px;
  font-size: 1.8229166667vw;
}
@media (max-width: 1371.4285714286px) {
  .f35, .component-cards.-cards_location .content .title, .component-banner.-parallax .banner-panel .inner .sub-heading p, .heading4, .grid-layout .component-text .heading1, .grid-layout .component-text .heading2, .grid-layout .component-text.-text_content h2, .grid-layout .component-text .heading3, .grid-layout .component-text.-text_content h3, .grid-layout .component-text .heading4, .grid-layout .component-text.-text_content h4, .grid-layout .component-text .heading5, .grid-layout .component-text.-text_content h5, .grid-layout .component-text .heading6, .component-text.-text_content h4 {
    font-size: 25px;
  }
}
@media (min-width: 1920px) {
  .f35, .component-cards.-cards_location .content .title, .component-banner.-parallax .banner-panel .inner .sub-heading p, .heading4, .grid-layout .component-text .heading1, .grid-layout .component-text .heading2, .grid-layout .component-text.-text_content h2, .grid-layout .component-text .heading3, .grid-layout .component-text.-text_content h3, .grid-layout .component-text .heading4, .grid-layout .component-text.-text_content h4, .grid-layout .component-text .heading5, .grid-layout .component-text.-text_content h5, .grid-layout .component-text .heading6, .component-text.-text_content h4 {
    font-size: 35px;
  }
}

.f36 {
  font-size: 35.56px;
  font-size: 1.8520833333vw;
}
@media (max-width: 1079.8650168729px) {
  .f36 {
    font-size: 20px;
  }
}
@media (min-width: 1920px) {
  .f36 {
    font-size: 35.56px;
  }
}

.f40, .component-slider.-images.-images-case-study .slide .case-study-caption .stats .stat-title {
  font-size: 40px;
  font-size: 2.0833333333vw;
}
@media (max-width: 864px) {
  .f40, .component-slider.-images.-images-case-study .slide .case-study-caption .stats .stat-title {
    font-size: 18px;
  }
}
@media (min-width: 1920px) {
  .f40, .component-slider.-images.-images-case-study .slide .case-study-caption .stats .stat-title {
    font-size: 40px;
  }
}

.f44, .component-call-to-action.-standard_post .link-inner .heading {
  font-size: 44.44px;
  font-size: 2.3145833333vw;
}
@media (max-width: 864.0864086409px) {
  .f44, .component-call-to-action.-standard_post .link-inner .heading {
    font-size: 20px;
  }
}
@media (min-width: 1920px) {
  .f44, .component-call-to-action.-standard_post .link-inner .heading {
    font-size: 44.44px;
  }
}

.f45, .component-text.-text_quote .text .quote-inner, .heading2, .component-text.-text_content h2 {
  font-size: 24px;
}
@media (min-width: 768px) {
  .f45, .component-text.-text_quote .text .quote-inner, .heading2, .component-text.-text_content h2 {
    font-size: 30px;
  }
}
@media (min-width: 1200px) {
  .f45, .component-text.-text_quote .text .quote-inner, .heading2, .component-text.-text_content h2 {
    font-size: 40px;
  }
}
@media (min-width: 1500px) {
  .f45, .component-text.-text_quote .text .quote-inner, .heading2, .component-text.-text_content h2 {
    font-size: 45px;
  }
}

.f53, .desktop-overlay .overlay-mob-menu ul li a, .mobile-overlay .overlay-mob-menu ul li a, .component-banner.-small .heading, .heading1 {
  font-size: 53.33px;
  font-size: 2.7776041667vw;
}
@media (max-width: 1260.0787549222px) {
  .f53, .desktop-overlay .overlay-mob-menu ul li a, .mobile-overlay .overlay-mob-menu ul li a, .component-banner.-small .heading, .heading1 {
    font-size: 35px;
  }
}
@media (min-width: 1920px) {
  .f53, .desktop-overlay .overlay-mob-menu ul li a, .mobile-overlay .overlay-mob-menu ul li a, .component-banner.-small .heading, .heading1 {
    font-size: 53.33px;
  }
}

.f55, .heading6 {
  font-size: 55px;
  font-size: 2.8645833333vw;
}
@media (max-width: 1221.8181818182px) {
  .f55, .heading6 {
    font-size: 35px;
  }
}
@media (min-width: 1920px) {
  .f55, .heading6 {
    font-size: 55px;
  }
}

.f81 {
  font-size: 80.63px;
  font-size: 4.1994791667vw;
}
@media (max-width: 833.436686097px) {
  .f81 {
    font-size: 35px;
  }
}
@media (min-width: 1920px) {
  .f81 {
    font-size: 80.63px;
  }
}

.heading1,
.heading2,
.component-text.-text_content h2,
.heading3,
.component-text.-text_content h3,
.heading4,
.grid-layout .component-text .heading1,
.grid-layout .component-text .heading2,
.grid-layout .component-text.-text_content h2,
.grid-layout .component-text .heading3,
.grid-layout .component-text.-text_content h3,
.grid-layout .component-text .heading4,
.grid-layout .component-text.-text_content h4,
.grid-layout .component-text .heading5,
.grid-layout .component-text.-text_content h5,
.grid-layout .component-text .heading6,
.component-text.-text_content h4,
.heading5,
.component-text.-text_content h5,
.sub-heading1 {
  margin: 0;
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 1.5em;
  font-family: "PxGrotesk", sans-serif;
}

.heading2, .component-text.-text_content h2 {
  font-weight: 700;
  margin-bottom: 6%;
  margin-top: 3%;
}
@media (max-width: 767px) {
  .heading2, .component-text.-text_content h2 {
    line-height: 1.1em;
  }
}
@media (min-width: 768px) {
  .heading2, .component-text.-text_content h2 {
    margin-bottom: 3%;
    margin-top: 0;
    line-height: 1.2em;
  }
}
@media (min-width: 1200px) {
  .heading2, .component-text.-text_content h2 {
    margin-bottom: 0.5%;
  }
}

.heading3, .component-text.-text_content h3 {
  font-size: 45px;
  font-size: 2.34375vw;
  font-weight: 700;
  margin-bottom: 2%;
  line-height: 1.3em;
}
@media (max-width: 1066.6666666667px) {
  .heading3, .component-text.-text_content h3 {
    font-size: 25px;
  }
}
@media (min-width: 1920px) {
  .heading3, .component-text.-text_content h3 {
    font-size: 45px;
  }
}

.heading4, .grid-layout .component-text .heading1, .grid-layout .component-text .heading2, .grid-layout .component-text.-text_content h2, .grid-layout .component-text .heading3, .grid-layout .component-text.-text_content h3, .grid-layout .component-text .heading4, .grid-layout .component-text.-text_content h4, .grid-layout .component-text .heading5, .grid-layout .component-text.-text_content h5, .grid-layout .component-text .heading6, .component-text.-text_content h4 {
  font-weight: 700;
  margin-bottom: 2%;
  line-height: 1.3em;
}

.heading5, .component-text.-text_content h5 {
  border-top: 1px solid #e5e5e6;
}

.heading6 {
  font-weight: 700;
}

.sub-heading1 {
  font-weight: 300;
}

.content1 {
  line-height: 1.5em;
}

.touch .if-no-touch {
  display: none;
}

.no-touch .if-touch {
  display: none;
}

.no-overflow {
  overflow: hidden;
}

@media (min-width: 768px) {
  .text-center-sm {
    text-align: center;
  }
}

.uppercase {
  text-transform: uppercase;
}

@media (min-width: 1500px) {
  .hidden-xlg {
    display: none;
  }
}
.icon-container {
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  line-height: 0;
  padding: 6px;
}
@media (min-width: 768px) {
  .icon-container {
    padding: 9px;
  }
}
@media (min-width: 992px) {
  .icon-container {
    padding: 12px;
  }
}
@media (min-width: 1200px) {
  .icon-container {
    padding: 15px;
  }
}
@media (min-width: 1500px) {
  .icon-container {
    padding: 23px;
  }
}
.icon-container.-dark {
  background-color: #3C2869;
}
.icon-container.-dark i {
  color: #fff;
}
.icon-container.-rounded {
  border-radius: 8px;
}
.icon-container i {
  display: inline-block;
  font-size: 20px;
  width: 20px;
  height: 20px;
  line-height: 20px;
}
@media (min-width: 768px) {
  .icon-container i {
    font-size: 24px;
    width: 24px;
    height: 24px;
    line-height: 24px;
  }
}
@media (min-width: 992px) {
  .icon-container i {
    font-size: 28px;
    width: 28px;
    height: 28px;
    line-height: 28px;
  }
}
@media (min-width: 1200px) {
  .icon-container i {
    font-size: 32px;
    width: 32px;
    height: 32px;
    line-height: 32px;
  }
}
@media (min-width: 1500px) {
  .icon-container i {
    font-size: 40px;
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}
.icon-container.-size-1 {
  padding: 10px;
}
@media (min-width: 768px) {
  .icon-container.-size-1 {
    padding: 12px;
  }
}
@media (min-width: 992px) {
  .icon-container.-size-1 {
    padding: 14px;
  }
}
@media (min-width: 1200px) {
  .icon-container.-size-1 {
    padding: 16px;
  }
}
@media (min-width: 1500px) {
  .icon-container.-size-1 {
    padding: 20px;
  }
}
.icon-container.-size-2 {
  padding: 10px;
}
@media (min-width: 768px) {
  .icon-container.-size-2 {
    padding: 11px;
  }
}
@media (min-width: 992px) {
  .icon-container.-size-2 {
    padding: 12px;
  }
}
@media (min-width: 1200px) {
  .icon-container.-size-2 {
    padding: 13px;
  }
}
@media (min-width: 1500px) {
  .icon-container.-size-2 {
    padding: 15px;
  }
}
@media (min-width: 768px) {
  .icon-container.-lowericon i {
    position: relative;
    top: 2px;
  }
}

.overlay {
  transition: background-color 0.5s;
  background-color: rgba(0, 0, 0, 0.4);
}
.overlay.-overlay10 {
  background-color: rgba(0, 0, 0, 0.1);
}
.overlay.-overlay20 {
  background-color: rgba(0, 0, 0, 0.2);
}
.overlay.-overlay30 {
  background-color: rgba(0, 0, 0, 0.3);
}
.overlay.-overlay40 {
  background-color: rgba(0, 0, 0, 0.4);
}
.overlay.-overlay50 {
  background-color: rgba(0, 0, 0, 0.5);
}
.overlay.-overlay60 {
  background-color: rgba(0, 0, 0, 0.6);
}
.overlay.-overlay70 {
  background-color: rgba(0, 0, 0, 0.7);
}
.overlay.-overlay80 {
  background-color: rgba(0, 0, 0, 0.8);
}
.overlay.-overlay90 {
  background-color: rgba(0, 0, 0, 0.9);
}
.overlay.-absolute {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.text-light a, .text-light p, .text-light span, .text-light h1, .text-light h2, .text-light h3, .text-light h4, .text-light h5, .text-light h6, .text-light i {
  color: #fff;
}

.text-dark a, .text-dark p, .text-dark span, .text-dark h1, .text-dark h2, .text-dark h3, .text-dark h4, .text-dark h5, .text-dark h6, .text-dark i {
  color: #3C2869;
}

.nav-link {
  text-transform: uppercase;
  padding: 0 10px;
  display: inline-block;
  border-bottom: 5px solid transparent;
  transition: all 0.4s;
  letter-spacing: 0.06em;
}
@media (min-width: 768px) {
  .nav-link {
    font-size: 12px;
    padding: 0 8px;
  }
}
@media (min-width: 992px) {
  .nav-link {
    font-size: 12px;
    padding: 0 12px;
  }
}
@media (min-width: 1500px) {
  .nav-link {
    padding: 0 18px;
    font-size: 12px;
  }
}
.nav-link.no-hover:hover {
  border-color: transparent;
}

.display-table-xs {
  display: table;
  width: 100%;
}
.display-table-xs > * {
  display: table-row;
  height: 100%;
}
.display-table-xs > * > * {
  height: 100%;
  display: table-cell;
  float: none;
  vertical-align: middle;
}
.display-table-xs.-va-top > * > * {
  vertical-align: top;
}

.display-table-sm {
  display: block;
}
.display-table-sm > * {
  display: block;
}
.display-table-sm > * > * {
  display: block;
}
@media (min-width: 768px) {
  .display-table-sm {
    display: table;
  }
  .display-table-sm:not(.container) {
    width: 100%;
  }
  .display-table-sm > * {
    display: table-row;
    height: 100%;
  }
  .display-table-sm > * > *:not(.visible-xs) {
    height: 100%;
    display: table-cell;
    float: none;
    vertical-align: middle;
  }
}

.pnp-close {
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
}
.pnp-close:before {
  content: "";
  font-family: "Ionicons";
  display: block;
  color: #3C2869;
  font-size: 30px;
  font-weight: 200;
}
@media (min-width: 768px) {
  .pnp-close:before {
    font-size: 34px;
  }
}
@media (min-width: 992px) {
  .pnp-close:before {
    font-size: 38px;
  }
}
@media (min-width: 1200px) {
  .pnp-close:before {
    font-size: 42px;
  }
}
@media (min-width: 1500px) {
  .pnp-close:before {
    font-size: 50px;
  }
}

.pnp-bg, .component-slider.-images .slide, .component-cards.-cards_grid .row .item .tile, .has-background-video .loading-cover {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.full-height, .layout.full-height-layout .component-call-to-action.-bottom .link-container {
  height: 100vh;
}

@media (min-width: 768px) {
  .full-height-sm {
    height: 100vh;
  }
}

html.no-touch .parallax {
  background-attachment: fixed;
}

.display-table-xs {
  display: table;
  width: 100%;
}
.display-table-xs > * {
  display: table-row;
  height: 100%;
}
.display-table-xs > * > * {
  height: 100%;
  display: table-cell;
  float: none;
  vertical-align: middle;
}
.display-table-xs.-va-top > * > * {
  vertical-align: top;
}

.display-table {
  display: block;
}
.display-table > * {
  display: block;
}
.display-table > * > * {
  display: block;
}
@media (min-width: 768px) {
  .display-table {
    display: table;
  }
  .display-table:not(.container) {
    width: 100%;
  }
  .display-table > * {
    display: table-row;
    height: 100%;
  }
  .display-table > * > *:not(.visible-xs) {
    height: 100%;
    display: table-cell;
    float: none;
    vertical-align: middle;
  }
}

.no-padding {
  padding: 0;
}

.nav-height {
  height: 65px;
}
@media (min-width: 768px) {
  .nav-height {
    height: 65px;
  }
}
@media (min-width: 992px) {
  .nav-height {
    height: 73px;
  }
}
@media (min-width: 1200px) {
  .nav-height {
    height: 81px;
  }
}
@media (min-width: 1500px) {
  .nav-height {
    height: 96px;
  }
}

.nav-size, .pnp-modal .modal-header {
  height: 65px;
  width: 65px;
}
@media (min-width: 768px) {
  .nav-size, .pnp-modal .modal-header {
    height: 65px;
    width: 65px;
  }
}
@media (min-width: 992px) {
  .nav-size, .pnp-modal .modal-header {
    height: 73px;
    width: 73px;
  }
}
@media (min-width: 1200px) {
  .nav-size, .pnp-modal .modal-header {
    height: 81px;
    width: 81px;
  }
}
@media (min-width: 1500px) {
  .nav-size, .pnp-modal .modal-header {
    height: 96px;
    width: 96px;
  }
}

.nav-line-height, .nav-container .links .site-nav > li > a, .nav-link {
  height: 65px;
  line-height: 65px;
}
@media (min-width: 768px) {
  .nav-line-height, .nav-container .links .site-nav > li > a, .nav-link {
    height: 65px;
    line-height: 65px;
  }
}
@media (min-width: 992px) {
  .nav-line-height, .nav-container .links .site-nav > li > a, .nav-link {
    height: 73px;
    line-height: 73px;
  }
}
@media (min-width: 1200px) {
  .nav-line-height, .nav-container .links .site-nav > li > a, .nav-link {
    height: 81px;
    line-height: 81px;
  }
}
@media (min-width: 1500px) {
  .nav-line-height, .nav-container .links .site-nav > li > a, .nav-link {
    height: 96px;
    line-height: 96px;
  }
}

.colour-light-grey {
  color: #f1efef;
}

.bg-colour-light-grey {
  background-color: #f1efef;
}

@media (max-width: 767px) {
  .bg-colour-light-grey-xs {
    background-color: #f1efef;
  }
}

.border-colour-light-grey {
  border-color: #f1efef;
}

.colour-grey {
  color: #FAF5FA;
}

.bg-colour-grey {
  background-color: #FAF5FA;
}

@media (max-width: 767px) {
  .bg-colour-grey-xs {
    background-color: #FAF5FA;
  }
}

.border-colour-grey {
  border-color: #FAF5FA;
}

.colour-dark-grey {
  color: #dfdfdf;
}

.bg-colour-dark-grey {
  background-color: #dfdfdf;
}

@media (max-width: 767px) {
  .bg-colour-dark-grey-xs {
    background-color: #dfdfdf;
  }
}

.border-colour-dark-grey {
  border-color: #dfdfdf;
}

.colour-darker-grey {
  color: #666;
}

.bg-colour-darker-grey {
  background-color: #666;
}

@media (max-width: 767px) {
  .bg-colour-darker-grey-xs {
    background-color: #666;
  }
}

.border-colour-darker-grey {
  border-color: #666;
}

.colour-darkest-grey {
  color: #333;
}

.bg-colour-darkest-grey {
  background-color: #333;
}

@media (max-width: 767px) {
  .bg-colour-darkest-grey-xs {
    background-color: #333;
  }
}

.border-colour-darkest-grey {
  border-color: #333;
}

.colour-line {
  color: #e5e5e6;
}

.bg-colour-line {
  background-color: #e5e5e6;
}

@media (max-width: 767px) {
  .bg-colour-line-xs {
    background-color: #e5e5e6;
  }
}

.border-colour-line {
  border-color: #e5e5e6;
}

.colour-placeholder {
  color: #C0B7CE;
}

.bg-colour-placeholder {
  background-color: #C0B7CE;
}

@media (max-width: 767px) {
  .bg-colour-placeholder-xs {
    background-color: #C0B7CE;
  }
}

.border-colour-placeholder {
  border-color: #C0B7CE;
}

.colour-green-vungle {
  color: #14CDC8;
}

.bg-colour-green-vungle {
  background-color: #14CDC8;
}

@media (max-width: 767px) {
  .bg-colour-green-vungle-xs {
    background-color: #14CDC8;
  }
}

.border-colour-green-vungle {
  border-color: #14CDC8;
}

.colour-red-vungle {
  color: #FF5A41;
}

.bg-colour-red-vungle {
  background-color: #FF5A41;
}

@media (max-width: 767px) {
  .bg-colour-red-vungle-xs {
    background-color: #FF5A41;
  }
}

.border-colour-red-vungle {
  border-color: #FF5A41;
}

.colour-blue-vungle {
  color: #6E7DFF;
}

.bg-colour-blue-vungle {
  background-color: #6E7DFF;
}

@media (max-width: 767px) {
  .bg-colour-blue-vungle-xs {
    background-color: #6E7DFF;
  }
}

.border-colour-blue-vungle {
  border-color: #6E7DFF;
}

.colour-pink-vungle {
  color: #FFD2E1;
}

.bg-colour-pink-vungle {
  background-color: #FFD2E1;
}

@media (max-width: 767px) {
  .bg-colour-pink-vungle-xs {
    background-color: #FFD2E1;
  }
}

.border-colour-pink-vungle {
  border-color: #FFD2E1;
}

.colour-yellow-vungle {
  color: #FFD700;
}

.bg-colour-yellow-vungle {
  background-color: #FFD700;
}

@media (max-width: 767px) {
  .bg-colour-yellow-vungle-xs {
    background-color: #FFD700;
  }
}

.border-colour-yellow-vungle {
  border-color: #FFD700;
}

.colour-purple-vungle {
  color: #3C2869;
}

.bg-colour-purple-vungle {
  background-color: #3C2869;
}

@media (max-width: 767px) {
  .bg-colour-purple-vungle-xs {
    background-color: #3C2869;
  }
}

.border-colour-purple-vungle {
  border-color: #3C2869;
}

.colour-lightblue-vungle {
  color: #CDF5FF;
}

.bg-colour-lightblue-vungle {
  background-color: #CDF5FF;
}

@media (max-width: 767px) {
  .bg-colour-lightblue-vungle-xs {
    background-color: #CDF5FF;
  }
}

.border-colour-lightblue-vungle {
  border-color: #CDF5FF;
}

.colour-background-vungle {
  color: #FAF5FA;
}

.bg-colour-background-vungle {
  background-color: #FAF5FA;
}

@media (max-width: 767px) {
  .bg-colour-background-vungle-xs {
    background-color: #FAF5FA;
  }
}

.border-colour-background-vungle {
  border-color: #FAF5FA;
}

.colour-white {
  color: #fff;
}

.bg-colour-white {
  background-color: #fff;
}

@media (max-width: 767px) {
  .bg-colour-white-xs {
    background-color: #fff;
  }
}

.border-colour-white {
  border-color: #fff;
}

.colour-facebook {
  color: #36589b;
}

.bg-colour-facebook {
  background-color: #36589b;
}

@media (max-width: 767px) {
  .bg-colour-facebook-xs {
    background-color: #36589b;
  }
}

.border-colour-facebook {
  border-color: #36589b;
}

.colour-twitter {
  color: #31aae1;
}

.bg-colour-twitter {
  background-color: #31aae1;
}

@media (max-width: 767px) {
  .bg-colour-twitter-xs {
    background-color: #31aae1;
  }
}

.border-colour-twitter {
  border-color: #31aae1;
}

.colour-googleplus {
  color: #da4b39;
}

.bg-colour-googleplus {
  background-color: #da4b39;
}

@media (max-width: 767px) {
  .bg-colour-googleplus-xs {
    background-color: #da4b39;
  }
}

.border-colour-googleplus {
  border-color: #da4b39;
}

.colour-pinterest {
  color: #c91517;
}

.bg-colour-pinterest {
  background-color: #c91517;
}

@media (max-width: 767px) {
  .bg-colour-pinterest-xs {
    background-color: #c91517;
  }
}

.border-colour-pinterest {
  border-color: #c91517;
}

.colour-youtube {
  color: #e61f2c;
}

.bg-colour-youtube {
  background-color: #e61f2c;
}

@media (max-width: 767px) {
  .bg-colour-youtube-xs {
    background-color: #e61f2c;
  }
}

.border-colour-youtube {
  border-color: #e61f2c;
}

.colour-instagram {
  color: #ab0b62;
}

.bg-colour-instagram {
  background-color: #ab0b62;
}

@media (max-width: 767px) {
  .bg-colour-instagram-xs {
    background-color: #ab0b62;
  }
}

.border-colour-instagram {
  border-color: #ab0b62;
}

.colour-blog {
  color: #317d16;
}

.bg-colour-blog {
  background-color: #317d16;
}

@media (max-width: 767px) {
  .bg-colour-blog-xs {
    background-color: #317d16;
  }
}

.border-colour-blog {
  border-color: #317d16;
}

.colour-rss {
  color: #317d16;
}

.bg-colour-rss {
  background-color: #317d16;
}

@media (max-width: 767px) {
  .bg-colour-rss-xs {
    background-color: #317d16;
  }
}

.border-colour-rss {
  border-color: #317d16;
}

.colour-linkedin {
  color: #0177B5;
}

.bg-colour-linkedin {
  background-color: #0177B5;
}

@media (max-width: 767px) {
  .bg-colour-linkedin-xs {
    background-color: #0177B5;
  }
}

.border-colour-linkedin {
  border-color: #0177B5;
}

.border-bottom {
  border-bottom: 1px solid #e5e5e6;
}

.wide-cards {
  position: relative;
  overflow: auto;
  padding-right: 15px;
  padding-left: 15px;
  margin-left: -15px;
  margin-right: -15px;
  padding-top: 30px;
}
@media (min-width: 768px) {
  .wide-cards {
    padding-bottom: 30px;
    margin-top: 3em;
  }
}
.wide-cards .header {
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 15px;
}
.wide-cards .header .titles {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0 85px 0 40px;
  font-size: 14px;
}
@media (min-width: 768px) {
  .wide-cards .header .titles {
    display: flex;
  }
}
.wide-cards .header .titles > * {
  text-transform: uppercase;
  color: #bebebe;
  font-weight: 700;
}
.wide-cards .header .titles .role {
  width: 40%;
}
.wide-cards .header .titles .department {
  width: 30%;
}
.wide-cards .header .titles .location {
  width: 30%;
}
.wide-cards .item {
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 30px;
}
.wide-cards .item .inner {
  background-color: #fff;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .wide-cards .item .inner {
    flex-direction: row;
  }
}
.wide-cards .item .inner > * {
  text-transform: capitalize;
}
.wide-cards .item .inner .role {
  color: #3C2869;
}
@media (min-width: 768px) {
  .wide-cards .item .inner .role {
    width: 40%;
  }
}
@media (max-width: 767px) {
  .wide-cards .item .inner .role {
    font-weight: 400;
  }
}
.wide-cards .item .inner .department {
  color: #3C2869;
}
@media (min-width: 768px) {
  .wide-cards .item .inner .department {
    width: 30%;
  }
}
@media (max-width: 767px) {
  .wide-cards .item .inner .department {
    font-size: 16px;
  }
}
.wide-cards .item .inner .location {
  color: #3C2869;
}
@media (min-width: 768px) {
  .wide-cards .item .inner .location {
    width: 30%;
  }
}
@media (max-width: 767px) {
  .wide-cards .item .inner .location {
    font-size: 16px;
  }
}
.wide-cards .item .inner:hover {
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.18);
  -moz-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.18);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.18);
}
.wide-cards .item .inner .arrow-forward {
  position: relative;
  width: 100%;
  height: 40px;
  background-color: #3C2869;
  border-radius: 5px;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .wide-cards .item .inner .arrow-forward {
    display: inline-block;
    width: auto;
    min-width: 200px;
  }
}
@media (min-width: 768px) {
  .wide-cards .item .inner .arrow-forward {
    width: 40px;
    background-color: #fff;
    border-radius: 50%;
    margin-top: 0;
  }
}
.wide-cards .item .inner .arrow-forward:after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "PxGrotesk";
  content: "Read more";
  color: #fff;
  font-size: 16px;
}
@media (min-width: 768px) {
  .wide-cards .item .inner .arrow-forward:after {
    font-family: "Ionicons";
    content: "";
    color: #3C2869;
    font-size: 24px;
  }
}
.wide-cards.-sso {
  margin-top: 0;
}
.wide-cards.-sso .column1 {
  width: 30%;
  padding: 0 5px;
}
.wide-cards.-sso .column2, .wide-cards.-sso .column3 {
  width: 20%;
  padding: 0 5px;
}
.wide-cards.-sso .column4 {
  width: 30%;
  padding: 0 5px;
}
.wide-cards.-sso .titles .column1, .wide-cards.-sso .titles .column2, .wide-cards.-sso .titles .column3, .wide-cards.-sso .titles .column4 {
  color: #fff;
  text-transform: none;
}
.wide-cards.-sso .item {
  margin-bottom: 5px;
}
.wide-cards.-sso .item .inner {
  border-radius: 5px;
  padding: 12px 20px;
}
.wide-cards.-sso .item .inner img {
  width: 65px;
  padding-right: 5px;
}
.wide-cards.-sso .item .column1 {
  font-weight: 700;
}
.wide-cards.-sso .item .column1 span {
  white-space: nowrap;
  display: block;
}
@media (min-width: 992px) {
  .wide-cards.-sso .item .column1 span {
    display: inline;
  }
}
.wide-cards.-sso .item .column1, .wide-cards.-sso .item .column2, .wide-cards.-sso .item .column3, .wide-cards.-sso .item .column4 {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4em;
}
.wide-cards.-sso .item .column2, .wide-cards.-sso .item .column3, .wide-cards.-sso .item .column4 {
  color: #8490a5;
}

@keyframes rotatingOnCentre {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.has-background-video {
  position: relative;
  overflow: hidden;
}
.has-background-video iframe, .has-background-video .loading-cover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}
.has-background-video iframe {
  z-index: 0;
  transform: scale(1.2);
  overflow: hidden;
}
.has-background-video .loading-cover {
  opacity: 1;
  transition: opacity 2s;
  z-index: 1;
}
.has-background-video .loading-cover.-in {
  pointer-events: none;
  opacity: 0;
}
.has-background-video .content {
  position: relative;
  z-index: 2;
}
.has-background-video .background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

blockquote {
  padding: 0;
  margin: 0;
  font-size: inherit;
  border: none;
}

.row.no-gutter {
  margin-right: 0;
  margin-left: 0;
}

.no-gutter > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.container-fluid, .container {
  padding-right: 0;
  padding-left: 0;
  position: relative;
}

.container-fluid {
  width: 100%;
}

.container {
  width: 100%;
}
@media (max-width: 767px) {
  .container {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 90%;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 92.3%;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 81%;
  }
}

.row {
  margin-right: 0;
  margin-left: 0;
}

input:active, input:focus, select:active, select:focus, textarea:active, textarea:focus, a:active, a:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: initial;
}

.panel {
  border: none;
  border-radius: 0;
  margin: 0;
  box-shadow: none;
}

.inner-container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .inner-container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .inner-container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .inner-container {
    width: 1170px;
  }
}

video {
  display: block;
}

@media (min-width: 992px) {
  .col-md-25 {
    width: 20%;
  }
}

@media (min-width: 1200px) {
  .col-lg-25 {
    width: 20%;
  }
}

@media (min-width: 768px) {
  .col-sm-25 {
    width: 20%;
  }
}

@media (max-width: 767px) {
  .col-xs-12 {
    padding-left: 0;
    padding-right: 0;
  }
}

.category-blog-jp > .component:nth-last-child(1), body.page-id-3734 div.filter-form {
  display: none;
}

div.PressBlurb {
  background-color: #3d296a;
  padding: 100px 0;
  text-align: center;
  font-weight: 700;
  font-size: 36px;
  color: #fff;
  line-height: 120%;
  border-radius: 500px;
  margin: 100px auto 0 auto;
  width: 70%;
}
@media (max-width: 767px) {
  div.PressBlurb {
    width: 100%;
    border-radius: 20px;
    padding: 20px;
    font-size: 20px;
    margin: 50px 0;
  }
}
@media (min-width: 768px) {
  div.PressBlurb {
    width: 100%;
    padding: 60px 0;
  }
}
@media (min-width: 992px) {
  div.PressBlurb {
    width: 100%;
    padding: 60px 0;
  }
}
@media (min-width: 1200px) {
  div.PressBlurb {
    width: 70%;
    line-height: 120%;
    border-radius: 500px;
    margin: 100px auto 0 auto;
  }
}
div.PressBlurb a {
  color: #14cdc8;
}

div.PressTitle {
  font-size: 48px;
  color: #3c2869;
  margin: 80px 0 30px 0;
  font-weight: bold;
  text-align: left;
}
@media (max-width: 767px) {
  div.PressTitle {
    font-size: 24px;
  }
}

.-newsletter-signup form.hs-form {
  width: 49%;
  margin: 0 auto;
}
.-newsletter-signup form.hs-form .hs-submit {
  width: 30%;
}
.-newsletter-signup form.hs-form .hs-submit .actions input.hs-button {
  width: auto;
}

.category-blog-jp > .component:nth-last-child(1) {
  display: none;
}

.wpcf7-form-control-wrap {
  display: block;
  margin: 5px 0;
}
.wpcf7-form-control-wrap textarea {
  height: 100px;
}
.wpcf7-form-control-wrap .selectric-wrapper .selectric .label {
  margin-bottom: 0;
}

.wpcf7-form-control, .form-control, .gmw-address, .selectric-wrapper .label {
  transition: width 0.3s, border-color 0.5s;
  -webkit-appearance: none;
  border-radius: 6px;
  box-shadow: none;
  border: 1px solid #ccc;
  font-weight: 300;
  color: #3C2869;
  width: 100%;
  font-size: 14px;
  height: 40px;
  padding: 11px;
  line-height: 40px;
}
.wpcf7-form-control::-webkit-input-placeholder, .form-control::-webkit-input-placeholder, .gmw-address::-webkit-input-placeholder, .selectric-wrapper .label::-webkit-input-placeholder {
  font-size: 14px;
}
.wpcf7-form-control:-moz-placeholder, .form-control:-moz-placeholder, .gmw-address:-moz-placeholder, .selectric-wrapper .label:-moz-placeholder {
  font-size: 14px;
}
.wpcf7-form-control::-moz-placeholder, .form-control::-moz-placeholder, .gmw-address::-moz-placeholder, .selectric-wrapper .label::-moz-placeholder {
  font-size: 14px;
}
.wpcf7-form-control:-ms-input-placeholder, .form-control:-ms-input-placeholder, .gmw-address:-ms-input-placeholder, .selectric-wrapper .label:-ms-input-placeholder {
  font-size: 14px;
}
html.browser-ie .wpcf7-form-control, html.browser-ie .form-control, html.browser-ie .gmw-address, html.browser-ie .selectric-wrapper .label {
  transition: none;
}
.wpcf7-form-control.valid, .form-control.valid, .gmw-address.valid, .selectric-wrapper .label.valid {
  border: 1px solid #ccc;
  background-image: none;
}
.wpcf7-form-control:focus, .wpcf7-form-control:active, .form-control:focus, .form-control:active, .gmw-address:focus, .gmw-address:active, .selectric-wrapper .label:focus, .selectric-wrapper .label:active {
  border-color: #14CDC8;
}
.wpcf7-form-control::-webkit-input-placeholder, .form-control::-webkit-input-placeholder, .gmw-address::-webkit-input-placeholder, .selectric-wrapper .label::-webkit-input-placeholder {
  font-weight: 300;
  color: #C4BED2;
  font-size: 14px;
}
.wpcf7-form-control:-moz-placeholder, .form-control:-moz-placeholder, .gmw-address:-moz-placeholder, .selectric-wrapper .label:-moz-placeholder {
  font-weight: 300;
  color: #C4BED2;
  font-size: 14px;
}
.wpcf7-form-control::-moz-placeholder, .form-control::-moz-placeholder, .gmw-address::-moz-placeholder, .selectric-wrapper .label::-moz-placeholder {
  font-weight: 300;
  color: #C4BED2;
  font-size: 14px;
}
.wpcf7-form-control:-ms-input-placeholder, .form-control:-ms-input-placeholder, .gmw-address:-ms-input-placeholder, .selectric-wrapper .label:-ms-input-placeholder {
  font-weight: 300;
  color: #C4BED2;
  font-size: 14px;
}

.selectric {
  border-radius: 6px !important;
  border: 1px solid #ccc;
}
.selectric .label {
  border: none;
  border-radius: 6px !important;
}
.selectric-placeholder .selectric .label {
  color: #C4BED2;
}
.selectric .button {
  right: 17px;
}
.selectric .button:after {
  color: #ddd;
}

.selectric-wrapper .label {
  padding-right: 30px;
  line-height: 21px;
}

.selectric-wrapper.selectric-plain .selectric {
  border: none;
  display: inline-block;
  padding-right: 30px;
}
.selectric-wrapper.selectric-plain .selectric .label {
  padding: 0;
  font-weight: 400;
  font-size: 16px;
}
.selectric-wrapper.selectric-plain .selectric .button:after {
  margin-top: 2px;
  content: "";
}
.selectric-wrapper li {
  font-weight: 400;
}
.selectric-wrapper li.selected {
  background: #d0f1f0;
  color: #14CDC8;
}

.checkbox-container {
  line-height: 1.7em;
}
@media (min-width: 1200px) {
  .checkbox-container {
    line-height: 1.8em;
  }
}

input[type=checkbox], input[type=radio] {
  display: none;
}
.checkbox-container input[type=checkbox] + label, .checkbox-container input[type=radio] + label {
  padding-left: 30px;
  position: relative;
  cursor: pointer;
  font-weight: 300;
}
.checkbox-container input[type=checkbox] + label:before, .checkbox-container input[type=radio] + label:before {
  font-family: "Ionicons";
  display: inline-block;
  content: "";
  letter-spacing: 10px;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 20px;
  padding-left: 2px;
  color: #fff;
}
@media (min-width: 768px) {
  .checkbox-container input[type=checkbox] + label:before, .checkbox-container input[type=radio] + label:before {
    font-size: 21px;
  }
}
@media (min-width: 992px) {
  .checkbox-container input[type=checkbox] + label:before, .checkbox-container input[type=radio] + label:before {
    font-size: 22px;
  }
}
@media (min-width: 1200px) {
  .checkbox-container input[type=checkbox] + label:before, .checkbox-container input[type=radio] + label:before {
    font-size: 23px;
  }
}
@media (min-width: 1500px) {
  .checkbox-container input[type=checkbox] + label:before, .checkbox-container input[type=radio] + label:before {
    font-size: 25px;
  }
}
@media (min-width: 1200px) {
  .checkbox-container input[type=checkbox] + label:before, .checkbox-container input[type=radio] + label:before {
    top: 0;
  }
}
.checkbox-container input[type=checkbox]:checked + label:before, .checkbox-container input[type=radio]:checked + label:before {
  content: "";
  color: #fff;
}
.checkbox-container input[type=checkbox]:checked + label.-xicon:before, .checkbox-container input[type=radio]:checked + label.-xicon:before {
  content: "";
}
html.no-touch input[type=checkbox] .checkbox-container:hover label, html.no-touch input[type=radio] .checkbox-container:hover label {
  color: #3C2869;
}

.form-container.-contact-form {
  color: #fff;
}
@media (min-width: 768px) {
  .form-container.-contact-form {
    padding: 0 5% !important;
  }
}
@media (min-width: 992px) {
  .form-container.-contact-form {
    padding: 0 0 0 15% !important;
  }
}
.form-container.-contact-form label {
  margin-bottom: 0;
  font-size: 14px;
  width: 100%;
}
.form-container.-contact-form select[multiple=multiple] {
  height: 100px;
}
.form-container.-contact-form select[multiple=multiple] option {
  color: #fff;
}
.form-container.-contact-form textarea {
  resize: none;
  line-height: 1em;
  height: 100px;
}
.form-container.-contact-form .form-control, .form-container.-contact-form .selectric {
  border-radius: 0 !important;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.form-container.-contact-form .form-control::-webkit-input-placeholder, .form-container.-contact-form .selectric::-webkit-input-placeholder {
  color: #fff;
}
.form-container.-contact-form .form-control:-moz-placeholder, .form-container.-contact-form .selectric:-moz-placeholder {
  color: #fff;
}
.form-container.-contact-form .form-control::-moz-placeholder, .form-container.-contact-form .selectric::-moz-placeholder {
  color: #fff;
}
.form-container.-contact-form .form-control:-ms-input-placeholder, .form-container.-contact-form .selectric:-ms-input-placeholder {
  color: #fff;
}
.form-container.-contact-form .selectric-wrapper .label {
  color: #fff;
}
.form-container.-contact-form .checkbox-container label {
  font-weight: 700;
}

textarea {
  resize: vertical;
}

.btn, .wpcf7-submit {
  font-family: "PxGrotesk";
  background-color: transparent;
  color: #3C2869;
  position: relative;
  border-radius: 50px;
  font-size: 13px;
  line-height: 10px;
  font-weight: 700;
  padding: 1em 3.5em 1em 2em;
  letter-spacing: 0.01em;
  box-shadow: 2px 2px 4px 0px rgba(107, 107, 107, 0);
  transition: box-shadow 0.5s, color 0.5s, background-color 0.5s;
}
@media (min-width: 768px) {
  .btn, .wpcf7-submit {
    font-size: 13px;
  }
}
@media (min-width: 992px) {
  .btn, .wpcf7-submit {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .btn, .wpcf7-submit {
    font-size: 15px;
  }
}
@media (min-width: 1500px) {
  .btn, .wpcf7-submit {
    font-size: 16px;
  }
}
.btn:after, .wpcf7-submit:after {
  content: "";
  font-family: "Ionicons";
  top: 51%;
  transform: translateY(-50%);
  position: absolute;
  right: 2.3em;
  transition: margin 0.5s;
}
@media (min-width: 1500px) {
  .btn:after, .wpcf7-submit:after {
    margin-top: -1px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
  }
}
.btn:focus, .btn:active, .wpcf7-submit:focus, .wpcf7-submit:active {
  border-color: transparent !important;
}
.btn.-large, .wpcf7-submit.-large {
  font-size: 15px;
}
@media (min-width: 992px) {
  .btn.-large, .wpcf7-submit.-large {
    font-size: 17px;
    padding: 1.5em 5.5em 1.5em 4em;
  }
  .btn.-large:after, .wpcf7-submit.-large:after {
    right: 4em;
  }
}
@media (min-width: 1500px) {
  .btn.-large, .wpcf7-submit.-large {
    font-size: 18px;
  }
}
html.no-touch .btn:hover:after, html.no-touch .wpcf7-submit:hover:after {
  margin-right: -5px;
}
.btn.-light, .btn.-yellow, .wpcf7-submit.-light, .wpcf7-submit.-yellow {
  background-color: #FFD700;
  color: #3C2869;
}
html.no-touch .btn.-light:hover, html.no-touch .btn.-yellow:hover, html.no-touch .wpcf7-submit.-light:hover, html.no-touch .wpcf7-submit.-yellow:hover {
  box-shadow: 2px 2px 4px 0px rgba(107, 107, 107, 0.4);
  background-color: light(#FFD700, 5%);
  background-image: none;
}
.btn.-dark, .btn.-purple, .wpcf7-submit.-dark, .wpcf7-submit.-purple {
  background-color: #3C2869;
  color: #fff;
}
html.no-touch .btn.-dark:hover, html.no-touch .btn.-purple:hover, html.no-touch .wpcf7-submit.-dark:hover, html.no-touch .wpcf7-submit.-purple:hover {
  box-shadow: 2px 2px 4px 0px rgba(107, 107, 107, 0.4);
  background-color: light(#3C2869, 5%);
  background-image: none;
}
.btn.-pink, .wpcf7-submit.-pink {
  background-color: #FFD2E1;
  color: #3C2869;
}
html.no-touch .btn.-pink:hover, html.no-touch .wpcf7-submit.-pink:hover {
  box-shadow: 2px 2px 4px 0px rgba(107, 107, 107, 0.4);
  background-color: light(#FFD2E1, 5%);
  background-image: none;
}
.btn.-blue, .wpcf7-submit.-blue {
  background-color: #6E7DFF;
  color: #fff;
}
html.no-touch .btn.-blue:hover, html.no-touch .wpcf7-submit.-blue:hover {
  box-shadow: 2px 2px 4px 0px rgba(107, 107, 107, 0.4);
  background-color: light(#6E7DFF, 5%);
  background-image: none;
}
.btn.-white, .wpcf7-submit.-white {
  background-color: #fff;
  color: #3C2869;
}
html.no-touch .btn.-white:hover, html.no-touch .wpcf7-submit.-white:hover {
  box-shadow: 2px 2px 4px 0px rgba(107, 107, 107, 0.4);
  background-color: light(#fff, 5%);
  background-image: none;
}
.btn.-lightblue, .wpcf7-submit.-lightblue {
  background-color: #CDF5FF;
  color: #3C2869;
}
html.no-touch .btn.-lightblue:hover, html.no-touch .wpcf7-submit.-lightblue:hover {
  box-shadow: 2px 2px 4px 0px rgba(107, 107, 107, 0.4);
  background-color: light(#CDF5FF, 5%);
  background-image: none;
}
.btn.-red, .wpcf7-submit.-red {
  background-color: #FF5A41;
  color: #fff;
}
html.no-touch .btn.-red:hover, html.no-touch .wpcf7-submit.-red:hover {
  box-shadow: 2px 2px 4px 0px rgba(107, 107, 107, 0.4);
  background-color: light(#FF5A41, 5%);
  background-image: none;
}
.btn.-green, .wpcf7-submit.-green {
  background-color: #14CDC8;
  color: #fff;
}
html.no-touch .btn.-green:hover, html.no-touch .wpcf7-submit.-green:hover {
  box-shadow: 2px 2px 4px 0px rgba(107, 107, 107, 0.4);
  background-color: light(#14CDC8, 5%);
  background-image: none;
}
.btn.-white, .wpcf7-submit.-white {
  background-color: #fff;
  color: #3C2869;
}
html.no-touch .btn.-white:hover, html.no-touch .wpcf7-submit.-white:hover {
  box-shadow: 2px 2px 4px 0px rgba(107, 107, 107, 0.4);
  background-color: light(#fff, 5%);
  background-image: none;
}
.btn.-signup, .btn.-login, .wpcf7-submit.-signup, .wpcf7-submit.-login {
  padding: 1em 2.2em;
}
.btn.-signup:before, .btn.-login:before, .wpcf7-submit.-signup:before, .wpcf7-submit.-login:before {
  font-family: "Ionicons";
  padding-right: 10px;
}
.btn.-signup:after, .btn.-login:after, .wpcf7-submit.-signup:after, .wpcf7-submit.-login:after {
  display: none;
}
.btn.-signup:before, .wpcf7-submit.-signup:before {
  content: "";
}
.btn.-login:before, .wpcf7-submit.-login:before {
  content: "";
}
.btn.disabled, .wpcf7-submit.disabled {
  opacity: 1;
  background-color: #e8edf2;
  color: #fff;
}

.selectric-scroll {
  text-align: left;
}

.help-block {
  display: block;
}

input.error {
  background-size: 20px 20px;
  border-color: #fc7579 !important;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSItNDEgMTY0LjkgNTEyIDUxMiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAtNDEgMTY0LjkgNTEyIDUxMjsiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+LnN0MHtmaWxsOiNGQzc1Nzk7fTwvc3R5bGU+PHBhdGggY2xhc3M9InN0MCIgZD0iTTIxNiwyMTIuOWMtMTE0LjQsMC0yMDgsOTMuNi0yMDgsMjA4czkzLjYsMjA4LDIwOCwyMDhzMjA4LTkzLjYsMjA4LTIwOFMzMzAuNCwyMTIuOSwyMTYsMjEyLjl6IE0yNDAsNTI0LjloLTQ4di00MGg0OFY1MjQuOXogTTI0MCw0MzYuOWgtNDh2LTEyOGg0OFY0MzYuOXoiLz48L3N2Zz4=);
}

.form-error {
  color: #fc7579 !important;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 0;
}

.page-template-sso-page-register,
.page-template-sso-page-login,
.page-template-sso-page-forgot,
.page-template-sso-page-reset,
.page-template-sso-page-confirm-email,
.page-template-sso-page-resend-confirmation {
  overflow: hidden;
}
.page-template-sso-page-register .nav-container,
.page-template-sso-page-login .nav-container,
.page-template-sso-page-forgot .nav-container,
.page-template-sso-page-reset .nav-container,
.page-template-sso-page-confirm-email .nav-container,
.page-template-sso-page-resend-confirmation .nav-container {
  display: none;
}
.page-template-sso-page-register .form-container,
.page-template-sso-page-login .form-container,
.page-template-sso-page-forgot .form-container,
.page-template-sso-page-reset .form-container,
.page-template-sso-page-confirm-email .form-container,
.page-template-sso-page-resend-confirmation .form-container {
  height: 100vh;
  padding: 30px;
  overflow: auto;
  position: relative;
}
@media (min-width: 768px) {
  .page-template-sso-page-register .form-container,
.page-template-sso-page-login .form-container,
.page-template-sso-page-forgot .form-container,
.page-template-sso-page-reset .form-container,
.page-template-sso-page-confirm-email .form-container,
.page-template-sso-page-resend-confirmation .form-container {
    padding: 0 5%;
    padding-top: 100px !important;
    display: flex;
    align-items: center;
  }
}
.page-template-sso-page-register .form-container .foreground-pattern,
.page-template-sso-page-login .form-container .foreground-pattern,
.page-template-sso-page-forgot .form-container .foreground-pattern,
.page-template-sso-page-reset .form-container .foreground-pattern,
.page-template-sso-page-confirm-email .form-container .foreground-pattern,
.page-template-sso-page-resend-confirmation .form-container .foreground-pattern {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
  display: none;
}
@media (min-width: 768px) {
  .page-template-sso-page-register .form-container .foreground-pattern,
.page-template-sso-page-login .form-container .foreground-pattern,
.page-template-sso-page-forgot .form-container .foreground-pattern,
.page-template-sso-page-reset .form-container .foreground-pattern,
.page-template-sso-page-confirm-email .form-container .foreground-pattern,
.page-template-sso-page-resend-confirmation .form-container .foreground-pattern {
    z-index: 1;
    display: block;
  }
}
.page-template-sso-page-register .form-container .logo-container,
.page-template-sso-page-login .form-container .logo-container,
.page-template-sso-page-forgot .form-container .logo-container,
.page-template-sso-page-reset .form-container .logo-container,
.page-template-sso-page-confirm-email .form-container .logo-container,
.page-template-sso-page-resend-confirmation .form-container .logo-container {
  z-index: 2;
  padding-top: 10px;
  padding-bottom: 15px;
}
@media (min-width: 768px) {
  .page-template-sso-page-register .form-container .logo-container,
.page-template-sso-page-login .form-container .logo-container,
.page-template-sso-page-forgot .form-container .logo-container,
.page-template-sso-page-reset .form-container .logo-container,
.page-template-sso-page-confirm-email .form-container .logo-container,
.page-template-sso-page-resend-confirmation .form-container .logo-container {
    padding-top: 0;
    padding-bottom: 0;
    position: absolute;
    top: 50px;
  }
}
.page-template-sso-page-register .form-container .logo-container .logo,
.page-template-sso-page-login .form-container .logo-container .logo,
.page-template-sso-page-forgot .form-container .logo-container .logo,
.page-template-sso-page-reset .form-container .logo-container .logo,
.page-template-sso-page-confirm-email .form-container .logo-container .logo,
.page-template-sso-page-resend-confirmation .form-container .logo-container .logo {
  width: 130px;
  top: 0;
  left: 0;
}
.page-template-sso-page-register .form-container .inner,
.page-template-sso-page-login .form-container .inner,
.page-template-sso-page-forgot .form-container .inner,
.page-template-sso-page-reset .form-container .inner,
.page-template-sso-page-confirm-email .form-container .inner,
.page-template-sso-page-resend-confirmation .form-container .inner {
  z-index: 10;
  width: 100%;
  margin: auto;
}
.page-template-sso-page-register .form-container .heading,
.page-template-sso-page-login .form-container .heading,
.page-template-sso-page-forgot .form-container .heading,
.page-template-sso-page-reset .form-container .heading,
.page-template-sso-page-confirm-email .form-container .heading,
.page-template-sso-page-resend-confirmation .form-container .heading {
  font-size: 26px;
  font-size: 1.3541666667vw;
  margin-top: 0;
}
@media (max-width: 1329.2307692308px) {
  .page-template-sso-page-register .form-container .heading,
.page-template-sso-page-login .form-container .heading,
.page-template-sso-page-forgot .form-container .heading,
.page-template-sso-page-reset .form-container .heading,
.page-template-sso-page-confirm-email .form-container .heading,
.page-template-sso-page-resend-confirmation .form-container .heading {
    font-size: 18px;
  }
}
@media (min-width: 1920px) {
  .page-template-sso-page-register .form-container .heading,
.page-template-sso-page-login .form-container .heading,
.page-template-sso-page-forgot .form-container .heading,
.page-template-sso-page-reset .form-container .heading,
.page-template-sso-page-confirm-email .form-container .heading,
.page-template-sso-page-resend-confirmation .form-container .heading {
    font-size: 26px;
  }
}
.page-template-sso-page-register .form-container .content-above-form,
.page-template-sso-page-register .form-container .content-below-form,
.page-template-sso-page-login .form-container .content-above-form,
.page-template-sso-page-login .form-container .content-below-form,
.page-template-sso-page-forgot .form-container .content-above-form,
.page-template-sso-page-forgot .form-container .content-below-form,
.page-template-sso-page-reset .form-container .content-above-form,
.page-template-sso-page-reset .form-container .content-below-form,
.page-template-sso-page-confirm-email .form-container .content-above-form,
.page-template-sso-page-confirm-email .form-container .content-below-form,
.page-template-sso-page-resend-confirmation .form-container .content-above-form,
.page-template-sso-page-resend-confirmation .form-container .content-below-form {
  color: #fff;
  font-size: 16px;
  font-size: 0.8333333333vw;
  line-height: 1.5em;
  font-weight: 400;
}
@media (max-width: 1560px) {
  .page-template-sso-page-register .form-container .content-above-form,
.page-template-sso-page-register .form-container .content-below-form,
.page-template-sso-page-login .form-container .content-above-form,
.page-template-sso-page-login .form-container .content-below-form,
.page-template-sso-page-forgot .form-container .content-above-form,
.page-template-sso-page-forgot .form-container .content-below-form,
.page-template-sso-page-reset .form-container .content-above-form,
.page-template-sso-page-reset .form-container .content-below-form,
.page-template-sso-page-confirm-email .form-container .content-above-form,
.page-template-sso-page-confirm-email .form-container .content-below-form,
.page-template-sso-page-resend-confirmation .form-container .content-above-form,
.page-template-sso-page-resend-confirmation .form-container .content-below-form {
    font-size: 13px;
  }
}
@media (min-width: 1920px) {
  .page-template-sso-page-register .form-container .content-above-form,
.page-template-sso-page-register .form-container .content-below-form,
.page-template-sso-page-login .form-container .content-above-form,
.page-template-sso-page-login .form-container .content-below-form,
.page-template-sso-page-forgot .form-container .content-above-form,
.page-template-sso-page-forgot .form-container .content-below-form,
.page-template-sso-page-reset .form-container .content-above-form,
.page-template-sso-page-reset .form-container .content-below-form,
.page-template-sso-page-confirm-email .form-container .content-above-form,
.page-template-sso-page-confirm-email .form-container .content-below-form,
.page-template-sso-page-resend-confirmation .form-container .content-above-form,
.page-template-sso-page-resend-confirmation .form-container .content-below-form {
    font-size: 16px;
  }
}
.page-template-sso-page-register .form-container .content-above-form .larger,
.page-template-sso-page-register .form-container .content-below-form .larger,
.page-template-sso-page-login .form-container .content-above-form .larger,
.page-template-sso-page-login .form-container .content-below-form .larger,
.page-template-sso-page-forgot .form-container .content-above-form .larger,
.page-template-sso-page-forgot .form-container .content-below-form .larger,
.page-template-sso-page-reset .form-container .content-above-form .larger,
.page-template-sso-page-reset .form-container .content-below-form .larger,
.page-template-sso-page-confirm-email .form-container .content-above-form .larger,
.page-template-sso-page-confirm-email .form-container .content-below-form .larger,
.page-template-sso-page-resend-confirmation .form-container .content-above-form .larger,
.page-template-sso-page-resend-confirmation .form-container .content-below-form .larger {
  font-size: 16px;
}
.page-template-sso-page-register .form-container .content-above-form a,
.page-template-sso-page-register .form-container .content-below-form a,
.page-template-sso-page-login .form-container .content-above-form a,
.page-template-sso-page-login .form-container .content-below-form a,
.page-template-sso-page-forgot .form-container .content-above-form a,
.page-template-sso-page-forgot .form-container .content-below-form a,
.page-template-sso-page-reset .form-container .content-above-form a,
.page-template-sso-page-reset .form-container .content-below-form a,
.page-template-sso-page-confirm-email .form-container .content-above-form a,
.page-template-sso-page-confirm-email .form-container .content-below-form a,
.page-template-sso-page-resend-confirmation .form-container .content-above-form a,
.page-template-sso-page-resend-confirmation .form-container .content-below-form a {
  color: #3C2869;
  transition: color 0.3s;
}
.page-template-sso-page-register .form-container .content-above-form a:hover,
.page-template-sso-page-register .form-container .content-below-form a:hover,
.page-template-sso-page-login .form-container .content-above-form a:hover,
.page-template-sso-page-login .form-container .content-below-form a:hover,
.page-template-sso-page-forgot .form-container .content-above-form a:hover,
.page-template-sso-page-forgot .form-container .content-below-form a:hover,
.page-template-sso-page-reset .form-container .content-above-form a:hover,
.page-template-sso-page-reset .form-container .content-below-form a:hover,
.page-template-sso-page-confirm-email .form-container .content-above-form a:hover,
.page-template-sso-page-confirm-email .form-container .content-below-form a:hover,
.page-template-sso-page-resend-confirmation .form-container .content-above-form a:hover,
.page-template-sso-page-resend-confirmation .form-container .content-below-form a:hover {
  color: #FFD700;
}
.page-template-sso-page-register .form-container .success-message a,
.page-template-sso-page-login .form-container .success-message a,
.page-template-sso-page-forgot .form-container .success-message a,
.page-template-sso-page-reset .form-container .success-message a,
.page-template-sso-page-confirm-email .form-container .success-message a,
.page-template-sso-page-resend-confirmation .form-container .success-message a {
  margin-top: 3%;
  display: block;
}
.page-template-sso-page-register .form-container .content-below-form,
.page-template-sso-page-login .form-container .content-below-form,
.page-template-sso-page-forgot .form-container .content-below-form,
.page-template-sso-page-reset .form-container .content-below-form,
.page-template-sso-page-confirm-email .form-container .content-below-form,
.page-template-sso-page-resend-confirmation .form-container .content-below-form {
  font-size: 13px;
}
.page-template-sso-page-register .form-container .content-below-form .larger,
.page-template-sso-page-login .form-container .content-below-form .larger,
.page-template-sso-page-forgot .form-container .content-below-form .larger,
.page-template-sso-page-reset .form-container .content-below-form .larger,
.page-template-sso-page-confirm-email .form-container .content-below-form .larger,
.page-template-sso-page-resend-confirmation .form-container .content-below-form .larger {
  font-size: 16px;
}
.page-template-sso-page-register .form-container label,
.page-template-sso-page-login .form-container label,
.page-template-sso-page-forgot .form-container label,
.page-template-sso-page-reset .form-container label,
.page-template-sso-page-confirm-email .form-container label,
.page-template-sso-page-resend-confirmation .form-container label {
  font-size: 13px;
  line-height: 1em;
  margin-bottom: 0;
  position: relative;
  left: 15px;
  top: 4px;
  font-weight: 700;
}
.page-template-sso-page-register .form-container .form-group,
.page-template-sso-page-login .form-container .form-group,
.page-template-sso-page-forgot .form-container .form-group,
.page-template-sso-page-reset .form-container .form-group,
.page-template-sso-page-confirm-email .form-container .form-group,
.page-template-sso-page-resend-confirmation .form-container .form-group {
  margin-bottom: 2px;
  position: relative;
}
.page-template-sso-page-register .form-container .form-group .input-container,
.page-template-sso-page-login .form-container .form-group .input-container,
.page-template-sso-page-forgot .form-container .form-group .input-container,
.page-template-sso-page-reset .form-container .form-group .input-container,
.page-template-sso-page-confirm-email .form-container .form-group .input-container,
.page-template-sso-page-resend-confirmation .form-container .form-group .input-container {
  position: relative;
}
.page-template-sso-page-register .form-container .form-group .password-strength-label,
.page-template-sso-page-login .form-container .form-group .password-strength-label,
.page-template-sso-page-forgot .form-container .form-group .password-strength-label,
.page-template-sso-page-reset .form-container .form-group .password-strength-label,
.page-template-sso-page-confirm-email .form-container .form-group .password-strength-label,
.page-template-sso-page-resend-confirmation .form-container .form-group .password-strength-label {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  font-size: 14px;
  font-weight: 700;
  right: 1em;
  padding: 0 5px;
  transition: right 0.5s;
  display: none;
}
.page-template-sso-page-register .form-container .form-group .password-strength-label:after,
.page-template-sso-page-login .form-container .form-group .password-strength-label:after,
.page-template-sso-page-forgot .form-container .form-group .password-strength-label:after,
.page-template-sso-page-reset .form-container .form-group .password-strength-label:after,
.page-template-sso-page-confirm-email .form-container .form-group .password-strength-label:after,
.page-template-sso-page-resend-confirmation .form-container .form-group .password-strength-label:after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: 6px;
  height: 3px;
  transition: background-color 1s;
}
.page-template-sso-page-register .form-container .form-group .password-strength-label.good,
.page-template-sso-page-login .form-container .form-group .password-strength-label.good,
.page-template-sso-page-forgot .form-container .form-group .password-strength-label.good,
.page-template-sso-page-reset .form-container .form-group .password-strength-label.good,
.page-template-sso-page-confirm-email .form-container .form-group .password-strength-label.good,
.page-template-sso-page-resend-confirmation .form-container .form-group .password-strength-label.good {
  display: inline;
}
.page-template-sso-page-register .form-container .form-group .password-strength-label.good:after,
.page-template-sso-page-login .form-container .form-group .password-strength-label.good:after,
.page-template-sso-page-forgot .form-container .form-group .password-strength-label.good:after,
.page-template-sso-page-reset .form-container .form-group .password-strength-label.good:after,
.page-template-sso-page-confirm-email .form-container .form-group .password-strength-label.good:after,
.page-template-sso-page-resend-confirmation .form-container .form-group .password-strength-label.good:after {
  background-color: #6bc994;
}
.page-template-sso-page-register .form-container .form-group .password-strength-label.bad,
.page-template-sso-page-login .form-container .form-group .password-strength-label.bad,
.page-template-sso-page-forgot .form-container .form-group .password-strength-label.bad,
.page-template-sso-page-reset .form-container .form-group .password-strength-label.bad,
.page-template-sso-page-confirm-email .form-container .form-group .password-strength-label.bad,
.page-template-sso-page-resend-confirmation .form-container .form-group .password-strength-label.bad {
  display: inline;
}
.page-template-sso-page-register .form-container .form-group .password-strength-label.bad:after,
.page-template-sso-page-login .form-container .form-group .password-strength-label.bad:after,
.page-template-sso-page-forgot .form-container .form-group .password-strength-label.bad:after,
.page-template-sso-page-reset .form-container .form-group .password-strength-label.bad:after,
.page-template-sso-page-confirm-email .form-container .form-group .password-strength-label.bad:after,
.page-template-sso-page-resend-confirmation .form-container .form-group .password-strength-label.bad:after {
  background-color: #fc7479;
}
.page-template-sso-page-register .form-container .form-group.has-error .password-strength-label,
.page-template-sso-page-login .form-container .form-group.has-error .password-strength-label,
.page-template-sso-page-forgot .form-container .form-group.has-error .password-strength-label,
.page-template-sso-page-reset .form-container .form-group.has-error .password-strength-label,
.page-template-sso-page-confirm-email .form-container .form-group.has-error .password-strength-label,
.page-template-sso-page-resend-confirmation .form-container .form-group.has-error .password-strength-label {
  right: 2em;
}
.page-template-sso-page-register .form-container .form-group .reveal-password,
.page-template-sso-page-login .form-container .form-group .reveal-password,
.page-template-sso-page-forgot .form-container .form-group .reveal-password,
.page-template-sso-page-reset .form-container .form-group .reveal-password,
.page-template-sso-page-confirm-email .form-container .form-group .reveal-password,
.page-template-sso-page-resend-confirmation .form-container .form-group .reveal-password {
  position: absolute;
  right: 2px;
  top: 10px;
  font-size: 20px;
  line-height: 1em;
  cursor: pointer;
}
@media (min-width: 1200px) {
  .page-template-sso-page-register .form-container .form-group .reveal-password,
.page-template-sso-page-login .form-container .form-group .reveal-password,
.page-template-sso-page-forgot .form-container .form-group .reveal-password,
.page-template-sso-page-reset .form-container .form-group .reveal-password,
.page-template-sso-page-confirm-email .form-container .form-group .reveal-password,
.page-template-sso-page-resend-confirmation .form-container .form-group .reveal-password {
    top: 13px;
  }
}
@media (min-width: 1500px) {
  .page-template-sso-page-register .form-container .form-group .reveal-password,
.page-template-sso-page-login .form-container .form-group .reveal-password,
.page-template-sso-page-forgot .form-container .form-group .reveal-password,
.page-template-sso-page-reset .form-container .form-group .reveal-password,
.page-template-sso-page-confirm-email .form-container .form-group .reveal-password,
.page-template-sso-page-resend-confirmation .form-container .form-group .reveal-password {
    top: 17px;
  }
}
.page-template-sso-page-register .form-container .form-group .reveal-password:after,
.page-template-sso-page-login .form-container .form-group .reveal-password:after,
.page-template-sso-page-forgot .form-container .form-group .reveal-password:after,
.page-template-sso-page-reset .form-container .form-group .reveal-password:after,
.page-template-sso-page-confirm-email .form-container .form-group .reveal-password:after,
.page-template-sso-page-resend-confirmation .form-container .form-group .reveal-password:after {
  content: "";
  font-family: "Ionicons";
}
.page-template-sso-page-register .form-container .form-group .reveal-password.-on:after,
.page-template-sso-page-login .form-container .form-group .reveal-password.-on:after,
.page-template-sso-page-forgot .form-container .form-group .reveal-password.-on:after,
.page-template-sso-page-reset .form-container .form-group .reveal-password.-on:after,
.page-template-sso-page-confirm-email .form-container .form-group .reveal-password.-on:after,
.page-template-sso-page-resend-confirmation .form-container .form-group .reveal-password.-on:after {
  content: "";
}
.page-template-sso-page-register .form-container .btn,
.page-template-sso-page-login .form-container .btn,
.page-template-sso-page-forgot .form-container .btn,
.page-template-sso-page-reset .form-container .btn,
.page-template-sso-page-confirm-email .form-container .btn,
.page-template-sso-page-resend-confirmation .form-container .btn {
  display: block;
  margin-top: 15px;
  margin-bottom: 15px;
  width: 100%;
}
.page-template-sso-page-register .form-container .btn:after,
.page-template-sso-page-login .form-container .btn:after,
.page-template-sso-page-forgot .form-container .btn:after,
.page-template-sso-page-reset .form-container .btn:after,
.page-template-sso-page-confirm-email .form-container .btn:after,
.page-template-sso-page-resend-confirmation .form-container .btn:after {
  display: none;
}
.page-template-sso-page-register .nav-container .image,
.page-template-sso-page-login .nav-container .image,
.page-template-sso-page-forgot .nav-container .image,
.page-template-sso-page-reset .nav-container .image,
.page-template-sso-page-confirm-email .nav-container .image,
.page-template-sso-page-resend-confirmation .nav-container .image {
  visibility: hidden;
  opacity: 0;
}

.grecaptcha-badge {
  display: none;
}

.page-template-sso-page-register .grecaptcha-badge,
.page-template-sso-page-login .grecaptcha-badge {
  display: block;
  z-index: 10;
}
html.mi-open .page-template-sso-page-register .grecaptcha-badge,
html.mi-open .page-template-sso-page-login .grecaptcha-badge {
  z-index: 2;
}
.page-template-sso-page-register .form-container,
.page-template-sso-page-login .form-container {
  padding-top: 30px !important;
  padding-bottom: 30px;
}
.page-template-sso-page-register .form-container .inner .logo-container,
.page-template-sso-page-login .form-container .inner .logo-container {
  position: relative;
  top: 0;
  margin-bottom: 3%;
}

.page-template-sso-page-login .foreground-pattern,
.page-template-sso-page-forgot .foreground-pattern {
  left: calc(50% - 2.3vw) !important;
}

.page-template-sso-page-login {
  overflow-y: auto !important;
  background-color: #14CDC8;
}
.page-template-sso-page-login .form-container {
  height: calc(100vh - 1px);
}
.page-template-sso-page-login .svg-background {
  position: fixed;
  bottom: 0;
  left: 0;
  background-position: center bottom;
  height: 100vh;
  background-size: contain;
  width: 95vw;
}
.page-template-sso-page-login #wrapper {
  background: transparent;
}
.page-template-sso-page-login .container {
  padding-top: 65px;
}
@media (min-width: 768px) {
  .page-template-sso-page-login .container {
    padding-top: 65px;
  }
}
@media (min-width: 992px) {
  .page-template-sso-page-login .container {
    padding-top: 73px;
  }
}
@media (min-width: 1200px) {
  .page-template-sso-page-login .container {
    padding-top: 81px;
  }
}
@media (min-width: 1500px) {
  .page-template-sso-page-login .container {
    padding-top: 96px;
  }
}
.page-template-sso-page-login .sub-heading {
  font-size: 16px;
  font-weight: 400;
  color: #000;
}
.page-template-sso-page-login .use-desktop {
  max-width: 300px;
  margin: 2em auto;
  padding: 30px;
  border-radius: 5px;
  border-top: 4px solid #3C2869;
  color: #8490a5;
  background-color: #fff;
  line-height: 1.4em;
}
.page-template-sso-page-login .use-desktop p:last-child {
  margin: 0;
}

.multi-level-mob-menu ul#menu-main-menu-1 li.opennewwindow {
  display: inline-block;
  background: url(../img/ext-link-icon.svg);
  background-repeat: no-repeat;
  background-position: right 7px;
}
@media (max-width: 767px) {
  .multi-level-mob-menu ul#menu-main-menu-1 li.opennewwindow {
    display: block;
    background-position: right 3px;
    background-size: 17px;
  }
}
.multi-level-mob-menu ul#menu-main-menu-1 li.opennewwindow a {
  padding: 0 40px 0 0;
  background-color: rgba(0, 0, 0, 0);
}

body.page-template-resource-page #ResourcePage {
  background-color: #faf5fa;
}
body.page-template-resource-page #ResourcePage .container {
  width: 1170px;
  margin: 0 auto;
}
@media (min-width: 0px) and (max-width: 767px) {
  body.page-template-resource-page #ResourcePage .container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  body.page-template-resource-page #ResourcePage .container {
    width: 750px;
    margin: 0 auto;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  body.page-template-resource-page #ResourcePage .container {
    width: 970px;
    margin: 0 auto;
  }
}
body.page-template-resource-page #ResourcePage h2 {
  padding: 100px 0 40px 15px;
  text-align: left;
  margin: 0;
}
body.page-template-resource-page #ResourcePage .Card {
  width: 100%;
  padding: 0 0 60px 0;
}
body.page-template-resource-page #ResourcePage .Card::after {
  content: " ";
  display: block;
  clear: both;
}
body.page-template-resource-page #ResourcePage .Card .EachCard {
  width: 33.3%;
  height: 402px;
  padding: 15px;
  float: left;
}
@media (min-width: 0px) and (max-width: 767px) {
  body.page-template-resource-page #ResourcePage .Card .EachCard {
    width: 80%;
    height: 402px;
    margin: 20px auto;
    float: none;
  }
}
body.page-template-resource-page #ResourcePage .Card .EachCard a {
  width: 100%;
  height: 367px;
  display: block;
}
body.page-template-resource-page #ResourcePage .Card .EachCard a .CardImage img {
  width: 100%;
  height: auto;
}
body.page-template-resource-page #ResourcePage .Card .EachCard a .CardText {
  background-color: #fff;
  padding: 20px;
  height: 120px;
}
body.page-template-resource-page #ResourcePage .Card .EachCard a .CardText h3 {
  margin: 0;
}

#SEOLPs img.ResponsiveImg {
  width: 100%;
  height: auto;
}
#SEOLPs a.LTBluetoBlk {
  color: #23527c;
}
#SEOLPs a.LTBluetoBlk:hover {
  color: #054d8c;
}
#SEOLPs .container {
  width: 1170px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  #SEOLPs .container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #SEOLPs .container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  #SEOLPs .container {
    width: 1170px;
  }
}
@media (min-width: 1200px) and (max-width: 1499px) {
  #SEOLPs .container {
    width: 1350px;
  }
}
#SEOLPs .IntroSection {
  padding: 120px 0 80px 0;
}
#SEOLPs .IntroSection .IntroSectionWrap .Logo {
  width: 335px;
  margin: 0 auto 40px auto;
}
@media (min-width: 768px) and (max-width: 991px) {
  #SEOLPs .IntroSection .IntroSectionWrap .Logo {
    width: 250px;
  }
}
#SEOLPs .IntroSection .IntroSectionWrap .Logo img {
  width: 100%;
  height: auto;
}
#SEOLPs .IntroSection .IntroSectionWrap h1 p {
  text-align: center;
  font-size: 46px;
  line-height: 56px;
  font-weight: bold;
  margin: 0 0 40px 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  #SEOLPs .IntroSection .IntroSectionWrap h1 p {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 30px;
  }
}
#SEOLPs .IntroSection .IntroSectionWrap p {
  font-size: 18px;
  line-height: 145%;
  margin: 0 0 40px 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  #SEOLPs .IntroSection .IntroSectionWrap p {
    margin-bottom: 30px;
  }
}
#SEOLPs .IntroSection .IntroSectionWrap .IntroText {
  font-size: 18px;
  line-height: 145%;
  margin: 0 0 40px 0;
  text-align: center;
}
#SEOLPs .IntroSection .IntroSectionWrap .Text {
  text-align: center;
}
#SEOLPs .IntroSectionTwo {
  padding: 120px 0 120px 0;
}
@media (max-width: 767px) {
  #SEOLPs .IntroSectionTwo {
    padding: 60px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #SEOLPs .IntroSectionTwo {
    padding: 80px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #SEOLPs .IntroSectionTwo .container {
    max-width: 100%;
  }
}
#SEOLPs .IntroSectionTwo .IntroSectionOneColWrap {
  text-align: center;
}
#SEOLPs .IntroSectionTwo .IntroSectionOneColWrap h1 {
  font-size: 46px;
  line-height: 56px;
  font-weight: bold;
  margin: 0 0 40px 0;
}
@media (max-width: 767px) {
  #SEOLPs .IntroSectionTwo .IntroSectionOneColWrap h1 {
    font-size: 34px;
    line-height: 46px;
    margin: 0 0 20px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #SEOLPs .IntroSectionTwo .IntroSectionOneColWrap h1 {
    font-size: 38px;
    line-height: 50px;
    margin: 0 0 20px 0;
  }
}
#SEOLPs .IntroSectionTwo .IntroSectionOneColWrap p {
  font-size: 18px;
  line-height: 145%;
  margin: 0 0 40px 0;
}
@media (max-width: 767px) {
  #SEOLPs .IntroSectionTwo .IntroSectionOneColWrap p {
    font-size: 16px;
    line-height: 135%;
    margin: 0 0 20px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #SEOLPs .IntroSectionTwo .IntroSectionOneColWrap p {
    font-size: 18px;
    line-height: 140%;
    margin: 0 0 20px 0;
  }
}
#SEOLPs .IntroSectionTwo .IntroSectionOneColWrap p a {
  color: #a8c8e6;
}
#SEOLPs .IntroSectionTwo .IntroSectionOneColWrap p a.btn {
  color: #3C2869;
}
#SEOLPs .IntroSectionTwo .IntroSectionOneColWrap p img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
#SEOLPs .IntroSectionTwo .IntroSectionTwoWrap {
  display: table;
  width: 100%;
}
@media (max-width: 767px) {
  #SEOLPs .IntroSectionTwo .IntroSectionTwoWrap {
    display: block;
  }
}
#SEOLPs .IntroSectionTwo .IntroSectionTwoWrap .IntroSectionTwoText {
  width: 50%;
  display: table-cell;
  vertical-align: middle;
  padding: 25px;
}
@media (max-width: 767px) {
  #SEOLPs .IntroSectionTwo .IntroSectionTwoWrap .IntroSectionTwoText {
    width: 100%;
    display: block;
    padding: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #SEOLPs .IntroSectionTwo .IntroSectionTwoWrap .IntroSectionTwoText {
    padding: 0;
  }
}
#SEOLPs .IntroSectionTwo .IntroSectionTwoWrap .IntroSectionTwoText .IntroSectionTwoTextWrap h1 {
  font-size: 46px;
  line-height: 56px;
  font-weight: bold;
  margin: 0 0 40px 0;
}
@media (max-width: 767px) {
  #SEOLPs .IntroSectionTwo .IntroSectionTwoWrap .IntroSectionTwoText .IntroSectionTwoTextWrap h1 {
    font-size: 34px;
    line-height: 46px;
    margin: 0 0 20px 0;
  }
  #SEOLPs .IntroSectionTwo .IntroSectionTwoWrap .IntroSectionTwoText .IntroSectionTwoTextWrap h1 br {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #SEOLPs .IntroSectionTwo .IntroSectionTwoWrap .IntroSectionTwoText .IntroSectionTwoTextWrap h1 {
    font-size: 38px;
    line-height: 50px;
    margin: 0 0 20px 0;
  }
}
#SEOLPs .IntroSectionTwo .IntroSectionTwoWrap .IntroSectionTwoText .IntroSectionTwoTextWrap h2.hone {
  font-size: 46px;
  line-height: 56px;
  font-weight: bold;
  margin: 0 0 40px 0;
}
@media (max-width: 767px) {
  #SEOLPs .IntroSectionTwo .IntroSectionTwoWrap .IntroSectionTwoText .IntroSectionTwoTextWrap h2.hone {
    font-size: 34px;
    line-height: 46px;
    margin: 0 0 20px 0;
  }
  #SEOLPs .IntroSectionTwo .IntroSectionTwoWrap .IntroSectionTwoText .IntroSectionTwoTextWrap h2.hone br {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #SEOLPs .IntroSectionTwo .IntroSectionTwoWrap .IntroSectionTwoText .IntroSectionTwoTextWrap h2.hone {
    font-size: 38px;
    line-height: 50px;
    margin: 0 0 20px 0;
  }
}
#SEOLPs .IntroSectionTwo .IntroSectionTwoWrap .IntroSectionTwoText .IntroSectionTwoTextWrap h2 {
  font-weight: bold;
}
#SEOLPs .IntroSectionTwo .IntroSectionTwoWrap .IntroSectionTwoText .IntroSectionTwoTextWrap p {
  font-size: 18px;
  line-height: 145%;
  margin: 0 0 40px 0;
}
@media (max-width: 767px) {
  #SEOLPs .IntroSectionTwo .IntroSectionTwoWrap .IntroSectionTwoText .IntroSectionTwoTextWrap p {
    font-size: 16px;
    line-height: 135%;
    margin: 0 0 20px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #SEOLPs .IntroSectionTwo .IntroSectionTwoWrap .IntroSectionTwoText .IntroSectionTwoTextWrap p {
    font-size: 18px;
    line-height: 140%;
    margin: 0 0 20px 0;
  }
}
#SEOLPs .IntroSectionTwo .IntroSectionTwoWrap .IntroSectionTwoText .IntroSectionTwoTextWrap p a {
  color: #1C0B44;
  font-weight: bold;
}
#SEOLPs .IntroSectionTwo .IntroSectionTwoWrap .IntroSectionTwoText .IntroSectionTwoTextWrap p a.whitelink {
  color: #ffffff;
  font-weight: bold;
}
#SEOLPs .IntroSectionTwo .IntroSectionTwoWrap .IntroSectionTwoText .IntroSectionTwoTextWrap p a.btn {
  color: #3C2869;
}
#SEOLPs .IntroSectionTwo .IntroSectionTwoWrap .IntroSectionTwoText .IntroSectionTwoTextWrap p:last-child {
  margin: 0;
}
#SEOLPs .IntroSectionTwo .IntroSectionTwoWrap .IntroSectionTwoText .IntroSectionTwoTextWrap .IntroText {
  font-size: 18px;
  line-height: 145%;
  margin: 0 0 40px 0;
}
#SEOLPs .IntroSectionTwo .IntroSectionTwoWrap .IntroSectionTwoText .IntroSectionTwoTextWrap .Text {
  text-align: left;
}
#SEOLPs .IntroSectionTwo .IntroSectionTwoWrap .IntroSectionTwoText .IntroSectionTwoTextWrap .IntroSectionTwoVideoImgCol {
  display: none;
}
@media (max-width: 767px) {
  #SEOLPs .IntroSectionTwo .IntroSectionTwoWrap .IntroSectionTwoText .IntroSectionTwoTextWrap .IntroSectionTwoVideoImgCol {
    display: block;
    margin: 50px 0;
  }
}
#SEOLPs .IntroSectionTwo .IntroSectionTwoWrap .IntroSectionTwoVideoImgCol {
  width: 50%;
  padding: 60px;
  display: table-cell;
  vertical-align: middle;
}
@media (max-width: 767px) {
  #SEOLPs .IntroSectionTwo .IntroSectionTwoWrap .IntroSectionTwoVideoImgCol {
    width: 100%;
    display: block;
    padding: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #SEOLPs .IntroSectionTwo .IntroSectionTwoWrap .IntroSectionTwoVideoImgCol {
    padding: 5px;
  }
}
#SEOLPs .IntroSectionTwo .IntroSectionTwoWrap .IntroSectionTwoVideoImgCol .IntroSectionTwoVideoImgColWrap {
  position: relative;
}
@media (max-width: 767px) {
  #SEOLPs .IntroSectionTwo .IntroSectionTwoWrap .IntroSectionTwoVideoImgCol .IntroSectionTwoVideoImgColWrap {
    margin-bottom: 50px;
  }
}
#SEOLPs .IntroSectionTwo .IntroSectionTwoWrap .IntroSectionTwoVideoImgCol .IntroSectionTwoVideoImgColWrap img {
  width: 100%;
  height: auto;
}
#SEOLPs .IntroSectionTwo .IntroSectionWrap .Logo {
  width: 335px;
  margin: 0 0 40px 0;
}
#SEOLPs .IntroSectionTwo .IntroSectionWrap .Logo img {
  width: 100%;
  height: auto;
}
#SEOLPs .IntroSectionTwo .IntroSectionWrap h1 p {
  font-size: 46px;
  line-height: 56px;
  font-weight: bold;
  margin: 0 0 40px 0;
}
#SEOLPs .IntroSectionTwo .IntroSectionWrap p {
  font-size: 18px;
  line-height: 145%;
  margin: 0 0 40px 0;
}
#SEOLPs .IntroSectionTwo .IntroSectionWrap .IntroText {
  font-size: 18px;
  line-height: 145%;
  margin: 0 0 40px 0;
}
#SEOLPs .IntroSectionTwo .IntroSectionWrap .Text {
  text-align: left;
}
#SEOLPs .IntroSectionTwo .AllTextCenterAlign {
  text-align: center;
  padding: 0 10%;
}
#SEOLPs .IntroSectionTwo .AllTextCenterAlign h2 {
  font-size: 46px;
  line-height: 56px;
  font-weight: 700;
  margin: 0 0 40px;
  text-align: center;
}
#SEOLPs .IntroSectionTwo .AllTextCenterAlign p {
  font-size: 18px;
  line-height: 145%;
  margin: 0 0 40px;
  text-align: center;
}
#SEOLPs .IntroSectionTwo .AllTextCenterAlign ul {
  font-size: 18px;
  line-height: 145%;
  margin: 0 0 40px;
  text-align: center;
  list-style: none;
}
#SEOLPs .IntroSectionTwo .AllTextCenterAlign ul li {
  margin: 0 0 10px 0;
  list-style: none;
}
@media (min-width: 768px) and (max-width: 991px) {
  #SEOLPs .IntroSectionTwo .col-lg-6:last-child {
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #SEOLPs .IntroSectionTwo .col-lg-6:last-child img {
    width: 50%;
  }
}
#SEOLPs .PingPongModule .PingPongWrap {
  display: block;
}
#SEOLPs .PingPongModule .PingPongWrap .EachPingPong {
  min-height: 650px;
}
@media (max-width: 767px) {
  #SEOLPs .PingPongModule .PingPongWrap .EachPingPong {
    height: auto;
    min-height: auto;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #SEOLPs .PingPongModule .PingPongWrap .EachPingPong {
    min-height: 650px;
  }
}
#SEOLPs .PingPongModule .PingPongWrap .EachPingPong .EachPingPongText {
  width: 50%;
  min-height: 650px;
  float: left;
  position: relative;
}
@media (max-width: 767px) {
  #SEOLPs .PingPongModule .PingPongWrap .EachPingPong .EachPingPongText {
    width: 100%;
    min-height: auto;
    float: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #SEOLPs .PingPongModule .PingPongWrap .EachPingPong .EachPingPongText {
    min-height: 650px;
  }
}
#SEOLPs .PingPongModule .PingPongWrap .EachPingPong .EachPingPongText .EachPingPongTextInside {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 75px 50px;
  width: 100%;
}
#SEOLPs .PingPongModule .PingPongWrap .EachPingPong .EachPingPongText .EachPingPongTextInside.Left {
  width: 70%;
  right: 0;
}
@media (max-width: 767px) {
  #SEOLPs .PingPongModule .PingPongWrap .EachPingPong .EachPingPongText .EachPingPongTextInside.Left {
    width: 100%;
    right: auto;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #SEOLPs .PingPongModule .PingPongWrap .EachPingPong .EachPingPongText .EachPingPongTextInside.Left {
    width: 100%;
    right: auto;
  }
}
@media (min-width: 992px) and (max-width: 1279px) {
  #SEOLPs .PingPongModule .PingPongWrap .EachPingPong .EachPingPongText .EachPingPongTextInside.Left {
    width: 100%;
    right: auto;
  }
}
#SEOLPs .PingPongModule .PingPongWrap .EachPingPong .EachPingPongText .EachPingPongTextInside.Right {
  width: 70%;
  left: 0;
}
@media (max-width: 767px) {
  #SEOLPs .PingPongModule .PingPongWrap .EachPingPong .EachPingPongText .EachPingPongTextInside.Right {
    width: 100%;
    left: auto;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #SEOLPs .PingPongModule .PingPongWrap .EachPingPong .EachPingPongText .EachPingPongTextInside.Right {
    width: 100%;
    left: auto;
  }
}
@media (min-width: 992px) and (max-width: 1279px) {
  #SEOLPs .PingPongModule .PingPongWrap .EachPingPong .EachPingPongText .EachPingPongTextInside.Right {
    width: 100%;
    left: auto;
  }
}
@media (max-width: 767px) {
  #SEOLPs .PingPongModule .PingPongWrap .EachPingPong .EachPingPongText .EachPingPongTextInside {
    position: static;
    transform: none;
    top: auto;
    height: auto;
  }
}
#SEOLPs .PingPongModule .PingPongWrap .EachPingPong .EachPingPongText h3 {
  font-size: 46px;
  line-height: 56px;
  font-weight: bold;
  margin: 0 0 40px 0;
}
@media (max-width: 767px) {
  #SEOLPs .PingPongModule .PingPongWrap .EachPingPong .EachPingPongText h3 {
    font-size: 34px;
    line-height: 46px;
    margin: 0 0 20px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #SEOLPs .PingPongModule .PingPongWrap .EachPingPong .EachPingPongText h3 {
    font-size: 38px;
    line-height: 50px;
    margin: 0 0 25px 0;
  }
}
#SEOLPs .PingPongModule .PingPongWrap .EachPingPong .EachPingPongText p {
  font-size: 18px;
  line-height: 145%;
  margin: 0 0 40px 0;
}
@media (max-width: 767px) {
  #SEOLPs .PingPongModule .PingPongWrap .EachPingPong .EachPingPongText p {
    font-size: 16px;
    line-height: 135%;
    margin: 0 0 20px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #SEOLPs .PingPongModule .PingPongWrap .EachPingPong .EachPingPongText p {
    font-size: 16px;
    line-height: 145%;
    margin: 0 0 25px 0;
  }
}
#SEOLPs .PingPongModule .PingPongWrap .EachPingPong .EachPingPongImage {
  width: 50%;
  min-height: 650px;
  padding: 25px;
  float: left;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px) {
  #SEOLPs .PingPongModule .PingPongWrap .EachPingPong .EachPingPongImage {
    min-height: 650px;
  }
}
#SEOLPs .PingPongModule .PingPongWrap .EachPingPong .EachPingPongImage img {
  width: auto;
  height: calc(500px - 50px);
  display: inline-block;
}
#SEOLPs .PingPongModuleTwo {
  padding: 50px 0;
}
#SEOLPs .PingPongModuleTwo h2 {
  font-size: 46px;
  line-height: 56px;
  font-weight: bold;
  margin: 0 0 40px 0;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px) {
  #SEOLPs .PingPongModuleTwo h2 {
    font-size: 42px;
    line-height: 52px;
    margin-bottom: 30px;
  }
}
#SEOLPs .PingPongModuleTwo p {
  font-size: 18px;
  line-height: 145%;
  margin: 0 0 40px 0;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 1199px) {
  #SEOLPs .PingPongModuleTwo p br {
    display: none;
  }
}
#SEOLPs .PingPongModuleTwo .EachPingPongContentTwo {
  margin: 50px 0;
}
#SEOLPs .PingPongModuleTwo .EachPingPongContentTwo::after {
  content: " ";
  display: block;
  clear: both;
}
#SEOLPs .PingPongModuleTwo .EachPingPongContentTwo .EachPingPongTwoText {
  display: inline-block;
  vertical-align: middle;
  width: 49.5%;
}
#SEOLPs .PingPongModuleTwo .EachPingPongContentTwo .EachPingPongTwoText h3 {
  font-size: 36px;
  line-height: 46px;
  font-weight: bold;
  text-align: left;
}
@media (min-width: 768px) and (max-width: 991px) {
  #SEOLPs .PingPongModuleTwo .EachPingPongContentTwo .EachPingPongTwoText h3 {
    font-size: 30px;
    line-height: 40;
  }
}
#SEOLPs .PingPongModuleTwo .EachPingPongContentTwo .EachPingPongTwoText h4 {
  font-size: 26px;
  line-height: 36px;
  text-align: left;
}
#SEOLPs .PingPongModuleTwo .EachPingPongContentTwo .EachPingPongTwoText p {
  font-size: 18px;
  line-height: 26px;
  text-align: left;
}
#SEOLPs .PingPongModuleTwo .EachPingPongContentTwo .EachPingPongTwoImage {
  display: inline-block;
  vertical-align: middle;
  width: 49.5%;
}
#SEOLPs .PingPongModuleTwo .EachPingPongContentTwo .EachPingPongTwoImage img {
  width: 100%;
  height: auto;
}
@media (min-width: 768px) and (max-width: 991px) {
  #SEOLPs .PingPongModuleTwo .EachPingPongContentTwo .EachPingPongTwoImage img {
    width: 100%;
  }
}
#SEOLPs .LeftTextRightImgBG {
  padding: 120px 0 80px 0;
  background-size: 50%;
}
#SEOLPs .LeftTextRightImgBG .LeftTextRightImgBGWrap h2 {
  font-size: 46px;
  line-height: 56px;
  font-weight: bold;
  margin: 0 0 40px 0;
}
#SEOLPs .LeftTextRightImgBG .LeftTextRightImgBGWrap p {
  font-size: 18px;
  line-height: 145%;
  margin: 0 0 40px 0;
}
#SEOLPs .TitleTextCTAs {
  padding: 50px 0;
}
#SEOLPs .TitleTextCTAs .TitleTextCTAsWrap {
  width: 75%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  #SEOLPs .TitleTextCTAs .TitleTextCTAsWrap {
    width: 100%;
  }
}
#SEOLPs .TitleTextCTAs .TitleTextCTAsWrap h2 {
  font-size: 46px;
  line-height: 56px;
  font-weight: bold;
  margin: 0 0 40px 0;
  text-align: center;
}
@media (max-width: 767px) {
  #SEOLPs .TitleTextCTAs .TitleTextCTAsWrap h2 {
    font-size: 34px;
    line-height: 46px;
    margin: 0 0 20px 0;
  }
}
#SEOLPs .TitleTextCTAs .TitleTextCTAsWrap .Text p {
  font-size: 18px;
  line-height: 145%;
  margin: 0 0 40px 0;
  text-align: center;
}
@media (max-width: 767px) {
  #SEOLPs .TitleTextCTAs .TitleTextCTAsWrap .Text p {
    font-size: 16px;
  }
}
#SEOLPs .TitleTextCTAs .TitleTextCTAsWrap .CTAsWarap ul.tabs-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}
#SEOLPs .TitleTextCTAs .TitleTextCTAsWrap .CTAsWarap ul.tabs-nav::after {
  content: " ";
  display: block;
  clear: both;
}
#SEOLPs .TitleTextCTAs .TitleTextCTAsWrap .CTAsWarap ul.tabs-nav li {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 50%;
  float: left;
}
#SEOLPs .TitleTextCTAs .TitleTextCTAsWrap .CTAsWarap ul.tabs-nav li:nth-child(2) {
  text-align: right;
}
#SEOLPs .JumtoSection {
  padding: 0 0 80px 0;
}
#SEOLPs .JumtoSection .EachSectionWrap {
  text-align: left;
  margin: 40px 0 0 0;
  vertical-align: top;
}
@media (min-width: 768px) and (max-width: 991px) {
  #SEOLPs .JumtoSection .EachSectionWrap {
    text-align: center;
  }
}
#SEOLPs .JumtoSection .EachSectionWrap::after {
  *zoom: 1;
}
#SEOLPs .JumtoSection .EachSectionWrap::after::before, #SEOLPs .JumtoSection .EachSectionWrap::after::after {
  content: " ";
  display: table;
}
#SEOLPs .JumtoSection .EachSectionWrap::after::after {
  clear: both;
}
#SEOLPs .JumtoSection .EachSectionWrap .EachSection {
  width: 166px;
  height: 150px;
  display: inline-block;
  margin: 0 25px 25px 0;
  vertical-align: top;
}
#SEOLPs .JumtoSection .EachSectionWrap .EachSection:last-child {
  margin: 0;
}
#SEOLPs .JumtoSection .EachSectionWrap .EachSection a {
  width: 100%;
  display: block;
}
#SEOLPs .JumtoSection .EachSectionWrap .EachSection a .No {
  background-color: #3c2869;
  text-align: center;
  width: 45px;
  height: 45px;
  font-size: 18px;
  font-weight: bold;
  line-height: 38px;
  border-radius: 50%;
  margin: 0 auto -22.5px auto;
  color: #fff;
  border: 5px solid #ffd700;
  position: relative;
  z-index: 1;
}
#SEOLPs .JumtoSection .EachSectionWrap .EachSection a .Text {
  height: 120px;
  font-size: 16px;
  line-height: 125%;
  background-color: #ffe664;
  text-align: center;
  padding: 35px 10px;
}
#SEOLPs .TitleTextSection {
  padding: 120px 0;
}
#SEOLPs .TitleTextSection .TopTitle h2 {
  font-size: 42px;
  font-weight: bold;
  margin: 0 0 30px 0;
}
#SEOLPs .TitleTextSection .Text h2 {
  font-size: 42px;
  font-weight: bold;
  margin: 0 0 30px 0;
}
#SEOLPs .TitleTextSection .Text h3 {
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 30px 0;
}
#SEOLPs .TitleTextSection .Text p {
  font-size: 16px;
  margin: 0 0 20px 0;
}
#SEOLPs .BestPractices {
  padding: 120px 0;
}
#SEOLPs .BestPractices .BestPracticesText {
  width: 70%;
  margin: 0 auto;
  text-align: center;
}
#SEOLPs .BestPractices .BestPracticesText h2 {
  font-size: 42px;
  margin: 0 0 30px 0;
}
#SEOLPs .BestPractices .BestPracticesText p {
  font-size: 16px;
  margin: 0 0 30px 0;
}
#SEOLPs .BestPractices .EachBestPracticeWrap {
  margin: 30px 0 0 0;
}
#SEOLPs .BestPractices .EachBestPracticeWrap .EachBestPractice {
  height: 425px;
  margin-bottom: 30px;
}
#SEOLPs .BestPractices .EachBestPracticeWrap .EachBestPractice .EachBestPracticeImage {
  margin: 0 0 30px 0;
}
#SEOLPs .BestPractices .EachBestPracticeWrap .EachBestPractice .EachBestPracticeImage img {
  width: 80%;
  height: auto;
  margin: 0 auto;
  display: block;
}
#SEOLPs .BestPractices .EachBestPracticeWrap .EachBestPractice .EachBestPracticeTitle {
  font-size: 18px;
  margin: 0 0 20px 0;
}
#SEOLPs .BestPractices .EachBestPracticeWrap .EachBestPractice .EachBestPracticeText {
  font-size: 16px;
  margin: 0 0 20px 0;
}
@media (max-width: 767px) {
  #SEOLPs .SingleColContent {
    height: auto;
  }
}
#SEOLPs .SingleColContent .container .row .col .SingleColContentText {
  text-align: center;
  padding: 0 25%;
  display: table-cell;
  vertical-align: middle;
}
@media (max-width: 767px) {
  #SEOLPs .SingleColContent .container .row .col .SingleColContentText {
    height: auto;
    display: block;
    padding: 0;
  }
}
#SEOLPs .SingleColContent .container .row .col .SingleColContentText h2 {
  font-size: 40px;
  line-height: 135%;
  font-weight: bold;
  margin: 0 0 40px 0;
}
#SEOLPs .SingleColContent .container .row .col .SingleColContentText p {
  font-size: 18px;
  margin: 0 0 30px 0;
  color: #fff;
}
#SEOLPs .SingleColContent .container .row .col .SingleColContentText .CTA {
  text-align: center;
}
#SEOLPs .TitleTextImage {
  padding-top: 100px;
  padding-bottom: 100px;
  background-repeat: no-repeat;
  margin: 30px 0;
  background-size: 20%;
  min-height: 460px;
}
@media (min-width: 768px) and (max-width: 991px) {
  #SEOLPs .TitleTextImage {
    background-size: 26%;
    min-height: 330px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
#SEOLPs .TitleTextImage.LeftImage {
  background-position: left center;
}
@media (min-width: 768px) and (max-width: 991px) {
  #SEOLPs .TitleTextImage.LeftImage {
    padding: 0;
  }
}
#SEOLPs .TitleTextImage.LeftImage .TitleTextImageText {
  padding-left: 280px;
}
#SEOLPs .TitleTextImage.RightImage {
  background-position: right center;
}
#SEOLPs .TitleTextImage.RightImage .TitleTextImageText {
  padding-right: 280px;
}
#SEOLPs .TitleTextImage .container .row .col .TitleTextImageText h2 {
  font-size: 42px;
  font-weight: bold;
  margin: 0 0 30px 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  #SEOLPs .TitleTextImage .container .row .col .TitleTextImageText h2 {
    font-size: 36px;
  }
}
#SEOLPs .TitleTextImage .container .row .col .TitleTextImageText p {
  font-size: 18px;
  line-height: 145%;
}
#SEOLPs .Title-TitleTextImage {
  padding: 50px 0;
}
#SEOLPs .Title-TitleTextImage .Title h2 {
  font-size: 42px;
  margin: 0 0 30px 0;
  text-align: center;
}
#SEOLPs .EachTitleText-Image {
  padding: 50px 0;
  margin: 30px 0;
}
#SEOLPs .EachTitleText-Image .container {
  background-repeat: no-repeat;
  background-size: contain;
}
#SEOLPs .EachTitleText-Image .container.RightImage {
  background-position: right center;
}
#SEOLPs .EachTitleText-Image .container.LeftImage {
  background-position: left center;
}
#SEOLPs .EachTitleText-Image .container .row .col .EachTitleText-ImageWrap::after {
  *zoom: 1;
}
#SEOLPs .EachTitleText-Image .container .row .col .EachTitleText-ImageWrap::after::before, #SEOLPs .EachTitleText-Image .container .row .col .EachTitleText-ImageWrap::after::after {
  content: " ";
  display: table;
}
#SEOLPs .EachTitleText-Image .container .row .col .EachTitleText-ImageWrap::after::after {
  clear: both;
}
#SEOLPs .EachTitleText-Image .container .row .col .EachTitleText-ImageWrap .EachTitleTextWrap {
  width: 70%;
  float: left;
  padding-top: 40px;
}
#SEOLPs .EachTitleText-Image .container .row .col .EachTitleText-ImageWrap .EachTitleTextWrap.RightText {
  padding-right: 20%;
  padding-left: 10%;
}
#SEOLPs .EachTitleText-Image .container .row .col .EachTitleText-ImageWrap .EachTitleTextWrap.LeftText {
  padding-right: 10%;
  padding-left: 20%;
}
#SEOLPs .EachTitleText-Image .container .row .col .EachTitleText-ImageWrap .EachTitleTextWrap .EachTitleText h3 {
  font-size: 38px;
  margin: 0 0 20px 0;
}
#SEOLPs .EachTitleText-Image .container .row .col .EachTitleText-ImageWrap .EachTitleTextWrap .EachTitleText p {
  font-size: 16px;
  margin: 0 0 20px 0;
}
#SEOLPs .EachTitleText-Image .container .row .col .EachTitleText-ImageWrap .EachTitleText-InImage {
  width: 30%;
  float: left;
  text-align: center;
}
#SEOLPs .SliderModuleOne {
  padding: 120px 0;
}
#SEOLPs .SliderModuleOne h2 {
  font-size: 46px;
  line-height: 56px;
  font-weight: 700;
  margin: 0 0 70px 0;
  text-align: center;
}
#SEOLPs .SliderModuleOne .SliderWrap ul#SliderModuleOneAni {
  list-style: none;
  margin: 0;
  padding: 0;
}
#SEOLPs .SliderModuleOne .SliderWrap ul#SliderModuleOneAni li {
  list-style: none;
  margin: 0;
  padding: 0;
}
#SEOLPs .SliderModuleOne .SliderWrap ul#SliderModuleOneAni li .SliderModuleOneImg img {
  width: 100%;
  height: auto;
}
#SEOLPs .SliderModuleOne .SliderWrap ul#SliderModuleOneAni li .SliderModuleOneTxt {
  padding: 15% 5%;
}
#SEOLPs .SliderModuleOne .SliderWrap ul#SliderModuleOneAni li .SliderModuleOneTxt h3 {
  font-size: 30px;
  line-height: 46px;
  font-weight: 700;
  margin: 0 0 30px 0;
}
#SEOLPs .SliderModuleOne .SliderWrap ul#SliderModuleOneAni li .SliderModuleOneTxt p {
  font-size: 22px;
  line-height: 38px;
  font-weight: 400;
  color: #212B36;
  margin: 0 0 30px 0;
}
#SEOLPs .SliderModuleOne .SliderWrap ul#SliderModuleOneAni li .SliderModuleOneTxt .By {
  font-size: 24px;
  line-height: 28px;
  font-weight: 400;
  color: #3C2869;
}
#SEOLPs .SliderModuleOne .SliderWrap ul#SliderModuleOneAni li .SliderModuleOneTxt .TitleCompany {
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  color: #637381;
}
#SEOLPs .TwoImageModule {
  padding: 120px 0 120px 0;
}
@media (max-width: 767px) {
  #SEOLPs .TwoImageModule {
    padding: 60px 0;
  }
}
#SEOLPs .TwoImageModule h2 {
  font-size: 46px;
  line-height: 56px;
  font-weight: 700;
  margin: 0 0 40px;
  text-align: center;
}
@media (max-width: 767px) {
  #SEOLPs .TwoImageModule h2 {
    font-size: 34px;
    line-height: 46px;
    margin: 0 0 20px 0;
  }
}
#SEOLPs .TwoImageModule .VideoImgColWrap {
  width: 80%;
  margin: 0 auto 50px auto;
  position: relative;
}
#SEOLPs .TwoImageModule .VideoImgColWrap.no-bmargin {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  #SEOLPs .TwoImageModule .VideoImgColWrap.no-bmargin {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  #SEOLPs .TwoImageModule .VideoImgColWrap {
    margin-bottom: 50px;
  }
}
#SEOLPs .TwoImageModule .VideoImgColWrap img {
  display: inline-block;
  width: 100%;
  height: auto;
}
#SEOLPs .TwoImageModule .VideoImgColWrap img.Logo {
  max-width: 100%;
  width: auto;
  height: 78px;
  display: block;
  margin: 0 auto;
}
#SEOLPs .IntroZigZaSection {
  padding: 120px 0 120px 0;
}
@media (max-width: 767px) {
  #SEOLPs .IntroZigZaSection {
    padding: 60px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #SEOLPs .IntroZigZaSection {
    padding: 80px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #SEOLPs .IntroZigZaSection .container {
    max-width: 100%;
  }
}
#SEOLPs .IntroZigZaSection .Intro {
  text-align: center;
}
#SEOLPs .IntroZigZaSection .Intro h2 {
  font-size: 46px;
  line-height: 56px;
  font-weight: bold;
  margin: 0 0 40px 0;
}
@media (max-width: 767px) {
  #SEOLPs .IntroZigZaSection .Intro h2 {
    font-size: 34px;
    line-height: 46px;
    margin: 0 0 20px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #SEOLPs .IntroZigZaSection .Intro h2 {
    font-size: 38px;
    line-height: 50px;
    margin: 0 0 20px 0;
  }
}
#SEOLPs .IntroZigZaSection .Intro p {
  font-size: 18px;
  line-height: 145%;
  margin: 0 0 40px 0;
}
@media (max-width: 767px) {
  #SEOLPs .IntroZigZaSection .Intro p {
    font-size: 16px;
    line-height: 135%;
    margin: 0 0 20px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #SEOLPs .IntroZigZaSection .Intro p {
    font-size: 18px;
    line-height: 140%;
    margin: 0 0 20px 0;
  }
}
#SEOLPs .IntroZigZaSection .ZigZagSection .ZigZagSectionImg {
  text-align: center;
  padding: 20px 0;
}
#SEOLPs .IntroZigZaSection .ZigZagSection .ZigZagSectionImg img {
  max-width: 100%;
  height: auto;
}
#SEOLPs .IntroZigZaSection .ZigZagSection .IntroSectionTwoWrap {
  display: table;
  width: 100%;
}
@media (max-width: 767px) {
  #SEOLPs .IntroZigZaSection .ZigZagSection .IntroSectionTwoWrap {
    display: block;
  }
}
#SEOLPs .IntroZigZaSection .ZigZagSection .IntroSectionTwoWrap .IntroSectionTwoText {
  width: 50%;
  display: table-cell;
  vertical-align: middle;
  padding: 25px;
}
@media (max-width: 767px) {
  #SEOLPs .IntroZigZaSection .ZigZagSection .IntroSectionTwoWrap .IntroSectionTwoText {
    width: 100%;
    display: block;
    padding: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #SEOLPs .IntroZigZaSection .ZigZagSection .IntroSectionTwoWrap .IntroSectionTwoText {
    padding: 0;
  }
}
#SEOLPs .IntroZigZaSection .ZigZagSection .IntroSectionTwoWrap .IntroSectionTwoText .IntroSectionTwoTextWrap h1 p {
  font-size: 46px;
  line-height: 56px;
  font-weight: bold;
  margin: 0 0 40px 0;
}
@media (max-width: 767px) {
  #SEOLPs .IntroZigZaSection .ZigZagSection .IntroSectionTwoWrap .IntroSectionTwoText .IntroSectionTwoTextWrap h1 p {
    font-size: 34px;
    line-height: 46px;
    margin: 0 0 20px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #SEOLPs .IntroZigZaSection .ZigZagSection .IntroSectionTwoWrap .IntroSectionTwoText .IntroSectionTwoTextWrap h1 p {
    font-size: 38px;
    line-height: 50px;
    margin: 0 0 20px 0;
  }
}
#SEOLPs .IntroZigZaSection .ZigZagSection .IntroSectionTwoWrap .IntroSectionTwoText .IntroSectionTwoTextWrap p {
  font-size: 18px;
  line-height: 145%;
  margin: 0 0 40px 0;
}
@media (max-width: 767px) {
  #SEOLPs .IntroZigZaSection .ZigZagSection .IntroSectionTwoWrap .IntroSectionTwoText .IntroSectionTwoTextWrap p {
    font-size: 16px;
    line-height: 135%;
    margin: 0 0 20px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #SEOLPs .IntroZigZaSection .ZigZagSection .IntroSectionTwoWrap .IntroSectionTwoText .IntroSectionTwoTextWrap p {
    font-size: 18px;
    line-height: 140%;
    margin: 0 0 20px 0;
  }
}
#SEOLPs .IntroZigZaSection .ZigZagSection .IntroSectionTwoWrap .IntroSectionTwoText .IntroSectionTwoTextWrap p:last-child {
  margin: 0;
}
#SEOLPs .IntroZigZaSection .ZigZagSection .IntroSectionTwoWrap .IntroSectionTwoText .IntroSectionTwoTextWrap .IntroText {
  font-size: 18px;
  line-height: 145%;
  margin: 0 0 40px 0;
}
#SEOLPs .IntroZigZaSection .ZigZagSection .IntroSectionTwoWrap .IntroSectionTwoText .IntroSectionTwoTextWrap .Text {
  text-align: left;
}
#SEOLPs .IntroZigZaSection .ZigZagSection .IntroSectionTwoWrap .IntroSectionTwoText .IntroSectionTwoTextWrap .Text p:last-child {
  margin: 0;
}
#SEOLPs .IntroZigZaSection .ZigZagSection .IntroSectionTwoWrap .IntroSectionTwoText .IntroSectionTwoTextWrap .IntroSectionTwoVideoImgCol {
  display: none;
}
@media (max-width: 767px) {
  #SEOLPs .IntroZigZaSection .ZigZagSection .IntroSectionTwoWrap .IntroSectionTwoText .IntroSectionTwoTextWrap .IntroSectionTwoVideoImgCol {
    display: block;
    margin: 50px 0;
  }
}
#SEOLPs .IntroZigZaSection .ZigZagSection .IntroSectionTwoWrap .IntroSectionTwoVideoImgCol {
  width: 50%;
  padding: 60px;
  display: table-cell;
  vertical-align: middle;
}
@media (max-width: 767px) {
  #SEOLPs .IntroZigZaSection .ZigZagSection .IntroSectionTwoWrap .IntroSectionTwoVideoImgCol {
    width: 100%;
    display: block;
    padding: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #SEOLPs .IntroZigZaSection .ZigZagSection .IntroSectionTwoWrap .IntroSectionTwoVideoImgCol {
    padding: 5px;
  }
}
#SEOLPs .IntroZigZaSection .ZigZagSection .IntroSectionTwoWrap .IntroSectionTwoVideoImgCol .IntroSectionTwoVideoImgColWrap {
  position: relative;
}
#SEOLPs .IntroZigZaSection .ZigZagSection .IntroSectionTwoWrap .IntroSectionTwoVideoImgCol .IntroSectionTwoVideoImgColWrap img {
  width: 100%;
  height: auto;
}
#SEOLPs .BestPracticesThreeColContent {
  padding: 120px 0 120px 0;
}
@media (max-width: 767px) {
  #SEOLPs .BestPracticesThreeColContent {
    padding: 60px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #SEOLPs .BestPracticesThreeColContent {
    padding: 80px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #SEOLPs .BestPracticesThreeColContent .container {
    max-width: 100%;
  }
}
#SEOLPs .BestPracticesThreeColContent .Intro {
  text-align: center;
}
#SEOLPs .BestPracticesThreeColContent .Intro h2 {
  font-size: 46px;
  line-height: 56px;
  font-weight: bold;
  margin: 0 0 40px 0;
}
@media (max-width: 767px) {
  #SEOLPs .BestPracticesThreeColContent .Intro h2 {
    font-size: 34px;
    line-height: 46px;
    margin: 0 0 20px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #SEOLPs .BestPracticesThreeColContent .Intro h2 {
    font-size: 38px;
    line-height: 50px;
    margin: 0 0 20px 0;
  }
}
#SEOLPs .BestPracticesThreeColContent .Intro p {
  font-size: 18px;
  line-height: 145%;
  margin: 0 0 40px 0;
}
@media (max-width: 767px) {
  #SEOLPs .BestPracticesThreeColContent .Intro p {
    font-size: 16px;
    line-height: 135%;
    margin: 0 0 20px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #SEOLPs .BestPracticesThreeColContent .Intro p {
    font-size: 18px;
    line-height: 140%;
    margin: 0 0 20px 0;
  }
}
#SEOLPs .BestPracticesThreeColContent .ThreeColContent .ThreeColContentWrap {
  min-height: 350px;
}
@media (max-width: 767px) {
  #SEOLPs .BestPracticesThreeColContent .ThreeColContent .ThreeColContentWrap {
    min-height: auto;
    margin: 0 0 50px 0;
  }
}
#SEOLPs .BestPracticesThreeColContent .ThreeColContent .ThreeColContentWrap img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  margin: 0 0 20px 0;
}
@media (max-width: 767px) {
  #SEOLPs .BestPracticesThreeColContent .ThreeColContent .ThreeColContentWrap img {
    margin: 0 0 5px 0;
  }
}
#SEOLPs .BestPracticesThreeColContent .ThreeColContent .ThreeColContentWrap h3 {
  font-size: 30px;
  line-height: 40px;
  font-weight: bold;
  margin: 0 0 20px 0;
  min-height: 120px;
}
@media (max-width: 767px) {
  #SEOLPs .BestPracticesThreeColContent .ThreeColContent .ThreeColContentWrap h3 {
    font-size: 20px;
    line-height: 36px;
    margin: 0 0 10px 0;
    min-height: auto;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #SEOLPs .BestPracticesThreeColContent .ThreeColContent .ThreeColContentWrap h3 {
    font-size: 24px;
    line-height: 35px;
    margin: 0 0 10px 0;
  }
}
#SEOLPs .BestPracticesThreeColContent .ThreeColContent .ThreeColContentWrap p {
  font-size: 18px;
  line-height: 145%;
  margin: 0 0 40px 0;
}
@media (max-width: 767px) {
  #SEOLPs .BestPracticesThreeColContent .ThreeColContent .ThreeColContentWrap p {
    font-size: 16px;
    line-height: 135%;
    margin: 0 0 20px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #SEOLPs .BestPracticesThreeColContent .ThreeColContent .ThreeColContentWrap p {
    font-size: 18px;
    line-height: 140%;
    margin: 0 0 20px 0;
  }
}

ol.CircleNos {
  margin: 0 0 0.5rem 0;
  counter-reset: my-awesome-counter;
  position: relative;
}
ol.CircleNos li {
  margin: 0 0 60px 0;
  counter-increment: my-awesome-counter;
  list-style: none;
}
ol.CircleNos li::before {
  content: counter(my-awesome-counter);
  color: #3C2869;
  font-size: 26px;
  font-weight: bold;
  position: absolute;
  --size: 45px;
  left: calc(-1 * var(--size) - 15px);
  line-height: var(--size);
  width: var(--size);
  height: var(--size);
  top: -5px;
  background: #14CDC8;
  border-radius: 50%;
  text-align: center;
}
@media (max-width: 767px) {
  ol.CircleNos li::before {
    --size: 30px;
    font-size: 20px;
  }
}
ol.CircleNos li::marker {
  display: none;
}

.sparkles {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100vw - 15px);
  pointer-events: none;
  overflow: hidden;
  height: 110vh;
  z-index: -1;
}
@media (min-width: 768px) {
  .sparkles {
    height: 210vh;
  }
}
.sparkles svg {
  width: 100%;
  height: auto;
  transition: opacity 1s, transform 3s;
  transform-origin: top center;
}
.sparkles.-first-load svg {
  transform: scale(1.5, 1.5);
  opacity: 0;
}

body.single-success_story {
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 90%;
  padding-top: 150px;
}
@media (max-width: 767px) {
  body.single-success_story {
    padding-top: 100px;
    background-image: none !important;
  }
  body.single-success_story .container {
    padding: 0 15px;
  }
}
@media (min-width: 768px) {
  body.single-success_story {
    padding-top: 70px;
  }
}
@media (min-width: 992px) {
  body.single-success_story {
    padding-top: 100px;
    background-size: 800px;
  }
}
@media (min-width: 1200px) {
  body.single-success_story {
    padding-top: 100px;
    background-size: 850px;
  }
}
body.single-success_story #wrapper {
  background: none;
}
body.single-success_story h3 {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.1;
  margin: 0 0 60px 0;
  color: #6E7DFF;
}
@media (max-width: 767px) {
  body.single-success_story h3 {
    font-size: 26px;
    margin: 0 0 20px 0;
  }
}
@media (min-width: 768px) {
  body.single-success_story h3 {
    margin: 0 0 30px 0;
  }
}
body.single-success_story h1 {
  font-size: 70px;
  line-height: 1.3;
  font-weight: bold;
  margin: 0 0 60px 0;
}
body.single-success_story h1 span {
  color: #6E7DFF;
}
@media (max-width: 767px) {
  body.single-success_story h1 {
    font-size: 34px;
    margin: 0 0 30px 0;
  }
  body.single-success_story h1 br {
    display: none;
  }
}
@media (min-width: 768px) {
  body.single-success_story h1 {
    font-size: 38px;
    margin: 0 0 30px 0;
  }
  body.single-success_story h1 br {
    display: none;
  }
}
@media (min-width: 992px) {
  body.single-success_story h1 {
    font-size: 40px;
    margin: 0 0 40px 0;
  }
  body.single-success_story h1 br {
    display: none;
  }
}
@media (min-width: 1200px) {
  body.single-success_story h1 {
    font-size: 70px;
    line-height: 1.3;
    font-weight: bold;
    margin: 0 0 60px 0;
  }
}
body.single-success_story h2.ClientLogo {
  height: 60px;
  font-size: 36px;
  vertical-align: bottom;
  margin: 0 0 20px 0;
}
@media (max-width: 767px) {
  body.single-success_story h2.ClientLogo {
    width: 100%;
  }
}
body.single-success_story h2.ClientLogo span {
  display: inline-block;
}
body.single-success_story h2.ClientLogo span.Text {
  vertical-align: bottom;
}
body.single-success_story h2.ClientLogo span.Logo {
  padding: 0 0 0 50px;
  vertical-align: bottom;
}
body.single-success_story h2.ClientLogo span.Logo img {
  width: auto;
  height: 60px;
}
@media (max-width: 767px) {
  body.single-success_story h2.ClientLogo span.Logo img {
    width: 160px;
    height: auto;
    padding: 0 0 0 10px;
  }
}
@media (min-width: 768px) {
  body.single-success_story h2.ClientLogo span.Logo img {
    width: 160px;
    height: auto;
    padding: 0 0 0 10px;
  }
}
@media (min-width: 992px) {
  body.single-success_story h2.ClientLogo span.Logo img {
    padding: 0 0 0 10px;
  }
}
@media (max-width: 767px) {
  body.single-success_story h2.ClientLogo {
    font-size: 26px;
  }
}
@media (min-width: 992px) {
  body.single-success_story h2.ClientLogo {
    font-size: 30px;
  }
}
body.single-success_story img.MobileGraphic {
  display: none;
}
@media (max-width: 767px) {
  body.single-success_story img.MobileGraphic {
    display: block;
    width: 70%;
    height: auto;
    margin: 0 auto 20px auto;
  }
}
body.single-success_story h2 {
  font-size: 36px;
  vertical-align: bottom;
  margin: 30px 0 20px 0;
}
body.single-success_story p {
  font-size: 20px;
  margin: 0 0 30px 0;
}
body.single-success_story .Testimonial {
  padding: 30% 0 0 0;
  width: 70%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  body.single-success_story .Testimonial {
    width: 90%;
    padding: 0;
  }
}
body.single-success_story .Testimonial p {
  font-style: italic;
  font-size: 24px;
  line-height: 1.3;
}
body.single-success_story .Testimonial .TestimonialMeta {
  font-size: 26px;
  font-weight: 600;
  margin: 20px 0 0 0;
}
body.single-success_story .EachSolution {
  margin: 0 0 30px 0;
}
body.single-success_story .EachSolution::after {
  content: "";
  clear: both;
  display: block;
}
body.single-success_story .EachSolution .SolutionTxt {
  width: 7%;
  float: left;
  font-size: 100px;
  line-height: 0.85;
  color: #6E7DFF;
  vertical-align: top;
}
@media (max-width: 767px) {
  body.single-success_story .EachSolution .SolutionTxt {
    width: 100%;
    float: none;
    font-size: 60px;
    line-height: 1;
  }
}
@media (min-width: 768px) {
  body.single-success_story .EachSolution .SolutionTxt {
    width: 10%;
    float: left;
    font-size: 60px;
  }
}
@media (min-width: 992px) {
  body.single-success_story .EachSolution .SolutionTxt {
    width: 5%;
    float: left;
    font-size: 60px;
  }
}
body.single-success_story .EachSolution .SolutionDesc {
  width: 93%;
  float: left;
  vertical-align: top;
}
body.single-success_story .EachSolution .SolutionDesc p {
  font-size: 20px;
}
@media (max-width: 767px) {
  body.single-success_story .EachSolution .SolutionDesc {
    width: 100%;
    float: none;
  }
}
@media (min-width: 768px) {
  body.single-success_story .EachSolution .SolutionDesc {
    width: 90%;
    float: left;
  }
}
@media (min-width: 992px) {
  body.single-success_story .EachSolution .SolutionDesc {
    width: 95%;
    float: left;
  }
}
body.single-success_story .EachSolution.Icon .SolutionIcon {
  width: 15%;
  float: left;
}
body.single-success_story .EachSolution.Icon .SolutionIcon img {
  width: 85%;
  height: auto;
}
body.single-success_story .EachSolution.Icon .SolutionDesc {
  width: 80%;
  float: left;
}
body.single-success_story .Results {
  text-align: center;
  margin: 0 0 100px 0;
}
body.single-success_story .Results::after {
  content: "";
  clear: both;
  display: block;
}
body.single-success_story .Results .EachResult {
  width: 25%;
  padding: 0 10px;
  display: inline-block;
}
@media (max-width: 767px) {
  body.single-success_story .Results .EachResult {
    width: 75%;
    margin: 0 auto;
    display: block;
  }
}
body.single-success_story .Results .EachResult .ResultTxt {
  width: 10%;
  font-size: 100px;
  line-height: 1;
  color: #6E7DFF;
}
body.single-success_story .Results .EachResult .ResultDesc {
  width: 90%;
}
body.single-success_story .Results .EachResult .ResultDesc p {
  font-size: 20px;
}
body.single-success_story .Results .EachResult.Icon .ResultIcon {
  width: 100%;
  margin: 0 auto 20px auto;
}
body.single-success_story .Results .EachResult.Icon .ResultIcon img {
  width: 65%;
  height: auto;
}
body.single-success_story .Results .EachResult.Icon .ResultDesc {
  width: 100%;
}
body.single-success_story .Download {
  margin: 0 0 60px 0;
  text-align: center;
}
body.single-success_story .Download a {
  background-color: #3c2869;
  color: #fff;
  display: inline-block;
  padding: 10px 30px 10px;
  border-radius: 30px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  text-decoration: none;
}
@media (max-width: 767px) {
  body.single-success_story .Download a {
    padding: 10px 20px 10px;
    font-size: 17px;
  }
}
body.single-success_story .AboutVungle {
  background-color: #14cdc8;
  padding: 4% 6%;
  text-align: center;
}
body.single-success_story .AboutVungle h2 {
  font-size: 34px;
  line-height: 1.1;
  color: #3c2869;
  text-align: center;
}
body.single-success_story .AboutVungle p {
  text-align: center;
}
body.single-success_story .AboutVungle ul.AboutVungleApps {
  text-align: center;
  list-style: none;
  margin: 0 0 30px 0;
  padding: 0;
}
body.single-success_story .AboutVungle ul.AboutVungleApps li {
  list-style: none;
  width: 24%;
  display: inline-block;
  text-align: center;
  margin: 0;
  padding: 0;
  vertical-align: top;
}
@media (max-width: 767px) {
  body.single-success_story .AboutVungle ul.AboutVungleApps li {
    width: 80%;
    display: block;
    margin: 0 auto;
  }
}
body.single-success_story .AboutVungle ul.AboutVungleApps li img {
  width: 60%;
  height: auto;
  display: block;
  margin: 0 auto;
}
body.single-success_story .AboutVungle ul.AboutVungleApps li p {
  padding: 20px;
  text-align: center;
}
body.single-success_story .AboutVungle .HubSpotForm h2 {
  text-align: center;
}

.hbspt-form {
  width: 80%;
  margin: 0 auto;
  text-align: left;
}
.hbspt-form form fieldset {
  max-width: 100%;
}
.hbspt-form form fieldset .field {
  margin: 0 0 10px 0;
}
.hbspt-form form fieldset .field label {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
@media (max-width: 767px) {
  .hbspt-form form fieldset .field .input {
    margin-right: 0;
  }
}
.hbspt-form form fieldset .field input {
  width: 98%;
  padding: 10px;
  border-radius: 5px !important;
  border: 0;
  background-color: #fff;
}
.hbspt-form form fieldset .field select {
  width: 98%;
  padding: 10px;
  border-radius: 5px !important;
  border: 0;
  background-color: #fff;
}
.hbspt-form form .hs-submit .actions {
  text-align: center;
}
.hbspt-form form .hs-submit .actions input.hs-button {
  width: 30%;
}
@media (max-width: 767px) {
  .hbspt-form form .hs-submit .actions input.hs-button {
    width: 80%;
  }
}

.WebinarHeader {
  background: #14cdc8 url("/wp-content/themes/pegasus/images/staticpage-header.png") no-repeat center center;
  background-size: 85%;
  padding: 250px 0 200px;
  margin: 0 0 70px 0;
}
@media (max-width: 767px) {
  .WebinarHeader {
    background-size: contain;
    padding: 100px 0 70px;
    margin: 0 0 30px 0;
  }
}
@media (min-width: 768px) {
  .WebinarHeader {
    background-size: contain;
    padding: 150px 0 110px;
    margin: 0 0 40px 0;
  }
}
.WebinarHeader .TopTitle {
  font-size: 45px;
  line-height: 1.2em;
  font-weight: 900;
  letter-spacing: -1px;
  text-align: center;
  padding: 0 20%;
}
@media (max-width: 767px) {
  .WebinarHeader .TopTitle {
    font-size: 25px;
    padding: 0 15px;
  }
}
@media (min-width: 768px) {
  .WebinarHeader .TopTitle {
    font-size: 30px;
    padding: 0 20px;
  }
}
.WebinarHeader h1 {
  font-size: 45px;
  line-height: 1.2em;
  font-weight: 900;
  letter-spacing: -1px;
  text-align: center;
  padding: 0 20%;
}
@media (max-width: 767px) {
  .WebinarHeader h1 {
    font-size: 25px;
    padding: 0 15px;
  }
}
@media (min-width: 768px) {
  .WebinarHeader h1 {
    font-size: 30px;
    padding: 0 20px;
  }
}
@media (min-width: 992px) {
  .WebinarHeader h1 {
    font-size: 36px;
    padding: 0 20px;
  }
}
@media (min-width: 1200px) {
  .WebinarHeader h1 {
    font-size: 45px;
    padding: 0 20%;
  }
}
@media (min-width: 1500px) {
  .WebinarHeader h1 {
    font-size: 55px;
    padding: 0 23%;
  }
}

.WebinarBody {
  padding: 0 0 70px 0;
}
@media (max-width: 767px) {
  .WebinarBody {
    padding: 0 15px 30px 15px;
  }
}
@media (max-width: 767px) {
  .WebinarBody {
    padding: 0 30px;
  }
}
.WebinarBody .AboutPresenters {
  margin: 50px 0 0 0;
}
.WebinarBody .AboutPresenters .EachPresenter .photo {
  width: 10%;
  margin: 0 0 10px 0;
}
@media (max-width: 767px) {
  .WebinarBody .AboutPresenters .EachPresenter .photo {
    width: 40%;
  }
}
.WebinarBody .AboutPresenters .EachPresenter .photo img {
  width: 100%;
  height: auto;
}
.WebinarBody .AboutPresenters .EachPresenter .name {
  margin: 0 0 10px 0;
}
.WebinarBody .AboutPresenters .EachPresenter::after {
  *zoom: 1;
}
.WebinarBody .AboutPresenters .EachPresenter::after::before, .WebinarBody .AboutPresenters .EachPresenter::after::after {
  content: " ";
  display: table;
}
.WebinarBody .AboutPresenters .EachPresenter::after::after {
  clear: both;
}

.WebinarForm {
  background-color: #14cdc8;
  padding: 75px 0;
}
.WebinarForm h2 {
  margin: 0 0 40px 0;
  text-align: center;
  font-weight: 700;
  font-size: 35px;
}
.WebinarForm .hbspt-form {
  width: 70%;
  margin: 0 auto;
}

/* Wordpress essential styling
  The TinyMCE wysiwyg editor outputs these classes
  for image and text aligning,
  the default gallery tool columns
  and image captions
*/
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter, div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
  text-align: center;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #FFF;
  border: 1px solid #F0F0F0;
  max-width: 96%;
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption .wp-caption-text, .gallery-caption {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

.gallery {
  clear: both;
}

.gallery-row {
  margin: 0 auto;
}

.gallery-item {
  float: left;
  width: 33%;
  text-align: center;
}

.gallery-columns-1 .gallery-item {
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  width: 50%;
}

.gallery-columns-4 .gallery-item {
  width: 25%;
}

.gallery-columns-5 .gallery-item {
  width: 20%;
}

.gallery-columns-6 .gallery-item {
  width: 16%;
}

.gallery-columns-7 .gallery-item {
  width: 14%;
}

.gallery-columns-8 .gallery-item {
  width: 12%;
}

.gallery-columns-9 .gallery-item {
  width: 11%;
}

.gallery-item img {
  max-width: 90%;
}

.post-edit-link {
  position: fixed;
  display: block;
  right: 20px;
  bottom: 20px;
  width: 36px;
  height: 36px;
  overflow: hidden;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  background: #FFD700;
  text-align: center;
  font: normal 16px/36px ionicons;
  text-decoration: none !important;
  transition: 0.2s ease-out;
  z-index: 5;
}
.post-edit-link:hover {
  background: #ffdf33;
}
.post-edit-link:active:hover {
  transform: scale(0.93);
}
.post-edit-link::before {
  display: block;
  content: "";
  color: white;
}
.post-edit-link span {
  display: none;
}

.component-author-meta {
  margin: auto;
  padding: 0 30px 60px;
}
@media (min-width: 768px) {
  .component-author-meta {
    max-width: 815px;
    padding: 0 30px 6.6%;
  }
}
.component-author-meta .inner {
  display: flex;
  align-items: center;
}
.component-author-meta .inner .profile-image-container {
  width: 20%;
  border-radius: 50%;
  overflow: hidden;
}
@media (min-width: 500px) {
  .component-author-meta .inner .profile-image-container {
    width: 11%;
  }
}
.component-author-meta .inner .profile-image-container img {
  width: 100%;
}
.component-author-meta .inner .profile-info {
  width: 80%;
  padding: 0 0 0 5%;
}
@media (max-width: 400px) {
  .component-author-meta .inner .profile-info h3, .component-author-meta .inner .profile-info h2 {
    font-size: 22px;
  }
}
@media (min-width: 500px) {
  .component-author-meta .inner .profile-info {
    width: 70%;
  }
}
@media (min-width: 768px) {
  .component-author-meta .inner .profile-info {
    padding-left: 7%;
  }
}
.component-author-meta .inner .profile-info h2 {
  margin: 0;
}

.component-banner-full {
  background-position: 50% 100%;
  background-size: cover;
  position: relative;
  height: 95vh;
  overflow: hidden;
}
.component-banner-full img.BlogFeatureImage {
  display: none;
}
@media (min-width: 768px) {
  .component-banner-full {
    background-size: cover;
  }
}
@media (min-width: 992px) {
  .component-banner-full {
    background-position: bottom;
  }
}
.component-banner-full .container {
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 50px 0 0;
}
@media (min-width: 768px) {
  .component-banner-full .container {
    padding: 15vh 0;
  }
}
@media (min-width: 1500px) {
  .component-banner-full .container {
    padding: 18vh 0;
  }
}
.component-banner-full .container.-container-desktop-only-aligment.-left {
  padding-top: 120px;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .component-banner-full .container.-container-desktop-only-aligment.-left {
    padding: 15vh 0;
  }
}
@media (min-width: 992px) {
  .component-banner-full .container.-container-desktop-only-aligment.-left {
    justify-content: center;
  }
}
@media (min-width: 1500px) {
  .component-banner-full .container.-container-desktop-only-aligment.-left {
    padding: 18vh 0;
  }
}
.component-banner-full .container.-left {
  justify-content: center;
}
.component-banner-full .container.-left .inner {
  align-items: flex-start;
}
.component-banner-full .container.-left .inner .heading-container {
  width: 100%;
}
@media (min-width: 768px) {
  .component-banner-full .container.-left .inner .heading-container {
    width: 75%;
  }
}
@media (min-width: 1200px) {
  .component-banner-full .container.-left .inner .heading-container {
    width: auto;
  }
}
.component-banner-full .container.-centre .inner {
  align-items: center;
}
.component-banner-full .container.-centre .inner .heading.line-1 {
  padding-left: 3.6vw;
}
.component-banner-full .container.-centre .inner .heading.-desktop-only-aligment {
  text-align: center;
}
@media (min-width: 992px) {
  .component-banner-full .container.-centre .inner .heading.-desktop-only-aligment {
    text-align: left;
  }
}
.component-banner-full .container.-centre .inner .banner-content {
  text-align: center;
}
.component-banner-full .container.-centre .bottom {
  text-align: center;
}
.component-banner-full .container.-right .inner {
  align-items: flex-end;
}
.component-banner-full .container.-right .inner .banner-content {
  text-align: center;
}
.component-banner-full .container.-right .bottom {
  text-align: right;
}
.component-banner-full .container .inner {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.component-banner-full .container .inner .heading-container .heading {
  font-size: 60px;
  font-weight: 700;
  line-height: 0.9em;
}
@media (min-width: 768px) {
  .component-banner-full .container .inner .heading-container .heading {
    font-size: 70px;
  }
}
@media (min-width: 992px) {
  .component-banner-full .container .inner .heading-container .heading.-desktop-only-aligment {
    font-size: 130px;
    font-size: 6.7708333333vw;
    line-height: 0.9em;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (min-width: 992px) and (max-width: 1033.8461538462px) {
  .component-banner-full .container .inner .heading-container .heading.-desktop-only-aligment {
    font-size: 70px;
  }
}
@media (min-width: 992px) and (min-width: 1920px) {
  .component-banner-full .container .inner .heading-container .heading.-desktop-only-aligment {
    font-size: 130px;
  }
}
@media (max-width: 992px) {
  .component-banner-full .container .inner .heading-container .heading.-desktop-only-aligment span.line-1 {
    padding-left: 0 !important;
  }
}
@media (max-width: 992px) {
  .component-banner-full .container .inner .heading-container .heading.-desktop-only-aligment span.line-2 {
    padding-left: 0 !important;
  }
}
@media (max-width: 992px) {
  .component-banner-full .container .inner .heading-container .heading.-desktop-only-aligment span.line-3 {
    padding-left: 0 !important;
  }
}
.component-banner-full .container .inner .heading-container .heading.-all-screens-alignment {
  font-size: 160px;
  font-size: 8.3333333333vw;
  line-height: 0.9em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 720px) {
  .component-banner-full .container .inner .heading-container .heading.-all-screens-alignment {
    font-size: 60px;
  }
}
@media (min-width: 1920px) {
  .component-banner-full .container .inner .heading-container .heading.-all-screens-alignment {
    font-size: 160px;
  }
}
.component-banner-full .container .inner .banner-content {
  font-size: 18px;
  padding-top: 20px;
  width: 70%;
  line-height: 1.44em;
  font-weight: 500;
}
@media (min-width: 768px) {
  .component-banner-full .container .inner .banner-content {
    font-size: 22px;
    padding-top: 4vh;
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .component-banner-full .container .inner .banner-content {
    width: 40%;
    line-height: 32px;
  }
}
@media (min-width: 1500px) {
  .component-banner-full .container .inner .banner-content {
    width: 30%;
  }
}
.component-banner-full .container .bottom {
  margin-top: 20px;
  height: 52px;
}
@media (min-width: 768px) {
  .component-banner-full .container .bottom {
    margin-top: 50px;
  }
}
@media (min-width: 992px) {
  .component-banner-full .container .bottom {
    margin-top: 5vh;
  }
}
.component-banner-full .container .bottom a {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 52px;
  border-radius: 50%;
}
.component-banner-full .container .bottom a.-red {
  background-color: #FF5A41;
}
.component-banner-full .container .bottom a.-pink {
  background-color: #FFD2E1;
  color: #3C2869;
}
.component-banner-full .container .bottom a.-purple {
  background-color: #3C2869;
}
.component-banner-full .container .bottom a.-blue {
  background-color: #6E7DFF;
}
.component-banner-full .container .bottom a.-yellow {
  background-color: #FFD700;
}
.component-banner-full .container .bottom a.-green {
  background-color: #14CDC8;
}
.component-banner-full .container .bottom a.-light-blue {
  background-color: #CDF5FF;
  color: #3C2869;
}
.component-banner-full .container .bottom a.-white {
  background-color: #FAF5FA;
}
.component-banner-full .container .bottom a.-white i {
  color: #3C2869;
}
.component-banner-full .container .bottom a i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  line-height: 24px;
  color: #fff;
}
.component-banner-full .background-video {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
}
.component-banner-full .banner-background-parallax-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  display: none;
}
@media (min-width: 992px) {
  .component-banner-full .banner-background-parallax-container {
    display: block;
  }
}
.component-banner-full .banner-background-parallax-container .banner-background-parallax-image {
  width: 100%;
  height: 115%;
  background-size: 100%;
  background-position: center;
  bottom: -14%;
  position: absolute;
}

.component-banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}
html.os-ios7 .component-banner {
  min-height: 530px;
  height: auto;
}
.component-banner .inner {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  text-align: center;
  color: #FFF;
  padding: 0 30px;
  width: 100%;
}
@media (min-width: 768px) {
  .component-banner .inner {
    padding: 0 5%;
    margin: 0 auto;
    max-width: 70%;
  }
}
@media (min-width: 1500px) {
  .component-banner .inner {
    max-width: 50%;
  }
}
.component-banner .inner .btn {
  margin-top: 10%;
}
@media (min-width: 768px) {
  .component-banner .inner .btn {
    margin-top: 4%;
  }
}
.component-banner .bottom {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  bottom: 20px;
}
@media (min-width: 768px) {
  .component-banner .bottom {
    bottom: 3%;
  }
}
.component-banner .bottom .scroll-down {
  color: #FFF;
}
.component-banner .bottom .scroll-down i {
  font-size: 44.44px;
  font-size: 2.3145833333vw;
}
@media (max-width: 1296.1296129613px) {
  .component-banner .bottom .scroll-down i {
    font-size: 30px;
  }
}
@media (min-width: 1920px) {
  .component-banner .bottom .scroll-down i {
    font-size: 44.44px;
  }
}
.component-banner .heading {
  font-size: 100px;
  font-size: 5.2083333333vw;
  font-weight: 700;
  line-height: 1em;
}
@media (max-width: 768px) {
  .component-banner .heading {
    font-size: 40px;
  }
}
@media (min-width: 1920px) {
  .component-banner .heading {
    font-size: 100px;
  }
}
.component-banner .heading .secondary_heading {
  margin-top: 4%;
  display: block;
}
.component-banner .heading, .component-banner .sub-heading {
  line-height: 1.2em;
  margin: 0 0 20px 0;
}
@media (min-width: 768px) {
  .component-banner .heading, .component-banner .sub-heading {
    margin: 0 0 2.1% 0;
  }
}
.component-banner.-small {
  height: 100vh;
  min-height: 300px;
  transition: background-size 2s;
  background-size: 0;
}
.component-banner.-small.-first-load {
  background-size: 100%;
}
.component-banner.-small.-first-load .container.-left .inner {
  transform: scale(1) translate(0, -50%);
  opacity: 1;
}
.component-banner.-small.-first-load .container.-centre .inner {
  transform: scale(1) translate(-50%, -50%);
  opacity: 1;
}
.component-banner.-small.-first-load .container.-right .inner {
  transform: scale(1) translate(0, -50%);
  opacity: 1;
}
html.os-ios7 .component-banner.-small {
  min-height: 300px !important;
}
@media (min-width: 768px) {
  .component-banner.-small {
    height: 90vh;
  }
}
@media (min-width: 992px) {
  .component-banner.-small {
    height: 78vh;
  }
}
.component-banner.-small .container {
  height: 100%;
}
.component-banner.-small .container.-left .inner {
  left: 0;
  text-align: left !important;
  transform: scale(2) translate(0, -50%);
  opacity: 0;
  transform-origin: right top;
}
.component-banner.-small .container.-left .inner .bottom {
  text-align: left;
}
.component-banner.-small .container.-centre .inner {
  left: 50%;
  transform: scale(2) translate(-50%, -50%);
  opacity: 0;
  transform-origin: 0 0;
}
.component-banner.-small .container.-centre .inner .heading-container .heading.-desktop-only-aligment {
  text-align: center;
}
.component-banner.-small .container.-centre .bottom {
  justify-content: center;
}
.component-banner.-small .container.-right .inner {
  right: 0;
  text-align: left !important;
  transform: scale(2) translate(0, -50%);
  opacity: 0;
  transform-origin: left top;
}
.component-banner.-small .container.-right .inner .bottom {
  text-align: left;
}
.component-banner.-small .container .inner {
  top: 50%;
  width: 100%;
  padding: 0;
  transition: opacity 2s, transform 2s;
  transform-origin: 10%;
}
@media (min-width: 768px) {
  .component-banner.-small .container .inner {
    width: 50%;
    transform: translate(0, -50%);
  }
}
.component-banner.-small .container .inner h2 {
  font-size: 55px;
  line-height: 1em;
  font-weight: 700;
}
@media (min-width: 1200px) {
  .component-banner.-small .container .inner h2 {
    font-size: 55px;
  }
}
@media (min-width: 1500px) {
  .component-banner.-small .container .inner h2 {
    font-size: 80px;
  }
}
.component-banner.-small .container .inner .bottom {
  position: relative;
  display: flex;
}
.component-banner.-small .container .inner .bottom .btn {
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-size: 11px;
  padding-right: 26px;
}
@media (min-width: 992px) {
  .component-banner.-small .container .inner .bottom .btn {
    padding-right: 32px;
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .component-banner.-small .container .inner .bottom .btn {
    padding-right: 36px;
    font-size: 18px;
  }
}
.component-banner.-small .container .inner .bottom .btn:after {
  display: none;
}
.component-banner.-small .container .inner .bottom .btn i {
  color: #fff;
  font-size: 11px;
  padding-left: 10px;
}
@media (min-width: 992px) {
  .component-banner.-small .container .inner .bottom .btn i {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .component-banner.-small .container .inner .bottom .btn i {
    font-size: 18px;
  }
}
.component-banner.-small .heading {
  letter-spacing: -0.03em;
  font-weight: 600 !important;
}
.component-banner.-small .sub-heading {
  letter-spacing: 0;
  font-weight: 300 !important;
}
.component-banner.-small .sub-heading a {
  color: #FFF;
}
.component-banner.-carousel {
  position: relative;
}
.component-banner.-carousel .carousel-next, .component-banner.-carousel .carousel-prev {
  display: none;
}
@media (min-width: 768px) {
  .component-banner.-carousel .carousel-next, .component-banner.-carousel .carousel-prev {
    display: inline;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    padding: 20px;
  }
}
.component-banner.-carousel .carousel-next {
  right: 1%;
}
.component-banner.-carousel .carousel-prev {
  left: 1%;
}
.component-banner.-carousel .inner {
  margin: 0 auto;
  position: relative;
  padding: 5%;
  max-width: 95%;
  color: #fff;
  font-weight: 300;
}
@media (min-width: 768px) {
  .component-banner.-carousel .inner {
    max-width: 50%;
  }
}
@media (min-width: 1200px) {
  .component-banner.-carousel .inner {
    max-width: 40%;
  }
}
.component-banner.-parallax .banner-panel {
  height: 110vh;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 3;
}
.component-banner.-parallax .banner-panel.-logo-container {
  z-index: 2;
  height: 100vh;
}
.component-banner.-parallax .banner-panel .btn-container {
  opacity: 0;
  transition: opacity 1.5s;
  transition-delay: 2s;
  position: absolute;
  bottom: 2%;
  transform: translate3d(-50%, 0, 0);
  left: 50%;
}
.component-banner.-parallax .banner-panel .btn-container .btn {
  font-size: 15px;
}
@media (min-width: 992px) {
  .component-banner.-parallax .banner-panel .btn-container .btn {
    font-size: 17px;
    padding: 1.5em 5.5em 1.5em 4em;
  }
  .component-banner.-parallax .banner-panel .btn-container .btn:after {
    right: 4em;
  }
}
@media (min-width: 1500px) {
  .component-banner.-parallax .banner-panel .btn-container .btn {
    font-size: 18px;
  }
}
.component-banner.-parallax .banner-panel .inner {
  max-width: 100%;
  position: static;
  transform: none;
  margin: 0 auto;
  top: auto;
  z-index: 1;
  transition: none;
}
@media (min-width: 768px) {
  .component-banner.-parallax .banner-panel .inner {
    max-width: 70%;
    padding: 2em 0;
  }
}
.component-banner.-parallax .banner-panel .inner.-content {
  font-size: 30px;
  font-size: 1.5625vw;
  font-weight: 400;
  max-width: 100%;
}
@media (max-width: 1280px) {
  .component-banner.-parallax .banner-panel .inner.-content {
    font-size: 20px;
  }
}
@media (min-width: 1920px) {
  .component-banner.-parallax .banner-panel .inner.-content {
    font-size: 30px;
  }
}
@media (min-width: 768px) {
  .component-banner.-parallax .banner-panel .inner.-content {
    max-width: 60%;
  }
}
.component-banner.-parallax .banner-panel .inner.-content p {
  margin-bottom: 2em;
}
.component-banner.-parallax .banner-panel .inner.-content p:last-child {
  margin-bottom: 0;
}
.component-banner.-parallax .banner-panel .inner .sub-heading {
  margin-bottom: 5%;
  opacity: 0;
  transition: opacity 1s;
  transition-delay: 2s;
}
.component-banner.-parallax .banner-panel .inner .sub-heading p {
  font-weight: 700;
}
.component-banner.-parallax .banner-panel .inner .heading {
  opacity: 0;
  transform: scale(1.1, 1.1);
  transition: opacity 2s, transform 2s;
}
.component-banner.-parallax .banner-panel .inner .heading .secondary_heading {
  opacity: 0;
  transition: opacity 2s;
  transition-delay: 1s;
}
@media (max-width: 767px) {
  .component-banner.-parallax .banner-panel.-text-panel {
    height: auto !important;
  }
  .component-banner.-parallax .banner-panel.-text-panel .inner {
    padding: 2em 30px 3em;
  }
}
.component-banner.-parallax .banner-panel .svg-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
  pointer-events: none;
}
@media (max-width: 767px) {
  .component-banner.-parallax .banner-panel .svg-background {
    position: fixed;
  }
}
.component-banner.-parallax .banner-panel .svg-background svg {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  height: 100%;
}
@media (min-width: 768px) {
  .component-banner.-parallax .banner-panel .svg-background svg {
    height: auto;
  }
}
.component-banner.-parallax .banner-panel .svg-background svg .st0, .component-banner.-parallax .banner-panel .svg-background svg .st1 {
  transition: opacity 1s, transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
  transform-origin: center center;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(0), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(0) {
  transition-delay: 0.01s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(1), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(1) {
  transition-delay: 0.02s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(2), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(2) {
  transition-delay: 0.03s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(3), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(3) {
  transition-delay: 0.04s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(4), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(4) {
  transition-delay: 0.05s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(5), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(5) {
  transition-delay: 0.06s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(6), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(6) {
  transition-delay: 0.07s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(7), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(7) {
  transition-delay: 0.08s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(8), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(8) {
  transition-delay: 0.09s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(9), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(9) {
  transition-delay: 0.1s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(10), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(10) {
  transition-delay: 0.11s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(11), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(11) {
  transition-delay: 0.12s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(12), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(12) {
  transition-delay: 0.13s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(13), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(13) {
  transition-delay: 0.14s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(14), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(14) {
  transition-delay: 0.15s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(15), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(15) {
  transition-delay: 0.16s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(16), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(16) {
  transition-delay: 0.17s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(17), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(17) {
  transition-delay: 0.18s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(18), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(18) {
  transition-delay: 0.19s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(19), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(19) {
  transition-delay: 0.2s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(20), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(20) {
  transition-delay: 0.21s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(21), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(21) {
  transition-delay: 0.22s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(22), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(22) {
  transition-delay: 0.23s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(23), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(23) {
  transition-delay: 0.24s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(24), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(24) {
  transition-delay: 0.25s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(25), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(25) {
  transition-delay: 0.26s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(26), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(26) {
  transition-delay: 0.27s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(27), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(27) {
  transition-delay: 0.28s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(28), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(28) {
  transition-delay: 0.29s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(29), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(29) {
  transition-delay: 0.3s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(30), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(30) {
  transition-delay: 0.31s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(31), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(31) {
  transition-delay: 0.32s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(32), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(32) {
  transition-delay: 0.33s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(33), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(33) {
  transition-delay: 0.34s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(34), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(34) {
  transition-delay: 0.35s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(35), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(35) {
  transition-delay: 0.36s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(36), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(36) {
  transition-delay: 0.37s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(37), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(37) {
  transition-delay: 0.38s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(38), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(38) {
  transition-delay: 0.39s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(39), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(39) {
  transition-delay: 0.4s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(40), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(40) {
  transition-delay: 0.41s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(41), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(41) {
  transition-delay: 0.42s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(42), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(42) {
  transition-delay: 0.43s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(43), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(43) {
  transition-delay: 0.44s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(44), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(44) {
  transition-delay: 0.45s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(45), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(45) {
  transition-delay: 0.46s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(46), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(46) {
  transition-delay: 0.47s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(47), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(47) {
  transition-delay: 0.48s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(48), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(48) {
  transition-delay: 0.49s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(49), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(49) {
  transition-delay: 0.5s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(50), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(50) {
  transition-delay: 0.51s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(51), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(51) {
  transition-delay: 0.52s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(52), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(52) {
  transition-delay: 0.53s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(53), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(53) {
  transition-delay: 0.54s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(54), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(54) {
  transition-delay: 0.55s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(55), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(55) {
  transition-delay: 0.56s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(56), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(56) {
  transition-delay: 0.57s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(57), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(57) {
  transition-delay: 0.58s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(58), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(58) {
  transition-delay: 0.59s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(59), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(59) {
  transition-delay: 0.6s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(60), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(60) {
  transition-delay: 0.61s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(61), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(61) {
  transition-delay: 0.62s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(62), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(62) {
  transition-delay: 0.63s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(63), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(63) {
  transition-delay: 0.64s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(64), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(64) {
  transition-delay: 0.65s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(65), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(65) {
  transition-delay: 0.66s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(66), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(66) {
  transition-delay: 0.67s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(67), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(67) {
  transition-delay: 0.68s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(68), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(68) {
  transition-delay: 0.69s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(69), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(69) {
  transition-delay: 0.7s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(70), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(70) {
  transition-delay: 0.71s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(71), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(71) {
  transition-delay: 0.72s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(72), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(72) {
  transition-delay: 0.73s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(73), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(73) {
  transition-delay: 0.74s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(74), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(74) {
  transition-delay: 0.75s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(75), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(75) {
  transition-delay: 0.76s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(76), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(76) {
  transition-delay: 0.77s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(77), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(77) {
  transition-delay: 0.78s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(78), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(78) {
  transition-delay: 0.79s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(79), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(79) {
  transition-delay: 0.8s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(80), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(80) {
  transition-delay: 0.81s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(81), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(81) {
  transition-delay: 0.82s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(82), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(82) {
  transition-delay: 0.83s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(83), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(83) {
  transition-delay: 0.84s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(84), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(84) {
  transition-delay: 0.85s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(85), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(85) {
  transition-delay: 0.86s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(86), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(86) {
  transition-delay: 0.87s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(87), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(87) {
  transition-delay: 0.88s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(88), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(88) {
  transition-delay: 0.89s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(89), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(89) {
  transition-delay: 0.9s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(90), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(90) {
  transition-delay: 0.91s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(91), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(91) {
  transition-delay: 0.92s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(92), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(92) {
  transition-delay: 0.93s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(93), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(93) {
  transition-delay: 0.94s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(94), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(94) {
  transition-delay: 0.95s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(95), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(95) {
  transition-delay: 0.96s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(96), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(96) {
  transition-delay: 0.97s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(97), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(97) {
  transition-delay: 0.98s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(98), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(98) {
  transition-delay: 0.99s;
}
.component-banner.-parallax .banner-panel .svg-background svg .st0:nth-child(99), .component-banner.-parallax .banner-panel .svg-background svg .st1:nth-child(99) {
  transition-delay: 1s;
}
.component-banner.-parallax .banner-panel.-out .svg-background svg .st0, .component-banner.-parallax .banner-panel.-out .svg-background svg .st1 {
  opacity: 0;
  transform: translate3d(0, -500px, 0) scale(3, 3) !important;
  transition-timing-function: ease;
}
.component-banner.-parallax .banner-panel.-first-load .inner .heading {
  opacity: 1;
  transform: scale(1, 1);
}
.component-banner.-parallax .banner-panel.-first-load .inner .heading .secondary_heading {
  opacity: 1;
}
.component-banner.-parallax .banner-panel.-first-load .btn-container, .component-banner.-parallax .banner-panel.-first-load .sub-heading {
  opacity: 1;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(0), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(0) {
  transition-delay: 0.02s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(1), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(1) {
  transition-delay: 0.04s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(2), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(2) {
  transition-delay: 0.06s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(3), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(3) {
  transition-delay: 0.08s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(4), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(4) {
  transition-delay: 0.1s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(5), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(5) {
  transition-delay: 0.12s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(6), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(6) {
  transition-delay: 0.14s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(7), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(7) {
  transition-delay: 0.16s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(8), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(8) {
  transition-delay: 0.18s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(9), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(9) {
  transition-delay: 0.2s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(10), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(10) {
  transition-delay: 0.22s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(11), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(11) {
  transition-delay: 0.24s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(12), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(12) {
  transition-delay: 0.26s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(13), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(13) {
  transition-delay: 0.28s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(14), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(14) {
  transition-delay: 0.3s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(15), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(15) {
  transition-delay: 0.32s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(16), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(16) {
  transition-delay: 0.34s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(17), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(17) {
  transition-delay: 0.36s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(18), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(18) {
  transition-delay: 0.38s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(19), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(19) {
  transition-delay: 0.4s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(20), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(20) {
  transition-delay: 0.42s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(21), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(21) {
  transition-delay: 0.44s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(22), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(22) {
  transition-delay: 0.46s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(23), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(23) {
  transition-delay: 0.48s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(24), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(24) {
  transition-delay: 0.5s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(25), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(25) {
  transition-delay: 0.52s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(26), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(26) {
  transition-delay: 0.54s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(27), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(27) {
  transition-delay: 0.56s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(28), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(28) {
  transition-delay: 0.58s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(29), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(29) {
  transition-delay: 0.6s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(30), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(30) {
  transition-delay: 0.62s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(31), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(31) {
  transition-delay: 0.64s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(32), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(32) {
  transition-delay: 0.66s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(33), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(33) {
  transition-delay: 0.68s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(34), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(34) {
  transition-delay: 0.7s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(35), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(35) {
  transition-delay: 0.72s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(36), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(36) {
  transition-delay: 0.74s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(37), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(37) {
  transition-delay: 0.76s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(38), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(38) {
  transition-delay: 0.78s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(39), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(39) {
  transition-delay: 0.8s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(40), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(40) {
  transition-delay: 0.82s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(41), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(41) {
  transition-delay: 0.84s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(42), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(42) {
  transition-delay: 0.86s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(43), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(43) {
  transition-delay: 0.88s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(44), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(44) {
  transition-delay: 0.9s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(45), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(45) {
  transition-delay: 0.92s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(46), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(46) {
  transition-delay: 0.94s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(47), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(47) {
  transition-delay: 0.96s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(48), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(48) {
  transition-delay: 0.98s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(49), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(49) {
  transition-delay: 1s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(50), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(50) {
  transition-delay: 1.02s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(51), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(51) {
  transition-delay: 1.04s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(52), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(52) {
  transition-delay: 1.06s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(53), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(53) {
  transition-delay: 1.08s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(54), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(54) {
  transition-delay: 1.1s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(55), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(55) {
  transition-delay: 1.12s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(56), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(56) {
  transition-delay: 1.14s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(57), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(57) {
  transition-delay: 1.16s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(58), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(58) {
  transition-delay: 1.18s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(59), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(59) {
  transition-delay: 1.2s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(60), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(60) {
  transition-delay: 1.22s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(61), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(61) {
  transition-delay: 1.24s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(62), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(62) {
  transition-delay: 1.26s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(63), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(63) {
  transition-delay: 1.28s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(64), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(64) {
  transition-delay: 1.3s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(65), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(65) {
  transition-delay: 1.32s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(66), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(66) {
  transition-delay: 1.34s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(67), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(67) {
  transition-delay: 1.36s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(68), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(68) {
  transition-delay: 1.38s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(69), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(69) {
  transition-delay: 1.4s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(70), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(70) {
  transition-delay: 1.42s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(71), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(71) {
  transition-delay: 1.44s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(72), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(72) {
  transition-delay: 1.46s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(73), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(73) {
  transition-delay: 1.48s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(74), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(74) {
  transition-delay: 1.5s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(75), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(75) {
  transition-delay: 1.52s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(76), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(76) {
  transition-delay: 1.54s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(77), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(77) {
  transition-delay: 1.56s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(78), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(78) {
  transition-delay: 1.58s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(79), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(79) {
  transition-delay: 1.6s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(80), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(80) {
  transition-delay: 1.62s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(81), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(81) {
  transition-delay: 1.64s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(82), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(82) {
  transition-delay: 1.66s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(83), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(83) {
  transition-delay: 1.68s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(84), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(84) {
  transition-delay: 1.7s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(85), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(85) {
  transition-delay: 1.72s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(86), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(86) {
  transition-delay: 1.74s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(87), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(87) {
  transition-delay: 1.76s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(88), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(88) {
  transition-delay: 1.78s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(89), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(89) {
  transition-delay: 1.8s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(90), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(90) {
  transition-delay: 1.82s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(91), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(91) {
  transition-delay: 1.84s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(92), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(92) {
  transition-delay: 1.86s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(93), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(93) {
  transition-delay: 1.88s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(94), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(94) {
  transition-delay: 1.9s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(95), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(95) {
  transition-delay: 1.92s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(96), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(96) {
  transition-delay: 1.94s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(97), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(97) {
  transition-delay: 1.96s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(98), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(98) {
  transition-delay: 1.98s;
}
.component-banner.-parallax.-speed1 .svg-background svg .st0:nth-child(99), .component-banner.-parallax.-speed1 .svg-background svg .st1:nth-child(99) {
  transition-delay: 2s;
}

.component-banner img.BlogFeatureImage {
  display: none;
}

@media (min-width: 0px) and (max-width: 767px) {
  article.type-post .component-banner {
    background-image: none !important;
  }
  article.type-post .component-banner img.BlogFeatureImage {
    display: block;
    width: 100%;
    height: auto;
  }
  article.type-post .component-banner.-small {
    height: auto;
    min-height: auto;
  }
}

.component-call-to-action-outer,
.component-call-to-action,
.component-call-to-action .link-container,
.component-call-to-action .background-image,
.component-call-to-action .overlay,
.component-call-to-action .inner {
  height: 100%;
}
.component-call-to-action-outer.-text_colour_light .inner,
.component-call-to-action.-text_colour_light .inner,
.component-call-to-action .link-container.-text_colour_light .inner,
.component-call-to-action .background-image.-text_colour_light .inner,
.component-call-to-action .overlay.-text_colour_light .inner,
.component-call-to-action .inner.-text_colour_light .inner {
  color: #fff;
}

@media (max-width: 767px) {
  .component-call-to-action-outer:not(.-fullwidth) {
    margin-left: 30px;
    margin-right: 30px;
  }
}

.component-call-to-action-outer {
  overflow: hidden;
  position: relative;
}
.component-call-to-action-outer .-cta-background {
  background-repeat: no-repeat;
  background-size: auto;
  left: -30%;
  transform: translateY(20%);
  height: 100%;
}
@media (min-width: 768px) {
  .component-call-to-action-outer .-cta-background {
    left: 0;
    transform: none;
    background-size: 250%;
    background-position: 15% 50%;
  }
}
@media (min-width: 992px) {
  .component-call-to-action-outer .-cta-background {
    background-size: 190%;
    background-position: 25% 60%;
  }
}
@media (min-width: 1200px) {
  .component-call-to-action-outer .-cta-background {
    background-size: 120%;
    background-position: center;
  }
}
.component-call-to-action-outer .-cta-background-mobile {
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100%;
}

.component-call-to-action .inner {
  display: block;
  position: relative;
  z-index: 5;
}
.component-call-to-action .heading p:last-child, .component-call-to-action .content p:last-child {
  margin-bottom: 0;
}
.component-call-to-action .background-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: scale(1.04, 1.04);
  transition: all 0.5s ease-out 0s;
  height: 100%;
}
.component-call-to-action .overlay {
  z-index: 1;
  background-color: rgba(0, 0, 0, 0);
}
.component-call-to-action .sub-heading {
  font-weight: 300;
  margin-top: 2%;
  margin-bottom: 0;
}
.component-call-to-action .link-container {
  overflow: hidden;
}
html.no-touch .component-call-to-action .link-container:hover .background-image {
  transform: scale(1.01, 1.01);
}
html.no-touch .component-call-to-action .link-container:hover .overlay {
  background-color: rgba(0, 0, 0, 0.1);
}
.component-call-to-action.-standard .heading, .component-call-to-action.-standard_post .heading, .component-call-to-action.-cta_banner .heading {
  margin: 0;
}
.component-call-to-action.-standard .inner, .component-call-to-action.-standard_post .inner, .component-call-to-action.-cta_banner .inner {
  padding: 20% 30px;
  /*
  @include sm{
    padding:52% 12% 12%;
  }

  @include md{
    padding:55% 8% 10%;
  }
  */
}
@media (min-width: 768px) {
  .component-call-to-action.-standard .inner, .component-call-to-action.-standard_post .inner, .component-call-to-action.-cta_banner .inner {
    padding: 10% 8%;
  }
}
.component-call-to-action.-standard .inner .link-inner, .component-call-to-action.-standard_post .inner .link-inner, .component-call-to-action.-cta_banner .inner .link-inner {
  position: relative;
}
.component-call-to-action.-standard .inner .link-inner .cta-arrow-link:after, .component-call-to-action.-standard_post .inner .link-inner .cta-arrow-link:after, .component-call-to-action.-cta_banner .inner .link-inner .cta-arrow-link:after {
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .component-call-to-action.-standard .text, .component-call-to-action.-standard_post .text, .component-call-to-action.-cta_banner .text {
    padding: 25px 0;
  }
}
@media (min-width: 768px) {
  .component-call-to-action.-standard .text, .component-call-to-action.-standard_post .text, .component-call-to-action.-cta_banner .text {
    padding-right: 0;
  }
}
@media (min-width: 992px) {
  .component-call-to-action.-standard .text, .component-call-to-action.-standard_post .text, .component-call-to-action.-cta_banner .text {
    padding-right: 45px;
  }
}
.component-call-to-action.-cta_banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  background-repeat: no-repeat;
  position: relative;
  height: auto;
  background-size: 80%;
  background-position: bottom right;
}
@media (max-width: 767px) {
  .component-call-to-action.-cta_banner {
    flex-direction: column-reverse;
  }
}
@media (min-width: 768px) {
  .component-call-to-action.-cta_banner {
    min-height: auto;
    max-width: 100%;
    background-size: 60%;
    background-position: -20% 100%;
    height: 50vw;
  }
}
@media (min-width: 992px) {
  .component-call-to-action.-cta_banner {
    height: 0;
    padding-bottom: 30%;
  }
}
@media (min-width: 1200px) {
  .component-call-to-action.-cta_banner {
    width: 81%;
    background-size: 50%;
    background-position: 0 100%;
  }
}
@media (min-width: 992px) {
  .component-call-to-action.-cta_banner.-has-image {
    padding-bottom: 52%;
  }
}
@media (min-width: 1200px) {
  .component-call-to-action.-cta_banner.-has-image {
    padding-bottom: 30%;
  }
}
.component-call-to-action.-cta_banner.-has-background-image {
  width: 100%;
}
@media (max-width: 767px) {
  .component-call-to-action.-cta_banner.-has-background-image .inner {
    padding: 0 8%;
  }
}
.component-call-to-action.-cta_banner.-has-background-image .inner .inner-inner {
  width: 70%;
  padding: 0;
}
@media (min-width: 768px) {
  .component-call-to-action.-cta_banner.-has-background-image .inner .inner-inner {
    width: 40%;
    padding: 25px 0;
    position: absolute;
    right: 60px;
  }
}
@media (min-width: 992px) {
  .component-call-to-action.-cta_banner.-has-background-image .inner .inner-inner {
    right: 40px;
    width: 42%;
  }
}
@media (min-width: 1200px) {
  .component-call-to-action.-cta_banner.-has-background-image .inner .inner-inner {
    right: 0;
    width: 35%;
    position: relative;
  }
}
.component-call-to-action.-cta_banner.-has-background-image .inner .inner-inner .text {
  padding-top: 50px;
  padding-bottom: 100%;
}
@media (min-width: 768px) {
  .component-call-to-action.-cta_banner.-has-background-image .inner .inner-inner .text {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.component-call-to-action.-cta_banner.-has-background-image .inner .inner-inner .text .content img {
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .component-call-to-action.-cta_banner.-has-background-image .inner .inner-inner .text .content img {
    max-width: none;
  }
}
.component-call-to-action.-cta_banner.-has-background-image .inner .inner-inner .text .btn {
  margin-left: 13%;
}
@media (min-width: 768px) {
  .component-call-to-action.-cta_banner.-has-background-image .inner .inner-inner .text .btn {
    margin-left: 30%;
  }
}
@media (min-width: 992px) {
  .component-call-to-action.-cta_banner.-has-background-image .inner .inner-inner .text .btn {
    margin-left: 0;
  }
}
.component-call-to-action.-cta_banner .inner {
  padding: 0 8%;
  width: 50%;
  display: flex;
  align-items: flex-start;
  right: 0;
  top: 0;
}
@media (max-width: 767px) {
  .component-call-to-action.-cta_banner .inner {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .component-call-to-action.-cta_banner .inner {
    position: absolute;
    align-items: center;
  }
}
@media (min-width: 992px) {
  .component-call-to-action.-cta_banner .inner {
    padding: 0 0 0 8%;
  }
}
.component-call-to-action.-cta_banner .inner.-fullwidth {
  width: 100%;
  justify-content: center;
  padding-left: 0;
}
.component-call-to-action.-cta_banner .inner.-fullwidth .text {
  text-align: center;
  padding: 0;
}
.component-call-to-action.-cta_banner .text {
  padding-top: 40px;
  padding-bottom: 90%;
}
@media (max-width: 767px) {
  .component-call-to-action.-cta_banner .text .btn {
    margin-bottom: 8%;
  }
}
@media (min-width: 768px) {
  .component-call-to-action.-cta_banner .text {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.component-call-to-action.-cta_banner .text .heading {
  padding-bottom: 22px;
}
.component-call-to-action.-cta_banner .text .content {
  padding-bottom: 30px;
}
@media (min-width: 992px) {
  .component-call-to-action.-standard_post .link-inner {
    width: 80%;
    background: rgba(255, 255, 255, 0.7);
    padding: 20px 40px 0 20px;
  }
}
.component-call-to-action.-standard_post .link-inner .heading {
  text-transform: uppercase;
  margin-bottom: 10px;
}
.component-call-to-action.-image-link a.inner {
  height: 100% !important;
  text-align: center;
}
.component-call-to-action.-image-link a.inner .image-inner {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.component-call-to-action.-image-link a.inner .image-inner .image-bg {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 40px;
  display: inline-block;
  width: 50%;
}
.component-call-to-action.-text-rollover .inner {
  margin: 7.5%;
  background-color: rgba(0, 0, 0, 0.2);
  transition: background-color 0.7s;
  padding: 10% 7.5%;
}
@media (min-width: 992px) {
  .component-call-to-action.-text-rollover .inner {
    margin: 5%;
  }
}
@media (min-width: 1500px) {
  .component-call-to-action.-text-rollover .inner {
    margin: 10%;
  }
}
.component-call-to-action.-text-rollover .inner .heading {
  transition: color 0.4s;
}
.component-call-to-action.-text-rollover .content {
  margin-top: 5%;
  line-height: 1.5em;
}
.component-call-to-action.-text-rollover .content .btn {
  margin-top: 10%;
}
html.no-touch .component-call-to-action.-text-rollover .content {
  opacity: 0;
  transition: all 0.4s;
  color: #3C2869;
}
html.no-touch .component-call-to-action.-text-rollover .inner:hover {
  background-color: rgba(255, 255, 255, 0.8);
}
html.no-touch .component-call-to-action.-text-rollover .inner:hover .heading {
  color: #3C2869;
}
html.no-touch .component-call-to-action.-text-rollover .inner:hover .content {
  opacity: 1;
}
html.touch .component-call-to-action.-image-rollover .overlay {
  background-color: rgba(20, 205, 200, 0.8);
}
.component-call-to-action.-image-rollover .inner {
  text-align: center;
  padding: 50% 30px;
}
@media (min-width: 768px) {
  .component-call-to-action.-image-rollover .inner {
    padding: 35% 8%;
  }
  html.no-touch .component-call-to-action.-image-rollover .inner {
    opacity: 0;
    transition: opacity 1s;
  }
}
.component-call-to-action.-image-rollover .link-container .overlay {
  opacity: 0;
  transition: opacity 1s;
}
html.no-touch .component-call-to-action.-image-rollover .link-container:hover .inner {
  opacity: 1;
}
html.no-touch .component-call-to-action.-image-rollover .link-container:hover .overlay {
  opacity: 0.8;
}
html.browser-lt-edge .component-call-to-action.-image-rollover .background-image, html.browser-lt-edge .component-call-to-action.-image-rollover .overlay {
  height: 110%;
}
.component-call-to-action.-boxed {
  height: 100vh;
  position: relative;
}
@media (max-width: 767px) {
  .component-call-to-action.-boxed {
    padding: 30px;
  }
}
.component-call-to-action.-boxed a {
  color: #3C286D;
}
.component-call-to-action.-boxed a:hover {
  color: #3C286D;
}
.component-call-to-action.-boxed .inner {
  width: 100%;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  transition-delay: 1s;
  height: 47vh;
  transition: transform 1s;
  transform: translate(-50%, -50%) scale(0.95, 0.95);
}
.component-call-to-action.-boxed .inner.animated {
  transform: translate(-50%, -50%) scale(1, 1);
}
.component-call-to-action.-boxed .inner.-out {
  animation-name: fadeZoomOut !important;
  animation-duration: 0.5s;
}
@keyframes fadeZoomOut {
  from {
    transform: translate(-50%, -50%) scale(1, 1);
    opacity: 1;
  }
  to {
    transform: translate(-50%, -50%) scale(0.7, 0.7);
    opacity: 0;
  }
}
@media (min-width: 768px) {
  .component-call-to-action.-boxed .inner {
    height: 47vh;
    width: 53vw;
  }
}
.component-call-to-action.-boxed .inner .inner-inner {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  padding: 10% 15%;
}
.component-call-to-action.-boxed .inner .inner-inner .heading {
  font-family: "PxGrotesk";
  font-weight: 700;
  font-size: 45px;
  font-size: 2.34375vw;
  margin-bottom: 10%;
}
@media (max-width: 1024px) {
  .component-call-to-action.-boxed .inner .inner-inner .heading {
    font-size: 24px;
  }
}
@media (min-width: 1920px) {
  .component-call-to-action.-boxed .inner .inner-inner .heading {
    font-size: 45px;
  }
}
@media (min-width: 768px) {
  .component-call-to-action.-boxed .inner .inner-inner .heading {
    margin-bottom: 8%;
  }
}
.component-call-to-action.-boxed.-full .inner .inner-inner .heading {
  font-size: 55px;
  font-size: 2.8645833333vw;
  margin-bottom: 4%;
}
@media (max-width: 837.8181818182px) {
  .component-call-to-action.-boxed.-full .inner .inner-inner .heading {
    font-size: 24px;
  }
}
@media (min-width: 1920px) {
  .component-call-to-action.-boxed.-full .inner .inner-inner .heading {
    font-size: 55px;
  }
}
.component-call-to-action.-boxed.-full .inner .inner-inner .text {
  line-height: 1em;
  margin-bottom: 5%;
}
.component-call-to-action.-boxed.-half {
  height: 85vh;
}
.component-call-to-action.-boxed.-half .inner .inner-inner .heading {
  font-size: 55px;
  font-size: 2.8645833333vw;
  margin-bottom: 4%;
}
@media (max-width: 837.8181818182px) {
  .component-call-to-action.-boxed.-half .inner .inner-inner .heading {
    font-size: 24px;
  }
}
@media (min-width: 1920px) {
  .component-call-to-action.-boxed.-half .inner .inner-inner .heading {
    font-size: 55px;
  }
}
.component-call-to-action.-boxed.-half .inner .inner-inner .text {
  line-height: 1em;
  margin-bottom: 5%;
}
.component-call-to-action.-boxed_second .inner-inner {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.component-call-to-action.-boxed_second, .component-call-to-action.-boxed_third {
  height: 100vh;
  position: relative;
}
.component-call-to-action.-boxed_second .inner-inner, .component-call-to-action.-boxed_third .inner-inner {
  display: flex;
  -webkit-flex-flow: row wrap;
  justify-content: space-around;
  align-items: center;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .component-call-to-action.-boxed_second .inner-inner, .component-call-to-action.-boxed_third .inner-inner {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .component-call-to-action.-boxed_second .inner-inner .btn, .component-call-to-action.-boxed_third .inner-inner .btn {
    margin-top: 30px;
  }
}
@media (min-width: 768px) {
  .component-call-to-action.-boxed_second .inner-inner .content, .component-call-to-action.-boxed_third .inner-inner .content {
    max-width: 50%;
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .component-call-to-action.-boxed_second, .component-call-to-action.-boxed_third {
    padding: 30px;
  }
}
.component-call-to-action.-boxed_second .inner, .component-call-to-action.-boxed_third .inner {
  width: 100%;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  transition-delay: 1s;
  height: 47vh;
  transition: transform 1s;
  transform: translate(-50%, -50%) scale(0.95, 0.95);
}
.component-call-to-action.-boxed_second .inner.animated, .component-call-to-action.-boxed_third .inner.animated {
  transform: translate(-50%, -50%) scale(1, 1);
}
.component-call-to-action.-boxed_second .inner.-out, .component-call-to-action.-boxed_third .inner.-out {
  animation-name: fadeZoomOut !important;
  animation-duration: 0.5s;
}
@keyframes fadeZoomOut {
  from {
    transform: translate(-50%, -50%) scale(1, 1);
    opacity: 1;
  }
  to {
    transform: translate(-50%, -50%) scale(0.7, 0.7);
    opacity: 0;
  }
}
@media (min-width: 768px) {
  .component-call-to-action.-boxed_second .inner, .component-call-to-action.-boxed_third .inner {
    height: 47vh;
    width: 53vw;
  }
}
.component-call-to-action.-boxed_second .inner .inner-inner, .component-call-to-action.-boxed_third .inner .inner-inner {
  text-align: center;
  display: flex;
  -webkit-flex-flow: row wrap;
  justify-content: space-around;
  align-items: center;
  padding: 0 !important;
}
@media (min-width: 768px) {
  .component-call-to-action.-boxed_second .inner .inner-inner, .component-call-to-action.-boxed_third .inner .inner-inner {
    text-align: left;
  }
}
.component-call-to-action.-boxed_second .inner .inner-inner .heading, .component-call-to-action.-boxed_third .inner .inner-inner .heading {
  font-family: "PxGrotesk";
  font-weight: 400;
  font-size: 45px;
  font-size: 2.34375vw;
  margin-bottom: 10%;
}
@media (max-width: 1024px) {
  .component-call-to-action.-boxed_second .inner .inner-inner .heading, .component-call-to-action.-boxed_third .inner .inner-inner .heading {
    font-size: 24px;
  }
}
@media (min-width: 1920px) {
  .component-call-to-action.-boxed_second .inner .inner-inner .heading, .component-call-to-action.-boxed_third .inner .inner-inner .heading {
    font-size: 45px;
  }
}
@media (min-width: 768px) {
  .component-call-to-action.-boxed_second .inner .inner-inner .heading, .component-call-to-action.-boxed_third .inner .inner-inner .heading {
    margin-bottom: 8%;
  }
}
@media (max-width: 767px) {
  .component-call-to-action.-boxed_second .inner .inner-inner, .component-call-to-action.-boxed_third .inner .inner-inner {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .component-call-to-action.-boxed_second .inner .inner-inner .btn, .component-call-to-action.-boxed_third .inner .inner-inner .btn {
    margin-top: 30px;
  }
}
@media (min-width: 768px) {
  .component-call-to-action.-boxed_second .inner .inner-inner .content, .component-call-to-action.-boxed_third .inner .inner-inner .content {
    max-width: 50%;
    padding: 30px;
  }
}
.component-call-to-action.-boxed_second.-full .inner .inner-inner .heading, .component-call-to-action.-boxed_third.-full .inner .inner-inner .heading {
  font-size: 55px;
  font-size: 2.8645833333vw;
  margin-bottom: 4%;
}
@media (max-width: 837.8181818182px) {
  .component-call-to-action.-boxed_second.-full .inner .inner-inner .heading, .component-call-to-action.-boxed_third.-full .inner .inner-inner .heading {
    font-size: 24px;
  }
}
@media (min-width: 1920px) {
  .component-call-to-action.-boxed_second.-full .inner .inner-inner .heading, .component-call-to-action.-boxed_third.-full .inner .inner-inner .heading {
    font-size: 55px;
  }
}
.component-call-to-action.-boxed_second.-full .inner .inner-inner .text, .component-call-to-action.-boxed_third.-full .inner .inner-inner .text {
  line-height: 1em;
  margin-bottom: 5%;
}
.component-call-to-action.-boxed_second.-half, .component-call-to-action.-boxed_third.-half {
  height: 85vh;
}
.component-call-to-action.-boxed_second.-half .inner .inner-inner .heading, .component-call-to-action.-boxed_third.-half .inner .inner-inner .heading {
  font-size: 45px;
  font-size: 2.34375vw;
  margin-bottom: 4%;
}
@media (max-width: 1024px) {
  .component-call-to-action.-boxed_second.-half .inner .inner-inner .heading, .component-call-to-action.-boxed_third.-half .inner .inner-inner .heading {
    font-size: 24px;
  }
}
@media (min-width: 1920px) {
  .component-call-to-action.-boxed_second.-half .inner .inner-inner .heading, .component-call-to-action.-boxed_third.-half .inner .inner-inner .heading {
    font-size: 45px;
  }
}
.component-call-to-action.-boxed_second.-half .inner .inner-inner .text, .component-call-to-action.-boxed_third.-half .inner .inner-inner .text {
  line-height: 1em;
  margin-bottom: 5%;
}
.component-call-to-action.-boxed_third .inner {
  overflow: hidden;
  height: auto !important;
}
.component-call-to-action.-boxed_third .inner .inner-inner {
  overflow: hidden;
}
.component-call-to-action.-boxed_third .inner .inner-inner img {
  max-width: 50%;
}
.component-call-to-action.-boxed_third .inner .inner-inner .content {
  padding: 0 7%;
}
.component-call-to-action.-boxed_third .inner .inner-inner .content .text {
  line-height: 2em !important;
}
.component-call-to-action.-fullwidth {
  height: 100vh;
  position: relative;
  padding: 30px;
}
.component-call-to-action.-fullwidth .inner {
  width: 100%;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  transition-delay: 1s;
  height: 302px;
  transition: transform 1s;
  transform: translate(-50%, -50%) scale(0.95, 0.95);
}
.component-call-to-action.-fullwidth .inner.animated {
  transform: translate(-50%, -50%) scale(1, 1);
}
.component-call-to-action.-fullwidth .inner.-out {
  animation-name: fadeZoomOut !important;
  animation-duration: 0.5s;
}
@keyframes fadeZoomOut {
  from {
    transform: translate(-50%, -50%) scale(1, 1);
    opacity: 1;
  }
  to {
    transform: translate(-50%, -50%) scale(0.7, 0.7);
    opacity: 0;
  }
}
@media (min-width: 768px) {
  .component-call-to-action.-fullwidth .inner {
    height: 457px;
    width: 457px;
  }
}
@media (min-width: 1500px) {
  .component-call-to-action.-fullwidth .inner {
    width: 56vw;
  }
}
.component-call-to-action.-fullwidth .inner .inner-inner {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  padding: 10%;
}
.component-call-to-action.-fullwidth .inner .inner-inner .heading {
  font-family: "PxGrotesk";
  font-weight: 700;
  font-size: 60px;
  font-size: 3.125vw;
  margin-bottom: 5%;
}
@media (max-width: 800px) {
  .component-call-to-action.-fullwidth .inner .inner-inner .heading {
    font-size: 25px;
  }
}
@media (min-width: 1920px) {
  .component-call-to-action.-fullwidth .inner .inner-inner .heading {
    font-size: 60px;
  }
}
@media (min-width: 768px) {
  .component-call-to-action.-fullwidth .inner .inner-inner .heading {
    margin-bottom: 3%;
  }
}
@media (min-width: 768px) {
  .component-call-to-action.-fullwidth .inner .inner-inner .btn {
    margin-top: 35px;
  }
}
.component-call-to-action.-bottom {
  text-align: center;
}
.component-call-to-action.-bottom .heading {
  margin: 0;
}
.component-call-to-action.-bottom .heading3, .component-call-to-action.-bottom .component-text.-text_content h3, .component-text.-text_content .component-call-to-action.-bottom h3 {
  margin: 7% 0 9%;
}
@media (min-width: 768px) {
  .component-call-to-action.-bottom .heading3, .component-call-to-action.-bottom .component-text.-text_content h3, .component-text.-text_content .component-call-to-action.-bottom h3 {
    margin: 7% 0;
  }
}
.component-call-to-action.-bottom .sub-heading {
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 20px 0;
}
@media (min-width: 768px) {
  .component-call-to-action.-bottom .sub-heading {
    margin-bottom: 12%;
    margin-top: 4%;
  }
}
.component-call-to-action.-bottom .inner {
  padding: 15% 10%;
}
@media (min-width: 768px) {
  .component-call-to-action.-bottom .inner {
    padding: 15% 10% 17%;
  }
}
.component-call-to-action.-bottom .btn {
  margin-top: 1%;
}
.component-call-to-action.-bottom img {
  height: auto;
  width: 83%;
  margin: 4% 0;
}
@media (min-width: 768px) {
  .component-call-to-action.-bottom img {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .component-call-to-action.-bottom img {
    width: auto;
    max-width: 100%;
  }
}
.component-call-to-action.-image-grid {
  width: 100vw;
  padding-top: 160%;
  min-height: 768px;
  position: relative;
}
@media (min-width: 768px) {
  .component-call-to-action.-image-grid {
    min-height: 590px;
    padding-top: 76%;
  }
}
@media (min-width: 992px) {
  .component-call-to-action.-image-grid {
    padding-top: 58%;
  }
}
.component-call-to-action.-image-grid .images-container {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.component-call-to-action.-image-grid .images-container .image-container {
  height: 100%;
  background-size: cover;
}
.component-call-to-action.-image-grid .images-container .image-container.-small {
  min-height: 200px;
}
@media (min-width: 768px) {
  .component-call-to-action.-image-grid .images-container .image-container.-small {
    display: none;
  }
}
@media (min-width: 992px) {
  .component-call-to-action.-image-grid .images-container .image-container.-small {
    display: block;
    width: 33.3333%;
  }
}
.component-call-to-action.-image-grid .images-container .image-container.-wide {
  display: none;
}
@media (min-width: 768px) {
  .component-call-to-action.-image-grid .images-container .image-container.-wide {
    display: block;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .component-call-to-action.-image-grid .images-container .image-container.-wide {
    width: 66.6666%;
  }
}
.component-call-to-action.-image-grid .images-container .image-container.-tall {
  height: 100%;
  min-height: 400px;
}
.component-call-to-action.-image-grid .images-container .left-section {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .component-call-to-action.-image-grid .images-container .left-section {
    width: 66.6666%;
  }
}
@media (min-width: 992px) {
  .component-call-to-action.-image-grid .images-container .left-section {
    width: 75%;
  }
}
.component-call-to-action.-image-grid .images-container .left-section > div {
  display: flex;
  width: 100%;
}
.component-call-to-action.-image-grid .images-container .left-section > div.top-row {
  height: 50%;
}
.component-call-to-action.-image-grid .images-container .left-section > div.xs-image-row {
  height: 65%;
}
.component-call-to-action.-image-grid .images-container .left-section > div.bottom-row {
  height: 35%;
}
@media (min-width: 768px) {
  .component-call-to-action.-image-grid .images-container .left-section > div.bottom-row {
    height: 50%;
  }
}
.component-call-to-action.-image-grid .images-container .left-section > div.bottom-row .content-container {
  background-color: #6E7DFF;
  width: 100%;
  padding: 0 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .component-call-to-action.-image-grid .images-container .left-section > div.bottom-row .content-container {
    padding: 0 14%;
    width: 66.6666%;
  }
}
@media (min-width: 1200px) {
  .component-call-to-action.-image-grid .images-container .left-section > div.bottom-row .content-container {
    padding: 0 12%;
  }
}
@media (min-width: 1500px) {
  .component-call-to-action.-image-grid .images-container .left-section > div.bottom-row .content-container {
    padding: 0 14%;
  }
}
@media (max-width: 767px) {
  .component-call-to-action.-image-grid .images-container .left-section > div.bottom-row .content-container .heading {
    margin-top: 0;
  }
}
.component-call-to-action.-image-grid .images-container .left-section > div.bottom-row .content-container .bottom-row-content {
  margin-top: 8px;
}
.component-call-to-action.-image-grid .images-container .left-section > div.bottom-row .content-container .btn {
  margin-top: 20px;
}
@media (min-width: 1200px) {
  .component-call-to-action.-image-grid .images-container .left-section > div.bottom-row .content-container .btn {
    margin-top: 22px;
  }
}
.component-call-to-action.-image-grid .images-container .left-section > div.bottom-row .image-container {
  display: none;
}
@media (min-width: 992px) {
  .component-call-to-action.-image-grid .images-container .left-section > div.bottom-row .image-container {
    display: block;
  }
}
.component-call-to-action.-image-grid .images-container .left-section .xs-image-row {
  display: flex;
  flex-direction: row;
}
@media (min-width: 768px) {
  .component-call-to-action.-image-grid .images-container .left-section .xs-image-row {
    display: none;
  }
}
.component-call-to-action.-image-grid .images-container .left-section .xs-image-row .image-container {
  width: 100%;
}
.component-call-to-action.-image-grid .images-container .left-section .xs-image-row .small-images {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.component-call-to-action.-image-grid .images-container .left-section .xs-image-row .image-full {
  width: 50%;
  height: 100%;
}
.component-call-to-action.-image-grid .images-container .right-section {
  display: none;
}
@media (min-width: 768px) {
  .component-call-to-action.-image-grid .images-container .right-section {
    display: block;
    width: 33.3333%;
  }
}
@media (min-width: 992px) {
  .component-call-to-action.-image-grid .images-container .right-section {
    width: 25%;
  }
}
.component-call-to-action.-image-grid .images-container .right-section .image-full {
  height: 100%;
}

.full-width-layout .component-big-link.-standard .inner {
  padding: 10%;
}
.full-width-layout .component-big-link.-standard .inner .link-inner .heading {
  width: 80%;
  float: left;
}

.fifty-fifty-layout .component-call-to-action.-cta_banner {
  width: 100% !important;
  height: auto;
  background-size: 80%;
  background-position: -10% 110%;
}
@media (min-width: 768px) {
  .fifty-fifty-layout .component-call-to-action.-cta_banner {
    height: auto;
  }
}
@media (min-width: 992px) {
  .fifty-fifty-layout .component-call-to-action.-cta_banner {
    padding-bottom: 60%;
    background-size: 60%;
    background-position: -10% 100%;
  }
}
.fifty-fifty-layout .component-call-to-action.-cta_banner .inner {
  position: relative;
  width: 100%;
}
@media (min-width: 992px) {
  .fifty-fifty-layout .component-call-to-action.-cta_banner .inner {
    width: 50%;
    position: absolute;
  }
}
.fifty-fifty-layout .component-call-to-action.-cta_banner .inner .inner-inner {
  width: 100%;
}
.fifty-fifty-layout .component-call-to-action.-cta_banner .inner .inner-inner .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 90%;
}
@media (min-width: 992px) {
  .fifty-fifty-layout .component-call-to-action.-cta_banner .inner .inner-inner .text {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.fifty-fifty-layout .component-call-to-action.-cta_banner .inner .inner-inner .text h2 {
  font-size: 25px;
}
@media (min-width: 992px) {
  .fifty-fifty-layout .component-call-to-action.-cta_banner .inner .inner-inner .text h2 {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .fifty-fifty-layout .component-call-to-action.-cta_banner .inner .inner-inner .text h2 {
    font-size: 25px;
  }
}
@media (min-width: 1500px) {
  .fifty-fifty-layout .component-call-to-action.-cta_banner .inner .inner-inner .text h2 {
    font-size: 35px;
  }
}

body.page-template-news-events-webinars .component h2.heading2, body.page-template-news-events-webinars .component .component-text.-text_content h2, .component-text.-text_content body.page-template-news-events-webinars .component h2 {
  padding: 0 0 0 20px;
  text-align: left;
}
body.page-template-news-events-webinars .component .filter-form {
  display: none;
}
body.page-template-news-events-webinars .-newsletter_signup h2.heading2, body.page-template-news-events-webinars .-newsletter_signup .component-text.-text_content h2, .component-text.-text_content body.page-template-news-events-webinars .-newsletter_signup h2 {
  text-align: center;
}
body.page-template-news-events-webinars .-text_heading h2.heading2, body.page-template-news-events-webinars .-text_heading .component-text.-text_content h2, .component-text.-text_content body.page-template-news-events-webinars .-text_heading h2 {
  text-align: center;
}
body.page-template-news-events-webinars .-featured-card .meta {
  display: none;
}
body.page-template-news-events-webinars .-featured-card .meta .date {
  display: none;
}

.component-cards {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .component-cards {
    flex-wrap: unset;
  }
}
@media (min-width: 768px) {
  .component-cards {
    flex-wrap: unset;
  }
}
@media (min-width: 1200px) {
  .component-cards {
    flex-wrap: wrap;
  }
}
.component-cards .ajax-infinite-scroll-marker {
  display: inline-block;
  height: 2px;
  width: 2px;
}
.component-cards > .row {
  display: flex;
  flex: 0 0 100%;
  flex-wrap: wrap;
}
.component-cards .filter-terms .btn {
  display: block;
}
@media (min-width: 768px) {
  .component-cards .filter-terms .btn {
    display: inline-block;
  }
}
@media (min-width: 768px) {
  .component-cards .isotope-container {
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .component-cards .isotope-container .item {
    position: static !important;
  }
}
@media (max-width: 767px) {
  .component-cards .isotope-container .item .tile {
    padding: 30px 15px;
  }
}
.component-cards .item article {
  height: 100%;
}
.component-cards .pagination-container {
  text-align: center;
  margin: 0 auto;
}
.component-cards .pagination-container i {
  color: #fff;
}

.component-cards .heading {
  display: block;
  width: 100%;
  text-align: center;
}
.component-cards.-cards_cards, .component-cards.-cards_person, .component-cards.-cards_location {
  padding: 30px;
}
@media (min-width: 768px) {
  .component-cards.-cards_cards, .component-cards.-cards_person, .component-cards.-cards_location {
    padding-top: 5%;
    padding-bottom: 6%;
  }
}
.component-cards.-cards_cards .item, .component-cards.-cards_person .item, .component-cards.-cards_location .item {
  padding: 10px;
  margin: 0;
}
.component-cards.-cards_cards .item article, .component-cards.-cards_person .item article, .component-cards.-cards_location .item article {
  width: 100%;
  display: block;
  margin: 2% 0;
  background: #fff;
  overflow: hidden;
  position: relative;
  padding-bottom: 10px;
  transition: 0.2s ease-out;
  border-radius: 4px;
}
.component-cards.-cards_cards .item article a,
.component-cards.-cards_cards .item article a:visited, .component-cards.-cards_person .item article a,
.component-cards.-cards_person .item article a:visited, .component-cards.-cards_location .item article a,
.component-cards.-cards_location .item article a:visited {
  display: block;
  color: #1c252c;
}
.component-cards.-cards_cards .item article a figure,
.component-cards.-cards_cards .item article a:visited figure, .component-cards.-cards_person .item article a figure,
.component-cards.-cards_person .item article a:visited figure, .component-cards.-cards_location .item article a figure,
.component-cards.-cards_location .item article a:visited figure {
  padding-bottom: 65%;
  position: relative;
  background-position: center center;
  background-size: cover;
}
.component-cards.-cards_cards .item article a .title,
.component-cards.-cards_cards .item article a .meta,
.component-cards.-cards_cards .item article a .content,
.component-cards.-cards_cards .item article a:visited .title,
.component-cards.-cards_cards .item article a:visited .meta,
.component-cards.-cards_cards .item article a:visited .content, .component-cards.-cards_person .item article a .title,
.component-cards.-cards_person .item article a .meta,
.component-cards.-cards_person .item article a .content,
.component-cards.-cards_person .item article a:visited .title,
.component-cards.-cards_person .item article a:visited .meta,
.component-cards.-cards_person .item article a:visited .content, .component-cards.-cards_location .item article a .title,
.component-cards.-cards_location .item article a .meta,
.component-cards.-cards_location .item article a .content,
.component-cards.-cards_location .item article a:visited .title,
.component-cards.-cards_location .item article a:visited .meta,
.component-cards.-cards_location .item article a:visited .content {
  padding: 10px 20px;
  display: block;
}
.component-cards.-cards_cards .item article a .title,
.component-cards.-cards_cards .item article a:visited .title, .component-cards.-cards_person .item article a .title,
.component-cards.-cards_person .item article a:visited .title, .component-cards.-cards_location .item article a .title,
.component-cards.-cards_location .item article a:visited .title {
  overflow: hidden;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0;
  padding-bottom: 55px;
}
.component-cards.-cards_cards .item article a .meta,
.component-cards.-cards_cards .item article a:visited .meta, .component-cards.-cards_person .item article a .meta,
.component-cards.-cards_person .item article a:visited .meta, .component-cards.-cards_location .item article a .meta,
.component-cards.-cards_location .item article a:visited .meta {
  height: auto;
  overflow: hidden;
  font-weight: 300;
  position: absolute;
  bottom: 0;
  color: #AEA3C0;
}
.component-cards.-cards_cards .item article a .author,
.component-cards.-cards_cards .item article a:visited .author, .component-cards.-cards_person .item article a .author,
.component-cards.-cards_person .item article a:visited .author, .component-cards.-cards_location .item article a .author,
.component-cards.-cards_location .item article a:visited .author {
  float: right;
  display: block;
}
.component-cards.-cards_person .person {
  cursor: pointer;
}
.component-cards.-cards_cards {
  background-color: #FAF5FA;
}
.component-cards.-cards_cards [data-pnp-animate].animated hr,
.component-cards.-cards_cards html.touch hr {
  width: 100% !important;
}
.component-cards.-cards_cards .filter-form form {
  display: inline-block;
}
.component-cards.-cards_cards .filter-form form .selectric-wrapper .label {
  min-width: 150px;
}
@media (max-width: 767px) {
  .component-cards.-cards_cards .item {
    padding: 0 0 30px 0;
  }
}
.component-cards.-cards_cards .item .title {
  padding: 0;
  line-height: 1.4em;
}
@media (max-width: 767px) {
  .component-cards.-cards_cards .item .title {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (min-width: 768px) {
  .component-cards.-cards_cards .item .title {
    padding-top: 1em !important;
  }
}
.component-cards.-cards_cards .item .content {
  position: static;
}
.component-cards.-cards_cards .item .meta {
  padding: 0 1.5em 1.5em 1.5em !important;
}
@media (max-width: 767px) {
  .component-cards.-cards_cards .item .meta {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (min-width: 768px) {
  .component-cards.-cards_cards .item {
    padding: 20px;
  }
}
.component-cards.-cards_cards .item.-featured-card {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .component-cards.-cards_cards .item.-featured-card article {
    padding-bottom: 0;
  }
  .component-cards.-cards_cards .item.-featured-card article a {
    height: 100%;
  }
  .component-cards.-cards_cards .item.-featured-card article a .bg {
    padding-bottom: 0;
    display: inline-block;
    width: 65.4%;
    height: 100%;
    float: left;
  }
  .component-cards.-cards_cards .item.-featured-card article a .content {
    display: inline-block;
    width: 34.6%;
    height: 100%;
    float: left;
    min-height: 250px;
  }
}
@media (min-width: 768px) and (min-width: 1200px) {
  .component-cards.-cards_cards .item.-featured-card article a .content {
    min-height: 325px;
  }
}
@media (min-width: 768px) {
  .component-cards.-cards_cards .item.-featured-card article a .content .title {
    padding-top: 2em;
    padding-bottom: 3em;
    font-size: 35px;
    font-size: 1.8229166667vw;
  }
}
@media (min-width: 768px) and (max-width: 932.5714285714px) {
  .component-cards.-cards_cards .item.-featured-card article a .content .title {
    font-size: 17px;
  }
}
@media (min-width: 768px) and (min-width: 1920px) {
  .component-cards.-cards_cards .item.-featured-card article a .content .title {
    font-size: 35px;
  }
}
@media (min-width: 768px) {
  .component-cards.-cards_person {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .component-cards.-cards_person .item {
    margin: 0 auto;
  }
}
.component-cards.-cards_person .bg {
  position: relative;
}
.component-cards.-cards_person .bg .img-responsive {
  width: 100%;
}
.component-cards.-cards_person .bg .rollover-text {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 90, 65, 0.6);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.component-cards.-cards_person .bg .rollover-text .inner {
  color: #fff;
  z-index: 1;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  font-weight: 400;
  width: 80%;
}
.component-cards.-cards_person .bg .rollover-text .inner p {
  line-height: 1.3em;
}
html.no-touch .component-cards.-cards_person .bg:hover .rollover-text {
  opacity: 1;
  visibility: visible;
}
.component-cards.-cards_person .content .title {
  font-weight: 700;
  margin-bottom: 0;
}
.component-cards.-cards_person .content .sub-title {
  font-weight: 400;
}
@media (min-width: 768px) {
  .component-cards.-cards_person .item {
    margin-bottom: 1.5%;
  }
}
@media (min-width: 768px) {
  .component-cards.-cards_location {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .component-cards.-cards_location .item {
    margin: 0 auto;
  }
}
.component-cards.-cards_location .content {
  padding-bottom: 10%;
  line-height: 1.4em;
}
.component-cards.-cards_location .content .title {
  font-weight: 700;
  margin-bottom: 5%;
}
.-cards_blog {
  padding: 60px 0;
}
@media (min-width: 992px) {
  .-cards_blog {
    padding: 80px 0;
  }
}
.-cards_blog .heading {
  margin-bottom: 0;
}
.-cards_blog .component-cards_blog {
  width: 100%;
  margin: 35px 0;
}
@media (min-width: 992px) {
  .-cards_blog .component-cards_blog {
    margin: 40px 0;
  }
}
@media (min-width: 1500px) {
  .-cards_blog .component-cards_blog {
    margin: 60px 0;
  }
}
.-cards_blog .component-cards_blog .row {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .-cards_blog .component-cards_blog .row {
    margin: 0 -15px;
    flex-direction: row;
  }
}
@media (max-width: 767px) {
  .-cards_blog .component-cards_blog .row > div {
    padding-left: 0;
    padding-right: 0;
  }
}
.-cards_blog .component-cards_blog .row .main-post {
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 300px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .-cards_blog .component-cards_blog .row .main-post {
    min-height: 0;
    margin-bottom: 0;
  }
}
.-cards_blog .component-cards_blog .row .main-post .title-content {
  width: 100%;
  height: 100%;
  padding: 7.5%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
  color: #fff;
  position: absolute;
}
.-cards_blog .component-cards_blog .row .main-post .title-content .heading {
  text-align: left;
}
.-cards_blog .component-cards_blog .row .main-post .gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.-cards_blog .component-cards_blog .row .main-post .gradient-overlay.-bg-colour-green-vungle {
  background-image: linear-gradient(to top, #14cdc8, rgba(20, 205, 200, 0));
}
.-cards_blog .component-cards_blog .row .main-post .gradient-overlay.-bg-colour-red-vungle {
  background-image: linear-gradient(to top, #ff5a41, rgba(255, 90, 65, 0));
}
.-cards_blog .component-cards_blog .row .main-post .gradient-overlay.-bg-colour-blue-vungle {
  background-image: linear-gradient(to top, #6e7dff, rgba(110, 125, 255, 0));
}
.-cards_blog .component-cards_blog .row .main-post .gradient-overlay.-bg-colour-pink-vungle {
  background-image: linear-gradient(to top, #ffd2e1, rgba(255, 210, 225, 0));
}
.-cards_blog .component-cards_blog .row .main-post .gradient-overlay.-bg-colour-yellow-vungle {
  background-image: linear-gradient(to top, gold, rgba(255, 215, 0, 0));
}
.-cards_blog .component-cards_blog .row .main-post .gradient-overlay.-bg-colour-purple-vungle {
  background-image: linear-gradient(to top, #3c2869, rgba(60, 40, 105, 0));
}
.-cards_blog .component-cards_blog .row .main-post .gradient-overlay.-bg-colour-lightblue-vungle {
  background-image: linear-gradient(to top, #cdf5ff, rgba(205, 245, 255, 0));
}
.-cards_blog .component-cards_blog .row .secondary-posts {
  display: flex;
  flex-direction: column;
}
.-cards_blog .component-cards_blog .row .secondary-posts .secondary-post {
  display: flex;
  flex-direction: row;
}
.-cards_blog .component-cards_blog .row .secondary-posts .secondary-post:not(:first-child) {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .-cards_blog .component-cards_blog .row .secondary-posts .secondary-post:not(:first-child) {
    margin-top: 30px;
  }
}
.-cards_blog .component-cards_blog .row .secondary-posts .secondary-post .title-content {
  background-color: #3C2869;
  padding: 7.5%;
  width: 100%;
}
@media (min-width: 1200px) {
  .-cards_blog .component-cards_blog .row .secondary-posts .secondary-post .title-content {
    width: 66.6666%;
    display: flex;
    padding: 0 7.5%;
    flex-direction: column;
    justify-content: center;
  }
}
.-cards_blog .component-cards_blog .row .secondary-posts .secondary-post .title-content .heading {
  font-size: 25px;
  font-size: 1.3020833333vw;
  color: #fff;
  text-align: left;
}
@media (max-width: 1382.4px) {
  .-cards_blog .component-cards_blog .row .secondary-posts .secondary-post .title-content .heading {
    font-size: 18px;
  }
}
@media (min-width: 1920px) {
  .-cards_blog .component-cards_blog .row .secondary-posts .secondary-post .title-content .heading {
    font-size: 25px;
  }
}
.-cards_blog .component-cards_blog .row .secondary-posts .secondary-post .title-content .date {
  font-size: 18px;
  font-size: 0.9375vw;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 20px;
  display: block;
}
@media (max-width: 1706.6666666667px) {
  .-cards_blog .component-cards_blog .row .secondary-posts .secondary-post .title-content .date {
    font-size: 16px;
  }
}
@media (min-width: 1920px) {
  .-cards_blog .component-cards_blog .row .secondary-posts .secondary-post .title-content .date {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .-cards_blog .component-cards_blog .row .secondary-posts .secondary-post .title-content .date {
    margin-top: 40px;
  }
}
.-cards_blog .component-cards_blog .row .secondary-posts .secondary-post .post-image {
  background-size: cover;
  background-position: center;
  display: none;
}
@media (min-width: 1200px) {
  .-cards_blog .component-cards_blog .row .secondary-posts .secondary-post .post-image {
    width: 33.3333%;
    display: block;
    height: 0;
    padding-bottom: 33.3333%;
  }
}
.-cards_blog .component-cards_blog .row .main-post,
.-cards_blog .component-cards_blog .row .secondary-post {
  display: block;
  transition: all 0.5s;
}
.-cards_blog .component-cards_blog .row .main-post:hover,
.-cards_blog .component-cards_blog .row .secondary-post:hover {
  box-shadow: 2px 2px 4px 0 rgba(107, 107, 107, 0.4);
}
.-cards_blog a.btn {
  margin: 0 auto;
}

.component-cards.-cards_grid .row {
  padding: 30px;
}
@media (min-width: 768px) {
  .component-cards.-cards_grid .row {
    padding-top: 5%;
    padding-bottom: 5%;
  }
}
.component-cards.-cards_grid .row .item {
  padding: 0;
}
.component-cards.-cards_grid .row .item > a {
  height: 100%;
}
.component-cards.-cards_grid .row .item .tile {
  position: relative;
  height: 100%;
  padding: 20% 15px;
}
.component-cards.-cards_grid .row .item .tile:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: background-color 0.35s;
  background-color: rgba(0, 0, 0, 0.6);
}
@media (min-width: 768px) {
  .component-cards.-cards_grid .row .item .tile {
    padding: 0;
  }
}
.component-cards.-cards_grid .row .item .tile .inner {
  position: relative;
  text-align: center;
  height: 100%;
  padding: 0;
}
@media (min-width: 768px) {
  .component-cards.-cards_grid .row .item .tile .inner {
    padding: 20% 5%;
  }
}
@media (min-width: 992px) {
  .component-cards.-cards_grid .row .item .tile .inner {
    padding: 30% 12%;
  }
}
@media (min-width: 768px) {
  .component-cards.-cards_grid .row .item .tile .inner .inner-middle {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
  }
}
.component-cards.-cards_grid .row .item .tile .inner .inner-middle, .component-cards.-cards_grid .row .item .tile .inner .inner-middle .grid-heading {
  color: #fff;
  text-align: left;
}
.component-cards.-cards_grid .row .item .tile .inner .inner-middle .content {
  position: absolute;
  left: 0;
  margin-top: 5px;
  opacity: 0;
  transition: all 0.5s;
}
.component-cards.-cards_grid .row .item .tile:hover:before, .component-cards.-cards_grid .row .item .tile:focus:before {
  background-color: rgba(0, 0, 0, 0.3);
}
.component-cards.-cards_grid .row .item .tile:hover .inner .content, .component-cards.-cards_grid .row .item .tile:focus .inner .content {
  margin-top: 0;
  opacity: 1;
}

@media (min-width: 768px) {
  .component-checkerboard {
    width: 100%;
    display: table;
    min-height: calc(50vw - 7.5px);
  }
}
@media (min-width: 768px) {
  .component-checkerboard .checker-panel:not(.-has-bg-colour) {
    background-color: transparent;
  }
}
.component-checkerboard .checker-panel.-centered {
  text-align: center;
}
@media (min-width: 768px) {
  .component-checkerboard .checker-panel {
    float: none;
    display: table-cell;
    vertical-align: middle;
    padding: 0;
  }
}
.component-checkerboard .checker-panel.-image {
  height: 100vw;
  position: relative;
}
@media (max-width: 767px) {
  .component-checkerboard .checker-panel.-image {
    padding-bottom: 100%;
  }
}
@media (min-width: 768px) {
  .component-checkerboard .checker-panel.-image {
    height: auto;
  }
}
.component-checkerboard .checker-panel.-image .foreground-image {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  height: 95%;
}
@media (min-width: 768px) {
  .component-checkerboard .checker-panel.-image .foreground-image {
    height: 85%;
  }
}
@media (max-width: 767px) {
  .component-checkerboard .checker-panel.-image.-no-bg-image .foreground-image {
    top: 54%;
  }
}
.component-checkerboard .checker-panel.-text {
  padding: 50px 0;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .component-checkerboard .checker-panel.-text {
    min-height: 100vw;
    display: flex;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .component-checkerboard .checker-panel.-text {
    padding: 8% 0;
  }
}
.component-checkerboard .checker-panel.-text .inner {
  padding: 0 30px;
}
@media (min-width: 768px) {
  .component-checkerboard .checker-panel.-text .inner {
    padding: 0 15%;
  }
}
@media (min-width: 992px) {
  .component-checkerboard .checker-panel.-text .inner {
    padding: 0 23%;
  }
}
.component-checkerboard .checker-panel.-text .inner img {
  width: 40%;
  margin-bottom: 8%;
}
@media (min-width: 768px) {
  .component-checkerboard .checker-panel.-text .inner img {
    width: 45%;
  }
}
@media (min-width: 1500px) {
  .component-checkerboard .checker-panel.-text .inner img {
    width: 55%;
  }
}
.component-checkerboard .checker-panel.-text .inner .btn {
  margin-top: 5%;
}
.component-checkerboard .checker-panel.-text .inner .heading {
  margin-bottom: 5%;
}
.component-checkerboard .checker-panel.-text .inner .content p:last-child {
  margin-bottom: 0;
}
.component-checkerboard .checker-panel.-video {
  position: relative;
  overflow: hidden;
  height: 100vw;
}
@media (min-width: 768px) {
  .component-checkerboard .checker-panel.-video {
    height: auto;
  }
}
.component-checkerboard .checker-panel.-video .video {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  height: 104%;
}
.component-checkerboard .checker-panel.-video .image-alternative {
  width: 100%;
}
.component-checkerboard.-checkerboard_download .content ul {
  padding-left: 0;
}
.component-checkerboard.-checkerboard_download .content ul li {
  padding-bottom: 0.6em;
  line-height: 1.4em;
}
@media (min-width: 1200px) {
  .component-checkerboard.-checkerboard_download .content ul li {
    font-size: 18px;
  }
}
.component-checkerboard.-checkerboard_download .content .heading2, .component-checkerboard.-checkerboard_download .content .component-text.-text_content h2, .component-text.-text_content .component-checkerboard.-checkerboard_download .content h2 {
  font-size: 55px;
  font-size: 2.8645833333vw;
  margin-bottom: 6%;
}
@media (max-width: 1047.2727272727px) {
  .component-checkerboard.-checkerboard_download .content .heading2, .component-checkerboard.-checkerboard_download .content .component-text.-text_content h2, .component-text.-text_content .component-checkerboard.-checkerboard_download .content h2 {
    font-size: 30px;
  }
}
@media (min-width: 1920px) {
  .component-checkerboard.-checkerboard_download .content .heading2, .component-checkerboard.-checkerboard_download .content .component-text.-text_content h2, .component-text.-text_content .component-checkerboard.-checkerboard_download .content h2 {
    font-size: 55px;
  }
}
@media (max-width: 767px) {
  .component-checkerboard.-checkerboard_download .content .heading2, .component-checkerboard.-checkerboard_download .content .component-text.-text_content h2, .component-text.-text_content .component-checkerboard.-checkerboard_download .content h2 {
    margin-top: 0;
  }
}
.component-checkerboard.-checkerboard_download .content .heading2 i, .component-checkerboard.-checkerboard_download .content .component-text.-text_content h2 i, .component-text.-text_content .component-checkerboard.-checkerboard_download .content h2 i {
  font-size: 90px;
  font-size: 4.6875vw;
  position: relative;
  top: 0.18em;
  left: -0.2em;
}
@media (max-width: 1066.6666666667px) {
  .component-checkerboard.-checkerboard_download .content .heading2 i, .component-checkerboard.-checkerboard_download .content .component-text.-text_content h2 i, .component-text.-text_content .component-checkerboard.-checkerboard_download .content h2 i {
    font-size: 50px;
  }
}
@media (min-width: 1920px) {
  .component-checkerboard.-checkerboard_download .content .heading2 i, .component-checkerboard.-checkerboard_download .content .component-text.-text_content h2 i, .component-text.-text_content .component-checkerboard.-checkerboard_download .content h2 i {
    font-size: 90px;
  }
}
.component-checkerboard.-checkerboard_download .content .heading2 i.ion-social-apple, .component-checkerboard.-checkerboard_download .content .component-text.-text_content h2 i.ion-social-apple, .component-text.-text_content .component-checkerboard.-checkerboard_download .content h2 i.ion-social-apple {
  top: 0.08em;
}
.component-checkerboard.-checkerboard_download .content .btn:after {
  content: "";
}
@media (max-width: 767px) {
  .component-checkerboard.-checkerboard_download .checker-panel {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 767px) {
  .component-checkerboard.-checkerboard_blob {
    margin: 0 !important;
  }
}
@media (min-width: 768px) {
  .component-checkerboard.-checkerboard_blob {
    min-height: calc(58vw - 7.5px);
  }
}
@media (min-width: 992px) {
  .component-checkerboard.-checkerboard_blob {
    min-height: calc(55vw - 7.5px);
  }
}
@media (min-width: 1200px) {
  .component-checkerboard.-checkerboard_blob {
    min-height: calc(50vw - 7.5px);
  }
}
@media (max-width: 767px) {
  .component-checkerboard.-checkerboard_blob .checker-panel.-text {
    min-height: auto;
    height: auto;
  }
}
.component-checkerboard.-checkerboard_blob .checker-panel.-text .inner {
  padding: 0 30px;
}
@media (min-width: 768px) {
  .component-checkerboard.-checkerboard_blob .checker-panel.-text .inner {
    padding: 0 35px 0 65px;
  }
}
@media (min-width: 992px) {
  .component-checkerboard.-checkerboard_blob .checker-panel.-text .inner {
    padding: 0 11% 0 33%;
  }
}
@media (min-width: 1200px) {
  .component-checkerboard.-checkerboard_blob .checker-panel.-text .inner {
    padding: 0 23% 0 26%;
  }
}
@media (min-width: 1500px) {
  .component-checkerboard.-checkerboard_blob .checker-panel.-text .inner {
    padding: 0 31% 0 19%;
  }
}
.component-checkerboard.-checkerboard_blob .checker-panel.-text .inner .heading {
  margin-bottom: 20px;
}
.component-checkerboard.-checkerboard_blob .checker-panel.-image .foreground-image {
  height: 100%;
}
.component-checkerboard.-checkerboard_blob .checker-panel.-image .foreground-image.-desktop {
  display: none;
}
@media (min-width: 992px) {
  .component-checkerboard.-checkerboard_blob .checker-panel.-image .foreground-image.-desktop {
    display: block;
  }
}
.component-checkerboard.-checkerboard_blob .checker-panel.-image .foreground-image.-mobile {
  display: block;
}
@media (min-width: 992px) {
  .component-checkerboard.-checkerboard_blob .checker-panel.-image .foreground-image.-mobile {
    display: none;
  }
}
.component-checkerboard.-checkerboard_blob .checker-panel.-image .foreground-image.-left {
  left: 0;
  transform: translate(0%, -50%);
}
.component-checkerboard.-checkerboard_blob .checker-panel.-image .foreground-image.-right {
  right: 0;
  left: auto;
  transform: translate(0%, -50%);
}
@media (min-width: 768px) {
  .component-checkerboard.-checkerboard_blob:nth-of-type(2) .checker-panel.-text .inner {
    padding: 0 56px 0 55px;
  }
}
@media (min-width: 992px) {
  .component-checkerboard.-checkerboard_blob:nth-of-type(2) .checker-panel.-text .inner {
    padding: 0 28% 0 11%;
  }
}
@media (min-width: 1200px) {
  .component-checkerboard.-checkerboard_blob:nth-of-type(2) .checker-panel.-text .inner {
    padding: 0 28% 0 23%;
  }
}
@media (min-width: 1500px) {
  .component-checkerboard.-checkerboard_blob:nth-of-type(2) .checker-panel.-text .inner {
    padding: 0 20% 0 27%;
  }
}

.heading-checker {
  padding-top: 60px;
  padding-bottom: 3%;
  color: #ffffff;
  font-weight: bold;
  word-spacing: -1px;
  letter-spacing: -1px;
  font-size: 24px;
}
@media (max-width: 767px) {
  .heading-checker {
    padding-left: 35px;
    text-align: left;
    padding-bottom: 10%;
  }
}
@media (min-width: 768px) {
  .heading-checker {
    font-size: 30px;
    text-align: center;
  }
}
@media (min-width: 992px) {
  .heading-checker {
    font-size: 47px;
    padding: 80px 0;
  }
}
@media (min-width: 1200px) {
  .heading-checker {
    font-size: 40px;
  }
}
@media (min-width: 1500px) {
  .heading-checker {
    font-size: 45px;
  }
}

.component-content-grid {
  z-index: 9999;
}
.component-content-grid .panels {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .component-content-grid .panels {
    height: 925px;
  }
}
@media (min-width: 992px) {
  .component-content-grid .panels {
    height: 120vw;
  }
}
@media (min-width: 1200px) {
  .component-content-grid .panels {
    height: 105vw;
  }
}
@media (min-width: 1500px) {
  .component-content-grid .panels {
    height: 95vw;
  }
}
.component-content-grid .panels .panel {
  padding: 0;
  height: 63vw;
}
@media (min-width: 768px) {
  .component-content-grid .panels .panel {
    height: 240px;
  }
}
@media (min-width: 992px) {
  .component-content-grid .panels .panel {
    height: 40vw;
  }
}
@media (min-width: 1200px) {
  .component-content-grid .panels .panel {
    height: 35vw;
  }
}
@media (min-width: 1500px) {
  .component-content-grid .panels .panel {
    height: 33vw;
  }
}
.component-content-grid .panels .panel:nth-child(1) {
  order: 1;
}
.component-content-grid .panels .panel:nth-child(2) {
  order: 2;
}
@media (min-width: 768px) {
  .component-content-grid .panels .panel:nth-child(2) {
    order: 3;
  }
}
.component-content-grid .panels .panel:nth-child(3) {
  order: 4;
}
@media (min-width: 768px) {
  .component-content-grid .panels .panel:nth-child(3) {
    order: 2;
  }
}
.component-content-grid .panels .panel:nth-child(4) {
  order: 3;
}
@media (min-width: 768px) {
  .component-content-grid .panels .panel:nth-child(4) {
    order: 4;
  }
}
.component-content-grid .panels .panel.-tall-panel {
  height: 120vh;
  max-height: 685px;
}
@media (min-width: 768px) {
  .component-content-grid .panels .panel.-tall-panel {
    max-height: none;
    height: 685px;
  }
}
@media (min-width: 992px) {
  .component-content-grid .panels .panel.-tall-panel {
    height: 80vw;
  }
}
@media (min-width: 1200px) {
  .component-content-grid .panels .panel.-tall-panel {
    height: 70vw;
  }
}
@media (min-width: 1500px) {
  .component-content-grid .panels .panel.-tall-panel {
    height: 62vw;
  }
}

.content-grid-image {
  height: 100%;
}

.content-grid-text {
  height: 100%;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom right;
  padding: 40px;
}
@media (min-width: 992px) {
  .content-grid-text {
    padding: 10% 15%;
  }
}
.content-grid-text.-bg-colour-green-vungle {
  background-color: #14CDC8;
}
.content-grid-text.-bg-colour-red-vungle {
  background-color: #FF5A41;
}
.content-grid-text.-bg-colour-blue-vungle {
  background-color: #6E7DFF;
}
.content-grid-text.-bg-colour-pink-vungle {
  background-color: #FFD2E1;
}
.content-grid-text.-bg-colour-yellow-vungle {
  background-color: #FFD700;
}
.content-grid-text.-bg-colour-purple-vungle {
  background-color: #3C2869;
}
.content-grid-text.-bg-colour-lightblue-vungle {
  background-color: #3C2869;
}
.content-grid-text .heading {
  font-size: 100px;
  font-size: 5.2083333333vw;
  color: #fff;
}
@media (max-width: 864px) {
  .content-grid-text .heading {
    font-size: 45px;
  }
}
@media (min-width: 1920px) {
  .content-grid-text .heading {
    font-size: 100px;
  }
}
.content-grid-text .content {
  padding-top: 10px;
}
@media (min-width: 992px) {
  .content-grid-text .content {
    width: 95%;
    padding-top: 30px;
  }
}
@media (min-width: 1500px) {
  .content-grid-text .content {
    width: 55%;
  }
}
.content-grid-text .content p {
  color: #fff;
}
.content-grid-text .content p:last-of-type {
  padding-bottom: 30px;
}
@media (min-width: 992px) {
  .content-grid-text .content p:last-of-type {
    padding-bottom: 40px;
  }
}

.content-grid-video {
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.content-grid-video .video-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  z-index: 2;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .content-grid-video .video-controls {
    padding-bottom: 6%;
  }
}
.content-grid-video .video-controls .playbutton {
  width: 61px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../img/playbutton-background.png");
  background-size: contain;
}
@media (min-width: 992px) {
  .content-grid-video .video-controls .playbutton {
    width: 80px;
    height: 79px;
  }
}
@media (min-width: 1200px) {
  .content-grid-video .video-controls .playbutton {
    width: 97px;
    height: 96px;
  }
}
@media (min-width: 1500px) {
  .content-grid-video .video-controls .playbutton {
    width: 155px;
    height: 153px;
  }
}
.content-grid-video .video-controls .playbutton svg {
  width: 36%;
  height: auto;
  margin-left: 5%;
}
.content-grid-video .video-controls .heading {
  font-size: 45px;
  font-size: 2.34375vw;
  color: #fff;
  padding: 20px 0 10px;
  margin-bottom: 0 !important;
  text-align: center;
  line-height: 0.9em;
}
@media (max-width: 1066.6666666667px) {
  .content-grid-video .video-controls .heading {
    font-size: 25px;
  }
}
@media (min-width: 1920px) {
  .content-grid-video .video-controls .heading {
    font-size: 45px;
  }
}
@media (min-width: 992px) {
  .content-grid-video .video-controls .heading {
    padding: 35px 0 10px;
  }
}
@media (min-width: 1200px) {
  .content-grid-video .video-controls .heading {
    padding: 45px 0 20px;
  }
}
@media (min-width: 1500px) {
  .content-grid-video .video-controls .heading {
    padding: 90px 0 35px;
  }
}
.content-grid-video .video-controls .time {
  display: flex;
  align-items: center;
}
.content-grid-video .video-controls .time i {
  color: #fff;
  font-size: 32px;
  line-height: 32px;
}
.content-grid-video .video-controls .time .duration {
  font-size: 20px;
  font-size: 1.0416666667vw;
  padding-left: 10px;
  color: #fff;
}
@media (max-width: 1248px) {
  .content-grid-video .video-controls .time .duration {
    font-size: 13px;
  }
}
@media (min-width: 1920px) {
  .content-grid-video .video-controls .time .duration {
    font-size: 20px;
  }
}
.content-grid-video .gradient-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.content-grid-video .gradient-overlay.-bg-colour-green-vungle {
  background-image: linear-gradient(to top, rgba(20, 205, 200, 0.7), rgba(20, 205, 200, 0));
}
.content-grid-video .gradient-overlay.-bg-colour-red-vungle {
  background-image: linear-gradient(to top, rgba(255, 90, 65, 0.7), rgba(255, 90, 65, 0));
}
.content-grid-video .gradient-overlay.-bg-colour-blue-vungle {
  background-image: linear-gradient(to top, rgba(110, 125, 255, 0.7), rgba(110, 125, 255, 0));
}
.content-grid-video .gradient-overlay.-bg-colour-pink-vungle {
  background-image: linear-gradient(to top, rgba(255, 210, 225, 0.7), rgba(255, 210, 225, 0));
}
.content-grid-video .gradient-overlay.-bg-colour-yellow-vungle {
  background-image: linear-gradient(to top, rgba(255, 215, 0, 0.7), rgba(255, 215, 0, 0));
}
.content-grid-video .gradient-overlay.-bg-colour-purple-vungle {
  background-image: linear-gradient(to top, rgba(60, 40, 105, 0.7), rgba(60, 40, 105, 0));
}
.content-grid-video .gradient-overlay.-bg-colour-lightblue-vungle {
  background-image: linear-gradient(to top, rgba(205, 245, 255, 0.7), rgba(205, 245, 255, 0));
}

.video-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
}
.video-lightbox .close {
  margin: 20px;
  z-index: 9999;
  opacity: 1;
}
.video-lightbox .close i {
  color: #fff;
  font-size: 32px;
}
.video-lightbox video {
  width: 80vw;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 768px) {
  .video-lightbox video {
    height: 80vh;
    width: auto;
  }
}
.video-lightbox .lightbox-overlay {
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
}

.component-footer {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .component-footer {
    height: 88vw;
    background-image: url("../img/footer-background.png");
    background-size: 100%;
    background-position: bottom;
    background-repeat: no-repeat;
  }
}
@media (min-width: 992px) {
  .component-footer {
    padding: 60px 0 15vw;
    height: 68vw;
  }
}
@media (min-width: 1200px) {
  .component-footer {
    height: 92vw;
    max-height: 1100px;
    background-image: url("../img/footer-background-large.png");
  }
}
@media (min-width: 1500px) {
  .component-footer {
    height: 42vw;
    max-height: 1000px;
    background-image: url("../img/footer-background.png");
  }
}
.component-footer.bg-colour-green-vungle {
  background-color: #14CDC8;
}
.component-footer.bg-colour-red-vungle {
  background-color: #FF5A41;
}
.component-footer.bg-colour-blue-vungle {
  background-color: #6E7DFF;
}
.component-footer.bg-colour-pink-vungle {
  background-color: #FFD2E1;
}
.component-footer.bg-colour-yellow-vungle {
  background-color: #FFD700;
}
.component-footer.bg-colour-purple-vungle {
  background-color: #3C2869;
}
.component-footer.bg-colour-lightblue-vungle {
  background-color: #3C2869;
}
.component-footer .row > div {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 768px) {
  .component-footer .row > div.office-location-column {
    width: 25%;
  }
}
@media (min-width: 992px) {
  .component-footer .row > div.office-location-column {
    width: 33.3333%;
  }
}
@media (min-width: 1500px) {
  .component-footer .row > div.office-location-column {
    width: 25%;
  }
}
@media (min-width: 768px) {
  .component-footer .row > div.link-columns {
    width: 75%;
  }
}
@media (min-width: 992px) {
  .component-footer .row > div.link-columns {
    width: 66.6666%;
  }
}
@media (min-width: 1500px) {
  .component-footer .row > div.link-columns {
    width: 50%;
  }
}
@media (min-width: 1500px) {
  .component-footer .row > div.social-column {
    width: 25%;
  }
}
.component-footer .logo {
  padding-bottom: 60px;
}
.component-footer .logo img {
  width: 130px;
  height: auto;
}
.component-footer .office-location-container {
  color: #fff;
  line-height: 1.55em;
}
.component-footer .office-location-container a {
  font-size: 18px;
  font-size: 0.9375vw;
  color: #FAF5FA;
  text-decoration: underline;
  transition: color 0.5s;
}
@media (max-width: 1920px) {
  .component-footer .office-location-container a {
    font-size: 18px;
  }
}
@media (min-width: 1920px) {
  .component-footer .office-location-container a {
    font-size: 18px;
  }
}
.component-footer .office-location-container a:hover {
  color: #6E7DFF;
}
.component-footer .office-location-container .office-location-address {
  display: none;
  line-height: 1.26em;
  padding: 10px 0 30px;
  font-size: 20px;
}
@media (min-width: 1200px) {
  .component-footer .office-location-container .office-location-address {
    font-size: 30px;
  }
}
.component-footer .link-columns > div p {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 20px;
  line-height: 1.26em;
}
@media (min-width: 1200px) {
  .component-footer .link-columns > div p {
    font-size: 30px;
  }
}
.component-footer .link-columns > div p a {
  color: #fff;
  display: inline-block;
  position: relative;
}
.component-footer .link-columns > div p a:after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: transparent;
  transition: width 0.5s, background-color 1s;
}
.component-footer .link-columns > div p a:hover:after {
  background-color: #fff;
  width: 100%;
}
.component-footer .link-columns .footer-hr {
  display: inline-block;
  width: 23px;
  height: 2px;
  background-color: #fff;
}
.component-footer .link-columns .footer-hr.visible-xs {
  display: inline-block !important;
}
@media (min-width: 768px) {
  .component-footer .link-columns .footer-hr.visible-xs {
    display: none !important;
  }
}
.component-footer .footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 50px;
}
@media (min-width: 1500px) {
  .component-footer .footer-right {
    padding-top: 0;
    align-items: flex-end;
  }
}
.component-footer .footer-right .icon-container {
  padding: 10px;
  background-color: #fff;
  margin-right: 5px;
}
@media (min-width: 1500px) {
  .component-footer .footer-right .icon-container {
    margin-left: 5px;
  }
}
.component-footer .footer-right .icon-container a i {
  transition: color 0.5s;
  font-size: 22px;
  line-height: 22px;
}
@media (min-width: 768px) {
  .component-footer .footer-right .icon-container a i {
    font-size: 28px;
    line-height: 28px;
  }
}
@media (min-width: 992px) {
  .component-footer .footer-right .icon-container a i {
    font-size: 30px;
    line-height: 30px;
  }
}
@media (min-width: 1200px) {
  .component-footer .footer-right .icon-container a i {
    font-size: 32px;
    line-height: 32px;
  }
}
@media (min-width: 1500px) {
  .component-footer .footer-right .icon-container a i {
    font-size: 40px;
    line-height: 40px;
  }
}
.component-footer .footer-right .icon-container a:hover i {
  color: #6E7DFF;
}
.component-footer .footer-right .copyright-content {
  text-align: left;
  color: #fff;
  font-size: 13px;
  padding-top: 20px;
}
@media (min-width: 1500px) {
  .component-footer .footer-right .copyright-content {
    font-size: 18px;
    font-size: 0.9375vw;
    padding-top: 120px;
    text-align: right;
  }
}
@media (min-width: 1500px) and (max-width: 1493.3333333333px) {
  .component-footer .footer-right .copyright-content {
    font-size: 14px;
  }
}
@media (min-width: 1500px) and (min-width: 1920px) {
  .component-footer .footer-right .copyright-content {
    font-size: 18px;
  }
}

.component-form {
  height: 100%;
}
.component-form .wpcf7-response-output {
  border: none;
  padding: 0;
}
.component-form.-contact_form_standard {
  overflow: visible;
  padding: 60px 30px;
  margin: 0;
}
@media (min-width: 768px) {
  .component-form.-contact_form_standard {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 1200px) {
  .component-form.-contact_form_standard {
    padding-bottom: 6em;
  }
}
.fifty-fifty-layout[data-pnp-equate-height] .component-form.-contact_form_standard > .row {
  height: auto;
}
.component-form.-contact_form_standard form p:last-child {
  margin: 0;
}
.component-form.-contact_form_standard .container {
  overflow: visible;
}
.component-form.-contact_form_standard .phone-intro, .component-form.-contact_form_standard .content {
  margin: 0;
}
.component-form.-contact_form_standard .content {
  margin-bottom: 20px;
  margin-top: 4%;
  line-height: 1.6em;
  font-weight: 300;
}
@media (min-width: 768px) {
  .component-form.-contact_form_standard .content {
    margin-bottom: 0;
  }
}
.component-form.-contact_form_standard .text-container {
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .component-form.-contact_form_standard .text-container {
    padding: 0 15px;
  }
}
@media (min-width: 1200px) {
  .component-form.-contact_form_standard .text-container {
    padding-right: 4%;
  }
}
@media (min-width: 768px) {
  .component-form.-contact_form_standard .form-container {
    padding: 0 30px;
  }
}
@media (min-width: 1200px) {
  .component-form.-contact_form_standard .form-container {
    padding-left: 2%;
  }
}
.component-form.-contact_form_standard.-contact_form_contact_page .wpcf7-form {
  margin-top: 5%;
}
.component-form.-contact_form_standard .wpcf7-form {
  position: relative;
  padding-bottom: 12px;
}
.component-form.-contact_form_standard .wpcf7-form p, .component-form.-contact_form_standard .wpcf7-form .how-hear-other-container {
  margin-bottom: 10px;
}
@media (min-width: 1200px) {
  .component-form.-contact_form_standard .wpcf7-form p, .component-form.-contact_form_standard .wpcf7-form .how-hear-other-container {
    margin-bottom: 20px;
  }
}
.component-form.-contact_form_standard .wpcf7-form .cf-additional-form {
  display: none;
}
.component-form.-contact_form_standard .wpcf7-form .cf-advanced-enquiry {
  position: absolute;
  left: 0;
  bottom: 12px;
}
.component-form.-contact_form_standard .wpcf7-form .cf-advanced-enquiry:before {
  content: "";
  padding-right: 10px;
  font-family: "Ionicons";
}
.component-form.-contact_form_standard .wpcf7-form .cf-advanced-enquiry.-in:before {
  content: "";
}
.component-form.-contact_form_standard .wpcf7-form .ajax-loader {
  position: absolute;
  bottom: 0;
  left: 0;
}
.component-form.-contact_form_standard .wpcf7-form .wpcf7-response-output {
  top: -35px;
  position: relative;
}
.component-form.-contact_form_standard .wpcf7-form .wpcf7-submit {
  background-color: #3C2869;
  color: #fff;
  width: auto;
}
.component-form.-contact_form_standard .wpcf7-form .how-hear-other-container {
  display: none;
}
.component-form.-newsletter_signup .content {
  line-height: 1.7em;
}
.component-form.-newsletter_signup .content.-above {
  max-width: 630px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .component-form.-newsletter_signup .content.-above {
    margin-bottom: 1em;
  }
}
.component-form.-newsletter_signup .content.-below {
  color: #C0B7CE;
  font-size: 14px;
}
.component-form.-newsletter_signup .content a {
  color: #C0B7CE;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .component-form.-newsletter_signup .heading {
    margin-bottom: 1em;
  }
  .component-form.-newsletter_signup .btn {
    margin-top: 7%;
  }
}
.component-form.-newsletter_signup .form-control {
  width: 100%;
}
@media (min-width: 768px) {
  .component-form.-newsletter_signup .form-control {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .component-form.-newsletter_signup .form-control {
    width: 350px;
  }
}
@media (min-width: 1200px) {
  .component-form.-newsletter_signup .form-control {
    width: 400px;
  }
}
@media (min-width: 1200px) {
  .component-form.-newsletter_signup .form-control {
    width: 470px;
  }
}

.hbspt-form .hs-input {
  border-radius: 0 !important;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  transition: width 0.3s, border-color 0.5s;
  -webkit-appearance: none;
  box-shadow: none;
  border: 1px solid #ccc;
  font-weight: 300;
  width: 100%;
  font-size: 14px;
  height: 40px;
  padding: 11px;
  line-height: 20px;
  display: block;
}
.hbspt-form select option {
  color: #666;
}
.hbspt-form .no-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hbspt-form .no-list .hs-error-msg {
  color: #fc7579 !important;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 0;
}
.hbspt-form .hs-submit {
  margin-top: 10px;
}
.hbspt-form .hs-submit .hs-button {
  font-family: "PxGrotesk";
  background-color: transparent;
  color: #3C2869;
  position: relative;
  border-radius: 50px;
  font-size: 13px;
  line-height: 16px;
  font-weight: 700;
  padding: 1em 2em 1em 2em;
  letter-spacing: 0.01em;
  box-shadow: 2px 2px 4px 0px rgba(107, 107, 107, 0);
  transition: box-shadow 0.5s, color 0.5s, background-color 0.5s;
  background-color: #FFD700;
  color: #3C2869;
  border: 0;
}
html.no-touch .hbspt-form .hs-submit .hs-button:hover {
  box-shadow: 2px 2px 4px 0px rgba(107, 107, 107, 0.4);
  background-color: light(#FFD700, 5%);
  background-image: none;
}
@media (min-width: 768px) {
  .hbspt-form .hs-submit .hs-button {
    font-size: 13px;
  }
}
@media (min-width: 992px) {
  .hbspt-form .hs-submit .hs-button {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .hbspt-form .hs-submit .hs-button {
    font-size: 15px;
  }
}
@media (min-width: 1500px) {
  .hbspt-form .hs-submit .hs-button {
    font-size: 16px;
  }
}
.hbspt-form .hs-submit .hs-button:after {
  content: "";
  font-family: "Ionicons";
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  right: 2.3em;
  margin-top: -1px;
  transition: margin 0.5s;
}
.hbspt-form .hs-submit .hs-button:focus, .hbspt-form .hs-submit .hs-button:active {
  border-color: transparent !important;
}
.hbspt-form .hs-submit .hs-button.-large {
  font-size: 15px;
}
@media (min-width: 992px) {
  .hbspt-form .hs-submit .hs-button.-large {
    font-size: 17px;
    padding: 1.5em 5.5em 1.5em 4em;
  }
  .hbspt-form .hs-submit .hs-button.-large:after {
    right: 4em;
  }
}
@media (min-width: 1500px) {
  .hbspt-form .hs-submit .hs-button.-large {
    font-size: 18px;
  }
}

.-newsletter-signup .no-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.-newsletter-signup .no-list .hs-main-font-element {
  color: #fc7579 !important;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 0;
}
.-newsletter-signup .hs-email {
  width: 100%;
  display: inline-block;
}
.-newsletter-signup .hs-email label {
  display: none;
}
.-newsletter-signup .hs-email .hs-input {
  background: #FFF;
}
@media (min-width: 992px) {
  .-newsletter-signup .hs-email {
    width: 30%;
  }
}
@media (min-width: 1200px) {
  .-newsletter-signup .hs-email {
    width: 70%;
  }
}
.-newsletter-signup .hs-submit {
  width: 100%;
  display: inline-block;
}
@media (min-width: 992px) {
  .-newsletter-signup .hs-submit {
    width: 10%;
  }
}
@media (min-width: 1200px) {
  .-newsletter-signup .hs-submit {
    width: 30%;
  }
}
.-newsletter-signup .hs-submit input.hs-button {
  width: 100% !important;
}

.hs-form ul.multi-container {
  display: flex;
  flex-direction: column;
  max-height: 100px;
  overflow: scroll;
  border-radius: 0 !important;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  transition: width 0.3s, border-color 0.5s;
  border: 1px solid #ccc;
  font-weight: 300;
  width: 100%;
  font-size: 14px;
  padding: 11px;
  list-style: none;
}

.hs-form ul.multi-container li label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.hs-form ul.multi-container li label input[type=checkbox] {
  -webkit-appearance: checkbox;
  width: auto;
  margin: 0 10px 0 0;
}

.component-icon-text-grid {
  padding: 0 30px;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .component-icon-text-grid:first-child {
    padding-top: 10%;
  }
}
@media (min-width: 768px) {
  .component-icon-text-grid:last-child {
    padding-bottom: 10%;
  }
}
@media (max-width: 767px) {
  .component-icon-text-grid {
    flex-direction: row !important;
  }
}
@media (min-width: 768px) {
  .component-icon-text-grid {
    padding: 0 10%;
  }
}
.component-icon-text-grid .item {
  padding: 2%;
  display: inline-flex;
  align-items: center;
}
.component-icon-text-grid .item img {
  width: 80%;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .component-icon-text-grid .item img {
    width: 70%;
  }
}

.component-image .image {
  margin: 0 auto;
}
.component-image .image.-full-width {
  width: 100%;
  height: auto;
}
.component-image.-display-type-standard.-bottom-right .image {
  bottom: 0;
  right: 0;
  transform: none;
  top: auto;
}
.component-image.-display-type-fill {
  height: 100%;
  width: 100%;
  position: relative;
  min-height: 300px;
}
@media (min-width: 768px) {
  .component-image.-display-type-fill {
    min-height: 0;
  }
}
.component-image.-display-type-fill .image.-fill {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 300px;
}
@media (min-width: 768px) {
  .component-image.-display-type-fill .image.-fill {
    min-height: 0;
  }
}
.component-image.-display-type-fill.-top-left .image {
  background-position: left top !important;
}
.grid-layout .component-image {
  min-height: 0;
}
@media (max-width: 767px) {
  .grid-layout .component-image {
    position: absolute;
  }
}
.grid-layout .component-image .image {
  min-height: 0 !important;
}

.layout-icon {
  display: none;
}

.acf-fc-popup .layout-name {
  display: none;
}
.acf-fc-popup .layout-icon {
  display: block;
}
.acf-fc-popup ul {
  width: 280px;
}
.acf-fc-popup ul li {
  float: left !important;
  display: inline-block !important;
  width: 50%;
}
.acf-fc-popup ul li img {
  width: 121px;
  height: 50px;
}

.fifty-fifty-layout[data-pnp-equate-height] .component.component-text, .fifty-fifty-layout[data-pnp-equate-height] .component.component-form {
  width: 100%;
}
@media (min-width: 768px) {
  .fifty-fifty-layout[data-pnp-equate-height] .component.component-text, .fifty-fifty-layout[data-pnp-equate-height] .component.component-form {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
  }
}

.fifty-fifty-sticky {
  position: relative;
}
.fifty-fifty-sticky .sticky {
  position: -webkit-sticky;
  /* Safari */
  position: sticky;
  top: 0;
}

.layout {
  position: relative;
}
.layout.-margin-bottom {
  padding-bottom: 60px;
}
@media (min-width: 992px) {
  .layout.-margin-bottom {
    margin-bottom: 5vh;
  }
}
@media (min-width: 1200px) {
  .layout.-margin-bottom {
    margin-bottom: 14vh;
  }
}
.layout.full-height-layout .component-call-to-action.-bottom .link-container {
  min-height: 300px;
}
.layout.full-height-layout .component-call-to-action.-bottom .link-container .inner {
  padding: 0;
  position: absolute;
  bottom: 4%;
  left: 9%;
  top: auto;
  height: auto;
}
.layout .layout-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
.layout .content {
  position: relative;
}
@media (max-width: 767px) {
  .layout.mobile-bottom-background {
    background-size: auto;
    background-position: 0% -225%;
    background-repeat: no-repeat;
  }
}

[data-pnp-equate-height=".equalise"] {
  display: flex;
  flex: 0 0 100%;
  flex-direction: column;
}
@media (min-width: 768px) {
  [data-pnp-equate-height=".equalise"] {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .grid-layout {
    display: flex;
  }
  .grid-layout.-flip {
    flex-direction: row-reverse;
  }
}
.grid-layout .left-column {
  position: relative;
}
@media (max-width: 767px) {
  .grid-layout .left-column {
    min-height: 400px;
  }
}
@media (min-width: 768px) {
  .grid-layout .left-column {
    width: 40%;
  }
}
@media (min-width: 768px) {
  .grid-layout .right-column {
    display: flex;
    flex-wrap: wrap;
    flex-grow: 1;
  }
}
.grid-layout .right-column .inner-col {
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .grid-layout .right-column .inner-col {
    width: 50%;
  }
}
.grid-layout .right-column .inner-col:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
@media (max-width: 767px) {
  .grid-layout .right-column .inner-col.-text-container:after {
    display: none;
  }
}
@media (min-width: 768px) {
  .grid-layout .component {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
  }
}

.component-microinteraction {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: none;
  text-align: center;
  background-color: #3C2869;
  color: #FFF;
  padding: 10px 0px;
}
@media (min-width: 768px) {
  .component-microinteraction {
    padding: 20px;
  }
}
.component-microinteraction .display-table-xs {
  table-layout: fixed;
  word-wrap: break-word;
}
.component-microinteraction .close-button {
  background-color: #fff;
}
.component-microinteraction .close-button i {
  color: #3C2869;
}
@media (min-width: 1200px) {
  .component-microinteraction .close-button {
    padding: 10px;
  }
}
.component-microinteraction .content-container {
  font-size: 25px;
  font-size: 1.3020833333vw;
  line-height: 1.2em;
  color: #FFF;
  text-align: left;
  font-weight: 300;
}
@media (max-width: 1152px) {
  .component-microinteraction .content-container {
    font-size: 15px;
  }
}
@media (min-width: 1920px) {
  .component-microinteraction .content-container {
    font-size: 25px;
  }
}
.component-microinteraction .content-container .underlined {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .component-microinteraction .content-container {
    font-size: 15px;
  }
}
.component-microinteraction .content-container p:last-child {
  margin: 0;
}
.component-microinteraction .image {
  max-height: 50px;
  width: 100%;
}
@media (min-width: 768px) {
  .component-microinteraction .image {
    max-height: 81px;
  }
}
@media (min-width: 992px) {
  .component-microinteraction .image {
    max-height: 112px;
  }
}
@media (min-width: 1200px) {
  .component-microinteraction .image {
    max-height: 143px;
  }
}
@media (min-width: 1500px) {
  .component-microinteraction .image {
    max-height: 205px;
  }
}

body.modal-open {
  position: relative;
}

.modal.fade .modal-dialog {
  transform: translateY(0%);
}

.modal-backdrop {
  position: fixed;
  z-index: 10;
  bottom: 0;
}

.modal-container {
  z-index: 9999;
  position: relative;
}
.modal-container.-xsmall .pnp-modal {
  top: 0;
  bottom: 0;
  right: 0;
  left: 20%;
}
@media (max-width: 767px) {
  .modal-container.-xsmall .pnp-modal {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
}
@media (min-width: 1200px) {
  .modal-container.-xsmall .pnp-modal {
    left: 50%;
  }
}
.modal-container.-large .pnp-modal {
  top: 15%;
  bottom: 15%;
  width: 50%;
  left: 50%;
  transform: translateX(-50%);
}
.modal-container.-large .pnp-modal .modal-content .modal-header {
  padding: 0;
}
.modal-container.-large .pnp-modal .modal-content .modal-body {
  padding: 0;
}
@media (min-width: 768px) {
  .modal-container.-half .pnp-modal {
    top: 0;
    bottom: 0;
    left: 0;
    right: 50%;
  }
}

.pnp-modal {
  padding-right: 0 !important;
  overflow: hidden !important;
}
.pnp-modal .site-footer, .pnp-modal .post-edit-link, .pnp-modal .bottom-row-container, .pnp-modal .pnp-tag {
  display: none;
}
.pnp-modal .modal-dialog {
  width: 100%;
  height: 100%;
  margin: 0;
  background: #fff;
}
.pnp-modal .modal-dialog:not(.fade-in) {
  transform: translate3d(100%, 0, 0) !important;
}
.pnp-modal .modal-dialog .modal-content {
  box-shadow: none;
  height: 100%;
  background: #fff;
  border: none;
  position: relative;
}
.pnp-modal .modal-dialog .modal-content .component {
  padding: 0;
}
.pnp-modal .modal-header {
  background-color: transparent;
  position: relative;
  border-bottom: none;
  float: right;
  z-index: 1;
}
.pnp-modal .modal-header .logo-link {
  display: inline-block;
}
@media (min-width: 768px) {
  .pnp-modal .modal-header .logo-link {
    margin: 0.5% 0 0.5% 2%;
  }
}
.pnp-modal .modal-header .logo-link img {
  display: inline-block;
  transition: height 0.2s;
  height: 30px;
}
@media (min-width: 768px) {
  .pnp-modal .modal-header .logo-link img {
    height: 40px;
  }
}
@media (min-width: 992px) {
  .pnp-modal .modal-header .logo-link img {
    height: 50px;
  }
}
@media (min-width: 1500px) {
  .pnp-modal .modal-header .logo-link img {
    height: 80px;
  }
}
.pnp-modal .modal-header .close-modal {
  color: #3C2869;
  font-size: 50px;
  font-size: 2.6041666667vw;
  padding: 8px;
  cursor: pointer;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  line-height: 0;
}
@media (max-width: 1536px) {
  .pnp-modal .modal-header .close-modal {
    font-size: 40px;
  }
}
@media (min-width: 1920px) {
  .pnp-modal .modal-header .close-modal {
    font-size: 50px;
  }
}
@media (min-width: 1200px) {
  .pnp-modal .modal-header .close-modal {
    padding: 0;
  }
}
.pnp-modal .modal-header .close-modal i {
  line-height: 0;
}
.pnp-modal .modal-body {
  background: #fff;
  padding: 30px;
  overflow-x: hidden;
  overflow-y: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding-top: 10px;
}
@media (min-width: 768px) {
  .pnp-modal .modal-body {
    padding: 13px 4% 4% 4%;
  }
}
@media (min-width: 992px) {
  .pnp-modal .modal-body {
    padding-top: 13px;
  }
}
@media (min-width: 1200px) {
  .pnp-modal .modal-body {
    padding-top: 15px;
  }
}
@media (min-width: 1500px) {
  .pnp-modal .modal-body {
    padding-top: 25px;
  }
}
.pnp-modal .modal-body .content-form {
  padding: 0;
}
.pnp-modal .modal-body h1:first-child {
  margin-top: 0;
  margin-bottom: 3%;
}
@media (min-width: 1500px) {
  .pnp-modal .modal-body h1:first-child {
    margin-bottom: 4%;
  }
}
@media (min-width: 992px) {
  .pnp-modal .modal-body .container {
    width: 890px;
  }
}
@media (min-width: 1200px) {
  .pnp-modal .modal-body .container {
    width: 1200px;
  }
}
.-video .pnp-modal .modal-body {
  text-align: center;
  background: #000;
}
@media (max-width: 1199px) {
  .-video .pnp-modal .modal-body iframe {
    width: 100%;
  }
}
.pnp-modal .team.type-team img {
  margin: 0 auto;
  display: block;
}
.pnp-modal .team.type-team ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  text-align: center;
  width: 75%;
}
.pnp-modal .team.type-team ul li::before {
  content: "• ";
  color: #14CDC8;
}
.pnp-modal.in .modal-dialog {
  transform: translate3d(0, 0, 0) !important;
}
.pnp-modal .type-careers .container {
  width: 100%;
}

.modal.fade:not(.in).right .modal-dialog {
  -webkit-transform: translate3d(95%, 0, 0);
  transform: translate3d(95%, 0, 0);
}

#person-modal .modal-body {
  display: flex;
  max-width: 1600px;
  margin: auto;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 4%;
}
@media (max-width: 450px) {
  #person-modal .modal-body {
    padding-top: 25%;
  }
}
@media (max-width: 730px) {
  #person-modal .modal-body {
    padding-top: 15%;
  }
}
@media (min-width: 992px) {
  #person-modal .modal-body {
    justify-content: center;
    flex-direction: row;
  }
}
#person-modal .modal-body .content {
  max-width: 400px;
  padding: 5% 0 0 0;
}
@media (min-width: 992px) {
  #person-modal .modal-body .content {
    width: 60%;
    max-width: 100%;
    padding: 0 0 0 50px;
  }
}
@media (min-width: 992px) {
  #person-modal .modal-body .person-image-container {
    width: 40%;
  }
}
#person-modal .modal-body .person-image-container img {
  width: 100%;
}

.desktop-multi_level .burger-container {
  position: relative;
  z-index: 100;
  width: 65px !important;
  height: 65px !important;
  display: inline-block !important;
  float: right;
}
.desktop-multi_level .burger-container:before {
  content: "";
  background-color: #fff;
  height: 60%;
  width: 60%;
  border-radius: 100%;
  display: inline-block;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  transition: background-color 0.5s;
}
body.dark-nav-links .desktop-multi_level .burger-container:before, body.dark-nav-links-menu .desktop-multi_level .burger-container:before {
  background-color: #3C2869;
}
@media (min-width: 768px) {
  .desktop-multi_level .burger-container:before {
    height: 44px;
    width: 44px;
  }
}
@media (min-width: 992px) {
  .desktop-multi_level .burger-container:before {
    height: 46px;
    width: 46px;
  }
}
@media (min-width: 1200px) {
  .desktop-multi_level .burger-container:before {
    height: 48px;
    width: 48px;
  }
}
@media (min-width: 1500px) {
  .desktop-multi_level .burger-container:before {
    height: 50px;
    width: 50px;
  }
}
@media (min-width: 768px) {
  .desktop-multi_level .burger-container {
    float: none;
    right: 10px;
    width: 65px !important;
    height: 65px !important;
  }
}
@media (min-width: 992px) {
  .desktop-multi_level .burger-container {
    right: 13px;
    width: 73px !important;
    height: 73px !important;
  }
}
@media (min-width: 1200px) {
  .desktop-multi_level .burger-container {
    right: 13px;
    width: 81px !important;
    height: 81px !important;
  }
}
@media (min-width: 1500px) {
  .desktop-multi_level .burger-container {
    right: 13px;
    width: 96px !important;
    height: 96px !important;
  }
}
.desktop-multi_level .burger-container .burger {
  float: none;
  margin: 0 auto;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.desktop-multi_level .burger-container .burger i {
  position: relative;
  top: -4px;
  left: 0;
}

.nav-container.-large .logo-container {
  position: relative;
  height: 36.5px;
}
.nav-container.-large .logo-container .right, .nav-container.-large .logo-container .left {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.nav-container.-large .logo-container .right {
  right: 0;
}
.nav-container.-large .logo-container .left {
  left: 0;
}
@media (min-width: 768px) {
  .nav-container.-large .logo-container .right {
    right: 15px;
  }
  .nav-container.-large .logo-container .left {
    left: 15px;
  }
}
.nav-container.-large .logo-container .navbar-toggle.burger {
  top: 5px;
  left: 10px;
}
.nav-container.-large .logo-container .image {
  width: auto;
}
.nav-container.-large .logo-container .logo {
  display: block;
  margin: 0 auto;
  text-align: center;
}
.nav-container.-large .logo-container .logo img {
  height: 18.25px;
}
.nav-container.-large .logo-container .icon {
  font-size: 2em;
  padding: 0 0 0 5px;
}
@media (min-width: 768px) {
  .nav-container.-large .logo-container .icon {
    padding: 0 10px;
  }
}
@media (min-width: 992px) {
  .nav-container.-large .logo-container .icon {
    padding: 0 15px;
  }
}
.nav-container.-large .link-container {
  height: 36.5px;
}
.nav-container.-large .link-container .links {
  width: 100%;
  text-align: center;
}
.nav-container.-large .link-container .links .site-nav li a {
  height: 36.5px;
  line-height: 36.5px;
}

.sub-nav {
  display: none;
}

li:hover .sub-nav, .sub-nav:hover {
  display: block;
}

li {
  position: relative;
}
li .sub-nav {
  position: absolute;
  left: 0;
  background-color: white;
}
li .sub-nav, li .sub-nav li {
  padding: 0;
}
li .sub-nav li {
  list-style-type: none;
}
li .sub-nav li a {
  height: auto !important;
  line-height: normal !important;
}

.multi-level-mob-menu {
  display: block;
}
.multi-level-mob-menu .side-menu-container {
  box-shadow: -1px 1px 18px 0px rgba(162, 162, 162, 0.4);
  display: block;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 3000;
  transition: all 0.4s;
  background-color: #fff;
  border-top: 1px solid #f1efef;
  top: 0;
  width: 100%;
  transform: translateX(100%);
  padding: 5em 1.5em 1em;
}
html.mob-nav-in .multi-level-mob-menu .side-menu-container {
  opacity: 1 !important;
  visibility: visible !important;
}
html:not(.mob-nav-animating-in, .touch) .multi-level-mob-menu .side-menu-container {
  overflow-y: auto;
  overflow-x: hidden;
}
@media (min-width: 768px) {
  .multi-level-mob-menu .side-menu-container {
    width: 500px;
    transform: translateX(500px);
    padding: 5em 4em 2em;
  }
}
@media (min-width: 992px) {
  .multi-level-mob-menu .side-menu-container {
    width: 550px;
    transform: translateX(550px);
    padding: 6em 4em 2em;
  }
}
@media (min-width: 1200px) {
  .multi-level-mob-menu .side-menu-container {
    width: 600px;
    transform: translateX(600px);
    padding: 5em 4em 2em;
  }
}
@media (min-width: 1500px) {
  .multi-level-mob-menu .side-menu-container {
    width: 665px;
    transform: translateX(665px);
    padding: 6em 4em 2em;
  }
}
.multi-level-mob-menu .side-menu-container #menu-main-menu {
  display: block;
}
.multi-level-mob-menu .side-menu-container aside {
  position: relative;
  height: 100%;
  min-height: 570px;
}
@media (min-width: 1200px) {
  .multi-level-mob-menu .side-menu-container aside {
    min-height: 630px;
  }
}
@media (min-width: 1500px) {
  .multi-level-mob-menu .side-menu-container aside {
    min-height: 760px;
  }
}
.multi-level-mob-menu .side-menu-container aside .nav-footer {
  opacity: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff;
  transform: translate3d(0, 20px, 0);
  transition: opacity 1s, transform 0.6s;
}
html.mob-nav-in .multi-level-mob-menu .side-menu-container aside .nav-footer {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.3s;
}
.multi-level-mob-menu .side-menu-container aside .nav-footer .social-links {
  white-space: nowrap;
  position: relative;
  top: 15px;
  padding: 0;
  margin-bottom: 6%;
}
.multi-level-mob-menu .side-menu-container aside .nav-footer .social-links .link {
  margin-right: 2.5%;
  display: inline-block;
}
.multi-level-mob-menu .side-menu-container aside .nav-footer .social-links .link a {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 28px;
  transition: opacity 0.3s;
}
html.no-touch .multi-level-mob-menu .side-menu-container aside .nav-footer .social-links .link a:hover {
  opacity: 0.8;
}
@media (min-width: 768px) {
  .multi-level-mob-menu .side-menu-container aside .nav-footer .social-links .link a {
    width: 32px;
    height: 32px;
  }
}
.multi-level-mob-menu .side-menu-container aside .nav-footer .social-links .link i {
  position: absolute;
  top: 2px;
  left: 0;
  bottom: 2px;
  right: 0;
  background-repeat: no-repeat;
}
.multi-level-mob-menu .side-menu-container aside .nav-footer .social-links .link i.ion-social-facebook-new {
  background-image: url("../img/facebook.svg");
}
.multi-level-mob-menu .side-menu-container aside .nav-footer .social-links .link i.ion-social-linkedin-new {
  background-image: url("../img/linkedin.svg");
}
.multi-level-mob-menu .side-menu-container aside .nav-footer .social-links .link i.ion-social-github-new {
  background-image: url("../img/github.svg");
}
.multi-level-mob-menu .side-menu-container aside .nav-footer .social-links .link i.ion-social-twitter-new {
  background-image: url("../img/twitter.svg");
}
.multi-level-mob-menu .side-menu-container aside .nav-footer .social-links .link i.ion-social-instagram-new {
  background-image: url("../img/instagram.svg");
}
.multi-level-mob-menu .side-menu-container aside .nav-footer .legal-text {
  font-size: 12px;
  line-height: 1.5em;
  font-weight: 300;
}
.multi-level-mob-menu .side-menu-container aside .nav-footer .buttons {
  margin-bottom: 7%;
}
.multi-level-mob-menu .side-menu-container aside .nav-footer .buttons p {
  display: inline;
}
.multi-level-mob-menu .side-menu-container aside .nav-footer .buttons .btn {
  background-color: #3C2869;
  color: #fff;
}
html.no-touch .multi-level-mob-menu .side-menu-container aside .nav-footer .buttons .btn:hover {
  box-shadow: 2px 2px 4px 0px rgba(107, 107, 107, 0.4);
  background-color: light(#3C2869, 5%);
  background-image: none;
}
.multi-level-mob-menu .side-menu-container aside .nav-footer .selectric-language-selector .button {
  height: 60% !important;
}
.multi-level-mob-menu .side-menu-veil {
  position: fixed;
  display: none;
  left: -10000px;
  bottom: 0;
  right: 0;
  z-index: 2900;
  background-color: rgba(0, 0, 0, 0.4);
  top: 0;
}
.mob-nav-in .multi-level-mob-menu .side-menu-container {
  transform: translateX(0px);
}
.multi-level-mob-menu ul#menu-main-menu-1 {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-direction: row;
}
.multi-level-mob-menu ul#menu-main-menu-1 .main-links {
  width: 60%;
}
@media (min-width: 768px) {
  .multi-level-mob-menu ul#menu-main-menu-1 .main-links {
    padding-top: 30px;
  }
}
.multi-level-mob-menu ul#menu-main-menu-1 .side-links {
  width: 40%;
}
@media (min-width: 768px) {
  .multi-level-mob-menu ul#menu-main-menu-1 .side-links {
    padding-top: 30px;
  }
}
.multi-level-mob-menu ul#menu-main-menu-1 li {
  margin: 0;
  padding: 0;
  transform: translate3d(30px, 0, 0);
  transition: opacity 0.5s, transform 0.4s;
  opacity: 0;
  line-height: 1.8em;
}
.multi-level-mob-menu ul#menu-main-menu-1 li ul.child-nav-links {
  list-style-type: none;
  position: relative;
  padding-left: 20px;
}
.multi-level-mob-menu ul#menu-main-menu-1 li ul.child-nav-links li:before {
  content: "";
  display: inline-block;
  background: url(../img/nav-arrow.svg) center center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 13px;
  height: 16px;
}
@media (min-width: 992px) {
  .multi-level-mob-menu ul#menu-main-menu-1 li ul.child-nav-links li:before {
    width: 14px;
    height: 18px;
  }
}
@media (min-width: 1200px) {
  .multi-level-mob-menu ul#menu-main-menu-1 li ul.child-nav-links li:before {
    width: 16px;
    height: 20px;
  }
}
@media (min-width: 1500px) {
  .multi-level-mob-menu ul#menu-main-menu-1 li ul.child-nav-links li:before {
    width: 18px;
    height: 23px;
  }
}
.multi-level-mob-menu ul#menu-main-menu-1 li ul.child-nav-links li a {
  font-size: 25px;
  font-size: 1.3020833333vw;
}
@media (max-width: 1152px) {
  .multi-level-mob-menu ul#menu-main-menu-1 li ul.child-nav-links li a {
    font-size: 15px;
  }
}
@media (min-width: 1920px) {
  .multi-level-mob-menu ul#menu-main-menu-1 li ul.child-nav-links li a {
    font-size: 25px;
  }
}
.multi-level-mob-menu ul#menu-main-menu-1 li ul.child-nav-links li.jp-submenu a {
  font-size: 19px;
  font-size: 1.1020833333vw;
}
html.mob-nav-in .multi-level-mob-menu ul#menu-main-menu-1 li {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
html.mob-nav-in .multi-level-mob-menu ul#menu-main-menu-1 li:nth-child(0) {
  transition-delay: 0.15s;
}
html.mob-nav-in .multi-level-mob-menu ul#menu-main-menu-1 li:nth-child(1) {
  transition-delay: 0.175s;
}
html.mob-nav-in .multi-level-mob-menu ul#menu-main-menu-1 li:nth-child(2) {
  transition-delay: 0.2s;
}
html.mob-nav-in .multi-level-mob-menu ul#menu-main-menu-1 li:nth-child(3) {
  transition-delay: 0.225s;
}
html.mob-nav-in .multi-level-mob-menu ul#menu-main-menu-1 li:nth-child(4) {
  transition-delay: 0.25s;
}
html.mob-nav-in .multi-level-mob-menu ul#menu-main-menu-1 li:nth-child(5) {
  transition-delay: 0.275s;
}
html.mob-nav-in .multi-level-mob-menu ul#menu-main-menu-1 li:nth-child(6) {
  transition-delay: 0.3s;
}
html.mob-nav-in .multi-level-mob-menu ul#menu-main-menu-1 li:nth-child(7) {
  transition-delay: 0.325s;
}
html.mob-nav-in .multi-level-mob-menu ul#menu-main-menu-1 li:nth-child(8) {
  transition-delay: 0.35s;
}
html.mob-nav-in .multi-level-mob-menu ul#menu-main-menu-1 li:nth-child(9) {
  transition-delay: 0.375s;
}
html.mob-nav-in .multi-level-mob-menu ul#menu-main-menu-1 li:nth-child(10) {
  transition-delay: 0.4s;
}
html.mob-nav-in .multi-level-mob-menu ul#menu-main-menu-1 li:nth-child(11) {
  transition-delay: 0.425s;
}
html.mob-nav-in .multi-level-mob-menu ul#menu-main-menu-1 li:nth-child(12) {
  transition-delay: 0.45s;
}
html.mob-nav-in .multi-level-mob-menu ul#menu-main-menu-1 li:nth-child(13) {
  transition-delay: 0.475s;
}
html.mob-nav-in .multi-level-mob-menu ul#menu-main-menu-1 li:nth-child(14) {
  transition-delay: 0.5s;
}
html.mob-nav-in .multi-level-mob-menu ul#menu-main-menu-1 li:nth-child(15) {
  transition-delay: 0.525s;
}
@media (min-width: 1500px) {
  .multi-level-mob-menu ul#menu-main-menu-1 li {
    line-height: 2em;
  }
}
.multi-level-mob-menu ul#menu-main-menu-1 li a {
  display: inline-block;
  background-color: white;
  font-size: 35px;
  font-size: 1.8229166667vw;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1em;
  position: relative;
}
@media (max-width: 1097.1428571429px) {
  .multi-level-mob-menu ul#menu-main-menu-1 li a {
    font-size: 20px;
  }
}
@media (min-width: 1920px) {
  .multi-level-mob-menu ul#menu-main-menu-1 li a {
    font-size: 35px;
  }
}
@media (min-width: 768px) {
  .multi-level-mob-menu ul#menu-main-menu-1 li a {
    line-height: 1.3em;
  }
}
.multi-level-mob-menu ul#menu-main-menu-1 li a:focus, .multi-level-mob-menu ul#menu-main-menu-1 li a:active {
  color: #6E7DFF;
}
.multi-level-mob-menu ul#menu-main-menu-1 li a:after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: transparent;
  transition: width 0.5s, background-color 1s;
}
html.no-touch .multi-level-mob-menu ul#menu-main-menu-1 li a:hover {
  color: #3C2869;
}
html.no-touch .multi-level-mob-menu ul#menu-main-menu-1 li a:hover:after {
  background-color: #3C2869;
  width: 100%;
}
.multi-level-mob-menu ul#menu-main-menu-1 li.small-link {
  line-height: 1.5em;
}
.multi-level-mob-menu ul#menu-main-menu-1 li.small-link a {
  font-size: 15px;
  color: #766896;
}
@media (min-width: 768px) {
  .multi-level-mob-menu ul#menu-main-menu-1 li.small-link a {
    font-size: 17px;
  }
}
.multi-level-mob-menu ul#menu-main-menu-1 li.gap-above a {
  padding-top: 1em;
}
@media (min-width: 768px) {
  .multi-level-mob-menu ul#menu-main-menu-1 li.gap-above a {
    padding-top: 2em;
  }
}
.multi-level-mob-menu.JPMenu ul#menu-main-menu-1 li a {
  font-size: 30px;
  font-size: 1.6229166667vw;
}
.multi-level-mob-menu.JPMenu ul#menu-main-menu-1 li.small-link {
  line-height: 1.5em;
}
.multi-level-mob-menu.JPMenu ul#menu-main-menu-1 li.small-link a {
  font-size: 15px;
  color: #766896;
}
@media (min-width: 768px) {
  .multi-level-mob-menu.JPMenu ul#menu-main-menu-1 li.small-link a {
    font-size: 17px;
  }
}

.desktop-overlay.has-cart .links, .mobile-overlay.has-cart .links {
  padding-right: 25px !important;
  width: 73%;
}
.desktop-overlay.has-cart .cart-toggle, .mobile-overlay.has-cart .cart-toggle {
  height: 100%;
}
.desktop-overlay.has-cart .burger, .mobile-overlay.has-cart .burger {
  top: -6px;
}
.desktop-overlay.has-cart .burger-container, .mobile-overlay.has-cart .burger-container {
  float: right;
  display: inline-block;
  width: auto;
}
.desktop-overlay .burger-container, .mobile-overlay .burger-container {
  position: relative;
  z-index: 100;
}
@media (min-width: 992px) {
  .desktop-overlay .burger-container, .mobile-overlay .burger-container {
    display: inline-block !important;
  }
}
.desktop-overlay .burger-container .burger, .mobile-overlay .burger-container .burger {
  height: 100%;
}
.desktop-overlay .overlay-mob-menu, .mobile-overlay .overlay-mob-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: rgba(255, 255, 255, 0.95);
  max-height: 100vh;
  overflow-y: auto;
}
.desktop-overlay .overlay-mob-menu ul, .mobile-overlay .overlay-mob-menu ul {
  padding: 0;
  margin: 40px 0;
}
.desktop-overlay .overlay-mob-menu ul li, .mobile-overlay .overlay-mob-menu ul li {
  list-style-type: none;
  text-align: center;
}
.desktop-overlay .overlay-mob-menu ul li a, .mobile-overlay .overlay-mob-menu ul li a {
  padding: 1% 20px;
  display: inline-block;
  border: 1px solid transparent;
  color: #3C2869;
  font-weight: 300;
}
.desktop-overlay .overlay-mob-menu ul li a:hover, .desktop-overlay .overlay-mob-menu ul li a:focus, .mobile-overlay .overlay-mob-menu ul li a:hover, .mobile-overlay .overlay-mob-menu ul li a:focus {
  text-decoration: underline;
}

.mobile-standard.has-cart .links {
  padding-right: 25px !important;
  width: 73%;
}
.mobile-standard.has-cart .cart-toggle {
  height: 100%;
}
.mobile-standard.has-cart .burger {
  top: -6px;
  height: 100%;
}
.mobile-standard.has-cart .burger-container {
  float: right;
  display: inline-block;
  width: auto !important;
}

.mob-nav-container {
  background-color: #FFF;
  position: fixed;
  display: none;
  z-index: 20;
  top: 65px;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: auto;
}
.mob-nav-container .site-nav {
  list-style-type: none;
  padding: 0;
}
.mob-nav-container .site-nav li {
  text-align: center;
}
.mob-nav-container .site-nav li a {
  padding: 15px 0;
  display: block;
  text-transform: uppercase;
  color: #3C2869;
}
.mob-nav-container .sub-menu {
  background: #eee;
  list-style-type: none;
}

.has-cart .nav-container .links {
  padding-right: 85px;
}

.desktop-standard .nav-container .links {
  padding-right: 0 !important;
  width: auto !important;
}
.desktop-standard .nav-container .burger-container {
  position: relative;
  display: inline-block !important;
}
.desktop-standard .nav-container .burger-container .cart-icon {
  top: 5px;
}

.nav-container {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  padding: 0 0px;
  background-color: rgba(255, 255, 255, 0);
  transition: background-color 1s, height 0.5s, transform 0.5s, opacity 0.5s;
}
.nav-container.-opaque {
  transition-delay: 0.5s;
  background-color: rgba(255, 255, 255, 0.9);
}
.nav-container.-opaque .image.-custom-logos .dark-logo {
  display: block;
}
.nav-container.-opaque .image.-custom-logos .light-logo {
  display: none;
}
.nav-container.-first-load {
  transition: background-color 1s, height 1.5s, transform 1.5s, opacity 1.5s;
}
.nav-container.-first-hide {
  transform: translate3d(0, -65px, 0);
  opacity: 0;
}
@media (min-width: 768px) {
  .nav-container.-first-hide {
    transform: translate3d(0, -65px, 0);
  }
}
@media (min-width: 992px) {
  .nav-container.-first-hide {
    transform: translate3d(0, -73px, 0);
  }
}
@media (min-width: 1200px) {
  .nav-container.-first-hide {
    transform: translate3d(0, -81px, 0);
  }
}
@media (min-width: 1500px) {
  .nav-container.-first-hide {
    transform: translate3d(0, -96px, 0);
  }
}
.nav-container.-hide {
  transition: background-color 1s, height 0.5s, transform 0.5s, opacity 0.5s;
  transform: translate3d(0, -65px, 0);
  opacity: 0;
}
@media (min-width: 768px) {
  .nav-container.-hide {
    transform: translate3d(0, -65px, 0);
  }
}
@media (min-width: 992px) {
  .nav-container.-hide {
    transform: translate3d(0, -73px, 0);
  }
}
@media (min-width: 1200px) {
  .nav-container.-hide {
    transform: translate3d(0, -81px, 0);
  }
}
@media (min-width: 1500px) {
  .nav-container.-hide {
    transform: translate3d(0, -96px, 0);
  }
}
@media (min-width: 768px) {
  .nav-container {
    padding: 0 10px;
  }
}
@media (min-width: 992px) {
  .nav-container {
    padding: 0 13px;
  }
}
@media (min-width: 1200px) {
  .nav-container {
    padding: 0 13px;
  }
}
@media (min-width: 1500px) {
  .nav-container {
    padding: 0 13px;
  }
}
.nav-container .navbar-toggle {
  display: block;
}
.nav-container .links, .nav-container .burger-container {
  z-index: 9999;
}
.nav-container .image {
  width: 20%;
  position: relative;
  transition: opacity 0.5s, visibility 0.5s, padding 0.3s;
}
@media (max-width: 767px) {
  html.mob-nav-in .nav-container .image {
    opacity: 0;
    visibility: hidden;
  }
}
.nav-container .image.-custom-logos .dark-logo {
  display: none;
}
.nav-container .image.-custom-logos .light-logo {
  display: block;
}
.nav-container .image img {
  height: 59px;
  transition: height 0.4s;
  display: block;
}
@media (max-width: 767px) {
  .nav-container .image img {
    position: relative;
    top: 2px;
  }
}
@media (min-width: 768px) {
  .nav-container .image img {
    height: 63px;
  }
}
@media (min-width: 992px) {
  .nav-container .image img {
    height: 73px;
  }
}
@media (min-width: 1200px) {
  .nav-container .image img {
    height: 83px;
  }
}
@media (min-width: 1500px) {
  .nav-container .image img {
    height: 93px;
  }
}
.nav-container .image .light-logo {
  display: none;
}
.nav-container .links {
  width: 80%;
  text-align: right;
  position: relative;
  padding-right: 10px;
}
.nav-container .links > * {
  display: inline-block;
  margin: 0;
}
.nav-container .links .btn {
  margin-left: 10px;
}
body.dark-nav-links .nav-container .links .btn, body.dark-nav-links-menu .nav-container .links .btn {
  background-color: #3C2869;
  color: #fff;
}
.nav-container .links .site-nav > li {
  position: relative;
  padding: 0;
}
.nav-container .links .site-nav > li.active a {
  border-color: #FFD700;
}
.nav-container .links .site-nav > li > a {
  text-transform: uppercase;
  padding: 0 10px;
  display: inline-block;
  border-bottom: 5px solid transparent;
  transition: all 0.4s;
}
.nav-container .links .site-nav > li > a:hover {
  border-color: #FFD700;
}
.nav-container .links .site-nav .dropdown-menu {
  margin: 0;
}
.nav-container .links .site-nav .dropdown-menu li a {
  width: 100%;
}
.nav-container .burger-container {
  width: 80%;
  display: table-cell;
}
@media (min-width: 768px) {
  .nav-container .burger-container {
    display: none;
  }
}
.nav-container .burger {
  cursor: pointer;
  text-decoration: none;
  margin: 0;
  padding: 0;
  position: relative;
  top: -3px;
}
.nav-container .burger i {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 2px;
  color: #3C2869;
  font: bold 14px/0.4 Helvetica;
  text-transform: uppercase;
  text-indent: -55px;
  background: #3C2869;
  transition: all 0.2s ease-out;
}
.nav-container .burger i:before, .nav-container .burger i:after {
  content: "";
  width: 18px;
  height: 2px;
  background: #3C2869;
  position: absolute;
  left: 0;
  transition: all 0.2s ease-out;
}
.nav-container .burger i:before {
  top: -5px;
}
@media (min-width: 1500px) {
  .nav-container .burger i:before {
    top: -6px;
  }
}
.nav-container .burger i:after {
  bottom: -5px;
}
@media (min-width: 1500px) {
  .nav-container .burger i:after {
    bottom: -6px;
  }
}
.nav-container .burger.active i {
  background: transparent;
}
.nav-container .burger.active i:before {
  top: 0;
  transform: rotateZ(45deg);
}
.nav-container .burger.active i:after {
  bottom: 0;
  transform: rotateZ(-45deg);
}
body.dark-nav-links .nav-container .burger i, body.dark-nav-links-menu .nav-container .burger i {
  background: #fff;
}
body.dark-nav-links .nav-container .burger i:before, body.dark-nav-links .nav-container .burger i:after, body.dark-nav-links-menu .nav-container .burger i:before, body.dark-nav-links-menu .nav-container .burger i:after {
  background: #fff;
}
body.dark-nav-links .nav-container .burger.active i, body.dark-nav-links-menu .nav-container .burger.active i {
  background: transparent;
}

body.vungle-sdk .nav-container:not(.-opaque) .image .light-logo {
  display: block;
}
body.vungle-sdk .nav-container:not(.-opaque) .image .dark-logo {
  display: none;
}

.component-parallax-text-scroll {
  background-repeat: no-repeat;
  background-size: 50% auto;
  background-position: -10% 110%;
  max-height: 75vh;
}
@media (min-width: 768px) {
  .component-parallax-text-scroll {
    background-size: 50% auto;
    background-position: bottom left;
    height: 70vw;
    background-image: none !important;
    max-height: none;
  }
}
@media (min-width: 1200px) {
  .component-parallax-text-scroll {
    height: 82vw;
  }
}
@media (min-width: 1500px) {
  .component-parallax-text-scroll {
    height: 115vh;
    background-position: center left;
  }
}
.component-parallax-text-scroll .row {
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (min-width: 768px) {
  .component-parallax-text-scroll .row {
    flex-direction: row;
  }
}
.component-parallax-text-scroll .row > div {
  overflow: hidden;
}
.component-parallax-text-scroll .row > div:first-child {
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .component-parallax-text-scroll .row > div:first-child {
    background-image: none !important;
  }
}
@media (min-width: 768px) {
  .component-parallax-text-scroll .row > div:first-child {
    background-size: 120%;
    background-position: 100% -41%;
  }
}
@media (min-width: 1200px) {
  .component-parallax-text-scroll .row > div:first-child {
    background-size: 115%;
    background-position: 100% 200%;
  }
}
@media (min-width: 1500px) {
  .component-parallax-text-scroll .row > div:first-child {
    background-size: auto;
    background-position: 100% 20%;
  }
}
.component-parallax-text-scroll .row > div .intro-text {
  padding: 30px 25px;
}
@media (min-width: 768px) {
  .component-parallax-text-scroll .row > div .intro-text {
    padding: 60px;
  }
}
@media (min-width: 992px) {
  .component-parallax-text-scroll .row > div .intro-text {
    padding: 80px 60px;
  }
}
@media (min-width: 1200px) {
  .component-parallax-text-scroll .row > div .intro-text {
    width: 85%;
    padding: 130px 0 130px 100px;
  }
}
@media (min-width: 1500px) {
  .component-parallax-text-scroll .row > div .intro-text {
    width: 70%;
    padding: 130px 0 130px 130px;
  }
}
.component-parallax-text-scroll .row > div .intro-text h2 {
  width: 95%;
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .component-parallax-text-scroll .row > div .intro-text h2 {
    font-size: 35px;
  }
}
@media (min-width: 992px) {
  .component-parallax-text-scroll .row > div .intro-text h2 {
    font-size: 45px;
  }
}
@media (min-width: 1200px) {
  .component-parallax-text-scroll .row > div .intro-text h2 {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .component-parallax-text-scroll .row > div:last-child {
    max-height: 420px;
  }
}
.component-parallax-text-scroll .row > div .parallax-container {
  position: relative;
  top: -45%;
  left: 50%;
  min-width: 468px;
}
@media (min-width: 768px) {
  .component-parallax-text-scroll .row > div .parallax-container {
    left: 15%;
    min-width: 573px;
    max-height: none;
  }
}
@media (min-width: 992px) {
  .component-parallax-text-scroll .row > div .parallax-container {
    min-width: 800px;
  }
}
@media (min-width: 1500px) {
  .component-parallax-text-scroll .row > div .parallax-container {
    left: 0;
  }
}
.component-parallax-text-scroll .row > div .parallax-container .parallax-content .heading1 {
  font-size: 100px;
  font-size: 5.2083333333vw;
  line-height: 1.05em;
  font-weight: 700;
}
@media (max-width: 576px) {
  .component-parallax-text-scroll .row > div .parallax-container .parallax-content .heading1 {
    font-size: 30px;
  }
}
@media (min-width: 1920px) {
  .component-parallax-text-scroll .row > div .parallax-container .parallax-content .heading1 {
    font-size: 100px;
  }
}

.component-post-content {
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.7em;
  padding: 30px;
}
.component-post-content img {
  width: 100%;
  height: auto;
}
.component-post-content a {
  text-decoration: underline;
  transition: color 0.3s;
  color: #6E7DFF;
}
.component-post-content a:hover {
  color: #FFD700;
}
.component-post-content .heading {
  font-family: "PxGrotesk";
  font-size: 55px;
  font-size: 2.8645833333vw;
  font-weight: 700;
  line-height: 1.2em;
  margin-bottom: 5%;
}
@media (max-width: 872.7272727273px) {
  .component-post-content .heading {
    font-size: 25px;
  }
}
@media (min-width: 1920px) {
  .component-post-content .heading {
    font-size: 55px;
  }
}
.component-post-content .date {
  color: #AEA3C0;
}
.component-post-content p {
  margin-bottom: 1.8em;
}
@media (min-width: 768px) {
  .component-post-content {
    max-width: 815px;
    padding: 4.6% 30px;
  }
}
.component-post-content .careers-page-content .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  z-index: 1;
}
.modal .component-post-content .careers-page-content .header {
  background-color: #fff;
}
.component-post-content .careers-page-content .header .heading2, .component-post-content .careers-page-content .header .component-text.-text_content h2, .component-text.-text_content .component-post-content .careers-page-content .header h2 {
  margin-bottom: 0;
  font-size: 30px;
  font-size: 1.5625vw;
}
@media (max-width: 1280px) {
  .component-post-content .careers-page-content .header .heading2, .component-post-content .careers-page-content .header .component-text.-text_content h2, .component-text.-text_content .component-post-content .careers-page-content .header h2 {
    font-size: 20px;
  }
}
@media (min-width: 1920px) {
  .component-post-content .careers-page-content .header .heading2, .component-post-content .careers-page-content .header .component-text.-text_content h2, .component-text.-text_content .component-post-content .careers-page-content .header h2 {
    font-size: 30px;
  }
}
.component-post-content .careers-page-content .header .links {
  display: flex;
  height: 45px;
  padding-right: 20px;
}
@media (min-width: 1200px) {
  .component-post-content .careers-page-content .header .links {
    padding-right: 40px;
  }
}
.component-post-content .careers-page-content .header .links .close-modal {
  display: none;
}
.component-post-content .careers-page-content .header .btn {
  text-decoration: none;
}
.component-post-content .careers-page-content .header .btn:hover {
  text-decoration: none;
  box-shadow: none;
  color: #3C2869;
}
.component-post-content .careers-page-content .content ul {
  margin-bottom: 3em;
}
.component-post-content .careers-page-content .content p {
  margin-bottom: 1em;
}
.component-post-content .careers-page-content .details {
  display: flex;
  margin: 20px 0;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.modal .component-post-content .careers-page-content .details {
  background-color: #fff;
}
.component-post-content .careers-page-content .details > * {
  text-transform: capitalize;
}
.component-post-content .careers-page-content .details > *:first-child {
  margin-right: 30px;
}
.component-post-content .careers-page-content .details > * span {
  color: #BEBEBE;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  display: block;
}
@media (min-width: 768px) {
  .component-post-content .careers-page-content .details > * span {
    display: inline;
  }
}
.modal .component-post-content {
  max-width: none;
  margin: 0;
}
.modal .component-post-content .content {
  overflow: auto;
}

.et_monarch .et_social_hide_sidebar {
  display: none !important;
}
.et_monarch .et_social_circle.et_social_sidebar_networks {
  left: 4%;
  transform: translate3d(-40px, 0, 0);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s, left 0.3s;
}
@media (min-width: 1200px) {
  .et_monarch .et_social_circle.et_social_sidebar_networks {
    left: 7%;
  }
}
@media (min-width: 1500px) {
  .et_monarch .et_social_circle.et_social_sidebar_networks {
    left: 9.5%;
  }
}
.et_monarch .et_social_circle.et_social_sidebar_networks:before {
  content: "Share:";
  position: absolute;
  top: -35px;
  color: #aea3c0;
  font-size: 16px;
}
.et_monarch .et_social_circle.et_social_sidebar_networks.-in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.component-post-filter {
  padding: 30px;
  background-color: #FAF5FA;
}
@media (min-width: 768px) {
  .component-post-filter {
    padding-top: 4em;
    padding-bottom: 4em;
  }
}
.component-post-filter .wide-cards {
  overflow: visible;
}
.component-post-filter .wide-cards .item {
  max-height: 0;
  min-height: 0;
  transition: max-height 0.5s;
  margin: 0;
  overflow: hidden;
}
.component-post-filter .wide-cards .item.-show {
  max-height: 400px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .component-post-filter .wide-cards .item.-show {
    max-height: 200px;
  }
}
.component-post-filter .wide-cards .item .role, .component-post-filter .wide-cards .item .department, .component-post-filter .wide-cards .item .location {
  padding-right: 5px;
  line-height: 1.4em;
}
.component-post-filter .wide-cards .item .role {
  font-weight: 400;
}
@media (max-width: 767px) {
  .component-post-filter .wide-cards .item .role {
    text-align: center;
    padding-bottom: 10px;
  }
}
.component-post-filter > .inner .loading {
  text-align: center;
  display: none;
}
.component-post-filter > .inner.-loading .loading {
  display: block;
}
.component-post-filter > .inner.-loading .career-search, .component-post-filter > .inner.-loading .career-results {
  display: none;
}
.component-post-filter .heading {
  margin-top: 2em;
}
.component-post-filter .button-container {
  margin-bottom: 3em;
}
.component-post-filter form > * {
  font-size: 24px;
}
@media (min-width: 768px) {
  .component-post-filter form > * {
    font-size: 24px;
  }
}
.component-post-filter form label {
  color: #14CDC8;
  font-weight: 400;
  margin-right: 5px;
}
.component-post-filter form .select-wrapper {
  position: relative;
  display: inline-block;
}
.component-post-filter form .select-wrapper .select-label {
  margin-right: 10px;
  font-weight: 700;
  padding-right: 20px;
}
.component-post-filter form .select-wrapper .select-label:after {
  font-family: "ionicons";
  display: inline-block;
  content: "";
  color: #bebebe;
  font-weight: 300;
  position: absolute;
  right: 5px;
  z-index: 0;
}
.component-post-filter form .select-wrapper select {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
  z-index: 1;
  opacity: 0;
}

#career-modal-inner .loading {
  display: inline-block;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
#career-modal-inner iframe {
  height: 72vh;
  overflow: auto;
  background-color: #f3f3f3;
  width: 50%;
  min-width: 305px;
}

.single-job-page .modal-content {
  box-shadow: none;
  border: none;
}
.single-job-page .component .component-text {
  padding: 0;
  box-shadow: none;
}
.single-job-page .loader-container {
  display: flex;
  justify-content: center;
}
.single-job-page #career-modal-inner iframe {
  width: 100%;
}

.component-slider.-margin-top {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .component-slider.-margin-top {
    margin-top: 8%;
  }
}
.component-slider.-margin-bottom {
  margin-bottom: 65px;
}
@media (min-width: 768px) {
  .component-slider.-margin-bottom {
    margin-bottom: 8%;
  }
}
.component-slider.-dots-dark .slick-dots li button:before {
  color: #3C2869;
}
.component-slider.-dots-dark .slick-dots li button:active {
  color: #3C2869;
}
.component-slider.-dots-dark .slick-dots li.slick-active button::before {
  color: #3C2869;
}
.bg-colour-purple-vungle .component-slider.-dots-dark .slick-dots li button:before {
  color: #fff;
}
.bg-colour-purple-vungle .component-slider.-dots-dark .slick-dots li button:active {
  color: #fff;
}
.bg-colour-purple-vungle .component-slider.-dots-dark .slick-dots li.slick-active button::before {
  color: #fff;
}
.component-slider .slick-dots {
  position: absolute;
  top: 100%;
  height: 50px;
  bottom: auto;
}
.component-slider .slick-dots li button:before {
  opacity: 0.4;
  color: #3C2869;
}
.component-slider .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #3C2869;
}
.component-slider .slick-next, .component-slider .slick-prev {
  display: none !important;
  background: none;
  border: none;
  color: transparent;
  width: 50px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  border-radius: 100%;
  background: white;
  height: 50px;
}
@media (min-width: 768px) {
  .component-slider .slick-next, .component-slider .slick-prev {
    display: inline-block !important;
  }
}
.component-slider .slick-next:before, .component-slider .slick-prev:before {
  display: none !important;
  content: "" !important;
}
.component-slider .slick-next:after, .component-slider .slick-prev:after {
  top: 0;
  font-family: "Ionicons";
  font-size: 35px;
  font-size: 1.8229166667vw;
  color: #3C2869 !important;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
@media (max-width: 1097.1428571429px) {
  .component-slider .slick-next:after, .component-slider .slick-prev:after {
    font-size: 20px;
  }
}
@media (min-width: 1920px) {
  .component-slider .slick-next:after, .component-slider .slick-prev:after {
    font-size: 35px;
  }
}
@media (min-width: 768px) {
  .component-slider .slick-next, .component-slider .slick-prev {
    display: block;
  }
}
.component-slider .slick-next {
  right: -30px;
}
.component-slider .slick-next:after {
  content: "";
}
.component-slider .slick-prev {
  left: -30px;
}
.component-slider .slick-prev:after {
  content: "";
}
.component-slider.-article {
  text-align: center;
  position: relative;
  padding: 50px 0 100px;
}
@media (min-width: 768px) {
  .component-slider.-article {
    padding: 65px 0 120px;
  }
}
@media (min-width: 992px) {
  .component-slider.-article {
    padding: 133px 0 200px;
  }
}
@media (min-width: 1200px) {
  .component-slider.-article {
    padding: 120px 0 214px;
  }
}
.component-slider.-article .heading {
  color: #fff;
  margin-bottom: 5%;
}
.component-slider.-article .slider-container .slide-container .slide-centre {
  width: 94%;
}
@media (min-width: 992px) {
  .component-slider.-article .slider-container .slide-container .slide-centre {
    margin: 0 auto;
    width: 86%;
  }
}
.component-slider.-article .slider-container .slide-container .slide-centre .slider-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fff;
  position: relative;
  min-height: 430px;
}
@media (min-width: 992px) {
  .component-slider.-article .slider-container .slide-container .slide-centre .slider-block {
    flex-direction: row;
    min-height: 404px;
  }
}
@media (min-width: 1200px) {
  .component-slider.-article .slider-container .slide-container .slide-centre .slider-block {
    min-height: 551px;
  }
}
.component-slider.-article .slider-container .slide-container .slide-centre .slider-block .article-image {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding-bottom: 75%;
  position: relative;
}
@media (min-width: 768px) {
  .component-slider.-article .slider-container .slide-container .slide-centre .slider-block .article-image {
    min-height: auto;
    padding-bottom: 62%;
  }
}
@media (min-width: 992px) {
  .component-slider.-article .slider-container .slide-container .slide-centre .slider-block .article-image {
    width: 48%;
    padding-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .component-slider.-article .slider-container .slide-container .slide-centre .slider-block .article-image {
    width: 50%;
  }
}
.component-slider.-article .slider-container .slide-container .slide-centre .slider-block .article-image .author-content {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 15px;
  left: 18px;
  z-index: 2;
}
@media (min-width: 768px) {
  .component-slider.-article .slider-container .slide-container .slide-centre .slider-block .article-image .author-content {
    bottom: 30px;
    left: 35px;
  }
}
@media (min-width: 992px) {
  .component-slider.-article .slider-container .slide-container .slide-centre .slider-block .article-image .author-content {
    left: 30px;
  }
}
@media (min-width: 1500px) {
  .component-slider.-article .slider-container .slide-container .slide-centre .slider-block .article-image .author-content {
    bottom: 40px;
    left: 40px;
  }
}
.component-slider.-article .slider-container .slide-container .slide-centre .slider-block .article-image .author-content img {
  display: block;
}
@media (min-width: 992px) {
  .component-slider.-article .slider-container .slide-container .slide-centre .slider-block .article-image .author-content img {
    display: none;
  }
}
@media (min-width: 1200px) {
  .component-slider.-article .slider-container .slide-container .slide-centre .slider-block .article-image .author-content img {
    display: block;
  }
}
.component-slider.-article .slider-container .slide-container .slide-centre .slider-block .article-image .author-content .name {
  font-size: 16px;
  font-weight: 700;
  padding-left: 20px;
  color: #fff;
}
@media (min-width: 768px) {
  .component-slider.-article .slider-container .slide-container .slide-centre .slider-block .article-image .author-content .name {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  .component-slider.-article .slider-container .slide-container .slide-centre .slider-block .article-image .author-content .name {
    font-size: 20px;
  }
}
.component-slider.-article .slider-container .slide-container .slide-centre .slider-block .article-image .gradient-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.component-slider.-article .slider-container .slide-container .slide-centre .slider-block .article-image .gradient-overlay.-bg-colour-green-vungle {
  background-image: linear-gradient(to top, rgba(20, 205, 200, 0.7), rgba(20, 205, 200, 0));
}
.component-slider.-article .slider-container .slide-container .slide-centre .slider-block .article-image .gradient-overlay.-bg-colour-red-vungle {
  background-image: linear-gradient(to top, rgba(255, 90, 65, 0.7), rgba(255, 90, 65, 0));
}
.component-slider.-article .slider-container .slide-container .slide-centre .slider-block .article-image .gradient-overlay.-bg-colour-blue-vungle {
  background-image: linear-gradient(to top, rgba(110, 125, 255, 0.7), rgba(110, 125, 255, 0));
}
.component-slider.-article .slider-container .slide-container .slide-centre .slider-block .article-image .gradient-overlay.-bg-colour-pink-vungle {
  background-image: linear-gradient(to top, rgba(255, 210, 225, 0.7), rgba(255, 210, 225, 0));
}
.component-slider.-article .slider-container .slide-container .slide-centre .slider-block .article-image .gradient-overlay.-bg-colour-yellow-vungle {
  background-image: linear-gradient(to top, rgba(255, 215, 0, 0.7), rgba(255, 215, 0, 0));
}
.component-slider.-article .slider-container .slide-container .slide-centre .slider-block .article-image .gradient-overlay.-bg-colour-purple-vungle {
  background-image: linear-gradient(to top, rgba(60, 40, 105, 0.7), rgba(60, 40, 105, 0));
}
.component-slider.-article .slider-container .slide-container .slide-centre .slider-block .article-image .gradient-overlay.-bg-colour-lightblue-vungle {
  background-image: linear-gradient(to top, rgba(205, 245, 255, 0.7), rgba(205, 245, 255, 0));
}
.component-slider.-article .slider-container .slide-container .slide-centre .slider-block .content {
  text-align: left;
  padding: 25px 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 215px;
}
@media (min-width: 768px) {
  .component-slider.-article .slider-container .slide-container .slide-centre .slider-block .content {
    padding: 40px;
    min-height: 467px;
  }
}
@media (min-width: 992px) {
  .component-slider.-article .slider-container .slide-container .slide-centre .slider-block .content {
    min-height: auto;
    width: 52%;
    padding: 30px;
  }
}
@media (min-width: 1200px) {
  .component-slider.-article .slider-container .slide-container .slide-centre .slider-block .content {
    width: 50%;
    padding: 40px 45px;
  }
}
.component-slider.-article .slider-container .slide-container .slide-centre .slider-block .content .published-on {
  display: flex;
  align-items: center;
  height: 20px;
  font-size: 16px;
  color: #a7a7a7;
}
@media (min-width: 768px) {
  .component-slider.-article .slider-container .slide-container .slide-centre .slider-block .content .published-on {
    height: 23px;
  }
}
.component-slider.-article .slider-container .slide-container .slide-centre .slider-block .content .published-on .published-on-text {
  padding-right: 17px;
}
@media (min-width: 768px) {
  .component-slider.-article .slider-container .slide-container .slide-centre .slider-block .content .published-on .published-on-text {
    padding-right: 25px;
  }
}
@media (min-width: 1200px) {
  .component-slider.-article .slider-container .slide-container .slide-centre .slider-block .content .published-on .published-on-text {
    padding-right: 17px;
  }
}
.component-slider.-article .slider-container .slide-container .slide-centre .slider-block .content .published-on img {
  height: 100%;
  width: auto;
}
.component-slider.-article .slider-container .slide-container .slide-centre .slider-block .content .slide-text {
  width: 100%;
  color: #3C2869;
}
.component-slider.-article .slider-container .slide-container .slide-centre .slider-block .content .slide-text.body-text {
  color: #888;
  display: none;
  font-size: 18px;
  line-height: 1.45em;
}
@media (min-width: 768px) {
  .component-slider.-article .slider-container .slide-container .slide-centre .slider-block .content .slide-text.body-text {
    display: block;
    padding-bottom: 135px;
  }
}
@media (min-width: 992px) {
  .component-slider.-article .slider-container .slide-container .slide-centre .slider-block .content .slide-text.body-text {
    padding-bottom: 85px;
  }
}
@media (min-width: 1200px) {
  .component-slider.-article .slider-container .slide-container .slide-centre .slider-block .content .slide-text.body-text {
    padding-bottom: 155px;
  }
}
@media (min-width: 1500px) {
  .component-slider.-article .slider-container .slide-container .slide-centre .slider-block .content .slide-text.body-text {
    padding-bottom: 175px;
    font-size: 20px;
  }
}
.component-slider.-article .slider-container .slide-container .slide-centre .slider-block .content .slide-text.button {
  position: absolute;
  bottom: 25px;
}
@media (min-width: 768px) {
  .component-slider.-article .slider-container .slide-container .slide-centre .slider-block .content .slide-text.button {
    bottom: 40px;
  }
}
@media (min-width: 992px) {
  .component-slider.-article .slider-container .slide-container .slide-centre .slider-block .content .slide-text.button {
    bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .component-slider.-article .slider-container .slide-container .slide-centre .slider-block .content .slide-text.button {
    bottom: 40px;
  }
}
.component-slider.-article .slider-container .slide-container .slide-centre .slider-block .content .slide-text.button .btn:not(.-mobile) {
  display: none;
}
@media (min-width: 768px) {
  .component-slider.-article .slider-container .slide-container .slide-centre .slider-block .content .slide-text.button .btn:not(.-mobile) {
    display: inline-block;
  }
}
.component-slider.-article .slider-container .slide-container .slide-centre .slider-block .content .slide-text.button .btn.-mobile {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  padding: 0;
  margin-top: 10px;
}
.component-slider.-article .slider-container .slide-container .slide-centre .slider-block .content .slide-text.button .btn.-mobile:after {
  left: 0;
  top: 50%;
  width: 35px;
  height: 10px;
}
@media (min-width: 768px) {
  .component-slider.-article .slider-container .slide-container .slide-centre .slider-block .content .slide-text.button .btn.-mobile {
    display: none;
  }
}
.component-slider.-article .slider-container .slide-container .slide-centre .slider-block .content .heading2, .component-slider.-article .slider-container .slide-container .slide-centre .slider-block .content .component-text.-text_content h2, .component-text.-text_content .component-slider.-article .slider-container .slide-container .slide-centre .slider-block .content h2 {
  padding: 30px 0 65px;
  margin: 0;
  font-size: 25px;
  line-height: 1.35em;
}
@media (min-width: 768px) {
  .component-slider.-article .slider-container .slide-container .slide-centre .slider-block .content .heading2, .component-slider.-article .slider-container .slide-container .slide-centre .slider-block .content .component-text.-text_content h2, .component-text.-text_content .component-slider.-article .slider-container .slide-container .slide-centre .slider-block .content h2 {
    padding: 50px 0 40px;
    font-size: 40px;
  }
}
@media (min-width: 992px) {
  .component-slider.-article .slider-container .slide-container .slide-centre .slider-block .content .heading2, .component-slider.-article .slider-container .slide-container .slide-centre .slider-block .content .component-text.-text_content h2, .component-text.-text_content .component-slider.-article .slider-container .slide-container .slide-centre .slider-block .content h2 {
    padding: 35px 0 30px;
    font-size: 25px;
  }
}
@media (min-width: 1200px) {
  .component-slider.-article .slider-container .slide-container .slide-centre .slider-block .content .heading2, .component-slider.-article .slider-container .slide-container .slide-centre .slider-block .content .component-text.-text_content h2, .component-text.-text_content .component-slider.-article .slider-container .slide-container .slide-centre .slider-block .content h2 {
    padding: 50px 0 40px;
    font-size: 35px;
  }
}
@media (min-width: 1500px) {
  .component-slider.-article .slider-container .slide-container .slide-centre .slider-block .content .heading2, .component-slider.-article .slider-container .slide-container .slide-centre .slider-block .content .component-text.-text_content h2, .component-text.-text_content .component-slider.-article .slider-container .slide-container .slide-centre .slider-block .content h2 {
    padding: 60px 0 40px;
    font-size: 40px;
  }
}
.component-slider.-article .slider-container .slide-container .slide-centre .author {
  margin-top: 4%;
  margin-bottom: 0;
}
.component-slider.-article .slider-container .slide-container .slide-centre .job-title {
  font-weight: 300;
}
.component-slider.-article .slick-next, .component-slider.-article .slick-prev {
  top: 50%;
  background-color: #FFD2E1;
}
.component-slider.-article .slick-prev {
  left: 8%;
  background-color: #fff;
}
.component-slider.-article .slick-next {
  right: 8%;
  background-color: #fff;
}
.component-slider.-article .slick-dots {
  margin-top: 4%;
}
.component-slider.-testimonial {
  padding: 20px 30px 50px;
  text-align: center;
  position: relative;
  line-height: 1.3em;
}
@media (min-width: 768px) {
  .component-slider.-testimonial {
    padding: 6% 14% 7% 14%;
  }
}
@media (min-width: 992px) {
  .component-slider.-testimonial {
    text-align: left;
  }
}
.component-slider.-testimonial .heading {
  margin-bottom: 5%;
  text-align: center;
}
.component-slider.-testimonial .slider-container .slide-container .slide-centre .slider-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #FFD2E1;
  border-radius: 15px;
  position: relative;
}
.component-slider.-testimonial .slider-container .slide-container .slide-centre .slider-block:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-top: 40px solid #FFD2E1;
  transition: all 0.2s;
  z-index: -1;
}
@media (max-width: 767px) {
  .component-slider.-testimonial .slider-container .slide-container .slide-centre .slider-block {
    padding: 30px 10px;
  }
}
@media (min-width: 768px) {
  .component-slider.-testimonial .slider-container .slide-container .slide-centre .slider-block {
    height: 200px;
  }
}
@media (min-width: 992px) {
  .component-slider.-testimonial .slider-container .slide-container .slide-centre .slider-block {
    height: auto;
  }
}
.component-slider.-testimonial .slider-container .slide-container .slide-centre .slider-block .slide-text {
  padding: 0 5%;
  font-weight: 300;
  font-size: 25px;
  width: 100%;
  margin-bottom: 0 !important;
  margin-top: 0 !important;
  letter-spacing: -0.9px;
}
@media (min-width: 992px) {
  .component-slider.-testimonial .slider-container .slide-container .slide-centre .slider-block .slide-text {
    width: 75%;
    font-size: 22px;
  }
}
@media (min-width: 1200px) {
  .component-slider.-testimonial .slider-container .slide-container .slide-centre .slider-block .slide-text {
    font-size: 30px;
  }
}
.component-slider.-testimonial .slider-container .slide-container .slide-centre .slider-block .img-responsive {
  width: 25%;
  max-width: 50%;
  border-radius: 0 15px 15px 0;
}
.component-slider.-testimonial .slider-container .slide-container .slide-centre .slider-block img {
  display: none;
}
@media (min-width: 992px) {
  .component-slider.-testimonial .slider-container .slide-container .slide-centre .slider-block img {
    display: block;
  }
}
.component-slider.-testimonial .slider-container .slide-container .slide-centre .author {
  margin-top: 34px;
  margin-bottom: 0;
  font-weight: 400;
}
@media (min-width: 768px) {
  .component-slider.-testimonial .slider-container .slide-container .slide-centre .author {
    margin-top: 35px;
  }
}
@media (min-width: 1500px) {
  .component-slider.-testimonial .slider-container .slide-container .slide-centre .author {
    margin-top: 60px;
  }
}
.component-slider.-testimonial .slider-container .slide-container .slide-centre .job-title {
  font-weight: 300;
  margin-top: 5px;
}
.component-slider.-testimonial .slider-container .slide-container .slide-centre .author, .component-slider.-testimonial .slider-container .slide-container .slide-centre .job-title {
  text-align: center;
}
.component-slider.-testimonial .slick-next, .component-slider.-testimonial .slick-prev {
  top: 35%;
  background-color: #3C2869;
}
@media (min-width: 768px) {
  .component-slider.-testimonial .slick-next, .component-slider.-testimonial .slick-prev {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .component-slider.-testimonial .slick-next, .component-slider.-testimonial .slick-prev {
    width: 40px;
    height: 40px;
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .component-slider.-testimonial .slick-next, .component-slider.-testimonial .slick-prev {
    width: 50px;
    height: 50px;
  }
}
.component-slider.-testimonial .slick-next:after, .component-slider.-testimonial .slick-prev:after {
  color: #FAF5FA !important;
}
.component-slider.-testimonial .slick-prev {
  left: -100px;
}
.component-slider.-testimonial .slick-next {
  right: -100px;
}
.component-slider.-logos {
  padding: 6% 0 7% 0;
  text-align: center;
}
.component-slider.-logos .heading {
  margin-bottom: 5%;
}
.component-slider.-logos .slick-slide {
  text-align: center;
  margin-top: 30px;
}
.component-slider.-logos .logo {
  display: inline-block;
  width: 100%;
  padding: 0 1%;
}
.component-slider.-logos .logo img {
  margin: 0 auto;
  width: 100px;
  max-width: 100%;
}
@media (min-width: 768px) {
  .component-slider.-logos .logo img {
    width: 150px;
  }
}
@media (min-width: 992px) {
  .component-slider.-logos .logo img {
    width: 120px;
  }
}
@media (min-width: 1200px) {
  .component-slider.-logos .logo img {
    width: 150px;
  }
}
@media (min-width: 1500px) {
  .component-slider.-logos .logo img {
    width: auto;
  }
}
.component-slider.-images .slide {
  position: relative;
  height: 250px;
}
@media (min-width: 768px) {
  .component-slider.-images .slide {
    height: 40vh;
  }
}
@media (min-width: 768px) {
  .component-slider.-images.-slides-to-show-1 .slide {
    height: 50vh;
  }
}
@media (min-width: 1200px) {
  .component-slider.-images.-slides-to-show-1 .slide {
    height: 85vh;
  }
}
@media (min-width: 768px) {
  .component-slider.-images.-slides-to-show-2 .slide {
    height: 75vh;
  }
}
@media (min-width: 768px) {
  .component-slider.-images.-slides-to-show-3 .slide {
    height: 65vh;
  }
}
@media (min-width: 768px) {
  .component-slider.-images.-slides-to-show-4 .slide {
    height: 50vh;
  }
}
.component-slider.-images .image-caption {
  position: absolute;
  bottom: 15px;
  left: 15px;
  transition: opacity 0.5s;
  opacity: 1;
  color: #fff;
  padding-left: 5px;
  font-family: "PxGrotesk";
}
.component-slider.-images .image-caption:before {
  content: "";
  font-family: Ionicons;
  font-size: 1.5em;
  color: #fff;
  position: relative;
  top: 3px;
  padding-right: 6px;
}
.component-slider.-images .slick-prev:after, .component-slider.-images .slick-next:after {
  color: #fff;
}
.component-slider.-images .slick-prev {
  left: 15px;
}
.component-slider.-images .slick-next {
  right: 15px;
}
.component-slider.-images.-images-case-study .slick-dots {
  position: absolute;
  bottom: 0;
  top: auto;
}
@media (max-width: 767px) {
  .component-slider.-images.-images-case-study .slide {
    background-image: none !important;
    height: auto;
  }
}
@media (min-width: 768px) {
  .component-slider.-images.-images-case-study .slide {
    min-height: 550px;
    height: 36vw !important;
  }
}
.component-slider.-images.-images-case-study .slide .mobile-image {
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .component-slider.-images.-images-case-study .slide .mobile-image {
    display: none;
  }
}
.component-slider.-images.-images-case-study .slide .case-study-caption {
  display: flex;
  justify-content: center;
  align-items: center;
  position: static;
  height: 80%;
  top: 10%;
  padding: 30px 30px 60px;
  background-color: #FAF5FA;
}
@media (min-width: 768px) {
  .component-slider.-images.-images-case-study .slide .case-study-caption {
    width: 300px;
    position: absolute;
    padding: 4%;
    opacity: 0;
    transform: scale(0.8, 0.8);
    transition: opacity 1s, transform 0.6s;
    background-color: #fff;
  }
}
@media (min-width: 992px) {
  .component-slider.-images.-images-case-study .slide .case-study-caption {
    width: 375px;
  }
}
@media (min-width: 1200px) {
  .component-slider.-images.-images-case-study .slide .case-study-caption {
    width: 400px;
  }
}
@media (min-width: 1500px) {
  .component-slider.-images.-images-case-study .slide .case-study-caption {
    width: 495px;
  }
}
@media (min-width: 768px) {
  .component-slider.-images.-images-case-study .slide .case-study-caption.right {
    right: 10%;
  }
}
@media (min-width: 1200px) {
  .component-slider.-images.-images-case-study .slide .case-study-caption.right {
    right: 7%;
  }
}
.component-slider.-images.-images-case-study .slide .case-study-caption.left {
  left: 7%;
}
.component-slider.-images.-images-case-study .slide .case-study-caption .heading4, .component-slider.-images.-images-case-study .slide .case-study-caption .grid-layout .component-text .heading1, .grid-layout .component-text .component-slider.-images.-images-case-study .slide .case-study-caption .heading1, .component-slider.-images.-images-case-study .slide .case-study-caption .grid-layout .component-text .heading2, .grid-layout .component-text .component-slider.-images.-images-case-study .slide .case-study-caption .heading2, .component-slider.-images.-images-case-study .slide .case-study-caption .grid-layout .component-text.-text_content h2, .grid-layout .component-text.-text_content .component-slider.-images.-images-case-study .slide .case-study-caption h2, .component-slider.-images.-images-case-study .slide .case-study-caption .grid-layout .component-text .heading3, .grid-layout .component-text .component-slider.-images.-images-case-study .slide .case-study-caption .heading3, .component-slider.-images.-images-case-study .slide .case-study-caption .grid-layout .component-text.-text_content h3, .grid-layout .component-text.-text_content .component-slider.-images.-images-case-study .slide .case-study-caption h3, .component-slider.-images.-images-case-study .slide .case-study-caption .grid-layout .component-text .heading4, .grid-layout .component-text .component-slider.-images.-images-case-study .slide .case-study-caption .heading4, .component-slider.-images.-images-case-study .slide .case-study-caption .grid-layout .component-text .heading5, .grid-layout .component-text .component-slider.-images.-images-case-study .slide .case-study-caption .heading5, .component-slider.-images.-images-case-study .slide .case-study-caption .grid-layout .component-text.-text_content h5, .grid-layout .component-text.-text_content .component-slider.-images.-images-case-study .slide .case-study-caption h5, .component-slider.-images.-images-case-study .slide .case-study-caption .grid-layout .component-text .heading6, .grid-layout .component-text .component-slider.-images.-images-case-study .slide .case-study-caption .heading6, .component-slider.-images.-images-case-study .slide .case-study-caption .component-text.-text_content h4, .component-text.-text_content .component-slider.-images.-images-case-study .slide .case-study-caption h4 {
  margin-bottom: 4%;
}
.component-slider.-images.-images-case-study .slide .case-study-caption .sub-title {
  margin-top: 2%;
  letter-spacing: 0.02em;
}
@media (max-width: 767px) {
  .component-slider.-images.-images-case-study .slide .case-study-caption .sub-title {
    font-size: 14px;
  }
}
.component-slider.-images.-images-case-study .slide .case-study-caption .content {
  line-height: 1.7em;
  color: #3C2869;
  max-height: 8.5em;
}
@media (min-width: 1200px) {
  .component-slider.-images.-images-case-study .slide .case-study-caption .content {
    font-size: 15px;
  }
}
.component-slider.-images.-images-case-study .slide .case-study-caption .content p:last-child {
  margin-bottom: 0;
}
.component-slider.-images.-images-case-study .slide .case-study-caption .stats {
  padding: 5% 0;
}
.component-slider.-images.-images-case-study .slide .case-study-caption .stats .stat-title {
  font-weight: 700;
}
.component-slider.-images.-images-case-study .slide .case-study-caption .stats .stat-sub-text {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.5em;
  padding-top: 11%;
  padding-right: 1em;
}
.component-slider.-images.-images-case-study .slide .case-study-caption .btn {
  margin: 30px 0 15px;
}
@media (min-width: 768px) {
  .component-slider.-images.-images-case-study .slide .case-study-caption .btn {
    margin: 2% 0;
  }
}
@media (min-width: 768px) {
  .component-slider.-images.-images-case-study .slick-slide.slick-current .case-study-caption {
    opacity: 1;
    transform: scale(1, 1);
    transition-delay: 0.8s;
  }
}
.component-slider.-images.-images-case-study .view-more-buttons {
  text-align: center;
  padding: 5% 0;
}
@media (min-width: 768px) {
  .component-slider.-images.-images-case-study .view-more-buttons {
    padding: 3.8% 0 0;
  }
}
@media (max-width: 767px) {
  .component-slider.-images.-has-view-more-buttons .case-study-caption {
    padding-bottom: 30px !important;
  }
}
.component-slider .slider-container[data-pnp-equate-height=".slide-container"] .slick-track {
  display: flex;
  align-items: center;
}
.component-slider.slider-grid-casestudies {
  padding: 60px 0;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .component-slider.slider-grid-casestudies {
    width: calc(100% - 160px);
    margin: 0 auto;
    padding: 80px 0;
  }
}
.component-slider.slider-grid-casestudies .heading {
  text-align: center;
  margin-bottom: 0;
}
.component-slider.slider-grid-casestudies .slider-container {
  margin: 35px 0;
}
@media (min-width: 992px) {
  .component-slider.slider-grid-casestudies .slider-container {
    margin: 40px 0;
  }
}
@media (min-width: 1500px) {
  .component-slider.slider-grid-casestudies .slider-container {
    margin: 60px 0;
  }
}
.component-slider.slider-grid-casestudies .slider-container .slick-prev, .component-slider.slider-grid-casestudies .slider-container .slick-next {
  display: none !important;
}
@media (min-width: 992px) {
  .component-slider.slider-grid-casestudies .slider-container .slick-prev, .component-slider.slider-grid-casestudies .slider-container .slick-next {
    width: 40px;
    height: 40px;
    display: inline-block !important;
    background-color: #3C2869;
  }
  .component-slider.slider-grid-casestudies .slider-container .slick-prev:after, .component-slider.slider-grid-casestudies .slider-container .slick-next:after {
    color: #fff !important;
  }
}
@media (min-width: 1200px) {
  .component-slider.slider-grid-casestudies .slider-container .slick-prev, .component-slider.slider-grid-casestudies .slider-container .slick-next {
    width: 50px;
    height: 50px;
  }
}
.component-slider.slider-grid-casestudies .slider-container .slick-prev {
  left: -80px;
}
.component-slider.slider-grid-casestudies .slider-container .slick-next {
  right: -80px;
}
.component-slider.slider-grid-casestudies .slider-container .slide {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .component-slider.slider-grid-casestudies .slider-container .slide {
    flex-direction: row;
    align-items: stretch;
  }
}
.component-slider.slider-grid-casestudies .slider-container .slide .main-section {
  width: 100%;
  background-color: #FFD2E1;
  padding: 0 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .component-slider.slider-grid-casestudies .slider-container .slide .main-section {
    width: 72%;
    padding: 0 30px 30px;
  }
}
@media (min-width: 992px) {
  .component-slider.slider-grid-casestudies .slider-container .slide .main-section {
    padding: 0 40px 40px;
  }
}
@media (min-width: 1200px) {
  .component-slider.slider-grid-casestudies .slider-container .slide .main-section {
    padding: 0 70px 70px;
  }
}
.component-slider.slider-grid-casestudies .slider-container .slide .main-section img {
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .component-slider.slider-grid-casestudies .slider-container .slide .main-section img {
    margin-bottom: 60px;
  }
}
.component-slider.slider-grid-casestudies .slider-container .slide .main-section .text-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .component-slider.slider-grid-casestudies .slider-container .slide .main-section .text-content {
    flex-direction: row;
  }
}
.component-slider.slider-grid-casestudies .slider-container .slide .main-section .text-content .slide-header {
  width: 100%;
  text-align: left;
  margin-bottom: 7px;
}
@media (min-width: 768px) {
  .component-slider.slider-grid-casestudies .slider-container .slide .main-section .text-content .slide-header {
    margin-bottom: 0;
    width: 42%;
  }
}
.component-slider.slider-grid-casestudies .slider-container .slide .main-section .text-content .slide-header .heading {
  text-align: left;
  display: inline-block;
  line-height: 1.2em;
}
.component-slider.slider-grid-casestudies .slider-container .slide .main-section .text-content .slide-intro-text {
  width: 100%;
}
@media (min-width: 768px) {
  .component-slider.slider-grid-casestudies .slider-container .slide .main-section .text-content .slide-intro-text {
    width: 58%;
  }
}
.component-slider.slider-grid-casestudies .slider-container .slide .stats-section {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
}
@media (min-width: 768px) {
  .component-slider.slider-grid-casestudies .slider-container .slide .stats-section {
    width: 28%;
    flex-direction: column;
  }
}
.component-slider.slider-grid-casestudies .slider-container .slide .stats-section > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px 50%;
  width: 50%;
  font-size: 25px;
  font-size: 1.3020833333vw;
  line-height: 1.5em;
  height: 0;
  position: relative;
}
@media (max-width: 998.4px) {
  .component-slider.slider-grid-casestudies .slider-container .slide .stats-section > div {
    font-size: 13px;
  }
}
@media (min-width: 1920px) {
  .component-slider.slider-grid-casestudies .slider-container .slide .stats-section > div {
    font-size: 25px;
  }
}
@media (min-width: 768px) {
  .component-slider.slider-grid-casestudies .slider-container .slide .stats-section > div {
    height: 50%;
    width: 100%;
  }
}
.component-slider.slider-grid-casestudies .slider-container .slide .stats-section > div.stat-1 {
  background-color: #3C2869;
  color: #fff;
}
.component-slider.slider-grid-casestudies .slider-container .slide .stats-section > div.stat-2 {
  background-color: #fff;
}
.component-slider.slider-grid-casestudies .slider-container .slide .stats-section > div .stat-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.component-slider.slider-grid-casestudies .slider-container .slide .stats-section > div .stat-content img {
  width: 65%;
  height: auto;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .component-slider.slider-grid-casestudies .slider-container .slide .stats-section > div .stat-content img {
    margin: 30px auto;
  }
}
@media (min-width: 1200px) {
  .component-slider.slider-grid-casestudies .slider-container .slide .stats-section > div .stat-content img {
    margin: 40px auto;
  }
}
.component-slider.slider-grid-casestudies .btn.-yellow {
  margin: 35px auto 0;
}
@media (min-width: 768px) {
  .component-slider.slider-grid-casestudies .btn.-yellow {
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  .component-slider.slider-grid-casestudies .btn.-yellow {
    margin: 20px auto 0;
  }
}
@media (min-width: 1500px) {
  .component-slider.slider-grid-casestudies .btn.-yellow {
    margin: 15px auto 0;
  }
}
.component-slider.slider-grid-casestudies .slick-dots {
  top: calc(100% + 22px);
}

.component-social-and-careers-grid .main-container {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .component-social-and-careers-grid .main-container {
    flex-direction: row;
  }
}
.component-social-and-careers-grid .main-container .left-column {
  min-height: 50vw;
  width: 100%;
}
@media (min-width: 1200px) {
  .component-social-and-careers-grid .main-container .left-column {
    min-height: 90vh;
    width: 25%;
  }
}
.component-social-and-careers-grid .main-container .left-column > div {
  height: 100%;
}
.component-social-and-careers-grid .main-container .right-column {
  display: flex;
  flex-direction: row;
  min-height: 130vw;
  width: 100%;
}
@media (min-width: 1200px) {
  .component-social-and-careers-grid .main-container .right-column {
    flex-direction: column;
    min-height: 90vh;
    width: 75%;
  }
}
.component-social-and-careers-grid .main-container .right-column > div {
  width: 50%;
}
@media (min-width: 1200px) {
  .component-social-and-careers-grid .main-container .right-column > div {
    height: 50%;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .component-social-and-careers-grid .btn.-desktop {
    display: none;
  }
}
.component-social-and-careers-grid .btn.-mobile {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  padding: 0;
  margin-top: 10px;
}
.component-social-and-careers-grid .btn.-mobile:after {
  left: 0;
  top: 50%;
  width: 35px;
  height: 10px;
}
@media (min-width: 768px) {
  .component-social-and-careers-grid .btn.-mobile {
    display: none;
  }
}

.careers-container .careers-panel {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
@media (min-width: 1200px) {
  .careers-container .careers-panel {
    flex-direction: row;
  }
}
.careers-container .careers-panel .image-container {
  width: 100%;
  height: 40%;
  background-size: cover;
  background-position: center;
}
@media (min-width: 1200px) {
  .careers-container .careers-panel .image-container {
    width: 33.3333%;
    height: 100%;
  }
}
.careers-container .careers-panel .panel-content {
  width: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
  padding: 7.5%;
  height: 60%;
}
@media (min-width: 1200px) {
  .careers-container .careers-panel .panel-content {
    width: 66.6666%;
    height: 100%;
    padding: 6%;
  }
}
.careers-container .careers-panel .panel-content .text-content.-narrow {
  width: 100%;
}
@media (min-width: 1200px) {
  .careers-container .careers-panel .panel-content .text-content.-narrow {
    width: 50%;
  }
}
.careers-container .careers-panel .panel-content .text-content .heading {
  font-size: 20px;
}
@media (min-width: 768px) {
  .careers-container .careers-panel .panel-content .text-content .heading {
    font-size: 35px;
    margin-bottom: 16px;
  }
}
@media (min-width: 1200px) {
  .careers-container .careers-panel .panel-content .text-content .heading {
    font-size: 45px;
    margin-bottom: 26px;
  }
}
.careers-container .careers-panel .panel-content .text-content .intro {
  display: none;
}
@media (min-width: 768px) {
  .careers-container .careers-panel .panel-content .text-content .intro {
    display: block;
    font-size: 20px;
    font-size: 1.0416666667vw;
    line-height: 1.5em;
    margin-bottom: 22px;
  }
}
@media (min-width: 768px) and (max-width: 1728px) {
  .careers-container .careers-panel .panel-content .text-content .intro {
    font-size: 18px;
  }
}
@media (min-width: 768px) and (min-width: 1920px) {
  .careers-container .careers-panel .panel-content .text-content .intro {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .careers-container .careers-panel .panel-content .text-content .intro {
    margin-bottom: 32px;
  }
}
.careers-container .careers-panel .panel-content .text-content.-light .heading, .careers-container .careers-panel .panel-content .text-content.-light .intro {
  color: #fff !important;
}

.instagram-container .instagram-panel {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 7.5% 7.5% 0;
}
@media (min-width: 1200px) {
  .instagram-container .instagram-panel {
    align-items: center;
    flex-direction: row;
    padding: 50px 0 50px 50px;
  }
}
.instagram-container .instagram-panel .panel-content {
  width: 100%;
  padding: 0 0 20% 0;
}
@media (min-width: 1200px) {
  .instagram-container .instagram-panel .panel-content {
    width: 33.3333%;
    padding: 0 9% 0 0;
  }
}
.instagram-container .instagram-panel .panel-content .heading {
  font-size: 20px;
}
@media (min-width: 768px) {
  .instagram-container .instagram-panel .panel-content .heading {
    font-size: 35px;
    margin-bottom: 16px;
  }
}
@media (min-width: 1200px) {
  .instagram-container .instagram-panel .panel-content .heading {
    font-size: 45px;
    margin-bottom: 26px;
  }
}
.instagram-container .instagram-panel .panel-content .intro {
  display: none;
}
@media (min-width: 768px) {
  .instagram-container .instagram-panel .panel-content .intro {
    display: block;
    font-size: 20px;
    font-size: 1.0416666667vw;
    line-height: 1.5em;
    margin-bottom: 22px;
  }
}
@media (min-width: 768px) and (max-width: 1728px) {
  .instagram-container .instagram-panel .panel-content .intro {
    font-size: 18px;
  }
}
@media (min-width: 768px) and (min-width: 1920px) {
  .instagram-container .instagram-panel .panel-content .intro {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .instagram-container .instagram-panel .panel-content .intro {
    margin-bottom: 32px;
  }
}
.instagram-container .instagram-panel .panel-content.-light .heading, .instagram-container .instagram-panel .panel-content.-light .intro {
  color: #fff !important;
}
.instagram-container .instagram-panel .instagram-slider {
  width: 100%;
}
@media (min-width: 1200px) {
  .instagram-container .instagram-panel .instagram-slider {
    width: 66.6666%;
  }
}
.instagram-container .instagram-panel .instagram-slider .slick-list, .instagram-container .instagram-panel .instagram-slider .slick-track {
  height: 100%;
  top: 22px;
}
@media (min-width: 1200px) {
  .instagram-container .instagram-panel .instagram-slider .slick-list, .instagram-container .instagram-panel .instagram-slider .slick-track {
    top: 0;
  }
}
@media (min-width: 1200px) {
  .instagram-container .instagram-panel .instagram-slider .slide {
    height: 100%;
  }
}
.instagram-container .instagram-panel .instagram-slider .slide .img {
  margin: 15px 0 0 0;
}
@media (min-width: 1200px) {
  .instagram-container .instagram-panel .instagram-slider .slide .img {
    height: 100%;
    margin: 0 15px 0 0;
  }
}
.instagram-container .instagram-panel .instagram-slider .slide .img img {
  width: 100%;
  height: auto;
}
.instagram-container .instagram-panel .instagram-slider .slick-prev, .instagram-container .instagram-panel .instagram-slider .slick-next {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 50%;
}
@media (min-width: 1200px) {
  .instagram-container .instagram-panel .instagram-slider .slick-prev, .instagram-container .instagram-panel .instagram-slider .slick-next {
    top: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
  }
}
.instagram-container .instagram-panel .instagram-slider .slick-prev {
  top: 0;
  display: none !important;
}
@media (min-width: 768px) {
  .instagram-container .instagram-panel .instagram-slider .slick-prev {
    display: inline-block !important;
    cursor: url("../img/arrow-prev-up.png"), n-resize;
  }
}
@media (min-width: 1200px) {
  .instagram-container .instagram-panel .instagram-slider .slick-prev {
    left: 0;
    cursor: url("../img/arrow-prev.png"), w-resize;
  }
}
.instagram-container .instagram-panel .instagram-slider .slick-next {
  top: auto;
  bottom: 0;
  display: none !important;
}
@media (min-width: 768px) {
  .instagram-container .instagram-panel .instagram-slider .slick-next {
    display: inline-block !important;
    cursor: url("../img/arrow-next-down.png"), e-resize;
  }
}
@media (min-width: 1200px) {
  .instagram-container .instagram-panel .instagram-slider .slick-next {
    right: 0;
    cursor: url("../img/arrow-next.png"), e-resize;
  }
}

.spotify-panel {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  height: 100%;
  padding: 7.5%;
}
@media (min-width: 768px) {
  .spotify-panel {
    flex-direction: row-reverse;
    align-items: flex-start;
  }
}
@media (min-width: 1200px) {
  .spotify-panel {
    padding: 50px;
    flex-direction: column;
  }
}
.spotify-panel .cover-art {
  width: 50%;
  margin: 0 9% 0 0;
  -webkit-box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.24);
  -moz-box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.24);
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.24);
}
@media (min-width: 768px) {
  .spotify-panel .cover-art {
    margin: 0 0 0 9%;
  }
}
@media (min-width: 1200px) {
  .spotify-panel .cover-art {
    margin: 0;
    width: 100%;
  }
}
.spotify-panel .cover-art:hover img {
  box-shadow: 2px 2px 4px 0 rgba(107, 107, 107, 0.4);
}
.spotify-panel .cover-art img {
  width: 100%;
  height: auto;
  transition: all 0.5s;
}
.spotify-panel .panel-content {
  width: 50%;
  padding-right: 9%;
}
@media (max-width: 767px) {
  .spotify-panel .panel-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
@media (min-width: 1200px) {
  .spotify-panel .panel-content {
    width: 100%;
    padding-top: 110px;
    padding-right: 0;
  }
}
.spotify-panel .panel-content .heading {
  font-size: 20px;
}
@media (min-width: 768px) {
  .spotify-panel .panel-content .heading {
    font-size: 35px;
    margin-bottom: 16px;
  }
}
@media (min-width: 1200px) {
  .spotify-panel .panel-content .heading {
    font-size: 45px;
    margin-bottom: 26px;
  }
}
.spotify-panel .panel-content .intro {
  display: none;
}
@media (min-width: 768px) {
  .spotify-panel .panel-content .intro {
    display: block;
    font-size: 20px;
    font-size: 1.0416666667vw;
    line-height: 1.5em;
    margin-bottom: 22px;
  }
}
@media (min-width: 768px) and (max-width: 1728px) {
  .spotify-panel .panel-content .intro {
    font-size: 18px;
  }
}
@media (min-width: 768px) and (min-width: 1920px) {
  .spotify-panel .panel-content .intro {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .spotify-panel .panel-content .intro {
    margin-bottom: 32px;
  }
}
.spotify-panel .panel-content.-light .heading, .spotify-panel .panel-content.-light .intro {
  color: #fff !important;
}

.component-social {
  padding: 10% 30px;
}
@media (min-width: 768px) {
  .component-social {
    padding: 7%;
  }
}
.component-social li {
  margin: 0 1%;
}
.component-social .heading {
  margin-bottom: 10%;
}
@media (max-width: 767px) {
  .component-social .heading {
    font-size: 20px;
    margin-top: 5%;
  }
}
@media (min-width: 768px) {
  .component-social .heading {
    margin-bottom: 4%;
  }
}
.component-social .icon-container {
  transition: background-color 0.4s;
  background-color: #FFD700;
  cursor: pointer;
}
html.no-touch .component-social .icon-container:hover {
  background-color: #fff;
}
.component-social .icon-container a {
  height: 35px;
  width: 35px;
  position: relative;
  display: inline-block;
}
.component-social .icon-container i {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  background-repeat: no-repeat;
  margin-top: 1px;
}
.component-social .icon-container i.ion-social-facebook-new {
  background-image: url("../img/facebook.svg");
}
.component-social .icon-container i.ion-social-linkedin-new {
  background-image: url("../img/linkedin.svg");
}
.component-social .icon-container i.ion-social-github-new {
  background-image: url("../img/github.svg");
}
.component-social .icon-container i.ion-social-twitter-new {
  background-image: url("../img/twitter.svg");
}
.component-social .icon-container i.ion-social-instagram-new {
  background-image: url("../img/instagram.svg");
}

.component-text.-text_heading, .component-text.-text_subheading {
  text-align: center;
}
@media (max-width: 767px) {
  .component-text.-text_heading, .component-text.-text_subheading {
    padding: 0;
  }
}
@media (min-width: 768px) {
  .component-text.-text_heading .inner, .component-text.-text_subheading .inner {
    padding: 4em 0;
  }
}
@media (min-width: 1200px) {
  .component-text.-text_heading .inner, .component-text.-text_subheading .inner {
    padding: 4em 0 4.5em;
  }
}
.component-text.-text_heading .inner .text, .component-text.-text_subheading .inner .text {
  line-height: 1.7em;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .component-text.-text_heading .inner .text, .component-text.-text_subheading .inner .text {
    max-width: 60%;
  }
}
@media (min-width: 992px) {
  .component-text.-text_heading .inner .text, .component-text.-text_subheading .inner .text {
    max-width: 40%;
  }
}
@media (min-width: 1200px) {
  .component-text.-text_heading .inner .text, .component-text.-text_subheading .inner .text {
    max-width: 50%;
  }
}
@media (min-width: 1500px) {
  .component-text.-text_heading .inner .text, .component-text.-text_subheading .inner .text {
    max-width: 35%;
  }
}
.component-text.-text_heading .inner .btn, .component-text.-text_subheading .inner .btn {
  margin: 4% 0;
}
@media (max-width: 767px) {
  .component-text.-text_subheading {
    padding-bottom: 30px !important;
  }
}
@media (min-width: 768px) {
  .component-text.-text_subheading .inner {
    padding: 5em 0 3.5em;
  }
}
@media (min-width: 1200px) {
  .component-text.-text_subheading .inner {
    padding: 5em 0 3.5em;
  }
}
.component-text.-text_content a {
  text-decoration: underline;
}
.component-text.-text_content h2 {
  margin-top: 2em;
}
.component-text.-text_content h3 {
  margin-top: 2em;
}
.component-text.-text_content h4 {
  margin-top: 2em;
}
.component-text.-text_quote {
  padding: 6% 0 5%;
}
.component-text.-text_quote .text {
  text-align: center;
  position: relative;
}
.component-text.-text_quote .text .quote-inner {
  max-width: 80%;
  display: inline-block;
  line-height: 1.4em;
  font-weight: 400;
  padding: 2.3em 0;
}
@media (min-width: 768px) {
  .component-text.-text_quote .text .quote-inner {
    padding: 2.3em 2em;
    max-width: 60%;
  }
}
@media (min-width: 1200px) {
  .component-text.-text_quote .text .quote-inner {
    max-width: 80%;
  }
}
.component-text.-text_quote .text .down-chevron {
  position: absolute;
  top: 98%;
  color: transparent;
  left: 50%;
  transform: translateX(-50%);
  font-size: 90px;
  margin-top: -1px;
}
@media (min-width: 1500px) {
  .component-text.-text_quote .text .down-chevron {
    top: 99%;
  }
}
.component-text.-text_quote .text .down-chevron:before {
  line-height: 0;
}
.component-text.-text_quote .text.bg-colour-green-vungle .down-chevron {
  color: #14CDC8;
}
.component-text.-text_quote .text.bg-colour-red-vungle .down-chevron {
  color: #FF5A41;
}
.component-text.-text_quote .text.bg-colour-blue-vungle .down-chevron {
  color: #6E7DFF;
}
.component-text.-text_quote .text.bg-colour-pink-vungle .down-chevron {
  color: #FFD2E1;
}
.component-text.-text_quote .text.bg-colour-yellow-vungle .down-chevron {
  color: #FFD700;
}
.component-text.-text_quote .text.bg-colour-purple-vungle .down-chevron {
  color: #3C2869;
}
.component-text.-text_quote .text.bg-colour-lightblue-vungle .down-chevron {
  color: #3C2869;
}
.component-text.-text_quote .author-container {
  text-align: center;
  padding: 1.5em 0 1em;
}
@media (min-width: 768px) {
  .component-text.-text_quote .author-container {
    padding: 4em 0 1em;
  }
}
@media (min-width: 1200px) {
  .component-text.-text_quote .author-container {
    padding: 2.8em 0 1em;
  }
}
.component-text.-text_quote .author-container .author {
  font-size: 25px;
  font-size: 1.3020833333vw;
  font-weight: 400;
  margin-bottom: 0.1em;
}
@media (max-width: 1228.8px) {
  .component-text.-text_quote .author-container .author {
    font-size: 16px;
  }
}
@media (min-width: 1920px) {
  .component-text.-text_quote .author-container .author {
    font-size: 25px;
  }
}
.component-text.-text_quote .author-container .job-role {
  font-size: 18px;
  font-size: 0.9375vw;
}
@media (max-width: 1386.6666666667px) {
  .component-text.-text_quote .author-container .job-role {
    font-size: 13px;
  }
}
@media (min-width: 1920px) {
  .component-text.-text_quote .author-container .job-role {
    font-size: 18px;
  }
}
.component-text p:last-child {
  margin-bottom: 0;
}
.grid-layout .component-text {
  padding-left: 30px;
  padding-right: 30px;
}
@media (min-width: 768px) {
  .grid-layout .component-text {
    display: table;
    height: 100%;
    width: 100%;
  }
}
.grid-layout .component-text .inner {
  line-height: 1.6em;
  padding: 10% 0;
}
@media (min-width: 768px) {
  .grid-layout .component-text .inner {
    display: table-cell;
    vertical-align: middle;
  }
}
@media (min-width: 1500px) {
  .grid-layout .component-text .inner {
    padding-left: 8%;
    padding-right: 8%;
  }
}
.grid-layout .component-text .heading1, .grid-layout .component-text .heading2, .grid-layout .component-text.-text_content h2, .grid-layout .component-text .heading3, .grid-layout .component-text.-text_content h3, .grid-layout .component-text .heading4, .grid-layout .component-text.-text_content h4, .grid-layout .component-text.-text_content h5, .grid-layout .component-text .heading5, .grid-layout .component-text .heading6 {
  margin-top: 0;
  margin-bottom: 0.5em;
}
.component-text.-narrow {
  width: 100%;
  padding: 50px 30px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .component-text.-narrow {
    height: 200vw;
    max-height: 700px;
    background-size: 100%;
    background-position: bottom;
  }
}
@media (min-width: 768px) {
  .component-text.-narrow {
    width: 65%;
    padding: 0;
    height: auto;
  }
}
@media (min-width: 992px) {
  .component-text.-narrow {
    width: 72%;
  }
}
@media (min-width: 1200px) {
  .component-text.-narrow {
    width: 70%;
    max-width: 840px;
  }
}
@media (min-width: 1500px) {
  .component-text.-narrow {
    width: 50%;
  }
}
.component-text.-narrow .text {
  max-width: 100% !important;
}
.component-text.-narrow .text p {
  font-size: 18px;
  line-height: 1.4em;
}
@media (min-width: 768px) {
  .component-text.-narrow .text p {
    font-size: 25px;
  }
}
@media (min-width: 1200px) {
  .component-text.-narrow .text p {
    font-size: 30px;
  }
}
.component-text.-narrow h2 {
  font-size: 35px;
  line-height: 1.15em;
}
@media (min-width: 768px) {
  .component-text.-narrow h2 {
    font-size: 50px;
    margin-bottom: 17px;
  }
}
@media (min-width: 992px) {
  .component-text.-narrow h2 {
    font-size: 60px;
  }
}
@media (min-width: 1200px) {
  .component-text.-narrow h2 {
    font-size: 70px;
  }
}
@media (min-width: 1500px) {
  .component-text.-narrow h2 {
    font-size: 80px;
    margin-bottom: 53px;
  }
}

.component-timeline {
  display: flex;
}
.component-timeline .timeline-column {
  width: 100%;
  background-color: #3C2869;
  color: #fff;
  padding: 70px 25px 0 25px;
}
@media (min-width: 768px) {
  .component-timeline .timeline-column {
    width: 50%;
    padding: 80px 25px 0 25px;
  }
}
@media (min-width: 992px) {
  .component-timeline .timeline-column {
    width: 45%;
  }
}
@media (min-width: 1200px) {
  .component-timeline .timeline-column {
    width: 37%;
  }
}
@media (min-width: 1500px) {
  .component-timeline .timeline-column {
    width: 40%;
    padding: 120px 25px 0 25px;
  }
}
.component-timeline .timeline-column > .heading {
  text-align: left;
  padding-bottom: 40px;
}
@media (min-width: 1500px) {
  .component-timeline .timeline-column > .heading {
    text-align: center;
  }
}
.component-timeline .timeline-column .timeline-intro {
  width: 100%;
  margin: 0 auto 50px auto;
}
@media (min-width: 1500px) {
  .component-timeline .timeline-column .timeline-intro {
    width: 70%;
    text-align: center;
  }
}
.component-timeline .timeline-column .timeline-points-container {
  position: relative;
  padding-bottom: 70px;
}
@media (min-width: 768px) {
  .component-timeline .timeline-column .timeline-points-container {
    padding-bottom: 80px;
  }
}
@media (min-width: 1500px) {
  .component-timeline .timeline-column .timeline-points-container {
    padding-bottom: 120px;
  }
}
.component-timeline .timeline-column .timeline-points-container .year-container {
  position: relative;
  display: flex;
  z-index: 1;
}
@media (min-width: 1500px) {
  .component-timeline .timeline-column .timeline-points-container .year-container {
    justify-content: center;
  }
}
.component-timeline .timeline-column .timeline-points-container .year-container .year-title {
  background-color: #FFD2E1;
  color: #3C2869;
  padding: 0 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 20px;
  width: 88px;
}
.component-timeline .timeline-column .timeline-points-container .point-container {
  z-index: 1;
  position: relative;
  padding: 30px 0;
  display: inline-block;
  left: 35px;
  width: calc(100% - 40px);
}
@media (min-width: 1500px) {
  .component-timeline .timeline-column .timeline-points-container .point-container {
    width: 50%;
  }
}
.component-timeline .timeline-column .timeline-points-container .point-container .heading {
  font-size: 22px;
}
@media (min-width: 768px) {
  .component-timeline .timeline-column .timeline-points-container .point-container .heading {
    font-size: 25px;
  }
}
.component-timeline .timeline-column .timeline-points-container .point-container .point-description {
  font-size: 16px;
  line-height: 1.55em;
  padding-top: 12px;
}
@media (min-width: 1500px) {
  .component-timeline .timeline-column .timeline-points-container .point-container .point-description {
    font-size: 18px;
  }
}
@media (min-width: 1500px) {
  .component-timeline .timeline-column .timeline-points-container .point-container.-left {
    left: 10px;
  }
}
.component-timeline .timeline-column .timeline-points-container .point-container.-left .standard-point {
  flex-direction: row;
}
@media (min-width: 1500px) {
  .component-timeline .timeline-column .timeline-points-container .point-container.-left .standard-point {
    flex-direction: row-reverse;
  }
}
@media (min-width: 1500px) {
  .component-timeline .timeline-column .timeline-points-container .point-container.-left .standard-point .text-content {
    padding: 0 50px 0 0;
  }
}
@media (min-width: 1500px) {
  .component-timeline .timeline-column .timeline-points-container .point-container.-right {
    right: 0;
    left: 0;
    width: 100%;
    height: 240px;
  }
}
@media (min-width: 1500px) {
  .component-timeline .timeline-column .timeline-points-container .point-container.-right .associated-content-point {
    position: absolute;
    right: 0;
    padding-left: 0;
    width: 50%;
  }
}
@media (min-width: 1500px) {
  .component-timeline .timeline-column .timeline-points-container .point-container.-right .standard-point {
    width: 50%;
    position: absolute;
    right: 10px;
  }
}
.component-timeline .timeline-column .timeline-points-container .point-container.-associated-point {
  left: 25px;
  z-index: 999;
}
@media (min-width: 768px) {
  .component-timeline .timeline-column .timeline-points-container .point-container.-associated-point {
    left: 35px;
    z-index: 2;
  }
}
@media (min-width: 1500px) {
  .component-timeline .timeline-column .timeline-points-container .point-container.-associated-point {
    left: 0;
  }
}
.component-timeline .timeline-column .timeline-points-container .point-container .associated-content-point {
  position: relative;
  display: none;
  padding-left: 10px;
}
@media (min-width: 768px) {
  .component-timeline .timeline-column .timeline-points-container .point-container .associated-content-point {
    display: block;
  }
}
.component-timeline .timeline-column .timeline-points-container .point-container .associated-content-point:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: calc(100% + 5px);
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-left: 10px solid #3C2869;
  border-right: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
@media (min-width: 768px) {
  .component-timeline .timeline-column .timeline-points-container .point-container .associated-content-point:after {
    left: calc(100% + 30px);
  }
}
@media (min-width: 1500px) {
  .component-timeline .timeline-column .timeline-points-container .point-container .associated-content-point:after {
    left: calc(100% + 25px);
  }
}
.component-timeline .timeline-column .timeline-points-container .point-container .associated-content-point .heading-circle {
  color: #fff;
  margin-left: 60px;
  background-color: #6E7DFF;
  min-width: 180px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  z-index: 1;
}
.component-timeline .timeline-column .timeline-points-container .point-container .associated-content-point .heading-circle .heading {
  text-align: center;
  line-height: 1.2em;
}
.component-timeline .timeline-column .timeline-points-container .point-container .associated-content-point .horizontal-dotted-line {
  width: 100%;
  height: 1px;
  border-bottom: 2px dotted #fff;
  position: absolute;
  top: 50%;
  z-index: 0;
  opacity: 0.5;
}
.component-timeline .timeline-column .timeline-points-container .point-container .associated-content-point.-mobile {
  display: flex;
  align-items: flex-start;
  padding-left: 0;
}
.component-timeline .timeline-column .timeline-points-container .point-container .associated-content-point.-mobile:after {
  display: none;
}
.component-timeline .timeline-column .timeline-points-container .point-container .associated-content-point.-mobile.-active .dot.-pulse {
  -webkit-animation: none;
}
.component-timeline .timeline-column .timeline-points-container .point-container .associated-content-point.-mobile.-active .dot.-pulse:after {
  content: "";
}
.component-timeline .timeline-column .timeline-points-container .point-container .associated-content-point.-mobile .dot.-pulse {
  display: inline-block;
  min-width: 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #FFD700;
  position: relative;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  animation: expandPulse 1.5s infinite;
  -webkit-animation: expandPulse 1.5s infinite;
}
.component-timeline .timeline-column .timeline-points-container .point-container .associated-content-point.-mobile .dot.-pulse:after {
  font-family: "ionicons";
  content: "";
  color: #3C2869;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
  line-height: 28px;
}
.component-timeline .timeline-column .timeline-points-container .point-container .associated-content-point.-mobile .text-content {
  padding: 0 0 0 25px;
}
@media (min-width: 768px) {
  .component-timeline .timeline-column .timeline-points-container .point-container .associated-content-point.-mobile {
    display: none;
  }
}
.component-timeline .timeline-column .timeline-points-container .point-container .standard-point {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
}
.component-timeline .timeline-column .timeline-points-container .point-container .standard-point .dot {
  display: inline-block;
  min-width: 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #6E7DFF;
}
.component-timeline .timeline-column .timeline-points-container .point-container .standard-point .text-content {
  padding: 0 0 0 25px;
}
@media (min-width: 1200px) {
  .component-timeline .timeline-column .timeline-points-container .point-container .standard-point .text-content {
    padding: 0 60px 0 50px;
  }
}
@media (min-width: 1500px) {
  .component-timeline .timeline-column .timeline-points-container .point-container .standard-point .text-content {
    padding: 0 0 0 50px;
  }
}
.component-timeline .timeline-column .timeline-points-container .expanded-content {
  display: none;
  background-color: #fff;
  padding: 40px;
  position: relative;
  z-index: 2;
  top: -50px;
  left: -40px;
  width: calc(100% + 80px);
}
.component-timeline .timeline-column .timeline-points-container .expanded-content .heading {
  font-size: 35px;
  color: #3C2869;
}
.component-timeline .timeline-column .timeline-points-container .expanded-content .point-content {
  color: #3C2869;
  font-size: 18px;
}
.component-timeline .timeline-column .timeline-points-container .expanded-content .point-image-content img {
  width: 100%;
  height: auto;
}
.component-timeline .timeline-column .timeline-points-container .vertical-dotted-line {
  width: 1px;
  height: 100%;
  position: absolute;
  border-left: 2px dotted #fff;
  top: 0;
  left: 44px;
  z-index: 0;
  opacity: 0.5;
}
@media (min-width: 1500px) {
  .component-timeline .timeline-column .timeline-points-container .vertical-dotted-line {
    left: 50%;
  }
}
.component-timeline .timeline-content-container {
  display: none;
  background-color: #FAF5FA;
}
@media (min-width: 768px) {
  .component-timeline .timeline-content-container {
    display: block;
    width: 50%;
  }
}
@media (min-width: 992px) {
  .component-timeline .timeline-content-container {
    width: 55%;
  }
}
@media (min-width: 1200px) {
  .component-timeline .timeline-content-container {
    width: 63%;
  }
}
@media (min-width: 1500px) {
  .component-timeline .timeline-content-container {
    width: 60%;
  }
}
.component-timeline .timeline-content-container .sticky-container {
  height: 100vh;
  transition: opacity 0.2s;
  position: sticky;
}
.component-timeline .timeline-content-container .sticky-container.is_stuck {
  opacity: 1;
}
.component-timeline .timeline-content-container .point-content-container {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.5s;
  padding: 60px 40px;
}
@media (min-width: 768px) {
  .component-timeline .timeline-content-container .point-content-container {
    padding: 0;
  }
}
@media (min-width: 1200px) {
  .component-timeline .timeline-content-container .point-content-container {
    flex-direction: row;
    align-items: center;
  }
}
.component-timeline .timeline-content-container .point-content-container.-show {
  opacity: 1;
}
.component-timeline .timeline-content-container .point-content-container .point-text-content {
  width: 100%;
  padding-left: 0;
}
@media (min-width: 768px) {
  .component-timeline .timeline-content-container .point-content-container .point-text-content {
    padding: 0 70px;
  }
}
@media (min-width: 1200px) {
  .component-timeline .timeline-content-container .point-content-container .point-text-content {
    width: 40%;
    padding: 0 0 0 90px;
  }
}
.component-timeline .timeline-content-container .point-content-container .point-text-content .year {
  font-weight: 700;
  color: #6E7DFF;
  display: none;
}
@media (min-width: 768px) {
  .component-timeline .timeline-content-container .point-content-container .point-text-content .year {
    display: block;
  }
}
.component-timeline .timeline-content-container .point-content-container .point-text-content .heading {
  margin-top: 10px;
  margin-bottom: 0;
}
.component-timeline .timeline-content-container .point-content-container .point-text-content .point-content {
  font-size: 16px;
  line-height: 1.55em;
  padding-top: 30px;
}
@media (min-width: 1500px) {
  .component-timeline .timeline-content-container .point-content-container .point-text-content .point-content {
    font-size: 18px;
    padding-top: 40px;
  }
}
.component-timeline .timeline-content-container .point-content-container .point-image-content {
  width: 80%;
  padding-left: 80px;
}
@media (min-width: 1200px) {
  .component-timeline .timeline-content-container .point-content-container .point-image-content {
    width: 60%;
    padding-left: 60px;
  }
}
.component-timeline .timeline-content-container .point-content-container .point-image-content img {
  width: 100%;
  height: auto;
}

@-webkit-keyframes expandPulse {
  70% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes expandPulse {
  70% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
.component-video-overlay {
  display: flex;
  max-height: 100vh;
}
.component-video-overlay .close-video {
  position: absolute;
  top: 30px;
  right: 40px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: #3C2869;
  border-radius: 50%;
  z-index: 9999;
  display: none;
}
.component-video-overlay .close-video i {
  font-size: 38px;
  position: relative;
  width: 100%;
  text-align: center;
  display: block;
  top: 2px;
  color: #fff;
}
.component-video-overlay .overlay-inside {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(60, 40, 105, 0.5);
  z-index: -1;
}
.component-video-overlay .overlay {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
}
.component-video-overlay .overlay .play-button {
  text-align: center;
  width: 61px;
  height: 60px;
  display: inline-block;
  position: relative;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -25%);
}
@media (min-width: 768px) {
  .component-video-overlay .overlay .play-button {
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
@media (min-width: 992px) {
  .component-video-overlay .overlay .play-button {
    width: 80px;
    height: 79px;
  }
}
@media (min-width: 1200px) {
  .component-video-overlay .overlay .play-button {
    width: 97px;
    height: 96px;
  }
}
@media (min-width: 1500px) {
  .component-video-overlay .overlay .play-button {
    width: 155px;
    height: 153px;
  }
}
.component-video-overlay .overlay .play-button svg {
  width: 100%;
  height: auto;
  transition: all 0.2s ease-in-out;
}
.component-video-overlay .overlay .play-button svg:hover {
  transform: scale(1.1);
}
.component-video-overlay .overlay .play-button .cls-1 {
  fill: #ffd2e1;
}
.component-video-overlay .overlay .play-button .cls-2 {
  clip-path: url(#clip-path);
}
.component-video-overlay .overlay .play-button .cls-3 {
  fill: #6e7dff;
}
.component-video-overlay .overlay .play-button .cls-4 {
  fill: #fff;
}
.component-video-overlay .overlay .video-info {
  text-align: center;
  position: absolute;
  bottom: 0;
  margin: 0 auto;
  width: 100%;
  padding-bottom: 5%;
}
.component-video-overlay .overlay .video-info .heading {
  color: white;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.45em;
}
@media (min-width: 768px) {
  .component-video-overlay .overlay .video-info .heading {
    font-size: 35px;
  }
}
@media (min-width: 1200px) {
  .component-video-overlay .overlay .video-info .heading {
    font-size: 55px;
  }
}
.component-video-overlay .overlay .video-info .time {
  display: flex;
  align-items: center;
  justify-content: center;
}
.component-video-overlay .overlay .video-info .time i {
  color: #fff;
  font-size: 32px;
  line-height: 32px;
}
.component-video-overlay .overlay .video-info .time .duration {
  font-size: 20px;
  font-size: 1.0416666667vw;
  padding-left: 10px;
  color: #fff;
}
@media (max-width: 1248px) {
  .component-video-overlay .overlay .video-info .time .duration {
    font-size: 13px;
  }
}
@media (min-width: 1920px) {
  .component-video-overlay .overlay .video-info .time .duration {
    font-size: 20px;
  }
}
.component-video-overlay .embed-wrapper video {
  height: 100%;
}
.component-video-overlay .inner-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
}
.component-video-overlay .inner-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-lightbox.-overlay {
  background-color: rgba(0, 0, 0, 0.5);
}
.video-lightbox.-overlay .embed-wrapper {
  margin: 0 auto;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.video-lightbox.-overlay .inner-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
}
.video-lightbox.-overlay .inner-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-lightbox.-overlay .lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.component-video .video {
  width: 100%;
}
.component-video .image-alternative {
  width: 100%;
}
.grid-layout .component-video, .equalise .component-video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.grid-layout .component-video .video, .equalise .component-video .video {
  height: 100%;
  width: auto;
  transform: translateX(-50%);
  position: relative;
  left: 50%;
}
.grid-layout .component-video .image-alternative, .equalise .component-video .image-alternative {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: auto;
}

.component-world-map {
  padding: 55px 0 40px;
  background-color: #fff;
}
@media (min-width: 768px) {
  .component-world-map {
    padding: 70px 0;
  }
}
@media (min-width: 992px) {
  .component-world-map {
    padding: 110px 0;
  }
}
@media (min-width: 1200px) {
  .component-world-map {
    padding: 120px 0;
  }
}
.component-world-map .map-intro {
  width: 100%;
  text-align: left;
  padding: 0 40px 30px;
}
@media (min-width: 768px) {
  .component-world-map .map-intro {
    margin: 0 auto;
    width: 55%;
    text-align: center;
    padding: 0 0 50px;
  }
}
@media (min-width: 992px) {
  .component-world-map .map-intro {
    width: 40%;
  }
}
@media (min-width: 1200px) {
  .component-world-map .map-intro {
    width: 45%;
  }
}
@media (min-width: 1500px) {
  .component-world-map .map-intro {
    width: 30%;
  }
}
.component-world-map .map-intro h2 {
  margin: 0 0 18px;
}
.component-world-map .map {
  display: flex;
  justify-content: center;
  width: 100%;
  position: relative;
  height: 0;
  padding-bottom: 56.3%;
}
@media (min-width: 992px) {
  .component-world-map .map {
    padding-bottom: 50.3%;
  }
}
@media (min-width: 1500px) {
  .component-world-map .map {
    padding-bottom: 36.3%;
  }
}
.component-world-map .map svg {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
@media (min-width: 992px) {
  .component-world-map .map svg {
    width: 90%;
  }
}
@media (min-width: 1500px) {
  .component-world-map .map svg {
    width: 70%;
  }
}
.component-world-map .map svg text, .component-world-map .map svg line {
  display: none;
  transition: opacity 0.7s;
}
@media (min-width: 768px) {
  .component-world-map .map svg text, .component-world-map .map svg line {
    display: block;
    opacity: 0;
  }
}
.component-world-map .map svg circle {
  opacity: 0;
}
.component-world-map .map.-active g .location circle {
  opacity: 1;
  animation: dotPulse 0.7s 1;
  -webkit-animation: dotPulse 0.7s 1;
}
.component-world-map .map.-active g .location line, .component-world-map .map.-active g .location text {
  opacity: 1;
}
.component-world-map .map.-active g .location:nth-child(1) circle {
  transition-delay: 0s;
  animation-delay: 0s;
}
.component-world-map .map.-active g .location:nth-child(1) line, .component-world-map .map.-active g .location:nth-child(1) text {
  transition-delay: 0s;
}
.component-world-map .map.-active g .location:nth-child(2) circle {
  transition-delay: 0.35s;
  animation-delay: 0.35s;
}
.component-world-map .map.-active g .location:nth-child(2) line, .component-world-map .map.-active g .location:nth-child(2) text {
  transition-delay: 0.35s;
}
.component-world-map .map.-active g .location:nth-child(3) circle {
  transition-delay: 0.7s;
  animation-delay: 0.7s;
}
.component-world-map .map.-active g .location:nth-child(3) line, .component-world-map .map.-active g .location:nth-child(3) text {
  transition-delay: 0.7s;
}
.component-world-map .map.-active g .location:nth-child(4) circle {
  transition-delay: 1.05s;
  animation-delay: 1.05s;
}
.component-world-map .map.-active g .location:nth-child(4) line, .component-world-map .map.-active g .location:nth-child(4) text {
  transition-delay: 1.05s;
}
.component-world-map .map.-active g .location:nth-child(5) circle {
  transition-delay: 1.4s;
  animation-delay: 1.4s;
}
.component-world-map .map.-active g .location:nth-child(5) line, .component-world-map .map.-active g .location:nth-child(5) text {
  transition-delay: 1.4s;
}
.component-world-map .map.-active g .location:nth-child(6) circle {
  transition-delay: 1.75s;
  animation-delay: 1.75s;
}
.component-world-map .map.-active g .location:nth-child(6) line, .component-world-map .map.-active g .location:nth-child(6) text {
  transition-delay: 1.75s;
}
.component-world-map .map.-active g .location:nth-child(7) circle {
  transition-delay: 2.1s;
  animation-delay: 2.1s;
}
.component-world-map .map.-active g .location:nth-child(7) line, .component-world-map .map.-active g .location:nth-child(7) text {
  transition-delay: 2.1s;
}

@-webkit-keyframes dotPulse {
  0% {
    r: 0;
  }
  70% {
    r: 17.5;
  }
  100% {
    r: 15;
  }
}
@keyframes dotPulse {
  0% {
    r: 0;
  }
  70% {
    r: 17.5;
  }
  100% {
    r: 15;
  }
}