.btn.orange,
.btn.blue,
.svg-btn {
  display: inline-block;
  position: relative;
  font-family: "Gotham SSm A", "Gotham SSm B", "Helvetica Neue", Helvetica,
    Arial, sans-serif;
  text-decoration: none;
  color: #fff;
  font-size: 0.6875rem;
  line-height: 50px;
  height: 50px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0 24px;
  border: 0;
  cursor: pointer;
  -webkit-transition: none;
  transition: none;
}
.btn.orange:hover,
.btn.blue:hover,
.svg-btn:hover,
.btn.orange:focus,
.btn.blue:focus,
.svg-btn:focus {
  color: #fff;
  text-decoration: none;
  outline: none;
}
.btn.orange,
.btn.blue {
  min-width: 140px;
  padding: 0 30px 0 40px;
  margin: 0 20px;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  position: relative;
}
.btn.orange::before,
.btn.orange::after,
.btn.blue::before,
.btn.blue::after {
  content: "";
  position: absolute;
  left: -20px;
  display: block;
  width: 40px;
  height: 25px;
  -webkit-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
}
.btn.orange span::after,
.btn.blue span::after {
  content: "";
  position: absolute;
  top: 0;
  right: -20px;
  display: block;
  width: 20px;
  height: 50px;
  -webkit-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
}
input.btn.orange {
  margin: 0;
  padding: 0 30px;
}
.btn.orange {
  background-color: #ff8f1c;
}
.btn.orange::before {
  top: 0;
  border-style: solid;
  border-width: 25px 20px 0 20px;
  border-color: #ff8f1c transparent transparent transparent;
}
.btn.orange:hover::before {
  border-color: #24135f transparent transparent transparent;
}
.btn.orange::after {
  bottom: 0;
  border-style: solid;
  border-width: 0 20px 25px 20px;
  border-color: transparent transparent #ff8f1c transparent;
}
.btn.orange:hover::after {
  border-color: transparent transparent #24135f transparent;
}
.btn.orange span::after {
  border-style: solid;
  border-width: 25px 0 25px 20px;
  border-color: transparent transparent transparent #ff8f1c;
}
.btn.orange:hover span::after {
  border-color: transparent transparent transparent #24135f;
}
.btn.orange:not(.no-hover):hover,
.btn.orange:not(.no-hover):active,
.btn.orange:not(.no-hover):focus {
  background-color: #24135f;
}
.btn.blue {
  background-color: #24135f;
}
.btn.blue::before {
  top: 0;
  border-style: solid;
  border-width: 25px 20px 0 20px;
  border-color: #24135f transparent transparent transparent;
}
.btn.blue:hover::before {
  border-color: #ff8f1c transparent transparent transparent;
}
.btn.blue::after {
  bottom: 0;
  border-style: solid;
  border-width: 0 20px 25px 20px;
  border-color: transparent transparent #24135f transparent;
}
.btn.blue:hover::after {
  border-color: transparent transparent #ff8f1c transparent;
}
.btn.blue span::after {
  border-style: solid;
  border-width: 25px 0 25px 20px;
  border-color: transparent transparent transparent #24135f;
}
.btn.blue:hover span::after {
  border-color: transparent transparent transparent #ff8f1c;
}
.btn.blue:not(.no-hover):hover,
.btn.blue:not(.no-hover):active,
.btn.blue:not(.no-hover):focus {
  background-color: #ff8f1c;
}
button.btn.orange,
button.btn.blue {
  overflow: visible;
}
.svg-btn {
  margin-left: 0;
  padding: 0;
  min-width: 178px;
  white-space: nowrap;
  position: relative;
}
.svg-btn polygon {
  -webkit-transition: fill 0.3s ease-in-out, stroke 0.3s ease-in-out;
  transition: fill 0.3s ease-in-out, stroke 0.3s ease-in-out;
}
.svg-btn .st0 {
  fill: rgba(255, 144, 18, 0) !important;
  stroke: #fff;
  stroke-width: 2;
}
.svg-btn:hover .st0 {
  fill: #ff9012 !important;
  stroke: #ff8f1c;
}
.svg-btn strong {
  position: absolute;
  display: block;
  left: 50%;
  top: 50%;
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
select,
textarea {
  display: block;
  height: 47px;
  line-height: 1em;
  padding: 0 12px;
  margin-bottom: 1em;
  font-size: 1em;
  color: #24135f;
  border-radius: 5px;
  vertical-align: middle;
  box-shadow: none;
  border: 1px solid #24135f;
  width: 100%;
  max-width: 400px;
  font-family: "Gotham SSm A", "Gotham SSm B", "Helvetica Neue", Helvetica,
    Arial, sans-serif;
  background-color: #fff;
  -webkit-transition: background-color 0.24s ease-in-out;
  transition: background-color 0.24s ease-in-out;
}
input[type="text"]:hover,
input[type="password"]:hover,
input[type="datetime"]:hover,
input[type="datetime-local"]:hover,
input[type="date"]:hover,
input[type="month"]:hover,
input[type="time"]:hover,
input[type="week"]:hover,
input[type="number"]:hover,
input[type="email"]:hover,
input[type="url"]:hover,
input[type="search"]:hover,
input[type="tel"]:hover,
input[type="color"]:hover,
select:hover,
textarea:hover {
  background-color: #f3f3f3;
  outline: none;
  border-color: #f3f3f3;
}
input[type="text"]:focus,
input[type="text"]:active,
input[type="password"]:focus,
input[type="password"]:active,
input[type="datetime"]:focus,
input[type="datetime"]:active,
input[type="datetime-local"]:focus,
input[type="datetime-local"]:active,
input[type="date"]:focus,
input[type="date"]:active,
input[type="month"]:focus,
input[type="month"]:active,
input[type="time"]:focus,
input[type="time"]:active,
input[type="week"]:focus,
input[type="week"]:active,
input[type="number"]:focus,
input[type="number"]:active,
input[type="email"]:focus,
input[type="email"]:active,
input[type="url"]:focus,
input[type="url"]:active,
input[type="search"]:focus,
input[type="search"]:active,
input[type="tel"]:focus,
input[type="tel"]:active,
input[type="color"]:focus,
input[type="color"]:active,
select:focus,
select:active,
textarea:focus,
textarea:active {
  box-shadow: none;
  background-color: #fff;
  border-color: #24135f;
}
input[type="text"].error,
input[type="text"].is-invalid,
input[type="password"].error,
input[type="password"].is-invalid,
input[type="datetime"].error,
input[type="datetime"].is-invalid,
input[type="datetime-local"].error,
input[type="datetime-local"].is-invalid,
input[type="date"].error,
input[type="date"].is-invalid,
input[type="month"].error,
input[type="month"].is-invalid,
input[type="time"].error,
input[type="time"].is-invalid,
input[type="week"].error,
input[type="week"].is-invalid,
input[type="number"].error,
input[type="number"].is-invalid,
input[type="email"].error,
input[type="email"].is-invalid,
input[type="url"].error,
input[type="url"].is-invalid,
input[type="search"].error,
input[type="search"].is-invalid,
input[type="tel"].error,
input[type="tel"].is-invalid,
input[type="color"].error,
input[type="color"].is-invalid,
select.error,
select.is-invalid,
textarea.error,
textarea.is-invalid {
  color: #fbe3e4;
  border-color: #fbe3e4;
  background-color: #fff;
  background-position: 99% center;
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDREQkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDREQ0YwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQ3ODRGRkE2RjA0QTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERBRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+U8iT5wAAAedJREFUeNqk1U9I02Ecx/HtV3aIFAc1hcRDUoGXRAq0oNLA2CrsEFmHbikZu0iQYIFGYAiegkCpLipBxPpDEBMUzB0EhSG2LhG7hMR2GviPgUTvB57Bw8P3+U23B16HPX8+e/b8nt93wezZSMCnhXETF3AcB5BDCnH8Dq98ExcGHcFn8Ah3cdDni+fxnPDv9oAnTB7CKu6VCFXtChZy56LxUjt+jfuB8toSOth9wd7xWAWhqrUjYR/FRTwWJm+iIPT/w7bQf5ljiZnBg45dtKFX6H+LU8gIY8OEV6vgTkStwXWE8BPTGDHGPqNPz2mCfSOOYkA99TvCt1bhGPL68zMcwmncMuape10jrI+q4BbHi/FLn31S9z2x5tRhTc+1W506ipM+T3oRD4X+8+qtc4SqFvL0z/Fr14S+Szjis8bz9Lvvaq8cwS/wwGfdlqfPSWqTiFlX77o13u9Ym1PBs8JAytpRoy44X9Ft9E/gvbA+rYKn8NcaaMVc8UHgBw4b9/iqUQZ6hOAJFbyDcUflmsEX4a6+wTtHGfhAIUqa1U29Zc2BytouThD8x6xuN5CtMPi2CrXLZkZf/HyZoRFCP7n+QVR4PV7uI/AjGghN7OU/r1ilnqILtfpNC+o6vIFljBKYlhb/F2AAgaBsWR5wRiIAAAAASUVORK5CYII=);
  outline-color: #fbe3e4;
}
input[type="text"].success,
input[type="text"].is-valid,
input[type="password"].success,
input[type="password"].is-valid,
input[type="datetime"].success,
input[type="datetime"].is-valid,
input[type="datetime-local"].success,
input[type="datetime-local"].is-valid,
input[type="date"].success,
input[type="date"].is-valid,
input[type="month"].success,
input[type="month"].is-valid,
input[type="time"].success,
input[type="time"].is-valid,
input[type="week"].success,
input[type="week"].is-valid,
input[type="number"].success,
input[type="number"].is-valid,
input[type="email"].success,
input[type="email"].is-valid,
input[type="url"].success,
input[type="url"].is-valid,
input[type="search"].success,
input[type="search"].is-valid,
input[type="tel"].success,
input[type="tel"].is-valid,
input[type="color"].success,
input[type="color"].is-valid,
select.success,
select.is-valid,
textarea.success,
textarea.is-valid {
  color: #e6efc2;
  border-color: #e6efc2;
  background-color: #fff;
  background-position: 99% center;
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDRERkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDRFMEYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjY0MzQ0NERERjA0QjExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERFRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+7olkTQAAAfhJREFUeNqklU9oE0EUhzdroWjw0tBeWlDxkEaIp55TsCU9VKIgCrHBelA8CQ1Kr1WPbZrQ3gqtQqvGqxpQc2jBk6BIIaAGD4qNCKURpDSKiPi98gLDsJt//uBjsztvfnk7895sIPAw6/joGMThFJyAXn2+A+9gA57/TaY/eU0OeBgfhGm4DiGnsb7DAszxBz/NAdcKjMJLuNWCqagHbsscN5+L+hmH4QkMOe1L5jzFfNA2PgT34ajTuY7AGuZB0/hmh5m+gS0r8xv1zRvg+gGCHZiOwnF4DP3iB3sQkYxPd2C6CWfhB9Xwlus5+K1j4jXuaq3a+gM1H9OPcAa+7q9lPidZJqHbiIm7Wg22rsEI7FrPSzAMX/T+ADyAKSsu7Fr1KplehLvwCs5DvfBf65p+MypqRbO1FXK9utH4/QKuaqYTsG3E3INJv00Q46px3+XxanJ/Ute2/vqP4FKDza2KcdljIKdnhS0xXYULTaqmLMZFn8FFSFtvt6x70ExFCS5oUXspq2ssa7oEl1swFa+CGFdgtkHgPDyDKy02zyxNU6lXRUZb1EuHYayNNs+Yh5B0WQo+/8fpJnNTZFuzz2OpjoQ2QruSOQlMy35fEGmEGMxY9e1brxobw7TkWA1h6xfckUPb+JhGoE/Hpfvew7qUld/H9J8AAwDpw3WYrxcZ3QAAAABJRU5ErkJggg==);
  outline-color: #e6efc2;
}
input[type="text"][disabled],
input[type="text"].is-disabled,
input[type="password"][disabled],
input[type="password"].is-disabled,
input[type="datetime"][disabled],
input[type="datetime"].is-disabled,
input[type="datetime-local"][disabled],
input[type="datetime-local"].is-disabled,
input[type="date"][disabled],
input[type="date"].is-disabled,
input[type="month"][disabled],
input[type="month"].is-disabled,
input[type="time"][disabled],
input[type="time"].is-disabled,
input[type="week"][disabled],
input[type="week"].is-disabled,
input[type="number"][disabled],
input[type="number"].is-disabled,
input[type="email"][disabled],
input[type="email"].is-disabled,
input[type="url"][disabled],
input[type="url"].is-disabled,
input[type="search"][disabled],
input[type="search"].is-disabled,
input[type="tel"][disabled],
input[type="tel"].is-disabled,
input[type="color"][disabled],
input[type="color"].is-disabled,
select[disabled],
select.is-disabled,
textarea[disabled],
textarea.is-disabled {
  cursor: not-allowed;
  border-color: #d0d3d4;
  opacity: 0.6;
}
input[type="text"][disabled]:focus,
input[type="text"][disabled]:active,
input[type="text"].is-disabled:focus,
input[type="text"].is-disabled:active,
input[type="password"][disabled]:focus,
input[type="password"][disabled]:active,
input[type="password"].is-disabled:focus,
input[type="password"].is-disabled:active,
input[type="datetime"][disabled]:focus,
input[type="datetime"][disabled]:active,
input[type="datetime"].is-disabled:focus,
input[type="datetime"].is-disabled:active,
input[type="datetime-local"][disabled]:focus,
input[type="datetime-local"][disabled]:active,
input[type="datetime-local"].is-disabled:focus,
input[type="datetime-local"].is-disabled:active,
input[type="date"][disabled]:focus,
input[type="date"][disabled]:active,
input[type="date"].is-disabled:focus,
input[type="date"].is-disabled:active,
input[type="month"][disabled]:focus,
input[type="month"][disabled]:active,
input[type="month"].is-disabled:focus,
input[type="month"].is-disabled:active,
input[type="time"][disabled]:focus,
input[type="time"][disabled]:active,
input[type="time"].is-disabled:focus,
input[type="time"].is-disabled:active,
input[type="week"][disabled]:focus,
input[type="week"][disabled]:active,
input[type="week"].is-disabled:focus,
input[type="week"].is-disabled:active,
input[type="number"][disabled]:focus,
input[type="number"][disabled]:active,
input[type="number"].is-disabled:focus,
input[type="number"].is-disabled:active,
input[type="email"][disabled]:focus,
input[type="email"][disabled]:active,
input[type="email"].is-disabled:focus,
input[type="email"].is-disabled:active,
input[type="url"][disabled]:focus,
input[type="url"][disabled]:active,
input[type="url"].is-disabled:focus,
input[type="url"].is-disabled:active,
input[type="search"][disabled]:focus,
input[type="search"][disabled]:active,
input[type="search"].is-disabled:focus,
input[type="search"].is-disabled:active,
input[type="tel"][disabled]:focus,
input[type="tel"][disabled]:active,
input[type="tel"].is-disabled:focus,
input[type="tel"].is-disabled:active,
input[type="color"][disabled]:focus,
input[type="color"][disabled]:active,
input[type="color"].is-disabled:focus,
input[type="color"].is-disabled:active,
select[disabled]:focus,
select[disabled]:active,
select.is-disabled:focus,
select.is-disabled:active,
textarea[disabled]:focus,
textarea[disabled]:active,
textarea.is-disabled:focus,
textarea.is-disabled:active {
  background-color: #d5edf8;
}
input[type="password"] {
  letter-spacing: 0.3em;
}
textarea {
  max-width: 100%;
  min-height: 120px;
  line-height: 1.5em;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACIAAAASCAYAAAA+PQxvAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTM4IDc5LjE1OTgyNCwgMjAxNi8wOS8xNC0wMTowOTowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTcgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjMwMjZBRThEREQ5NTExRTY4RENCRUFFMDlDRkY0MEQ5IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjMwMjZBRThFREQ5NTExRTY4RENCRUFFMDlDRkY0MEQ5Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MzAyNkFFOEJERDk1MTFFNjhEQ0JFQUUwOUNGRjQwRDkiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MzAyNkFFOENERDk1MTFFNjhEQ0JFQUUwOUNGRjQwRDkiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5FV9lLAAABLElEQVR42mJUEY5nY2Bg2AfE1gwDA44BsSMTkPgFxIFAfGcAHAGyMwDkBiaowGuoYz7S0REgu4KgdjMwIUlcAeJQIP5LB0eA7AgD4sswASY0BbuBOJcODgHZsQtZgAmLoulAPJWGjpgGtYOBkENAIB+It9PAETuAOA+bBBOeOIxEjkMqAJBZEbjSIBOBVO0PS9UUgtfQbIozVzIRMOA+EPtCyxpyAUivHxDfw6eIiQiDTgJxEhD/J8MR/6F6TxBSyESkgUuBuJUMh7RB9TJQyyEgUAfEK0hQvxKIa4lVzERiMCdDo4rq0clEYlB/g+akJ3jUPIHmkG+kGMxERry/BGIvIP6MRe4LVO4FqYYyUVA4xaAVTiB2NLmFIBMF5cMmIC5D4pdDxcgCAAEGAG46QCwLqweEAAAAAElFTkSuQmCC);
  background-repeat: no-repeat;
  background-position: 97.5% center;
  background-size: 17px 9px;
}
html {
  font-size: 100%;
}
body {
  font-family: "Gotham SSm A", "Gotham SSm B", "Helvetica Neue", Helvetica,
    Arial, sans-serif;
  border-top: 4px solid #24135f;
  font-size: 0.8125rem;
}
x-container a {
  text-decoration: underline;
}
x-container a:hover {
  text-decoration: none;
}
.medium {
  font-weight: 500;
}
b,
strong,
h1,
h2,
h3,
h4 {
  font-weight: 700;
}
.x-brand {
  width: 200px;
  height: 47px;
  display: block;
  background: url(../../images/logo.svg) 0 0 no-repeat;
  font-size: 0;
  background-size: cover;
  margin: 10px 0;
}
.x-btn-navbar,
.x-btn-navbar.collapsed:hover,
.x-btn-navbar.collapsed {
  background-color: transparent;
  box-shadow: none;
  margin-top: 9px;
}
.x-topbar {
  border-bottom: none;
	min-height: auto;
}
.x-topbar .x-nav {
  margin: 0;
  padding: 5px 0 1rem;
  font-size: 0;
  text-align: right;
}
.x-topbar li {
  display: inline-block;
}
.x-topbar .x-nav > li > a {
  display: inline-block;
  font-size: 0.625rem;
  text-transform: uppercase;
  color: #4d4d4d;
  padding: 3px 9px;
  border: 1px solid #4d4d4d;
  border-radius: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.x-topbar .x-nav > li > a:hover {
  color: #fff;
  border-color: #24135f;
  background-color: #24135f;
}
.x-topbar .top-nav-shop {
  margin: 0 12px 0 1rem;
  padding-left: 1rem;
  border-left: 1px solid #d0d3d4;
}
.x-topbar .top-nav-shop a,
.x-topbar .top-nav-search a {
  padding-right: 1rem;
  color: #55565a;
  background-position: 100% 50%;
  background-repeat: no-repeat;
}
.x-topbar .top-nav-shop a {
  background-image: url(../../images/nav-arrow.svg);
}
.x-topbar .top-nav-search a {
  background-image: url(../../images/search-icon.svg);
}
.x-container.max {
  max-width: 1595px;
}
.x-navbar {
  box-shadow: none;
  border: none;
}
.x-navbar .desktop .x-nav > li a {
  font-size: 0.75rem;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.x-navbar .desktop .x-nav > li.current-menu-item > a,
.x-navbar .desktop .x-nav > li a:hover {
  color: #ff8f1c;
}
.x-navbar .desktop .x-nav li > a > span:after {
  display: none;
}
.desktop .sub-menu {
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 0;
  padding: 30px 21px;
  box-shadow: none;
}
.desktop .sub-menu a {
  color: #24135f;
}
.sub-menu a span {
    font-size: 11px !important;
}
.masthead-inline .x-navbar .desktop .sub-menu {
  left: -40px;
}
#news-ticker-wrapper a {
  font-size: 14px;
}
#news-ticker-wrapper .blog-link {
  text-transform: uppercase;
}
#news-ticker-wrapper a:not(.blog-link) {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}
#news-ticker-wrapper a:not(.blog-link)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: 2px dotted #24135f;
}
#news-ticker-wrapper .mtphr-dnt-tick-contents {
  min-height: 50px;
}
#text-2 {
  padding-top: 60px;
  background: url(../../images/logo.svg) 0 0 no-repeat;
  background-size: 140px auto;
}
#nav_menu-2 {
  max-width: 290px;
}
#nav_menu-2 .h-widget,
#text-3 .h-widget {
  text-transform: uppercase;
  border-bottom: 1px solid #d0d3d4;
  padding-bottom: 1em;
  margin-bottom: 1.5em;
}
#menu-sm-footer {
  padding: 0;
  margin: 0;
  border: none;
  box-shadow: none;
}
#menu-sm-footer li {
  border: none;
  display: inline-block;
  vertical-align: middle;
}
#menu-sm-footer a {
  text-indent: -999em;
  outline: none;
  border: none;
  padding: 0;
  box-shadow: none;
  -webkit-transition: background-size 0.3s ease-in-out;
  transition: background-size 0.3s ease-in-out;
}
#menu-sm-footer a:hover {
  background-size: 0 0, auto auto;
}
#menu-sm-footer li:not(:last-child) a {
  margin-right: 40px;
}
#menu-sm-footer .fb-icon a {
  width: 11px;
  height: 24px;
  background: url(../../images/fb-icon-new.svg) 0 0 no-repeat,
    url(../../images/fb-icon-new.svg) 0 -25px no-repeat;
  background-size: auto auto, 0 0;
}
#menu-sm-footer .fb-icon a:hover {
  background-size: 0 0, auto auto;
}
#menu-sm-footer .tw-icon a {
  width: 25px;
  height: 20px;
  background: url(../../images/tw-icon-new.svg) 0 0 no-repeat,
    url(../../images/tw-icon-new.svg) 0 -20px no-repeat;
  background-size: auto auto, 0 0;
}
#menu-sm-footer .tw-icon a:hover {
  background-size: 0 0, auto auto;
}
#menu-sm-footer .linked-icon a {
  width: 22px;
  height: 22px;
  background: url(../../images/li-icon-new.svg) 0 0 no-repeat,
    url(../../images/li-icon-new.svg) 0 -22px no-repeat;
  background-size: auto auto, 0 0;
}
#menu-sm-footer .linked-icon a:hover {
  background-size: 0 0, auto auto;
}
#menu-sm-footer .yt-icon a {
  width: 22px;
  height: 16px;
  background: url(../../images/yt-icon-new.svg) 0 0 no-repeat,
    url(../../images/yt-icon-new.svg) 0 -16px no-repeat;
  background-size: auto auto, 0 0;
}
#menu-sm-footer .yt-icon a:hover {
  background-size: 0 0, auto auto;
}
.x-colophon.bottom {
  padding: 1.5em 0;
  background-color: #05133f;
  color: #d0d3d4;
  border: none;
  box-shadow: none;
}
.x-colophon.bottom #menu-footer-navigation {
  margin-bottom: 2em;
  border-bottom: 1px solid rgba(208, 211, 212, 0.5);
}
.x-colophon.bottom #menu-footer-navigation a {
  font-size: 0.6875rem;
  color: #d0d3d4;
  margin: 0 10px 1em;
  letter-spacing: normal;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.x-colophon.bottom #menu-footer-navigation a:hover {
  color: #fff;
}
body:not(.home):not(.page-template-template-contact-us):not(.page-template-template-resources):not(.page-id-321)
  .x-colophon.top {
  border-top: 1px solid #d0d3d4;
}
#copyr {
  font-size: 0.6875rem;
  font-weight: 300;
}
#copyr .widget {
  margin-top: 1em;
  text-shadow: none;
}
#copyr ul,
#copyr li {
  padding: 0;
  margin: 0;
  border: none;
  box-shadow: none;
  border-radius: 0;
}
#copyr li {
  margin: 1em 0;
}
#copyr li:hover {
  background-color: transparent;
}
#copyr a {
  color: #d0d3d4;
  border: none;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
#copyr a:hover {
  color: #fff;
}
.entry-wrap,
.x-colophon {
  border: none;
  box-shadow: none;
  border-radius: 0;
}
h1,
.h1 {
  font-size: 1.75rem;
  margin-bottom: 0.8em;
  line-height: 1.3;
}
h2,
.h2 {
  font-size: 1.375rem;
  margin-bottom: 0.6em;
}
h3,
.h3 {
  font-size: 1rem;
  margin-bottom: 0.8em;
}
h4,
.h4,
.h-widget {
  font-size: 1rem;
  margin-bottom: 0.6em;
}
.white-txt {
  color: #fff;
}
.h580 {
  min-height: 320px;
}
.floating-content {
  position: relative;
  overflow: hidden;
}
.floating-content .float-bottom {
  position: absolute;
  left: 0;
  bottom: 50px;
  padding-left: 6% !important;
}
[data-x-icon],
[class*="x-icon-"],
.x-navbar .mobile .x-nav li > a,
a,
body {
  color: #24135f;
}
.x-topbar .x-social-global {
  display: none;
}
.clear {
  font-size: 0;
  clear: both;
}
.hero-ttl {
  text-transform: uppercase;
  color: #fff;
}
.hero-ttl .x-container {
  min-height: 250px;
  position: relative;
}
.hero-ttl .x-column {
  position: absolute;
  left: 0;
  bottom: 50px;
}
.hero-ttl h1 {
  margin: 0;
}
.hero-ttl + .x-section:not(.sub-navigation) {
  padding-top: 40px !important;
}
.section-ttl h1,
.section-ttl h2,
.section-ttl h3 {
  margin-top: 0;
  text-transform: uppercase;
  padding-bottom: 20px;
  position: relative;
  margin-bottom: 1em;
  font-size: 1rem;
}
.section-ttl h1::after,
.section-ttl h2::after,
.section-ttl h3::after {
  content: "";
  height: 0;
  font-size: 0;
  width: 30px;
  border-top: 2px solid #24135f;
  position: absolute;
  left: 0;
  bottom: 0;
}
svg {
  max-width: 100%;
  height: auto;
}
svg .brand-blue {
  fill: #23145f;
}
svg .brand-orange {
  fill: #ff9012;
}
svg .white {
  fill: #ffffff;
}
svg .gray {
  fill: #d1d3d3;
}
svg .fill-none {
  fill: none;
}
.gray-bg {
  background-color: #f3f3f3 !important;
}
.sub-navigation {
  display: none;
}
.testimonials blockquote {
  margin: 0;
  padding: 0;
  border: none;
  color: #24135f;
  font-size: inherit;
  font-family: inherit;
}
.cycle-slideshow div {
  background-color: #fff;
}
.testimonials .x-text > p:first-child {
  display: none;
  margin: 0;
}
.testimonial_author span {
  display: block;
}
.nonav .testimonial_author {
  margin-top: 1em;
}
.nonav .testimonial_author .testimonial-client {
  font-weight: 700;
}
.entry-content {
  margin-top: 0;
}
.x-section {
  outline: none;
}
.testimonial_body p:last-child {
  margin-bottom: 0;
}
.testimonials.nonav .easy-t-slideshow-wrap {
  padding-top: 2em;
  position: relative;
}
.testimonials.nonav .easy-t-cycle-controls {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  padding-top: 5px;
}
.testimonials.nonav .easy-t-cycle-controls span {
  display: inline-block;
  margin: 0 0 0 12px;
  width: 8px;
  height: 8px;
  background-color: transparent;
  border: 1px solid #323944;
  border-radius: 50%;
  text-indent: 100%;
  outline: none;
}
.testimonials.nonav .easy-t-cycle-controls span.cycle-pager-active {
  background-color: #323944;
}
.over-bottom + .x-section {
  padding-top: 0 !important;
  position: relative;
}
.over-bottom + .x-section:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 15%;
  min-height: 50px;
  max-height: 60px;
  background-color: #f3f3f3;
  display: block;
  z-index: -1;
}
.entry-title {
  margin-bottom: 1em;
}
a:focus {
  outline: 1px dotted;
  outline-offset: 0;
}
body.home::after {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  z-index: -1;
  content: url(https://www.juran.com/wp-content/uploads/2017/07/juran-button-off.png)
    url(https://www.juran.com/wp-content/uploads/2017/07/juran-button-on.png);
}
div#x-section-1 {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}
p.slide-heading {
  margin-bottom: 30px !important;
  line-height: 1.2 !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  letter-spacing: -1px !important;
  margin-bottom: 25px;
  font-family: "Gotham SSm A", "Gotham SSm B", "Helvetica Neue", Helvetica,
    Arial, sans-serif !important;
}
p.slide-sub-heading {
  line-height: 1.3 !important;
  font-weight: 400;
  color: #ffffff !important;
  font-family: "Gotham SSm A", "Gotham SSm B", "Helvetica Neue", Helvetica,
    Arial, sans-serif !important;
}
div.sbutton {
  display: block;
  width: 185px;
  height: 56px;
  text-transform: uppercase !important;
  font-weight: 700 !important;
  background-image: url(https://www.juran.com/wp-content/uploads/2017/07/juran-button-off.png);
  background-repeat: no-repeat;
  font-family: "Gotham SSm A", "Gotham SSm B", "Helvetica Neue", Helvetica,
    Arial, sans-serif !important;
}
div.sbutton:hover {
  background-image: url(https://www.juran.com/wp-content/uploads/2017/07/juran-button-on.png);
  font-weight: 700 !important;
  text-transform: uppercase !important;
  font-family: "Gotham SSm A", "Gotham SSm B", "Helvetica Neue", Helvetica,
    Arial, sans-serif !important;
}
div.sbutton a {
  color: #ffffff !important;
  letter-spacing: 2px !important;
  font-size: 11px !important;
  line-height: 15px !important;
  display: block !important;
  width: 150px;
  height: 56px;
  top: 0;
  left: 0;
  text-align: right !important;
  padding-top: 20px !important;
  font-family: "Gotham SSm A", "Gotham SSm B", "Helvetica Neue", Helvetica,
    Arial, sans-serif !important;
}
.plainLink {
  text-decoration: none !important;
}
.tp-caption {
  max-width: 100% !important;
  padding-right: 10%;
}
.tp-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #fff;
}
.tp-bullet.selected,
.tp-bullet:hover {
  background-color: transparent;
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  margin: -4px 0 0 -4px;
}
#hp-main-feature {
  position: relative;
}
#hp-main-feature .x-container {
  position: relative;
  min-height: 350px;
}
#hp-main-feature .x-container .x-column {
  position: absolute;
  left: 0;
  top: 50%;
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 100%;
}
#hp-main-feature .x-container .h1 {
  margin: 0 0 0.5em;
  line-height: 1.1;
}
#hp-main-feature .x-container p {
  font-size: 0.8125rem;
  line-height: 1.3;
  margin-bottom: 0;
}
#hp-main-feature .x-text {
  margin-bottom: 1em;
}
#hp-main-feature .x-text h1 {
  display: inline-block;
  margin: 0;
  font-weight: normal;
  font-size: 0.8125rem;
}
#hp-main-feature #scroll-down {
  display: none;
  position: absolute;
  right: 0;
  bottom: 0;
  text-indent: 100%;
  overflow: hidden;
  width: 50px;
  height: 50px;
  background-color: #fff;
}
#hp-main-feature #scroll-down::after {
  content: "";
  width: 25px;
  height: 25px;
  display: block;
  position: absolute;
  left: 12px;
  top: 12px;
  background: #fff url(../../images/page-fold-arrow.svg) 50% 50% no-repeat;
  background-size: 25px auto;
  animation-duration: 4s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
  animation-name: scroll-arrow;
}
@keyframes scroll-arrow {
  0% {
    transform: translateY(-1rem);
    opacity: 0;
  }
  20%,
  90% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(1rem);
    opacity: 0;
  }
}
#hp-main-boxes {
  padding-bottom: 1em !important;
}
#hp-main-boxes h2 {
  margin: 2em 0;
  text-align: center;
}
#hp-main-boxes .x-column {
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #fff;
  position: relative;
  overflow: hidden;
}
#hp-main-boxes .x-column img {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
#hp-main-boxes .x-column a {
  color: #fff;
  display: block;
  position: relative;
}
#hp-main-boxes .x-column .overlay {
  position: absolute;
  width: 100%;
  z-index: 10;
  top: 0;
  left: 0;
}
#hp-main-boxes .x-column:not(:last-child) {
  margin-bottom: 1em;
}
#hp-main-boxes .x-column svg[id*="icon"] {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  max-height: 73px;
  width: auto;
}
#hp-main-boxes .x-column .st-nf {
  fill: none;
}
#hp-main-boxes .x-column .st0 {
  fill: #fff;
}
#hp-main-boxes .x-column:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
#hp-main-boxes .x-column .svg-btn {
  display: none;
}
#hp-main-boxes h3 {
  text-transform: uppercase;
  margin-bottom: 1rem;
}
#hp-main-boxes p:last-child {
  margin-bottom: 0;
}
#x-section-3 {
  margin-bottom: 20px !important;
}
#hp-about-section {
  display: block;
  position: relative;
  padding: 0;
  margin-bottom: 14px;
}
#hp-about-section p,
#hp-about-section h2 {
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.7);
}
#hp-assesment-section,
#hp-webinars-section {
  display: block;
  margin-top: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  padding: 0;
  position: relative;
}
#hp-assesment-section h3,
#hp-webinars-section h3 {
  text-transform: uppercase;
  margin-bottom: 30px;
}
#hp-assesment-section h3 + p,
#hp-webinars-section h3 + p {
  margin-bottom: 30px;
}
#hp-assesment-section::after,
#hp-about-section::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
#hp-assesment-section:hover::after,
#hp-about-section:hover::after {
  background-color: rgba(0, 0, 0, 0.3);
}
#hp-assesment-section .x-container,
#hp-about-section .x-container {
  z-index: 10;
}
.header-cloning {
  height: 0;
  overflow: hidden;
  background-color: #fff;
  position: relative;
  -webkit-transition: none;
  transition: none;
}
.header-cloning .x-brand {
  width: 140px;
  height: 33px;
  display: none;
}
.header-cloning ul {
  text-align: center;
  line-height: 50px;
  margin-bottom: 0;
}
.header-cloning li {
  display: inline-block;
  margin: 0 1vw;
  text-transform: uppercase;
  font-size: 0.6875rem;
}
#hbspt-form {
  padding-top: 0 !important;
  margin-bottom: 0;
}
#hbspt-form .actions {
  padding-top: 10px;
}
#hbspt-form .hs-button {
  border: none;
  background-color: #ff8f1c;
}
#hbspt-form .hs-button:hover {
  background-color: #24135f;
}
#map-wrap h4 {
  margin-bottom: 0;
  font-size: 0.875rem;
}
#map-wrap h4 + br,
#map-wrap .x-2-3 {
  display: none;
}
#certification-programs {
  padding-top: 0 !important;
}
#certification-programs .x-container h1,
#certification-programs .x-container h2,
#certification-programs .x-container h3 {
  text-transform: uppercase;
  margin-top: 0;
  font-size: 1rem;
}
#certification-programs .x-container .x-2-3 {
  margin-bottom: 30px;
}
#certification-programs .custom-content {
  margin-bottom: 2em;
}
#certification-programs .custom-content p,
#certification-programs .custom-content h2 {
  display: inline;
  margin: 0;
  font-weight: normal;
  text-transform: none;
  font-size: inherit;
}
#learning-section-one .svg-wrapper {
  padding-top: 1em;
  text-align: center;
}
#learning-section-one svg {
  max-width: 100%;
  height: auto;
}
#testimonials-section .x-2-3 .cycle-slideshow div {
  background-color: transparent;
  text-align: center;
}
#testimonials-section .x-2-3 .testimonial_body {
  padding-bottom: 1em;
  font-size: 0.875rem;
}
#testimonials-section .x-2-3 .testimonial_author span {
  display: block;
  font-weight: 700;
}
#testimonials-section .x-2-3 img,
#testimonials-section .x-2-3 p:last-child {
  margin-bottom: 0;
}
#testimonials-section .x-2-3 blockquote {
  font-family: "Gotham SSm A", "Gotham SSm B", "Helvetica Neue", Helvetica,
    Arial, sans-serif;
}
.testimonials:not(.nonav) .easy-t-cycle-controls {
  overflow: hidden;
  text-align: center;
}
.testimonials:not(.nonav) .easy-t-cycle-controls div {
  display: inline-block;
  margin: 0 1em;
  width: 17px;
  height: 32px;
  text-indent: 110%;
  outline: none;
  overflow: hidden;
  background: url(../../images/testim-arrows-new.svg) 0 0 no-repeat;
  cursor: pointer;
  white-space: nowrap;
}
.testimonials:not(.nonav) .easy-t-cycle-controls div + div {
  background-position: 100% 0;
}
#expertise-section .x-2-3 .x-text p:first-child,
#expertise-section .x-2-3 .x-text h1,
#expertise-section .x-2-3 .x-text h2,
#expertise-section .x-2-3 .x-text h3,
#expertise-section .x-2-3 .x-text h4 {
  display: inline;
  margin: 0;
  font-weight: normal;
  font-size: 0.8125rem;
}
#at-a-glance-section .x-container:first-child {
  margin-bottom: 45px !important;
}
#at-a-glance-section .x-container:first-child img {
  margin-bottom: 0;
}
#at-a-glance-section .x-container:first-child .x-1-3 {
  display: none;
}
#at-a-glance-content ul {
  margin: 1.5em 0;
  list-style: none;
  border-top: 1px solid #d0d3d4;
}
#at-a-glance-content li {
  border-bottom: 1px solid #d0d3d4;
  padding: 1em 0;
}
#at-a-glance-content strong {
  display: block;
  font-size: 1.125rem;
}
#mission-section .x-2-3 .x-text h3:first-child {
  margin-top: 0;
}
#mission-section .x-2-3 .x-text h3:not(:first-child) {
  margin-top: 2em;
}
#mission-section .x-2-3 h3 {
  text-transform: uppercase;
}
#mission-section .x-2-3 h3::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 16px;
  margin: 3px 0 0 0.6em;
  background: url(../../images/small-blue-arrow.svg) 0 0 no-repeat;
  background-size: cover;
}
.history-slider {
  background-color: transparent;
  padding: 0 0 2em;
  border: none;
  box-shadow: none;
}
.history-slider .flex-direction-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.history-slider .flex-direction-nav a {
  height: 32px;
  width: 113px;
  background-image: url(../../images/history-slider-arrows.svg);
  background-repeat: no-repeat;
  border-radius: 0;
  transition: none;
  -webkit-transition: none;
  opacity: 1;
  background-color: transparent;
  line-height: 32px;
}
.history-slider .flex-direction-nav a i {
  display: none;
}
.history-slider .flex-direction-nav a.flex-prev {
  left: 0;
  background-position: 0 0;
}
.history-slider .flex-direction-nav a.flex-prev::before {
  content: "previous";
}
.history-slider .flex-direction-nav a.flex-next {
  right: 0;
  background-position: 100% 0;
  left: auto;
}
.history-slider .flex-direction-nav a.flex-next::before {
  content: "next";
}
.history-slider .flex-direction-nav a.flex-prev::before,
.history-slider .flex-direction-nav a.flex-next::before {
  text-transform: uppercase;
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  font-size: 0.625rem;
}
.history-slider h4 {
  font-size: 1.5rem;
}
.history-slider .x-flexslider .x-slides img {
  width: auto;
  margin: 0 auto;
}
.leadership-content > p:first-child {
  margin-bottom: 4em;
}
.leadership-content .lider {
  margin-bottom: 4em;
}
.leadership-content .lider h3 {
  text-transform: uppercase;
  margin: 1.5em 0 5px;
}
.leadership-content .lider h4 {
  margin: 0 0 1em;
}
.leadership-content .lider img {
  max-width: 170px;
}
.leadership-content .lider .more {
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
}
.leadership-content .lider .more.less {
  display: block;
  margin-top: 1em;
}
.leadership-content .morecontent span {
  display: none;
}
#methodology-section .x-2-3 h2 {
  display: inline;
  margin: 0;
  font-weight: normal;
  font-size: inherit;
}
#methodology-section .x-2-3 .custom-content {
  margin-bottom: 1.3em;
}
#methodology-section .x-2-3 .custom-content p {
  display: inline;
  margin: 0;
}
#methodology-section .svg-wrapper {
  padding-top: 1em;
  text-align: center;
}
#methodology-section svg {
  max-width: 100%;
  height: auto;
}
#meet-our-coaches-section dl {
  margin: 0;
  overflow: hidden;
}
#meet-our-coaches-section dt,
#meet-our-coaches-section dd {
  display: block;
  margin: 0 0 20px;
}
#meet-our-coaches-section dt {
  overflow: hidden;
  font-size: 1rem;
}
#meet-our-coaches-section dt strong {
  display: block;
  font-size: 1.5rem;
  line-height: 1.2;
}
#meet-our-coaches-section dt img {
  float: left;
  border-bottom: 1px solid #24135f;
  border-right: 1px solid #24135f;
  margin: 0 1em 0 0;
  max-width: 73px;
}
#meet-our-coaches-section dd a {
  text-decoration: underline;
}
#meet-our-coaches-section dd a:hover {
  text-decoration: none;
}
#meet-our-coaches-section dl dt:first-child strong {
  padding-top: 10px;
}
#performance-roadmap-section ul {
  padding: 0;
  margin: 2em 0 0;
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#performance-roadmap-section li {
  -webkit-flex-basis: 50%;
  -moz-flex-basis: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  text-align: center;
  margin-bottom: 2em;
  font-weight: 700;
  font-size: 0.75rem;
}
#performance-roadmap-section li img {
  display: block;
  margin: 0 auto 1em;
  max-width: 93px;
}
#performance-roadmap-section li:first-child .popover {
  position: absolute !important;
}
#performance-roadmap-section a {
  display: block;
  cursor: default;
}
#performance-roadmap-section .popover {
  font-size: 0.6875rem;
}
#benchmarking-section .x-container:first-child {
  margin-bottom: 45px !important;
}
#benchmarking-section .x-container:first-child img {
  margin-bottom: 0;
}
#benchmarking-section .x-container:first-child .x-1-3 {
  display: none;
}
#white-papers-section a {
  text-decoration: underline;
}
#white-papers-section a:hover {
  text-decoration: none;
}
#resources-offered {
  padding-top: 0 !important;
}
#resources-offered h3 {
  margin-bottom: 30px;
}
#resources-offered li a:first-child {
  display: block;
  position: relative;
}
#resources-offered li a:first-child span.dark-overlay {
  position: relative;
  display: block;
}
#resources-offered li a:first-child span.dark-overlay:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
#resources-offered li a:first-child:hover span.dark-overlay:after {
  background-color: rgba(0, 0, 0, 0.3);
}
#resources-offered .three-up {
  margin-bottom: 0;
}
#resources-offered .three-up h1,
#resources-offered .three-up h2,
#resources-offered .three-up h3,
#resources-offered .three-up h4 {
  font-size: 1rem;
  margin: 0 0 1em;
}
#resources-offered .three-up p:last-of-type {
  margin-bottom: 0;
}
#resources-offered .svg-btn {
  display: none;
}
#resources-offered li a:last-of-type {
  text-decoration: underline;
}
#resources-offered li a:last-of-type:hover {
  text-decoration: none;
}
#case-studies-section .hidden {
  display: none;
}
#case-studies-section select {
  outline: none;
}
#case-studies-section .cs a {
  display: block;
  padding: 12px;
  border: 1px solid #24135f;
  border-radius: 6px;
}
#case-studies-section .cs a:not(:last-child) {
  margin-bottom: 1em;
}
#case-studies-section .cs h4 {
  margin: 0;
  font-size: 0.75rem;
}
#app-section .x-1-3:last-child {
  text-align: center;
}
#app-section .x-1-3:last-child img {
  max-width: 236px;
}
#app-section .app-links {
  text-align: center;
}
#app-section .app-links a {
  display: inline-block;
  width: 149px;
  height: 44px;
  white-space: nowrap;
  text-indent: 110%;
  overflow: hidden;
  outline: none;
  margin: 0 1em 1em 0;
}
#app-section .app-links a:first-child {
  background: url(../../images/app-store-icon.svg) 0 0 no-repeat;
  background-size: cover;
}
#app-section .app-links a:last-child {
  background: url(../../images/play-store-icon.svg) 0 0 no-repeat;
  background-size: cover;
}
#cant-find-section {
  background-color: #21145f;
  color: #fff;
  text-align: center;
}
#cant-find-section p {
  margin: 0;
}
#cant-find-section a {
  color: #fff;
  text-decoration: underline;
}
#cant-find-section a:hover {
  text-decoration: none;
}
body:not(.logged-in) #subscribe-to-download-form {
  display: none;
}
#form-container {
  display: none;
}
.featherlight-content #form-container {
  display: block;
}
#certified-performance-section .x-2-3 .inline h1,
#certified-performance-section .x-2-3 .inline h2,
#certified-performance-section .x-2-3 .inline h3,
#certified-performance-section .x-2-3 .inline h4,
#certified-performance-section .x-2-3 .inline p {
  display: inline;
  margin: 0;
  font-size: 0.8125rem;
}
#certified-performance-section .x-2-3 .inline h2,
#certified-performance-section .x-2-3 .inline h3,
#certified-performance-section .x-2-3 .inline h4 {
  font-weight: normal;
}
#certified-performance-section .x-2-3 .inline h1 + p,
#certified-performance-section .x-2-3 .inline h2 + p {
  display: inline;
}
#certified-performance-section .x-2-3 h1 + p,
#certified-performance-section .x-2-3 p:last-child {
  margin-bottom: 1.313em;
}
#certified-performance-section .x-2-3 a {
  text-decoration: underline;
}
#certified-performance-section .x-2-3 a:hover {
  text-decoration: none;
}
#our-webinars-section .with-container {
  padding: 0;
  border: none;
}
#our-webinars-section .x-block-grid {
  margin-bottom: 0;
}
#our-webinars-section .x-raw-content {
  text-align: right;
}
#our-webinars-section .x-raw-content a.view-more-btn {
  display: inline-block;
  position: relative;
}
#our-webinars-section .x-raw-content a.view-more-btn span {
  position: absolute;
  width: 100%;
  line-height: 32px;
  display: block;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  font-size: 0.625rem;
}
#our-webinars-section .x-raw-content a.view-more-btn .st0 {
  fill: #24135f;
}
.page-id-321 #testimonials-wrapper .cycle-slideshow div {
  background-color: transparent;
}
.blog .x-container {
  margin-top: 0;
}
#newsletter-form {
  padding: 2em 2em 0;
}
#newsletter-form .hbspt-form {
  max-width: 320px;
  margin: 0 auto;
}
#newsletter-form form {
  margin-bottom: 0;
}
.single .entry-header {
  margin-bottom: 2em;
}
.over {
  margin-bottom: 20px;
}
.multibox .x-block-grid {
  padding: 10px;
}
.multibox .x-block-grid-item {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  position: relative;
}
.multibox .x-block-grid-item:hover .check-bg {
  fill: #ff9016;
}
.multibox .x-block-grid-item:hover .check-arrow {
  fill: #fff;
}
.multibox .x-promo {
  border: none;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 0;
}
.multibox .check-mark {
  display: none;
  position: absolute;
  right: 0;
  bottom: 0;
}
.multibox .check-mark svg {
  display: block;
}
.multibox .check-mark svg path {
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}
.multibox .check-mark .check-bg {
  fill: #fff;
}
.multibox .check-mark .check-arrow {
  fill: #21145f;
}
.multibox a {
  display: block;
}
.fl-like {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
}
.fl-like #form-container {
  display: block;
  width: 90%;
  max-width: 400px;
  background-color: #fff;
  padding: 1em;
  margin: 5%;
}
.fl-like button.close {
  position: absolute;
  background-color: #fff;
  border: none;
  width: 1em;
  height: 1em;
  line-height: 1em;
  text-align: center;
  cursor: pointer;
  top: 0;
  right: 0;
}
@media only screen and (min-width: 481px) {
  .x-brand {
    margin: 1rem 0;
  }
  .x-topbar .top-nav-shop {
    margin-right: 23px;
  }
  #black-studio-tinymce-2 li {
    display: inline-block;
    padding: 0 10px;
  }
  .over-bottom + .x-section:after {
    height: 20%;
    max-height: 120px;
  }
  .header-cloning.sticky {
    height: 50px;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid #d0d3d4;
    box-shadow: 0 3px 3px rgba(2, 2, 2, 0.1);
    -webkit-transition: height 0.1s ease-in;
    transition: height 0.1s ease-in;
  }
  #hbspt-form .x-2-3 h3 {
    text-align: center;
  }
  #hbspt-form .x-2-3 form {
    max-width: 400px;
    margin: 0 auto;
  }
  #hbspt-form .hs-form .hs-input,
  #hbspt-form .hs-form textarea.hs-input {
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 12px !important;
    height: 40px;
    line-height: 1em;
  }
  #meet-our-coaches-section dl dd + dt strong {
    padding-top: 10px;
  }
  #methodology-section .svg-wrapper svg {
    max-width: 430px;
  }
  #learning-section-one .svg-wrapper svg {
    max-width: 400px;
  }
  .fl-like #form-container {
    display: block;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
@media only screen and (max-width: 767px) {
  p.slide-heading {
    font-size: 40px !important;
  }
  p.slide-sub-heading {
    font-size: 16px !important;
  }
  p.slide-heading,
  p.slide-sub-heading {
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  }
  #intro {
    background: -moz-linear-gradient(top, #3d3e3d, #6c6c6c) !important;
    background: -webkit-linear-gradient(top, #3d3e3d, #6c6c6c) !important;
    background: linear-gradient(top, #3d3e3d, #6c6c6c) !important;
    background: linear-gradient(to bottom, #3d3e3d 0%, #6c6c6c 100%) !important;
  }
  .page-template-page-why-local #intro {
    background: -moz-linear-gradient(top, #3d3e3d 0%, #6c6c6c 20%) !important;
    background: -webkit-linear-gradient(
      top,
      #3d3e3d 0%,
      #6c6c6c 20%
    ) !important;
    background: linear-gradient(to bottom, #3d3e3d 0%, #6c6c6c 20%) !important;
  }
  .page-template-page-blog .listing-item {
    max-width: 427px;
    margin-left: auto;
    margin-right: auto;
  }
  .page-template-page-blog .listing-item + .listing-item {
    margin-top: 20px;
  }
  .over .svg-btn {
    height: auto;
    line-height: 1;
  }
  .over .svg-btn svg {
    display: none;
  }
  .over .svg-btn strong {
    color: #24135f;
    margin-left: -25%;
  }
}
@media only screen and (min-width: 768px) {
  .x-topbar {
    text-align: right;
  }
  .x-colophon.bottom {
    padding: 3em 0;
    text-align: left;
  }
  #news-ticker-wrapper {
    position: relative;
    padding-left: 80px;
    width: 445px;
    float: right;
  }
  #news-ticker-wrapper .blog-link {
    position: absolute;
    left: 0;
    top: 0;
  }
  #news-ticker-wrapper .mtphr-dnt-tick-contents {
    min-height: 30px;
  }
  #black-studio-tinymce-2 {
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
  }
  #black-studio-tinymce-2 li {
    border-left: 1px solid #d0d3d4;
    line-height: 1;
  }
  #black-studio-tinymce-2 li:first-child {
    padding-left: 1.1em;
  }
  #copyr span {
    display: inline-block;
    vertical-align: middle;
    margin: 1em 1em 0 0;
  }
  h1,
  .h1 {
    font-size: 3rem;
  }
  h2,
  .h2 {
    font-size: 1.75rem;
  }
  .h580 {
    min-height: 380px;
  }
  .hero-ttl .x-container {
    min-height: 300px;
  }
  .hero-ttl .x-column {
    bottom: 120px;
  }
  .hero-ttl + .x-section:not(.sub-navigation) {
    padding-top: 60px !important;
  }
  .section-ttl h1,
  .section-ttl h2,
  .section-ttl h3 {
    margin-bottom: 30px;
  }
  .sub-navigation {
    background-color: #d0d3d4 !important;
    display: block;
    position: relative;
  }
  .sub-navigation ul {
    margin: 0;
    list-style: none;
    text-align: center;
    font-size: 0;
  }
  .sub-navigation li {
    display: inline-block;
  }
  .sub-navigation a {
    display: block;
    padding: 0 9px;
    color: #55565a;
    text-transform: uppercase;
    line-height: 50px;
    font-size: 0.625rem;
  }
  .sub-navigation a:hover,
  .sub-navigation a.active {
    color: #fff;
  }
  .sub-navigation.sticky {
    /*top: 0;*/
    left: 0;
    width: 100%;
  }
  #testimonials-wrapper .testimonials {
    margin-top: 130px;
  }
  .over-bottom + .x-section:after {
    max-height: 90px;
  }
  p.slide-heading {
    font-size: 56px !important;
  }
  p.slide-sub-heading {
    font-size: 24px !important;
  }
  #hp-main-boxes {
    padding: 4em 0 !important;
  }
  #hp-main-boxes h2 {
    margin-top: 0;
  }
  #hp-main-boxes .x-column:not(:last-child) {
    margin-bottom: 0;
  }
  #hp-main-boxes .x-column p,
  #hp-main-boxes .x-column h3 {
    margin: 0;
  }
  #hp-assesment-section,
  #hp-webinars-section {
    width: calc(50% - 7px);
    margin-top: 0;
  }
  #hp-assesment-section {
    float: left;
  }
  #hp-webinars-section {
    float: right;
    clear: right;
  }
  .header-cloning .x-brand {
    display: block;
    float: left;
    margin: 9px 0 0;
  }
  .header-cloning ul {
    float: right;
  }
  .header-cloning li {
    margin: 0 10px;
  }
  .header-cloning a {
    -webkit-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
  }
  .header-cloning a:hover {
    color: #ff8f1c;
  }
  #certification-programs .x-container:not(:last-child) {
    margin-bottom: 30px !important;
  }
  #certification-programs .x-container:not(:first-child) h1,
  #certification-programs .x-container:not(:first-child) h2,
  #certification-programs .x-container:not(:first-child) h3 {
    margin-top: -5px;
  }
  #certification-programs .x-container:not(:first-child) .x-2-3 {
    margin-bottom: 0;
  }
  #certification-programs .x-container:not(:first-child) img {
    margin-bottom: 0;
  }
  #certification-programs .x-container:not(:first-child) p {
    margin-bottom: 2em;
  }
  #at-a-glance-section .x-container:first-child,
  #benchmarking-section .x-container:first-child {
    margin-bottom: 70px !important;
  }
  #at-a-glance-section .x-container:first-child .x-1-3,
  #benchmarking-section .x-container:first-child .x-1-3 {
    display: block;
  }
  #at-a-glance-content ul {
    margin-top: 0;
  }
  #at-a-glance-content strong {
    display: inline-block;
    width: 33%;
  }
  #app-section .x-1-3:nth-child(2) p {
    margin-bottom: 3rem;
  }
  #x-section-2 .section-ttl h3 {
    margin-bottom: 0;
  }
  #map-wrap .x-2-3 {
    display: block;
  }
  #map-wrap .address:not(.active) {
    height: 0;
    opacity: 0;
    overflow: hidden;
  }
  #map-wrap .address {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: absolute;
    top: 50px;
    left: 0;
  }
  #map-wrap .address.active {
    height: auto;
    opacity: 1;
  }
  #map-wrap path {
    transition: fill 0.3s ease-in-out;
  }
  #map-wrap .pin:hover {
    cursor: pointer;
    fill: #ff8f1c;
  }
  #map-wrap .pin.active {
    fill: #ff8f1c;
  }
}
@media only screen and (min-width: 768px) and (-ms-high-contrast: active),
  only screen and (min-width: 768px) and (-ms-high-contrast: none) {
  #map-wrap svg {
    min-height: 240px;
    min-width: 500px;
  }
}
@media only screen and (min-width: 768px) {
  #upcoming-webinars-section .x-2-3 {
    float: right;
    margin-right: 0;
  }
  #upcoming-webinars-section .x-2-3 h3 {
    margin-top: 0;
  }
  .hs-form fieldset.form-columns-1 .hs-input {
    width: 100% !important;
    max-width: none !important;
  }
  .page-id-321 #testimonials-wrapper .testimonials {
    margin-top: 0;
  }
  .page-id-321
    #testimonials-wrapper
    .testimonials.nonav
    .easy-t-slideshow-wrap {
    padding-top: 0;
  }
  .page-id-321 #testimonials-wrapper .x-column {
    float: none;
    margin-right: 0;
  }
  .page-id-321 #testimonials-wrapper .x-column.x-2-3 {
    width: 100%;
  }
  .page-id-321 #testimonials-wrapper .x-column.x-1-3 {
    width: 100%;
  }
  #newsletter-form .hbspt-form {
    max-width: 1170px;
  }
  #newsletter-form .field {
    width: calc((100% - 170px) / 2);
    display: inline-block;
  }
  #newsletter-form .field + .field {
    margin-left: 10px;
  }
  #newsletter-form .hs_submit {
    display: inline-block;
    margin-left: 10px;
  }
  #newsletter-form .hs_email.field {
    margin-left: 0;
  }
  .over {
    position: relative;
  }
  .over a {
    display: block;
    position: relative;
    overflow: hidden;
  }
  .over a::after,
  .over a::before {
    content: "";
    display: block;
    position: absolute;
  }
  .over a::before {
    width: 37px;
    height: 41px;
    background: url(../../images/services-hp-check-mark.png) 0 0 no-repeat;
    background-size: cover;
    right: 0;
    bottom: 0;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
    z-index: 1;
  }
  .over a::after {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    top: 0;
    left: 0;
  }
  .over a:hover::before {
    opacity: 0;
  }
  .over a:hover::after {
    background-color: rgba(0, 0, 0, 0.4);
  }
  .over a img {
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  .over a:hover img {
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  .over .overlay {
    position: absolute;
    width: 100%;
    text-align: center;
    z-index: 10;
    color: #fff;
    top: 10%;
    left: 0;
    padding: 1em;
  }
  .over h3 {
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  .over p {
    margin-bottom: 1em;
  }
}
@media only screen and (max-width: 979px) {
  #hp-main-boxes .overlay {
    bottom: 50%;
    -webkit-transform: translate(0px, 50%);
    -moz-transform: translate(0px, 50%);
    -o-transform: translate(0px, 50%);
    -ms-transform: translate(0px, 50%);
    transform: translate(0px, 50%);
  }
}
@media only screen and (min-width: 980px) {
  .x-navbar .desktop .x-nav {
    margin-top: 30px;
    clear: right;
  }
  .x-brand {
    margin-bottom: 21px;
  }
  .x-topbar {
    margin-bottom: -1rem;
  }
  .x-topbar .x-nav {
    padding: 29px 0 0;
  }
  .x-navbar .desktop .x-nav > li {
    text-transform: uppercase;
    margin-left: 2em;
    font-weight: 700;
    letter-spacing: 1px;
  }
  .x-colophon.bottom {
    padding: 75px 0 100px;
  }
  .x-colophon.bottom #menu-footer-navigation {
    margin: 0 0 32px;
    padding-bottom: 48px;
  }
  .x-colophon.bottom .x-nav li {
    margin: 0 62px 0 0;
  }
  .x-colophon.bottom #menu-footer-navigation a {
    margin: 0;
    font-weight: 500;
    letter-spacing: 1px;
  }
  .floating-content .float-bottom {
    bottom: -60px;
    -webkit-transition: bottom 0.3s ease-in-out;
    transition: bottom 0.3s ease-in-out;
    padding-left: 54px !important;
  }
  .x-section:hover .float-bottom {
    bottom: 30px;
  }
  #map-wrap {
    padding-top: 315px !important;
  }
  .hero-ttl .x-container {
    min-height: 350px;
  }
  .sub-navigation a {
    padding: 0 15px;
    font-size: 0.6875rem;
  }
  .x-colophon.top .x-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .x-colophon.top .x-container .x-column.x-1-3 {
    width: auto;
  }
  .x-colophon.top .x-container .x-column.x-1-3:first-child,
  .x-colophon.top .x-container .x-column.x-1-3:last-child {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -moz-box-flex: 0;
    -moz-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .x-colophon.top .x-container .x-column.x-1-3:nth-child(2) {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -moz-box-flex: 1;
    -moz-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
  .x-colophon.top .x-container #nav_menu-2 {
    margin: 0 auto;
  }
  /* body:not(.home)
    .x-section:not(.hero-ttl):not(.sub-navigation):not(.no-top-padding) {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  } */
  .over-bottom + .x-section:after {
    max-height: 110px;
    height: 30%;
  }
  .tp-caption {
    min-width: 600px !important;
  }
  #hp-main-boxes a::after {
    content: "";
    width: 37px;
    height: 41px;
    background: url(../../images/box-check-mark.svg) 0 0 no-repeat;
    background-size: cover;
    position: absolute;
    right: 0;
    bottom: 0;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
  }
  #hp-main-boxes a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-transition: background-color 0.5s ease-in-out;
    transition: background-color 0.5s ease-in-out;
    z-index: 1;
  }
  #hp-main-boxes a:hover::after {
    opacity: 0;
  }
  #hp-main-boxes a:hover::before {
    background-color: rgba(0, 0, 0, 0.3);
  }
  #hp-main-boxes h3 {
    font-size: 1.5rem;
    margin: 10px 0;
  }
  #hp-main-boxes .svg-btn {
    margin-top: 30px;
    opacity: 0;
    overflow: hidden;
    max-height: 0;
  }
  #hp-main-boxes .svg-btn svg {
    max-height: 0;
  }
  #hp-main-boxes .overlay {
    padding-top: 13%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  #hp-main-boxes a:hover .overlay {
    margin-top: -90px;
  }
  #hp-main-boxes a:hover .overlay svg[id*="icon"] {
    opacity: 0;
  }
  #hp-main-boxes a:hover .overlay .svg-btn {
    display: inline-block;
    opacity: 1;
    max-height: 50px;
  }
  #hp-main-boxes a:hover .overlay .svg-btn svg {
    max-height: 50px;
  }
  #hp-about-section p,
  #hp-about-section h2 {
    text-shadow: none;
  }
  #hp-about-section p {
    margin-bottom: 30px;
  }
  #hp-about-section h2 {
    margin: 63px 0 26px;
  }
  #hp-assesment-section {
    width: calc(32.55% - 7px);
  }
  #hp-webinars-section {
    width: calc(67.45% - 7px);
  }
  #hp-webinars-section .x-container {
    float: right;
    width: 49%;
    background-color: rgba(5, 19, 63, 0.65);
    -webkit-transition: background-color 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
  }
  #hp-webinars-section:hover .x-container {
    background-color: #05133f;
  }
  .header-cloning ul {
    float: none;
    text-align: center;
    position: absolute;
    left: 0;
    width: 100%;
  }
  .header-cloning ul li:last-child {
    margin: 0;
    position: absolute;
    top: 0;
    right: 0;
  }
  .header-cloning ul li:last-child a {
    display: block;
    line-height: 50px;
    width: 153px;
    background-color: #24135f;
    color: #fff;
    font-weight: 700;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .header-cloning ul li:last-child a:hover {
    background-color: #05133f;
    color: #ff8f1c;
  }
  .header-cloning ul a {
    font-weight: 700;
  }
  #learning-section-one .svg-wrapper {
    padding-top: 3em;
  }
  #map-wrap {
    padding-top: 50px !important;
  }
  #testimonials-section .x-2-3 {
    line-height: 1.3;
  }
  #at-a-glance-content strong {
    display: inline-block;
    width: 40%;
    font-size: 1.5rem;
  }
  #mission-section .x-2-3 .x-text h3:not(:first-child) {
    margin-top: 3em;
  }
  .testimonials:not(.nonav) .easy-t-slideshow-wrap {
    position: relative;
  }
  .testimonials:not(.nonav) .easy-t-slideshow-wrap .easy-t-cycle-controls div {
    margin: 0;
    position: absolute;
    top: 25px;
  }
  .testimonials:not(.nonav) .easy-t-slideshow-wrap .cycle-prev {
    left: -40px;
  }
  .testimonials:not(.nonav) .easy-t-slideshow-wrap .cycle-next {
    right: -40px;
  }
  .leadership-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
  }
  .leadership-flex .lider {
    width: 46%;
  }
  #methodology-section .svg-wrapper {
    padding-top: 3em;
  }
  #meet-our-coaches-section dt {
    font-size: 1.125rem;
  }
  #meet-our-coaches-section dt strong {
    font-size: 2rem;
    line-height: 1;
  }
  #performance-roadmap-section ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    margin-top: 4em;
  }
  #performance-roadmap-section li {
    -webkit-flex-basis: 33%;
    -moz-flex-basis: 33%;
    -ms-flex-preferred-size: 33%;
    flex-basis: 33%;
    margin-bottom: 3em;
  }
  #sustainability-section .x-2-3 {
    line-height: 1.3;
  }
  #resources-offered {
    padding-top: 0 !important;
  }
  #resources-offered li a:first-child {
    overflow: hidden;
  }
  #resources-offered li a:first-child img {
    margin-bottom: 0;
  }
  #resources-offered li a:first-child .float-bottom {
    position: absolute;
    left: 10%;
    bottom: -60px;
    -webkit-transition: bottom 0.2s ease-in-out;
    transition: bottom 0.2s ease-in-out;
  }
  #resources-offered li a:first-child h1,
  #resources-offered li a:first-child h2,
  #resources-offered li a:first-child h3,
  #resources-offered li a:first-child h4 {
    color: #fff;
    margin-bottom: 1.5em;
  }
  #resources-offered li a:first-child .svg-btn {
    display: inline-block;
  }
  #resources-offered li a:first-child:hover .float-bottom {
    bottom: 10px;
  }
  #app-section .x-1-3:not(:last-child) {
    margin-top: 6rem;
  }
  #app-section .x-1-3:nth-child(2) p {
    margin-bottom: 6rem;
  }
  .page-id-321 #testimonials-wrapper .x-column {
    float: left;
    margin-right: 4%;
  }
  .page-id-321 #testimonials-wrapper .x-column.x-2-3 {
    width: 65.33332%;
  }
  .page-id-321 #testimonials-wrapper .x-column.x-1-3 {
    width: 30.66666%;
    margin-right: 0;
  }
}
@media only screen and (min-width: 980px) and (-ms-high-contrast: active),
  only screen and (min-width: 980px) and (-ms-high-contrast: none) {
  #map-wrap svg {
    min-height: 285px;
    min-width: 600px;
  }
}
@media only screen and (min-width: 980px) {
  .over h3 {
    font-size: 1.5rem;
  }
  .over .overlay {
    top: 50%;
    -moz-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .over .content {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -moz-transform: translate(0, 200px);
    -o-transform: translate(0, 200px);
    -ms-transform: translate(0, 200px);
    -webkit-transform: translate(0, 200px);
    transform: translate(0, 200px);
  }
  .over a:hover .content {
    -moz-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    max-height: 300px;
  }
  .multibox .x-block-grid {
    margin-bottom: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
  }
  .multibox .x-block-grid-item {
    margin-right: 0;
    width: 31% !important;
    background-color: #fff;
    margin-bottom: 20px;
  }
  .multibox .check-mark {
    display: block;
  }
  #newsletter-form .field {
    width: calc((100% - 180px) / 4);
    display: inline-block;
  }
  #newsletter-form .hs_email.field {
    margin-left: 10px;
  }
}
@media only screen and (min-width: 1024px) {
  #rev_slider_1_1_wrapper,
  .forcefullwidth_wrapper_tp_banner,
  #rev_slider_1_1 {
    height: 560px !important;
  }
}
@media only screen and (min-width: 1200px) {
  .x-navbar .desktop .x-nav > li {
    margin-left: 64px;
  }
  .hero-ttl + .x-section:not(.sub-navigation) {
    padding-top: 110px !important;
  }
  .sub-navigation ul {
    text-align: left;
    padding-left: 18px;
  }
  .sub-navigation li:last-child {
    float: right;
  }
  .sub-navigation li:last-child a {
    padding: 0 26px;
    background-color: #24135f;
    color: #fff;
    font-weight: 700;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .sub-navigation li:last-child a:hover {
    background-color: #05133f;
    color: #ff8f1c;
  }
  .sub-navigation a {
    padding: 0 18px;
  }
  .over-bottom + .x-section:after {
    max-height: 130px;
  }
  #testimonials-wrapper .testimonials {
    margin-top: 150px;
  }
  p.slide-heading {
    font-size: 72px !important;
  }
  p.slide-sub-heading {
    margin-bottom: 50px !important;
  }
  .tp-caption {
    min-width: 780px !important;
  }
  .tp-bullets {
    left: 70px !important;
    top: auto !important;
    bottom: 20px;
  }
  #rev_slider_1_1_wrapper,
  .forcefullwidth_wrapper_tp_banner,
  #rev_slider_1_1 {
    height: 755px !important;
  }
  .tp-parallax-wrap {
    left: 165px !important;
    top: 120px !important;
  }
  #hp-main-boxes {
    padding: 100px 0 !important;
  }
  #hp-main-boxes h2 {
    margin-bottom: 3em;
  }
  #hp-main-boxes h3 {
    margin: 0 0 20px;
  }
  #hp-main-boxes h3 a {
    text-decoration: none;
    position: relative;
  }
  #hp-main-boxes h3 a::before {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    border-top: 2px solid #24135f;
    left: 0;
    bottom: 0;
    position: absolute;
  }
  #hp-main-boxes h3 a:hover::before {
    display: none;
  }
  #hp-main-boxes p {
    line-height: 1.2;
  }
  #hp-main-boxes .x-column.x-1-3 {
    width: 31.1%;
  }
  #hp-main-boxes .x-column.x-1-3:not(:last-child) {
    margin-right: 3.35%;
  }
  #at-a-glance-content strong {
    font-size: 1.75rem;
  }
  .history-slider .x-slide {
    position: relative;
    overflow: hidden;
  }
  .history-slider .x-slide h4,
  .history-slider .x-slide p:not(:last-child) {
    float: left;
    width: 48%;
    clear: left;
  }
  .history-slider .x-slide p:last-child {
    float: right;
    width: 48%;
    margin: -30px 0 0;
  }
  .history-slider .flex-direction-nav {
    width: 48%;
    right: 0;
    left: auto;
  }
  #mission-section {
    padding: 5em 0 !important;
  }
  #meet-our-coaches-section dl {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  #meet-our-coaches-section dt,
  #meet-our-coaches-section dd {
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
  }
  #meet-our-coaches-section dd {
    padding-right: 3em;
  }
  #performance-roadmap-section li {
    -webkit-flex-basis: 25%;
    -moz-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    margin-bottom: 4em;
  }
  #app-section .app-links {
    text-align: left;
  }
  #app-section .app-links a:first-child {
    margin-left: 0;
  }
  #app-section .app-links a:last-child {
    margin-right: 0;
  }
}
@media only screen and (min-width: 1200px) and (-ms-high-contrast: active),
  only screen and (min-width: 1200px) and (-ms-high-contrast: none) {
  #map-wrap svg {
    min-height: 330px;
  }
}
@media only screen and (min-width: 1200px) {
  .multibox .x-block-grid-item {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1366px) {
  #hp-main-boxes .x-column h3 {
    font-size: 2.5rem;
    margin: 0 0 20px;
  }
  #hp-main-boxes .x-column p {
    font-size: 1.4375rem;
    margin-bottom: 0;
  }
  #hp-main-boxes .x-column svg[id*="icon"] {
    max-height: none;
  }
  .over-bottom + .x-section:after {
    max-height: 160px;
    height: 40%;
  }
  #testimonials-wrapper .testimonials {
    margin-top: 170px;
  }
}
@media only screen and (min-width: 1366px) and (-ms-high-contrast: active),
  only screen and (min-width: 1366px) and (-ms-high-contrast: none) {
  #map-wrap svg {
    min-height: 380px;
  }
}
@media only screen and (min-width: 1366px) {
  .over h3 {
    font-size: 2rem;
    margin: 0 0 20px;
  }
  .over p {
    font-size: 1.25rem;
    margin-bottom: 2em;
    line-height: 1.2;
  }
  .over .overlay {
    padding: 1em 3em;
  }
  .over .svg-btn,
  .over .svg-btn svg {
    width: 226px;
    height: 67px;
  }
  .over strong {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 1600px) {
  #hp-main-boxes .overlay {
    padding-top: 13%;
  }
}
@media only screen and (min-width: 1600px) and (-ms-high-contrast: active),
  only screen and (min-width: 1600px) and (-ms-high-contrast: none) {
  #map-wrap svg {
    height: 440px;
    width: 910px;
  }
}

.BUTTON_JBP {
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	color: #ffffff;
	font-weight: 700;
	padding-left: 15px;
	padding-right: 15px;
	padding-bottom: 15px;
	background-color: #ff8f1c;
	text-decoration: none;
	display: inline-block;
	cursor: pointer;
	font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
	font-style: normal;
	letter-spacing: 0.085em;
	text-transform: uppercase;
}

li#menu-
item-2820 a {
	color: white !important;
}

#cloned-main-nav > ul > li.BUTTON_JBP.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-2820 {
  background-color:  #ffffff;
}
#cloned-main-nav > ul > li.BUTTON_JBP.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-2820 > a {
  color: #ffffff !important;
}
@media only screen and (min-width: 860px) {
#rev_slider_1_1_wrapper, .forcefullwidth_wrapper_tp_banner, #rev_slider_1_1 {
    /* height: 755px !important; */
    height: 435px !important;
	}
}
@media only screen and (max-width: 767px) {
p.slide-heading {
    font-size: 38px !important;
	}
}
@media only screen and (max-width: 320px) {
p.slide-heading {
    font-size: 30px !important;
	}
}
.tp-parallax-wrap {
    top: 25px !important;
}


/*2018 UPDATES*/
.header-cloning.sticky {
  overflow: visible !important;
}

.header-cloning .BUTTON_JBP {
  padding: 0;
}

.header-cloning .sub-menu {
  background-color: rgba(255,255,255,0.95);
  min-width: 200px;
  margin: 0;
  box-shadow: 0 3px 3px rgba(2,2,2,.1);
  display: none;
}

.header-cloning .sub-menu li {
  display: block;
  width: 100%;
  margin: 0;
}

.header-cloning .sub-menu li a {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0 15px;
}

.header-cloning .sub-menu li:last-child {
  position: relative;
  top: auto;
  right: auto;
}

.header-cloning .sub-menu li:last-child a {
  background-color: transparent;
  width: 100%;
}

.header-cloning .sub-menu li:last-child a:hover {
  background-color: transparent;
}

.header-cloning .menu-item-has-children:hover .sub-menu {
    display: block;
}

#cloned-main-nav>ul>li.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-25>a>span {
  color: #24135f !important;
}

@media only screen and (max-width: 979px) {

  .over {
    position: relative;
  }
  .over a {
    display: block;
    position: relative;
    overflow: hidden;
  }
  .over a::after,
  .over a::before {
    content: "";
    display: block;
    position: absolute;
  }
  .over a::before {
    width: 37px;
    height: 41px;
    background: url(../../images/services-hp-check-mark.png) 0 0 no-repeat;
    background-size: cover;
    right: 0;
    bottom: 0;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
    z-index: 1;
  }
  .over a::after {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    top: 0;
    left: 0;
  }
  .over a:hover::before {
    opacity: 0;
  }
  .over a:hover::after {
    background-color: rgba(0, 0, 0, 0.4);
  }
  .over a img {
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  .over a:hover img {
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  .over .svg-btn {
    min-width: 0;
  }

  .over .svg-btn strong {
    margin-left: 0 !important;
    font-size: 12px !important;
  }

  .over .svg-btn svg {
    display: block !important;
  }

  .over .overlay {
    position: absolute;
    width: 100%;
    text-align: center;
    z-index: 10;
    color: #fff;
    top: 25%;
    left: 0;
    padding: 1em;
  }
  .over h3 {
    text-transform: uppercase;
    margin-bottom: 16px;
    font-size: 24px !important;
  }
  .over p {
    margin-bottom: 1em;
  }

}



