html {
  box-sizing: border-box;
}

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

/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

html, body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Poppins', sans-serif;
}

body.home {
  background: url("../img/body-background.svg");
  background-size: .55%;
  background-color: #F2F2F2;
}

h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
}

p, a {
  font-weight: 300;
  margin: 0;
  line-height: 1.3em;
}

a {
  color: #381460;
  font-weight: 400;
  text-decoration: none;
}

a:hover {
  color: #cad420;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.container {
  max-width: 74em;
  margin-left: auto;
  margin-right: auto;
}

.container::after {
  clear: both;
  content: "";
  display: table;
}

.headline {
  font-family: 'Fahkwang', sans-serif;
  font-size: 2.5em;
  line-height: 1.1em;
  -font-style: italic;
  color: #fff;
  margin: 0;
}

.btn-alt {
  display: inline-block;
  width: 100%;
  max-width: 200px;
  border: 1px solid #fff;
  border-radius: 40px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: .7em;
  font-weight: 400;
  letter-spacing: .15em;
  color: #fff;
  -webkit-transition: all 2000ms ease-in-out;
  -moz-transition: all 2000ms ease-in-out;
  transition: all 2000ms ease-in-out;
}

.btn-alt:hover {
  background: #fff;
  color: #b2b3b2;
}

.btn {
  display: inline-block;
  width: 100%;
  max-width: 200px;
  padding: 10px 5px;
  border: 1px solid #fff;
  border-radius: 40px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: .7em;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #fff;
  -webkit-transition: all 600ms ease-in-out;
  -moz-transition: all 600ms ease-in-out;
  transition: all 600ms ease-in-out;
}

.btn:hover {
  border-color: #803bff;
  background: #803bff;
  color: #fff;
}

@media screen and (max-width: 900px) {
  .btn {
    display: block;
    margin: 0 auto 25px auto;
  }
}

#ad {
  position: relative;
  padding: 0 50px;
  background: url("../img/FordAd-image.jpg");
  background-size: cover;
  text-align: right;
  height: 100px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}

#ad:before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: .5;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#ad img {
  position: relative;
  width: 125px;
  margin-right: 50px;
  z-index: 1;
  opacity: 0.5;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#ad .btn {
  position: relative;
  text-align: center;
  max-width: 125px;
  border-color: #fff;
  color: #fff;
  z-index: 1;
}

#ad .btn:hover {
  border: none;
  background: #808080;
}

#ad:hover:before {
  background: #000;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#ad:hover img {
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

nav {
  position: absolute;
  width: 100%;
  background: #fff;
  z-index: 500;
  border-bottom: 1px solid #E2E2E2;
}

@media screen and (max-width: 1200px) {
  nav .nav-items {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 82.94039%;
    margin-left: 8.5298%;
  }
  nav .nav-items:last-child {
    margin-right: 0;
  }
}

nav #logo {
  display: inline-block;
  padding: 20px 0 16px 0;
}

nav #logo img {
  opacity: 0.7;
}

nav #logo:hover img {
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

nav .fa-bars {
  position: absolute;
  top: 0;
  right: 0;
  padding: 25px;
  color: #b2b3b2;
  cursor: pointer;
  display: none;
}

@media screen and (max-width: 1200px) {
  nav .fa-bars {
    display: block;
  }
}

nav ul {
  display: inline-block;
  float: right;
  margin: 0;
  padding: 0;
  z-index: 1;
  -webkit-transition: 300ms all ease-in-out;
  -moz-transition: 300ms all ease-in-out;
  transition: 300ms all ease-in-out;
}

nav ul.reveal {
  right: 0;
}

@media screen and (max-width: 1200px) {
  nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    width: 320px;
    padding: 0;
    background: #fff;
    overflow: scroll;
  }
}

nav ul span {
  color: #b2b3b2;
  padding: 0 30px;
}

@media screen and (max-width: 1200px) {
  nav ul span {
    display: none;
  }
}

nav ul li {
  display: inline-block;
  margin-bottom: -2px;
  border-bottom: 2px solid transparent;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

nav ul li:nth-of-type(8) a {
  color: #803bff;
  border-left: 1px solid #381460;
}

nav ul li:nth-of-type(8) a:hover {
  color: #cad420;
}

nav ul li:nth-of-type(9) a {
  color: #803bff;
}

nav ul li:nth-of-type(9) a:hover {
  color: #cad420;
}

@media screen and (max-width: 1200px) {
  nav ul li {
    display: block;
  }
}

nav ul li a {
  text-decoration: none;
  text-transform: uppercase;
  margin: 0px;
  padding: 0 10px;
  color: #381460;
  line-height: 68px;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.03em;
  -font-style: italic;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

@media screen and (max-width: 1200px) {
  nav ul li a {
    display: block;
    width: 100%;
    padding: 10px 0;
    margin: 0;
    text-align: center;
  }
}

nav ul li a:hover {
  color: #cad420;
  cursor: pointer;
}

nav ul li.current_page_item {
  border-bottom: 1px solid #381460;
}

nav ul li.current_page_item a {
  color: #cad420;
}

nav ul li.current-page-ancestor {
  border-bottom: 1px solid #381460 !important;
}

nav ul li.current-page-ancestor a {
  color: #cad420;
}

nav ul li:hover {
  border-bottom: 1px solid #381460;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.hero {
  position: relative;
  background-size: cover;
  overflow: hidden;
}

.hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: radial-gradient(circle, rgba(145, 94, 116, 0.5), #b1bef4);
}

.hero video {
  position: absolute;
  top: -100px;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: 1;
}

@media screen and (max-width: 1024px) {
  .hero video {
    top: 0;
  }
}

@media screen and (max-width: 680px) {
  .hero video {
    display: none;
  }
}

.hero .container {
  position: relative;
  padding: 25px 0 41px 0;
  text-align: center;
  z-index: 1;
}

@media screen and (max-width: 1200px) {
  .hero .content {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 82.94039%;
    margin-left: 8.5298%;
  }
  .hero .content:last-child {
    margin-right: 0;
  }
}

.hero .headline {
  position: relative;
  z-index: 499;
}

@media screen and (max-width: 900px) {
  .hero .headline {
    font-size: 2em;
  }
}

.hero .headline-btn {
  display: inline-block;
  margin-top: 43px;
  padding: 10px 5px;
  width: 100%;
  max-width: 200px;
  border: 1px solid #fff;
  border-radius: 40px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: .7em;
  font-weight: 400;
  letter-spacing: .15em;
  color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.hero .headline-btn:hover {
  background: #fff;
  color: #803bff;
}

.hero img {
  display: block;
  width: 400px;
  margin: auto;
}

.hero .social {
  position: absolute;
  top: 50%;
  margin-top: -80px;
  right: 10px;
  float: right;
  z-index: 499;
}

@media screen and (max-width: 900px) {
  .hero .social {
    position: relative;
    width: 100%;
    top: auto;
    right: auto;
    margin-top: 25px;
  }
}

.hero .social a {
  display: block;
  font-size: 1em;
  padding: 10px;
  color: #fff;
  opacity: .25;
  -webkit-transition: 600ms all ease-in-out;
  -moz-transition: 600ms all ease-in-out;
  transition: 600ms all ease-in-out;
}

@media screen and (max-width: 900px) {
  .hero .social a {
    display: inline-block;
  }
}

@media screen and (max-width: 680px) {
  .hero .social a {
    font-size: 2em;
    opacity: 0.75;
  }
}

.hero .social a:hover {
  opacity: 1;
}

#hero-main .content {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 85px;
  padding: 125px 0;
}

#hero-main #mobile-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 140%;
  z-index: -1;
  background: url("../img/15-AWM-mobile-hero.jpg") no-repeat center center;
  background-size: cover;
  display: none;
}

@media screen and (max-width: 680px) {
  #hero-main #mobile-bg {
    display: block;
  }
}

#support #support-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 140%;
  z-index: -1;
  background: url("../img/hero-2.jpg") no-repeat center center;
  background-size: cover;
}

#support.footer-hero:before {
  -background-image: -webkit-radial-gradient(circle, rgba(145, 94, 116, 0.2), #b1bef4);
  -background-image: radial-gradient(circle, rgba(145, 94, 116, 0.2), #b1bef4);
}

#benefits #benefits-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 140%;
  z-index: -1;
  background: url("../img/hero-3.jpg") no-repeat center center;
  background-size: cover;
}

#benefits.footer-hero:before {
  background-image: -webkit-radial-gradient(circle, rgba(145, 94, 116, 0.2), #803bff);
  background-image: radial-gradient(circle, rgba(145, 94, 116, 0.2), #803bff);
}

#events #events-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 140%;
  z-index: -1;
  background: url("../img/hero-4.jpg") no-repeat center center;
  background-size: cover;
}

#events.footer-hero:before {
  -background-image: -webkit-radial-gradient(circle, rgba(145, 94, 116, 0.2), #b1bef4);
  -background-image: radial-gradient(circle, rgba(145, 94, 116, 0.2), #b1bef4);
}

#gracies #gracies-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 140%;
  z-index: -1;
  background: url("../img/gracies-footer.jpg") no-repeat center center;
  background-size: cover;
}

#gracies.footer-hero:before {
  -background-image: -webkit-radial-gradient(circle, rgba(145, 94, 116, 0.2), #b1bef4);
  -background-image: radial-gradient(circle, rgba(145, 94, 116, 0.2), #b1bef4);
}

#footer-contact #footer-contact-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 140%;
  z-index: -1;
  background: url("../img/contact-footer-bg.jpg") no-repeat center center;
  background-size: cover;
}

#footer-contact.footer-hero:before {
  -background-image: -webkit-radial-gradient(circle, rgba(145, 94, 116, 0.2), #b1bef4);
  -background-image: radial-gradient(circle, rgba(145, 94, 116, 0.2), #b1bef4);
}

.hero-sub::nth-child(1) {
  background: url("../img/hero-2.jpg") no-repeat center center fixed;
}

.hero-sub .container {
  padding: 45px 0;
}

.hero-sub .container .content {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 75px 0;
}

.hero-sub .headline {
  margin-bottom: 10px;
}

.hero-sub .headline:before {
  display: none;
}

.hero-sub p:nth-child(2) {
  font-size: 1em;
  font-style: italic;
  margin-top: 25px;
  margin-bottom: 50px;
  color: #fff;
}

.hero-sub .btn {
  color: #fff;
  border-color: #fff;
}

.hero-sub .btn:nth-of-type(1) {
  margin-right: 20px;
}

@media screen and (max-width: 900px) {
  .hero-sub .btn:nth-of-type(1) {
    margin-right: auto;
  }
}

.hero-sub .btn:hover {
  background: #fff;
  color: #803bff;
}

.cta {
  position: relative;
  height: 345px;
  padding: 50px;
  -webkit-transition: 2000ms all ease-in-out;
  -moz-transition: 2000ms all ease-in-out;
  transition: 2000ms all ease-in-out;
}

@media screen and (max-width: 1200px) {
  .cta {
    height: 280px;
  }
}

.cta:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0099c9;
  z-index: 1;
  -webkit-transition: 1000ms all ease-in-out;
  -moz-transition: 1000ms all ease-in-out;
  transition: 1000ms all ease-in-out;
}

.cta:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -background: #000;
  opacity: .3;
}

.cta:hover:before {
  opacity: 0;
}

.cta:hover .body {
  opacity: 1;
}

.cta:hover .btn {
  -color: #808080;
  color: #381460;  
  background: #fff;
}

.cta .title {
  position: absolute;
  top: 28%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  font-family: 'Fahkwang', sans-serif;
  font-size: 1.5em;
  -font-style: italic;
  text-align: center;
  color: #fff;
  margin-top: 40px;
  z-index: 1;
  opacity: 1;
  -webkit-transition: 600ms all ease-in-out;
  -moz-transition: 600ms all ease-in-out;
  transition: 600ms all ease-in-out;
}

@media screen and (max-width: 1200px) {
  .cta .title {
    font-size: 1.2em;
  }
}

.cta .title span {
  color: #803bff;
}

.cta .body {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  font-family: 'Poppins',serif;
  font-size: 1.2em;
  line-height: 1.5em;
  text-align: center;
  padding: 30px;
  margin: auto;
  color: #fff;
  z-index: 1;
  opacity: 0;
  text-transform: uppercase;
  font-family: 'Poppins';
  font-weight: 400;
  letter-spacing: .04em;
  -webkit-transition: 1500ms all ease-in-out;
  -moz-transition: 1500ms all ease-in-out;
  transition: 1500ms all ease-in-out;
}

.cta a {
  position: absolute;
  right: 0;
  bottom: 60px;
  left: 0;
  max-width: 200px;
  margin: auto;
  text-align: center;
  z-index: 1;
}

.cta a:hover {
  color: #b2b3b2;
  border-color: #fff;
}

.cta:nth-of-type(1) .title {
  color: #fff;
}

.cta:nth-of-type(3) .title {
  color: #fff;
}

.cta:nth-of-type(1):before {
  background: #b1bef4;
}

.cta:nth-of-type(3) span {
  color: #dedfde;
}

.cta:nth-of-type(1) a {
  color: #fff;
  border-color: #fff;
}

.cta:nth-of-type(3) a {
  color: #fff;
  border-color: #fff;
}

.cta:nth-of-type(3):before {
  background: #cad420;
}

.decide {
  padding: 25px 0;
}

@media screen and (max-width: 1200px) {
  .decide .content {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 82.94039%;
    margin-left: 8.5298%;
  }
  .decide .content:last-child {
    margin-right: 0;
  }
}

@media screen and (max-width: 900px) {
  .decide .cta:nth-of-type(1) {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 100%;
    margin-bottom: 25px;
  }
  .decide .cta:nth-of-type(1):last-child {
    margin-right: 0;
  }
  .decide .cta:nth-of-type(2) {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 100%;
    margin-bottom: 25px;
    margin-right: 0;
  }
  .decide .cta:nth-of-type(2):last-child {
    margin-right: 0;
  }
  .decide .cta:last-of-type {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 100%;
  }
  .decide .cta:last-of-type:last-child {
    margin-right: 0;
  }
}

.decide .cta {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 31.76157%;
  position: relative;
  padding: 50px;
  background: #0099c9;
}

.decide .cta:last-child {
  margin-right: 0;
}

.decide .cta:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 1;
}

.decide .cta:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: .5;
}

.decide .cta:hover:before {
  opacity: 0;
}

.decide .cta:hover .body {
  opacity: 1;
}

.decide .cta:hover .btn {
  color: #fff !important;
  background: #381460;
}

.decide .cta .title {
  -webkit-transition: 300ms all ease-in-out;
  -moz-transition: 300ms all ease-in-out;
  transition: 300ms all ease-in-out;
}

.decide .cta a {
  position: absolute;
  right: 0;
  bottom: 60px;
  left: 0;
  margin: auto;
  text-align: center;
  z-index: 1;
}

.decide .cta a:hover {
  color: #b2b3b2;
}

.decide .cta .btn {
  -webkit-transition: 1000ms all ease-in-out;
  -moz-transition: 1000ms all ease-in-out;
  transition: 1000ms all ease-in-out;
}

.decide .cta:nth-of-type(1):after {
  background: #4b17ff !important;
  opacity: 1;
}

.decide .cta:nth-of-type(2):after {
  background: #b1bef4 !important;
  opacity: 1;
}

.decide .cta:nth-of-type(3):after {
  background: #cad420 !important;
  opacity: 1;
}

.decide .cta:nth-of-type(3) .title {
  color: #fff;
}

.decide .cta:nth-of-type(3) span {
  color: #fff;
}

.decide .cta:nth-of-type(3) a {
  color: #fff;
  border-color: #fff;
}

.decide .cta:nth-of-type(1):before {
  background: #4b17ff;
}

.decide .cta:nth-of-type(2):before {
  background: #b1bef4;
}

.decide .cta:nth-of-type(3):before {
  background: #cad420;
}

@media screen and (max-width: 1200px) {
  #decide-1 .content {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 82.94039%;
    margin-left: 8.5298%;
  }
  #decide-1 .content:last-child {
    margin-right: 0;
  }
}

@media screen and (max-width: 900px) {
  #decide-1 .cta:nth-of-type(1) {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 100%;
    margin-bottom: 25px;
  }
  #decide-1 .cta:nth-of-type(1):last-child {
    margin-right: 0;
  }
  #decide-1 .cta:nth-of-type(2) {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 100%;
    margin-bottom: 25px;
    margin-right: 0;
  }
  #decide-1 .cta:nth-of-type(2):last-child {
    margin-right: 0;
  }
  #decide-1 .cta:last-of-type {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 100%;
  }
  #decide-1 .cta:last-of-type:last-child {
    margin-right: 0;
  }
}

#decide-1 .cta:nth-of-type(1):hover {
  -webkit-transition: 600ms all ease-in-out;
  -moz-transition: 600ms all ease-in-out;
  transition: 600ms all ease-in-out;
  background: #cad420;
}

#decide-1 .cta:nth-of-type(3) {
  background: url("../img/Gracies_coverage_photo.jpg") center center no-repeat;
  background-size: cover;
}

@media screen and (max-width: 900px) {
  #decide-2 .cta:nth-of-type(1) {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 82.94039%;
    margin-left: 8.5298%;
    margin-bottom: 25px;
  }
  #decide-2 .cta:nth-of-type(1):last-child {
    margin-right: 0;
  }
  #decide-2 .cta:nth-of-type(2) {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 82.94039%;
    margin-left: 8.5298%;
    margin-bottom: 25px;
    margin-right: 0;
  }
  #decide-2 .cta:nth-of-type(2):last-child {
    margin-right: 0;
  }
  #decide-2 .cta:last-of-type {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 82.94039%;
    margin-left: 8.5298%;
  }
  #decide-2 .cta:last-of-type:last-child {
    margin-right: 0;
  }
}

#decide-2 .cta:nth-of-type(3):after {
  -background: #fff !important;
  -opacity: .4;
}

#decide-2 .cta:nth-of-type(3):before {
  -background: #fff;
}

#decide-2 .cta:nth-of-type(3) .title {
  color: #fff;
}

#decide-2 .cta:nth-of-type(3) span {
  color: #fff;
}

#decide-2 .cta:nth-of-type(3) .btn {
  color: #fff;
  border-color: #fff;
}

.sponsers .ad-link {
  display: block;
  position: relative !important;
  top: 50%;
  bottom: 0 !important;
}

.sponsers .ad-link img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 499;
  width: 100%;
  opacity: .5;
  -webkit-transition: 600ms all ease-in-out;
  -moz-transition: 600ms all ease-in-out;
  transition: 600ms all ease-in-out;
}

.sponsers .cta:nth-of-type(1):hover img,
.sponsers .cta:nth-of-type(2):hover img {
  opacity: 1;
}

.sponsers .cta:nth-of-type(1):hover:before,
.sponsers .cta:nth-of-type(2):hover:before {
  opacity: 1;
}

.sponsers .cta:nth-of-type(3) {
  background: url("../img/cta_7.jpg") center center no-repeat;
  background-size: cover;
}

.sponsers .cta:nth-of-type(3):after {
  background: #000 !important;
  opacity: .3;
}

@media screen and (max-width: 1200px) {
  #social-blog .content:first-of-type {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 82.94039%;
    margin-left: 8.5298%;
  }
  #social-blog .content:first-of-type:last-child {
    margin-right: 0;
  }
}

#social-blog .social {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 31.76157%;
}

#social-blog .social:last-child {
  margin-right: 0;
}

@media screen and (max-width: 1200px) {
  #social-blog .social {
    float: left;
    display: block;
    margin-right: 2.84259%;
    width: 38.29445%;
  }
  #social-blog .social:last-child {
    margin-right: 0;
  }
}

@media screen and (max-width: 1200px) and (max-width: 680px) {
  #social-blog .social {
    float: left;
    display: block;
    margin-right: 7.42297%;
    width: 100%;
  }
  #social-blog .social:last-child {
    margin-right: 0;
  }
}

#social-blog .social .social-item {
  float: left;
  display: block;
  margin-right: 7.42297%;
  width: 100%;
  position: relative;
  height: 345.562px;
  margin-bottom: 25px;
  background: #b1bef4;
  text-align: center;
  -color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

#social-blog .social .social-item:last-child {
  margin-right: 0;
}

#social-blog .social .social-item:hover:after {
  opacity: .8;
}

#social-blog .social .social-item:hover .twitter-link {
  opacity: 1;
}

#social-blog .social .social-item:hover p {
  color: #fff;
}

#social-blog .social .social-item .twitter-link {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0;
  font-size: 2em;
  color: #b2b3b2;
  -webkit-transition: 600ms all ease-in-out;
  -moz-transition: 600ms all ease-in-out;
  transition: 600ms all ease-in-out;
}

#social-blog .social .social-item > div {
  display: block;
}

#social-blog .social .social-item > div p {
  line-height: 1.5em;
  padding: 0 30px;
  -webkit-transition: 600ms all ease-in-out;
  -moz-transition: 600ms all ease-in-out;
  transition: 600ms all ease-in-out;
}

#social-blog .social .social-item > div p:nth-of-type(1) {
  margin: 20px 0;
}

#social-blog .social .social-item > div > a {
  display: block;
}

#social-blog .social .social-item > div a {
  margin-left: 5px;
  text-decoration: none;
  color: #fff;
  -webkit-transition: 100ms all ease-in-out;
  -moz-transition: 100ms all ease-in-out;
  transition: 100ms all ease-in-out;
}

#social-blog .social .social-item > div a:hover {
  -color: #72495B;
  color: #fff;
}

#social-blog .social .social-item > div .fa {
  margin-top: 20px;
  font-size: 20px;
}

#social-blog .social .social-item > div > div > div {
  width: 200px;
  height: 64px;
  -border-radius: 50%;
  margin: auto;
  text-align: center;
  overflow: hidden;
  margin-bottom: 10px;
}

#social-blog .social .social-item > div > div > div img {
  width: 200px;
}

@media screen and (max-width: 680px) {
  #social-blog .social .social-item > div > div > div img {
    width: 25px;
  }
}

@media screen and (max-width: 680px) {
  #social-blog .social .social-item > div > div > div {
    width: 25px;
    height: 25px;
  }
}

@media screen and (max-width: 680px) {
  #social-blog .social .social-item {
    height: auto;
  }
}

#social-blog .social .instagram {
  float: left;
  display: block;
  margin-right: 7.42297%;
  width: 100%;
  width: 100%;
  height: 346px;
  position: relative;
  margin-bottom: 25px;
}

#social-blog .social .instagram:last-child {
  margin-right: 0;
}

#social-blog .social .instagram:after {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  -webkit-transition: 600ms all ease-in-out;
  -moz-transition: 600ms all ease-in-out;
  transition: 600ms all ease-in-out;
  -z-index: 3;
}

#social-blog .social .instagram:hover:after {
  opacity: .3;
}

#social-blog .social .instagram:hover > div .fa-instagram {
  opacity: 1;
}

#social-blog .social .instagram:hover div img {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform: scale(1.02);
  -moz-transform: scale(1.02);
  -ms-transform: scale(1.02);
  -o-transform: scale(1.02);
  transform: scale(1.02);
  -webkit-transition: 600ms all ease-in-out;
  -moz-transition: 600ms all ease-in-out;
  transition: 600ms all ease-in-out;
}

#social-blog .social .instagram > div {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

#social-blog .social .instagram > div img {
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 600ms all ease-in-out;
  -moz-transition: 600ms all ease-in-out;
  transition: 600ms all ease-in-out;
}

#social-blog .social .instagram > .fa-instagram {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2em;
  color: #fff;
  opacity: 0;
  -webkit-transition: 600ms all ease-in-out;
  -moz-transition: 600ms all ease-in-out;
  transition: 600ms all ease-in-out;
}

#social-blog .social .instagram > div {
  position: relative;
}

#social-blog .social .instagram > div .fa-facebook {
  position: absolute;
  bottom: 27px;
  right: 27px;
  font-size: 2.25em;
  color: #fff;
  opacity: 1;
  -webkit-transition: 600ms all ease-in-out;
  -moz-transition: 600ms all ease-in-out;
  transition: 600ms all ease-in-out;
  z-index: 5;
}

@media screen and (max-width: 680px) {
  #social-blog .social .instagram {
    height: 265px;
  }
}

#social-blog .cta {
  float: left;
  display: block;
  margin-right: 7.42297%;
  width: 100%;
  margin-bottom: 25px;
  -background: url("../img/cta_8.jpg") center center no-repeat;
  background: #b1bef4;
  background-size: cover;
}

#social-blog .cta:last-child {
  margin-right: 0;
}

#social-blog .cta a {
  max-width: 235px;
  width: 100%;
}

#social-blog .cta:nth-of-type(1) span {
  color: #803bff;
}

#social-blog .cta.cta-two {
  -background: url("../img/cta_9.jpg") center center no-repeat;
  background: #0099c9;
  background-size: cover;
}

#social-blog .cta.cta-two:hover .title {
  color: white;
}

#social-blog .cta.cta-three {
  -background: url("../img/cta_9.jpg") center center no-repeat;
  background: #cad420;
  background-size: cover;
}

#social-blog .cta.cta-three:hover .title {
  color: white;
}

#social-blog .cta:last-child {
  -background: url("../img/cta_3.jpg") center center no-repeat;
  background: #b1bef4;
  background-size: cover;
}

#social-blog .cta:last-child:before {
  background: #b1bef4;
}

#social-blog .cta:last-child .title {
  color: #fff;
}

#social-blog .cta:last-child a {
  color: #fff;
  border-color: #fff;
}

#social-blog .cta:last-child:hover a {
  -color: #808080;
  color: #381460;
  background: #fff;
}

#social-blog .sponser {
  float: left;
  display: block;
  margin-right: 7.42297%;
  width: 100%;
  position: relative;
  height: 345.562px;
  margin-bottom: 25px;
  padding: 50px;
  background: #803bff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#social-blog .sponser:last-child {
  margin-right: 0;
}

#social-blog .sponser:hover img {
  opacity: 1;
}

#social-blog .sponser .ad-link {
  display: block;
  position: relative !important;
  bottom: 0 !important;
}

#social-blog .sponser .ad-link img {
  z-index: 499;
  width: 90%;
  opacity: .5;
  -webkit-filter: blur(0);
  filter: blur(0);
  -webkit-transition: 600ms all ease-in-out;
  -moz-transition: 600ms all ease-in-out;
  transition: 600ms all ease-in-out;
}

#social-blog .sponser .ad-link:hover img {
  -webkit-filter: blur(0);
  filter: blur(0);
  opacity: 1;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 680px) {
  #social-blog .sponser {
    height: auto;
  }
}

#social-blog .blog {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 65.88078%;
}

#social-blog .blog:last-child {
  margin-right: 0;
}

@media screen and (max-width: 1200px) {
  #social-blog .blog {
    float: left;
    display: block;
    margin-right: 2.84259%;
    width: 58.86297%;
  }
  #social-blog .blog:last-child {
    margin-right: 0;
  }
}

@media screen and (max-width: 680px) {
  #social-blog .blog {
    float: left;
    display: block;
    margin-right: 7.42297%;
    width: 100%;
  }
  #social-blog .blog:last-child {
    margin-right: 0;
  }
}

#social-blog .blog .blog-item {
  float: left;
  display: block;
  margin-right: 3.57866%;
  width: 100%;
  min-height: 400px;
  position: relative;
  margin-bottom: 25px;
  color: #b2b3b2;
  background: #fff;
}

#social-blog .blog .blog-item:last-child {
  margin-right: 0;
}

#social-blog .blog .blog-item::after {
  clear: both;
  content: "";
  display: table;
}

#social-blog .blog .blog-item:hover .featured-image img {
  -webkit-transform: scale(1.01);
  -moz-transform: scale(1.01);
  -ms-transform: scale(1.01);
  -o-transform: scale(1.01);
  transform: scale(1.01);
}

#social-blog .blog .blog-item:hover .featured-image:after {
  opacity: .2;
}

#social-blog .blog .blog-item:hover .blog-link {
  opacity: 1;
}

#social-blog .blog .featured-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  max-height: 478px;
  padding: 2px 50px;
}

#social-blog .blog .featured-image:after {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  -webkit-transition: 600ms all ease-in-out;
  -moz-transition: 600ms all ease-in-out;
  transition: 600ms all ease-in-out;
}

#social-blog .blog .featured-image img {
  width: 115%;
  height: auto;
  max-width: none;
  -webkit-transition: 600ms all ease-in-out;
  -moz-transition: 600ms all ease-in-out;
  transition: 600ms all ease-in-out;
}

#social-blog .blog .content {
  background: #fff;
}

#social-blog .blog .author-info {
  padding: 36.5px 50px;
  text-align: center;
  float: left;
  cursor: pointer;
}

@media screen and (max-width: 1200px) {
  #social-blog .blog .author-info {
    display: none;
  }
}

#social-blog .blog .author-info .author {
  max-width: 100px;
  -webkit-transition: 600ms all ease-in-out;
  -moz-transition: 600ms all ease-in-out;
  transition: 600ms all ease-in-out;
}

#social-blog .blog .author-info:hover i {
  opacity: .8;
}

#social-blog .blog .author-info:hover > div:before {
  opacity: .3;
}

#social-blog .blog .author-info:hover .author {
  color: #808080;
}

#social-blog .blog .author-info > div {
  position: relative;
  display: inline-block;
  -border-radius: 50%;
  width: 120px;
  height: 35px;
  overflow: hidden;
}

#social-blog .blog .author-info > div:before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  -border-radius: 50%;
  opacity: 0;
  -webkit-transition: 600ms all ease-in-out;
  -moz-transition: 600ms all ease-in-out;
  transition: 600ms all ease-in-out;
}

#social-blog .blog .author-info > div img {
  width: 125px;
}

#social-blog .blog .author-info > div i {
  position: absolute;
  top: 18px;
  left: 20px;
  font-size: 1.5em;
  color: #fff;
  opacity: 0;
  -webkit-transition: 600ms all ease-in-out;
  -moz-transition: 600ms all ease-in-out;
  transition: 600ms all ease-in-out;
}

#social-blog .blog .title {
  font-size: 1.25em;
  font-weight: 300;
  margin-bottom: 20px;
  color: #96687e;
  text-transform: uppercase;
}

#social-blog .blog .title a {
  margin-left: 0 !important;
}

#social-blog .blog .body {
  display: inline;
  font-size: 14px;
  line-height: 1.5em;
  color: #381460;
}

#social-blog .blog img {
  display: block;
  max-width: 100%;
}

#social-blog .blog .blog-excerpt {
  padding: 36.5px 50px;
  -webkit-transition: 600ms ease-in-out;
  -moz-transition: 600ms ease-in-out;
  transition: 600ms ease-in-out;
  float: left;
  width: 69%;
}

@media screen and (max-width: 1200px) {
  #social-blog .blog .blog-excerpt {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 100%;
  }
  #social-blog .blog .blog-excerpt:last-child {
    margin-right: 0;
  }
}

#social-blog .blog .blog-excerpt P {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#social-blog .blog .blog-excerpt a {
  font-size: .875em;
  font-style: italic;
  margin-left: 5px;
  text-decoration: none;
  color: #4b17ff;
  -webkit-transition: 100ms all ease-in-out;
  -moz-transition: 100ms all ease-in-out;
  transition: 100ms all ease-in-out;
}

#social-blog .blog .blog-excerpt a:hover {
  color: #72495B;
}

#social-blog .blog .blog-excerpt:hover p {
  color: #808080;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#social-blog .blog .more-news {
  display: inline-block;
  width: 100%;
  text-align: center;
  margin: 15px 0px 0px 0px;
}

#social-blog .blog .more-news a {
  padding: 10px 60px;
  text-decoration: none;
  text-transform: uppercase;
  color: #b2b3b2;
  -webkit-transition: 600ms all ease-in-out;
  -moz-transition: 600ms all ease-in-out;
  transition: 600ms all ease-in-out;
}

#social-blog .blog .more-news a:hover {
  color: #72495B;
}

#social-blog .blog .newsletter {
  float: left;
  display: block;
  margin-right: 3.57866%;
  width: 100%;
  margin-bottom: 25px;
  padding: 12px 65px;
  background: #fff;
  border: 1px solid #803bff;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#social-blog .blog .newsletter:last-child {
  margin-right: 0;
}

#social-blog .blog .newsletter p {
  display: inline-block;
  padding: 3px 0px;
  font-size: 1.4em;
  font-style: italic;
  color: #803bff;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#social-blog .blog .newsletter:hover {
  background: #803bff;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#social-blog .blog .newsletter:hover p {
  color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

footer {
  background: #3A3A3A;
  padding: 50px 0;
  color: #dedfde;
}

footer .container p {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.7em;
  color: #808080;
}

footer .container a {
  font-size: 1.5em;
  color: #808080;
  padding: 10px;
  -webkit-transition: 300ms all ease-in-out;
  -moz-transition: 300ms all ease-in-out;
  transition: 300ms all ease-in-out;
}

footer .container a:nth-of-type(1) {
  padding-left: 0;
}

footer .container a:hover {
  color: #803bff;
}

@media screen and (max-width: 900px) {
  footer .container {
    text-align: center;
    padding: 0 25px;
  }
}

@media screen and (max-width: 1200px) {
  footer .container {
    text-align: center;
  }
}

#footer-hero {
  width: 100%;
  display: block;
  position: relative;
  height: 400px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
}

#footer-hero #footer-hero-bg {
  background: url(../img/footer-hero.jpg);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 140%;
  z-index: -1;
}

#footer-hero h2 {
  color: #fff;
  text-align: center;
  z-index: 2;
}

#internal-hero {
  margin-top: 67px;
  height: 400px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#internal-hero #internal-bg {
  background: url(../img/internal-hero2.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: 140%;
  z-index: -1;
}

#internal-hero #internal-bg.contact-page {
  background: url(../img/Contact-Header.jpg);
}

#internal-hero #internal-bg.event-page {
  background: url(../img/Event-Header.jpg);
}

#internal-hero #internal-bg.foundation-page {
  background: url(../img/Foundation-Header.jpg);
}

#internal-hero #internal-bg.gracies-page {
  background: url(../img/gracies-header.jpg);
  background-position: center;
}

#internal-hero #internal-bg.about-page {
  background: url(../img/About-Header.jpg);
}

#internal-hero #internal-bg.membership-page {
  background: url(../img/Membership-Header.jpg);
}

#internal-hero #internal-bg.career-page {
  background: url(../img/Careers-Header.jpg);
}

#internal-hero > div {
  min-width: 68em;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding: 135px 0 135px 0;
  text-align: center;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

#internal-hero > div.logo-div {
  padding: 115px 0;
}

#internal-hero > div h1 {
  font-family: 'Fahkwang', sans-serif;
  font-size: 2.5em;
  line-height: 1.1em;
  font-style: normal;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
  z-index: 1;
  text-align: center;
}

#internal-hero > div img {
  z-index: 2;
}

#internal-hero > div img.gracies-logo {
  width: 250px;
}

#internal-hero > div img.foundation-logo {
  width: 350px;
}

@media screen and (max-width: 900px) {
  #internal-hero > div {
    min-width: 100%;
  }
}

#internal-hero:before {
  -background-image: -webkit-radial-gradient(circle, rgba(145, 94, 116, 0.2), #b1bef4);
  -background-image: radial-gradient(circle, rgba(145, 94, 116, 0.2), #b1bef4);
}

#internal {
  width: 100%;
  display: block;
  position: relative;
  margin: 0;
  padding: 100px 0 0 0;
}

#internal .post {
  max-width: 68em;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
}

#internal .post::after {
  clear: both;
  content: "";
  display: table;
}

#internal .post .sidebar {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 15.23176%;
  margin-left: 6.5298%;
  padding-bottom: 100px;
}

#internal .post .sidebar:last-child {
  margin-right: 0;
}

#internal .post .sidebar ul {
  display: block;
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: relative;
}

#internal .post .sidebar ul li {
  display: block;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#internal .post .sidebar ul li a {
  display: inline-block;
  text-transform: uppercase;
  -font-style: italic;
  -color: #381460;
  text-decoration: none;
  margin: 0px;
  padding: 12px 15px 12px 2px;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.03em;
  border-bottom: 1px solid transparent;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#internal .post .sidebar ul li a i {
  color: #803bff;
  font-size: 1.5em;
}

#internal .post .sidebar ul li a i:hover {
  color: #cad420;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#internal .post .sidebar ul li a:hover {
  color: #cad420;
  border-bottom: 1px solid #381460;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 900px) {
  #internal .post .sidebar ul li a {
    padding: 15px;
  }
}

#internal .post .sidebar ul li.current-menu-item > a {
  color: #cad420;
  border-bottom: 1px solid #381460;
}

#internal .post .sidebar ul li:first-child > a {
  padding: 0 15px 12px 2px;
}

@media screen and (max-width: 900px) {
  #internal .post .sidebar ul li {
    display: inline-block;
  }
}

@media screen and (max-width: 900px) {
  #internal .post .sidebar ul {
    text-align: center;
    padding: 0 25px;
  }
}

@media screen and (max-width: 900px) {
  #internal .post .sidebar {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 100%;
    margin-left: 0%;
    padding-bottom: 0;
    white-space: nowrap;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }
  #internal .post .sidebar:last-child {
    margin-right: 0;
  }
}

#internal .post .entry {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 57%;
  padding-bottom: 100px;
}

#internal .post .entry:last-child {
  margin-right: 0;
}

#internal .post .entry h2 {
  margin: 0 0 40px 0;
  padding-bottom: 20px;
  color: #989898;
  font-family: 'Poppins', sans-serif;
  font-size: 1.75em;
  font-weight: 300;
  line-height: 120%;
  color: #803bff;
  border-bottom: 1px solid #381460;
  text-transform: uppercase;
}

#internal .post .entry h3 {
  padding: 30px 0;
  font-weight: 400;
  color: #803bff;
  text-align: center;
}

#internal .post .entry h4 {
  padding-top: 15px;
  font-weight: 400;
  -font-style: italic;
  color: #808080;
}

#internal .post .entry p {
  margin: 16px 0;
  font-size: 14px;
  line-height: 220%;
  color: #000;
  letter-spacing: 0.03em;
  font-weight: 400;
}

#internal .post .entry p strong {
  color: #381460;
}

#internal .post .entry p.twocol {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  color: #803bff;
}

#internal .post .entry .career-center {
  width: 100%;
  display: block;
  border-top: 1px solid rgba(172, 131, 151, 0.8);
  border-bottom: 1px solid rgba(172, 131, 151, 0.8);
  margin-top: 50px;
}

#internal .post .entry .career-center div {
  width: 50%;
  float: left;
  display: block;
  text-align: center;
}

#internal .post .entry .career-center div h3 {
  padding: 30px 0 0 0;
}

#internal .post .entry .career-center div .job-button {
  display: block;
  width: 250px;
  background: #fff;
  margin: 10px auto;
  padding: 10px 35px;
  text-align: center;
  font-style: normal;
  font-size: 1em;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: 1px solid #803bff;
  border-radius: 30px;
  color: #803bff;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#internal .post .entry .career-center div .job-button:hover {
  background: #803bff;
  border: 1px solid #803bff;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#internal .post .entry .career-center div a {
  display: inline-block;
  margin: 0;
  padding: 15px;
  text-align: left;
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.03em;
  border-bottom: 1px solid transparent;
  font-style: italic;
  color: #989898;
}

#internal .post .entry .career-center div a:hover {
  color: #96687e;
  border-bottom: 1px solid #96687e;
}

@media screen and (max-width: 900px) {
  #internal .post .entry .career-center div {
    width: 100%;
  }
}

#internal .post .entry .career-center:after {
  content: '';
  display: block;
  clear: both;
}

#internal .post .entry .quote {
  color: #803bff !important;
  font-size: 20px !important;
  font-style: italic;
  line-height: 170% !important;
  margin-top: 50px !important;
  margin-left: 50px !important;
  margin-right: 50px !important;
}

#internal .post .entry .quotee {
  color: #803bff !important;
  margin-left: 50px !important;
  margin-right: 50px !important;
  margin-top: -15px !important;
  margin-bottom: 50px !important;
}

#internal .post .entry .names {
  color: #803bff !important;
  font-size: 20px !important;
  font-style: italic;
  line-height: 170% !important;
  margin: 50px !important;
}

#internal .post .entry ul {
  display: block;
}

#internal .post .entry ul li {
  color: #000;
  line-height: 200%;
  padding-bottom: 25px;
  font-size: 14px;
}

#internal .post .entry .wp-post-image {
  width: 100%;
  height: auto;
  margin-bottom: 40px;
}

#internal .post .entry .bio {
  float: left;
  display: block;
  margin-right: 4.82916%;
  width: 30.11389%;
  margin-right: 0;
  height: 375px;
  position: relative;
  overflow: hidden;
  margin-right: 15px;
}

#internal .post .entry .bio:last-child {
  margin-right: 0;
}

#internal .post .entry .bio::after {
  clear: both;
  content: "";
  display: table;
}

#internal .post .entry .bio .bio-image {
  width: 197px;
  height: 197px;
  position: relative;
  overflow: hidden;
}

#internal .post .entry .bio .bio-image img {
  width: 105%;
  opacity: 0.8;
  margin-bottom: -3px;
  z-index: 0;
}

#internal .post .entry .bio .bio-image .bio-image-link {
  display: block;
  position: absolute;
  bottom: 12px;
  right: 15px;
  z-index: 2;
  opacity: 0;
  text-decoration: none;
  color: #fff;
  text-align: center;
}

#internal .post .entry .bio .bio-image .bio-image-link .fa-user {
  color: #fff;
}

@media screen and (max-width: 900px) {
  #internal .post .entry .bio .bio-image .bio-image-link {
    opacity: 1;
  }
}

#internal .post .entry .bio .bio-image:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(145, 94, 116, 0.5), #b1bef4);
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 900px) {
  #internal .post .entry .bio .bio-image:after {
    opacity: 0;
  }
}

#internal .post .entry .bio .bio-image:hover .bio-image-link {
  cursor: pointer;
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#internal .post .entry .bio .bio-image:hover:after {
  opacity: 0.8;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 900px) {
  #internal .post .entry .bio .bio-image {
    width: 100%;
    height: 100%;
  }
}

#internal .post .entry .bio h4 {
  margin: 10px 0;
  text-align: center;
  font-weight: 300;
  font-size: 16px;
  color: #000;
}

#internal .post .entry .bio p {
  -font-style: italic;
  text-align: center;
  font-weight: 300;
  line-height: 120%;
  color: #000;
}

#internal .post .entry .bio > a {
  display: block;
  margin: 20px auto;
  text-align: center;
  color: #803bff;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: absolute;
  bottom: 25px;
  width: 100%;
  font-size: 14px;
  font-weight: 400;
}

#internal .post .entry .bio > a:hover {
  color: #72495B;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 900px) {
  #internal .post .entry .bio {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 48.82117%;
    height: auto;
  }
  #internal .post .entry .bio:last-child {
    margin-right: 0;
  }
  #internal .post .entry .bio:nth-child(3n) {
    margin-right: 2.35765%;
  }
  #internal .post .entry .bio:nth-child(3n+1) {
    clear: none;
  }
  #internal .post .entry .bio:nth-child(2n) {
    margin-right: 0;
  }
  #internal .post .entry .bio:nth-child(2n+1) {
    clear: left;
  }
}

#internal .post .entry .photo-gallery {
  width: 100%;
  display: block;
}

#internal .post .entry .photo-gallery > div {
  width: 100%;
  padding: 0 10px;
}

#internal .post .entry .photo-gallery > div img {
  width: 100%;
}

#internal .post .entry .facebook-photo-gallery .slider-for {
  position: relative;
}

#internal .post .entry .facebook-photo-gallery .slider-for:before {
  content: '';
  width: 96.7%;
  height: 100%;
  display: block;
  background: #000;
  margin: 0 10px;
  position: absolute;
  top: 0;
  left: 0;
}

#internal .post .entry .facebook-photo-gallery .slider-for:after {
  content: '\f09a';
  font-family: "FontAwesome";
  display: block;
  position: absolute;
  bottom: 10px;
  right: 20px;
  color: #fff;
  font-size: 24px;
  z-index: 2;
}

#internal .post .entry .facebook-photo-gallery .slider-for img {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#internal .post .entry .facebook-photo-gallery .slider-for:hover img {
  opacity: 0.7;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#internal .post .entry .video-gallery .video-slider-for .slick-list .slick-track .slick-slide {
  position: relative;
  padding-bottom: 10%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
}

#internal .post .entry .video-gallery .video-slider-for .slick-list .slick-track .slick-slide iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#internal .post .entry .video-gallery .slider-nav {
  padding-bottom: 0;
  padding-top: 0;
  height: auto;
}

#internal .post .entry .gracies-coverage {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  margin: 25px 0 50px 0;
}

#internal .post .entry .gracies-coverage p {
  display: block;
  margin: 0 0 100px 0;
  -webkit-column-span: 1;
  -moz-column-span: 1;
  column-span: 1;
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  column-break-inside: avoid;
}

#internal .post .entry .event {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
}

#internal .post .entry .event .event-heading {
  margin-top: 40px;
  border-bottom: 1px solid #803bff;
  color: #803bff;
}

#internal .post .entry .event .event-heading:first-child {
  margin-top: 0;
}

#internal .post .entry .event p {
  margin-top: -5px;
  margin-bottom: 30px;
  padding: 0 15px;
}

#internal .post .entry .border-box {
  padding: 5px;
  text-align: center;
  border: 1px solid #96687e;
}

#internal .post .entry .border-box p {
  color: #96687e;
}

#internal .post .entry .border-box p strong {
  font-weight: 400;
  text-transform: uppercase;
}

#internal .post .entry .emphasis {
  margin-bottom: 50px;
  display: block;
  font-size: 12px;
  text-align: center;
  color: #803bff;
}

#internal .post .entry .video-wrapper {
  position: relative;
  padding-bottom: 55%;
  padding-top: 0px;
  height: 0;
}

#internal .post .entry .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#internal .post .entry .sponsor-logos {
  width: 100%;
  display: block;
}

#internal .post .entry .sponsor-logos > a > img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.5;
  margin: 0 auto;
  display: block;
  width: 50%;
  float: left;
  height: inherit;
  margin: 15px 0;
  padding: 25px;
}

#internal .post .entry .sponsor-logos:after {
  content: '';
  display: block;
  clear: both;
}

#internal .post .entry > .sizzle-box {
  float: left;
  display: block;
  margin-right: 4.11092%;
  width: 47.94454%;
  height: 300px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #ebebeb;
  margin-top: 25px;
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
}

#internal .post .entry > .sizzle-box:last-child {
  margin-right: 0;
}

#internal .post .entry > .sizzle-box:nth-child(2n) {
  margin-right: 0;
}

#internal .post .entry > .sizzle-box:nth-child(2n+1) {
  clear: left;
}

#internal .post .entry > .sizzle-box.facebook-block, #internal .post .entry > .sizzle-box.internal-image-block {
  width: 100%;
  height: auto;
  padding: 0;
  border: none;
}

#internal .post .entry > .sizzle-box.facebook-block a, #internal .post .entry > .sizzle-box.internal-image-block a {
  display: block;
  position: relative;
}

#internal .post .entry > .sizzle-box.facebook-block a img, #internal .post .entry > .sizzle-box.internal-image-block a img {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#internal .post .entry > .sizzle-box.facebook-block a:hover, #internal .post .entry > .sizzle-box.internal-image-block a:hover {
  cursor: pointer;
}

#internal .post .entry > .sizzle-box.facebook-block a:hover img, #internal .post .entry > .sizzle-box.internal-image-block a:hover img {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform: scale(1.02);
  -moz-transform: scale(1.02);
  -ms-transform: scale(1.02);
  -o-transform: scale(1.02);
  transform: scale(1.02);
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

#internal .post .entry > .sizzle-box.facebook-block a:hover:after, #internal .post .entry > .sizzle-box.internal-image-block a:hover:after {
  opacity: 0;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

#internal .post .entry > .sizzle-box.facebook-block:after {
  content: '\f09a';
  font-family: 'FontAwesome';
  font-size: 16px;
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: #fff;
  font-size: 24px;
}

#internal .post .entry > .sizzle-box.video-block {
  width: 100%;
  height: auto;
  border: none;
  display: block;
  padding: 0;
}

#internal .post .entry > .sizzle-box.video-block .video-wrapper {
  position: relative;
  padding-bottom: 55%;
  padding-top: 0px;
  height: 0;
}

#internal .post .entry > .sizzle-box.video-block .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#internal .post .entry > .sizzle-box.video-block .video-wrapper a .fa-youtube {
  display: block;
  position: absolute;
  bottom: 57px;
  right: 173px;
  z-index: 2;
  color: #fff;
  font-size: 28px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#internal .post .entry > .sizzle-box.video-block .video-wrapper a:hover .fa-youtube {
  opacity: 0.7;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#internal .post .entry .sponsors {
  display: block;
  float: left;
}

#internal .post .entry .sponsors h3 {
  text-align: center;
}

#internal .post .entry .sponsors .sponsor-box {
  float: left;
  display: block;
  margin-right: 4.11092%;
  width: 30.59272%;
  margin-right: 0;
  display: flex;
  padding: 30px;
  height: 200px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #dedfde;
  margin: 5px;
}

#internal .post .entry .sponsors .sponsor-box:last-child {
  margin-right: 0;
}

#internal .post .entry .sponsors .sponsor-box a {
  display: block;
  text-decoration: none;
}

#internal .post .entry .sponsors .sponsor-box a img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.5;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 95%;
}

#internal .post .entry .sponsors .sponsor-box a:hover {
  cursor: pointer;
}

#internal .post .entry .sponsors .sponsor-box a:hover img {
  opacity: 1;
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

#internal .post .entry .sponsors:after {
  content: ' ';
  display: block;
  clear: both;
}

@media screen and (max-width: 900px) {
  #internal .post .entry {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 100%;
    padding: 50px;
  }
  #internal .post .entry:last-child {
    margin-right: 0;
  }
}

@media screen and (max-width: 680px) {
  #internal .post .entry {
    padding: 50px 25px;
  }
}

#internal .post .gracies-winners .category {
  display: block;
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-width: 50%;
  -moz-column-width: 50%;
  column-width: 50%;
}

#internal .post .gracies-winners .category div {
  display: block;
  -webkit-column-span: 1;
  -moz-column-span: 1;
  column-span: 1;
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  column-break-inside: avoid;
}

#internal .post .blog {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 82.94039%;
  margin-left: 8.5298%;
  padding-bottom: 100px;
}

#internal .post .blog:last-child {
  margin-right: 0;
}

#internal .post .blog .wp-post-image {
  width: 100%;
  height: auto;
  margin-bottom: 40px;
}

#internal .post .blog .meta {
  float: left;
  display: block;
  margin-right: 2.84259%;
  width: 28.01019%;
  text-align: center;
}

#internal .post .blog .meta:last-child {
  margin-right: 0;
}

#internal .post .blog .meta .author-image {
  width: 125px;
  -height: 60px;
  overflow: hidden;
  margin: 0 auto;
  -border-radius: 100% !important;
  position: relative;
}

#internal .post .blog .meta .author-image a {
  display: block;
}

#internal .post .blog .meta .author-image a img {
  width: 125px;
  height: auto;
  z-index: 1;
  opacity: 1;
}

#internal .post .blog .meta .author-image a i {
  position: absolute;
  top: 18px;
  left: 20px;
  font-size: 1.5em;
  color: #fff;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#internal .post .blog .meta .author-image:before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 125px;
  -height: 100%;
  background: #000;
  -border-radius: 50%;
  z-index: -1;
}

#internal .post .blog .meta .author-image:hover a img {
  opacity: 0.7;
  cursor: pointer;
}

#internal .post .blog .meta .author-image:hover a i {
  opacity: 0.8;
  cursor: pointer;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

@media screen and (max-width: 680px) {
  #internal .post .blog .meta .author-image {
    float: left;
  }
}

#internal .post .blog .meta p {
  margin: 0;
}

#internal .post .blog .meta p a {
  color: #803bff;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#internal .post .blog .meta p a:hover {
  color: #803bff;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 680px) {
  #internal .post .blog .meta p {
    display: inline-block;
  }
}

@media screen and (max-width: 680px) {
  #internal .post .blog .meta {
    float: left;
    display: block;
    margin-right: 2.84259%;
    width: 100%;
  }
  #internal .post .blog .meta:last-child {
    margin-right: 0;
  }
}

#internal .post .blog .blog-post {
  float: left;
  display: block;
  margin-right: 2.84259%;
  width: 69.14722%;
}

#internal .post .blog .blog-post:last-child {
  margin-right: 0;
}

#internal .post .blog .blog-post h2 a {
  color: #803bff;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#internal .post .blog .blog-post h2 a:hover {
  color: #803bff;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#internal .post .blog .blog-post p {
  line-height: 180%;
}

@media screen and (max-width: 680px) {
  #internal .post .blog .blog-post {
    float: left;
    display: block;
    margin-right: 2.84259%;
    width: 100%;
  }
  #internal .post .blog .blog-post:last-child {
    margin-right: 0;
  }
}

@media screen and (max-width: 680px) {
  #internal .post .blog {
    margin-left: 0%;
    padding: 50px 25px;
  }
}

#internal .post .contact {
  padding: 0 100px 100px 100px;
  text-align: left;
}

#internal .post .contact .contact-social {
  display: block;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

#internal .post .contact .contact-social li {
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#internal .post .contact .contact-social li a {
  display: inline-block;
  font-style: italic;
  color: #989898;
  text-decoration: none;
  margin: 0px;
  padding: 12px 60px 12px 0;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.03em;
  border-bottom: 1px solid transparent;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#internal .post .contact .contact-social li a i {
  color: #803bff;
  font-size: 2em;
}

#internal .post .contact .contact-social li a i:hover {
  color: #72495B;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 680px) {
  #internal .post .contact {
    padding: 0;
  }
}

.navigation {
  max-width: 68em;
  margin-left: auto;
  margin-right: auto;
}

.navigation > div a {
  display: inline-block;
  font-style: italic;
  color: #989898;
  text-decoration: none;
  margin: 0px;
  padding: 12px 15px 12px 2px;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.03em;
  border-bottom: 1px solid transparent;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navigation > div a:hover {
  color: #915e74;
  border-bottom: 1px solid #915e74;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navigation .next-posts {
  float: left;
}

.navigation .prev-posts {
  float: right;
}

.navigation:after {
  content: '';
  display: block;
  clear: both;
}

.slider-nav .slick-list .slick-track .slick-slide, .video-slider-nav .slick-list .slick-track .slick-slide {
  position: relative;
}

.slider-nav .slick-list .slick-track .slick-slide:after, .video-slider-nav .slick-list .slick-track .slick-slide:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  background: #803bff;
  opacity: 0.6;
  z-index: 2;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.slider-nav .slick-list .slick-track .slick-current:after, .video-slider-nav .slick-list .slick-track .slick-current:after {
  content: '';
  background: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.event-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.event-slider div {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.event-slider div img {
  height: 100%;
  width: auto;
  display: block;
  margin: 0 auto;
}

.event-slider div .facebook-link {
  display: block;
  position: absolute;
  bottom: 15px;
  right: 15px;
}

.event-slider div .facebook-link i {
  color: white;
  font-size: 2.25em;
}

.event-slider div h3 {
  text-align: center;
  padding: 100px 0;
}

.event-slider .twitter-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 25px;
}

.event-slider .twitter-box .user-icon {
  display: block;
  text-align: center;
  margin: 10px 0;
  height: initial;
}

.event-slider .twitter-box .user-icon > img {
  width: 50px;
  -border-radius: 50%;
  margin: 0 auto;
}

.event-slider .twitter-box p {
  text-align: center;
  margin: 5px 0;
}

.event-slider .twitter_intents {
  height: initial;
  position: absolute;
  bottom: 25px;
  text-align: center;
}

.event-slider .timestamp {
  width: 100%;
  height: initial;
  position: absolute;
  bottom: 60px;
  text-align: center;
}

.event-slider .slick-slide {
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.event-slider .slick-slide:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  background: rgba(172, 131, 151, 0.6);
  opacity: 0.7;
  z-index: 2;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.event-slider .slick-slide:hover:after {
  display: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#footer-boxes {
  width: 100%;
  max-height: 400px;
  display: block;
  background: url("../img/body-background.svg");
  background-size: .55%;
  background-color: #F2F2F2;
  overflow: hidden;
}

#footer-boxes div {
  max-width: 68em;
  margin-left: auto;
  margin-right: auto;
}

#footer-boxes div::after {
  clear: both;
  content: "";
  display: table;
}

#footer-boxes div .sidebar-sizzle-box-wrapper {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%;
  border-top: 1px solid #ebebeb;
}

#footer-boxes div .sidebar-sizzle-box-wrapper:last-child {
  margin-right: 0;
}

#footer-boxes div .sidebar-sizzle-box-wrapper .sidebar-sizzle-box {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 31.76157%;
  height: 345px;
  padding: 25px 15px;
  display: flex;
  background: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #ebebeb;
  margin-top: 25px;
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
}

#footer-boxes div .sidebar-sizzle-box-wrapper .sidebar-sizzle-box:last-child {
  margin-right: 0;
}

#footer-boxes div .sidebar-sizzle-box-wrapper .sidebar-sizzle-box:nth-child(3n) {
  margin-right: 0;
}

#footer-boxes div .sidebar-sizzle-box-wrapper .sidebar-sizzle-box:nth-child(3n+1) {
  clear: left;
}

#footer-boxes div .sidebar-sizzle-box-wrapper .sidebar-sizzle-box.ad-block {
  overflow: visible;
}

#footer-boxes div .sidebar-sizzle-box-wrapper .sidebar-sizzle-box.ad-block h3 {
  position: absolute;
  bottom: -10px;
  right: -25px;
  text-align: center;
  width: 200px;
  margin-left: -100px;
  color: #b2b3b2;
}

#footer-boxes div .sidebar-sizzle-box-wrapper .sidebar-sizzle-box.ad-block a {
  display: block;
}

#footer-boxes div .sidebar-sizzle-box-wrapper .sidebar-sizzle-box.ad-block a img {
  width: 100%;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.3;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#footer-boxes div .sidebar-sizzle-box-wrapper .sidebar-sizzle-box.ad-block a:hover {
  cursor: pointer;
}

#footer-boxes div .sidebar-sizzle-box-wrapper .sidebar-sizzle-box.ad-block a:hover img {
  opacity: 0.8;
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#footer-boxes div .sidebar-sizzle-box-wrapper .sidebar-sizzle-box.twitter-block {
  padding: 40px !important;
}

#footer-boxes div .sidebar-sizzle-box-wrapper .sidebar-sizzle-box.twitter-block img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-bottom: 10px;
}

#footer-boxes div .sidebar-sizzle-box-wrapper .sidebar-sizzle-box.twitter-block a {
  text-decoration: none;
  font-size: 14px;
}

#footer-boxes div .sidebar-sizzle-box-wrapper .sidebar-sizzle-box.twitter-block p {
  line-height: 1.3em;
  font-weight: 300;
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#footer-boxes div .sidebar-sizzle-box-wrapper .sidebar-sizzle-box.twitter-block p:hover {
  color: #808080;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#footer-boxes div .sidebar-sizzle-box-wrapper .sidebar-sizzle-box.news_block {
  padding: 35px !important;
}

#footer-boxes div .sidebar-sizzle-box-wrapper .sidebar-sizzle-box.news_block p {
  display: inline;
  text-align: center;
  font-weight: 300;
  line-height: 1.3em;
}

#footer-boxes div .sidebar-sizzle-box-wrapper .sidebar-sizzle-box.news_block p a {
  font-size: .875em;
  margin-left: 5px;
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease-ini-out;
  -moz-transition: all 0.3s ease-ini-out;
  transition: all 0.3s ease-ini-out;
}

#footer-boxes div .sidebar-sizzle-box-wrapper .sidebar-sizzle-box.news_block p a:hover {
  cursor: pointer;
  -webkit-transition: all 0.3s ease-ini-out;
  -moz-transition: all 0.3s ease-ini-out;
  transition: all 0.3s ease-ini-out;
}

#footer-boxes div .sidebar-sizzle-box-wrapper .sidebar-sizzle-box.news_block p i {
  margin-right: 6px;
}

#footer-boxes div .sidebar-sizzle-box-wrapper .sidebar-sizzle-box.news_block p:last-child {
  font-weight: 400;
}

#footer-boxes div .sidebar-sizzle-box-wrapper .sidebar-sizzle-box:nth-child(1) {
  background: #4B17FF;
}

#footer-boxes div .sidebar-sizzle-box-wrapper .sidebar-sizzle-box:nth-child(2) {
  background: #b1bef4;
}

#footer-boxes div .sidebar-sizzle-box-wrapper .sidebar-sizzle-box:nth-child(3) {
  background: #CAD420;
}

#footer-boxes div .sidebar-sizzle-box-wrapper .sidebar-sizzle-box.internal-jump-block {
  -background: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#footer-boxes div .sidebar-sizzle-box-wrapper .sidebar-sizzle-box.internal-jump-block h3 {
  font-family: 'Fahkwang', sans-serif;
  color: #fff;
  font-size: 1.5em;
  font-weight: 300;
  -font-style: italic;
  text-align: center;
}

#footer-boxes div .sidebar-sizzle-box-wrapper .sidebar-sizzle-box.internal-jump-block > a {
  display: inline-block;
  text-decoration: none;
  margin-top: 40px;
}

#footer-boxes div .sidebar-sizzle-box-wrapper .sidebar-sizzle-box.internal-jump-block > a p {
  padding: 10px 20px;
  border: 1px solid #fff;
  border-radius: 30px;
  color: #fff;
  text-transform: uppercase;
  font-size: .7em;
  font-weight: 400;
  letter-spacing: 0.05em;
}

#footer-boxes div .sidebar-sizzle-box-wrapper .sidebar-sizzle-box.internal-jump-block:hover a p {
  color: #381460;
  background: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 900px) {
  #footer-boxes {
    display: none;
  }
}

input {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #E2E2E2;
  padding: 10px;
  border-radius: 5px;
  margin: 10px 0;
  background: none;
  outline: none;
}

input:focus, input :active {
  border: 1px solid #72495B;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

textarea {
  width: 100%;
  height: 200px;
  border-collapse: collapse;
  border: 1px solid #E2E2E2;
  padding: 10px;
  border-radius: 5px;
  margin: 10px 0;
  background: none;
  outline: none;
}

textarea:focus, textarea :active {
  border: 1px solid #72495B;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

input[type="submit"] {
  max-width: 200px;
  padding: 10px 5px;
  border: 1px solid #803bff;
  background: #803bff;
  border-radius: 30px;
  width: 50%;
  color: #fff;
  margin-bottom: 100px;
}

input[type="submit"]:hover {
  background: #fff;
  border: 1px solid #803bff;
  color: #803bff;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.button {
  display: inline-block;
  margin: 20px auto;
  padding: 10px 35px;
  text-align: center;
  border: 1px solid #803bff;
  border-radius: 30px;
  color: #803bff;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.button.read-more-button {
  display: block;
  width: 200px;
  margin: 20px 0;
}

.button:hover {
  background: #803bff;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.grey-button {
  display: block;
  width: 250px;
  margin: 60px auto 40px auto;
  padding: 10px 35px;
  text-align: center;
  border: 1px solid #b2b3b2;
  border-radius: 30px;
  color: #b2b3b2;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.grey-button:hover {
  background: #803bff;
  border: 1px solid #803bff;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.purple-button {
  display: block;
  width: 250px;
  margin: 20px auto 20px auto;
  padding: 10px 35px;
  text-align: center;
  border: 1px solid #803bff;
  border-radius: 30px;
  color: #803bff;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.purple-button:hover {
  background: #803bff;
  border: 1px solid #803bff;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.remodal {
  display: block;
  position: relative;
}

.remodal > div {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
}

.remodal > div img {
  width: 150px;
  height: auto;
  margin: 0 25px 25px 0;
  float: left;
}

.remodal > div > div {
  display: block;
  float: left;
}

.remodal > div > div h4 {
  text-align: left;
  font-family: 'Poppins', sans-serif;
  color: #808080;
}

.remodal > div > div p {
  font-style: italic;
  color: #808080;
}

.remodal > div > div ul {
  display: block;
  margin: 21px 0 0 0;
  padding: 0;
  list-style-type: none;
  text-align: left;
}

.remodal > div > div ul > li {
  display: inline-block;
  margin: 0;
  padding: 0;
}

.remodal > div > div ul > li a {
  display: block;
  text-decoration: none;
}

.remodal > div > div ul > li a i {
  font-size: 18px;
  padding-right: 20px;
}

.remodal > div p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 180%;
  text-align: left;
  color: #808080;
}

.remodal > div:after {
  content: '';
  display: block;
  clear: both;
}

.remodal:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url("../img/846020.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.06;
}

.remodal-close {
  z-index: 1;
}

body.page-id-22 .hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: radial-gradient(circle, rgba(145, 94, 116, 0.3), #803bff) !important;
}

.winner-wrapper {
  display: block;
  width: 100%;
  -webkit-columns: 2;
  -moz-columns: 2;
  columns: 2;
}

.winner-wrapper .winner-list {
  display: block;
  text-align: center;
  margin: 22px 0;
  padding: 0 15px;
  -webkit-column-span: 1;
  -moz-column-span: 1;
  column-span: 1;
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  column-break-inside: avoid;
}

.winner-wrapper .winner-list h3 {
  padding: 10px 0 !important;
  text-align: left;
  border-bottom: 1px solid #803bff;
}

.morgan {
  display: block;
  clear: both;
}

.alignleft {
  float: left;
  margin: 10px 15px 15px 0;
}

.alignright {
  float: right;
  margin: 10px 0 15px 15px;
}

.aligncenter {
  margin: 0 auto;
  display: block;
}

._h7n {
  display: none !important;
}

._1drm._1ds4 ._1z7u {
  display: none !important;
}

.decide-2 {
  padding: 25px 0;
}

@media screen and (max-width: 1200px) {
  .decide-2 .content {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 82.94039%;
    margin-left: 8.5298%;
  }
  .decide-2 .content:last-child {
    margin-right: 0;
  }
}

@media screen and (max-width: 900px) {
  .decide-2 .cta:nth-of-type(1) {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 100%;
    margin-bottom: 25px;
  }
  .decide-2 .cta:nth-of-type(1):last-child {
    margin-right: 0;
  }
  .decide-2 .cta:nth-of-type(2) {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 100%;
    margin-bottom: 25px;
    margin-right: 0;
  }
  .decide-2 .cta:nth-of-type(2):last-child {
    margin-right: 0;
  }
  .decide-2 .cta:last-of-type {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 100%;
  }
  .decide-2 .cta:last-of-type:last-child {
    margin-right: 0;
  }
}

.decide-2 .cta {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 31.76157%;
  position: relative;
  padding: 50px;
  background: #0099c9;
}

.decide-2 .cta:last-child {
  margin-right: 0;
}

.decide-2 .cta:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 1;
}

.decide-2 .cta:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: .5;
}

.decide-2 .cta:hover:before {
  opacity: 0;
}

.decide-2 .cta:hover .body {
  opacity: 1;
}

.decide-2 .cta:hover .btn {
  color: #381460 !important;
  background: #fff;
}

.decide-2 .cta .title {
  -webkit-transition: 300ms all ease-in-out;
  -moz-transition: 300ms all ease-in-out;
  transition: 300ms all ease-in-out;
}

.decide-2 .cta a {
  position: absolute;
  right: 0;
  bottom: 60px;
  left: 0;
  margin: auto;
  text-align: center;
  z-index: 1;
}

.decide-2 .cta a:hover {
  color: #b2b3b2;
}

.decide-2 .cta .btn {
  -webkit-transition: 1000ms all ease-in-out;
  -moz-transition: 1000ms all ease-in-out;
  transition: 1000ms all ease-in-out;
}

.decide-2 .cta:nth-of-type(1):after {
  background: #cad420 !important;
  opacity: 1;
}

.decide-2 .cta:nth-of-type(2):after {
  background: #803bff !important;
  opacity: 1;
}

.decide-2 .cta:nth-of-type(3):after {
  background: #0099c9 !important;
  opacity: 1;
}

.decide-2 .cta:nth-of-type(3) .title {
  color: #fff;
}

.decide-2 .cta:nth-of-type(3) span {
  color: #cad420;
}

.decide-2 .cta:nth-of-type(3) a {
  color: #fff;
  border-color: #fff;
}

.decide-2 .cta:nth-of-type(2) span {
  color: #cad420;
}

.decide-2 .cta:nth-of-type(1):before {
  background: #cad420;
}

.decide-2 .cta:nth-of-type(2):before {
  background: #803bff;
}

.decide-2 .cta:nth-of-type(3):before {
  background: #0099c9;
}