@charset "UTF-8";
/* -------------------------------------------------------------------------- *
 * Baseline Framework *
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *
 * CSS and SASS Variables *
 * -------------------------------------------------------------------------- */
/* --------------------------------- *
 * CSS Custom Properties (Variables) *
 * --------------------------------- */
:root {
  --gutter: 30px;
  --border-radius: 30px;
  --accentMargin: calc((100vw - 1430px) / -2);
  --slight-shadow: 1px 2px 8px 1px rgba(56, 56, 56, 0.25);
  --section-shadow: 2px 2px 12px -2px rgba(75, 75, 75, 0.25);
}

/* ------------------ *
 * Colour Palette Map *
 * ------------------ *
 * For all colours other than pure white and pure black
 * Access values using palette() in Functions.scss
 */
/* -------------- *
 * Font Stack Map *
 * -------------- *
 * For the font-family stacks used in the design
 * Access values using fontStack() in Functions.scss
 */
/* ----------------- *
 * Site Settings Map  *
 * ----------------- *
 * For common and shared settings and dimensions
 * Access values using settings() in Functions.scss
 */
/* ----------------- *
 * Media Queries *
 * ----------------- *
 */
/* ------------------ *
 * Palette Map Lookup *
 * ------------------ *
 * Shortcut for $palette_map values in Variables.scss
 * If the shade is not declared in the palette map it will be generated
 * @param $colour: Key for the color name in the palette map
 * @param shade (optional): Key for color shade, defaults to 'default'
 * @return: The requested key value for the color/tint
 */
/* --------------------- *
 * Font Stack Map Lookup *
 * --------------------- *
 * Shortcut for $font_stack_map values in Variables.scss
 * @param $key: Key for the value in the map
 * @return: The requested key value
 */
/* ------------------- *
 * Settings Map Lookup *
 * ------------------- *
 * Shortcut for $settings_map values in Variables.scss
 * @param $key: Key for the value in the map
 * @return: The requested key value
 */
/* -------------------------------------------------------------------------- *
* Unit Conversions *
* -------------------------------------------------------------------------- */
/* ----------------------- *
 * Pixel to REM Conversion *
 * ----------------------- *
 * Converts a pixel value to a root em value based on the root font-size
 * @param $pixels: The size (in pixels) to convert
 * @return: The size in REMs
 */
/* -------------------------------------------------------------------------- *
 * String Manipulation *
 * -------------------------------------------------------------------------- */
/* ----------------- *
 * Capitalize String *
 * ----------------- *
 * Sets the first character in a string to uppercase
 * @param $string: The string to capitalize
 * @return: The capitalized string
 */
/* -------------------------------------------------------------------------- *
 * Other Functions *
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *
 * CSS and SASS Variables *
 * -------------------------------------------------------------------------- */
/* --------------------------------- *
 * CSS Custom Properties (Variables) *
 * --------------------------------- */
:root {
  --gutter: 30px;
  --border-radius: 30px;
  --accentMargin: calc((100vw - 1430px) / -2);
  --slight-shadow: 1px 2px 8px 1px rgba(56, 56, 56, 0.25);
  --section-shadow: 2px 2px 12px -2px rgba(75, 75, 75, 0.25);
}

/* ------------------ *
 * Colour Palette Map *
 * ------------------ *
 * For all colours other than pure white and pure black
 * Access values using palette() in Functions.scss
 */
/* -------------- *
 * Font Stack Map *
 * -------------- *
 * For the font-family stacks used in the design
 * Access values using fontStack() in Functions.scss
 */
/* ----------------- *
 * Site Settings Map  *
 * ----------------- *
 * For common and shared settings and dimensions
 * Access values using settings() in Functions.scss
 */
/* ----------------- *
 * Media Queries *
 * ----------------- *
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* -------------------------------------------------------------------------- *
 * SASS Map Lookup Functions *
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *
 * CSS and SASS Variables *
 * -------------------------------------------------------------------------- */
/* --------------------------------- *
 * CSS Custom Properties (Variables) *
 * --------------------------------- */
:root {
  --gutter: 30px;
  --border-radius: 30px;
  --accentMargin: calc((100vw - 1430px) / -2);
  --slight-shadow: 1px 2px 8px 1px rgba(56, 56, 56, 0.25);
  --section-shadow: 2px 2px 12px -2px rgba(75, 75, 75, 0.25);
}

/* ------------------ *
 * Colour Palette Map *
 * ------------------ *
 * For all colours other than pure white and pure black
 * Access values using palette() in Functions.scss
 */
/* -------------- *
 * Font Stack Map *
 * -------------- *
 * For the font-family stacks used in the design
 * Access values using fontStack() in Functions.scss
 */
/* ----------------- *
 * Site Settings Map  *
 * ----------------- *
 * For common and shared settings and dimensions
 * Access values using settings() in Functions.scss
 */
/* ----------------- *
 * Media Queries *
 * ----------------- *
 */
/* -------------------------------------------------------------------------- *
 * SASS Map Lookup Functions *
 * -------------------------------------------------------------------------- */
/* ------------------ *
 * Palette Map Lookup *
 * ------------------ *
 * Shortcut for $palette_map values in Variables.scss
 * If the shade is not declared in the palette map it will be generated
 * @param $colour: Key for the color name in the palette map
 * @param shade (optional): Key for color shade, defaults to 'default'
 * @return: The requested key value for the color/tint
 */
/* --------------------- *
 * Font Stack Map Lookup *
 * --------------------- *
 * Shortcut for $font_stack_map values in Variables.scss
 * @param $key: Key for the value in the map
 * @return: The requested key value
 */
/* ------------------- *
 * Settings Map Lookup *
 * ------------------- *
 * Shortcut for $settings_map values in Variables.scss
 * @param $key: Key for the value in the map
 * @return: The requested key value
 */
/* -------------------------------------------------------------------------- *
* Unit Conversions *
* -------------------------------------------------------------------------- */
/* ----------------------- *
 * Pixel to REM Conversion *
 * ----------------------- *
 * Converts a pixel value to a root em value based on the root font-size
 * @param $pixels: The size (in pixels) to convert
 * @return: The size in REMs
 */
/* -------------------------------------------------------------------------- *
 * String Manipulation *
 * -------------------------------------------------------------------------- */
/* ----------------- *
 * Capitalize String *
 * ----------------- *
 * Sets the first character in a string to uppercase
 * @param $string: The string to capitalize
 * @return: The capitalized string
 */
/* -------------------------------------------------------------------------- *
 * Other Functions *
 * -------------------------------------------------------------------------- */
.visuallyHidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/* --------------------------------- *
 * Mixins *
 * --------------------------------- */
html {
  -webkit-font-smoothing: antialiased;
  font-family: ubuntu, sans-serif;
}

body {
  font-family: ubuntu, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5; /* 30px */
  color: #58585a;
}
@media (max-width: 980px) {
  body {
    font-size: 18px;
  }
}

.ephesis-regular {
  font-family: "Ephesis", cursive;
  font-weight: 400;
  font-style: normal;
}

section {
  overflow: hidden;
}

strong {
  font-weight: 700;
}

a {
  color: #cd1480;
}

hr {
  border-color: #7b0b69;
  margin: 0 auto 20px;
  max-width: 1240px;
  width: 100%;
  border-top-width: 0px;
}

.h1,
h1 {
  color: #00676a;
  font-family: ubuntu, sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 98%; /* 62.72px */
  font-size: clamp(2.75rem, 1.878vw + 2.31rem, 6rem);
}

.h2,
h2 {
  font-family: ubuntu, sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.04px;
  color: #00676a;
}
.h2--white,
h2--white {
  color: #fff;
}
@media (max-width: 980px) {
  .h2,
  h2 {
    font-size: 42px;
  }
}
@media (max-width: 700px) {
  .h2,
  h2 {
    font-size: 38px;
  }
}

.h3,
h3 {
  font-family: ubuntu, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1; /* 44px */
  color: #00676a;
}
.h3--white,
h3--white {
  color: #fff;
}
@media (max-width: 980px) {
  .h3,
  h3 {
    font-size: 32px;
  }
}
@media (max-width: 700px) {
  .h3,
  h3 {
    font-size: 28px;
  }
}

.h4,
h4 {
  font-family: ubuntu, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1; /* 112.5% */
  color: #00676a;
}
.h4--white,
h4--white {
  color: #fff;
}
@media (max-width: 980px) {
  .h4,
  h4 {
    font-size: 28px;
  }
}
@media (max-width: 700px) {
  .h4,
  h4 {
    font-size: 24px;
  }
}

.h5,
h5 {
  font-family: ubuntu, sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: normal;
  color: #00676a;
}
@media (max-width: 700px) {
  .h5,
  h5 {
    font-size: 22px;
  }
}
.h5--white,
h5--white {
  color: #fff;
}

.text--large {
  /* Design/Body/Large */
  font-family: ubuntu, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4; /* 33.6px */
}
@media (max-width: 980px) {
  .text--large {
    font-size: 20px;
  }
}
@media (max-width: 700px) {
  .text--large {
    font-size: 18px;
  }
}

.text--small {
  /* Design/Body/Small */
  font-family: ubuntu, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4; /* 25.2px */
}

.link {
  color: #06357a;
  font-family: ubuntu, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5; /* 33.6px */
  text-decoration: underline;
}
@media (max-width: 700px) {
  .link {
    font-size: 18px;
  }
}

.topographic-bg {
  background-image: url(../img/TopographicPattern.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.topographic-bg--teal {
  background-image: url(../img/TopographicPattern--teal.svg);
}

.lightbox-overlay {
  overflow-y: scroll;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999999;
}
.lightbox-overlay__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 80%;
  max-height: 80%;
}
.lightbox-overlay__close {
  position: absolute;
  top: -20px;
  right: -20px;
  cursor: pointer;
  color: #fff;
  font-size: 24px;
}
.lightbox-overlay__container {
  position: relative;
  width: 50vw;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-overlay__container.spotify {
  width: 35vw;
}
.lightbox-overlay__container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

ol.list--big-numbers {
  list-style-type: none; /* Remove default markers */
  counter-reset: list; /* Initialize a counter */
  margin-left: 60px;
  margin-top: 30px;
  padding-left: 0;
}
ol.list--big-numbers li {
  position: relative;
  margin-bottom: 30px;
  font-size: 20px;
  line-height: 45px;
  list-style-type: none;
  padding-left: 18px;
  padding-top: 0;
}
ol.list--big-numbers li::before {
  content: counter(list); /* Insert the counter value */
  counter-increment: list; /* Increment the counter */
  display: block;
  width: 50px;
  height: 50px;
  line-height: 25px;
  border-radius: 50%;
  background-color: #22b2b6;
  color: white;
  text-align: center;
  position: absolute;
  left: -60px;
  top: 0;
  font-family: ubuntu, sans-serif;
  font-size: 24px;
  line-height: 45px;
  font-weight: 500;
}
ol.list--big-numbers li .list--big-numbers {
  margin-left: 0;
  margin-top: 0;
  padding-left: 1.3rem;
}
ol.list--big-numbers li .list--big-numbers li {
  margin-bottom: 5px;
}
ol.list--big-numbers li li {
  list-style-type: disc;
}
ol.list--big-numbers li li::marker {
  color: #00676a;
}
ol.list--big-numbers li li::before {
  content: none;
}
ol.list--big-numbers li li .list--big-numbers li::marker {
  color: #ffd338;
}
ol.list--big-numbers li li .list--big-numbers li .list--big-numbers li::marker {
  color: #00676a;
}
ol.list--big-numbers li li .list--big-numbers li .list--big-numbers li .list--big-numbers li::marker {
  color: #ffd338;
}
ol.list--big-numbers li li .list--big-numbers li .list--big-numbers li .list--big-numbers li .list--big-numbers li::marker {
  color: #00676a;
}
ol.list--big-numbers li li .list--big-numbers li .list--big-numbers li .list--big-numbers li .list--big-numbers li .list--big-numbers li::marker {
  color: #ffd338;
}

@keyframes twinkle {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.8); /* Grow 20% */
    opacity: 0.75; /* Fade out 50% */
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes pulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.15); /* Gently grow */
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes grow-out {
  from {
    transform: scaleY(0);
    opacity: 0;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}
@keyframes grow-1 {
  from {
    transform: scaleY(0) rotate(-45deg);
    opacity: 0;
  }
  to {
    transform: scaleY(1) rotate(-45deg);
    opacity: 1;
  }
}
@keyframes grow-2 {
  from {
    transform: scaleY(0) rotate(15deg);
    opacity: 0;
  }
  to {
    transform: scaleY(1) rotate(15deg);
    opacity: 1;
  }
}
@keyframes grow-3 {
  from {
    transform: scaleX(0) rotate(-90deg);
    opacity: 0;
  }
  to {
    transform: scaleX(1) rotate(-90deg);
    opacity: 1;
  }
}
@keyframes pop-in-1 {
  0% {
    transform: scale(0) rotate(-70deg); /* Start at 0 size */
    opacity: 0;
  }
  80% {
    transform: scale(1.1) rotate(-70deg); /* Overshoot */
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(-70deg); /* Settle */
    opacity: 1;
  }
}
@keyframes pop-in-2 {
  0% {
    transform: scale(0) rotate(-15deg); /* Start at 0 size */
    opacity: 0;
  }
  80% {
    transform: scale(1.1) rotate(-15deg); /* Overshoot */
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(-15deg); /* Settle */
    opacity: 1;
  }
}
@keyframes pop-stay-fade-1 {
  /* --- Phase 1: Pop In (0s -> 0.4s) --- */
  0% {
    transform: scale(0) rotate(-70deg);
    opacity: 0;
  }
  /* Overshoot: 80% of the 0.4s pop = 0.32s
     (0.32s / 3.7s total) = 8.6%
  */
  8.6% {
    transform: scale(1.1) rotate(-70deg);
    opacity: 1;
  }
  /* Settle: End of pop = 0.4s
     (0.4s / 3.7s total) = 10.8%
  */
  10.8% {
    transform: scale(1) rotate(-70deg);
    opacity: 1;
  }
  /* --- Phase 2: Stay (0.4s -> 3.4s) --- */
  /* End of stay = 0.4s + 3s = 3.4s
    (3.4s / 3.7s total) = 91.9%

    The properties are identical to 10.8%, 
    so nothing changes between these two keyframes.
  */
  91.9% {
    transform: scale(1) rotate(-70deg);
    opacity: 1;
  }
  /* --- Phase 3: Fade Out (3.4s -> 3.7s) --- */
  /* End of animation = 3.7s = 100% */
  100% {
    transform: scale(1) rotate(-70deg); /* Keep size/rotation */
    opacity: 0;
  }
}
@keyframes pop-stay-fade-2 {
  0% {
    transform: scale(0) rotate(-15deg);
    opacity: 0;
  }
  8.6% {
    transform: scale(1.1) rotate(-15deg);
    opacity: 1;
  }
  10.8% {
    transform: scale(1) rotate(-15deg);
    opacity: 1;
  }
  91.9% {
    transform: scale(1) rotate(-15deg);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(-15deg);
    opacity: 0;
  }
}
@keyframes pop-stay-fade-3 {
  0% {
    transform: scale(0) rotate(-125deg);
    opacity: 0;
  }
  8.6% {
    transform: scale(1.1) rotate(-125deg);
    opacity: 1;
  }
  10.8% {
    transform: scale(1) rotate(-125deg);
    opacity: 1;
  }
  91.9% {
    transform: scale(1) rotate(-125deg);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(-125deg);
    opacity: 0;
  }
}
@keyframes pop-stay-fade-4 {
  0% {
    transform: scale(0) rotate(-45deg);
    opacity: 0;
  }
  8.6% {
    transform: scale(1.1) rotate(-45deg);
    opacity: 1;
  }
  10.8% {
    transform: scale(1) rotate(-45deg);
    opacity: 1;
  }
  91.9% {
    transform: scale(1) rotate(-45deg);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(-45deg);
    opacity: 0;
  }
}
@keyframes pop-stay-fade-5 {
  0% {
    transform: scale(0) rotate(35deg);
    opacity: 0;
  }
  8.6% {
    transform: scale(1.1) rotate(35deg);
    opacity: 1;
  }
  10.8% {
    transform: scale(1) rotate(35deg);
    opacity: 1;
  }
  91.9% {
    transform: scale(1) rotate(35deg);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(35deg);
    opacity: 0;
  }
}
@keyframes pop-stay-fade-6 {
  0% {
    transform: scale(0) rotate(80deg);
    opacity: 0;
  }
  8.6% {
    transform: scale(1.1) rotate(80deg);
    opacity: 1;
  }
  10.8% {
    transform: scale(1) rotate(80deg);
    opacity: 1;
  }
  91.9% {
    transform: scale(1) rotate(80deg);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(80deg);
    opacity: 0;
  }
}
@keyframes pop-stay-fade-7 {
  0% {
    transform: scale(0) rotate(120deg);
    opacity: 0;
  }
  8.6% {
    transform: scale(1.1) rotate(120deg);
    opacity: 1;
  }
  10.8% {
    transform: scale(1) rotate(120deg);
    opacity: 1;
  }
  91.9% {
    transform: scale(1) rotate(120deg);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(120deg);
    opacity: 0;
  }
}
@keyframes pop-stay-fade-8 {
  0% {
    transform: scale(0) rotate(170deg);
    opacity: 0;
  }
  8.6% {
    transform: scale(1.1) rotate(170deg);
    opacity: 1;
  }
  10.8% {
    transform: scale(1) rotate(170deg);
    opacity: 1;
  }
  91.9% {
    transform: scale(1) rotate(170deg);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(170deg);
    opacity: 0;
  }
}
@keyframes pop-stay-fade-9 {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  8.6% {
    transform: scale(1.1) rotate(45deg);
    opacity: 1;
  }
  10.8% {
    transform: scale(1) rotate(45deg);
    opacity: 1;
  }
  91.9% {
    transform: scale(1) rotate(45deg);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(45deg);
    opacity: 0;
  }
}
@keyframes pop-stay-fade-10 {
  0% {
    transform: scale(0) rotate(100deg);
    opacity: 0;
  }
  8.6% {
    transform: scale(1.1) rotate(100deg);
    opacity: 1;
  }
  10.8% {
    transform: scale(1) rotate(100deg);
    opacity: 1;
  }
  91.9% {
    transform: scale(1) rotate(100deg);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(100deg);
    opacity: 0;
  }
}
@keyframes pop-stay-fade-11 {
  0% {
    transform: scale(0) rotate(-45deg);
    opacity: 0;
  }
  8.6% {
    transform: scale(1.1) rotate(-45deg);
    opacity: 1;
  }
  10.8% {
    transform: scale(1) rotate(-45deg);
    opacity: 1;
  }
  91.9% {
    transform: scale(1) rotate(-45deg);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(-45deg);
    opacity: 0;
  }
}
@keyframes pop-stay-fade-12 {
  0% {
    transform: scale(0) rotate(30deg);
    opacity: 0;
  }
  8.6% {
    transform: scale(1.1) rotate(30deg);
    opacity: 1;
  }
  10.8% {
    transform: scale(1) rotate(30deg);
    opacity: 1;
  }
  91.9% {
    transform: scale(1) rotate(30deg);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(30deg);
    opacity: 0;
  }
}
@keyframes pop-stay-fade-13 {
  0% {
    transform: scale(0) rotate(60deg);
    opacity: 0;
  }
  8.6% {
    transform: scale(1.1) rotate(60deg);
    opacity: 1;
  }
  10.8% {
    transform: scale(1) rotate(60deg);
    opacity: 1;
  }
  91.9% {
    transform: scale(1) rotate(60deg);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(60deg);
    opacity: 0;
  }
}
@keyframes pop-stay-fade-14 {
  0% {
    transform: scale(0) rotate(-120deg);
    opacity: 0;
  }
  8.6% {
    transform: scale(1.1) rotate(-120deg);
    opacity: 1;
  }
  10.8% {
    transform: scale(1) rotate(-120deg);
    opacity: 1;
  }
  91.9% {
    transform: scale(1) rotate(-120deg);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(-120deg);
    opacity: 0;
  }
}
@keyframes pop-stay-fade-15 {
  0% {
    transform: scale(0) rotate(190deg);
    opacity: 0;
  }
  8.6% {
    transform: scale(1.1) rotate(190deg);
    opacity: 1;
  }
  10.8% {
    transform: scale(1) rotate(190deg);
    opacity: 1;
  }
  91.9% {
    transform: scale(1) rotate(190deg);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(190deg);
    opacity: 0;
  }
}
@keyframes pop-stay-fade-16 {
  0% {
    transform: scale(0) rotate(-45deg);
    opacity: 0;
  }
  8.6% {
    transform: scale(1.1) rotate(-45deg);
    opacity: 1;
  }
  10.8% {
    transform: scale(1) rotate(-45deg);
    opacity: 1;
  }
  91.9% {
    transform: scale(1) rotate(-45deg);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(-45deg); /* Keep size/rotation */
    opacity: 0;
  }
}
@keyframes pop-stay-fade-17 {
  0% {
    transform: scale(0) rotate(-15deg);
    opacity: 0;
  }
  8.6% {
    transform: scale(1.1) rotate(-15deg);
    opacity: 1;
  }
  10.8% {
    transform: scale(1) rotate(-15deg);
    opacity: 1;
  }
  91.9% {
    transform: scale(1) rotate(-15deg);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(-15deg);
    opacity: 0;
  }
}
@keyframes pop-stay-fade-18 {
  0% {
    transform: scale(0) rotate(-105deg);
    opacity: 0;
  }
  8.6% {
    transform: scale(1.1) rotate(-105deg);
    opacity: 1;
  }
  10.8% {
    transform: scale(1) rotate(-105deg);
    opacity: 1;
  }
  91.9% {
    transform: scale(1) rotate(-105deg);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(-105deg);
    opacity: 0;
  }
}
@keyframes pop-stay-fade-21 {
  0% {
    transform: scale(0) rotate(205deg);
    opacity: 0;
  }
  8.6% {
    transform: scale(1.1) rotate(205deg);
    opacity: 1;
  }
  10.8% {
    transform: scale(1) rotate(205deg);
    opacity: 1;
  }
  91.9% {
    transform: scale(1) rotate(205deg);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(205deg); /* Keep size/rotation */
    opacity: 0;
  }
}
@keyframes pop-stay-fade-22 {
  0% {
    transform: scale(0) rotate(155deg);
    opacity: 0;
  }
  8.6% {
    transform: scale(1.1) rotate(155deg);
    opacity: 1;
  }
  10.8% {
    transform: scale(1) rotate(155deg);
    opacity: 1;
  }
  91.9% {
    transform: scale(1) rotate(155deg);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(155deg);
    opacity: 0;
  }
}
@keyframes pop-stay-fade-23 {
  0% {
    transform: scale(0) rotate(105deg);
    opacity: 0;
  }
  8.6% {
    transform: scale(1.1) rotate(105deg);
    opacity: 1;
  }
  10.8% {
    transform: scale(1) rotate(105deg);
    opacity: 1;
  }
  91.9% {
    transform: scale(1) rotate(105deg);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(105deg);
    opacity: 0;
  }
}
.contact-page {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}

.contact-page a {
  color: #06357a;
}

.contact-page a:hover {
  color: #97bf0d;
}

.page-id-16 .half-and-half .et_pb_row .et_pb_column {
  padding: 0;
}

.contact-page h3 {
  font-size: 25px;
  letter-spacing: 1px;
}

.wpcf7 ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #FFFFFF;
  font-size: 18px !important;
}

.wpcf7 ::-moz-placeholder, .contact-form-row::-moz-placeholder { /* Firefox 19+ */
  color: #FFFFFF;
  font-size: 18px !important;
  opacity: 1 !important;
}

.wpcf7 :-ms-input-placeholder { /* IE 10+ */
  color: #FFFFFF;
  font-size: 18px !important;
}

.wpcf7 :-moz-placeholder { /* Firefox 18- */
  color: #FFFFFF;
  font-size: 18px !important;
  opacity: 1;
}

.wpcf7 input[type=tel].inquiry {
  margin-bottom: 30px;
}

.wpcf7 input, .wpcf7 select, .wpcf7 textarea {
  padding: 7px 10px;
  width: 100%;
  max-width: 800px;
  border-radius: 10px;
  border: 0;
  font-size: 18px;
  background-color: #FFF;
  color: #FFFFFF !important;
  margin-bottom: 10px;
  line-height: 18px;
}

.wpcf7 select {
  font-size: 0.9em;
  padding: 10px 7px;
}

.wpcf7 option {
  padding-left: 0 !important;
}

.wpcf7 textarea {
  height: 150px;
  width: 100%;
}

.wpcf7 input[type=submit] {
  width: auto;
  padding: 10px 40px;
  color: #440e62 !important;
  background-color: #FFF;
  text-transform: uppercase;
}

.wpcf7 input[type=submit]:hover {
  background-color: #939598;
  cursor: pointer;
  color: #FFF !important;
}

.wpcf7-not-valid-tip {
  color: #ffd338;
}

.wpcf7 form .wpcf7-response-output {
  color: #FFFFFF;
}

.home__intro.et_pb_section {
  padding: 50px;
}
.home__intro.et_pb_section .et_pb_row {
  display: flex;
  padding: 0;
  background: #FFFFFF;
}
.home__intro.et_pb_section .et_pb_row .et_pb_column.et_pb_column_1_2 {
  margin: 0;
  width: 50%;
  display: flex;
  justify-content: center;
}
.home__intro.et_pb_section .et_pb_row .et_pb_column.et_pb_column_1_2:last-child .et_pb_text {
  max-width: 760px;
  padding: 90px 30px 65px;
}
.home__intro.et_pb_section .et_pb_row .et_pb_column.et_pb_column_1_2:last-child .et_pb_text h2 {
  font-weight: 100;
  line-height: 48px;
  margin-bottom: 15px;
  color: #1FA3A8;
}
.home__intro.et_pb_section .et_pb_row .et_pb_column.et_pb_column_1_2:last-child .et_pb_text h3 {
  color: #237FA4;
  margin-bottom: 35px;
}
.home__intro.et_pb_section .et_pb_row .et_pb_column.et_pb_column_1_2:last-child .et_pb_text p {
  margin-bottom: 30px;
}
@media screen and (max-width: 700px) {
  .home__intro.et_pb_section .et_pb_row .et_pb_column.et_pb_column_1_2:last-child .et_pb_text {
    padding: 30px;
  }
}
.home__intro.et_pb_section .et_pb_row .et_pb_column.et_pb_column_1_2:first-child {
  width: 50%;
  justify-content: flex-start;
}
.home__intro.et_pb_section .et_pb_row .et_pb_column.et_pb_column_1_2:first-child .et_pb_text {
  background-position: 30% 0;
}
.home__intro.et_pb_section .et_pb_row .et_pb_column.et_pb_column_1_2:first-child .et_pb_text .et_pb_text_inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-left: 60px;
  z-index: 2;
}
.home__intro.et_pb_section .et_pb_row .et_pb_column.et_pb_column_1_2:first-child .et_pb_text .et_pb_text_inner p {
  color: #FFFFFF;
  margin-bottom: 40px;
}
.home__intro.et_pb_section .et_pb_row .et_pb_column.et_pb_column_1_2:first-child .et_pb_text .et_pb_text_inner hr {
  width: 97px;
  margin: 0 0 10px;
  border-color: #FFFFFF;
  border-bottom-width: 2px;
}
.home__intro.et_pb_section .et_pb_row .et_pb_column.et_pb_column_1_2:first-child .et_pb_text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 200px;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
}
@media screen and (max-width: 980px) {
  .home__intro.et_pb_section .et_pb_row .et_pb_column.et_pb_column_1_2:first-child {
    width: 100%;
    height: 400px;
  }
}
@media screen and (max-width: 980px) {
  .home__intro.et_pb_section .et_pb_row .et_pb_column.et_pb_column_1_2 {
    width: 100%;
  }
}
@media screen and (max-width: 980px) {
  .home__intro.et_pb_section .et_pb_row {
    flex-direction: column;
  }
}
.home__intro.et_pb_section#counselling .et_pb_row .et_pb_column.et_pb_column_1_2:last-child .et_pb_text {
  max-width: 760px;
  padding: 50px 50px 0;
}
@media screen and (max-width: 700px) {
  .home__intro.et_pb_section {
    padding: 5%;
  }
}
.home__whatwedo.et_pb_section {
  display: flex;
  justify-content: center;
  gap: 100px;
}
.home__whatwedo.et_pb_section .et_pb_row {
  max-width: 300px;
  margin: 0;
}
.home__whatwedo.et_pb_section .et_pb_row .et_pb_column {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.home__whatwedo.et_pb_section .et_pb_row .et_pb_column .et_pb_image {
  margin: 0 auto;
}
.home__whatwedo.et_pb_section .et_pb_row .et_pb_column .et_pb_image img {
  border-radius: 50%;
}
.home__whatwedo.et_pb_section .et_pb_row .et_pb_column .et_pb_text {
  text-align: center;
  color: #FFFFFF;
}
.home__whatwedo.et_pb_section .et_pb_row .et_pb_column .et_pb_text h2 {
  font-weight: 100;
  color: #FFFFFF;
  margin-top: 30px;
  margin-bottom: 20px;
}
.home__whatwedo.et_pb_section .et_pb_row .et_pb_column .et_pb_text p {
  margin-bottom: 10px;
}
.home__whatwedo.et_pb_section .et_pb_row .et_pb_column .et_pb_text:last-child {
  margin-top: auto;
}
.home__whatwedo.et_pb_section .et_pb_row .et_pb_column .et_pb_text:last-child a {
  text-transform: uppercase;
  font-weight: bold;
  border-bottom: 2px solid #97bf0d;
  transition: all 300ms linear;
}
.home__whatwedo.et_pb_section .et_pb_row .et_pb_column .et_pb_text:last-child a:hover {
  color: #06357a;
  border-color: #06357a;
}
@media screen and (max-width: 980px) {
  .home__whatwedo.et_pb_section .et_pb_row {
    margin: 0 30px;
  }
}
@media screen and (max-width: 700px) {
  .home__whatwedo.et_pb_section .et_pb_row {
    margin: 0 auto;
  }
}
@media screen and (max-width: 1199px) {
  .home__whatwedo.et_pb_section {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 980px) {
  .home__whatwedo.et_pb_section {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.home__myValues--title.et_pb_section {
  padding-bottom: 0;
}
.home__myValues--title.et_pb_section .et_pb_row {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.home__myValues--title.et_pb_section .et_pb_row .et_pb_column_4_4 {
  max-width: 100%;
  width: 100%;
}
.home__myValues--title.et_pb_section .et_pb_row .et_pb_column_4_4 .et_pb_module.et_pb_text {
  position: relative;
}
.home__myValues--title.et_pb_section h2 {
  font-family: "Ephesis", cursive;
  font-size: 3.75rem !important;
  line-height: 3.75rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 980px) {
  .home__myValues--title.et_pb_section {
    padding-top: 0;
  }
}
.home__myValues--icons.et_pb_section {
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 0 50px 100px;
}
.home__myValues--icons.et_pb_section .et_pb_row {
  padding: 0 15px;
  max-width: 225px;
  margin: 0;
  text-align: center;
}
.home__myValues--icons.et_pb_section .et_pb_row .et_pb_image {
  margin: 0 auto 20px;
  text-align: center;
  border-radius: 50%;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home__myValues--icons.et_pb_section .et_pb_row .et_pb_image .et_pb_image_wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  border-radius: 50%;
  background: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home__myValues--icons.et_pb_section .et_pb_row .et_pb_text {
  text-align: left;
}
.home__myValues--icons.et_pb_section .et_pb_row .et_pb_text h3 {
  font-size: 1.375rem !important;
  text-transform: uppercase;
  color: #7b0b69;
  line-height: 1.875rem;
  margin-bottom: 5px;
  text-align: center;
}
.home__myValues--icons.et_pb_section .et_pb_row .et_pb_text p {
  color: #58585a;
}
@media screen and (max-width: 700px) {
  .home__myValues--icons.et_pb_section .et_pb_row .et_pb_text p {
    text-align: center;
  }
}
@media screen and (max-width: 1199px) {
  .home__myValues--icons.et_pb_section .et_pb_row {
    margin-bottom: 30px;
    max-width: 32%;
  }
}
@media screen and (max-width: 980px) {
  .home__myValues--icons.et_pb_section .et_pb_row {
    width: 40%;
    max-width: 50%;
  }
}
@media screen and (max-width: 700px) {
  .home__myValues--icons.et_pb_section .et_pb_row {
    padding: 0;
    width: 90%;
    max-width: 90%;
  }
}
@media screen and (max-width: 1199px) {
  .home__myValues--icons.et_pb_section {
    flex-wrap: wrap;
    padding: 0 0 25px;
  }
}
.home__myValues--link.et_pb_section {
  padding-top: 0;
}
.home__myValues--link.et_pb_section a {
  text-transform: uppercase;
  font-weight: bold;
  border-bottom: 2px solid #97bf0d;
  transition: all 300ms linear;
}
.home__myValues--link.et_pb_section a:hover {
  color: #06357a;
  border-color: #06357a;
}

.land h3 {
  font-size: 1.5625rem !important;
  line-height: 1.875rem;
  margin-bottom: 10px;
  color: #FFFFFF;
}

.about__text .et_pb_text {
  max-width: 700px;
  margin: 0 auto;
}
.about__text .et_pb_text h2 {
  font-weight: 100;
  font-size: 2.5rem !important;
  line-height: 3rem;
  margin-bottom: 30px;
}
.about__text .et_pb_text h2 strong {
  color: #97bf0d;
  font-weight: normal;
}
.about__text .et_pb_text p {
  margin-bottom: 30px;
}
.about__text .et_pb_text a {
  color: #06357a;
  text-decoration: underline;
}
.about__text .et_pb_text a:hover {
  color: #97bf0d;
}
.about__philanthropy .et_pb_text {
  max-width: 700px;
  margin: 0 auto;
}
.about__philanthropy .et_pb_text h2 {
  font-weight: 100;
  font-size: 2.5rem !important;
  line-height: 3rem;
  margin-bottom: 30px;
}
.about__philanthropy .et_pb_text ul {
  list-style: none;
  padding-left: 20px;
}
.about__philanthropy .et_pb_text ul li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 5px;
}
.about__philanthropy .et_pb_text ul li::before {
  content: "–"; /* en-dash for a nicer look */
  position: absolute;
  left: 0;
  color: #06357a;
}
.about__awards.et_pb_section {
  padding-bottom: 0;
}
.about__awards.et_pb_section .et_pb_column_2_3 {
  background: #eceded;
  padding: 0 30px;
  display: flex;
}
.about__awards.et_pb_section .et_pb_column_2_3 .et_pb_text {
  align-self: center;
  width: 80%;
}
@media only screen and (max-width: 700px) {
  .about__awards.et_pb_section .et_pb_column_2_3 .et_pb_text {
    width: 100%;
  }
}
@media only screen and (max-width: 980px) {
  .about__awards.et_pb_section .et_pb_column_2_3 {
    width: 68%;
    margin-left: 2%;
    padding: 15px 15px 25px 15px;
  }
}
@media only screen and (max-width: 700px) {
  .about__awards.et_pb_section .et_pb_column_2_3 {
    width: 100%;
    margin-left: 0;
  }
}
@media only screen and (max-width: 980px) {
  .about__awards.et_pb_section .et_pb_column_1_3 {
    width: 30%;
  }
}
@media only screen and (max-width: 700px) {
  .about__awards.et_pb_section .et_pb_column_1_3 {
    width: 100%;
  }
}
@media only screen and (max-width: 700px) {
  .about__awards.et_pb_section .et_pb_row {
    padding-bottom: 0;
  }
}
.about__awards h2 {
  font-weight: 100;
  font-size: 2.5rem;
  line-height: 3rem;
}
.about__awards h3 {
  font-size: 1.5625rem !important;
  margin-bottom: 5px;
}
@media only screen and (max-width: 1199px) {
  .about__awards h3 {
    font-size: 1.25rem !important;
  }
}
.about__awards p {
  margin-bottom: 10px;
}
@media only screen and (max-width: 1199px) {
  .about__awards p {
    font-size: 1rem;
    line-height: 1.25rem;
  }
}
.about__awards--list.et_pb_section {
  padding-top: 0;
}

/* grid images */
@media screen and (max-width: 767px) {
  .philanthropy .et_pb_column_4_4 .et_pb_gallery .et_pb_gallery_items {
    display: flex;
    flex-wrap: wrap;
  }
}

.speaking__keynotes.et_pb_section {
  padding-bottom: 50px;
}
@media screen and (max-width: 1599px) {
  .speaking__keynotes.et_pb_section#about {
    padding: 0 0 2%;
  }
}
@media screen and (max-width: 1199px) {
  .speaking__keynotes.et_pb_section#about {
    padding: 2% 0 2%;
  }
}
@media screen and (max-width: 700px) {
  .speaking__keynotes.et_pb_section {
    padding-bottom: 25px;
  }
}
.speaking__keynotes .et_pb_row {
  width: 94%;
  max-width: 1240px;
  margin-bottom: 20px;
  padding: 50px 0 0;
  z-index: 1;
}
.speaking__keynotes .et_pb_row .et_pb_column_4_4 {
  width: 100%;
  display: flex;
  width: 100%;
  max-width: 100%;
  gap: 100px;
}
.speaking__keynotes .et_pb_row .et_pb_column_4_4 .et_pb_image {
  width: 50%;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 1599px) {
  .speaking__keynotes .et_pb_row .et_pb_column_4_4 .et_pb_image img {
    max-height: 70vh;
    min-height: 350px;
    width: auto;
  }
}
@media screen and (max-width: 700px) {
  .speaking__keynotes .et_pb_row .et_pb_column_4_4 .et_pb_image img {
    max-width: 300px;
    max-height: auto;
    min-height: auto;
  }
}
@media screen and (max-width: 1599px) {
  .speaking__keynotes .et_pb_row .et_pb_column_4_4 .et_pb_image {
    justify-content: center !important;
  }
}
@media screen and (max-width: 1399px) {
  .speaking__keynotes .et_pb_row .et_pb_column_4_4 .et_pb_image {
    margin-left: 3%;
    margin-right: 3%;
  }
}
@media screen and (max-width: 700px) {
  .speaking__keynotes .et_pb_row .et_pb_column_4_4 .et_pb_image {
    width: 90%;
    margin: 0 auto;
    justify-content: center;
  }
}
.speaking__keynotes .et_pb_row .et_pb_column_4_4 .et_pb_text {
  width: 50%;
  margin-top: 75px;
}
.speaking__keynotes .et_pb_row .et_pb_column_4_4 .et_pb_text .et_pb_text_inner {
  max-width: 80%;
  max-width: 550px;
  margin: 0 auto;
}
.speaking__keynotes .et_pb_row .et_pb_column_4_4 .et_pb_text h2 {
  font-size: 2.5rem !important;
  line-height: 3rem;
  font-weight: 100;
  margin-bottom: 10px;
}
.speaking__keynotes .et_pb_row .et_pb_column_4_4 .et_pb_text h2 em {
  font-style: italic;
}
.speaking__keynotes .et_pb_row .et_pb_column_4_4 .et_pb_text h3 {
  font-size: 1.375rem !important;
  font-weight: bold;
  color: #7b0b69;
  margin-bottom: 20px;
}
.speaking__keynotes .et_pb_row .et_pb_column_4_4 .et_pb_text p {
  margin-bottom: 20px;
}
.speaking__keynotes .et_pb_row .et_pb_column_4_4 .et_pb_text p em {
  font-style: italic;
}
@media screen and (max-width: 1599px) {
  .speaking__keynotes .et_pb_row .et_pb_column_4_4 .et_pb_text {
    margin-left: 3%;
    margin-right: 3%;
    margin-top: 25px;
  }
}
@media screen and (max-width: 700px) {
  .speaking__keynotes .et_pb_row .et_pb_column_4_4 .et_pb_text {
    width: 90%;
    margin: 30px auto 0;
  }
}
@media screen and (max-width: 1199px) {
  .speaking__keynotes .et_pb_row .et_pb_column_4_4 {
    gap: 30px;
  }
}
@media screen and (max-width: 700px) {
  .speaking__keynotes .et_pb_row .et_pb_column_4_4 {
    flex-direction: column;
    gap: 0;
  }
}
.speaking__keynotes .et_pb_row:nth-child(even) .speaking__keynotes--image {
  order: 2;
  justify-content: flex-start;
}
@media screen and (max-width: 700px) {
  .speaking__keynotes .et_pb_row:nth-child(even) .speaking__keynotes--image {
    order: 0;
    justify-content: center;
  }
}
@media screen and (max-width: 1599px) {
  .speaking__keynotes .et_pb_row {
    padding: 25px 0 25px;
  }
}
@media screen and (max-width: 700px) {
  .speaking__keynotes .et_pb_row {
    padding: 25px 0 0;
  }
}
.speaking__keynotes--bio .et_pb_text h2 {
  margin-bottom: 30px;
}
.speaking__keynotes--bio .et_pb_text p a:not(.link__green) {
  text-decoration: underline;
}
.speaking__keynotes--callout.et_pb_section {
  padding: 50px 0 75px;
}
.speaking__keynotes--callout.et_pb_section .et_pb_column_4_4 {
  max-width: 960px;
}
.speaking__keynotes--callout .et_pb_row {
  padding: 0;
  background: none;
  max-width: 960px;
  width: 90%;
  margin-bottom: 0;
}
.speaking__keynotes--callout .et_pb_row .et_pb_image {
  order: 2;
  position: absolute;
  right: 0;
  top: -25px;
}
@media screen and (max-width: 980px) {
  .speaking__keynotes--callout .et_pb_row .et_pb_image {
    width: 300px;
  }
}
@media screen and (max-width: 700px) {
  .speaking__keynotes--callout .et_pb_row .et_pb_image {
    position: relative;
    order: 0;
    margin: 0 auto 30px;
    right: 0;
    top: 0;
  }
}
.speaking__keynotes--callout .et_pb_row .et_pb_text {
  max-width: 550px;
}
.speaking__keynotes--callout .et_pb_row .et_pb_text h2 {
  color: #ffd338;
  margin-bottom: 10px;
}
.speaking__keynotes--callout .et_pb_row .et_pb_text p {
  color: #FFFFFF;
  margin-bottom: 20px;
}
.speaking__keynotes--callout .et_pb_row .et_pb_text p:last-child {
  margin-bottom: 0;
}
.speaking__keynotes--callout .et_pb_row .et_pb_text p em {
  font-style: italic;
}
@media screen and (max-width: 980px) {
  .speaking__keynotes--callout .et_pb_row .et_pb_text {
    max-width: 55%;
  }
}
@media screen and (max-width: 980px) {
  .speaking__keynotes--callout .et_pb_row .et_pb_text {
    max-width: 55%;
  }
}
@media screen and (max-width: 700px) {
  .speaking__keynotes--callout .et_pb_row .et_pb_text {
    max-width: 90%;
    margin: 0 auto;
  }
}
.speaking__keynotes--image.et_pb_text {
  margin-top: 0 !important;
  max-height: 500px;
}
@media screen and (max-width: 700px) {
  .speaking__keynotes--image.et_pb_text {
    max-height: none;
  }
}
.speaking__benefits.et_pb_row {
  padding-top: 0;
}
.speaking__benefits.et_pb_row .et_pb_column {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  justify-content: center;
}
.speaking__benefits.et_pb_row .et_pb_column .et_pb_text {
  width: 31.3333333333%;
  text-align: center;
  margin: 0;
}
.speaking__headshots .et_pb_row {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.speaking__headshots .et_pb_row .et_pb_column {
  width: 100%;
  max-width: 100%;
}
.speaking__headshots--circles p {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
@media screen and (max-width: 980px) {
  .speaking__headshots--circles p {
    justify-content: center;
  }
}

.contact__info .et_pb_text h2 {
  font-weight: 100;
  font-size: 2.5rem !important;
  line-height: 3rem;
  margin-bottom: 30px;
}
.contact__info .et_pb_text h2 strong {
  color: #97bf0d;
  font-weight: bold;
}
.contact__info .et_pb_text p {
  margin-bottom: 30px;
}
.contact__info--form .cf7-cf-turnstile {
  margin-top: -20px;
}
.contact__info--form .wpcf7 {
  max-width: 600px;
  margin: 0 auto;
}
.contact__info--form .wpcf7 p {
  margin-bottom: 0;
}
.contact__info--form .wpcf7 input, .contact__info--form .wpcf7 textarea {
  background: transparent;
  padding: 10px 20px;
  border-radius: 30px;
  margin-bottom: 20px;
  color: #FFFFFF;
  font-weight: bold;
  border: 1px solid #FFFFFF;
}
.contact__info--form .wpcf7 input[type=checkbox], .contact__info--form .wpcf7 input[type=radio], .contact__info--form .wpcf7 textarea[type=checkbox], .contact__info--form .wpcf7 textarea[type=radio] {
  width: auto;
  margin-bottom: 0;
}
.contact__info--form .wpcf7 input[type=submit], .contact__info--form .wpcf7 textarea[type=submit] {
  margin-top: 20px;
  background: #ffd338;
  border: 0;
  font-weight: bold;
  padding: 0;
  text-align: center;
  color: #7b0b69 !important;
  width: 250px;
  padding: 15px 0;
}
.contact__info--form .wpcf7 input[type=submit]:hover, .contact__info--form .wpcf7 textarea[type=submit]:hover {
  background: #cd1480;
  color: #FFFFFF !important;
}
.contact__info--form .wpcf7 textarea {
  margin-bottom: 0;
}

@media screen and (max-width: 1199px) {
  #blog .et_pb_row {
    width: 94%;
  }
}

.blogs__title .et_pb_text h2 {
  font-size: 2.5rem !important;
  line-height: 3rem;
  font-weight: 100;
  margin-bottom: 30px;
}
.blogs__title .et_pb_text h2 strong {
  font-weight: bold;
  color: #97bf0d;
}

.ms-blogposts__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
.ms-blogposts__grid article {
  flex: 1 1 calc(33.333% - 2rem);
  max-width: calc(33.333% - 2rem);
}
@media screen and (max-width: 768px) {
  .ms-blogposts__grid article {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
@media (max-width: 700px) {
  .ms-blogposts__grid {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.ms-blogposts__load-more-wrapper {
  text-align: center;
  margin-top: 2rem;
}
.ms-blogposts__load-more {
  min-width: 200px;
}
.ms-blogposts__load-more:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.ms-blogposts {
  margin: 60px auto 35px;
}
.ms-blogposts .ms-blogpost {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.ms-blogposts .ms-blogpost__image {
  display: block;
  overflow: hidden;
  height: 300px;
}
@media screen and (max-width: 980px) {
  .ms-blogposts .ms-blogpost__image {
    height: 200px;
  }
}
@media screen and (max-width: 768px) {
  .ms-blogposts .ms-blogpost__image {
    height: 300px;
  }
}
.ms-blogposts .ms-blogpost__image-bg {
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}
.ms-blogposts .ms-blogpost__image-bg.no-thumb {
  background-color: #f5f5f5;
  background-image: linear-gradient(45deg, #e0e0e0 25%, transparent 25%), linear-gradient(-45deg, #e0e0e0 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #e0e0e0 75%), linear-gradient(-45deg, transparent 75%, #e0e0e0 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}
.ms-blogposts .ms-blogpost__image:hover .ms-blogposts .ms-blogpost__image-bg {
  transform: scale(1.05);
}
.ms-blogposts .ms-blogpost__title {
  margin: 14px 0 8px;
  font-weight: 700;
  font-size: 1.125rem;
}
.ms-blogposts .ms-blogpost__title a {
  color: inherit;
  text-decoration: none;
}
.ms-blogposts .ms-blogpost__title a:hover {
  text-decoration: underline;
}
.ms-blogposts .ms-blogpost__excerpt {
  color: #4b4b4b;
  line-height: 1.5;
  margin: 0 0 10px;
}
.ms-blogposts .ms-blogpost__cta {
  margin-top: 10px;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .ms-blogposts__grid {
    flex-direction: column;
  }
}

@media screen and (max-width: 1199px) {
  .ms-btn--primary {
    min-width: 200px;
  }
}

.ms-btn--secondary {
  border-color: #97bf0d;
  color: #97bf0d;
}
.ms-btn--secondary:hover {
  background: #97bf0d;
  color: white;
}

.book__info .et_pb_text h2 {
  font-size: 2.5rem !important;
  line-height: 3rem;
  font-weight: 100;
}
.book__info .et_pb_text h2 strong {
  font-weight: bold;
  color: #97bf0d;
}
.book__info .et_pb_text h3 {
  font-size: 1.5625rem !important;
  font-weight: bold;
  color: #97bf0d;
  margin-bottom: 20px;
}
.book__info .et_pb_text p {
  margin-bottom: 20px;
}
.book__asseenin .et_pb_column_4_4 img {
  height: 100% !important;
  max-height: 78px;
  width: auto;
}
.book__videos {
  display: flex;
  gap: 40px;
}
.book__videos .et_pb_row .et_pb_column .et_pb_image .et_pb_image_wrap {
  width: 100%;
  position: relative;
}
.book__videos .et_pb_row .et_pb_column .et_pb_image .et_pb_image_wrap::after {
  content: url("../images/play-button.png");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.book__videos .et_pb_row .et_pb_column .et_pb_image .et_pb_image_wrap img {
  width: 100%;
}
.book__videos .et_pb_row .et_pb_column .et_pb_text {
  font-weight: bold;
}
.book__videos .et_pb_row .et_pb_column .et_pb_text a {
  text-transform: uppercase;
  font-weight: bold;
  border-bottom: 2px solid #97bf0d;
  transition: all 300ms linear;
}
.book__videos .et_pb_row .et_pb_column .et_pb_text a:hover {
  color: #06357a;
  border-color: #06357a;
}
@media screen and (max-width: 1199px) {
  .book__videos .et_pb_row {
    max-width: 400px;
  }
}
@media screen and (max-width: 1199px) {
  .book__videos {
    flex-wrap: wrap;
  }
}
.book__testimonials.testimonials.et_pb_section .et_pb_row .et_pb_column_4_4 .et_pb_text .et_pb_text_inner .testimonial-title {
  text-align: left;
}
.book__testimonials.testimonials.et_pb_section .et_pb_row .et_pb_column_4_4 .et_pb_text .et_pb_text_inner .testimonial_rotator_wrap {
  margin-left: 0;
}
.book__testimonials.testimonials.et_pb_section .et_pb_row .et_pb_column_4_4 .et_pb_text .et_pb_text_inner .testimonial_rotator {
  margin-left: 0;
}
.book__testimonials.testimonials.et_pb_section .et_pb_row .et_pb_column_4_4 .et_pb_text .et_pb_text_inner .testimonial_rotator_quote {
  text-align: left;
  max-width: 650px;
}

.parentmenu {
  position: relative;
}
.parentmenu:after {
  content: "+";
  position: absolute;
  right: 30px;
  top: 5px;
  color: #FFF;
  display: inline-block;
  line-height: 30px;
  font-size: 30px;
  width: 25px;
  text-align: center;
  transition: transform 300ms linear;
  z-index: -1;
}
.parentmenu:after:hover {
  cursor: pointer;
}
.parentmenu.opened:after {
  content: "-";
}

.et_header_style_left #main-header {
  background: transparent !important;
  box-shadow: none;
}
.et_header_style_left #main-header .container {
  height: 100px;
  width: 100%;
}
@media only screen and (max-width: 600px) {
  .et_header_style_left #main-header .container {
    padding-top: 20px;
  }
}
.et_header_style_left #main-header .logo_container {
  left: 0;
}
.et_header_style_left #main-header .logo_container .logo_helper {
  padding-left: 32px;
}
@media only screen and (max-width: 600px) {
  .et_header_style_left #main-header .logo_container .logo_helper {
    padding-left: 10px;
  }
}
.et_header_style_left #main-header.et-fixed-header {
  background: linear-gradient(to bottom, #7b0b69, #cd1480) !important;
}
.et_header_style_left #main-header.et-fixed-header a {
  color: #FFFFFF !important;
}
.et_header_style_left #main-header.et-fixed-header #logo {
  vertical-align: middle;
}
.et_header_style_left #main-header.et-fixed-header #top-menu li:last-child a {
  background: #ffd338 !important;
  color: #7b0b69 !important;
}
.et_header_style_left #main-header.et-fixed-header #top-menu li:last-child a:hover {
  color: #FFFFFF !important;
  background: #cd1480 !important;
  opacity: 1 !important;
}
.et_header_style_left #main-header #et-top-navigation #top-menu li a {
  color: #7b0b69;
}
@media screen and (max-width: 1199px) {
  .et_header_style_left #main-header #et-top-navigation #top-menu li a {
    font-size: 16px !important;
  }
}
@media screen and (max-width: 1024px) {
  .et_header_style_left #main-header #et-top-navigation #top-menu li a {
    font-size: 14px !important;
  }
}
.et_header_style_left #main-header #et-top-navigation #top-menu li:last-child a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  padding: 0 25px;
  height: 46px;
  border-radius: 30px;
  border: none;
  background: #cd1480;
}
.et_header_style_left #main-header #et-top-navigation #top-menu li:last-child a:hover {
  background: #ffd338;
  color: #7b0b69;
  opacity: 1 !important;
}
@media only screen and (min-width: 981px) {
  .et_header_style_left #main-header #et-top-navigation {
    padding: 15px 0 0 0 !important;
  }
}
@media only screen and (max-width: 981px) {
  .et_header_style_left #main-header #et-top-navigation {
    display: none !important;
  }
}
.et_header_style_left #main-header #logo {
  width: 100%;
  max-height: 100%;
  max-width: 350px;
}
@media screen and (max-width: 1199px) {
  .et_header_style_left #main-header #logo {
    max-width: 250px;
  }
}
@media only screen and (max-width: 1024px) {
  .et_header_style_left #main-header #logo {
    max-width: 175px;
  }
}

#main-header .tagline {
  position: absolute;
  display: inline;
  right: 38px;
  top: 70px;
  color: #cd1480;
  font-style: italic;
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 1199px) {
  #main-header .tagline {
    right: 30px;
  }
}
@media screen and (max-width: 700px) {
  #main-header .tagline {
    top: 60px;
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  #main-header .tagline {
    top: 40px;
    font-size: 14px;
  }
}
@media screen and (max-width: 430px) {
  #main-header .tagline {
    top: 43px;
    right: 20px;
    font-size: 12px;
  }
}
#main-header.et-fixed-header .tagline {
  color: #FFFFFF;
}

@media only screen and (min-width: 981px) {
  .et_pb_row.et_pb_row_fullwidth,
  .et_pb_specialty_fullwidth > .et_pb_row {
    width: 100% !important;
    max-width: 100% !important;
  }
}

.mainLogo {
  display: inline !important;
  transition: all 300ms linear;
  height: auto !important;
}
@media only screen and (max-width: 980px) {
  .mainLogo {
    width: auto;
  }
}

.fixedLogo {
  display: none !important;
}

.et-fixed-header .mainLogo {
  display: none !important;
}

.et-fixed-header .fixedLogo {
  display: inline !important;
  width: 300px !important;
  height: auto !important;
}

.sub-menu {
  border: 0 !important;
}

.menu-item-29 ul.sub-menu { /* keynotes sub menu */
  left: -40px;
  width: 300px;
}

@media only screen and (max-width: 600px) {
  span.logo_helper {
    vertical-align: top;
  }
}

@media (max-width: 980px) {
  .et_header_style_left #logo {
    max-width: 250px;
  }
}
/* link handling */
body.home #top-menu li.inner-link {
  display: none !important;
}
body.home #top-menu li.active > a {
  color: #cd1480;
  font-weight: bold;
}
body:not(.home) #top-menu li.home-link {
  display: none !important;
}
body:not(.home) li.menu-item-9172 a {
  font-weight: bold !important;
}
body.fixed-menu #main-header {
  background: linear-gradient(to bottom, #7b0b69, #cd1480) !important;
}
body.fixed-menu #main-header a {
  color: #FFFFFF !important;
}
body.fixed-menu #main-header #logo {
  vertical-align: middle;
}
body.fixed-menu #main-header #top-menu li:last-child a {
  background: #ffd338 !important;
  color: #7b0b69 !important;
}
body.fixed-menu #main-header #top-menu li:last-child a:hover {
  color: #FFFFFF !important;
  background: #cd1480 !important;
  opacity: 1 !important;
}
body.fixed-menu #main-header .tagline {
  color: #FFFFFF;
}
body.fixed-menu #main-header .mainLogo {
  display: none !important;
}
body.fixed-menu #main-header .fixedLogo {
  display: inline !important;
}

.banner {
  height: 700px;
}
.banner h1 {
  font-size: 2.5rem !important;
  padding-bottom: 0;
}
.banner h2 {
  font-size: 50px !important;
  font-weight: 100;
  padding-bottom: 0;
}
.banner.et_pb_slider .et_pb_container {
  max-width: 1200px;
  display: flex;
  justify-content: flex-end;
  margin-top: -50px;
}
.banner.et_pb_slider .et_pb_container .et_pb_slider_container_inner {
  width: 50%;
}
.banner.et_pb_slider .et_pb_container .et_pb_slider_container_inner .et_pb_slide_image {
  right: 0;
  margin-right: 0;
}
.banner.et_pb_slider .et_pb_container .et_pb_slider_container_inner .et_pb_slide_image img {
  max-height: 535px !important;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (min-width: 1599px) {
  .banner.et_pb_slider .et_pb_container .et_pb_slider_container_inner .et_pb_slide_image img {
    max-height: 600px !important;
  }
}
@media screen and (max-width: 1199px) {
  .banner.et_pb_slider .et_pb_container .et_pb_slider_container_inner .et_pb_slide_image img {
    max-height: 500px !important;
  }
}
@media screen and (max-width: 1024px) {
  .banner.et_pb_slider .et_pb_container .et_pb_slider_container_inner .et_pb_slide_image img {
    max-height: 450px !important;
  }
}
@media screen and (max-width: 768px) {
  .banner.et_pb_slider .et_pb_container .et_pb_slider_container_inner .et_pb_slide_image img {
    max-height: 400px !important;
  }
}
@media screen and (max-width: 700px) {
  .banner.et_pb_slider .et_pb_container .et_pb_slider_container_inner .et_pb_slide_image img {
    max-height: 300px !important;
    margin-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .banner.et_pb_slider .et_pb_container .et_pb_slider_container_inner .et_pb_slide_image {
    display: flex !important;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
}
@media screen and (max-width: 700px) {
  .banner.et_pb_slider .et_pb_container .et_pb_slider_container_inner .et_pb_slide_image {
    height: auto;
  }
}
@media screen and (max-width: 700px) {
  .banner.et_pb_slider .et_pb_container .et_pb_slider_container_inner .et_pb_slide_image {
    right: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 768px) {
  .banner.et_pb_slider .et_pb_container .et_pb_slider_container_inner {
    height: 500px !important;
    min-height: 500px !important;
  }
}
@media screen and (max-width: 700px) {
  .banner.et_pb_slider .et_pb_container .et_pb_slider_container_inner {
    width: 100%;
  }
}
@media screen and (max-width: 1199px) {
  .banner.et_pb_slider .et_pb_container {
    margin-top: -50px;
  }
}
@media screen and (max-width: 980px) {
  .banner.et_pb_slider .et_pb_container {
    margin-top: -75px;
    margin-right: 0;
    margin-left: 0;
  }
}
@media screen and (max-width: 700px) {
  .banner.et_pb_slider .et_pb_container {
    margin-right: auto;
    margin-top: auto;
  }
}
@media screen and (max-width: 700px) {
  .banner.et_pb_slider .et_pb_container {
    margin-top: 0;
  }
}
.banner .et_pb_column_2_5,
.banner .et_pb_column_3_5,
.banner .et_pb_column_4_4 {
  height: 500px;
}
.banner .et_pb_column_2_5 .et_pb_text,
.banner .et_pb_column_3_5 .et_pb_text,
.banner .et_pb_column_4_4 .et_pb_text {
  display: flex;
  height: 100%;
}
.banner .et_pb_slide {
  height: 500px;
}
.banner .et_pb_slide .et_pb_slide_content {
  max-width: 520px;
  font-size: 25px;
  line-height: 1.3em;
}
.banner .et_pb_slide .et_pb_slide_description {
  padding-left: 0 !important;
  padding: 0;
}
.banner .et_pb_more_button.et_pb_button {
  padding: 0 !important;
  border-bottom: 3px solid #97bf0d !important;
}
.banner .et_pb_more_button.et_pb_button:hover {
  padding: 0 !important;
  border-bottom: 3px solid #a2daf4 !important;
  color: #a2daf4 !important;
}
@media only screen and (max-width: 1250px) {
  .banner.services ul.left {
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 1250px) {
  .banner.services ul.right {
    padding-bottom: 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .banner.top {
    background-attachment: fixed;
  }
}
@media only screen and (max-width: 1100px) and (min-width: 981px) {
  .banner.top p {
    padding-bottom: 50px !important;
  }
}
@media only screen and (max-width: 980px) {
  .banner {
    height: 400px;
  }
  .banner .et_pb_slide {
    height: 400px;
  }
}

.banner {
  height: 700px;
}
.banner .et_pb_slide {
  height: 700px;
}
@media only screen and (max-width: 980px) {
  .banner .et_pb_slide {
    height: 600px;
    background-position: right;
  }
}
@media screen and (max-width: 700px) {
  .banner .et_pb_slide {
    height: 400px;
    padding-top: 75px !important;
  }
}
@media only screen and (max-width: 980px) {
  .banner {
    height: 600px;
  }
}
@media screen and (max-width: 700px) {
  .banner {
    height: 400px;
  }
}

.banner-text {
  position: absolute;
  z-index: 9;
  width: 100%;
  bottom: 0;
  background: transparent;
}
.banner-text .header-content {
  margin-left: 0 !important;
}
@media screen and (max-width: 700px) {
  .banner-text .header-content {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    padding-top: 0;
  }
}
.banner-text h1 {
  font-size: 2.5rem !important;
  line-height: 2.875rem;
  color: #cd1480 !important;
  font-weight: bold;
  padding-bottom: 0;
  text-align: left;
}
@media screen and (max-width: 980px) {
  .banner-text h1 {
    font-size: 1.875rem !important;
    line-height: 2.375rem;
  }
}
@media screen and (max-width: 500px) {
  .banner-text h1 {
    font-size: 1.75rem !important;
    line-height: 2.375rem;
  }
}
.banner-text h2 {
  color: #7b0b69 !important;
  font-size: 1.375rem !important;
  line-height: 1.8125rem;
  text-align: left;
  max-width: 550px;
}
@media screen and (max-width: 1199px) {
  .banner-text h2 {
    max-width: 500px;
  }
}
@media screen and (max-width: 980px) {
  .banner-text h2 {
    max-width: 50%;
    font-size: 1.25rem !important;
    line-height: 1.625rem;
  }
}
@media screen and (max-width: 700px) {
  .banner-text h2 {
    margin-bottom: 20px;
    max-width: 100%;
    font-size: 1.25rem !important;
    line-height: 1.625rem;
  }
}
.banner-text hr {
  width: 55px;
  margin-left: 0;
  border-color: #916f96;
}
.banner-text p {
  color: #58585a !important;
  font-size: 1.125rem;
  text-align: left;
  margin-top: 15px;
  margin-bottom: 40px;
  max-width: 550px;
}
.banner-text p strong {
  font-size: 1.25rem;
  font-weight: bold;
}
@media screen and (max-width: 980px) {
  .banner-text p strong {
    font-size: 1.0625rem !important;
  }
}
.banner-text p em {
  font-style: italic;
}
@media screen and (max-width: 1199px) {
  .banner-text p {
    max-width: 450px;
  }
}
@media screen and (max-width: 980px) {
  .banner-text p {
    max-width: 50%;
    font-size: 0.9375rem !important;
    line-height: 1.375rem;
  }
}
@media screen and (max-width: 700px) {
  .banner-text p {
    font-size: 0.9375rem !important;
    line-height: 1.375rem;
    max-width: 100%;
  }
}
.banner-text #banner-video {
  background: none;
  border: none;
  color: #97bf0d;
  font-size: 1.125rem;
  font-weight: bold;
  border-bottom: 1px solid #97bf0d;
  transition: all 300ms linear;
  padding: 0;
  margin-top: 35px;
}
.banner-text #banner-video:hover {
  cursor: pointer;
  color: #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
}
@media screen and (max-width: 1399px) {
  .banner-text.et_pb_fullwidth_header .et_pb_fullwidth_header_container {
    width: 94%;
  }
}
@media screen and (max-width: 700px) {
  .banner-text {
    position: relative;
    background-image: linear-gradient(90deg, #f4efef 53%, rgba(235, 148, 235, 0.5) 100%);
    background-color: #f4efef;
    padding-top: 0 !important;
    padding-bottom: 0;
  }
}

.inner .banner h1 {
  font-size: 2.5rem !important;
}

.inside-banner .et_pb_slide {
  height: 400px;
}
@media only screen and (max-width: 1250px) {
  .inside-banner .et_pb_slide {
    height: 300px;
  }
}

.page-id-1785 .banner .et_pb_slide_content {
  max-width: 100%;
}
@media only screen and (max-width: 600px) {
  .page-id-1785 .banner .et_pb_slide_content {
    max-width: 80%;
  }
}
@media only screen and (max-width: 600px) {
  .page-id-1785 .banner .et_pb_slide {
    background-position: 85% 50%;
  }
}

@media only screen and (max-width: 980px) {
  .page-id-18 .banner.et_pb_slider .et_pb_slide {
    background-position: 50% 0;
  }
  .page-id-13 .banner.et_pb_slider .et_pb_slide {
    background-position: 75% 0;
  }
  .page-id-15 .banner.et_pb_slider .et_pb_slide {
    background-position: 45% 0;
  }
  .page-id-1737 .banner.et_pb_slider .et_pb_slide,
  .page-id-1735 .banner.et_pb_slider .et_pb_slide {
    background-position: 40% 0;
  }
  .page-id-17 .banner.et_pb_slider .et_pb_slide {
    background-position: 75% 0;
  }
  .page-id-2035 .banner.et_pb_slider .et_pb_slide {
    background-position: 50% 0 !important;
  }
}
#et_mobile_nav_menu {
  display: none;
}

.as-seen-in.et_pb_section {
  padding-bottom: 0;
}
.as-seen-in.et_pb_section .et_pb_column_4_4 {
  max-width: 94%;
  margin: 0 auto !important;
  float: none;
}
.as-seen-in.et_pb_section .et_pb_column_4_4 h2 {
  margin-bottom: 20px;
  font-weight: 100;
  font-size: 3.125rem !important;
}
.as-seen-in.et_pb_section .et_pb_column_4_4 img {
  height: 45px;
  width: auto;
}
.as-seen-in.et_pb_section .et_pb_column_4_4 ul {
  list-style-type: none;
  text-align: center;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.as-seen-in.et_pb_section .et_pb_column_4_4 ul li {
  display: inline-block;
}

.clients.et_pb_section {
  padding-bottom: 0;
}
.clients.et_pb_section .et_pb_column_4_4 {
  max-width: 94%;
  margin: 0 auto !important;
  float: none !important;
}
.clients.et_pb_section .et_pb_column_4_4 h2 {
  margin-bottom: 20px;
  font-weight: 100;
  font-size: 2.5rem;
  line-height: 3rem;
}
.clients.et_pb_section .et_pb_column_4_4 img {
  height: 77px;
  width: auto;
}
.clients.et_pb_section .et_pb_column_4_4 ul {
  list-style-type: none;
  text-align: center;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.clients.et_pb_section .et_pb_column_4_4 ul li {
  display: inline-block;
}

.video__section {
  display: flex;
  justify-content: center;
  gap: 100px;
}
.video__section .et_pb_row .et_pb_column_4_4 {
  max-width: 700px;
}
.video__section .et_pb_row .et_pb_column_4_4 .et_pb_image {
  border-radius: 30px;
}
.video__section .et_pb_row .et_pb_column_4_4 .et_pb_image .et_pb_image_wrap {
  width: 100%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.video__section .et_pb_row .et_pb_column_4_4 .et_pb_image .et_pb_image_wrap::after {
  content: url("../images/play-button.png");
  position: absolute;
  top: 70px;
  right: 0;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media screen and (max-width: 700px) {
  .video__section .et_pb_row .et_pb_column_4_4 .et_pb_image .et_pb_image_wrap::after {
    transform: translate(-50%, -50%) scale(0.6);
    top: 50px;
    right: -40px;
  }
}
.video__section .et_pb_row .et_pb_column_4_4 .et_pb_image .et_pb_image_wrap img {
  width: 100%;
}
.video__section .et_pb_row .et_pb_column_4_4 .et_pb_text a {
  text-transform: uppercase;
  font-weight: bold;
  transition: all 300ms linear;
  width: 250px;
}
.video__section .et_pb_row .et_pb_column_4_4 .et_pb_text p {
  margin-bottom: 40px;
}
.video__section .et_pb_row .et_pb_column_4_4 .et_pb_text p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 700px) {
  .video__section .et_pb_row .et_pb_column_4_4 .et_pb_text p {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .video__section {
    gap: 30px;
  }
}
@media screen and (max-width: 700px) {
  .video__section {
    flex-direction: column;
  }
}

.newsletter.et_pb_row {
  display: flex;
  justify-content: center;
}
.newsletter.et_pb_row .et_pb_column {
  max-width: 1240px;
  width: 90% !important;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.newsletter.et_pb_row .et_pb_column .et_pb_text_inner h2 {
  color: #cd1480;
  margin-bottom: 20px;
}
@media screen and (max-width: 700px) {
  .newsletter.et_pb_row .et_pb_column .et_pb_text_inner h2 {
    font-size: 1.875rem !important;
  }
}
.newsletter.et_pb_row .et_pb_column .et_pb_text_inner p {
  color: #7b0b69;
  font-size: 22px;
  line-height: 30px;
}
.newsletter.et_pb_row .et_pb_column #mc_embed_signup {
  margin-bottom: 30px;
}
.newsletter.et_pb_row .et_pb_column #mc_embed_signup .mc-field-group {
  display: flex;
  gap: 10px;
  justify-content: center;
  width: 94%;
  margin: 0 auto;
}
.newsletter.et_pb_row .et_pb_column #mc_embed_signup .mc-field-group input {
  height: 50px;
  border-style: solid;
  border-radius: 25px;
  padding: 0 20px;
  font-size: 18px;
  width: 25%;
  background: transparent;
  color: #cd1480;
  font-weight: bold;
  border-color: #cd1480;
}
.newsletter.et_pb_row .et_pb_column #mc_embed_signup .mc-field-group input:focus {
  border: 1px solid #7b0b69;
}
.newsletter.et_pb_row .et_pb_column #mc_embed_signup .mc-field-group input[type=submit] {
  background: #cd1480;
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  width: 15%;
  min-width: 250px;
  font-weight: bold;
  transition: all 300ms linear;
}
.newsletter.et_pb_row .et_pb_column #mc_embed_signup .mc-field-group input[type=submit]:hover {
  background: #7b0b69;
}
@media screen and (max-width: 980px) {
  .newsletter.et_pb_row .et_pb_column #mc_embed_signup .mc-field-group input[type=submit] {
    min-width: 250px;
  }
}
@media screen and (max-width: 980px) {
  .newsletter.et_pb_row .et_pb_column #mc_embed_signup .mc-field-group input {
    width: 90%;
    max-width: 400px;
  }
}
@media screen and (max-width: 980px) {
  .newsletter.et_pb_row .et_pb_column #mc_embed_signup .mc-field-group {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 980px) {
  .newsletter.et_pb_row .et_pb_column {
    width: 90%;
    margin: 0 auto !important;
    float: none;
    height: auto;
  }
}
@media screen and (max-width: 1399px) and (min-width: 700px) {
  .newsletter.et_pb_row {
    background-size: 115% 100%;
  }
}
.newsletter #mce-success-response, .newsletter #mce-error-response {
  color: #7c0b69 !important;
  margin-top: 30px;
  text-align: center;
}

.testimonials.et_pb_section {
  height: 600px;
  padding: 0;
  overflow: hidden;
}
.testimonials.et_pb_section .et_pb_row {
  padding: 0;
  max-width: 1220px;
  width: 90%;
  margin: 0 auto;
}
.testimonials.et_pb_section .et_pb_row .et_pb_column_4_4 {
  height: 600px;
  display: flex;
}
.testimonials.et_pb_section .et_pb_row .et_pb_column_4_4 .et_pb_module {
  margin-bottom: 0;
}
.testimonials.et_pb_section .et_pb_row .et_pb_column_4_4 .et_pb_text {
  display: flex;
  height: 100%;
  margin: 0;
  max-width: 65%;
}
.testimonials.et_pb_section .et_pb_row .et_pb_column_4_4 .et_pb_text .et_pb_text_inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: 425px;
  align-self: center;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
  background: #FFFFFF;
  padding: 40px 55px 20px;
}
.testimonials.et_pb_section .et_pb_row .et_pb_column_4_4 .et_pb_text .et_pb_text_inner h1, .testimonials.et_pb_section .et_pb_row .et_pb_column_4_4 .et_pb_text .et_pb_text_inner h2 {
  padding-bottom: 0;
  color: #1FA3A8 !important;
  text-align: center;
}
.testimonials.et_pb_section .et_pb_row .et_pb_column_4_4 .et_pb_text .et_pb_text_inner .testimonial_rotator_quote {
  color: #58585a;
  font-size: 1.125rem;
  text-align: left;
  line-height: 1.4375rem;
  margin-bottom: 20px;
}
.testimonials.et_pb_section .et_pb_row .et_pb_column_4_4 .et_pb_text .et_pb_text_inner .testimonial-title {
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
  margin-top: 10px;
}
@media screen and (max-width: 1199px) {
  .testimonials.et_pb_section .et_pb_row .et_pb_column_4_4 .et_pb_text .et_pb_text_inner {
    max-height: 600px;
  }
}
@media screen and (max-width: 980px) {
  .testimonials.et_pb_section .et_pb_row .et_pb_column_4_4 .et_pb_text .et_pb_text_inner {
    padding: 30px 20px 20px;
  }
}
@media screen and (max-width: 700px) {
  .testimonials.et_pb_section .et_pb_row .et_pb_column_4_4 .et_pb_text .et_pb_text_inner {
    max-height: 100%;
    padding: 40px 30px 20px;
  }
}
@media screen and (max-width: 980px) {
  .testimonials.et_pb_section .et_pb_row .et_pb_column_4_4 .et_pb_text {
    max-width: 55%;
  }
}
@media screen and (max-width: 700px) {
  .testimonials.et_pb_section .et_pb_row .et_pb_column_4_4 .et_pb_text {
    max-width: 100%;
    order: 2;
  }
}
.testimonials.et_pb_section .et_pb_row .et_pb_column_4_4 .et_pb_image {
  display: flex;
  max-width: 30%;
}
.testimonials.et_pb_section .et_pb_row .et_pb_column_4_4 .et_pb_image_wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.testimonials.et_pb_section .et_pb_row .et_pb_column_4_4 .et_pb_image_wrap img {
  max-width: -moz-max-content;
  max-width: max-content;
}
@media screen and (max-width: 1199px) {
  .testimonials.et_pb_section .et_pb_row .et_pb_column_4_4 .et_pb_image_wrap img {
    margin-left: -50px;
  }
}
@media screen and (max-width: 980px) {
  .testimonials.et_pb_section .et_pb_row .et_pb_column_4_4 .et_pb_image_wrap img {
    position: absolute;
    bottom: 0;
  }
}
@media screen and (max-width: 700px) {
  .testimonials.et_pb_section .et_pb_row .et_pb_column_4_4 .et_pb_image_wrap img {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    max-width: 300px;
  }
}
@media screen and (max-width: 980px) {
  .testimonials.et_pb_section .et_pb_row .et_pb_column_4_4 .et_pb_image_wrap {
    display: block;
  }
}
@media screen and (max-width: 700px) {
  .testimonials.et_pb_section .et_pb_row .et_pb_column_4_4 .et_pb_image {
    order: 1;
    max-width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 700px) {
  .testimonials.et_pb_section .et_pb_row .et_pb_column_4_4 {
    height: auto;
    max-height: 100%;
    flex-direction: column;
  }
}
@media screen and (max-width: 1199px) {
  .testimonials.et_pb_section {
    max-height: 700px;
  }
}
@media screen and (max-width: 700px) {
  .testimonials.et_pb_section {
    display: flex;
    align-items: center;
    max-height: 100%;
    height: auto;
    padding: 30px 0;
  }
}

.testimonial_rotator.template-default .has-image .img, .testimonial_rotator_single.has-image.template-default .img {
  width: 100%;
  margin: 0 0 10px 0;
  float: none;
  padding: 0;
}

.testimonial_rotator.template-default .has-image .text, .testimonial_rotator_single.has-image.template-default .text {
  width: 100%;
  float: none;
}

.testimonial_rotator_wrap {
  margin: 0 auto;
  padding: 0;
}

.testimonial-page .testimonial_rotator_wrap {
  width: 100%;
}

.testimonial_rotator {
  max-width: 700px;
  margin: 0 auto;
}

.testimonial_rotator_description {
  height: 100%;
}

.testimonial-row .testimonial_rotator_slide:hover {
  cursor: pointer;
}

.testimonial_rotator_prev i, .testimonial_rotator_next i {
  display: none;
}

.cycletwo-pager {
  text-align: center;
  width: 100%;
  z-index: 500;
  margin-top: 20px;
  line-height: 6px;
}
.cycletwo-pager span {
  font-size: 50px;
  width: 16px;
  height: 16px;
  display: inline-block;
  color: #c5c6c8;
  opacity: 1;
  margin: 0 2px;
  border: 0;
  border-radius: 50%;
}
.cycletwo-pager span.cycletwo-pager-active {
  opacity: 1;
  color: #22b2b6;
  border: none;
  width: 16px;
  height: 16px;
}
.cycletwo-pager span:hover {
  opacity: 0.7;
  color: #22b2b6;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.cycletwo-pager span .cycletwo-pager > * {
  cursor: pointer;
}

.cycletwo-pager {
  display: none;
}

.cycletwo-pager.slide1 {
  display: block;
}

.testimonial-page .cycletwo-pager.slide1 {
  display: none;
}

.testimonials__page .et_pb_text h2 {
  font-weight: 100;
  font-size: 2.5rem !important;
  line-height: 3rem;
  margin-bottom: 30px;
}
.testimonials__page .et_pb_text h2 strong {
  color: #97bf0d;
  font-weight: bold;
}
.testimonials__page .slide {
  margin-bottom: 30px;
  max-width: 700px;
  width: 90%;
  margin: 0 auto 40px !important;
}
.testimonials__page .slide .testimonial-title {
  color: #97bf0d;
  font-weight: bold;
  font-size: 1rem;
  margin-top: 5px;
}
.custom-footer, .custom-footer.et_pb_section {
  padding-bottom: 25px;
}
.custom-footer .et_pb_row, .custom-footer.et_pb_section .et_pb_row {
  max-width: 1400px;
  width: 90%;
  margin: 0 auto !important;
  display: flex;
  justify-content: space-between;
}
.custom-footer .et_pb_row .et_pb_column_1_2, .custom-footer.et_pb_section .et_pb_row .et_pb_column_1_2 {
  margin: 0;
}
.custom-footer .et_pb_row .et_pb_column_1_2.et-last-child, .custom-footer.et_pb_section .et_pb_row .et_pb_column_1_2.et-last-child {
  max-width: 450px;
}
@media screen and (max-width: 700px) {
  .custom-footer .et_pb_row .et_pb_column_1_2.et-last-child, .custom-footer.et_pb_section .et_pb_row .et_pb_column_1_2.et-last-child {
    margin-top: 40px;
  }
}
@media screen and (max-width: 980px) {
  .custom-footer .et_pb_row, .custom-footer.et_pb_section .et_pb_row {
    padding-top: 0;
  }
}
@media screen and (max-width: 700px) {
  .custom-footer .et_pb_row, .custom-footer.et_pb_section .et_pb_row {
    flex-direction: column;
    align-items: center;
  }
}
.custom-footer__text, .custom-footer.et_pb_section__text {
  max-width: 550px;
  margin: 0 auto;
}
.custom-footer__text h2, .custom-footer.et_pb_section__text h2 {
  font-size: 2.5rem;
  line-height: 3rem;
  color: #FFFFFF;
  margin-bottom: 20px;
}
.custom-footer__text h2 em, .custom-footer.et_pb_section__text h2 em {
  font-style: italic;
  color: #ffd338;
}
.custom-footer__text h2 strong, .custom-footer.et_pb_section__text h2 strong {
  font-weight: bold;
}
@media screen and (max-width: 700px) {
  .custom-footer__text h2, .custom-footer.et_pb_section__text h2 {
    font-size: 1.875rem !important;
    line-height: 2.375rem;
  }
}
.custom-footer__text a, .custom-footer.et_pb_section__text a {
  text-transform: uppercase;
  font-weight: bold;
  transition: all 300ms linear;
}
.custom-footer__text a:hover, .custom-footer.et_pb_section__text a:hover {
  color: #FFFFFF !important;
  border-color: #FFFFFF;
}
.custom-footer .et_pb_code, .custom-footer.et_pb_section .et_pb_code {
  max-width: 550px;
  margin: 0 auto;
  z-index: 1;
}
.custom-footer .et_pb_code .smGlobalBtn, .custom-footer.et_pb_section .et_pb_code .smGlobalBtn {
  margin-left: 0;
  margin-right: 10px;
}
.custom-footer .et_pb_image, .custom-footer.et_pb_section .et_pb_image {
  text-align: center;
  margin-top: -25px;
  z-index: 0;
}
@media screen and (max-width: 980px) {
  .custom-footer .et_pb_image, .custom-footer.et_pb_section .et_pb_image {
    margin-top: 0;
  }
}
.custom-footer .contact-info, .custom-footer.et_pb_section .contact-info {
  color: #FFF !important;
  font-size: 25px;
  letter-spacing: 1px;
  line-height: 40px;
  max-width: 550px;
  margin: 0 auto 30px;
}
.custom-footer .contact-info a, .custom-footer.et_pb_section .contact-info a {
  color: #FFF !important;
  font-size: 25px;
  letter-spacing: 1px;
  line-height: 30px;
  font-weight: bold;
}
.custom-footer .contact-info a:hover, .custom-footer.et_pb_section .contact-info a:hover {
  color: #ffd338 !important;
}
.custom-footer .copyright, .custom-footer.et_pb_section .copyright {
  font-size: 16px;
}
.custom-footer .copyright a, .custom-footer.et_pb_section .copyright a {
  color: #FFF;
}
.custom-footer .copyright a:hover, .custom-footer.et_pb_section .copyright a:hover {
  color: #ffd338 !important;
}

.cbp-spmenu {
  background: #cd1480;
  position: fixed;
}
@media screen and (min-width: 450px) and (max-width: 700px) {
  .cbp-spmenu hr {
    margin-bottom: 10px;
  }
}
.cbp-spmenu .menu-mainmenu {
  margin-bottom: 30px;
}
.cbp-spmenu h3 {
  color: #fff;
  font-size: 20px !important;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 450px) and (max-width: 700px) {
  .cbp-spmenu h3 {
    font-size: 16px !important;
    line-height: 16px;
  }
}
.cbp-spmenu a,
.cbp-spmenu .menu-parent-button {
  display: block;
  color: #fff;
  letter-spacing: 1px;
  font-size: 20px;
  font-weight: 500;
}
.cbp-spmenu a:hover, .cbp-spmenu a:active,
.cbp-spmenu .menu-parent-button:hover,
.cbp-spmenu .menu-parent-button:active {
  text-decoration: underline;
}
@media screen and (min-width: 450px) and (max-width: 700px) {
  .cbp-spmenu a,
  .cbp-spmenu .menu-parent-button {
    font-size: 16px;
  }
}
.cbp-spmenu .menu-parent-button {
  background: none;
  border: 0;
  padding: 0;
  text-align: left;
  width: 100%;
  cursor: pointer;
}
.cbp-spmenu .contact-info a {
  font-size: 20px;
  text-transform: none;
  line-height: 26px;
}
@media screen and (min-width: 450px) and (max-width: 700px) {
  .cbp-spmenu .contact-info a {
    font-size: 16px !important;
    margin-bottom: 5px;
  }
}
@media screen and (min-width: 450px) and (max-width: 700px) {
  .cbp-spmenu .contact-info br {
    display: none;
  }
}
.cbp-spmenu .social-media-icons {
  text-align: left;
}
.cbp-spmenu .social-media-icons li {
  display: inline-block;
}
.cbp-spmenu .social-media-icons li:first-child {
  margin-right: auto;
}
.cbp-spmenu .menu-item-has-children .sub-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
}
.cbp-spmenu .menu-item-has-children .sub-menu > li {
  margin-top: 5px;
  text-align: left;
}
.cbp-spmenu .menu-item-has-children .sub-menu > li > a {
  padding-left: 40px;
}
.cbp-spmenu .menu-item-has-children.open > .sub-menu {
  max-height: 1000px;
}
.cbp-spmenu .menu-item-has-children.open > .menu-parent-button::after {
  transform: rotate(180deg);
}
.cbp-spmenu .menu-item-has-children > .menu-parent-button {
  position: relative;
}
.cbp-spmenu .menu-item-has-children > .menu-parent-button::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  left: auto;
  top: 9px;
  margin-left: 10px;
  border-style: solid;
  border-width: 6px 4px 0 4px;
  border-color: #FFFFFF transparent transparent transparent;
  margin-top: 10px;
}
@media screen and (max-width: 700px) {
  .cbp-spmenu .menu-item-has-children > .menu-parent-button::after {
    margin-top: 3px;
  }
}

.cbp-spmenu-vertical {
  width: 100%;
  max-width: 100%;
  height: 100%;
  top: 0;
  z-index: 999998;
  padding: 30px;
}
.cbp-spmenu-vertical a,
.cbp-spmenu-vertical .menu-parent-button {
  padding: 2% 0 0;
  text-transform: uppercase;
}
.cbp-spmenu-vertical a:hover,
.cbp-spmenu-vertical .menu-parent-button:hover {
  text-decoration: none;
  color: #ffd338;
}
@media screen and (min-width: 450px) and (max-width: 700px) {
  .cbp-spmenu-vertical a,
  .cbp-spmenu-vertical .menu-parent-button {
    padding: 1% 0 0;
  }
}
.cbp-spmenu-right {
  right: -100%;
}
.cbp-spmenu-right.cbp-spmenu-open {
  right: 0;
}

.cbp-spmenu,
.cbp-spmenu-push {
  transition: all 0.3s ease;
}

.burger {
  display: none;
  z-index: 999999;
  position: fixed;
  right: 20px;
  top: 0;
  background: transparent;
  width: 50px;
  height: 80px;
  padding: 0;
  border: none;
  outline: none;
}
.burger.open .menutext {
  display: none;
}
.burger:hover {
  cursor: pointer;
}
.burger .menutext {
  position: absolute;
  color: #cd1480;
  font-size: 18px;
  right: 60px;
  top: 30px;
  transition: all 300ms linear;
}
.burger .bar1,
.burger .bar2,
.burger .bar3 {
  width: 42px;
  height: 3px;
  background-color: #7b0b69;
  margin: 8px 0;
  transition: all 0.4s ease;
}
@media screen and (max-width: 700px) {
  .burger .bar1,
  .burger .bar2,
  .burger .bar3 {
    width: 30px;
    margin: 4px 0;
  }
}
.burger.open .bar1 {
  transform: rotate(-45deg) translate(-6px, 7px);
  background-color: #fff;
}
@media screen and (max-width: 700px) {
  .burger.open .bar1 {
    transform: rotate(-45deg) translate(-3px, 6px);
  }
}
.burger.open .bar2 {
  display: none;
}
.burger.open .bar3 {
  transform: rotate(45deg) translate(1px, -2px);
  background-color: #fff;
}
@media screen and (max-width: 700px) {
  .burger {
    width: 30px;
  }
}

body.fixed-menu .burger .menutext {
  color: #fff;
}
body.fixed-menu .burger .bar1,
body.fixed-menu .burger .bar2,
body.fixed-menu .burger .bar3 {
  background-color: #fff;
}
body.fixed-menu .burger.open .bar1,
body.fixed-menu .burger.open .bar2,
body.fixed-menu .burger.open .bar3 {
  background-color: #fff;
}

.home .burger .menutext {
  color: #fff;
}
.home .burger .bar1,
.home .burger .bar2,
.home .burger .bar3 {
  background-color: #7b0b69;
}
.home .burger.open .bar1 {
  transform: rotate(-45deg) translate(-7px, 7px);
  background-color: #fff;
}
@media screen and (max-width: 700px) {
  .home .burger.open .bar1 {
    transform: rotate(-45deg) translate(-3px, 6px);
  }
}
.home .burger.open .bar2 {
  display: none;
}
.home .burger.open .bar3 {
  transform: rotate(45deg) translate(1px, -2px);
  background-color: #fff;
}
.home.fixed-menu .burger .bar1,
.home.fixed-menu .burger .bar2,
.home.fixed-menu .burger .bar3 {
  background-color: #fff;
}
.home.fixed-menu .burger.open .bar1,
.home.fixed-menu .burger.open .bar2,
.home.fixed-menu .burger.open .bar3 {
  background-color: #fff;
}
.home.fixed-menu .menutext {
  color: #cd1480;
}

.admin-bar .burger {
  top: 45px;
}

nav.cbp-spmenu {
  padding-left: 5%;
  padding-top: 10%;
  justify-content: flex-start;
  display: flex;
  flex-direction: column;
}
nav.cbp-spmenu ul {
  list-style-type: none;
  margin-bottom: 25px;
}
nav.cbp-spmenu ul ul {
  margin-bottom: 0;
}
@media screen and (min-width: 450px) and (max-width: 700px) {
  nav.cbp-spmenu ul {
    margin-bottom: 10px;
  }
}
nav.cbp-spmenu li {
  margin-bottom: 0;
}
nav.cbp-spmenu .menu li {
  margin-bottom: 0;
}
@media screen and (max-width: 700px) {
  nav.cbp-spmenu {
    padding-top: 75px;
  }
}

nav .contact-info {
  color: #fff;
}
nav .social-media-icons {
  margin-top: 5px;
}
nav .social-media-icons a {
  font-size: 26px;
  line-height: 30px;
}

@media only screen and (max-width: 981px) {
  .burger {
    display: block;
  }
  .cbp-spmenu li.menu-item-has-children .menu-parent-button:hover {
    cursor: pointer;
  }
  #et-top-navigation {
    display: none;
  }
}
/* link handling */
body.home .cbp-spmenu li.inner-link {
  display: none !important;
}
body:not(.home) .cbp-spmenu li.home-link {
  display: none !important;
}

/* Lightbox Overlay Styling */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  /* z-index must be higher than mobile menu's z-burger (999999) */
  z-index: 1000000;
  display: flex !important; /* Override potential inline style="display: none;" */
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  /* Add transition for smooth fade-in/out */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}
.lightbox-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* Hide body scroll when lightbox is open */
body.lightbox-open {
  overflow: hidden;
}

.lightbox-overlay__close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  /* z-index needs to be higher than the container */
  z-index: 2;
}

.lightbox-overlay__container {
  position: relative;
  width: 100%;
  max-width: 960px;
  background: #000;
  /* Establish a stacking context to appear above the overlay's background */
  z-index: 1;
}

/* Maintain 16:9 aspect ratio for YouTube videos using modern CSS */
.lightbox-overlay__container.youtube {
  aspect-ratio: 16/9;
  height: auto; /* Unset previous height property */
  padding-bottom: 0; /* Unset previous padding hack */
}

.lightbox-overlay__container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

body.single h1.entry-title {
  font-size: 2.5rem !important;
  line-height: 3rem;
  margin-top: 20px;
  padding-bottom: 0;
}
body.single .widgettitle {
  font-size: 25px !important;
  text-transform: uppercase;
  font-family: "Source Sans Pro";
  color: #7b0b69;
  margin-bottom: 5px;
}
body.single .et_pb_bg_layout_light .et_pb_widget li a, body.single .et_pb_widget a {
  color: #7b0b69 !important;
  font-size: 16px;
}
body.single .et_pb_widget ul li {
  margin-bottom: 3px;
}
body.single .et_pb_bg_layout_light .et_pb_widget li a:hover, body.single .et_pb_widget a:hover {
  color: #cd1480;
  cursor: pointer;
}
body.single .et_pb_bg_layout_light .et_pb_post p, body.single #left-area .post-meta {
  color: #7b0b69;
  font-size: 18px;
}
body.single .widget_recent_entries a {
  text-transform: capitalize;
}
body.single #main-content .container:before {
  width: 0 !important;
}
body.single .et_right_sidebar #sidebar {
  text-align: left;
  width: 29.667%;
  padding-left: 0 !important;
}
body.single #left-area {
  width: 64.833%;
  margin-right: 5.5%;
  padding-right: 0 !important;
}
body.single #left-area h2 {
  font-size: 1.875rem !important;
  line-height: 2.25rem;
  margin-top: 20px;
  padding-bottom: 0;
}
body.single #left-area p {
  margin-bottom: 20px;
}
body.single #left-area blockquote {
  border-left: 4px solid #cd1480;
  margin-left: 0;
  margin-right: 0;
  padding-left: 15px;
  font-style: italic;
}
body.single section#comment-wrap {
  margin-top: 50px;
}
body.single section#comment-wrap h1 {
  font-size: 1.5625rem;
}
body.single section#comment-wrap .comment_avatar {
  display: none;
}
body.single section#comment-wrap ol.commentlist {
  list-style-type: none;
}
body.single section#comment-wrap .comment_postinfo {
  font-weight: bold;
}
body.single #commentform input[type=email], body.single #commentform input[type=text], body.single #commentform input[type=url] {
  padding: 6px;
}
body.single #commentform textarea {
  height: 120px;
  padding: 6px;
}

body.archive h1.entry-title {
  font-size: 2.5rem !important;
  line-height: 3rem;
  margin-top: 20px;
  padding-bottom: 0;
}
body.archive .widgettitle {
  font-size: 25px !important;
  text-transform: uppercase;
  font-family: "Source Sans Pro";
  color: #7b0b69;
  margin-bottom: 5px;
}
body.archive .et_pb_bg_layout_light .et_pb_widget li a, body.archive .et_pb_widget a {
  color: #7b0b69 !important;
  font-size: 16px;
}
body.archive .et_pb_widget ul li {
  margin-bottom: 3px;
}
body.archive .et_pb_bg_layout_light .et_pb_widget li a:hover, body.archive .et_pb_widget a:hover {
  color: #cd1480;
  cursor: pointer;
}
body.archive .et_pb_bg_layout_light .et_pb_post p, body.archive #left-area .post-meta {
  color: #7b0b69;
  font-size: 18px;
}
body.archive .widget_recent_entries a {
  text-transform: capitalize;
}
body.archive #main-content .container:before {
  width: 0 !important;
}
body.archive .et_right_sidebar #sidebar {
  text-align: left;
  width: 29.667%;
  padding-left: 0 !important;
}
body.archive #left-area {
  width: 64.833%;
  margin-right: 5.5%;
  padding-right: 0 !important;
}
body.archive #left-area h2 {
  font-size: 1.875rem !important;
  line-height: 2.25rem;
  margin-top: 20px;
  padding-bottom: 0;
}
body.archive #left-area p {
  margin-bottom: 20px;
}
body.archive #left-area blockquote {
  border-left: 4px solid #cd1480;
  margin-left: 0;
  margin-right: 0;
  padding-left: 15px;
  font-style: italic;
}
body.archive section#comment-wrap {
  margin-top: 50px;
}
body.archive section#comment-wrap h1 {
  font-size: 1.5625rem;
}
body.archive section#comment-wrap .comment_avatar {
  display: none;
}
body.archive section#comment-wrap ol.commentlist {
  list-style-type: none;
}
body.archive section#comment-wrap .comment_postinfo {
  font-weight: bold;
}
body.archive #commentform input[type=email], body.archive #commentform input[type=text], body.archive #commentform input[type=url] {
  padding: 6px;
}
body.archive #commentform textarea {
  height: 120px;
  padding: 6px;
}

.stars {
  opacity: 0;
  animation: fadeIn 1s 2s ease-in forwards;
}
.stars.et_pb_fullwidth_code {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.stars.et_pb_fullwidth_code .et_pb_code_inner {
  position: relative;
  max-width: 1200px;
  height: 100%;
  padding: 0 6%;
  margin: 0 auto;
}
.stars__banner {
  position: absolute;
  top: 230px;
  left: 0;
  width: 100%;
}
.stars__banner--yellow {
  position: absolute;
  right: 500px;
  animation: twinkle 2s ease-in-out infinite;
  animation-delay: 0s;
}
@media screen and (max-width: 1399px) {
  .stars__banner--yellow {
    right: 525px;
  }
}
@media screen and (max-width: 1199px) {
  .stars__banner--yellow {
    right: 45%;
  }
}
@media screen and (max-width: 980px) {
  .stars__banner--yellow {
    right: 40%;
    top: -50px;
  }
}
@media screen and (max-width: 700px) {
  .stars__banner--yellow {
    right: auto;
    left: 15%;
    top: -100px;
  }
}
@media screen and (max-width: 500px) {
  .stars__banner--yellow {
    left: 5%;
  }
}
.stars__banner--purple {
  position: absolute;
  right: 15px;
  animation: twinkle 2s ease-in-out infinite;
  animation-delay: -0.5s;
}
@media screen and (max-width: 1399px) {
  .stars__banner--purple {
    right: 50px;
  }
}
@media screen and (max-width: 980px) {
  .stars__banner--purple {
    right: 25px;
  }
}
@media screen and (max-width: 700px) {
  .stars__banner--purple {
    right: 20%;
    top: -75px;
  }
}
@media screen and (max-width: 500px) {
  .stars__banner--purple {
    right: 10%;
  }
}
.stars__banner--pink {
  position: absolute;
  right: 0px;
  top: 75px;
  animation: twinkle 2s ease-in-out infinite;
  animation-delay: -1.2s;
}
@media screen and (max-width: 1399px) {
  .stars__banner--pink {
    right: 25px;
  }
}
@media screen and (max-width: 980px) {
  .stars__banner--pink {
    right: 5px;
    top: 50px;
  }
}
@media screen and (max-width: 700px) {
  .stars__banner--pink {
    right: 18%;
    top: -25px;
  }
}
@media screen and (max-width: 500px) {
  .stars__banner--pink {
    right: 5%;
  }
}
.stars.et_pb_code {
  position: absolute;
  top: 0;
  width: 100%;
}
.stars__myValues--1 {
  position: absolute;
  top: 0;
  left: 0;
  animation: twinkle 3s ease-in-out infinite;
  animation-delay: -0.5s;
}
@media screen and (max-width: 1599px) {
  .stars__myValues--1 {
    left: 10px;
  }
}
.stars__myValues--2 {
  position: absolute;
  top: 65px;
  left: 23%;
  animation: twinkle 3s ease-in-out infinite;
  animation-delay: -1s;
}
@media screen and (max-width: 980px) {
  .stars__myValues--2 {
    left: 20%;
  }
}
.stars__myValues--3 {
  position: absolute;
  top: 15px;
  left: 28%;
  animation: twinkle 3s ease-in-out infinite;
  animation-delay: -1.5s;
}
@media screen and (max-width: 980px) {
  .stars__myValues--3 {
    left: 23%;
  }
}
@media screen and (max-width: 700px) {
  .stars__myValues--3 {
    display: none;
  }
}
.stars__myValues--4 {
  position: absolute;
  top: -25px;
  right: 25%;
  animation: twinkle 3s ease-in-out infinite;
  animation-delay: -1.5s;
}
@media screen and (max-width: 980px) {
  .stars__myValues--4 {
    top: 0;
  }
}
@media screen and (max-width: 700px) {
  .stars__myValues--4 {
    display: none;
  }
}
.stars__myValues--5 {
  position: absolute;
  top: 50px;
  right: -100px;
  animation: twinkle 3s ease-in-out infinite;
  animation-delay: -1.5s;
}
@media screen and (max-width: 1599px) {
  .stars__myValues--5 {
    right: 30px;
  }
}
@media screen and (max-width: 980px) {
  .stars__myValues--5 {
    right: 50px;
  }
}
.stars__bookMarla--1 {
  position: absolute;
  top: 20px;
  left: 15%;
  animation: twinkle 3s ease-in-out infinite;
  animation-delay: -0.5s;
}
@media screen and (max-width: 980px) {
  .stars__bookMarla--1 {
    left: 5%;
  }
}
@media screen and (max-width: 700px) {
  .stars__bookMarla--1 {
    top: 175px;
  }
}
.stars__bookMarla--2 {
  position: absolute;
  top: -15px;
  left: 22%;
  animation: twinkle 3s ease-in-out infinite;
  animation-delay: -1s;
}
@media screen and (max-width: 980px) {
  .stars__bookMarla--2 {
    left: 12%;
  }
}
@media screen and (max-width: 700px) {
  .stars__bookMarla--2 {
    top: 125px;
  }
}
.stars__bookMarla--3 {
  position: absolute;
  top: -15px;
  right: 22%;
  animation: twinkle 3s ease-in-out infinite;
  animation-delay: -1.5s;
}
@media screen and (max-width: 980px) {
  .stars__bookMarla--3 {
    right: 12%;
  }
}
@media screen and (max-width: 700px) {
  .stars__bookMarla--3 {
    top: 125px;
  }
}
.stars__bookMarla--4 {
  position: absolute;
  top: 30px;
  right: 18%;
  animation: twinkle 3s ease-in-out infinite;
  animation-delay: -1.5s;
}
@media screen and (max-width: 980px) {
  .stars__bookMarla--4 {
    right: 5%;
  }
}
@media screen and (max-width: 700px) {
  .stars__bookMarla--4 {
    top: 175px;
  }
}
.stars__counselling--1 {
  position: absolute;
  top: 30px;
  right: 10%;
  animation: twinkle 3s ease-in-out infinite;
  animation-delay: -0.5s;
}
@media screen and (max-width: 980px) {
  .stars__counselling--1 {
    top: 15px;
    right: 5%;
  }
}
.stars__counselling--2 {
  position: absolute;
  top: 95px;
  right: 7%;
  animation: twinkle 3s ease-in-out infinite;
  animation-delay: -1s;
}
@media screen and (max-width: 980px) {
  .stars__counselling--2 {
    top: 50px;
    right: 2%;
  }
}
.stars__speaking--1 {
  position: absolute;
  top: 40px;
  left: -10%;
  animation: twinkle 3s ease-in-out infinite;
  animation-delay: -0.5s;
}
@media screen and (max-width: 1199px) {
  .stars__speaking--1 {
    left: -5%;
    top: 60px;
  }
}
.stars__speaking--2 {
  position: absolute;
  top: 0px;
  left: -5%;
  animation: twinkle 3s ease-in-out infinite;
  animation-delay: -1s;
}
.stars__speaking--3 {
  position: absolute;
  top: 0;
  right: 35%;
  animation: twinkle 3s ease-in-out infinite;
  animation-delay: -1.5s;
}
.stars__speaking--4 {
  position: absolute;
  top: 75px;
  right: -5%;
  animation: twinkle 3s ease-in-out infinite;
  animation-delay: -1.5s;
}
@media screen and (max-width: 1199px) {
  .stars__speaking--4 {
    right: 1%;
  }
}
.stars__speaking--5 {
  position: absolute;
  top: 140px;
  right: -6%;
  animation: twinkle 3s ease-in-out infinite;
  animation-delay: -1.5s;
}
@media screen and (max-width: 1199px) {
  .stars__speaking--5 {
    right: -2%;
  }
}
.stars__speaking--6 {
  position: absolute;
  top: 275px;
  right: -20%;
  animation: twinkle 3s ease-in-out infinite;
  animation-delay: -1.5s;
}
@media screen and (max-width: 1399px) {
  .stars__speaking--6 {
    right: -10%;
  }
}
@media screen and (max-width: 1199px) {
  .stars__speaking--6 {
    right: -3%;
  }
}

.speaking__keynotes#about .et_pb_row .et_pb_column_4_4 .et_pb_image {
  justify-content: flex-start;
}
@media screen and (max-width: 700px) {
  .speaking__keynotes#about .et_pb_row .et_pb_column_4_4 .et_pb_image {
    justify-content: center;
  }
}
.speaking__keynotes#about.fade-in .animation__dottedLine.et_pb_row {
  animation: fadeIn 1s 1s ease-in forwards;
}
.speaking__keynotes .animation__dottedLine.et_pb_row {
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
  max-width: 100%;
  width: 100%;
  padding: 0;
  background: transparent;
  margin: 0;
  z-index: 0;
}
.speaking__keynotes .animation__dottedLine.et_pb_row .et_pb_column_4_4 {
  width: 94%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0;
  display: block;
}
.speaking__keynotes .animation__dottedLine.et_pb_row .et_pb_column_4_4 .et_pb_code {
  width: 50%;
}
.speaking__keynotes .animation__dottedLine.et_pb_row .et_pb_column_4_4 .et_pb_code .et_pb_code_inner {
  position: absolute;
  right: 0;
  top: 150px;
}
.speaking__keynotes .animation__dottedLine.et_pb_row .et_pb_column_4_4 .et_pb_code .et_pb_code_inner svg {
  animation: fadeIn 3s ease-in-out;
  /* This is needed for scale() to work from the center */
  transform-origin: center;
}
@media screen and (max-width: 700px) {
  .speaking__keynotes .animation__dottedLine.et_pb_row .et_pb_column_4_4 .et_pb_code .et_pb_code_inner svg {
    transform: scale(0.7);
  }
}
@media screen and (max-width: 1199px) {
  .speaking__keynotes .animation__dottedLine.et_pb_row .et_pb_column_4_4 .et_pb_code .et_pb_code_inner {
    right: -25px;
    top: 125px;
  }
}
@media screen and (max-width: 980px) {
  .speaking__keynotes .animation__dottedLine.et_pb_row .et_pb_column_4_4 .et_pb_code .et_pb_code_inner {
    right: -60px;
    top: 125px;
    transform: scale(0.8);
  }
}
@media screen and (max-width: 700px) {
  .speaking__keynotes .animation__dottedLine.et_pb_row .et_pb_column_4_4 .et_pb_code .et_pb_code_inner {
    top: auto;
    bottom: -10px;
    right: 10%;
    transform: scaleX(-1);
  }
}
@media screen and (max-width: 500px) {
  .speaking__keynotes .animation__dottedLine.et_pb_row .et_pb_column_4_4 .et_pb_code .et_pb_code_inner {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  .speaking__keynotes .animation__dottedLine.et_pb_row .et_pb_column_4_4 .et_pb_code {
    width: 100%;
  }
}
@media screen and (max-width: 700px) {
  .speaking__keynotes .animation__dottedLine.et_pb_row {
    right: auto;
  }
}

.speaking__keynotes.et_pb_section {
  /* Base style for all accents */
  /* Individual positioning and rotation */
  /* (Adjust top/left/transform to match your design) */
}
.speaking__keynotes.et_pb_section .accent__wrapper {
  position: absolute;
  width: 100%;
}
.speaking__keynotes.et_pb_section .image-wrapper {
  position: relative; /* This is the key! */
  /* This ensures accents outside the box are hidden */
  padding: 50px;
  max-height: 600px;
}
@media screen and (max-width: 700px) {
  .speaking__keynotes.et_pb_section .image-wrapper {
    max-height: 300px;
    text-align: center;
    padding: 0;
  }
}
.speaking__keynotes.et_pb_section .image-wrapper img {
  display: block; /* Removes extra space under the image */
  width: 100%;
}
@media screen and (max-width: 700px) {
  .speaking__keynotes.et_pb_section .image-wrapper img {
    max-height: 300px;
    width: auto;
    margin: 0 auto;
  }
}
.speaking__keynotes.et_pb_section .accent {
  position: absolute;
  background-color: #EEE1D0; /* A beige-ish color */
  width: 14px; /* Or however wide */
  height: 33px; /* Or however tall */
  /* Start hidden before animation */
  opacity: 0;
  transform-origin: bottom;
}
@media screen and (max-width: 400px) {
  .speaking__keynotes.et_pb_section .accent {
    display: none;
  }
}
.speaking__keynotes.et_pb_section .accent-1 {
  top: -10px;
  left: 15px;
  animation-delay: 0s; /* First */
  animation: pop-stay-fade-1 2.7s linear infinite;
}
@media screen and (max-width: 700px) {
  .speaking__keynotes.et_pb_section .accent-1 {
    top: -30px;
  }
}
.speaking__keynotes.et_pb_section .accent-2 {
  top: -30px;
  left: 70px;
  height: 30px;
  animation-delay: 0.5s; /* Second */
  animation: pop-stay-fade-2 2.7s linear infinite;
}
@media screen and (max-width: 700px) {
  .speaking__keynotes.et_pb_section .accent-2 {
    top: -50px;
  }
}
.speaking__keynotes.et_pb_section .accent-3 {
  top: 40px;
  left: 15px;
  height: 30px;
  animation-delay: 0.2s; /* Third */
  animation: pop-stay-fade-3 2.7s linear infinite;
}
@media screen and (max-width: 700px) {
  .speaking__keynotes.et_pb_section .accent-3 {
    top: 20px;
  }
}
.speaking__keynotes.et_pb_section .accent-4 {
  top: 25px;
  right: 45px;
  animation-delay: 0s; /* First */
  animation: pop-stay-fade-4 2.7s linear infinite;
}
@media screen and (max-width: 700px) {
  .speaking__keynotes.et_pb_section .accent-4 {
    display: none;
  }
}
.speaking__keynotes.et_pb_section .accent-5 {
  top: 5px;
  right: 15px;
  height: 45px;
  animation-delay: 0.5s; /* Second */
  animation: pop-stay-fade-5 2.7s linear infinite;
}
@media screen and (max-width: 700px) {
  .speaking__keynotes.et_pb_section .accent-5 {
    display: none;
  }
}
.speaking__keynotes.et_pb_section .accent-6 {
  top: 50px;
  right: 15px;
  animation-delay: 0.2s; /* Third */
  animation: pop-stay-fade-6 2.7s linear infinite;
}
@media screen and (max-width: 700px) {
  .speaking__keynotes.et_pb_section .accent-6 {
    display: none;
  }
}
.speaking__keynotes.et_pb_section .accent-7 {
  top: 505px;
  right: 110px;
  animation-delay: 0.5s; /* Second */
  animation: pop-stay-fade-7 2.7s linear infinite;
}
@media screen and (max-width: 1199px) {
  .speaking__keynotes.et_pb_section .accent-7 {
    top: 400px;
  }
}
@media screen and (max-width: 980px) {
  .speaking__keynotes.et_pb_section .accent-7 {
    top: 320px;
    right: 90px;
  }
}
@media screen and (max-width: 768px) {
  .speaking__keynotes.et_pb_section .accent-7 {
    top: 240px;
    right: 70px;
  }
}
@media screen and (max-width: 700px) {
  .speaking__keynotes.et_pb_section .accent-7 {
    display: none;
  }
}
.speaking__keynotes.et_pb_section .accent-8 {
  top: 510px;
  right: 130px;
  animation-delay: 0.2s; /* Third */
  animation: pop-stay-fade-8 2.7s linear infinite;
}
@media screen and (max-width: 1199px) {
  .speaking__keynotes.et_pb_section .accent-8 {
    top: 405px;
  }
}
@media screen and (max-width: 980px) {
  .speaking__keynotes.et_pb_section .accent-8 {
    top: 325px;
    right: 110px;
  }
}
@media screen and (max-width: 768px) {
  .speaking__keynotes.et_pb_section .accent-8 {
    top: 260px;
    right: 90px;
  }
}
@media screen and (max-width: 700px) {
  .speaking__keynotes.et_pb_section .accent-8 {
    display: none;
  }
}
.speaking__keynotes.et_pb_section .accent-9 {
  top: -110px;
  right: -20px;
  height: 45px;
  animation-delay: 0.2s; /* Third */
  animation: pop-stay-fade-9 2.7s linear infinite;
}
@media screen and (max-width: 1399px) {
  .speaking__keynotes.et_pb_section .accent-9 {
    right: 40px;
  }
}
@media screen and (max-width: 700px) {
  .speaking__keynotes.et_pb_section .accent-9 {
    display: none;
  }
}
.speaking__keynotes.et_pb_section .accent-10 {
  top: -80px;
  right: -50px;
  animation-delay: 0.2s; /* Third */
  animation: pop-stay-fade-10 2.7s linear infinite;
}
@media screen and (max-width: 1399px) {
  .speaking__keynotes.et_pb_section .accent-10 {
    right: 10px;
  }
}
@media screen and (max-width: 700px) {
  .speaking__keynotes.et_pb_section .accent-10 {
    display: none;
  }
}
.speaking__keynotes.et_pb_section .accent-11 {
  top: -25px;
  right: 60px;
  height: 45px;
  animation-delay: 0.2s; /* Third */
  animation: pop-stay-fade-11 2.7s linear infinite;
}
@media screen and (max-width: 700px) {
  .speaking__keynotes.et_pb_section .accent-11 {
    top: -60px;
  }
}
.speaking__keynotes.et_pb_section .accent-12 {
  top: -25px;
  right: 30px;
  animation-delay: 0.2s; /* Third */
  animation: pop-stay-fade-12 2.7s linear infinite;
}
@media screen and (max-width: 700px) {
  .speaking__keynotes.et_pb_section .accent-12 {
    top: -60px;
  }
}
.speaking__keynotes.et_pb_section .accent-13 {
  top: 10px;
  right: 10px;
  height: 45px;
  animation-delay: 0.2s; /* Third */
  animation: pop-stay-fade-13 2.7s linear infinite;
}
@media screen and (max-width: 700px) {
  .speaking__keynotes.et_pb_section .accent-13 {
    top: -25px;
  }
}
.speaking__keynotes.et_pb_section .accent-14 {
  top: 510px;
  left: 30px;
  animation-delay: 0.2s; /* Third */
  animation: pop-stay-fade-14 2.7s linear infinite;
}
@media screen and (max-width: 1199px) {
  .speaking__keynotes.et_pb_section .accent-14 {
    top: 405px;
  }
}
@media screen and (max-width: 980px) {
  .speaking__keynotes.et_pb_section .accent-14 {
    top: 325px;
  }
}
@media screen and (max-width: 768px) {
  .speaking__keynotes.et_pb_section .accent-14 {
    top: 245px;
  }
}
@media screen and (max-width: 700px) {
  .speaking__keynotes.et_pb_section .accent-14 {
    display: none;
  }
}
.speaking__keynotes.et_pb_section .accent-15 {
  top: 525px;
  left: 50px;
  animation-delay: 0.2s; /* Third */
  animation: pop-stay-fade-15 2.7s linear infinite;
}
@media screen and (max-width: 1199px) {
  .speaking__keynotes.et_pb_section .accent-15 {
    top: 415px;
  }
}
@media screen and (max-width: 980px) {
  .speaking__keynotes.et_pb_section .accent-15 {
    top: 335px;
  }
}
@media screen and (max-width: 768px) {
  .speaking__keynotes.et_pb_section .accent-15 {
    top: 255px;
  }
}
@media screen and (max-width: 700px) {
  .speaking__keynotes.et_pb_section .accent-15 {
    display: none;
  }
}
.speaking__keynotes.et_pb_section .accent-16 {
  top: -5px;
  left: 25px;
  height: 45px;
  animation-delay: 0s; /* First */
  animation: pop-stay-fade-16 2.7s linear infinite;
}
@media screen and (max-width: 700px) {
  .speaking__keynotes.et_pb_section .accent-16 {
    top: -45px;
    left: 15px;
  }
}
.speaking__keynotes.et_pb_section .accent-17 {
  top: -10px;
  left: 55px;
  height: 30px;
  animation-delay: 0.5s; /* Second */
  animation: pop-stay-fade-17 2.7s linear infinite;
}
@media screen and (max-width: 700px) {
  .speaking__keynotes.et_pb_section .accent-17 {
    top: -45px;
    left: 45px;
  }
}
.speaking__keynotes.et_pb_section .accent-18 {
  top: 45px;
  left: 10px;
  height: 30px;
  animation-delay: 0.2s; /* Third */
  animation: pop-stay-fade-18 2.7s linear infinite;
}
@media screen and (max-width: 700px) {
  .speaking__keynotes.et_pb_section .accent-18 {
    top: 0;
  }
}
.speaking__keynotes.et_pb_section .accent-19 {
  top: 445px;
  right: 60px;
  animation-delay: 0.5s; /* Second */
  animation: pop-stay-fade-7 2.7s linear infinite;
}
@media screen and (max-width: 1199px) {
  .speaking__keynotes.et_pb_section .accent-19 {
    top: 370px;
  }
}
@media screen and (max-width: 980px) {
  .speaking__keynotes.et_pb_section .accent-19 {
    top: 280px;
  }
}
@media screen and (max-width: 768px) {
  .speaking__keynotes.et_pb_section .accent-19 {
    top: 200px;
  }
}
@media screen and (max-width: 700px) {
  .speaking__keynotes.et_pb_section .accent-19 {
    display: none;
  }
}
.speaking__keynotes.et_pb_section .accent-20 {
  top: 450px;
  right: 80px;
  height: 45px;
  animation-delay: 0.2s; /* Third */
  animation: pop-stay-fade-8 2.7s linear infinite;
}
@media screen and (max-width: 1199px) {
  .speaking__keynotes.et_pb_section .accent-20 {
    top: 375px;
  }
}
@media screen and (max-width: 980px) {
  .speaking__keynotes.et_pb_section .accent-20 {
    top: 285px;
  }
}
@media screen and (max-width: 768px) {
  .speaking__keynotes.et_pb_section .accent-20 {
    top: 205px;
  }
}
@media screen and (max-width: 700px) {
  .speaking__keynotes.et_pb_section .accent-20 {
    display: none;
  }
}
.speaking__keynotes.et_pb_section .accent-21 {
  bottom: 55px;
  right: 5px;
  animation-delay: 0.2s; /* Third */
  animation: pop-stay-fade-21 2.7s linear infinite;
}
@media screen and (max-width: 1399px) {
  .speaking__keynotes.et_pb_section .accent-21 {
    right: 65px;
  }
}
.speaking__keynotes.et_pb_section .accent-22 {
  bottom: 55px;
  right: -20px;
  height: 45px;
  animation-delay: 0.5s; /* Second */
  animation: pop-stay-fade-22 2.7s linear infinite;
}
@media screen and (max-width: 1399px) {
  .speaking__keynotes.et_pb_section .accent-22 {
    right: 40px;
  }
}
.speaking__keynotes.et_pb_section .accent-23 {
  bottom: 75px;
  right: -50px;
  animation-delay: 0.2s; /* Third */
  animation: pop-stay-fade-23 2.7s linear infinite;
}
@media screen and (max-width: 1399px) {
  .speaking__keynotes.et_pb_section .accent-23 {
    right: 10px;
  }
}

/**
 * Rotation Warning
 * Displays a message when small devices are in landscape orientation
 */
.rotation-warning {
  display: none;
}
@media only screen and (max-width: 1023px) and (orientation: landscape) {
  .rotation-warning {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    z-index: 999999;
    animation: fadeIn 0.3s ease-in-out;
  }
}
.rotation-warning__content {
  color: #ffffff;
  text-align: center;
  padding: 20px;
  max-width: 90%;
}
.rotation-warning__content p {
  font-size: 1.125rem;
  line-height: 1.5;
  margin: 0;
}
.rotation-warning__icon {
  font-size: 60px;
  margin-bottom: 20px;
  animation: rotatePhone 2s ease-in-out infinite;
  transform-origin: center center;
}

@keyframes rotatePhone {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-90deg);
  }
  75% {
    transform: rotate(-90deg);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.link__pink, a.more-link, .ms-btn--primary {
  font-weight: bold;
  background: linear-gradient(to left, #7b0b69, #cd1480) !important;
  text-decoration: none !important;
  color: #FFFFFF !important;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 30px;
  border: none;
  margin-top: 10px;
  display: inline-block;
  min-width: 250px;
  text-align: center;
  line-height: 1.4375rem;
  font-size: 1.125rem;
}
.link__pink:hover, a.more-link:hover, .ms-btn--primary:hover {
  background: linear-gradient(to right, #7b0b69, #cd1480) !important;
  cursor: pointer;
}
.link__pink--noGradient {
  background: #7b0b69 !important;
}
.link__pink--noGradient:hover {
  background: #cd1480 !important;
}
.link__green {
  min-width: 250px;
  text-align: center;
  font-weight: bold;
  background: linear-gradient(to right, #A6CDE8, #3FB4B8) !important;
  text-decoration: none !important;
  color: #FFFFFF !important;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 30px;
  margin-top: 10px;
  display: inline-block;
  line-height: 1.4375rem;
}
.link__green:hover {
  background: linear-gradient(to right, #3FB4B8, #A6CDE8) !important;
  cursor: pointer;
}

a.more-link {
  display: inline-block !important;
}

.mission.et_pb_section {
  height: 350px;
  display: flex;
}
.mission.et_pb_section .et_pb_row {
  padding: 0;
}
.mission.et_pb_section .et_pb_row .et_pb_text {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  height: 100%;
}
.mission.et_pb_section .et_pb_row .et_pb_text .et_pb_text_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.mission.et_pb_section .et_pb_row .et_pb_text .et_pb_text_inner p {
  font-size: 40px;
  letter-spacing: 1px;
  line-height: 50px;
  text-align: center;
}
@media screen and (max-width: 700px) {
  .mission.et_pb_section .et_pb_row .et_pb_text .et_pb_text_inner p {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
@media screen and (max-width: 700px) {
  .mission.et_pb_section {
    height: 300px;
  }
}

.readmore {
  color: #7b0b69;
  font-weight: bold;
  cursor: pointer;
}
.readmore:hover {
  text-decoration: underline;
}

.toggled-module {
  display: none;
}
.toggled-module.is-open {
  display: block;
}

.threeColumn__bio.et_pb_section .et_pb_row {
  width: 94%;
  max-width: 1300px;
}
.threeColumn__bio.et_pb_section .et_pb_row .et_pb_column_4_4 {
  display: flex;
  gap: 15px;
  max-width: 100%;
}
.threeColumn__bio.et_pb_section .et_pb_row .et_pb_column_4_4 .et_pb_module {
  flex: 1 1 0;
  min-width: 0;
  background-color: #FFFFFF;
  padding: 50px 40px;
  margin-bottom: 0;
}
.threeColumn__bio.et_pb_section .et_pb_row .et_pb_column_4_4 .et_pb_module h2 {
  margin-bottom: 40px;
}
@media screen and (max-width: 1199px) {
  .threeColumn__bio.et_pb_section .et_pb_row .et_pb_column_4_4 .et_pb_module h2 {
    font-size: 1.875rem !important;
  }
}
.threeColumn__bio.et_pb_section .et_pb_row .et_pb_column_4_4 .et_pb_module ul {
  margin-top: 0;
  margin-left: 0;
  list-style-type: none;
  padding-left: 0;
}
.threeColumn__bio.et_pb_section .et_pb_row .et_pb_column_4_4 .et_pb_module ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 26px;
}
.threeColumn__bio.et_pb_section .et_pb_row .et_pb_column_4_4 .et_pb_module ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 13px;
  height: 25px;
  background: url("../images/bullet-point.png") no-repeat center center;
  background-size: contain;
}
.threeColumn__bio.et_pb_section .et_pb_row .et_pb_column_4_4 .et_pb_module p {
  margin-bottom: 20px;
}
.threeColumn__bio.et_pb_section .et_pb_row .et_pb_column_4_4 .et_pb_module:nth-child(3) {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background-size: contain;
}
@media screen and (max-width: 1199px) {
  .threeColumn__bio.et_pb_section .et_pb_row .et_pb_column_4_4 .et_pb_module:nth-child(3) {
    justify-content: flex-end;
    align-items: center;
    min-height: 300px;
    background-position: 0 30px;
  }
}
@media screen and (max-width: 980px) {
  .threeColumn__bio.et_pb_section .et_pb_row .et_pb_column_4_4 .et_pb_module:nth-child(3) {
    background-position: center;
  }
}
@media screen and (max-width: 700px) {
  .threeColumn__bio.et_pb_section .et_pb_row .et_pb_column_4_4 .et_pb_module:nth-child(3) {
    display: none;
  }
}
.threeColumn__bio.et_pb_section .et_pb_row .et_pb_column_4_4 .et_pb_module:nth-child(4) a {
  display: none;
}
@media screen and (max-width: 1199px) {
  .threeColumn__bio.et_pb_section .et_pb_row .et_pb_column_4_4 .et_pb_module:nth-child(4) a {
    display: inline-block;
  }
}
.threeColumn__bio.et_pb_section .et_pb_row .et_pb_column_4_4 .et_pb_module.avReq {
  position: relative;
  margin-bottom: 0 !important;
}
.threeColumn__bio.et_pb_section .et_pb_row .et_pb_column_4_4 .et_pb_module.avReq::after {
  content: "";
  background: url("../img/microphone.webp");
  background-size: contain;
  background-repeat: no-repeat;
  width: 270px;
  height: 200px;
  position: absolute;
  left: -70px;
  bottom: 50px;
  z-index: 1;
}
@media screen and (max-width: 1199px) {
  .threeColumn__bio.et_pb_section .et_pb_row .et_pb_column_4_4 .et_pb_module.avReq::after {
    display: none;
  }
}
@media screen and (max-width: 1199px) {
  .threeColumn__bio.et_pb_section .et_pb_row .et_pb_column_4_4 .et_pb_module {
    flex: 0 1 auto;
  }
}
@media screen and (max-width: 1199px) {
  .threeColumn__bio.et_pb_section .et_pb_row .et_pb_column_4_4 {
    flex-wrap: wrap;
  }
  .threeColumn__bio.et_pb_section .et_pb_row .et_pb_column_4_4 .et_pb_module {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 20px;
  }
  .threeColumn__bio.et_pb_section .et_pb_row .et_pb_column_4_4 .et_pb_module:nth-child(3) {
    width: 48%;
  }
  .threeColumn__bio.et_pb_section .et_pb_row .et_pb_column_4_4 .et_pb_module:nth-child(3) .et_pb_text_inner {
    display: none;
  }
  .threeColumn__bio.et_pb_section .et_pb_row .et_pb_column_4_4 .et_pb_module:last-child {
    width: 48%;
  }
}
@media screen and (max-width: 1199px) and (max-width: 700px) {
  .threeColumn__bio.et_pb_section .et_pb_row .et_pb_column_4_4 .et_pb_module:last-child {
    width: 100%;
  }
}
.threeColumn__bio--imageDesktop {
  position: relative;
  margin-bottom: 0 !important;
}
.threeColumn__bio--imageDesktop .et_pb_text_inner {
  z-index: 5;
}
.threeColumn__bio--imageMobile {
  display: none;
  text-align: center !important;
}
@media screen and (max-width: 700px) {
  .threeColumn__bio--imageMobile {
    display: block;
    margin-bottom: 20px;
  }
}

.twoColumn__downloads.et_pb_section {
  justify-content: center;
  display: flex;
  align-items: center;
  padding-bottom: 100px;
  padding-top: 50px;
}
.twoColumn__downloads.et_pb_section .et_pb_row {
  gap: 15px;
  max-width: 1300px;
  width: 94%;
  display: flex;
  justify-content: center;
  padding-bottom: 0;
}
.twoColumn__downloads.et_pb_section .et_pb_row .et_pb_column_1_2 {
  margin: 0;
}
.twoColumn__downloads.et_pb_section .et_pb_row .et_pb_column_1_2 .et_pb_module {
  margin: 0;
}
.twoColumn__downloads.et_pb_section .et_pb_row .et_pb_column_1_2 .et_pb_module .et_pb_image_wrap img {
  max-height: 610px;
  width: auto;
}
.twoColumn__downloads.et_pb_section .et_pb_row .et_pb_column_1_2 .et_pb_module:last-child {
  margin-top: 20px;
}
.twoColumn__downloads.et_pb_section .et_pb_row .et_pb_column_1_2 .et_pb_module:last-child a {
  min-width: 350px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .twoColumn__downloads.et_pb_section .et_pb_row {
    flex-direction: column;
  }
  .twoColumn__downloads.et_pb_section .et_pb_row .et_pb_column_1_2 .et_pb_module {
    text-align: center;
  }
  .twoColumn__downloads.et_pb_section .et_pb_row .et_pb_column_1_2 .et_pb_module:last-child {
    margin-top: 0;
    margin-bottom: 30px;
  }
  .twoColumn__downloads.et_pb_section .et_pb_row .et_pb_column_1_2 .et_pb_module:last-child a {
    min-width: 250px;
  }
}
@media screen and (max-width: 768px) {
  .twoColumn__downloads.et_pb_section {
    padding-bottom: 25px;
  }
}
@media screen and (max-width: 700px) {
  .twoColumn__downloads.et_pb_section {
    padding-bottom: 0;
    padding-top: 25px;
  }
}

.bookMarla__title h2 {
  font-family: "Ephesis", cursive;
  font-size: 3.75rem !important;
  line-height: 3.75rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 700px) {
  .bookMarla__title h2 {
    max-width: 300px;
    margin: 0 auto 20px;
  }
}
.bookMarla__icons.et_pb_section {
  padding-bottom: 50px;
  max-width: 1300px;
  margin: 0 auto;
  gap: 30px;
}
.bookMarla__icons.et_pb_section .et_pb_row {
  width: 300px;
  max-width: 300px;
  padding: 0;
}
@media screen and (max-width: 700px) {
  .bookMarla__icons.et_pb_section .et_pb_row {
    padding: 0;
    width: 90%;
    max-width: 90%;
  }
}
@media screen and (max-width: 700px) {
  .bookMarla__icons.et_pb_section {
    padding-bottom: 0;
  }
}
.bookMarla__button .et_pb_row {
  padding-top: 0;
}

#blog .et_pb_row .et_pb_column_4_4 {
  max-width: 1300px;
  margin: 0 auto;
}

.swal-overlay--show-modal {
  z-index: 999999;
}

/*
	color:

green - 97bf0d
dark blue - 06357a
light-blue - a2daf4

*/
html, body {
  width: 100%;
}

sup {
  font-size: 0.5em;
}

.et_pb_text_inner p a:hover {
  color: #06357a;
}

.hidden-bullets ul {
  list-style-type: none;
  padding-left: 0 !important;
}

.events .hidden-bullets ul, .events .hidden-bullets p {
  padding-bottom: 0;
}

h1 {
  font-weight: 100;
  padding-bottom: 15px;
}

h2 {
  font-size: 40px !important;
}

h3 {
  font-size: 22px !important;
  font-weight: bold !important;
}

h4 {
  font-weight: bold !important;
  font-size: 18px !important;
  padding-bottom: 0 !important;
}

h5 {
  font-weight: bold !important;
  font-size: 18px !important;
}

.et-pb-controllers a {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #FFF;
}

.et-pb-controllers .et-pb-active-control, .et-pb-controllers a:hover {
  background-color: #97bf0d;
}

.experts sup {
  font-size: 12px;
}

.experts .et_pb_column_1_2 .et_pb_image img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
}

.experts h4 {
  font-size: 20px !important;
}

.experts .et_pb_text_inner h5 {
  padding-bottom: 0;
}

.experts .et_pb_text_inner h5:last-of-type {
  padding-bottom: 10px;
}

.experts a {
  color: #06357a;
}

.experts a:hover {
  color: #97bf0d;
}

.experts img {
  border-radius: 50%;
}

.purple {
  background-color: #440e62;
}

#page-container {
  padding-top: 120px !important;
}

body.home #page-container {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

a.grey {
  color: #7e8082;
  font-size: 14px;
  margin-left: 40px;
}

a.grey:hover {
  color: #440e62;
}

.quote, .quote .et_pb_column_4_4 {
  height: 500px;
}

.quote .et_pb_column_4_4 .et_pb_text {
  display: flex;
  height: 100%;
}

.quote .et_pb_column_4_4, .quote .et_pb_column_4_4 .et_pb_text {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.banner .et_pb_column_2_5 .et_pb_text_inner, .banner .et_pb_column_3_5 .et_pb_text_inner, .banner .et_pb_column_4_4 .et_pb_text_inner,
.quote .et_pb_column_4_4 .et_pb_text_inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  align-self: center;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
}

.banner.et_pb_section, .banner .et_pb_row, .quote.et_pb_section, .quote .et_pb_row {
  padding: 0 !important;
}

.et_pb_button:hover {
  background-color: transparent;
}

.video p {
  font-size: 35px;
  font-weight: 100;
  line-height: 40px;
  margin-top: 30px;
}

.video .et_pb_video {
  margin-bottom: 10px;
}

.video .et_pb_column_1_2:last-child p {
  margin-top: 0;
}

.callout .et_pb_column_1_4 {
  margin-right: 2.6% !important;
  width: 23%;
  text-align: center;
}

.callout .et_pb_column_1_4 .et_pb_text {
  height: 250px;
  width: 250px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 1s;
  margin-left: auto;
  margin-right: auto;
}

.callout .et_pb_column_1_4 .et_pb_text:hover {
  cursor: pointer;
  box-shadow: inset 0 0 0 250px #7b9b0d;
}

.callout .et_pb_column_1_4 .et_pb_text p {
  max-width: 280px;
  margin: 0 auto;
}

.callout .et_pb_column_1_4:last-child {
  margin-right: 0 !important;
  float: right;
}

.callout h3 {
  color: #FFF;
  font-size: 50px !important;
  text-align: center;
  font-weight: 100 !important;
}

.callout p {
  text-align: center;
}

.experience .et_pb_fullwidth_header .et_pb_fullwidth_header_container.center .header-content {
  width: 100%;
  max-width: 100%;
}

.experience h1 {
  color: #06357a !important;
  font-weight: 100;
  margin-bottom: 20px;
}

.experience h1 em {
  font-weight: 500;
}

.experience .blue-link {
  font-size: 35px;
  letter-spacing: 1px;
}

.quote {
  font-size: 25px;
  font-weight: bold;
}

.quote h2 {
  font-size: 40px !important;
  line-height: 45px;
  font-weight: normal;
}

#et-secondary-nav .menu-item-has-children > a:first-child:after, #top-menu .menu-item-has-children > a:first-child:after {
  content: "";
}

#et-secondary-nav .menu-item-has-children > a:first-child, #top-menu .menu-item-has-children > a:first-child {
  padding-right: 0;
}

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

.nav li ul {
  padding: 10px 0;
  margin-top: 0px;
}

.nav li ul {
  padding: 10px 0;
  margin-top: 0px;
}

#top-menu li li {
  padding: 0;
  width: 100%;
}

#top-menu li li a {
  width: 100%;
  text-align: center;
  display: block;
}

#top-menu li li a {
  font-weight: normal !important;
}

.menu-item-33 ul.sub-menu { /* about sub menu */
  left: -85px;
}

.menu-item-1771 ul.sub-menu { /* workkshops sub menu */
  left: -32px;
  width: 250px;
}

.menu-item-1771 ul.sub-menu li {
  line-height: 22px;
}

.menu-item-1775 ul.sub-menu {
  left: -70px;
}

.topbutton {
  position: absolute;
  right: 30px;
  top: 20px;
  z-index: 999;
}

.resume.purplebutton {
  padding: 2px 15px !important;
  text-align: center;
}

.resume.purplebutton:hover {
  padding: 2px 15px !important;
}

.topbutton .purplebutton {
  font-size: 16px;
  padding: 2px 15px;
}

.post-content .more-link, .main-banner .redbutton {
  display: inline-block !important;
  width: auto;
  margin-top: 10px;
}

.paypal_button input[type=submit]:hover, .blog-page .post-content .more-link:hover {
  cursor: pointer;
  background-color: #551900;
}

.whitebutton {
  background-color: #FFF;
  color: #440e62;
  display: inline-block;
  margin-top: 30px;
}

.et_pb_column_4_4 .purplebutton {
  margin-top: 30px;
}

.careers .et_pb_column_4_4 .purplebutton {
  margin-top: 0;
}

.purplebutton:hover {
  color: #FFF;
  background-color: #939598;
  cursor: pointer;
}

.whitebutton:hover {
  background-color: #939598;
  color: #FFF;
}

.navigation.paging-navigation {
  display: block;
}

.nav-links {
  display: block;
}

.bottom p strong {
  font-size: 18px;
}

.fullwidth .et_pb_column_4_4 {
  max-width: 100%;
}

.et_pb_gutters3 .fullwidth .et_pb_column_4_4 .et_pb_grid_item {
  width: 24.25%;
  margin-right: 1%;
  margin-bottom: 1%;
}

.et_pb_gutters3 .fullwidth .et_pb_column_4_4 .et_pb_grid_item:nth-child(4n) {
  margin-right: 0;
}

.mfp-content figcaption {
  display: none;
}

.blog-page .et_pb_blog_grid .et_pb_image_container img, .entry-featured-image-url img {
  border: 1px solid #bcbec0;
}

.et_pb_blog_grid .et_pb_post {
  background-color: transparent;
  border: 0;
  padding: 0;
}

.et_pb_blog_grid h2 {
  color: #FFF;
  font-size: 20px !important;
  line-height: 24px;
  text-transform: none;
  font-family: "Source Sans Pro";
  font-weight: bold;
  padding-bottom: 5px;
}

.blog-page .et_pb_blog_grid h2 {
  color: #551900;
}

.et_pb_blog_grid .post-content p {
  color: #FFF;
}

.et_pb_blog_grid .post-content p:last-of-type {
  display: inline;
}

.blog-page .et_pb_blog_grid .post-content p:last-of-type {
  display: block;
}

.et_pb_blog_grid a.more-link {
  text-transform: uppercase;
  font-weight: bold;
  margin-left: 5px;
}

.et_pb_post .entry-content {
  padding-top: 0;
}

.entry-content ul, .entry-content ol {
  list-style-position: outside;
  margin-left: 20px;
  margin-top: 10px;
}

.blog-page .et_pb_blog_grid a.more-link {
  margin-left: 0;
}

.et_pb_blog_grid a.more-link:after {
  content: ">";
  margin-left: 3px;
}

.blog-page .et_pb_blog_grid a.more-link:after {
  content: "";
  margin-left: 0px;
}

.et_pb_blog_grid .et_pb_image_container {
  margin: 0;
}

.et_pb_post .entry-featured-image-url {
  margin-bottom: 10px;
}

.form-submit {
  text-align: left;
}

.address h1 {
  padding-bottom: 30px;
}

.address a {
  color: #FFF;
  font-weight: bold;
}

.address a:hover {
  color: #551900;
}

.et_pb_fullwidth_header .et_pb_parallax_css {
  background-attachment: local;
  top: 0;
  position: fixed;
}

.et_pb_fullwidth_header.bottom .et_pb_parallax_css {
  background-position: 50% 50%;
  background-attachment: local;
  top: 0;
  position: fixed;
}

.contact-form {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form .wpcf7 {
  text-align: center;
}

.contact-form .wpcf7 input, .contact-form .wpcf7 select, .contact-form .wpcf7 textarea {
  border: 1px solid #d9dadb;
  background-color: #d9dadb;
  width: 100%;
}

.contact-form .wpcf7 input[type=checkbox] {
  width: auto;
}

.wpcf7-form-control-wrap.checkbox-266 {
  position: relative;
  display: block;
  margin-top: 20px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.wpcf7-checkbox .wpcf7-list-item {
  display: block;
  text-align: left;
}

.other {
  display: inline-block;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.wpcf7-form-control-wrap.checkbox-412 {
  float: left;
}

.other .wpcf7-checkbox .wpcf7-list-item {
  display: inline;
}

.other input[type=text] {
  width: auto;
  display: inline;
  background: #FFF;
  border: 0;
  border-bottom: 1px solid #c6c7c8;
  border-radius: 0;
  padding-bottom: 1px;
  padding-top: 0;
  max-width: 200px;
}

.otherinterest {
  float: left;
  margin-left: 10px;
}

.contact-form .wpcf7 input[type=submit] {
  background-color: #97bf0d;
  border: 0;
  padding: 10px;
  color: #06357a !important;
  width: 150px;
  margin-top: 30px;
  font-weight: bold;
}

.contact-form .wpcf7 input[type=submit]:hover {
  background-color: #06357a !important;
  color: #97bf0d !important;
}

.sitemap {
  margin: 0 auto;
}

.sitemap a {
  color: #06357a;
}

.sitemap p {
  padding-bottom: 5px;
}

.sitemap ul {
  margin-left: 20px;
  margin-bottom: 5px;
  padding-bottom: 0;
}

.sitemap a {
  margin-top: 5px;
  display: inline-block;
}

.sitemap strong a {
  color: #97bf0d !important;
}

.sitemap a:hover {
  color: #97bf0d !important;
}

.testimonial-page .testimonial_rotator_wrap {
  margin-bottom: -30px;
}

nav hr {
  border-color: #a2daf4;
  width: 50%;
  margin-left: 0;
  margin-bottom: 40px;
}

.entry-content ul.social-media-icons {
  padding-bottom: 0;
  padding-left: 0 !important;
}

.social-media-icons li {
  display: inline-block;
}

.experts ul.social-media-icons {
  text-align: center;
}

.experts .social-media-icons li {
  line-height: 30px;
  font-weight: bold;
}

.smGlobalBtn { /* global button class */
  vertical-align: top;
  display: inline-block;
  position: relative;
  cursor: pointer;
  width: 40px;
  height: 40px;
  padding: 0px;
  text-decoration: none;
  text-align: center;
  color: #06357a;
  font-size: 30px;
  font-weight: normal;
  line-height: 40px;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  margin-left: 5px;
  transition: all 300ms;
}

.experts .smGlobalBtn {
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 20px;
}

.et-fixed-header .contact-info .smGlobalBtn {
  width: 25px;
  height: 25px;
  line-height: 25px;
  font-size: 10px;
  margin-left: 5px;
  margin-bottom: 0;
}

.facebookBtn, .youtubeBtn, .twitterBtn, .linkedinBtn, .instagramBtn, .pinterestBtn, .mailBtn, .webBtn {
  background: #FFF;
}

.facebookBtn:before, .youtubeBtn:before, .twitterBtn:before, .linkedinBtn:before, .instagramBtn:before, .pinterestBtn:before, .mailBtn:before, .webBtn:before {
  font-family: "FontAwesome";
  color: #7b0b69;
}

.experts .facebookBtn:before, .experts .youtubeBtn:before, .experts .twitterBtn:before, .experts .linkedinBtn:before, .experts .instagramBtn:before, .experts .pinterestBtn:before, .experts .mailBtn:before, .experts .webBtn:before {
  font-family: "FontAwesome";
  color: #FFF;
}

.green-social .facebookBtn:before, .green-social .youtubeBtn:before, .green-social .twitterBtn:before,
.green-social .linkedinBtn:before, .green-social .instagramBtn:before, .green-social .pinterestBtn:before, .green-social .mailBtn:before, .green-social .webBtn:before {
  font-family: "FontAwesome";
  color: #FFF;
}

/* facebook button class*/
.facebookBtn:before { /* use :before to add the relevant icons */
  content: "\f09a"; /* add facebook icon */
}

.facebookBtn:hover {
  background: #ffd338;
}

/* youtube button class*/
.youtubeBtn:before { /* use :before to add the relevant icons */
  content: "\f167"; /* add youtube icon */
}

.youtubeBtn:hover {
  background: #ffd338;
}

/* twitter button class*/
.twitterBtn:before {
  content: "\f099"; /* add twitter icon */
}

.twitterBtn:hover {
  background: #ffd338;
}

/* linkedin button class*/
.linkedinBtn:before {
  content: "\f0e1"; /* add linkedin icon */
}

.linkedinBtn:hover {
  background: #ffd338;
}

/* instagram button class */
.instagramBtn:before {
  content: "\f16d"; /* add instagram icon */
}

.instagramBtn:hover {
  background: #ffd338;
}

.pinterestBtn:before {
  content: "\f0d2"; /* add instagram icon */
}

.pinterestBtn:hover {
  background: #ffd338;
}

.mailBtn:before {
  content: "\f0e0"; /* add instagram icon */
}

.mailBtn:hover {
  background: #ffd338;
}

.webBtn:before {
  content: "\f0ac"; /* add instagram icon */
}

.webBtn:hover {
  background: #ffd338;
}

.experts .facebookBtn:hover, .experts .pinterestBtn:hover, .experts .instagramBtn:hover, .experts .linkedinBtn:hover, .experts .twitterBtn:hover, .experts .youtubeBtn:hover, .experts .facebookBtn:hover, .experts .mailBtn:hover, .experts .webBtn:hover {
  background: #97bf0d;
}

.green-social .facebookBtn:hover, .green-social .youtubeBtn:hover, .green-social .twitterBtn:hover, .green-social .linkedinBtn:hover, .green-social .instagramBtn:hover, .green-social .pinterestBtn:hover, .green-social .mailBtn:hover, .green-social .webBtn:hover {
  background: #06357a;
}

/* circles */
ul.circles {
  list-style-type: none;
  text-align: center;
  padding: 0;
}

ul.circles li {
  width: 210px;
  height: 200px;
  border-radius: 50%;
  color: #FFF;
  vertical-align: top;
  font-weight: 100;
  display: inline-block;
  margin: 0 10px;
}

ul.circles li span {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  display: flex;
  font-size: 30px;
  line-height: 35px;
}

li.darkestblue span {
  background-color: #06357a;
}

li.darkblue span {
  background-color: #006096;
}

li.midblue span {
  background-color: #2e91bd;
}

li.lightblue span {
  background-color: #76c0e7;
}

li.green span {
  background-color: #97bf0d;
}

.experts.et_pb_row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
}

.experts .et_pb_text_inner {
  width: 90%;
  margin: 0 auto;
}

.et_pb_toggle_close, .et_pb_toggle_open {
  padding: 0;
}

.et_pb_toggle_title {
  display: inline;
  font-size: 25px;
  font-weight: 600;
  color: #97bf0d;
  border-bottom: 3px solid #97bf0d;
  padding-bottom: 5px !important;
  padding-right: 0 !important;
  transition: all 300ms linear;
}

.et_pb_toggle_content {
  padding-top: 30px;
}

.horizontal-menu {
  display: block;
  text-align: center;
  width: 100%;
  padding: 0 !important;
  list-style-type: none;
}

.horizontal-menu li {
  display: inline;
  margin: 0 15px;
}

.horizontal-menu li a {
  color: #06357a;
  text-transform: uppercase;
  font-size: 18px;
}

.horizontal-menu li a:hover {
  color: #97bf0d;
}

.et_pb_gutters3 .et_pb_column_1_2 .et_pb_module.et_pb_video {
  margin-bottom: 5px;
}

.et_pb_video_box {
  border: 2px solid #c6c7c8;
}

.callout h2, .how-we-do-it h2 {
  font-size: 50px !important;
  font-weight: 100;
}

.callout h3 {
  padding-bottom: 0;
  font-size: 40px !important;
}

.callout p, .how-we-do-it .et_pb_column_4_4 p {
  font-size: 25px;
  font-weight: bold;
  line-height: 30px;
  max-width: 600px;
  margin: 10px auto 0;
}

.how-we-do-it img {
  transition: all 100ms linear;
}

.how-we-do-it .et_pb_row {
  padding-bottom: 30px;
}

.how-we-do-it .et_pb_row_4col {
  padding: 0;
}

.how-we-do-it .et_pb_column_1_4.et_pb_column {
  padding-bottom: 50px;
  margin-right: 3.5% !important;
  width: 22.333%;
}

.how-we-do-it .et_pb_column_1_4.et_pb_column:last-child {
  margin-right: 0 !important;
}

.how-we-do-it .et_pb_column_1_4 .et_pb_image {
  margin-bottom: 15px;
}

.how-we-do-it .et_pb_column_1_4 p {
  padding-bottom: 10px;
}

.how-we-do-it .et_pb_column_1_4:hover img {
  transform: rotate(-30deg);
}

.surviving h2, .dash h2 {
  font-size: 50px !important;
  font-weight: 100;
}

.surviving .et_pb_video {
  margin-top: 25px;
}

.surviving h4 {
  font-size: 20px;
  line-height: 27px;
}

.surviving h4:last-of-type {
  margin-bottom: 25px;
}

.surviving.et_pb_section {
  height: 700px;
  display: flex;
}

.surviving .green-link:hover {
  color: #FFF;
  border-bottom: 3px solid #FFF;
}

.keynotes h2, .retreats h2 {
  font-size: 25px !important;
  line-height: 30px !important;
  font-weight: bold;
  padding-bottom: 5px;
}

.keynotes h3 {
  font-size: 18px !important;
  line-height: 22px !important;
  font-weight: bold;
}

.workshops h2 {
  font-size: 25px !important;
  line-height: 30px !important;
}

.retreats ul {
  margin-top: 0;
}

.retreats ul ul {
  padding-bottom: 0;
}

.quote.tools h2 {
  font-size: 50px !important;
  line-height: 50px;
  font-weight: 400;
}

.quote.tools p {
  font-weight: bold;
  font-size: 30px;
  line-height: 40px;
  padding-bottom: 0;
}

.blue-button {
  color: #FFF !important;
  background: #06357a;
  font-size: 20px;
  padding: 5px 30px;
  border-radius: 10px;
  display: inline-block;
  margin-top: 30px;
}

.blue-button:hover {
  background: #97bf0d;
}

.quote.tools .et_pb_column_4_4 .et_pb_text {
  max-width: 960px !important;
}

.testimonial-page h2 {
  font-size: 25px !important;
  font-weight: bold;
  line-height: 30px;
}

.contact-page-info, .contact-page-info a {
  font-weight: bold;
  font-size: 25px;
  line-height: 30px;
}

.contact-page-info a:hover {
  color: #97bf0d !important;
}

#et-top-navigation {
  position: relative;
}

.secondaryMenu {
  position: absolute;
  right: 0;
  top: 10px;
  color: #06357a;
}

.home .secondaryMenu {
  color: #FFF;
}

.secondaryMenu a {
  color: #06357a;
  text-transform: uppercase;
  font-weight: normal;
  font-size: 15px;
  margin: 0 8px;
}

.home .secondaryMenu a {
  color: #FFF;
}

.home .et-fixed-header .secondaryMenu a {
  color: #06357a;
}

.secondaryMenu a.green {
  color: #97bf0d;
  font-weight: bold;
}

.secondaryMenu a.green:hover {
  color: #06357a !important;
}

.secondaryMenu a:hover {
  color: #97bf0d !important;
}

.home .secondaryMenu a.green:hover {
  color: #FFF !important;
}

.home .et-fixed-header .secondaryMenu a.green {
  color: #97bf0d !important;
}

.home .et-fixed-header .secondaryMenu a.green:hover {
  color: #06357a !important;
}

.secondaryMenu a.green:last-of-type {
  margin-right: 0;
}

.page-id-2035 .secondaryMenu a.boutique,
.page-id-1728 .secondaryMenu a.manshoes {
  color: #97bf0d !important;
  font-weight: bold;
}

.book-interviews .et_pb_video {
  margin-bottom: 30px !important;
}

.book-interviews .fluid-width-video-wrapper {
  padding-top: 0 !important;
}

.book-interviews .et_pb_video_box {
  height: 300px;
  display: flex;
  background: #000;
}

.experts.et_pb_section {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.experts.et_pb_section .et_pb_row {
  width: 33%;
  padding: 0 2%;
  margin-top: 0;
  margin-bottom: 5%;
}

.experts.et_pb_section .et_pb_row img {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

.experts .et_pb_text_inner h5:last-of-type {
  color: #97bf0d;
  margin-top: 5px;
}

.will-deliver ol li {
  margin-bottom: 5px;
}

.et_pb_bg_layout_light .et_pb_widget li a, .et_pb_widget a {
  text-transform: capitalize;
}

@media only screen and (max-width: 1250px) {
  .testimonials .et_pb_row {
    width: 94%;
  }
  .topbutton {
    right: 90px;
    top: 35px;
  }
  .callout h3 {
    font-size: 32px !important;
  }
  .callout .et_pb_column_1_4 .et_pb_text {
    padding: 10px;
  }
  .secondaryMenu, .secondaryMenu a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1199px) {
  .experience h1 em {
    display: inline-block;
  }
  .testimonial_rotator_wrap {
    width: 96%;
  }
  .testimonial_rotator {
    width: 100%;
  }
  ul.circles {
    max-width: 800px;
    margin: 0 auto;
  }
  .book-interviews .et_pb_video_box {
    height: 260px;
  }
  .et_pb_fullwidth_header .et_pb_fullwidth_header_container.center .header-content {
    width: 100%;
  }
  .experts.et_pb_section .et_pb_row img {
    width: 90%;
  }
  .experts .social-media-icons li:nth-child(1) {
    width: 100%;
  }
}
@media only screen and (max-width: 1100px) and (min-width: 981px) {
  .book-interviews .et_pb_video_box {
    height: 225px;
  }
  .callout .et_pb_column_1_4 .et_pb_text {
    height: 200px;
    width: 200px;
  }
}
@media only screen and (min-width: 981px) {
  .banner .et_pb_column_4_4 p, .careers .et_pb_column_4_4 p, .careers .et_pb_column_4_4 h3, .careers .et_pb_column_4_4 h1 {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  .et_pb_gutters3 .et_pb_column_2_5, .et_pb_gutters3.et_pb_row .et_pb_column_2_5 {
    width: 38.7%;
  }
  .et_pb_gutters3 .et_pb_column, .et_pb_gutters3.et_pb_row .et_pb_column {
    margin-right: 5.5%;
  }
  .et_pb_row .et_pb_column:last-child, .et_pb_row .et_pb_column.et-last-child, .et_pb_row_inner .et_pb_column:last-child, .et_pb_row_inner .et_pb_column.et-last-child {
    margin-right: 0 !important;
  }
  .et_pb_gutters3 .et_pb_column_3_5, .et_pb_gutters3.et_pb_row .et_pb_column_3_5 {
    width: 55.8%;
  }
  .products-2-col {
    max-width: 630px !important;
    margin: 0 auto;
  }
  .products-2-col .et_pb_module {
    max-width: 285px;
    margin-left: auto;
    margin-right: auto;
  }
  .max700 .et_pb_text_inner {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  .et_pb_column_4_4 {
    max-width: 800px;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100%;
  }
  .et-fb-skeleton .et_pb_column_4_4, .full-width .et_pb_column_4_4 {
    max-width: 100%;
  }
  .et_pb_row .et_pb_column.et_pb_column_4_4:last-child, .et_pb_row .et_pb_column.et_pb_column_4_4.et-last-child, .et_pb_row_inner .et_pb_column.et_pb_column_4_4:last-child, .et_pb_row_inner .et_pb_column.et_pb_column_4_4.et-last-child {
    margin-right: auto !important;
    float: none;
    margin-left: auto !important;
  }
}
@media only screen and (max-width: 1024px) {
  h1 {
    font-size: 40px !important;
  }
}
@media only screen and (max-width: 980px) {
  .blockUnder980 {
    display: block;
  }
  .hideUnder980 {
    display: none;
  }
  .surviving.et_pb_section {
    height: auto;
    display: block;
    background-position: 50%;
  }
  .surviving .et_pb_column:first-child {
    margin-bottom: 30px;
  }
  .surviving .et_pb_video {
    max-width: 480px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .testimonial_rotator_wrap {
    width: 96%;
  }
  .testimonial_rotator_wrap.with-prevnext {
    padding: 10px 35px;
  }
  .testimonials .et_pb_row {
    width: 94%;
  }
  h1.entry-title {
    font-size: 42px;
  }
  .et_right_sidebar #sidebar {
    text-align: center;
  }
  .et_pb_row.et_pb_row_fullwidth, .et_pb_specialty_fullwidth > .et_pb_row {
    width: 100% !important;
    max-width: 100% !important;
  }
  .et_pb_gutters3 .et_pb_column_2_5, .et_pb_gutters3.et_pb_row .et_pb_column_2_5 {
    width: 36.7%;
    margin-right: 5.5%;
  }
  .et_pb_gutters3 .et_pb_column_3_5, .et_pb_gutters3.et_pb_row .et_pb_column_3_5 {
    width: 57.8%;
  }
  .banners .et_pb_column_3_5 .et_pb_text_inner {
    padding: 0 30px;
  }
  .et_pb_column {
    margin-bottom: 0;
  }
  .banner.services ul li {
    font-size: 16px;
  }
  .banner .et_pb_column_4_4 h1 {
    margin-bottom: 20px;
  }
  .banner .et_pb_row {
    width: 90%;
  }
  .whitebutton {
    margin-top: 10px;
  }
  p {
    line-height: 1.2em;
  }
  .testimonials .et_pb_text_inner:before {
    left: 0;
  }
  .testimonials .et_pb_text_inner:after {
    right: 0;
  }
  .inside-banner .et_pb_slide {
    height: 250px;
  }
  .quote .et_pb_row {
    width: 96%;
  }
  .et_pb_column .et_pb_blog_grid .column.size-1of2, .et_pb_column .et_pb_widget {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .experts .et_pb_column, .experts .et_pb_column:last-child {
    margin-bottom: 50px !important;
  }
  .experts.et_pb_row {
    padding-top: 0;
  }
  .et_pb_gutters2.et_pb_row_4col .et_pb_column_1_4 {
    margin-bottom: 30px;
  }
  .video p {
    margin-top: 0;
    margin-bottom: 30px;
  }
  .callout .et_pb_column_1_4 {
    margin: 1.3% !important;
  }
  .home .et_pb_slides .et_pb_slider_container_inner {
    vertical-align: bottom;
  }
  .et_fixed_nav #main-header, .et_fixed_nav #top-header, .et_non_fixed_nav.et_transparent_nav #main-header, .et_non_fixed_nav.et_transparent_nav #top-header {
    position: fixed;
  }
  .dash .et_pb_column_1_2 .et_pb_module.et_pb_video {
    margin-bottom: 30px;
  }
  .testimonials, .testimonials .et_pb_column_4_4, .quote, .quote .et_pb_column_4_4 {
    height: 400px;
  }
  .storyteller.et_pb_section {
    padding-bottom: 25px;
    padding-top: 0;
  }
  .book-interviews.et_pb_section {
    padding-top: 0;
    padding-bottom: 25px;
  }
  .book-interviews .et_pb_column_1_3 {
    width: 31%;
    margin-left: 1%;
    margin-right: 1%;
  }
  .book-interviews .et_pb_video_box {
    height: 200px;
  }
  /* end of max width 980 */
}
@media only screen and (min-width: 601px) {
  .showUnder600 {
    display: none !important;
  }
  .do-it p span {
    display: block;
  }
  .do-it p br {
    display: none;
  }
}
@media only screen and (max-width: 600px) {
  .et_pb_gutters3 .fullwidth .et_pb_column_4_4 .et_pb_grid_item {
    width: 48%;
    margin-right: 1% !important;
    margin-left: 1% !important;
    margin-bottom: 2% !important;
  }
  .gallery.et_pb_row {
    width: 94%;
    margin-left: 3%;
    margin-right: 3%;
  }
  .et_pb_slider .et_pb_container {
    width: 100%;
  }
  .book-interviews .et_pb_row {
    width: 86% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .book-interviews .et_pb_column {
    margin-bottom: 50px;
  }
  .book-interviews .et_pb_video {
    margin-bottom: 10px !important;
  }
  .book-interviews p {
    padding-bottom: 10px;
  }
  .storyteller.et_pb_section, .storyteller .et_pb_row {
    padding-bottom: 0;
  }
  #mc_embed_signup input {
    width: 90%;
  }
  .callout .et_pb_column {
    width: 100% !important;
  }
  .hideUnder600 {
    display: none !important;
  }
  .blockUnder600,
  .showUnder600 {
    display: block !important;
  }
  .topbutton {
    display: none;
    top: 65px;
    text-align: center;
    position: absolute;
    right: 20px;
  }
  .topbutton a {
    padding: 1px 10px;
    font-size: 12px;
  }
  .et_pb_gutters3 .et_pb_column_2_5, .et_pb_gutters3.et_pb_row .et_pb_column_2_5 {
    width: 100%;
    margin-right: 0;
  }
  .banner .et_pb_column_2_5, .banner .et_pb_column_3_5, .banner .et_pb_column_4_4, .banner, .banner .et_pb_column_2_5, .banner .et_pb_column_3_5, .banner .et_pb_column_4_4 {
    height: auto;
  }
  .banner .et_pb_column_2_5 .et_pb_text_inner {
    padding: 30px;
  }
  .banner .et_pb_column_4_4 {
    padding: 30px 0;
  }
  .top.banner .et_pb_column_2_5 {
    height: 100%;
    margin-right: 0;
    width: 50% !important;
  }
  .top.banner .et_pb_column_2_5 .et_pb_text_inner {
    width: 100%;
    padding: 15px 10px;
  }
  .banner.services .et_pb_column_2_5 {
    height: 100px;
  }
  .banner.services .et_pb_column_3_5 {
    height: auto;
  }
  .banner.services ul {
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
  }
  .banner.services .et_pb_column_2_5 .et_pb_text_inner {
    text-align: center;
  }
  .banner.services .et_pb_column_3_5 .et_pb_text_inner {
    width: 90%;
    margin: 30px auto;
    display: block;
  }
  h1, .banner h1, .testimonials h1, .inner-title h1, .dash h2, .surviving h2 {
    font-size: 30px !important;
  }
  .top.banner h1 {
    font-size: 24px !important;
  }
  .banner .et_pb_column_2_5 p {
    font-size: 16px;
  }
  .banner .et_pb_column_2_5 hr {
    margin-bottom: 20px;
  }
  .wpcf7 input, .wpcf7 select, .wpcf7 textarea {
    width: 100%;
  }
  .wpcf7 textarea {
    height: 100px;
  }
  .testimonial_rotator_quote {
    font-size: 16px;
    line-height: 20px;
  }
  .testimonials .et_pb_text_inner:after, .testimonials .et_pb_text_inner:before {
    opacity: 0.3;
  }
  .testimonial_rotator_wrap {
    width: 98%;
  }
  .testimonials h1 {
    padding-bottom: 0;
  }
  .testimonials .et_pb_row {
    padding: 0;
  }
  .testimonials {
    padding: 30px 0 !important;
  }
  .et_pb_section_1 {
    padding-top: 0;
  }
  .agregate.et_pb_section {
    padding-bottom: 0;
  }
  .banner.services ul {
    padding-left: 0;
  }
  .banner.services ul.left, .banner.services ul.right {
    min-width: 0;
    float: none;
  }
  .inside-banner .et_pb_slide {
    height: 200px;
  }
  .page-id-13 .inside-banner .et_pb_slide,
  .page-id-10 .inside-banner .et_pb_slide {
    background-position: 70% 50%;
  }
  .page-id-11 .inside-banner .et_pb_slide {
    background-position: 35% 50%;
  }
  .page-id-91 .inside-banner .et_pb_slide {
    background-position: 80% 50%;
  }
  #page-container {
    padding-top: 90px !important;
  }
  .banner h2 {
    font-size: 30px !important;
  }
  .et_pb_slide_description, .et_pb_slider_fullwidth_off .et_pb_slide_description {
    padding-left: 0;
  }
  body #page-container .et_pb_fullwidth_slider_0.et_pb_slider .et_pb_more_button.et_pb_button {
    font-size: 18px !important;
  }
  .callout .et_pb_column_1_4 {
    margin: 1.5% 0 !important;
  }
  .testimonials.et_pb_section {
    height: auto;
    padding: 30px 0 !important;
  }
  .dash.et_pb_section {
    padding: 15px 0;
  }
  h3 {
    font-size: 18px !important;
  }
  .testimonial_rotator_next, .testimonial_rotator_prev {
    width: 18px;
    height: 30px;
    background-size: cover;
  }
  .testimonial_rotator_wrap.with-prevnext {
    padding: 10px 30px;
  }
  .cycletwo-pager {
    margin-top: 10px;
  }
  .experience h1 {
    width: 255px;
    margin-left: auto;
    margin-right: auto;
  }
  .experience .blue-link {
    font-size: 18px;
  }
  .experience .et_pb_fullwidth_header {
    padding: 30px 0 50px;
  }
  .experience .et_pb_fullwidth_header .et_pb_fullwidth_header_container {
    width: 100%;
  }
  .quote, .quote .et_pb_column_4_4 {
    height: 300px;
  }
  .quote h2 {
    font-size: 30px !important;
    line-height: 36px;
  }
  .contact-info a, .contact-info {
    line-height: 26px;
    font-size: 20px;
  }
  .home .et_pb_slider .et_pb_container {
    width: 100%;
  }
  ul.circles li span {
    margin: 0 auto;
  }
  ul.circles li {
    margin: 0 10px 10px;
  }
  .custom-button .green-link {
    font-size: 25px;
  }
  .horizontal-menu {
    display: none;
  }
  .contact-form h1 strong {
    display: inline-block;
  }
  .callout .et_pb_column_1_4 .et_pb_text {
    height: 135px;
    width: 135px;
  }
  .callout .et_pb_column_1_4 {
    width: 50% !important;
  }
  .callout h3 {
    font-size: 26px !important;
  }
  .how-we-do-it .et_pb_column_1_4.et_pb_column {
    padding-bottom: 15px;
    margin-right: 2% !important;
    margin-left: 2% !important;
    width: 46% !important;
  }
  .quote h2, .quote p {
    font-size: 16px !important;
    line-height: 22px !important;
  }
  .quote, .quote .et_pb_column_4_4 {
    height: 225px;
  }
  .experts.et_pb_section .et_pb_row {
    width: 100%;
  }
  .experts .et_pb_image {
    margin-bottom: 0;
  }
  .experts.et_pb_section .et_pb_row img {
    max-width: 200px;
  }
  .page-id-21 .green-link {
    font-size: 14px;
  }
  .page-id-14 .green-link {
    font-size: 16px;
  }
  .quote.tools h2 {
    font-size: 26px !important;
  }
  .experts .social-media-icons li {
    margin-bottom: 3px;
  }
  .will-deliver ol li {
    font-size: 16px;
    line-height: 1.3em;
  }
  .page-id-1781 h2 {
    font-size: 24px !important;
  }
  .bar1, .bar2, .bar3 {
    width: 35px;
  }
  .parentmenu:after {
    line-height: 26px;
    font-size: 25px;
    width: 25px;
    text-align: center;
    top: 0;
  }
  .book-interviews .et_pb_row:first-child {
    padding-bottom: 0;
  }
  .experts.et_pb_section {
    padding-top: 0;
  }
  .contact-page-info, .contact-page-info a {
    font-size: 20px;
  }
  .pagination {
    margin-bottom: 50px;
  }
  .testimonial-page h1 {
    padding-bottom: 0 !important;
  }
}
.boutique h2 {
  text-align: center;
  color: #97bf0d;
  font-weight: bold;
}

.boutique .et_pb_column_4_4 {
  max-width: 100%;
}

.boutique .et_pb_text hr {
  border: 0;
  border-top: 2px solid #06357a;
  padding-bottom: 30px;
  width: 300px;
}

.boutique .et_pb_text:first-child hr {
  border: 0;
  padding: 0;
}

.boutique-wrapper {
  display: flex;
  margin-top: 10px;
  margin-bottom: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.boutique-item {
  max-width: 14%;
  display: flex;
  flex-direction: column;
  align-items: center;
  vertical-align: top;
  margin: 0 2% 4%;
}

.boutique-image {
  margin-bottom: 5px;
}

.boutique-image img {
  max-height: 150px;
  width: auto;
}

.boutique-content {
  text-align: center;
  font-size: 18px;
  margin-bottom: auto;
}

.boutique-button {
  background-color: #97bf0d;
  border: 0;
  padding: 10px;
  color: #06357a !important;
  width: 150px;
  margin-top: 10px;
  font-weight: bold;
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
}

.inpage-menu {
  max-width: 875px;
  margin-left: auto;
  text-align: center;
  margin-right: auto;
}

.inpage-menu a {
  letter-spacing: 1px;
  margin: 0 5px;
}

.inpage-menu a:hover {
  color: #06357a;
}

.sticky.inpage-menu {
  position: fixed;
  width: 100%;
  max-width: 100%;
  background: #FFF;
  z-index: 999999;
  padding: 35px 0 15px;
  border-bottom: 1px solid #F6F6F6;
}

.inpage-menu .et_pb_text_inner {
  max-width: 875px;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 980px) {
  .boutique-item {
    max-width: 20%;
  }
}
@media only screen and (max-width: 600px) {
  .boutique-item {
    max-width: 45%;
    margin: 0 2% 30px;
  }
  .boutique-button {
    font-size: 14px;
    width: 130px;
  }
  .boutique-content {
    font-size: 16px;
  }
}
/*# sourceMappingURL=main.min.css.map */
